:root {
  --ink: #101419;
  --muted: #68717d;
  --line: #dfe3e8;
  --paper: #ffffff;
  --wash: #f4f6f7;
  --dark: #0b0e12;
  --dark-2: #151a20;
  --signal: #e6ff2f;
  --signal-ink: #202600;
  --blue: #4e71ff;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(16, 20, 25, 0.09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 104px; overflow-x: clip; }
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.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

a { color: inherit; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }
p { margin: 0 0 1rem; }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -0.035em; }
h1 { font-size: clamp(2.8rem, 7vw, 6.8rem); font-weight: 760; }
h2 { font-size: clamp(2rem, 4vw, 4rem); font-weight: 730; }
h3 { font-size: 1.18rem; font-weight: 720; }

.skip-link {
  position: fixed; top: 8px; left: 8px; z-index: 100;
  padding: 10px 14px; background: var(--signal); color: var(--signal-ink);
  transform: translateY(-160%); border-radius: 8px; font-weight: 700;
}
.skip-link:focus { transform: none; }

.progress { position: fixed; inset: 0 0 auto; height: 3px; z-index: 80; }
.progress-bar { height: 100%; width: 0; background: var(--signal); }

.site-header {
  position: sticky; top: 0; z-index: 70;
  color: white; background: rgba(11, 14, 18, .94);
  border-bottom: 1px solid rgba(255,255,255,.1); backdrop-filter: blur(16px);
}
.header-inner {
  width: min(1240px, calc(100% - 40px)); min-height: 78px; margin: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
}
.wordmark { color: white; font-size: 1.05rem; font-weight: 780; line-height: 1.15; text-decoration: none; white-space: nowrap; }
.wordmark span { display: block; margin-top: 5px; color: #aeb6c0; font-size: .68rem; font-weight: 550; letter-spacing: .01em; }
.desktop-nav { display: flex; align-items: center; gap: 8px; }
.desktop-nav a { padding: 10px 12px; color: #bec6cf; border-radius: 8px; font-size: .8rem; font-weight: 680; text-decoration: none; }
.desktop-nav a:hover, .desktop-nav a[aria-current="location"] { color: white; background: rgba(255,255,255,.09); }
.header-cta { min-height: 42px; padding: 9px 15px; font-size: .76rem; white-space: nowrap; }
.mobile-menu { display: none; }

.nav {
  position: sticky; top: 0; z-index: 70;
  background: rgba(11, 14, 18, 0.92); color: white;
  backdrop-filter: blur(16px); border-bottom: 1px solid rgba(255,255,255,.1);
}
.nav-inner {
  width: min(1240px, calc(100% - 40px)); margin: auto; min-height: 70px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 760; white-space: nowrap; }
.brand-mark { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: var(--signal); }
.brand-mark::before { content: "✦"; font-size: 15px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { padding: 8px 10px; border-radius: 8px; text-decoration: none; color: #bfc6ce; font-size: .82rem; font-weight: 650; }
.nav-links a:hover, .nav-links a.active { color: white; background: rgba(255,255,255,.09); }
.nav-cta { padding: 10px 16px !important; color: var(--signal-ink) !important; background: var(--signal) !important; }

.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.hero { overflow: hidden; color: white; background: var(--dark); padding: clamp(70px, 10vw, 138px) 0 84px; position: relative; }
.hero::before {
  content: ""; position: absolute; width: 580px; height: 580px; right: -170px; top: -200px;
  border: 1px solid rgba(230,255,47,.2); border-radius: 50%; box-shadow: 0 0 0 90px rgba(230,255,47,.025), 0 0 0 180px rgba(230,255,47,.018);
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--signal), transparent);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(280px, .5fr); gap: 60px; align-items: end; }
.hero-grid > * { min-width: 0; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 24px; color: var(--signal); font-size: .75rem; font-weight: 760; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.hero h1 { max-width: 930px; }
.hero .lead { max-width: 760px; margin: 28px 0 0; color: #c3c9d0; font-size: clamp(1.08rem, 2vw, 1.32rem); }
.hero-side { border-left: 1px solid rgba(255,255,255,.18); padding-left: 28px; color: #c3c9d0; }
.hero-side strong { display: block; margin-bottom: 8px; color: white; font-size: 1.06rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 12px 20px; border-radius: 10px; text-decoration: none; font-weight: 750; }
.button-primary { background: var(--signal); color: var(--signal-ink); }
.button-secondary { border: 1px solid rgba(255,255,255,.25); color: white; }
.button-dark { background: var(--dark); color: white; }

.section { padding: clamp(70px, 9vw, 116px) 0; }
.section-wash { background: var(--wash); }
.section-dark { color: white; background: var(--dark); }
.section-head { display: grid; grid-template-columns: .44fr 1.56fr; gap: 50px; margin-bottom: 48px; }
.kicker { color: var(--muted); font-size: .78rem; font-weight: 760; letter-spacing: .12em; text-transform: uppercase; }
.section-dark .kicker { color: var(--signal); }
.section-intro { max-width: 760px; margin-top: 18px; color: var(--muted); font-size: 1.08rem; }
.section-dark .section-intro { color: #b7bec6; }

.grid-2, .grid-3, .grid-4 { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card { padding: 30px; background: white; border: 1px solid var(--line); border-radius: var(--radius); }
.card-dark { color: white; background: var(--dark-2); border-color: rgba(255,255,255,.12); }
.card p { margin-top: 12px; color: var(--muted); }
.card-dark p { color: #b8bec6; }
.card-number { display: inline-grid; place-items: center; width: 34px; height: 34px; margin-bottom: 30px; border-radius: 50%; background: var(--signal); color: var(--signal-ink); font-size: .78rem; font-weight: 800; }
.card-tag { display: inline-block; margin-bottom: 14px; color: var(--blue); font-size: .72rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }

.split-route { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; }
.route { padding: clamp(32px, 5vw, 58px); background: white; }
.route + .route { color: white; background: var(--dark); }
.route-label { margin-bottom: 30px; color: var(--muted); font-size: .76rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.route + .route .route-label { color: var(--signal); }
.route ol { margin: 28px 0 0; padding: 0; list-style: none; counter-reset: route; }
.route li { position: relative; margin: 0 0 22px; padding-left: 44px; counter-increment: route; }
.route li::before { content: counter(route); position: absolute; left: 0; top: -2px; width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-size: .72rem; font-weight: 800; }
.route + .route li::before { border-color: rgba(255,255,255,.3); }
.route-outcome { margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line); font-weight: 760; }
.route + .route .route-outcome { border-color: rgba(255,255,255,.17); color: var(--signal); }

.metric { position: relative; overflow: hidden; min-height: 210px; }
.metric strong { display: block; margin-bottom: 12px; font-size: clamp(2.1rem, 5vw, 4rem); line-height: 1; letter-spacing: -.055em; }
.metric span { color: var(--muted); }
.metric::after { content: ""; position: absolute; width: 100px; height: 100px; right: -48px; bottom: -48px; border: 1px solid var(--line); border-radius: 50%; }

.quote { padding: 30px 0; border-top: 1px solid var(--line); }
.quote blockquote { margin: 0; max-width: 900px; font-size: clamp(1.2rem, 2.2vw, 1.75rem); line-height: 1.4; letter-spacing: -.015em; }
.quote cite { display: block; margin-top: 18px; color: var(--muted); font-size: .86rem; font-style: normal; }

.testimonial-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.testimonial-card {
  display: flex; flex-direction: column; min-height: 100%; padding: 28px;
  background: white; border: 1px solid var(--line); border-radius: var(--radius);
}
.testimonial-person { display: flex; align-items: center; gap: 15px; margin-bottom: 24px; }
.testimonial-person img {
  width: 74px; height: 74px; flex: 0 0 74px; object-fit: cover;
  border-radius: 50%; border: 3px solid white; box-shadow: 0 0 0 1px var(--line);
}
.testimonial-person h3 { margin-bottom: 4px; font-size: 1rem; letter-spacing: -.015em; }
.testimonial-person p { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.4; }
.testimonial-person a { color: var(--ink); text-underline-offset: 3px; }
.testimonial-card blockquote {
  margin: 0; padding-top: 22px; border-top: 1px solid var(--line);
  font-size: 1.03rem; line-height: 1.62; letter-spacing: -.01em;
}

.result { display: grid; grid-template-columns: .65fr 1.35fr; gap: 24px; padding: 30px 0; border-top: 1px solid var(--line); }
.result h3 { font-size: 1.35rem; }
.result-main strong { display: block; margin-bottom: 8px; font-size: clamp(1.4rem, 2.6vw, 2.1rem); letter-spacing: -.035em; }
.result-main p { color: var(--muted); }
.source-note { margin-top: 32px; padding: 18px 20px; background: var(--wash); border-radius: 10px; color: var(--muted); font-size: .86rem; }

.check-list { list-style: none; margin: 24px 0 0; padding: 0; }
.check-list li { position: relative; margin: 0 0 13px; padding-left: 28px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: #668000; font-weight: 900; }
.section-dark .check-list li::before { color: var(--signal); }

.timeline { position: relative; display: grid; gap: 0; }
.phase { display: grid; grid-template-columns: 190px 1fr; gap: 36px; padding: 34px 0; border-top: 1px solid var(--line); }
.phase-period { font-weight: 800; }
.phase h3 { margin-bottom: 12px; }
.phase p { color: var(--muted); }
.deliverable { display: inline-block; margin-top: 8px; padding: 7px 11px; border-radius: 8px; background: var(--wash); font-size: .82rem; font-weight: 700; }

.flow { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; align-items: stretch; counter-reset: flow; }
.flow-step { position: relative; min-height: 150px; padding: 24px 20px; background: white; border: 1px solid var(--line); border-radius: 14px; counter-increment: flow; }
.flow-step::before { content: "0" counter(flow); display: block; margin-bottom: 30px; color: var(--muted); font-size: .72rem; font-weight: 800; }
.flow-step:not(:last-child)::after { content: "→"; position: absolute; right: -18px; top: 50%; z-index: 2; width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; background: var(--signal); color: var(--signal-ink); font-weight: 900; }

.price-panel { display: grid; grid-template-columns: .8fr 1.2fr; overflow: hidden; border-radius: 26px; box-shadow: var(--shadow); }
.price { display: flex; flex-direction: column; justify-content: space-between; padding: clamp(34px, 5vw, 58px); color: white; background: var(--dark); }
.price-value { margin: 30px 0 8px; font-size: clamp(3rem, 7vw, 5.8rem); font-weight: 790; letter-spacing: -.07em; line-height: .95; }
.price-value small { display: block; margin-top: 14px; font-size: .95rem; font-weight: 600; letter-spacing: 0; color: #aeb6c0; }
.scope { padding: clamp(34px, 5vw, 58px); background: white; }
.scope h2 { font-size: clamp(1.8rem, 3vw, 2.7rem); }

.terms { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.notice { padding: 20px 22px; border-left: 3px solid var(--signal); background: var(--dark-2); color: #c8ced5; }
.notice strong { color: white; }

.cta { padding: 78px 0; color: white; background: var(--dark); }
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 36px; }
.cta h2 { max-width: 720px; }
.cta p { max-width: 650px; margin-top: 16px; color: #b6bdc5; }
.footer { padding: 32px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: .82rem; }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; }
.footer a { text-decoration: none; }

.monthly-delivery { margin-top: 26px; }
.responsibilities-note { margin-top: 22px; }
.strategy-intro { padding: 72px 0; color: white; background: var(--dark); border-top: 1px solid rgba(255,255,255,.1); }
.strategy-intro h2 { max-width: 900px; }
.strategy-intro p { max-width: 760px; margin: 20px 0 0; color: #bdc5ce; font-size: 1.08rem; }
.strategy-layout { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 66px; align-items: start; padding-top: 74px; }
.strategy-nav { position: sticky; top: 108px; align-self: start; max-height: calc(100vh - 130px); padding-bottom: 28px; overflow-y: auto; overflow-x: clip; }
.strategy-nav h2 { margin-bottom: 18px; font-size: 1rem; letter-spacing: 0; }
.strategy-nav nav { display: flex; flex-direction: column; }
.strategy-nav nav a { padding: 11px 10px 11px 15px; color: var(--muted); border-left: 2px solid var(--line); font-size: .82rem; font-weight: 620; line-height: 1.35; text-decoration: none; }
.strategy-nav nav a:hover, .strategy-nav nav a[aria-current="location"] { color: var(--ink); border-color: var(--ink); background: var(--wash); }
.strategy-nav-cta { margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--line); }
.strategy-nav-cta p { color: var(--muted); font-size: .78rem; }
.strategy-nav-cta .button { width: 100%; min-height: 42px; padding: 9px 12px; font-size: .76rem; }
.strategy-content { min-width: 0; }
.strategy-section { padding-bottom: 74px; margin-bottom: 74px; border-bottom: 1px solid var(--line); }
.strategy-section:last-child { border-bottom: 0; }
.strategy-section > h2 { max-width: 780px; margin-top: 12px; font-size: clamp(2rem, 4vw, 3.5rem); }
.strategy-lead { max-width: 760px; margin: 20px 0 34px; color: var(--muted); font-size: 1.06rem; }
.priority-pages { margin-top: 34px; }
.measurement-list { margin: 34px 0 0; padding: 0; list-style: none; counter-reset: measure; }
.measurement-list li { position: relative; display: grid; grid-template-columns: 160px 1fr; gap: 24px; padding: 25px 0 25px 54px; border-top: 1px solid var(--line); counter-increment: measure; }
.measurement-list li::before { content: counter(measure); position: absolute; left: 0; top: 21px; display: grid; place-items: center; width: 32px; height: 32px; border: 1px solid var(--ink); border-radius: 50%; font-size: .76rem; font-weight: 760; }
.measurement-list strong { font-size: 1.05rem; }
.measurement-list span { color: var(--muted); }
.print-button { padding: 12px 0; color: white; background: none; border: 0; font: inherit; font-size: .84rem; text-decoration: underline; text-underline-offset: 5px; cursor: pointer; }
.closing-price { min-width: 220px; padding-left: 34px; border-left: 1px solid rgba(255,255,255,.22); }
.closing-price span { display: block; color: white; font-size: clamp(2.5rem, 4vw, 4.4rem); font-weight: 780; letter-spacing: -.06em; line-height: 1; }
.closing-price small { display: block; margin-top: 10px; color: #b6bdc5; }

@media (max-width: 900px) {
  html { scroll-padding-top: 137px; }
  .header-inner { width: calc(100% - 28px); min-height: 68px; gap: 14px; }
  .desktop-nav { display: none; }
  .header-cta { width: 142px; max-width: 142px; min-height: 48px; padding: 7px 9px; font-size: .68rem; line-height: 1.2; text-align: center; white-space: normal; }
  .mobile-menu { display: block; padding: 0 14px; border-top: 1px solid rgba(255,255,255,.1); }
  .mobile-menu summary { position: relative; padding: 9px 28px 9px 0; color: #d7dde3; font-size: .76rem; font-weight: 700; list-style: none; cursor: pointer; }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu summary::after { content: "+"; position: absolute; right: 4px; top: 3px; color: var(--signal); font-size: 1.35rem; font-weight: 400; }
  .mobile-menu[open] summary::after { content: "−"; }
  .mobile-menu nav { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 18px; max-height: 52vh; padding: 3px 0 14px; overflow: auto; }
  .mobile-menu a { padding: 9px 0; color: #bec6cf; font-size: .76rem; line-height: 1.35; }
  .nav-inner { width: min(1240px, calc(100% - 24px)); overflow-x: auto; }
  .nav-links { min-width: max-content; }
  .nav-links a { padding: 8px; }
  .brand span:last-child { display: none; }
  .hero-grid, .section-head, .price-panel { grid-template-columns: 1fr; }
  .hero-side { border-left: 0; border-top: 1px solid rgba(255,255,255,.18); padding: 24px 0 0; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .flow { grid-template-columns: 1fr; }
  .flow-step { min-height: auto; }
  .flow-step:not(:last-child)::after { content: "↓"; right: auto; left: 50%; top: auto; bottom: -18px; }
  .strategy-layout { display: block; padding-top: 54px; }
  .strategy-nav { display: none; }
  .strategy-section { padding-bottom: 54px; margin-bottom: 54px; }
  .strategy-section .grid-3 { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(1160px, calc(100% - 28px)); }
  .nav-inner { min-height: 62px; }
  .nav-links a { font-size: .76rem; }
  .nav-cta { display: none; }
  .wordmark { font-size: .93rem; }
  .wordmark span { font-size: .62rem; }
  .header-cta { width: 132px; max-width: 132px; font-size: .65rem; }
  .mobile-menu nav { grid-template-columns: 1fr; }
  .hero { padding-top: 68px; }
  h1 { font-size: 2.7rem; }
  .hero-grid, .hero-grid > *, .hero h1, .hero .lead, .hero-side { width: 100%; max-width: 100%; }
  .hero h1 { overflow-wrap: anywhere; }
  .eyebrow { display: block; max-width: 100%; font-size: .68rem; overflow-wrap: anywhere; }
  .eyebrow::before { display: inline-block; margin: 0 9px 3px 0; }
  .grid-2, .grid-3, .grid-4, .split-route, .terms { grid-template-columns: 1fr; }
  .result, .phase { grid-template-columns: 1fr; gap: 12px; }
  .cta-inner, .footer-inner { display: block; }
  .cta .button { margin-top: 22px; }
  .measurement-list li { grid-template-columns: 1fr; gap: 4px; }
  .closing-price { margin-top: 32px; padding: 26px 0 0; border-top: 1px solid rgba(255,255,255,.22); border-left: 0; }
}

@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 {
  .nav, .site-header, .strategy-nav, .progress, .hero-actions, .cta { display: none; }
  .hero { color: black; background: white; padding: 40px 0; }
  .hero .lead, .hero-side { color: #333; }
  .section { padding: 38px 0; }
  .strategy-layout { display: block; padding-top: 38px; }
  .strategy-section { padding-bottom: 38px; margin-bottom: 38px; }
}
