:root {
  color-scheme: light;
  --ink: #111827;
  --night: #08111d;
  --muted: #5b6472;
  --line: #d8e0ea;
  --paper: #f7f9fb;
  --white: #ffffff;
  --blue: #0759ff;
  --cyan: #1689ff;
  --violet: #5b49c8;
  --purple: #6f2cff;
  --lavender: #efeaff;
  --aqua: #66d9ff;
  --teal: #1689ff;
  --coral: #8b5cf6;
  --gold: #66d9ff;
  --shadow: 0 24px 60px rgba(17, 24, 39, 0.14);
  --deep-shadow: 0 30px 90px rgba(8, 17, 29, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(91, 73, 200, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(7, 89, 255, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 54px 54px;
  overflow-x: hidden;
}

.cursor-beam {
  position: fixed;
  z-index: 30;
  inset: auto auto 0 0;
  width: 220px;
  height: 220px;
  pointer-events: none;
  opacity: 0.18;
  transform: translate3d(calc(var(--mx, 50vw) - 110px), calc(var(--my, 50vh) - 110px), 0) rotate(24deg);
  background:
    linear-gradient(90deg, transparent 0 36%, rgba(7, 89, 255, 0.4) 36% 39%, transparent 39% 61%, rgba(111, 44, 255, 0.32) 61% 64%, transparent 64%),
    linear-gradient(0deg, transparent 0 45%, rgba(255, 255, 255, 0.7) 45% 47%, transparent 47%);
  filter: blur(10px);
  mix-blend-mode: screen;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  width: min(1120px, calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  padding: 8px 12px 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: var(--white);
  background: rgba(8, 17, 29, 0.58);
  box-shadow: 0 18px 58px rgba(8, 17, 29, 0.2);
  backdrop-filter: blur(22px) saturate(140%);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.scrolled {
  background: rgba(8, 17, 29, 0.82);
  border-color: rgba(255, 255, 255, 0.16);
}

.brand,
.nav,
.hero-actions,
.contact-card {
  display: flex;
  align-items: center;
}

.brand {
  flex: 0 0 auto;
  gap: 0;
  font-weight: 800;
}

.brand-logo {
  display: block;
  width: clamp(220px, 21vw, 304px);
  height: 58px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 10px 24px rgba(7, 89, 255, 0.22));
}

.nav {
  gap: 6px;
}

.nav a {
  padding: 11px 14px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--ink);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 144px max(24px, calc((100vw - 1120px) / 2)) 62px;
  isolation: isolate;
  scroll-margin-top: 0;
}

.hero-image,
.hero-shade,
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  z-index: -3;
  transform: scale(1.03);
  filter: saturate(1.08) contrast(1.04);
}

.hero-canvas {
  z-index: -1;
  opacity: 0.72;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 17, 29, 0.95), rgba(8, 17, 29, 0.76) 42%, rgba(8, 17, 29, 0.08) 82%),
    linear-gradient(0deg, rgba(19, 16, 62, 0.8), rgba(8, 17, 29, 0.1) 55%, rgba(31, 23, 84, 0.55));
}

.hero-content {
  width: min(640px, 100%);
  padding-bottom: 6vh;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 620px;
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 4.8vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: 0;
  color: var(--white);
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.3rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.12;
}

.hero-copy,
.lead,
.contact p,
.impact-copy p {
  max-width: 720px;
  color: #303b49;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.6;
}

.hero-copy {
  color: rgba(237, 245, 252, 0.86);
  max-width: 600px;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  translate: -115% 0;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transition: translate 520ms ease;
}

.button:hover::before {
  translate: 115% 0;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, #0c1234, var(--violet) 48%, var(--blue));
  box-shadow: 0 20px 44px rgba(7, 89, 255, 0.28);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.signal-row span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-panel {
  position: absolute;
  right: max(24px, calc((100vw - 1120px) / 2));
  bottom: 48px;
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  gap: 1px;
  width: min(500px, calc(100% - 48px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--white);
  background: rgba(8, 17, 29, 0.62);
  box-shadow: var(--deep-shadow);
  backdrop-filter: blur(22px) saturate(130%);
}

.hero-panel div {
  min-height: 98px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
}

.metric {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  font-weight: 800;
  line-height: 1;
}

.metric-label {
  color: rgba(237, 245, 252, 0.68);
  font-size: 0.82rem;
  font-weight: 700;
}

.ansatz-section,
.intro-band,
.program,
.impact,
.contact {
  padding: 110px max(24px, calc((100vw - 1120px) / 2));
  scroll-margin-top: 112px;
}

.ansatz-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 10%, rgba(7, 89, 255, 0.09), transparent 30%),
    radial-gradient(circle at 88% 70%, rgba(91, 73, 200, 0.1), transparent 32%),
    #0a1219;
}

.ansatz-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background:
    linear-gradient(118deg, transparent 0 19%, rgba(7, 89, 255, 0.12) 19% 19.15%, transparent 19.15% 51%, rgba(91, 73, 200, 0.1) 51% 51.18%, transparent 51.18%),
    radial-gradient(circle at 76% 34%, rgba(7, 89, 255, 0.24) 0 1px, transparent 2px),
    radial-gradient(circle at 18% 78%, rgba(91, 73, 200, 0.2) 0 1px, transparent 2px);
  background-size: 100% 100%, 126px 126px, 178px 178px;
  mix-blend-mode: screen;
  animation: drift-lines 16s ease-in-out infinite alternate;
}

.ansatz-section > * {
  position: relative;
  z-index: 1;
}

.intro-flow {
  position: relative;
}

.process-strip {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
  padding: 14px;
  border: 1px solid rgba(91, 73, 200, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(239, 252, 252, 0.78)),
    radial-gradient(circle at 20% 20%, rgba(7, 89, 255, 0.12), transparent 34%);
  box-shadow: 0 18px 54px rgba(17, 24, 39, 0.08);
}

.process-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 8px;
  color: #4c3fb0;
  background: rgba(91, 73, 200, 0.08);
  font-size: 0.82rem;
  font-weight: 800;
}

.process-strip i {
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(7, 89, 255, 0.28), rgba(111, 44, 255, 0.72));
}

.intro-band {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 48px;
  padding: 0;
  background: transparent !important;
}

.phase-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  min-height: 620px;
  align-items: start;
  padding: 28px 0 22px;
  background: transparent !important;
  scroll-margin-top: 112px;
}

.phase-card,
.program-detail,
.contact-card,
.impact-item {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.72)),
    radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(91, 73, 200, 0.2), transparent 34%);
  box-shadow: 0 18px 54px rgba(17, 24, 39, 0.09);
  transform-style: preserve-3d;
}

.phase-card > *,
.program-detail > *,
.contact-card > *,
.impact-item > * {
  position: relative;
  z-index: 1;
}

.phase-card {
  min-height: 360px;
  padding: 34px 30px 30px;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.phase-card::after {
  content: "";
  position: absolute;
  inset: auto 24px 20px 24px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--coral));
  transform: scaleX(0.34);
  transform-origin: left;
  opacity: 0.72;
  transition: transform 260ms ease;
}

.phase-card:hover::after {
  transform: scaleX(1);
}

.tilt-card:hover {
  box-shadow: 0 30px 78px rgba(17, 24, 39, 0.18);
  border-color: rgba(7, 89, 255, 0.32);
}

.phase-card::before,
.program-detail::before,
.contact-card::before,
.impact-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(255, 255, 255, 0.58), transparent 28%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.phase-card:hover::before,
.program-detail:hover::before,
.contact-card:hover::before,
.impact-item:hover::before {
  opacity: 1;
}

.phase-glyph {
  position: absolute;
  right: 28px;
  top: 28px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(7, 89, 255, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 45%, rgba(7, 89, 255, 0.76) 45% 55%, transparent 55%),
    linear-gradient(0deg, transparent 45%, rgba(111, 44, 255, 0.68) 45% 55%, transparent 55%),
    rgba(255, 255, 255, 0.64);
  box-shadow: inset 0 0 0 6px rgba(91, 73, 200, 0.08);
}

.phase-number {
  display: inline-block;
  margin-bottom: 84px;
  color: var(--coral);
  font-weight: 800;
}

.phase-card p,
.program-detail p,
.impact-item span {
  color: var(--muted);
  line-height: 1.7;
}

.program {
  background:
    linear-gradient(115deg, rgba(7, 89, 255, 0.16), transparent 32%),
    linear-gradient(245deg, rgba(111, 44, 255, 0.14), transparent 28%),
    linear-gradient(135deg, #f0f4ff, #fbfbff 58%, #f4edff);
}

.program .section-head {
  width: min(780px, 100%);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin: 46px 0 18px;
}

.timeline-progress {
  position: absolute;
  top: -14px;
  left: 0;
  width: var(--progress, 20%);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--violet), var(--aqua));
  box-shadow: 0 0 26px rgba(7, 89, 255, 0.34);
  transition: width 260ms ease;
}

.step {
  min-height: 96px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.54);
  backdrop-filter: blur(16px);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.step span {
  display: block;
  margin-bottom: 13px;
  color: var(--blue);
  font-size: 0.78rem;
}

.step.active {
  color: var(--ink);
  border-color: rgba(91, 73, 200, 0.42);
  background: linear-gradient(135deg, #ffffff, #f0f4ff);
  box-shadow: 0 24px 56px rgba(91, 73, 200, 0.18);
  transform: translateY(-6px);
}

.program-detail {
  width: min(760px, 100%);
  min-height: 250px;
  padding: 34px;
  overflow: hidden;
  box-shadow: var(--deep-shadow);
}

.program-detail h3 {
  margin-bottom: 12px;
}

.impact {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 48px;
  background:
    linear-gradient(90deg, rgba(7, 89, 255, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    #090b25;
  background-size: 56px 56px;
  color: var(--white);
}

.impact .eyebrow {
  color: #93c5fd;
}

.impact-copy p {
  color: #c8d2dc;
}

.impact-grid {
  display: grid;
  gap: 14px;
}

.impact-item {
  position: relative;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding: 24px;
  border-color: rgba(255, 255, 255, 0.12);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(91, 73, 200, 0.28), transparent 34%);
  backdrop-filter: blur(18px);
  transition: transform 220ms ease, border-color 220ms ease;
}

.impact-item strong {
  color: #ffffff;
}

.impact-item span {
  color: #c8d2dc;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 54px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(240, 244, 255, 0.9) 55%, rgba(244, 237, 255, 0.82)),
    var(--white);
}

.contact-card {
  position: relative;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: var(--deep-shadow);
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid rgba(91, 73, 200, 0.2);
  border-radius: 999px;
  color: #4c3fb0;
  background: rgba(91, 73, 200, 0.08);
  font-size: 0.82rem;
  font-weight: 800;
}

.status-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--blue);
  box-shadow: 0 0 14px rgba(7, 89, 255, 0.62);
  animation: pulse-square 1.8s ease-in-out infinite;
}

@keyframes pulse-square {
  50% {
    opacity: 0.45;
    transform: scale(0.74);
  }
}

.contact-link {
  color: var(--teal);
  font-size: 1.2rem;
  font-weight: 800;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px max(24px, calc((100vw - 1120px) / 2));
  color: #d6dde5;
  background: #101820;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  margin-left: auto;
}

.footer-links a {
  color: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  opacity: 0.78;
  transition: opacity 180ms ease, color 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #ffffff;
  opacity: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .site-header {
    top: 12px;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(8, 17, 29, 0.96);
  }

  .nav.open {
    display: flex;
  }

  .hero {
    min-height: 980px;
    padding-top: 132px;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(8, 17, 29, 0.96), rgba(8, 17, 29, 0.78) 58%, rgba(8, 17, 29, 0.3));
  }

  .hero-panel {
    grid-template-columns: 1fr;
    right: 24px;
    bottom: 24px;
  }

  .hero-panel div {
    min-height: auto;
  }

  .intro-band,
  .phase-section,
  .impact,
  .contact {
    grid-template-columns: 1fr;
  }

  .process-strip {
    grid-template-columns: 1fr;
  }

  .process-strip i {
    width: 2px;
    height: 22px;
    justify-self: center;
    background: linear-gradient(180deg, rgba(7, 89, 255, 0.28), rgba(111, 44, 255, 0.72));
  }

  .phase-section {
    gap: 12px;
    min-height: auto;
    padding-top: 72px;
  }

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

  .impact-item {
    grid-template-columns: 1fr;
  }

  .contact {
    align-items: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .cursor-beam,
  .hero-canvas {
    display: none;
  }

  .intro-band::before,
  .intro-band::after,
  .phase-section::before,
  .phase-section::after,
  .program::before,
  .program::after,
  .impact::before,
  .impact::after,
  .contact::before,
  .contact::after {
    animation: none !important;
  }

  body::before,
  .hero-image,
  .site-header,
  .hero-panel,
  .program-detail,
  .contact-card,
  .phase-glyph,
  .button.primary,
  .process-strip i,
  .timeline-progress,
  .phase-card::after {
    animation: none !important;
  }

  .section-load,
  .phase-card.reveal,
  .phase-card.reveal.visible,
  .section-load.loaded .section-head,
  .section-load.loaded .lead,
  .section-load.loaded .intro-flow,
  .section-load.loaded .impact-copy,
  .section-load.loaded .contact-card,
  .section-load.loaded .timeline,
  .section-load.loaded .program-detail,
  .section-load.loaded .impact-grid {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
  }
}

/* FlowMind-inspired Anima theme */
:root {
  --ink: #ffffff;
  --night: #0a1219;
  --muted: #94a3b8;
  --line: #1e2a35;
  --paper: #0a1219;
  --white: #ffffff;
  --blue: #3b82f6;
  --cyan: #00f5d4;
  --violet: #5b49c8;
  --purple: #6d5dfc;
  --lavender: #162232;
  --aqua: #00f5d4;
  --teal: #00f5d4;
  --coral: #3b82f6;
  --gold: #94a3b8;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.8), inset 0 2px 10px rgba(255, 255, 255, 0.05);
  --deep-shadow: 0 28px 80px rgba(0, 0, 0, 0.78), inset 0 0 0 1px rgba(0, 245, 212, 0.12);
}

body {
  color: #e2e8f0;
  background:
    radial-gradient(circle at 82% 8%, rgba(0, 245, 212, 0.16), transparent 28%),
    radial-gradient(circle at 8% 52%, rgba(59, 130, 246, 0.14), transparent 30%),
    #0a1219;
  background-size: auto;
}

.site-header {
  width: min(1128px, calc(100% - 48px));
  border-color: rgba(0, 245, 212, 0.18);
  background: rgba(10, 18, 25, 0.82);
  box-shadow: var(--shadow), 0 0 0 1px rgba(0, 245, 212, 0.08);
}

.site-header.scrolled {
  background: rgba(10, 18, 25, 0.94);
  border-color: rgba(0, 245, 212, 0.28);
}

.nav a {
  color: #94a3b8;
  font-weight: 600;
}

.nav a:hover {
  color: #ffffff;
  background: rgba(0, 245, 212, 0.08);
}

.hero {
  background: #0a1219;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 18, 25, 0.98), rgba(10, 18, 25, 0.82) 42%, rgba(10, 18, 25, 0.22) 82%),
    linear-gradient(0deg, rgba(10, 18, 25, 0.86), rgba(10, 18, 25, 0.08) 58%, rgba(10, 18, 25, 0.74));
}

.eyebrow {
  color: #00f5d4;
  font-weight: 700;
}

h1,
.impact h2 {
  color: #ffffff;
  font-weight: 500;
}

h2,
h3 {
  color: #ffffff;
  font-weight: 600;
}

.hero-copy,
.lead,
.contact p,
.impact-copy p,
.phase-card p,
.program-detail p,
.impact-item span {
  color: #94a3b8;
  font-weight: 300;
}

.button {
  border-radius: 8px;
  transition: color 150ms ease, background 150ms ease, border-color 150ms ease, transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.button.primary {
  color: #e2e8f0;
  background:
    linear-gradient(#1e2a35, #1e2a35) padding-box,
    linear-gradient(135deg, #00f5d4, #3b82f6) border-box;
  border: 1px solid transparent;
  box-shadow: 0 0 0 1px rgba(0, 245, 212, 0.24) inset, 0 0 18px rgba(0, 245, 212, 0.18);
}

.button.secondary {
  color: #94a3b8;
  border-color: rgba(0, 245, 212, 0.2);
  background: rgba(30, 42, 53, 0.72);
}

.button.secondary:hover,
.button.primary:hover {
  color: #ffffff;
  border-color: rgba(0, 245, 212, 0.62);
}

.signal-row span,
.status-dot,
.process-strip span {
  color: #94a3b8;
  border-color: rgba(0, 245, 212, 0.18);
  background: rgba(30, 42, 53, 0.72);
}

.hero-panel,
.phase-card,
.program-detail,
.contact-card,
.impact-item,
.process-strip,
.step {
  border: 1px solid transparent;
  background:
    linear-gradient(#0a1219, #0a1219) padding-box,
    linear-gradient(135deg, rgba(0, 245, 212, 0.65), rgba(30, 42, 53, 0.55), rgba(59, 130, 246, 0.34)) border-box;
  box-shadow: var(--shadow);
}

.hero-panel div {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
}

.metric-label,
.step,
.step span {
  color: #94a3b8;
}

.metric {
  color: #ffffff;
}

.intro-band,
.phase-section,
.program,
.contact {
  background:
    radial-gradient(circle at 18% 10%, rgba(0, 245, 212, 0.07), transparent 30%),
    radial-gradient(circle at 88% 70%, rgba(59, 130, 246, 0.08), transparent 32%),
    #0a1219;
  background-size: auto;
}

.intro-band,
.phase-section {
  background:
    radial-gradient(circle at 18% 10%, rgba(7, 89, 255, 0.09), transparent 30%),
    radial-gradient(circle at 88% 70%, rgba(91, 73, 200, 0.1), transparent 32%),
    #0a1219 !important;
}

/* Merge Ansatz intro and phase cards into one continuous visual section */
.intro-band {
  padding-bottom: 20px;
  padding-top: 0;
}

.phase-section {
  margin-top: -1px;
  padding-top: 28px;
  border-top: 0 !important;
  background:
    radial-gradient(circle at 18% -12%, rgba(7, 89, 255, 0.09), transparent 34%),
    radial-gradient(circle at 88% -36%, rgba(91, 73, 200, 0.1), transparent 36%),
    #0a1219;
}

.phase-section::before {
  display: none;
}

.intro-band {
  border-top: 1px solid rgba(0, 245, 212, 0.14);
}

.process-strip {
  padding: 10px;
}

.process-strip i,
.timeline-progress {
  background: linear-gradient(90deg, #00f5d4, #3b82f6);
  box-shadow: 0 0 12px rgba(0, 245, 212, 0.42);
}

.phase-card {
  background:
    radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(0, 245, 212, 0.1), transparent 34%) padding-box,
    linear-gradient(#0a1219, #0a1219) padding-box,
    linear-gradient(135deg, rgba(0, 245, 212, 0.56), rgba(30, 42, 53, 0.66)) border-box;
}

.phase-number {
  color: #00f5d4;
}

.phase-glyph {
  border-color: rgba(0, 245, 212, 0.24);
  background:
    linear-gradient(90deg, transparent 45%, rgba(0, 245, 212, 0.72) 45% 55%, transparent 55%),
    linear-gradient(0deg, transparent 45%, rgba(59, 130, 246, 0.64) 45% 55%, transparent 55%),
    rgba(30, 42, 53, 0.76);
  box-shadow: inset 0 0 0 6px rgba(0, 245, 212, 0.06), 0 0 8px rgba(0, 245, 212, 0.24);
}

.phase-card::after {
  background: linear-gradient(90deg, #00f5d4, #3b82f6);
}

.program {
  border-top: 1px solid rgba(0, 245, 212, 0.14);
  border-bottom: 1px solid rgba(0, 245, 212, 0.14);
}

.step.active {
  color: #ffffff;
  border-color: transparent;
  background:
    linear-gradient(#1e2a35, #1e2a35) padding-box,
    linear-gradient(135deg, #00f5d4, #3b82f6) border-box;
  box-shadow: 0 0 0 1px rgba(0, 245, 212, 0.3) inset, 0 0 8px rgba(0, 245, 212, 0.46);
}

.impact {
  background:
    radial-gradient(circle at 12% 20%, rgba(0, 245, 212, 0.08), transparent 30%),
    radial-gradient(circle at 88% 62%, rgba(59, 130, 246, 0.08), transparent 34%),
    #070d13;
  background-size: auto;
}

.impact-item strong,
.contact-link {
  color: #ffffff;
}

.contact-card {
  background:
    linear-gradient(#0a1219, #0a1219) padding-box,
    linear-gradient(135deg, #00f5d4, rgba(30, 42, 53, 0.5), #3b82f6) border-box;
}

.status-dot::before {
  background: #00f5d4;
  box-shadow: 0 0 14px rgba(0, 245, 212, 0.7);
}

.footer {
  color: #94a3b8;
  background: #070d13;
  border-top: 1px solid rgba(0, 245, 212, 0.14);
}

@media (max-width: 900px) {
  .nav {
    background: rgba(10, 18, 25, 0.98);
    border-color: rgba(0, 245, 212, 0.2);
  }

  .hero {
    align-items: start;
    min-height: 900px;
  }

  .hero-content::before {
    left: -12px;
  }
}

/* FlowMind elevation recipe */
:root {
  --flow-surface: #0a1219;
  --flow-surface-soft: #101b26;
  --flow-border: #00f5d4;
  --flow-border-secondary: #1e2a35;
  --flow-shell: linear-gradient(135deg, #00f5d4 0%, #1e2a35 52%, #00f5d4 100%);
  --flow-shadow:
    rgba(0, 0, 0, 0.8) 0 10px 30px 0,
    rgba(255, 255, 255, 0.05) 0 2px 10px 0 inset,
    rgba(0, 245, 212, 0.3) 0 0 0 1px inset,
    rgba(0, 0, 0, 0) 0 0 0 0,
    rgba(0, 0, 0, 0) 0 0 0 0,
    rgb(0, 245, 212) 0 0 8px 0;
  --flow-shadow-muted:
    rgba(0, 0, 0, 0.8) 0 10px 30px 0,
    rgba(255, 255, 255, 0.05) 0 2px 10px 0 inset,
    rgba(0, 245, 212, 0.16) 0 0 0 1px inset;
}

.site-header,
.hero-panel,
.phase-card,
.program-detail,
.contact-card,
.impact-item,
.process-strip,
.step,
.button {
  border: 1px solid transparent;
  border-radius: 8px;
  background:
    linear-gradient(var(--flow-surface), var(--flow-surface)) padding-box,
    var(--flow-shell) border-box;
  box-shadow: var(--flow-shadow-muted);
}

.site-header,
.hero-panel,
.program-detail,
.contact-card {
  box-shadow: var(--flow-shadow);
}

.hero-panel div {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    var(--flow-surface);
  box-shadow: inset -1px 0 0 #1e2a35;
}

.hero-panel div:last-child {
  box-shadow: none;
}

.phase-card,
.impact-item {
  background:
    linear-gradient(var(--flow-surface), var(--flow-surface)) padding-box,
    var(--flow-shell) border-box;
}

.step {
  background:
    linear-gradient(var(--flow-surface), var(--flow-surface)) padding-box,
    linear-gradient(135deg, rgba(0, 245, 212, 0.42), #1e2a35 58%, rgba(0, 245, 212, 0.18)) border-box;
  box-shadow: var(--flow-shadow-muted);
}

.step.active,
.button.primary {
  background:
    linear-gradient(#1e2a35, #1e2a35) padding-box,
    var(--flow-shell) border-box;
  box-shadow: var(--flow-shadow);
}

.button.secondary {
  background:
    linear-gradient(var(--flow-surface), var(--flow-surface)) padding-box,
    linear-gradient(135deg, rgba(148, 163, 184, 0.24), #1e2a35 58%, rgba(0, 245, 212, 0.24)) border-box;
  box-shadow: var(--flow-shadow-muted);
}

.signal-row span,
.status-dot,
.process-strip span {
  border: 1px solid #1e2a35;
  background: #101b26;
  box-shadow:
    rgba(255, 255, 255, 0.04) 0 1px 8px 0 inset,
    rgba(0, 245, 212, 0.16) 0 0 0 1px inset;
}

.button:hover,
.step:hover {
  border-color: transparent;
  box-shadow: var(--flow-shadow);
}

.contact-card {
  background:
    radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(0, 245, 212, 0.12), transparent 34%) padding-box,
    linear-gradient(var(--flow-surface), var(--flow-surface)) padding-box,
    var(--flow-shell) border-box;
}

.contact-card:hover {
  border-color: transparent;
  box-shadow: var(--flow-shadow);
}

.section-load {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(3px);
  transition:
    opacity 520ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.section-load.loaded {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.section-load.loaded .section-head,
.section-load.loaded .lead,
.section-load.loaded .intro-flow,
.section-load.loaded .impact-copy,
.section-load.loaded .contact-card {
  animation: load-rise 820ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.section-load.loaded .timeline,
.section-load.loaded .program-detail,
.section-load.loaded .impact-grid {
  animation: load-slide 880ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.section-load.loaded .program-detail,
.section-load.loaded .impact-grid,
.section-load.loaded .contact-card {
  animation-delay: 120ms;
}

.phase-card,
.program-detail,
.impact-item {
  transform: none !important;
}

.phase-card::before,
.program-detail::before,
.impact-item::before {
  display: none;
}

.phase-card:hover,
.program-detail:hover,
.impact-item:hover {
  border-color: transparent;
  box-shadow: var(--flow-shadow-muted);
}

/* Subtle structured backgrounds without grid-paper geometry */
.intro-band,
.phase-section,
.program,
.impact,
.contact {
  position: relative;
  overflow: hidden;
}

.intro-band::before,
.program::before,
.impact::before,
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background:
    linear-gradient(118deg, transparent 0 21%, rgba(0, 245, 212, 0.1) 21% 21.16%, transparent 21.16% 48%, rgba(59, 130, 246, 0.08) 48% 48.16%, transparent 48.16%),
    linear-gradient(14deg, transparent 0 64%, rgba(0, 245, 212, 0.075) 64% 64.14%, transparent 64.14%),
    radial-gradient(circle at 74% 36%, rgba(0, 245, 212, 0.22) 0 1px, transparent 2px),
    radial-gradient(circle at 18% 72%, rgba(148, 163, 184, 0.18) 0 1px, transparent 2px);
  background-size: 100% 100%, 100% 100%, 132px 132px, 168px 168px;
  mix-blend-mode: screen;
  animation: drift-lines 16s ease-in-out infinite alternate;
}

.intro-band::after,
.program::after,
.impact::after,
.contact::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  background: repeating-linear-gradient(180deg, transparent 0 15px, rgba(255, 255, 255, 0.035) 16px, transparent 17px);
  animation: scan-bands 10s linear infinite;
}

.phase-section::after {
  display: none;
}

.phase-section::before {
  display: none !important;
}

.phase-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.34;
  background:
    radial-gradient(circle at 20% 24%, rgba(0, 245, 212, 0.12), transparent 25%),
    linear-gradient(152deg, transparent 0 18%, rgba(0, 245, 212, 0.08) 18% 18.16%, transparent 18.16% 70%, rgba(59, 130, 246, 0.08) 70% 70.16%, transparent 70.16%);
  animation: node-pulse 8s ease-in-out infinite;
}

.intro-band > *,
.phase-section > *,
.program > *,
.impact > *,
.contact > * {
  position: relative;
  z-index: 1;
}

/* Anima brand motion layer */
:root {
  --anima-blue: #0759ff;
  --anima-blue-bright: #0b7cff;
  --anima-purple: #5b49c8;
  --anima-purple-deep: #3d2aa5;
  --anima-violet: #7c3aed;
  --flow-border: var(--anima-blue);
  --flow-shell: linear-gradient(135deg, var(--anima-blue) 0%, var(--anima-purple) 48%, var(--anima-blue-bright) 100%);
  --flow-shadow:
    rgba(0, 0, 0, 0.76) 0 10px 30px 0,
    rgba(255, 255, 255, 0.05) 0 2px 10px 0 inset,
    rgba(91, 73, 200, 0.34) 0 0 0 1px inset,
    rgba(0, 0, 0, 0) 0 0 0 0,
    rgba(0, 0, 0, 0) 0 0 0 0,
    rgba(7, 89, 255, 0.78) 0 0 12px 0;
  --flow-shadow-muted:
    rgba(0, 0, 0, 0.74) 0 10px 30px 0,
    rgba(255, 255, 255, 0.05) 0 2px 10px 0 inset,
    rgba(91, 73, 200, 0.18) 0 0 0 1px inset;
}

.scroll-progress {
  position: fixed;
  z-index: 60;
  top: 0;
  left: 0;
  width: var(--scroll-progress, 0%);
  height: 3px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--anima-blue), var(--anima-purple), var(--anima-blue-bright));
  box-shadow: 0 0 16px rgba(7, 89, 255, 0.7);
}

body::before {
  content: "";
  position: fixed;
  inset: -20%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.42;
  background:
    radial-gradient(circle at 18% 28%, rgba(7, 89, 255, 0.24), transparent 28%),
    radial-gradient(circle at 78% 18%, rgba(91, 73, 200, 0.26), transparent 30%),
    radial-gradient(circle at 64% 82%, rgba(124, 58, 237, 0.18), transparent 32%);
  filter: blur(8px);
  animation: anima-aurora 18s ease-in-out infinite alternate;
}

.cursor-beam {
  background:
    linear-gradient(90deg, transparent 0 36%, rgba(7, 89, 255, 0.35) 36% 39%, transparent 39% 61%, rgba(91, 73, 200, 0.32) 61% 64%, transparent 64%),
    linear-gradient(0deg, transparent 0 45%, rgba(255, 255, 255, 0.56) 45% 47%, transparent 47%);
}

.site-header,
.hero-panel,
.program-detail,
.contact-card {
  animation: surface-breathe 7s ease-in-out infinite alternate;
}

.hero-image {
  animation: hero-drift 18s ease-in-out infinite alternate;
}

.hero-canvas {
  filter: saturate(1.25);
}

.eyebrow {
  color: var(--anima-blue-bright);
}

.button.primary {
  background:
    linear-gradient(120deg, #10142a, #1b2364, #0759ff, #5b49c8, #10142a) padding-box,
    var(--flow-shell) border-box;
  background-size: 260% 260%, auto;
  animation: gradient-flow 6s ease-in-out infinite;
}

.button.secondary:hover,
.button.primary:hover {
  border-color: transparent;
}

.signal-row span {
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), color 150ms ease, border-color 150ms ease;
}

.signal-row span:hover {
  color: #ffffff;
  transform: translateY(-3px);
  border-color: rgba(7, 89, 255, 0.48);
}

.hero-panel {
  animation: surface-breathe 7s ease-in-out infinite alternate, float-panel 8s ease-in-out infinite;
}

.metric {
  text-shadow: 0 0 22px rgba(7, 89, 255, 0.34);
}

.intro-band,
.phase-section,
.program,
.impact,
.contact {
  background:
    radial-gradient(circle at 18% 10%, rgba(7, 89, 255, 0.09), transparent 30%),
    radial-gradient(circle at 88% 70%, rgba(91, 73, 200, 0.1), transparent 32%),
    #0a1219;
}

.intro-band::before {
  background:
    linear-gradient(118deg, transparent 0 19%, rgba(7, 89, 255, 0.12) 19% 19.15%, transparent 19.15% 51%, rgba(91, 73, 200, 0.1) 51% 51.18%, transparent 51.18%),
    radial-gradient(circle at 76% 34%, rgba(7, 89, 255, 0.24) 0 1px, transparent 2px),
    radial-gradient(circle at 18% 78%, rgba(91, 73, 200, 0.2) 0 1px, transparent 2px);
}

.phase-section::before {
  background:
    radial-gradient(circle at 20% 24%, rgba(7, 89, 255, 0.13), transparent 25%),
    linear-gradient(152deg, transparent 0 18%, rgba(7, 89, 255, 0.09) 18% 18.16%, transparent 18.16% 70%, rgba(91, 73, 200, 0.1) 70% 70.16%, transparent 70.16%);
}

.phase-section::after {
  background:
    radial-gradient(circle at 16% 22%, rgba(7, 89, 255, 0.3) 0 2px, transparent 3px),
    radial-gradient(circle at 46% 66%, rgba(91, 73, 200, 0.26) 0 2px, transparent 3px),
    radial-gradient(circle at 82% 28%, rgba(7, 89, 255, 0.2) 0 2px, transparent 3px);
}

.program::before {
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(7, 89, 255, 0.16) 8% 8.16%, transparent 8.16% 26%, rgba(91, 73, 200, 0.12) 26% 26.16%, transparent 26.16%),
    linear-gradient(0deg, transparent 0 68%, rgba(7, 89, 255, 0.09) 68% 68.14%, transparent 68.14%),
    radial-gradient(circle at 28% 20%, rgba(91, 73, 200, 0.22) 0 1px, transparent 2px);
}

.impact::before,
.contact::before {
  background:
    radial-gradient(ellipse at 24% 38%, rgba(7, 89, 255, 0.13), transparent 34%),
    radial-gradient(ellipse at 78% 64%, rgba(91, 73, 200, 0.14), transparent 36%),
    linear-gradient(142deg, transparent 0 42%, rgba(7, 89, 255, 0.09) 42% 42.12%, transparent 42.12%);
}

.phase-number,
.step span {
  color: var(--anima-blue-bright);
}

.phase-glyph {
  border-color: rgba(7, 89, 255, 0.26);
  background:
    linear-gradient(90deg, transparent 45%, rgba(7, 89, 255, 0.76) 45% 55%, transparent 55%),
    linear-gradient(0deg, transparent 45%, rgba(91, 73, 200, 0.7) 45% 55%, transparent 55%),
    rgba(30, 42, 53, 0.76);
  box-shadow: inset 0 0 0 6px rgba(91, 73, 200, 0.08), 0 0 12px rgba(7, 89, 255, 0.2);
  animation: glyph-pulse 4.5s ease-in-out infinite;
}

.phase-icon {
  position: absolute;
  right: 22px;
  top: 22px;
  z-index: 1;
  width: 96px;
  height: 96px;
  padding: 0;
  border: 1px solid rgba(7, 89, 255, 0.24);
  border-radius: 12px;
  object-fit: cover;
  background: rgba(10, 18, 25, 0.24);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.28),
    0 0 24px rgba(7, 89, 255, 0.2);
  filter: none;
  mix-blend-mode: screen;
  opacity: 0.9;
  animation: icon-float 6s ease-in-out infinite;
}

.phase-card:nth-child(2) .phase-icon {
  animation-delay: 900ms;
}

.phase-card:nth-child(3) .phase-icon {
  animation-delay: 1800ms;
}

.process-strip i,
.timeline-progress,
.phase-card::after {
  background: linear-gradient(90deg, var(--anima-blue), var(--anima-purple), var(--anima-blue-bright));
  background-size: 220% 100%;
  animation: line-flow 5s linear infinite;
  box-shadow: 0 0 14px rgba(7, 89, 255, 0.36);
}

.step.active {
  background:
    linear-gradient(#1e2a35, #1e2a35) padding-box,
    var(--flow-shell) border-box;
}

.reveal.visible {
  animation: reveal-rise 700ms cubic-bezier(0.4, 0, 0.2, 1) both;
}

.contact-card {
  background:
    radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(91, 73, 200, 0.14), transparent 34%) padding-box,
    linear-gradient(var(--flow-surface), var(--flow-surface)) padding-box,
    var(--flow-shell) border-box;
}

.status-dot::before {
  background: var(--anima-blue-bright);
  box-shadow: 0 0 16px rgba(7, 89, 255, 0.75);
}

.kinetic-title {
  display: grid;
  gap: 0.03em;
}

.kinetic-title span {
  display: block;
  transform-origin: left center;
  animation: none;
}

.magnetic {
  transform: translate3d(var(--magnet-x, 0), var(--magnet-y, 0), 0);
}

.magnetic:hover {
  transform: translate3d(var(--magnet-x, 0), var(--magnet-y, -2px), 0) scale(1.025);
}

/* Hero restyle pass */
.hero {
  align-items: center;
  padding-top: 132px;
}

.hero-shade {
  background:
    radial-gradient(ellipse at 20% 44%, rgba(7, 89, 255, 0.16), transparent 34%),
    linear-gradient(90deg, rgba(10, 18, 25, 0.98), rgba(10, 18, 25, 0.78) 43%, rgba(10, 18, 25, 0.16) 82%),
    linear-gradient(0deg, rgba(10, 18, 25, 0.9), rgba(10, 18, 25, 0.08) 58%, rgba(10, 18, 25, 0.72));
}

.hero-content {
  position: relative;
  width: min(610px, 100%);
  padding-bottom: 3vh;
}

.hero-content::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 16px;
  bottom: 36px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--anima-blue), var(--anima-purple), transparent);
  opacity: 0.9;
  box-shadow: 0 0 18px rgba(7, 89, 255, 0.55);
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.hero .eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--anima-blue-bright);
  box-shadow: 0 0 12px rgba(7, 89, 255, 0.7);
}

.hero h1 {
  position: relative;
  max-width: 610px;
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 4.45vw, 4.35rem);
  line-height: 1.04;
}

.hero h1::after {
  content: "";
  display: block;
  width: min(210px, 42%);
  height: 3px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--anima-blue), var(--anima-purple), var(--anima-blue-bright));
  background-size: 220% 100%;
  box-shadow: 0 0 18px rgba(7, 89, 255, 0.45);
  animation: line-flow 5s linear infinite;
}

.hero-copy {
  max-width: 570px;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
}

.hero-panel {
  width: min(470px, calc(100% - 48px));
  bottom: 52px;
}

.hero-panel::before {
  content: "AI READINESS";
  position: absolute;
  left: 16px;
  top: -28px;
  color: rgba(226, 232, 240, 0.58);
  font-size: 0.72rem;
  font-weight: 800;
}

.phase-card.visible,
.impact-item.visible {
  animation: card-sweep 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.phase-card.visible:nth-child(2),
.impact-item.visible:nth-child(2) {
  animation-delay: 90ms;
}

.phase-card.visible:nth-child(3),
.impact-item.visible:nth-child(3) {
  animation-delay: 180ms;
}

.phase-card.reveal {
  opacity: 0;
  transform: translateY(48px) scale(0.96);
  filter: blur(6px);
}

.phase-card.reveal.visible {
  animation: phase-load 860ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.phase-card.reveal.visible:nth-child(2) {
  animation-delay: 140ms;
}

.phase-card.reveal.visible:nth-child(3) {
  animation-delay: 280ms;
}

.phase-card.reveal.visible .phase-icon {
  animation:
    icon-pop 760ms cubic-bezier(0.16, 1, 0.3, 1) both,
    icon-float 6s ease-in-out 760ms infinite;
}

.phase-card.reveal.visible:nth-child(2) .phase-icon {
  animation-delay: 260ms, 1020ms;
}

.phase-card.reveal.visible:nth-child(3) .phase-icon {
  animation-delay: 400ms, 1160ms;
}

.phase-card::after,
.impact-item::after,
.program-detail::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(105deg, transparent 0 35%, rgba(255, 255, 255, 0.18) 44%, transparent 54% 100%);
  transform: translateX(-120%);
  opacity: 0;
}

.phase-card.visible::after,
.impact-item.visible::after {
  animation: sweep-light 1.2s ease 220ms both;
}

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

.step::after {
  content: "";
  position: absolute;
  inset: auto 14px 12px 14px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--anima-blue), var(--anima-purple));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.step:hover::after,
.step.active::after {
  transform: scaleX(1);
}

.program-detail.is-switching {
  animation: detail-pop 420ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes title-slam {
  from {
    opacity: 0;
    transform: translateY(46px) skewY(3deg) scale(0.96);
    clip-path: inset(0 0 100% 0);
  }
  to {
    opacity: 1;
    transform: translateY(0) skewY(0) scale(1);
    clip-path: inset(0 0 0 0);
  }
}

@keyframes card-sweep {
  from {
    opacity: 0;
    transform: translateY(44px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes phase-load {
  0% {
    opacity: 0;
    transform: translateY(54px) scale(0.94);
    filter: blur(8px);
  }
  55% {
    opacity: 1;
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes icon-pop {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.78) rotate(-4deg);
  }
  70% {
    opacity: 1;
    transform: translateY(-4px) scale(1.06) rotate(1deg);
  }
  100% {
    opacity: 0.9;
    transform: translateY(0) scale(1) rotate(0);
  }
}

@keyframes sweep-light {
  0% {
    opacity: 0;
    transform: translateX(-120%);
  }
  22% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(120%);
  }
}

@keyframes detail-pop {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes load-rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes load-slide {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes anima-aurora {
  from {
    transform: translate3d(-2%, 0, 0) rotate(0deg) scale(1);
  }
  to {
    transform: translate3d(2%, -2%, 0) rotate(4deg) scale(1.05);
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.03) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.5%, -1%, 0);
  }
}

@keyframes surface-breathe {
  from {
    box-shadow: var(--flow-shadow-muted);
  }
  to {
    box-shadow: var(--flow-shadow);
  }
}

@keyframes float-panel {
  50% {
    transform: translateY(-7px);
  }
}

@keyframes gradient-flow {
  0%,
  100% {
    background-position: 0% 50%, 0 0;
  }
  50% {
    background-position: 100% 50%, 0 0;
  }
}

@keyframes line-flow {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 220% 50%;
  }
}

@keyframes glyph-pulse {
  50% {
    opacity: 0.72;
    transform: scale(0.96);
  }
}

@keyframes icon-float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-6px) scale(1.025);
  }
}

@keyframes reveal-rise {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.intro-band::before {
  opacity: 0.48;
  background:
    linear-gradient(118deg, transparent 0 19%, rgba(0, 245, 212, 0.11) 19% 19.15%, transparent 19.15% 51%, rgba(59, 130, 246, 0.08) 51% 51.18%, transparent 51.18%),
    radial-gradient(circle at 76% 34%, rgba(0, 245, 212, 0.24) 0 1px, transparent 2px),
    radial-gradient(circle at 18% 78%, rgba(148, 163, 184, 0.16) 0 1px, transparent 2px);
  background-size: 100% 100%, 126px 126px, 178px 178px;
}

.phase-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background:
    radial-gradient(circle at 16% 22%, rgba(0, 245, 212, 0.28) 0 2px, transparent 3px),
    radial-gradient(circle at 46% 66%, rgba(59, 130, 246, 0.22) 0 2px, transparent 3px),
    radial-gradient(circle at 82% 28%, rgba(0, 245, 212, 0.18) 0 2px, transparent 3px);
  animation: node-flicker 5s ease-in-out infinite alternate;
}

.program::before {
  opacity: 0.38;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(0, 245, 212, 0.16) 8% 8.16%, transparent 8.16% 26%, rgba(59, 130, 246, 0.1) 26% 26.16%, transparent 26.16%),
    linear-gradient(0deg, transparent 0 68%, rgba(0, 245, 212, 0.08) 68% 68.14%, transparent 68.14%),
    radial-gradient(circle at 28% 20%, rgba(0, 245, 212, 0.18) 0 1px, transparent 2px);
  background-size: 420px 100%, 100% 100%, 96px 96px;
  animation: scan-map 12s linear infinite;
}

.impact::before {
  opacity: 0.32;
  background:
    radial-gradient(ellipse at 24% 38%, rgba(0, 245, 212, 0.12), transparent 34%),
    radial-gradient(ellipse at 78% 64%, rgba(59, 130, 246, 0.13), transparent 36%),
    linear-gradient(142deg, transparent 0 42%, rgba(0, 245, 212, 0.08) 42% 42.12%, transparent 42.12%);
  animation: ambient-shift 14s ease-in-out infinite alternate;
}

.contact::before {
  opacity: 0.3;
  background:
    radial-gradient(circle at 76% 40%, rgba(0, 245, 212, 0.14), transparent 26%),
    linear-gradient(128deg, transparent 0 58%, rgba(0, 245, 212, 0.1) 58% 58.14%, transparent 58.14%),
    radial-gradient(circle at 14% 72%, rgba(59, 130, 246, 0.1), transparent 28%);
  animation: ambient-shift 18s ease-in-out infinite alternate-reverse;
}

@keyframes drift-lines {
  from {
    transform: translate3d(-10px, 0, 0);
    background-position: 0 0, 0 0, 0 0, 0 0;
  }
  to {
    transform: translate3d(10px, -8px, 0);
    background-position: 0 0, 22px -18px, 18px 24px, -24px 18px;
  }
}

@keyframes scan-bands {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 96px;
  }
}

@keyframes node-pulse {
  0%,
  100% {
    opacity: 0.22;
    transform: scale(1);
  }
  50% {
    opacity: 0.42;
    transform: scale(1.012);
  }
}

@keyframes node-flicker {
  from {
    opacity: 0.14;
    transform: translateY(0);
  }
  to {
    opacity: 0.32;
    transform: translateY(-8px);
  }
}

@keyframes scan-map {
  from {
    background-position: -220px 0, 0 0, 0 0;
  }
  to {
    background-position: 220px 0, 0 0, 32px 18px;
  }
}

@keyframes ambient-shift {
  from {
    transform: translate3d(-8px, 0, 0) scale(1);
  }
  to {
    transform: translate3d(8px, -10px, 0) scale(1.03);
  }
}

@media (max-width: 560px) {
  .brand-logo {
    width: 174px;
    height: 46px;
  }

  .hero {
    min-height: 930px;
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 3.4rem);
  }

  .intro-band,
  .program,
  .impact,
  .contact {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .phase-card,
  .program-detail,
  .contact-card {
    padding: 24px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
    margin-left: 0;
  }
}

/* Final polish: the Ansatz block is one visual section */
.ansatz-section .intro-band,
.ansatz-section .phase-section {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none;
  overflow: visible;
}

.ansatz-section .intro-band,
.ansatz-section .intro-flow,
.ansatz-section .section-head {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.ansatz-section .intro-band::before,
.ansatz-section .intro-band::after,
.ansatz-section .phase-section::before,
.ansatz-section .phase-section::after {
  display: none !important;
  content: none !important;
}

.ansatz-section .intro-band {
  padding-bottom: 24px;
}

.ansatz-section .phase-section {
  padding-top: 36px;
  min-height: auto;
  padding-bottom: 96px;
}

/* Title scale pass */
h2 {
  font-size: clamp(2.15rem, 3.55vw, 3.75rem);
  line-height: 1.06;
}

.ansatz-section h2 {
  max-width: 600px;
}

.program h2,
.impact h2,
.contact h2 {
  max-width: 860px;
}

.program .section-head {
  width: min(860px, 100%);
}

.contact h2 {
  font-size: clamp(2rem, 3.3vw, 3.45rem);
}

/* Hero cleanup: focused CTA, tooltip chips, two proof metrics */
.hero-actions {
  gap: 0;
}

.signal-row {
  align-items: center;
  gap: 12px;
}

.signal-row span {
  position: relative;
  cursor: help;
  outline: none;
}

.signal-row span::before,
.signal-row span::after {
  position: absolute;
  left: 50%;
  pointer-events: none;
  opacity: 0;
  transition:
    opacity 180ms ease,
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 12;
}

.signal-row span::before {
  content: attr(data-tooltip);
  top: calc(100% + 14px);
  width: min(270px, 78vw);
  padding: 12px 14px;
  border: 1px solid rgba(7, 89, 255, 0.48);
  border-radius: 8px;
  color: rgba(237, 245, 252, 0.92);
  background:
    linear-gradient(135deg, rgba(15, 27, 42, 0.98), rgba(7, 18, 29, 0.98)),
    #07121d;
  box-shadow:
    rgba(0, 0, 0, 0.62) 0 16px 36px,
    rgba(7, 89, 255, 0.45) 0 0 18px,
    rgba(255, 255, 255, 0.06) 0 1px 8px inset;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: left;
  transform: translate(-50%, 8px) scale(0.98);
}

.signal-row span::after {
  content: "";
  top: calc(100% + 7px);
  width: 12px;
  height: 12px;
  border-left: 1px solid rgba(7, 89, 255, 0.48);
  border-top: 1px solid rgba(7, 89, 255, 0.48);
  background: #07121d;
  transform: translate(-50%, 8px) rotate(45deg);
}

.signal-row span:hover::before,
.signal-row span:hover::after,
.signal-row span:focus-visible::before,
.signal-row span:focus-visible::after {
  opacity: 1;
}

.signal-row span:hover::before,
.signal-row span:focus-visible::before {
  transform: translate(-50%, 0) scale(1);
}

.signal-row span:hover::after,
.signal-row span:focus-visible::after {
  transform: translate(-50%, 0) rotate(45deg);
}

.signal-row span:focus-visible {
  border-color: rgba(7, 89, 255, 0.7);
  box-shadow:
    rgba(7, 89, 255, 0.34) 0 0 0 2px,
    rgba(255, 255, 255, 0.04) 0 1px 8px 0 inset;
}

.hero-panel {
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  width: min(470px, calc(100% - 48px));
}

.hero-panel div {
  min-height: 104px;
}

.hero-panel div:nth-child(2) {
  box-shadow: none;
}

.metric {
  white-space: nowrap;
}

@media (max-width: 700px) {
  .signal-row span::before {
    left: 0;
    width: min(260px, calc(100vw - 48px));
    transform: translate(0, 8px) scale(0.98);
  }

  .signal-row span::after {
    left: 24px;
    transform: translate(0, 8px) rotate(45deg);
  }

  .signal-row span:hover::before,
  .signal-row span:focus-visible::before {
    transform: translate(0, 0) scale(1);
  }

  .signal-row span:hover::after,
  .signal-row span:focus-visible::after {
    transform: translate(0, 0) rotate(45deg);
  }

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

/* Change-note pass: expanded header, no process strip, new three-column service section */
.site-header {
  width: min(1280px, calc(100% - 32px));
}

.brand-logo {
  width: clamp(190px, 16vw, 246px);
}

.nav {
  gap: 2px;
}

.nav a {
  padding: 10px 8px;
  font-size: clamp(0.68rem, 0.78vw, 0.82rem);
  text-transform: uppercase;
  letter-spacing: 0;
  white-space: nowrap;
}

.process-strip {
  display: none !important;
}

.ansatz-section .intro-band {
  padding-bottom: 42px;
}

.solutions {
  position: relative;
  overflow: hidden;
  padding: 112px max(24px, calc((100vw - 1120px) / 2));
  scroll-margin-top: 112px;
  background:
    radial-gradient(circle at 18% 18%, rgba(7, 89, 255, 0.12), transparent 30%),
    radial-gradient(circle at 84% 74%, rgba(91, 73, 200, 0.13), transparent 34%),
    linear-gradient(135deg, #07111b 0%, #0a1219 52%, #0d1024 100%);
  border-top: 1px solid rgba(0, 245, 212, 0.12);
  border-bottom: 1px solid rgba(0, 245, 212, 0.12);
}

.solutions::before,
.solutions::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.solutions::before {
  opacity: 0.3;
  background:
    linear-gradient(118deg, transparent 0 20%, rgba(7, 89, 255, 0.11) 20% 20.14%, transparent 20.14% 58%, rgba(91, 73, 200, 0.1) 58% 58.14%, transparent 58.14%),
    radial-gradient(circle at 12% 32%, rgba(7, 89, 255, 0.24) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 24%, rgba(91, 73, 200, 0.22) 0 1px, transparent 2px);
  background-size: 100% 100%, 170px 170px, 210px 210px;
  animation: structure-pulse 9s ease-in-out infinite alternate;
}

.solutions::after {
  opacity: 0.14;
  background: repeating-linear-gradient(180deg, transparent 0 18px, rgba(255, 255, 255, 0.035) 19px, transparent 20px);
  animation: scan-bands 11s linear infinite;
}

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

.solutions .section-head {
  width: min(860px, 100%);
  margin-bottom: 42px;
}

.solutions h2 {
  max-width: 880px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.solution-card {
  position: relative;
  min-height: 420px;
  padding: 34px 30px;
  border: 1px solid transparent;
  border-radius: 8px;
  background:
    linear-gradient(var(--flow-surface, #0a1219), var(--flow-surface, #0a1219)) padding-box,
    linear-gradient(135deg, rgba(7, 89, 255, 0.9), rgba(91, 73, 200, 0.62), rgba(7, 89, 255, 0.42)) border-box;
  box-shadow:
    rgba(0, 0, 0, 0.78) 0 14px 34px,
    rgba(255, 255, 255, 0.05) 0 2px 10px inset,
    rgba(7, 89, 255, 0.28) 0 0 22px;
  overflow: hidden;
}

.solution-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background:
    radial-gradient(circle at 82% 12%, rgba(7, 89, 255, 0.18), transparent 28%),
    linear-gradient(145deg, transparent 0 48%, rgba(91, 73, 200, 0.1) 48% 48.2%, transparent 48.2%);
  pointer-events: none;
}

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

.solution-number {
  display: inline-flex;
  margin-bottom: 64px;
  color: var(--anima-blue-bright, #1287ff);
  font-size: 0.95rem;
  font-weight: 900;
}

.solution-card h3 {
  margin-bottom: 16px;
  color: #ffffff;
  font-size: clamp(1.65rem, 2.2vw, 2.25rem);
  line-height: 1.05;
}

.solution-card p,
.solution-card li {
  color: #94a3b8;
  font-size: 1rem;
  line-height: 1.65;
}

.solution-card ul {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  padding: 0;
  list-style: none;
}

.solution-card li {
  position: relative;
  padding-left: 18px;
}

.solution-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--anima-blue, #0759ff), var(--anima-purple, #5b49c8));
  box-shadow: 0 0 12px rgba(7, 89, 255, 0.62);
}

.solution-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 24px;
  padding: 0 16px;
  border: 1px solid rgba(7, 89, 255, 0.58);
  border-radius: 8px;
  color: #ffffff;
  font-weight: 900;
  background: rgba(7, 89, 255, 0.12);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.solution-link:hover {
  transform: translateY(-2px);
  border-color: rgba(18, 135, 255, 0.9);
  background: rgba(7, 89, 255, 0.22);
}

@media (max-width: 1180px) {
  .site-header {
    width: min(1120px, calc(100% - 32px));
  }

  .brand-logo {
    width: 184px;
  }

  .nav a {
    padding-inline: 6px;
    font-size: 0.68rem;
  }
}

@media (max-width: 980px) {
  .brand-logo {
    width: clamp(190px, 38vw, 246px);
  }

  .nav a {
    font-size: 0.86rem;
    padding: 12px 14px;
  }

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

  .solution-card {
    min-height: auto;
  }
}

/* Repair pass: top-flush hero, loaded metrics and non-card service pathway */
.hero#top {
  margin-top: -94px;
  padding-top: clamp(168px, 18vh, 206px);
}

.hero-image {
  top: 0;
  object-position: center top;
}

.hero-panel {
  bottom: clamp(128px, 18vh, 214px) !important;
  transform-origin: right center;
}

.hero-panel.is-loading {
  animation: metric-panel-arrive 920ms cubic-bezier(0.16, 1, 0.3, 1) both, surface-breathe 7s ease-in-out 1s infinite alternate, float-panel 8s ease-in-out 1s infinite;
}

.hero-panel.is-loading .metric {
  animation: metric-number-glow 1180ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-panel.is-loading div:nth-child(2) .metric {
  animation-delay: 160ms;
}

.solution-grid {
  position: relative;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 0 !important;
  width: min(1080px, 100%);
  margin-top: 18px;
}

.solution-grid::before {
  content: "";
  position: absolute;
  left: 36px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(67, 200, 255, 0), rgba(35, 132, 255, 0.86), rgba(155, 117, 255, 0.78), rgba(67, 200, 255, 0));
  box-shadow: 0 0 26px rgba(35, 132, 255, 0.48);
}

.solution-card {
  min-height: 0 !important;
  display: grid;
  grid-template-columns: 84px minmax(220px, 0.72fr) minmax(280px, 1fr) auto;
  align-items: start;
  gap: clamp(18px, 3vw, 34px);
  padding: clamp(28px, 4vw, 42px) 0 clamp(28px, 4vw, 42px) 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.solution-card:not(:last-child) {
  border-bottom: 1px solid rgba(67, 200, 255, 0.16) !important;
}

.solution-card::before {
  inset: 14px 0 14px 70px;
  opacity: 0;
  border-radius: 22px;
  background:
    radial-gradient(circle at 12% 50%, rgba(35, 132, 255, 0.16), transparent 28%),
    linear-gradient(90deg, rgba(8, 15, 34, 0.62), rgba(8, 15, 34, 0.08));
  transition: opacity 280ms ease, transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.solution-card:hover::before {
  opacity: 1;
  transform: translateX(8px);
}

.solution-number {
  width: 72px;
  height: 72px;
  margin: 0 !important;
  display: grid !important;
  place-items: center;
  border: 1px solid rgba(67, 200, 255, 0.45);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 26%, rgba(67, 200, 255, 0.22), transparent 45%),
    rgba(8, 15, 34, 0.82);
  box-shadow: 0 0 28px rgba(35, 132, 255, 0.2);
}

.solution-card h3 {
  margin: 3px 0 0 !important;
  font-size: clamp(1.55rem, 2.5vw, 2.45rem);
}

.solution-card p {
  margin: 0;
}

.solution-card ul {
  margin: 16px 0 0 !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 14px !important;
}

.solution-card li {
  font-size: 0.92rem !important;
  line-height: 1.42 !important;
}

.solution-link {
  align-self: center;
  margin-top: 0 !important;
  white-space: nowrap;
}

@keyframes metric-panel-arrive {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.97);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes metric-number-glow {
  0% {
    opacity: 0;
    transform: translateY(12px);
    text-shadow: none;
  }
  55% {
    opacity: 1;
    transform: translateY(0);
    text-shadow: 0 0 30px rgba(67, 200, 255, 0.72);
  }
  100% {
    text-shadow: 0 0 22px rgba(7, 89, 255, 0.34);
  }
}

@media (max-width: 980px) {
  .hero#top {
    margin-top: -94px;
    padding-top: 150px;
  }

  .hero-panel {
    bottom: 34px !important;
  }

  .solution-grid::before {
    left: 28px;
  }

  .solution-card {
    grid-template-columns: 60px 1fr;
  }

  .solution-card p,
  .solution-card ul,
  .solution-link {
    grid-column: 2;
  }

  .solution-card ul {
    grid-template-columns: 1fr;
  }

  .solution-number {
    width: 56px;
    height: 56px;
  }
}

/* Unified Anima navigation */
.site-header {
  width: min(1420px, calc(100% - 32px));
  min-height: 74px;
  padding: 9px 12px 9px 18px;
  border: 1px solid rgba(7, 89, 255, 0.72);
  border-radius: 10px;
  background:
    radial-gradient(circle at 8% 0%, rgba(7, 89, 255, 0.16), transparent 34%),
    radial-gradient(circle at 92% 100%, rgba(91, 73, 200, 0.16), transparent 38%),
    rgba(6, 15, 24, 0.86);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.62), 0 0 0 1px rgba(91, 73, 200, 0.18) inset, 0 0 34px rgba(7, 89, 255, 0.18);
  backdrop-filter: blur(22px) saturate(145%);
  animation: none;
}

.site-header.scrolled {
  background:
    radial-gradient(circle at 8% 0%, rgba(7, 89, 255, 0.18), transparent 32%),
    rgba(6, 15, 24, 0.94);
  border-color: rgba(126, 150, 255, 0.78);
}

.brand-logo {
  width: clamp(172px, 14vw, 218px);
  height: 48px;
  object-fit: contain;
  object-position: left center;
}

.nav {
  flex: 1;
  justify-content: flex-end;
  gap: 4px;
}

.nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: rgba(226, 232, 240, 0.72);
  font-size: clamp(0.66rem, 0.72vw, 0.78rem);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.nav a:hover,
.nav a.active {
  color: #ffffff;
  border-color: rgba(7, 89, 255, 0.42);
  background: linear-gradient(135deg, rgba(7, 89, 255, 0.2), rgba(91, 73, 200, 0.16));
  box-shadow: 0 0 22px rgba(7, 89, 255, 0.18);
}

.nav a:hover {
  transform: translateY(-1px);
}

.nav a:last-child {
  border-color: rgba(126, 150, 255, 0.36);
  background: rgba(7, 89, 255, 0.08);
}

.nav-toggle {
  border: 1px solid rgba(7, 89, 255, 0.42);
  background: rgba(7, 17, 27, 0.92);
}

@media (max-width: 1120px) {
  .site-header {
    width: min(1040px, calc(100% - 24px));
  }

  .brand-logo {
    width: clamp(154px, 17vw, 190px);
  }

  .nav a {
    padding-inline: 7px;
    font-size: 0.64rem;
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: center;
  }

  .nav {
    gap: 6px;
    border: 1px solid rgba(7, 89, 255, 0.3);
    border-radius: 10px;
    background: rgba(6, 15, 24, 0.96);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.55);
  }

  .nav a {
    justify-content: flex-start;
    width: 100%;
    padding: 12px 14px;
    font-size: 0.8rem;
  }
}
