:root {
  --hero-bg-1: #0a1430;
  --hero-bg-2: #14306b;
  --hero-bg-3: #3a78d6;
  --on-dark: #f5f8ff;
  --on-dark-mute: #b9c6e0;
  --bg: #f7f9fc;
  --bg-soft: #eef2f8;
  --paper: #ffffff;
  --ink: #0f1620;
  --ink-soft: #4a5366;
  --ink-mute: #8a91a3;
  --line: rgba(15, 22, 32, 0.08);
  --line-2: rgba(15, 22, 32, 0.16);
  --accent: #2563eb;
  --accent-2: #1d4ed8;
  --accent-tint: #e6efff;
  --warn: #c2772b;
  --serif: 'Instrument Serif', 'Times New Roman', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --mono: 'JetBrains Mono', monospace;
  --max: 1180px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 20px;
  --shadow-1: 0 1px 2px rgba(15, 22, 20, 0.04), 0 8px 24px rgba(15, 22, 20, 0.06);
  --shadow-2: 0 2px 4px rgba(15, 22, 20, 0.06), 0 24px 48px rgba(15, 22, 20, 0.10);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
 .sec-head--compact {
   margin-bottom: 24px;
 }
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
 .cta-actions {
   justify-content: center;
 }
  overflow-x: hidden;
}

a {
 .brand-block {
   margin-bottom: 14px;
 }
 .foot-intro {
   max-width: 38ch;
   color: var(--ink-mute);
 }
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

img,
svg {
  display: block;
}

 .foot-note {
   max-width: 60ch;
 }
::selection {
  background: var(--accent);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 120;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow-1);
  transition: top 150ms ease;
}

.skip-link:focus {
  top: 16px;
}

.shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}

.center {
  text-align: center;
}

.stack {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
}

.nav.scrolled {
  position: fixed;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  backdrop-filter: blur(14px) saturate(150%);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(15, 22, 20, 0.03);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: 16px;
  color: var(--on-dark);
}

.nav.scrolled .brand {
  color: var(--ink);
}

.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, #6ea0ee 0%, #0a1430 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  position: relative;
  flex-shrink: 0;
}

.nav.scrolled .brand-mark {
  border-color: rgba(15, 22, 20, 0.16);
}

.brand-mark::after {
  content: '';
  position: absolute;
  inset: 7px;
  border-radius: 4px;
  border: 1.5px solid rgba(246, 247, 244, 0.7);
}

.brand b {
  font-weight: 700;
}

.brand .dot {
  color: #93c5fd;
}

.nav.scrolled .brand .dot {
  color: var(--accent);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 9px 16px;
  border-radius: 999px;
  color: var(--on-dark-mute);
  font-size: 14px;
  font-weight: 500;
  transition: background 150ms ease, color 150ms ease;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--on-dark);
}

.nav.scrolled .nav-links a {
  color: var(--ink-soft);
}

.nav.scrolled .nav-links a:hover {
  background: var(--bg-soft);
  color: var(--ink);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--on-dark);
  color: var(--hero-bg-1);
  font-weight: 600;
  font-size: 14px;
  transition: transform 150ms ease, filter 150ms ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.nav.scrolled .nav-cta {
  background: var(--ink);
  color: var(--bg);
}

.hero {
  background: radial-gradient(60% 80% at 50% 0%, var(--hero-bg-3) 0%, transparent 60%),
    linear-gradient(180deg, var(--hero-bg-2) 0%, var(--hero-bg-1) 100%);
  color: var(--on-dark);
  padding: clamp(140px, 18vw, 220px) 0 clamp(90px, 14vw, 160px);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 80%;
  background: radial-gradient(45% 45% at 50% 25%, rgba(147, 197, 253, 0.28), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 80px;
  background: linear-gradient(180deg, transparent 0%, var(--bg) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--on-dark-mute);
  margin-bottom: 32px;
  letter-spacing: 0.04em;
}

.eyebrow .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #93c5fd;
  box-shadow: 0 0 0 0 rgba(147, 197, 253, 0.6);
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(147, 197, 253, 0.6);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(147, 197, 253, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(147, 197, 253, 0);
  }
}

h1.headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  color: var(--on-dark);
  max-width: 16ch;
}

.headline em {
  font-style: italic;
  color: #a5c5ff;
}

.rotator {
  display: inline-block;
  position: relative;
  height: 1.05em;
  overflow: hidden;
  vertical-align: top;
  min-width: 8ch;
}

.rotator span {
  display: block;
  color: #a5c5ff;
  font-style: italic;
  animation: roll 12s steps(1) infinite;
}

@keyframes roll {
  0%,
  22% {
    transform: translateY(0);
  }

  25%,
  47% {
    transform: translateY(-100%);
  }

  50%,
  72% {
    transform: translateY(-200%);
  }

  75%,
  97% {
    transform: translateY(-300%);
  }

  100% {
    transform: translateY(-400%);
  }
}

.hero-sub {
  margin-top: 32px;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--on-dark-mute);
  max-width: 60ch;
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease, color 150ms ease, box-shadow 200ms ease;
}

.btn-primary {
  background: var(--on-dark);
  color: var(--hero-bg-1);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.btn-ghost-light {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--on-dark);
}

.btn-ghost-light:hover {
  border-color: var(--on-dark);
}

.btn-dark {
  background: var(--ink);
  color: var(--paper);
}

.btn-dark:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(15, 22, 20, 0.18);
}

.btn-ghost {
  border: 1px solid var(--line-2);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--ink);
}

.btn .arr {
  transition: transform 150ms ease;
}

.btn:hover .arr {
  transform: translateX(3px);
}

.hero-stats {
  margin-top: 64px;
  width: 100%;
  max-width: 760px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat .num {
  font-family: var(--serif);
  font-size: clamp(30px, 3.6vw, 42px);
  line-height: 1;
  color: var(--on-dark);
}

.stat .lbl {
  margin-top: 8px;
  font-size: 13px;
  color: var(--on-dark-mute);
}

.wins-ticker {
  background: #0a0c10;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid var(--line);
  color: #f4f7fb;
  overflow: hidden;
  position: relative;
}

.wins-ticker::before,
.wins-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(28px, 6vw, 90px);
  pointer-events: none;
  z-index: 2;
}

.wins-ticker::before {
  left: 0;
  background: linear-gradient(90deg, #0a0c10 0%, rgba(10, 12, 16, 0) 100%);
}

.wins-ticker::after {
  right: 0;
  background: linear-gradient(270deg, #0a0c10 0%, rgba(10, 12, 16, 0) 100%);
}

.wins-ticker__viewport {
  overflow: hidden;
}

.wins-ticker__track {
  display: flex;
  width: max-content;
  animation: ticker-slide 36s linear infinite;
}

.wins-ticker__group {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 44px);
  padding: 16px clamp(18px, 4vw, 40px);
  flex-shrink: 0;
}

.wins-ticker__label,
.wins-ticker__item {
  white-space: nowrap;
}

.wins-ticker__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8cb6ff;
}

.wins-ticker__label::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8cb6ff;
  box-shadow: 0 0 0 4px rgba(140, 182, 255, 0.16);
}

.wins-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  font-size: clamp(12px, 1.4vw, 14px);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.wins-ticker__item::after {
  content: '+';
  color: #8cb6ff;
  font-size: 16px;
  line-height: 1;
}

.wins-ticker__item:last-child::after {
  content: '';
}

@keyframes ticker-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

section {
  position: relative;
}

.section-pad {
  padding: clamp(80px, 10vw, 130px) 0;
}

.sec-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 64px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.sec-tag {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.sec-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.sec-title em {
  font-style: italic;
  color: var(--accent);
}

.sec-sub {
  color: var(--ink-soft);
  font-size: 17px;
  max-width: 60ch;
}

.services {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  max-width: 900px;
  margin: 0 auto;
}

.svc {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-1);
  transition: transform 240ms cubic-bezier(.2, .8, .2, 1), box-shadow 240ms cubic-bezier(.2, .8, .2, 1), border-color 200ms ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.svc::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 240ms ease;
}

.svc:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2);
  border-color: rgba(37, 99, 235, 0.25);
}

.svc:hover::before {
  opacity: 1;
}

.svc-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--accent-tint);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
}

.svc h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  margin-bottom: 8px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.svc .lede {
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 22px;
  max-width: 38ch;
}

.svc ul {
  list-style: none;
  display: grid;
  gap: 10px;
  text-align: left;
  width: 100%;
  max-width: 320px;
}

.svc li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink-soft);
  font-size: 14px;
}

.svc li::before {
  content: '->';
  color: var(--accent);
  font-family: var(--mono);
  flex-shrink: 0;
}

.svc-link {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
}

.svc-link .arr {
  transition: transform 150ms ease;
}

.svc:hover .svc-link .arr {
  transform: translateX(4px);
}

.why-bg {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.why-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  max-width: 1100px;
  margin: 0 auto;
}

.why-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-1);
  transition: transform 240ms cubic-bezier(.2, .8, .2, 1), box-shadow 240ms ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2);
}

.why-card .num {
  font-family: var(--mono);
  color: var(--accent);
  font-size: 12px;
  margin-bottom: 22px;
  letter-spacing: 0.1em;
}

.why-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  margin-bottom: 12px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.why-card p {
  color: var(--ink-soft);
  font-size: 15px;
  max-width: 32ch;
}

.process-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  max-width: 1100px;
  margin: 0 auto;
}

.step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-1);
  transition: transform 240ms cubic-bezier(.2, .8, .2, 1), box-shadow 240ms ease;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2);
}

.step .step-n {
  font-family: var(--mono);
  color: var(--accent);
  font-size: 12px;
  margin-bottom: 18px;
  display: block;
  letter-spacing: 0.1em;
}

.step h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 10px;
}

.step p {
  color: var(--ink-soft);
  font-size: 14px;
  max-width: 28ch;
  margin: 0 auto;
}

.about-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.about-inner p {
  color: var(--ink-soft);
  font-size: 18px;
  margin-top: 20px;
}

.about-card {
  margin-top: 56px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px 36px;
  box-shadow: var(--shadow-1);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.about-card .quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  line-height: 1.4;
  color: var(--ink);
}

.about-card .who {
  margin-top: 22px;
  font-size: 14px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}

.faq-list {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  max-width: 980px;
  margin: 0 auto;
}

.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-1);
}

.faq-item h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.faq-item p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 16px;
  max-width: 58ch;
}

.cta-band {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 28px;
  padding: clamp(52px, 8vw, 96px) clamp(24px, 5vw, 60px);
  background: radial-gradient(60% 100% at 50% 0%, var(--hero-bg-3) 0%, var(--hero-bg-2) 60%, var(--hero-bg-1) 100%);
  color: var(--on-dark);
  text-align: center;
  box-shadow: var(--shadow-2);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: -30% -10% auto -10%;
  height: 80%;
  background: radial-gradient(40% 40% at 50% 25%, rgba(147, 197, 253, 0.28), transparent 70%);
  pointer-events: none;
}

.cta-band > * {
  position: relative;
}

.cta-band .kicker {
  color: #a5c5ff;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cta-band h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 16px auto 18px;
  max-width: 18ch;
}

.cta-band h2 em {
  font-style: italic;
  color: #a5c5ff;
}

.cta-band p {
  color: var(--on-dark-mute);
  max-width: 52ch;
  margin: 0 auto 32px;
}

footer {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 64px 0 32px;
  color: var(--ink-soft);
  font-size: 14px;
}

.foot-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  text-align: center;
  align-items: start;
}

.foot-grid h5 {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  margin-bottom: 16px;
  font-weight: 500;
}

.foot-grid ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.foot-grid a:hover {
  color: var(--accent);
}

.foot-bottom {
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  color: var(--ink-mute);
  font-size: 13px;
}

.foot-grid .brand {
  color: var(--ink);
  justify-content: center;
}

.foot-grid .brand .dot {
  color: var(--accent);
}

@media (prefers-reduced-motion: reduce) {
  .wins-ticker__track,
  .eyebrow .pulse,
  .rotator span {
    animation: none;
  }
}

@media (min-width: 720px) {
  .services {
    grid-template-columns: 1fr 1fr;
  }

  .foot-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    text-align: left;
  }

  .foot-grid .brand {
    justify-content: flex-start;
  }
}

@media (min-width: 880px) {
  .nav-links {
    display: flex;
  }

  .faq-list {
    grid-template-columns: 1fr 1fr;
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 719px) {
  .nav-inner {
    gap: 16px;
  }

  .brand {
    max-width: 190px;
  }

  .nav-cta {
    padding-inline: 16px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .wins-ticker__group {
    gap: 28px;
    padding: 14px 18px;
  }

  .wins-ticker__item {
    font-size: 11px;
  }

  .about-card {
    padding: 32px 24px;
  }

  .faq-item {
    padding: 28px 24px;
  }

  .faq-item h3 {
    font-size: 24px;
  }

  .faq-item p {
    font-size: 15px;
  }

  .foot-bottom {
    flex-direction: column;
    text-align: center;
  }
}
