:root {
  --color-background: #f7f8fb;
  --color-surface: #ffffff;
  --color-surface-muted: #f3f6fb;
  --color-text: #172033;
  --color-text-muted: #4e5d78;
  --color-border: #dbe3ef;
  --color-accent: #1c449c;
  --color-accent-strong: #143579;
  --color-accent-soft: #e9effb;
  --color-warm: #b22029;
  --color-gold: #f18a21;
  --color-gold-soft: #fff1df;
  --shadow-soft: 0 18px 44px rgba(28, 68, 156, 0.08);
  --shadow-card-hover: 0 20px 48px rgba(28, 68, 156, 0.12);
  --radius-medium: 18px;
  --radius-small: 10px;
  --container-width: 1120px;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: var(--color-text);
  background:
    linear-gradient(180deg, #ffffff 0%, var(--color-background) 32%, #ffffff 100%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration: none;
}

a:hover {
  color: var(--color-accent-strong);
}

h1,
h2,
h3,
p,
ul,
ol {
  margin-top: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  padding: 0.75rem 1rem;
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius-small);
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(calc(100% - 2rem), var(--container-width));
  margin: 0 auto;
}

.section {
  padding: 2.2rem 0;
}

.section-divider {
  position: relative;
  width: min(calc(100% - 2rem), var(--container-width));
  height: 18px;
  margin: 0 auto;
  pointer-events: none;
  opacity: 0.98;
  overflow: hidden;
}

.section-divider::before,
.section-divider::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  pointer-events: none;
}

.section-divider::before {
  top: 8px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  opacity: 0.95;
}

.section-divider::after {
  top: 2px;
  width: 72%;
  height: 14px;
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.75;
}

.section-divider--warm {
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.18) 12%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.18) 88%, transparent 100%);
}

.section-divider--warm::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 235, 214, 0.9) 12%, rgba(241, 138, 33, 0.9) 30%, rgba(178, 32, 41, 0.65) 52%, rgba(66, 108, 201, 0.82) 74%, rgba(219, 232, 255, 0.92) 88%, rgba(255, 255, 255, 0) 100%);
  box-shadow:
    0 0 12px rgba(241, 138, 33, 0.22),
    0 0 18px rgba(28, 68, 156, 0.12);
}

.section-divider--warm::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(241, 138, 33, 0.18) 28%, rgba(178, 32, 41, 0.16) 50%, rgba(28, 68, 156, 0.16) 72%, rgba(255, 255, 255, 0) 100%);
}

.section-divider--cool {
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.15) 10%, rgba(255, 255, 255, 0.26) 50%, rgba(255, 255, 255, 0.15) 90%, transparent 100%);
}

.section-divider--cool::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(228, 239, 255, 0.84) 14%, rgba(91, 147, 255, 0.72) 34%, rgba(28, 68, 156, 0.86) 54%, rgba(115, 158, 255, 0.75) 74%, rgba(239, 245, 255, 0.88) 88%, rgba(255, 255, 255, 0) 100%);
  box-shadow:
    0 0 14px rgba(91, 147, 255, 0.18),
    0 0 20px rgba(28, 68, 156, 0.1);
}

.section-divider--cool::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(91, 147, 255, 0.14) 24%, rgba(28, 68, 156, 0.16) 50%, rgba(241, 138, 33, 0.1) 78%, rgba(255, 255, 255, 0) 100%);
}

.section--muted {
  background:
    linear-gradient(180deg, rgba(28, 68, 156, 0.04), rgba(28, 68, 156, 0.02));
}

.section-label {
  margin-bottom: var(--space-2);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.section-heading h2,
.hero h1,
.page-hero h1,
.detail-hero h1 {
  letter-spacing: -0.02em;
}

.lead {
  max-width: 70ch;
  font-size: 1.05rem;
  color: var(--color-text-muted);
}

.page-hero .lead {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background:
    linear-gradient(90deg, rgba(8, 22, 58, 0.98) 0%, rgba(16, 38, 92, 0.98) 42%, rgba(28, 68, 156, 0.94) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px rgba(16, 39, 95, 0.24);
  overflow: visible;
  margin-bottom: 16px;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(241, 138, 33, 0.08), transparent 16%),
    linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.05) 42% 43%, transparent 43% 100%),
    linear-gradient(90deg, transparent 0 20%, rgba(255, 255, 255, 0.04) 20% 20.12%, transparent 20.12% 38%, rgba(255, 255, 255, 0.03) 38% 38.12%, transparent 38.12% 100%);
  opacity: 0.9;
  pointer-events: none;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -16px;
  height: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 18% 100%, rgba(241, 138, 33, 0.7), transparent 26%),
    radial-gradient(circle at 50% 100%, rgba(178, 32, 41, 0.66), transparent 26%),
    radial-gradient(circle at 82% 100%, rgba(28, 68, 156, 0.8), transparent 26%);
  pointer-events: none;
}

.site-header__inner::after {
  content: "";
  position: absolute;
  inset: auto -8% -42px auto;
  width: 420px;
  height: 180px;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.02) 56%, transparent 72%);
  transform: rotate(-8deg);
  pointer-events: none;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-3);
  min-height: 122px;
  padding: 0.75rem 0;
  position: relative;
  z-index: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: #ffffff;
  min-width: 0;
  flex: 0 0 auto;
}

.site-nav {
  position: relative;
  margin-left: 4.5rem;
  padding-left: 2rem;
}

.site-nav::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 52px;
  transform: translateY(-50%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.12));
  box-shadow:
    0 0 10px rgba(255, 255, 255, 0.28),
    0 0 20px rgba(91, 147, 255, 0.16);
}

.brand__logo,
.placeholder-media {
  display: grid;
  place-items: center;
  padding: var(--space-2);
  border-radius: var(--radius-medium);
}

.brand__logo {
  width: clamp(198px, 22vw, 297px);
  height: 79px;
  min-width: 198px;
  min-height: 79px;
  overflow: hidden;
  text-indent: -9999px;
  border: 0;
  border-radius: 0;
  background: url("../images/logo/etulogo.png") left center/contain no-repeat;
  box-shadow: none;
  flex-shrink: 0;
}

.placeholder-media {
  min-width: 72px;
  min-height: 72px;
  border: 1px dashed rgba(28, 68, 156, 0.2);
  background:
    linear-gradient(135deg, rgba(28, 68, 156, 0.06), rgba(241, 138, 33, 0.08));
  color: var(--color-text-muted);
  font-weight: 700;
}

.brand__text {
  display: none;
}

.brand__eyebrow {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand__title {
  font-weight: 500;
  font-size: 0.96rem;
  line-height: 1.25;
  color: #ffffff;
  max-width: 18ch;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-small);
  padding: 0.7rem 1rem;
  font: inherit;
  color: #ffffff;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.nav-list,
.footer-list,
.list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1);
  margin-left: 0;
}

.nav-list a {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-list a:hover,
.nav-list a.is-active {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.nav-list a.is-active {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.hero__inner,
.callout,
.detail-hero {
  display: grid;
  gap: var(--space-5);
}

.hero__inner {
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.9fr);
  align-items: center;
  gap: var(--space-6);
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 24%, rgba(28, 68, 156, 0.18), transparent 30%),
    radial-gradient(circle at 12% 86%, rgba(241, 138, 33, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(246, 250, 255, 0.98), rgba(255, 255, 255, 0.94));
  pointer-events: none;
}

.hero-tech {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-tech__orb,
.hero-tech__grid,
.hero-tech__beam,
.hero-tech__node {
  position: absolute;
}

.hero-tech__orb {
  border-radius: 999px;
  filter: blur(0);
  opacity: 0.95;
}

.hero-tech__orb--blue {
  top: 10%;
  right: 8%;
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(73, 126, 255, 0.24) 0%, rgba(73, 126, 255, 0.1) 34%, transparent 70%);
}

.hero-tech__orb--gold {
  bottom: 4%;
  left: -2%;
  width: 16rem;
  height: 16rem;
  background: radial-gradient(circle, rgba(241, 138, 33, 0.16) 0%, rgba(241, 138, 33, 0.05) 42%, transparent 72%);
}

.hero-tech__grid {
  inset: 9% 8% 16% 48%;
  border-radius: 30px;
  background:
    linear-gradient(90deg, rgba(28, 68, 156, 0.085) 1px, transparent 1px),
    linear-gradient(180deg, rgba(28, 68, 156, 0.07) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.95) 34%, rgba(0, 0, 0, 0.48) 68%, transparent 100%);
  opacity: 0.82;
}

.hero-tech__beam {
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(28, 68, 156, 0.14), rgba(255, 255, 255, 0.92), rgba(91, 147, 255, 0.24), rgba(255, 255, 255, 0));
  box-shadow: 0 0 20px rgba(100, 142, 255, 0.24);
  transform-origin: left center;
}

.hero-tech__beam--one {
  --beam-rotate: -18deg;
  top: 26%;
  left: 52%;
  width: 27%;
  transform: rotate(var(--beam-rotate));
  animation: heroBeamPulse 7s ease-in-out infinite;
}

.hero-tech__beam--two {
  --beam-rotate: 16deg;
  top: 54%;
  left: 56%;
  width: 21%;
  transform: rotate(var(--beam-rotate));
  animation: heroBeamPulse 8.5s ease-in-out infinite 1.2s;
}

.hero-tech__node {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow:
    0 0 0 4px rgba(28, 68, 156, 0.12),
    0 0 24px rgba(73, 126, 255, 0.3);
  animation: heroNodePulse 5.4s ease-in-out infinite;
}

.hero-tech__node--one {
  top: 25%;
  right: 26%;
}

.hero-tech__node--two {
  top: 41%;
  right: 18%;
  animation-delay: 1.1s;
}

.hero-tech__node--three {
  top: 60%;
  right: 30%;
  animation-delay: 2s;
}

.hero-tech__node--four {
  top: 70%;
  right: 14%;
  animation-delay: 0.6s;
}

.hero .container,
.page-hero .container {
  position: relative;
  z-index: 1;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.hero-metric {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(28, 68, 156, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 8px 24px rgba(28, 68, 156, 0.06);
}

.hero-metric strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 1.35rem;
  color: var(--color-accent);
}

.hero-metric span {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
}

.button {
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(28, 68, 156, 0.18);
}

.button:hover {
  color: #fff;
  background: var(--color-accent-strong);
}

.button--secondary {
  background: var(--color-surface);
  color: var(--color-accent-strong);
  border: 1px solid rgba(28, 68, 156, 0.14);
  box-shadow: none;
}

.card,
.stat-card,
.callout,
.accordion-item,
.search-input,
.hero__panel {
  background: var(--color-surface);
  border: 1px solid rgba(28, 68, 156, 0.08);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-soft);
}

.card,
.hero__panel,
.callout,
.stat-card,
.accordion-item {
  padding: var(--space-4);
}

.card,
.stat-card,
.accordion-item,
.hero__panel {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover,
.stat-card:hover,
.accordion-item:hover,
.hero__panel:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(28, 68, 156, 0.14);
}

.section-heading {
  margin-bottom: 1.1rem;
}

.section-heading h2 {
  margin-bottom: 0.45rem;
}

.card-grid,
.stats-grid,
.detail-grid,
.footer-grid {
  display: grid;
  gap: var(--space-4);
}

.card-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid--three,
.detail-grid,
.footer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stats-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.stat-card strong {
  display: block;
  margin-bottom: var(--space-1);
  font-size: 1.5rem;
  color: var(--color-accent);
}

.stats-grid--enhanced {
  gap: 1.35rem;
}

.stat-card--enhanced {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 26%),
    linear-gradient(135deg, rgba(9, 28, 70, 0.98), rgba(20, 52, 123, 0.96) 58%, rgba(35, 84, 181, 0.92) 100%);
  box-shadow: 0 20px 44px rgba(12, 31, 78, 0.2);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    filter 0.35s ease;
}

.stat-card--enhanced::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 48%, rgba(255, 255, 255, 0.08) 48% 48.15%, transparent 48.15% 100%),
    linear-gradient(90deg, transparent 0 14%, rgba(255, 255, 255, 0.06) 14% 14.1%, transparent 14.1% 100%),
    linear-gradient(180deg, transparent 0 20%, rgba(255, 255, 255, 0.05) 20% 20.12%, transparent 20.12% 100%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 18px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 140px 140px;
  animation: statSurfaceFlow 12s linear infinite;
  pointer-events: none;
}

.stat-card--enhanced::after {
  content: "";
  position: absolute;
  inset: auto 1.1rem 1rem auto;
  width: 62px;
  height: 62px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0 18px 0 0;
  opacity: 0.9;
  transition: transform 0.35s ease, opacity 0.35s ease;
  pointer-events: none;
}

.stat-card--enhanced strong {
  position: relative;
  z-index: 1;
  font-size: 2rem;
  color: #ffe2a8;
  letter-spacing: -0.03em;
  text-shadow: 0 0 18px rgba(255, 226, 168, 0.08);
  transition: transform 0.35s ease, text-shadow 0.35s ease, color 0.35s ease;
}

.stat-card--enhanced span {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.35s ease;
}

.stat-card--enhanced:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow:
    0 24px 52px rgba(12, 31, 78, 0.26),
    0 0 26px rgba(100, 142, 255, 0.12);
  filter: saturate(1.05);
}

.stat-card--enhanced:hover::after {
  opacity: 1;
  transform: translate3d(-3px, -3px, 0);
}

.stat-card--enhanced:hover strong {
  color: #ffebb9;
  transform: translateY(-1px);
  text-shadow: 0 0 24px rgba(255, 226, 168, 0.2);
}

.stat-card--enhanced:hover span {
  color: #ffffff;
}

.callout {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  border-left: 5px solid var(--color-gold);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding-top: var(--space-6);
  background:
    linear-gradient(180deg, #173980 0%, #13306d 100%);
  color: #eef4ff;
  border-top: 12px solid transparent;
  border-image: linear-gradient(90deg, var(--color-gold), var(--color-warm), var(--color-accent)) 1;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.09), transparent 16%),
    radial-gradient(circle at 86% 22%, rgba(241, 138, 33, 0.12), transparent 14%),
    linear-gradient(120deg, transparent 0 38%, rgba(255, 255, 255, 0.05) 38% 38.15%, transparent 38.15% 100%),
    linear-gradient(90deg, transparent 0 18%, rgba(255, 255, 255, 0.05) 18% 18.12%, transparent 18.12% 100%);
  pointer-events: none;
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: auto auto -54px -10%;
  width: 460px;
  height: 180px;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02) 55%, transparent 72%);
  transform: rotate(8deg);
  pointer-events: none;
}

.site-footer a {
  color: #f4f8ff;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-list li + li {
  margin-top: var(--space-1);
}

.footer-grid {
  grid-template-columns: minmax(360px, 1.3fr) minmax(320px, 0.9fr);
  align-items: start;
}

.footer-grid > div:first-child {
  max-width: 640px;
}

.footer-grid > div:first-child h2 {
  margin-bottom: 1rem;
}

.footer-grid > div:last-child {
  justify-self: end;
}

.footer-grid > div:last-child h2 {
  margin-bottom: 1rem;
}

.site-footer .footer-list {
  color: rgba(244, 248, 255, 0.92);
}

.site-footer .footer-list a:hover {
  color: #ffffff;
}

.footer-grid > div:last-child .footer-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  max-width: 360px;
}

.footer-grid > div:last-child .footer-list li + li {
  margin-top: 0;
}

.footer-bottom {
  padding: var(--space-4) 0;
  margin-top: 2.25rem;
  border-top: 1px solid rgba(229, 238, 249, 0.16);
  text-align: center;
}

.page-hero {
  padding-bottom: 1rem;
}

.page-hero .container {
  padding: 2rem;
  border: 7px solid rgba(14, 47, 119, 0.9);
  border-radius: calc(var(--radius-medium) + 2px);
  background:
    radial-gradient(circle at top right, rgba(255, 250, 232, 0.5), transparent 26%),
    linear-gradient(115deg, transparent 0 48%, rgba(255, 255, 255, 0.5) 48% 48.12%, transparent 48.12% 100%),
    linear-gradient(90deg, transparent 0 14%, rgba(28, 68, 156, 0.08) 14% 14.08%, transparent 14.08% 100%),
    linear-gradient(180deg, transparent 0 20%, rgba(28, 68, 156, 0.05) 20% 20.12%, transparent 20.12% 100%),
    repeating-linear-gradient(135deg, rgba(28, 68, 156, 0.055) 0 1px, transparent 1px 16px),
    linear-gradient(180deg, rgba(255, 252, 245, 0.995), rgba(235, 245, 255, 0.975));
  box-shadow:
    0 0 0 1px rgba(102, 147, 255, 0.09),
    0 18px 38px rgba(28, 68, 156, 0.09),
    0 0 28px rgba(80, 128, 255, 0.08);
}

.placeholder-media {
  min-height: 120px;
}

.placeholder-media--large {
  min-height: 180px;
  min-width: 180px;
}

.hero-panel__list {
  display: grid;
  gap: 1rem;
}

.hero-panel__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
}

.hero-panel__item h2 {
  margin-bottom: 0.3rem;
  font-size: 1rem;
}

.hero-panel__item p {
  margin-bottom: 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.hero-panel__mark {
  width: 14px;
  height: 14px;
  margin-top: 0.35rem;
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(28, 68, 156, 0.05);
}

.hero-panel__mark--blue {
  background: var(--color-accent);
}

.hero-panel__mark--red {
  background: var(--color-warm);
}

.hero-panel__mark--gold {
  background: var(--color-gold);
}

@keyframes heroBeamPulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scaleX(0.98) rotate(var(--beam-rotate, 0deg));
  }

  50% {
    opacity: 0.95;
    transform: scaleX(1.04) rotate(var(--beam-rotate, 0deg));
  }
}

@keyframes heroNodePulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.22);
  }
}

@keyframes statSurfaceFlow {
  0% {
    background-position: 0 0, 0 0, 0 0, 0 0;
  }

  100% {
    background-position: 0 0, 0 0, 0 0, 140px 140px;
  }
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.72s ease,
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-enabled .reveal--soft {
  transform: translateY(18px);
}

.js-enabled .reveal--left {
  transform: translate3d(-26px, 12px, 0);
}

.js-enabled .reveal--right {
  transform: translate3d(26px, 12px, 0);
}

@media (prefers-reduced-motion: reduce) {
  .stat-card--enhanced::before {
    animation: none;
  }

  .js-enabled .reveal,
  .js-enabled .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.quick-link-card {
  position: relative;
  overflow: hidden;
}

.quick-link-card__accent {
  display: block;
  width: 52px;
  height: 5px;
  margin-bottom: 1rem;
  border-radius: 999px;
}

.quick-link-card__accent--blue {
  background: var(--color-accent);
}

.quick-link-card__accent--red {
  background: var(--color-warm);
}

.quick-link-card__accent--gold {
  background: var(--color-gold);
}

.narrow-content {
  width: min(100%, 820px);
}

.field-label {
  display: block;
  margin-bottom: var(--space-2);
  font-weight: 600;
}

.search-input {
  width: 100%;
  padding: 0.95rem 1rem;
  margin-bottom: var(--space-4);
  font: inherit;
  color: inherit;
  outline: none;
}

.search-input:focus {
  border-color: rgba(28, 68, 156, 0.28);
  box-shadow: 0 0 0 4px rgba(28, 68, 156, 0.08);
}

.accordion-list {
  display: grid;
  gap: var(--space-3);
}

.accordion-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--color-accent-strong);
}

.accordion-item[hidden] {
  display: none;
}

.faq-visual {
  margin: 0.7rem 0 0;
}

.faq-visual img {
  display: block;
  width: 100%;
  max-width: min(30%, 28rem);
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(28, 68, 156, 0.14);
  box-shadow: 0 14px 30px rgba(28, 68, 156, 0.12);
}

.faq-visual--slim img {
  max-width: min(100%, 31rem);
}

.content-stack {
  display: grid;
  gap: var(--space-4);
}

.detail-layout {
  display: grid;
  gap: var(--space-4);
}

.detail-hero {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  padding: var(--space-5);
  border: 1px solid rgba(28, 68, 156, 0.08);
  border-radius: calc(var(--radius-medium) + 2px);
  background:
    linear-gradient(135deg, rgba(28, 68, 156, 0.04), rgba(241, 138, 33, 0.05)),
    #fff;
  box-shadow: var(--shadow-soft);
}

.detail-hero .detail-media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(180px, 28vw, 340px);
  min-width: clamp(180px, 28vw, 340px);
  min-height: 180px;
  max-height: 220px;
  padding: 1rem;
  overflow: hidden;
}

.detail-hero .detail-media img {
  display: block;
  max-width: 100%;
  max-height: 150px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.back-link {
  font-weight: 600;
}

.list li + li {
  margin-top: var(--space-1);
}

.list--bulleted {
  padding-left: 1.25rem;
  list-style: disc;
}

.text-link {
  color: var(--color-accent-strong);
}

.app-card h2,
.system-card h2,
.content-block h2 {
  margin-bottom: 0.6rem;
}

.app-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 26%),
    linear-gradient(135deg, rgba(9, 28, 70, 0.98), rgba(20, 52, 123, 0.96) 58%, rgba(35, 84, 181, 0.92) 100%);
  box-shadow: 0 20px 44px rgba(12, 31, 78, 0.2);
}

.app-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 48%, rgba(255, 255, 255, 0.08) 48% 48.15%, transparent 48.15% 100%),
    linear-gradient(90deg, transparent 0 14%, rgba(255, 255, 255, 0.06) 14% 14.1%, transparent 14.1% 100%),
    linear-gradient(180deg, transparent 0 20%, rgba(255, 255, 255, 0.05) 20% 20.12%, transparent 20.12% 100%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 18px);
  pointer-events: none;
}

.app-card::after {
  content: "";
  position: absolute;
  inset: auto 1.1rem 1rem auto;
  width: 62px;
  height: 62px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0 18px 0 0;
  opacity: 0.9;
  pointer-events: none;
}

.app-card > * {
  position: relative;
  z-index: 1;
}

.app-card .placeholder-media {
  margin-bottom: 1.4rem;
  border: 1px dashed rgba(255, 255, 255, 0.26);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  color: rgba(255, 255, 255, 0.82);
}

.app-card h2 {
  margin-bottom: 1rem;
}

.app-card h2 a {
  color: #ffe2a8;
}

.app-card p {
  color: rgba(255, 255, 255, 0.92);
}

.app-card .text-link {
  color: #ffffff;
}

.system-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 26%),
    linear-gradient(135deg, rgba(9, 28, 70, 0.98), rgba(20, 52, 123, 0.96) 58%, rgba(35, 84, 181, 0.92) 100%);
  box-shadow: 0 20px 44px rgba(12, 31, 78, 0.2);
}

.system-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 48%, rgba(255, 255, 255, 0.08) 48% 48.15%, transparent 48.15% 100%),
    linear-gradient(90deg, transparent 0 14%, rgba(255, 255, 255, 0.06) 14% 14.1%, transparent 14.1% 100%),
    linear-gradient(180deg, transparent 0 20%, rgba(255, 255, 255, 0.05) 20% 20.12%, transparent 20.12% 100%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 18px);
  pointer-events: none;
}

.system-card::after {
  content: "";
  position: absolute;
  inset: auto 1.1rem 1rem auto;
  width: 62px;
  height: 62px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0 18px 0 0;
  opacity: 0.9;
  pointer-events: none;
}

.system-card > * {
  position: relative;
  z-index: 1;
}

.system-card .placeholder-media {
  margin-bottom: 1.4rem;
  border: 1px dashed rgba(255, 255, 255, 0.26);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  color: rgba(255, 255, 255, 0.82);
}

.system-card h2 {
  margin-bottom: 1rem;
}

.system-card h2,
.system-card h2 a {
  color: #ffe2a8;
}

.system-card p {
  color: rgba(255, 255, 255, 0.92);
}

.system-card .text-link {
  color: #ffffff;
}

.hero__panel {
  position: relative;
  overflow: hidden;
}

.card:not(.app-card):not(.system-card):not(.stat-card--enhanced),
.callout,
.hero__panel,
.accordion-item {
  border-color: rgba(28, 68, 156, 0.18);
  box-shadow:
    0 0 0 1px rgba(102, 147, 255, 0.08),
    0 16px 34px rgba(28, 68, 156, 0.08),
    0 0 26px rgba(80, 128, 255, 0.07);
}

.hero__panel::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-warm), var(--color-gold));
}

.js-enabled .menu-toggle {
  display: none;
}

@media (max-width: 900px) {
  .hero__inner,
  .card-grid--four,
  .card-grid--three,
  .stats-grid,
  .detail-grid,
  .callout,
  .detail-hero {
    grid-template-columns: 1fr 1fr;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header__inner {
    flex-wrap: wrap;
    padding: 1rem 0;
  }

  .js-enabled .menu-toggle {
    display: inline-flex;
  }

  .js-enabled .site-nav {
    width: 100%;
    margin-left: 0;
    padding-left: 0;
    display: none;
  }

  .site-nav::before {
    display: none;
  }

  .js-enabled .site-nav.is-open {
    display: block;
  }

  .nav-list,
  .hero__inner,
  .card-grid--four,
  .card-grid--three,
  .stats-grid,
  .detail-grid,
  .callout,
  .detail-hero {
    grid-template-columns: 1fr;
    display: grid;
  }

  .nav-list {
    margin-left: 0;
  }

  .nav-list a {
    width: 100%;
    border-radius: var(--radius-small);
  }

  .brand {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .brand__text {
    display: none;
  }

  .callout {
    align-items: start;
  }

  .section-divider {
    height: 10px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid > div:last-child {
    justify-self: start;
  }

  .footer-grid > div:last-child .footer-list {
    max-width: none;
  }

  .brand__logo {
    width: min(100%, 242px);
    height: 62px;
    min-width: 0;
    min-height: 62px;
  }
}

.faq-visual--azure img {
  max-width: min(100%, 44rem);
}
