:root {
  color-scheme: light dark;
  --ink: #081113;
  --ink-soft: #102024;
  --ink-raised: #172b2f;
  --paper: #f1f3ed;
  --paper-strong: #fbfcf8;
  --text: #101716;
  --text-on-dark: #f4f7f1;
  --muted: #6b7773;
  --muted-dark: #a8b4b0;
  --cyan: #34d7df;
  --blue: #177bff;
  --green: #9bdc2a;
  --green-deep: #70ae12;
  --line: rgba(16, 23, 22, 0.13);
  --line-dark: rgba(240, 247, 241, 0.14);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --shell: min(1440px, calc(100% - 48px));
  --shadow: 0 32px 80px rgba(3, 13, 15, 0.14);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--text-on-dark);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }

em {
  color: var(--green);
  font-style: normal;
}

.sr-only {
  position: absolute;
  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;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--paper-strong);
  color: var(--text);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.section-shell { width: var(--shell); margin-inline: auto; }
.section-dark { background: var(--ink); color: var(--text-on-dark); }
.section-light { background: var(--paper); color: var(--text); }

.reading-progress {
  position: fixed;
  z-index: 120;
  inset: 0 0 auto;
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
}

.reading-progress span {
  display: block;
  width: var(--reading-progress, 0%);
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  transition: width 80ms linear;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 78px;
  padding-inline: max(24px, calc((100vw - 1440px) / 2));
  border-bottom: 1px solid var(--line-dark);
  background: rgba(8, 17, 19, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  overflow: hidden;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 13px;
  background: rgba(255,255,255,.04);
}

.brand-mark img { width: 36px; height: 36px; object-fit: contain; }
.brand > span:last-child { display: flex; flex-direction: column; line-height: 1.1; }
.brand b { font-size: 13px; letter-spacing: .08em; }
.brand small { margin-top: 5px; color: var(--muted-dark); font-size: 10px; }

.anchor-nav { display: flex; align-items: center; gap: 30px; }
.anchor-nav a { color: var(--muted-dark); font-size: 13px; font-weight: 600; transition: color 160ms ease; }
.anchor-nav a:hover { color: var(--text-on-dark); }

.header-cta {
  justify-self: end;
  padding: 12px 18px;
  border: 1px solid rgba(155,220,42,.42);
  border-radius: 999px;
  color: var(--text-on-dark);
  font-size: 12px;
  font-weight: 700;
  transition: background 160ms ease, border-color 160ms ease;
}

.header-cta:hover { border-color: var(--green); background: rgba(155,220,42,.08); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(520px, 1.02fr);
  align-items: center;
  min-height: calc(100svh - 78px);
  padding-block: clamp(64px, 8vw, 126px);
  gap: clamp(48px, 7vw, 108px);
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--green-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: flex;
  justify-content: space-between;
  max-width: 510px;
  color: var(--green);
}

.hero h1,
.section-heading h2,
.price h2,
.finale h2 {
  margin: 0;
  font-size: clamp(50px, 5vw, 88px);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: .98;
}

.hero h1 { max-width: 780px; }
.hero-lead { max-width: 660px; margin: 32px 0 0; color: var(--muted-dark); font-size: clamp(16px, 1.45vw, 20px); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--green); color: #0b1407; }
.button-primary:hover { background: #a8e83c; }
.button-ghost { border-color: var(--line-dark); background: rgba(255,255,255,.035); }
.button-ghost span { color: var(--muted-dark); font-weight: 500; }
.button-ghost b { color: var(--text-on-dark); }

.hero-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 680px;
  margin: 42px 0 0;
  padding: 0;
  gap: 13px 24px;
  list-style: none;
}

.hero-proof li { position: relative; padding-left: 20px; color: var(--muted-dark); font-size: 12px; font-weight: 600; }
.hero-proof li::before { position: absolute; top: .52em; left: 0; width: 7px; height: 7px; border: 1px solid var(--green); border-radius: 50%; content: ""; }

.hero-media {
  position: relative;
  overflow: hidden;
  min-height: min(71vw, 700px);
  margin: 0;
  border: 1px solid rgba(52, 215, 223, .2);
  border-radius: var(--radius-lg);
  background: #051217;
  box-shadow: 0 0 100px rgba(23,123,255,.08);
}

.hero-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(to top, rgba(4,14,17,.82), transparent);
  content: "";
}

.hero-media img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; object-position: 50% center; }
.hero-media figcaption { position: absolute; z-index: 2; right: 28px; bottom: 24px; left: 28px; color: rgba(244,247,241,.64); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }

.media-tag {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(52,215,223,.32);
  border-radius: 10px;
  background: rgba(8,17,19,.82);
  color: var(--text-on-dark);
  font-size: 11px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.media-tag::before { width: 6px; height: 6px; margin-right: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 15px var(--cyan); content: ""; }
.tag-code { top: 20%; left: 9%; }
.tag-mobile { right: 8%; bottom: 31%; }
.tag-remote { top: 12%; right: 8%; }

.audit,
.idea,
.scope,
.flow,
.process,
.price { padding-block: clamp(96px, 11vw, 176px); }

.section-heading { max-width: 1040px; margin-bottom: clamp(54px, 7vw, 92px); }
.section-heading h2 { font-size: clamp(42px, 5.3vw, 80px); }
.section-heading > p:last-child { max-width: 680px; margin: 28px 0 0; color: var(--muted); font-size: clamp(16px, 1.5vw, 20px); }

.split-heading { display: grid; max-width: none; grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr); align-items: end; gap: 60px; }
.split-heading > p:last-child { align-self: end; margin: 0 0 4px; }
.section-dark .split-heading > p:last-child { color: var(--muted-dark); }

.audit-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 18px; }
.audit-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper-strong); box-shadow: 0 18px 52px rgba(16,23,22,.06); }
.audit-card header { display: flex; align-items: flex-end; justify-content: space-between; padding: 24px 26px 20px; border-bottom: 1px solid var(--line); }
.audit-card header span { color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.audit-card header b { font-size: 14px; }
.audit-card ul { margin: 0; padding: 0; list-style: none; }
.audit-card li { display: grid; grid-template-columns: 38px 1fr; padding: 23px 26px; border-bottom: 1px solid var(--line); gap: 8px; }
.audit-card li:last-child { border-bottom: 0; }
.audit-card li > span { color: var(--green-deep); font-size: 11px; font-weight: 800; }
.audit-card li b { font-size: 15px; }
.audit-card li p { margin: 5px 0 0; color: var(--muted); font-size: 13px; }
.audit-card.amplify { background: #e7eee6; }
.audit-card.amplify header { background: rgba(155,220,42,.13); }

.audience-console { overflow: hidden; border: 1px solid var(--line-dark); border-radius: var(--radius-lg); background: var(--ink-soft); box-shadow: var(--shadow); }
.audience-tabs { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--line-dark); }
.audience-tabs button { min-height: 72px; border: 0; border-right: 1px solid var(--line-dark); background: transparent; color: var(--muted-dark); cursor: pointer; font-size: 13px; font-weight: 700; }
.audience-tabs button:last-child { border-right: 0; }
.audience-tabs button[aria-selected="true"] { background: var(--green); color: #0b1407; }

.audience-stage { position: relative; min-height: 440px; padding: clamp(46px, 7vw, 90px); }
.audience-stage article { position: relative; z-index: 2; max-width: 720px; }
.audience-stage article[hidden] { display: none; }
.panel-index { margin: 0 0 20px; color: var(--cyan); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.audience-stage h3 { max-width: 650px; margin: 0; font-size: clamp(38px, 5vw, 72px); letter-spacing: -.05em; line-height: 1.04; }
.audience-stage article > p:not(.panel-index) { max-width: 650px; margin: 24px 0; color: var(--muted-dark); font-size: 18px; }
.audience-stage ul { display: flex; flex-wrap: wrap; margin: 0; padding: 0; gap: 8px; list-style: none; }
.audience-stage li { padding: 9px 13px; border: 1px solid var(--line-dark); border-radius: 999px; color: var(--text-on-dark); font-size: 11px; font-weight: 700; }
.access-line { position: absolute; top: 50%; right: 5%; display: flex; width: 34%; align-items: center; opacity: .55; transform: translateY(-50%); }
.access-line span { width: 12px; height: 12px; flex: 0 0 auto; border: 2px solid var(--cyan); border-radius: 50%; background: var(--ink-soft); box-shadow: 0 0 22px rgba(52,215,223,.5); }
.access-line i { height: 1px; flex: 1; background: linear-gradient(90deg, var(--cyan), var(--green)); }

.value-chain { display: grid; grid-template-columns: auto 1fr auto 1fr auto 1fr auto 1fr auto; align-items: center; margin-top: 34px; gap: 18px; }
.value-chain span { color: var(--muted-dark); font-size: 11px; font-weight: 700; }
.value-chain b { margin-right: 8px; color: var(--green); }
.value-chain i { height: 1px; background: var(--line-dark); }

.scope-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.scope-card { position: relative; min-height: 310px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.18); }
.scope-card.featured { background: #e8f1dc; }
.scope-card > span { display: inline-flex; width: 36px; height: 36px; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 50%; color: var(--green-deep); font-size: 11px; font-weight: 800; }
.scope-card h3 { max-width: 280px; margin: 54px 0 12px; font-size: 23px; letter-spacing: -.035em; line-height: 1.15; }
.scope-card p { max-width: 330px; margin: 0; color: var(--muted); font-size: 14px; }
.scope-card button { position: absolute; bottom: 26px; left: 30px; padding: 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; color: var(--green-deep); cursor: pointer; font-size: 11px; font-weight: 800; }
.scope-card > div { margin-top: 18px; padding: 16px; border-radius: 12px; background: rgba(8,17,19,.05); color: var(--muted); font-size: 12px; }
.scope-card > div:not([hidden]) { margin-bottom: 36px; }

.flow-list { display: grid; margin: 0; padding: 0; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); list-style: none; }
.flow-list li { min-height: 260px; padding: 28px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.flow-list span { color: var(--cyan); font-size: 11px; font-weight: 800; }
.flow-list div { margin-top: 100px; }
.flow-list b { font-size: 18px; }
.flow-list p { margin: 9px 0 0; color: var(--muted-dark); font-size: 13px; }

.process-list { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.process-list li { display: grid; grid-template-columns: 70px 1fr 160px; align-items: center; min-height: 138px; border-bottom: 1px solid var(--line); gap: 24px; }
.process-list > li > span { color: var(--green-deep); font-size: 12px; font-weight: 800; }
.process-list h3 { margin: 0; font-size: 25px; letter-spacing: -.035em; }
.process-list p { margin: 8px 0 0; color: var(--muted); font-size: 14px; }
.process-list small { justify-self: end; color: var(--green-deep); font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.timeline-note { margin: 28px 0 0 auto; width: fit-content; color: var(--muted); font-size: 12px; }

.price { position: relative; overflow: hidden; }
.price::before { position: absolute; top: 0; right: -20%; width: 70vw; height: 70vw; border: 1px solid rgba(52,215,223,.09); border-radius: 50%; content: ""; }
.price-shell { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px 90px; }
.price h2 { font-size: clamp(42px, 5vw, 78px); }
.price-copy > p:last-child { max-width: 560px; margin: 28px 0 0; color: var(--muted-dark); font-size: 17px; }
.price-number { align-self: end; padding: 34px; border: 1px solid rgba(155,220,42,.35); border-radius: var(--radius-md); background: rgba(155,220,42,.07); }
.price-number small { display: block; color: var(--muted-dark); font-size: 11px; font-weight: 700; text-transform: uppercase; }
.price-number strong { display: block; margin-top: 12px; color: var(--green); font-size: clamp(64px, 7vw, 112px); letter-spacing: -.07em; line-height: .95; }
.price-number strong span { font-size: .45em; }
.price-number p { margin: 22px 0 0; color: var(--muted-dark); font-size: 12px; }
.price-columns { display: grid; grid-column: 1 / -1; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.price-columns article { padding: 34px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.price-columns h3 { margin: 0 0 24px; font-size: 17px; }
.price-columns ul { margin: 0; padding: 0; list-style: none; }
.price-columns li { position: relative; margin-top: 12px; padding-left: 20px; color: var(--muted-dark); font-size: 13px; }
.price-columns li::before { position: absolute; top: .7em; left: 0; width: 7px; height: 1px; background: var(--green); content: ""; }

.finale { padding-block: clamp(80px, 9vw, 140px); }
.finale-card { position: relative; overflow: hidden; padding: clamp(42px, 7vw, 96px); border: 1px solid var(--line-dark); border-radius: var(--radius-lg); background: var(--ink-soft); }
.finale-card::after { position: absolute; top: -80px; right: -80px; width: 330px; height: 330px; border: 1px solid rgba(52,215,223,.2); border-radius: 50%; content: ""; }
.finale h2 { max-width: 980px; font-size: clamp(42px, 6vw, 84px); }
.finale-card > p:not(.eyebrow) { max-width: 680px; margin: 28px 0 0; color: var(--muted-dark); font-size: 17px; }
.finale .button { margin-top: 34px; }
.finale-card > small { display: block; max-width: 620px; margin-top: 24px; color: var(--muted-dark); font-size: 11px; }

.site-footer { border-top: 1px solid var(--line-dark); }
.site-footer .section-shell { display: grid; grid-template-columns: 1fr auto auto; align-items: center; min-height: 130px; gap: 40px; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 42px; height: 42px; object-fit: contain; }
.footer-brand span { display: flex; flex-direction: column; line-height: 1.15; }
.footer-brand b { font-size: 12px; letter-spacing: .08em; }
.footer-brand small, .site-footer p, .site-footer a { color: var(--muted-dark); font-size: 11px; }

.js [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 650ms ease, transform 650ms cubic-bezier(.2,.8,.2,1); }
.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
  .site-header { grid-template-columns: 1fr auto; }
  .anchor-nav { display: none; }
  .hero { grid-template-columns: 1fr .85fr; }
  .hero h1 { font-size: clamp(46px, 6vw, 72px); }
  .hero-media { min-height: 590px; }
  .scope-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --shell: min(100% - 32px, 760px); }
  html { scroll-padding-top: 74px; }
  .site-header { min-height: 70px; padding-inline: 16px; }
  .header-cta { min-height: 44px; padding: 0 14px; font-size: 10px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-mark img { width: 32px; height: 32px; }
  .brand small { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 68px; }
  .hero-media { min-height: 640px; }
  .hero-copy { padding-bottom: 34px; }
  .split-heading { grid-template-columns: 1fr; align-items: start; gap: 24px; }
  .audit-grid { grid-template-columns: 1fr; }
  .audience-tabs { overflow-x: auto; grid-template-columns: repeat(4, minmax(128px, 1fr)); }
  .audience-stage { min-height: 450px; }
  .access-line { right: 8%; bottom: 32px; top: auto; width: 48%; transform: none; }
  .value-chain { grid-template-columns: 1fr; gap: 10px; }
  .value-chain i { display: none; }
  .scope-grid { grid-template-columns: repeat(2, 1fr); }
  .price-shell { grid-template-columns: 1fr; }
  .price-columns { grid-template-columns: 1fr; }
  .site-footer .section-shell { grid-template-columns: 1fr auto; padding-block: 30px; }
  .site-footer p { grid-column: 1 / -1; margin: 0; }
}

@media (max-width: 600px) {
  :root { --shell: calc(100% - 24px); --radius-lg: 26px; }
  .site-header { gap: 12px; }
  .brand > span:last-child { display: none; }
  .header-cta { white-space: nowrap; }
  .hero { gap: 36px; padding-block: 32px 74px; }
  .hero-media { min-height: 420px; border-radius: 22px; }
  .hero-media figcaption { right: 16px; bottom: 15px; left: 16px; font-size: 9px; }
  .tag-code { top: 14%; left: 5%; }
  .tag-remote { top: 5%; right: 5%; }
  .tag-mobile { right: 5%; bottom: 26%; }
  .media-tag { min-height: 30px; padding: 0 10px; font-size: 9px; }
  .hero .eyebrow { gap: 12px; font-size: 9px; }
  .hero h1 { font-size: clamp(40px, 12vw, 58px); }
  .hero-lead { margin-top: 22px; font-size: 15px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-proof { grid-template-columns: 1fr; margin-top: 30px; }
  .audit, .idea, .scope, .flow, .process, .price { padding-block: 82px; }
  .section-heading { margin-bottom: 44px; }
  .section-heading h2, .price h2, .finale h2 { font-size: clamp(38px, 11vw, 54px); }
  .audit-card header { align-items: flex-start; flex-direction: column; gap: 8px; }
  .audit-card li { padding-inline: 20px; }
  .audience-tabs { margin: 8px; border: 1px solid var(--line-dark); border-radius: 14px; }
  .audience-tabs button { min-height: 54px; padding-inline: 14px; }
  .audience-stage { min-height: 460px; padding: 36px 24px 80px; }
  .audience-stage h3 { font-size: 40px; }
  .audience-stage article > p:not(.panel-index) { font-size: 15px; }
  .access-line { bottom: 32px; left: 24px; width: 70%; }
  .scope-grid { grid-template-columns: 1fr; }
  .scope-card { min-height: 290px; padding: 24px; }
  .scope-card button { left: 24px; }
  .flow-list { grid-template-columns: 1fr; }
  .flow-list li { min-height: 210px; }
  .flow-list div { margin-top: 70px; }
  .process-list li { grid-template-columns: 40px 1fr; padding-block: 24px; }
  .process-list small { display: none; }
  .process-list h3 { font-size: 21px; }
  .price-number { padding: 24px; }
  .price-number strong { font-size: clamp(62px, 20vw, 86px); }
  .price-columns article { padding: 26px; }
  .finale { padding-block: 72px; }
  .finale-card { padding: 34px 24px; }
  .site-footer .section-shell { grid-template-columns: 1fr; gap: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; }
}
