:root {
  --ink: #0b1119;
  --ink-soft: #111a25;
  --paper: #f2f0e9;
  --paper-bright: #fbfaf7;
  --white: #ffffff;
  --lime: #b9f36a;
  --lime-strong: #9ee74d;
  --blue: #8ba8ff;
  --muted: #9ba6b3;
  --muted-dark: #54606d;
  --line-dark: rgba(255,255,255,.14);
  --line-light: rgba(11,17,25,.16);
  --shadow: 0 24px 80px rgba(3, 8, 14, .18);
  --radius: 18px;
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img, svg { display: block; max-width: 100%; }

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 1000;
  transform: translateY(-180%);
  padding: 10px 14px; border-radius: 8px;
  background: var(--lime); color: var(--ink); font-weight: 750;
}
.skip-link:focus { transform: translateY(0); }
.shell { width: var(--shell); margin-inline: auto; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11, 17, 25, .9);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(18px);
  color: var(--white);
}
.header-inner { min-height: 76px; display: flex; align-items: center; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 780; letter-spacing: -.02em; }
.brand-mark {
  display: grid; place-items: center; width: 38px; height: 38px;
  border: 1px solid rgba(185,243,106,.7); border-radius: 9px;
  color: var(--lime); font-size: 11px; letter-spacing: .08em;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
}
.brand-name { white-space: nowrap; }
.primary-nav { display: flex; align-items: center; gap: 23px; margin-left: auto; }
.primary-nav a {
  position: relative; color: #ced4dc; text-decoration: none; font-size: 14px; font-weight: 650;
}
.primary-nav a:hover, .primary-nav a:focus-visible, .primary-nav a.active { color: var(--white); }
.primary-nav a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -10px; height: 2px; background: var(--lime);
}
.header-cta { margin-left: 5px; }
.nav-toggle { display: none; margin-left: auto; border: 0; background: transparent; padding: 10px; }
.nav-toggle span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--white); transition: .2s ease; }

.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 50px;
  padding: 0 21px; border: 1px solid transparent; border-radius: 999px;
  text-decoration: none; font-size: 14px; font-weight: 780; letter-spacing: -.01em;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .text-link:focus-visible, .primary-nav a:focus-visible, .brand:focus-visible {
  outline: 3px solid var(--blue); outline-offset: 4px;
}
.button-small { min-height: 42px; padding-inline: 17px; }
.button-primary { background: var(--lime); color: var(--ink); }
.button-primary:hover { background: var(--lime-strong); }
.button-outline { border-color: rgba(255,255,255,.32); color: var(--white); background: transparent; }
.button-outline:hover { border-color: var(--lime); color: var(--lime); }
.text-link { color: var(--white); text-decoration: none; font-weight: 720; }
.text-link span { color: var(--lime); margin-left: 5px; }

.hero {
  position: relative; isolation: isolate; overflow: hidden;
  color: var(--white); background:
    radial-gradient(circle at 80% 18%, rgba(139,168,255,.13), transparent 28%),
    radial-gradient(circle at 17% 88%, rgba(185,243,106,.08), transparent 32%),
    var(--ink);
  border-bottom: 1px solid var(--line-dark);
}
.hero-grid {
  position: absolute; inset: 0; z-index: -1; opacity: .25;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}
.hero-layout { min-height: 680px; display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr); align-items: center; gap: 80px; padding-block: 86px 92px; }
.eyebrow { margin: 0 0 18px; color: var(--lime); font-size: 12px; font-weight: 820; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow-dark { color: #436a12; }
.hero h1, .section h2, .cta-section h2 { margin: 0; letter-spacing: -.055em; line-height: .98; }
.hero h1 { max-width: 760px; font-size: clamp(54px, 7vw, 94px); }
.hero h1 span { color: #aeb8c4; }
.hero-lede { max-width: 690px; margin: 30px 0 0; color: #c3cbd5; font-size: clamp(18px, 2vw, 22px); line-height: 1.5; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 34px; }
.hero-signals { display: flex; flex-wrap: wrap; gap: 11px 26px; margin: 35px 0 0; padding: 0; list-style: none; color: #aeb7c2; font-size: 13px; }
.hero-signals li { display: flex; align-items: center; gap: 9px; }
.hero-signals li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(185,243,106,.11); }

.hero-panel {
  position: relative; padding: 25px; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  box-shadow: var(--shadow); backdrop-filter: blur(10px);
}
.hero-panel::before { content: ""; position: absolute; top: -1px; left: 24px; width: 110px; height: 2px; background: var(--lime); }
.panel-topline { display: flex; justify-content: space-between; gap: 14px; padding-bottom: 20px; border-bottom: 1px solid var(--line-dark); color: #aab4c0; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.status { color: var(--lime); }
.status i { display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(185,243,106,.09); }
.panel-price { padding: 30px 0 26px; }
.panel-price > span { display: block; color: #9ba6b3; font-size: 13px; }
.panel-price strong { display: block; margin: 4px 0 5px; color: var(--white); font-size: clamp(58px, 7vw, 82px); line-height: 1; letter-spacing: -.06em; }
.panel-price small { color: #bac3cd; font-size: 14px; }
.panel-flow { display: grid; gap: 1px; overflow: hidden; border: 1px solid var(--line-dark); border-radius: 12px; background: var(--line-dark); }
.panel-flow div { display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 12px; padding: 14px; background: #111a25; }
.panel-flow span { color: var(--lime); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12px; }
.panel-flow b { font-size: 14px; }
.panel-flow em { color: #9ca6b2; font-size: 12px; font-style: normal; text-align: right; }
.panel-note { margin: 20px 0 0; color: #9ca6b2; font-size: 13px; }

.section { padding-block: 112px; }
.section-light { background: var(--paper); }
.section-dark { color: var(--white); background: var(--ink-soft); }
.section-heading { max-width: 770px; margin-bottom: 52px; }
.section-heading h2, .cta-section h2 { font-size: clamp(42px, 5.8vw, 72px); }
.split-heading { max-width: none; display: grid; grid-template-columns: minmax(0, 1fr) minmax(330px, .72fr); gap: 90px; align-items: end; }
.split-heading > p { margin: 0; color: var(--muted-dark); font-size: 18px; }
.section-heading-dark > p { color: #aeb7c2; }

.service-list { border-top: 1px solid var(--line-light); }
.service-card {
  display: grid; grid-template-columns: 64px minmax(270px, 1.15fr) minmax(260px, .8fr) minmax(300px, 1fr);
  gap: 30px; align-items: start; padding: 38px 0; border-bottom: 1px solid var(--line-light);
}
.service-card-featured { position: relative; }
.service-card-featured::before { content: ""; position: absolute; left: -20px; top: 16px; bottom: 16px; width: 4px; border-radius: 999px; background: var(--lime-strong); }
.service-number { padding-top: 5px; color: #6b7681; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 13px; }
.service-main h3 { margin: 5px 0 12px; font-size: clamp(25px, 2.7vw, 36px); line-height: 1.08; letter-spacing: -.035em; }
.service-main p { max-width: 600px; margin: 0; color: var(--muted-dark); }
.service-labels { min-height: 28px; }
.pill { display: inline-flex; min-height: 25px; align-items: center; padding: 0 9px; border: 1px solid rgba(67,106,18,.24); border-radius: 999px; background: rgba(185,243,106,.28); color: #395c0d; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.pill-blue { border-color: rgba(65,89,164,.2); background: rgba(139,168,255,.2); color: #304b9c; }
.service-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.service-meta div, .service-deliverables { padding-top: 5px; }
.service-meta span, .service-deliverables > span { display: block; margin-bottom: 8px; color: #6b7681; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.service-meta strong { display: block; font-size: 22px; letter-spacing: -.03em; }
.service-meta strong small { color: var(--muted-dark); font-size: 12px; font-weight: 700; letter-spacing: 0; }
.service-deliverables p { margin: 0; font-size: 15px; }

.table-wrap { overflow-x: auto; border: 1px solid var(--line-dark); border-radius: 16px; box-shadow: var(--shadow); }
table { width: 100%; min-width: 900px; border-collapse: collapse; background: rgba(255,255,255,.025); }
th, td { padding: 23px 22px; border-bottom: 1px solid var(--line-dark); text-align: left; vertical-align: top; }
thead th { color: var(--lime); background: rgba(255,255,255,.045); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
tbody th { width: 25%; font-size: 17px; }
tbody td { color: #c2cad3; }
tbody td:nth-child(2), tbody td:nth-child(3) { width: 15%; color: var(--white); font-weight: 720; }
tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover { background: rgba(255,255,255,.025); }

.catalog-path { border-top: 1px solid var(--line-light); }
.path-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin: 0; padding: 1px; list-style: none; background: var(--line-light); border-radius: 16px; overflow: hidden; }
.path-grid li { min-height: 280px; padding: 34px; background: var(--paper-bright); }
.path-grid span { color: #527d1d; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 13px; }
.path-grid h3 { margin: 60px 0 12px; font-size: 28px; letter-spacing: -.035em; }
.path-grid p { margin: 0; color: var(--muted-dark); }

.cta-section { padding-block: 92px; color: var(--white); background: #162130; border-top: 1px solid var(--line-dark); }
.cta-layout { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 70px; align-items: end; }
.cta-layout > div:first-child { max-width: 760px; }
.cta-layout p:not(.eyebrow) { max-width: 680px; margin: 25px 0 0; color: #b8c2cd; font-size: 18px; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; min-width: 245px; }

.site-footer { color: #c2cad3; background: var(--ink); border-top: 1px solid var(--line-dark); }
.footer-main { display: grid; grid-template-columns: 1.2fr .75fr .8fr; gap: 70px; padding-block: 68px; }
.brand-footer { color: var(--white); }
.footer-main p { max-width: 420px; margin: 20px 0 0; color: #8f9aa7; }
.footer-main nav { display: grid; align-content: start; gap: 12px; }
.footer-main nav a, .footer-legal a { color: #b9c2cc; text-decoration: none; }
.footer-main nav a:hover, .footer-legal a:hover { color: var(--lime); }
.footer-prompt { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-prompt span { color: #8f9aa7; font-size: 13px; }
.footer-prompt a { color: var(--white); text-decoration: none; font-weight: 760; }
.footer-prompt a span { color: var(--lime); }
.footer-legal { display: flex; justify-content: space-between; gap: 24px; padding-block: 20px; border-top: 1px solid var(--line-dark); color: #768290; font-size: 11px; }

@media (max-width: 1080px) {
  .primary-nav { gap: 16px; }
  .primary-nav a { font-size: 13px; }
  .hero-layout { grid-template-columns: 1fr .8fr; gap: 44px; }
  .service-card { grid-template-columns: 48px minmax(250px, 1fr) minmax(230px, .8fr); }
  .service-deliverables { grid-column: 2 / -1; padding-top: 0; }
}

@media (max-width: 860px) {
  :root { --shell: min(100% - 32px, 760px); }
  .header-inner { min-height: 68px; }
  .header-cta { display: none; }
  .nav-toggle { display: block; }
  .primary-nav {
    position: fixed; inset: 68px 0 auto 0; display: none; margin: 0; padding: 22px 16px 30px;
    flex-direction: column; align-items: stretch; background: rgba(11,17,25,.98); border-bottom: 1px solid var(--line-dark);
  }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 12px 16px; font-size: 16px; }
  .primary-nav a.active::after { left: 16px; right: auto; bottom: 5px; width: 30px; }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(3.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(3) { transform: translateY(-3.5px) rotate(-45deg); }
  .hero-layout { min-height: auto; grid-template-columns: 1fr; padding-block: 72px; }
  .hero-panel { max-width: 620px; }
  .split-heading, .cta-layout { grid-template-columns: 1fr; gap: 30px; }
  .service-card { grid-template-columns: 40px 1fr; gap: 18px 22px; }
  .service-meta, .service-deliverables { grid-column: 2; }
  .path-grid { grid-template-columns: 1fr; }
  .path-grid li { min-height: auto; }
  .path-grid h3 { margin-top: 35px; }
  .cta-actions { flex-direction: row; min-width: 0; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-prompt { grid-column: 1 / -1; }
  .footer-legal { flex-direction: column; }
}

@media (max-width: 580px) {
  :root { --shell: calc(100% - 24px); }
  .brand-name { font-size: 14px; }
  .hero h1 { font-size: clamp(48px, 15vw, 68px); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-signals { display: grid; }
  .hero-panel { padding: 18px; }
  .panel-flow div { grid-template-columns: 30px 1fr; }
  .panel-flow em { grid-column: 2; text-align: left; }
  .section { padding-block: 76px; }
  .service-card { grid-template-columns: 1fr; padding: 30px 0; }
  .service-number, .service-meta, .service-deliverables { grid-column: 1; }
  .service-card-featured::before { left: -12px; }
  .service-meta { grid-template-columns: 1fr 1fr; }
  .service-main h3 { font-size: 29px; }
  .cta-actions { flex-direction: column; }
  .footer-main { grid-template-columns: 1fr; gap: 38px; }
  .footer-prompt { grid-column: auto; }
}

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

@media print {
  .site-header, .hero-actions, .cta-section, .site-footer, .service-list { display: none !important; }
  .hero, .section-dark { color: #000; background: #fff; }
  .hero-grid, .hero-panel { display: none; }
  .hero-layout { display: block; min-height: 0; padding: 20px 0; }
  .hero h1 span, .hero-lede, .section-heading-dark > p, tbody td { color: #222; }
  .section { padding: 25px 0; }
  .table-wrap { border: 1px solid #999; box-shadow: none; }
  table { min-width: 0; background: #fff; }
  th, td { border-color: #aaa; }
  thead th { color: #000; background: #eee; }
}
