:root {
  --void: #08080b;
  --carbon: #131318;
  --carbon-2: #1a1a21;
  --ice: #f2f2f5;
  --slate: #9b9aa4;
  --graphite: #898894;
  --hairline: rgba(255, 255, 255, 0.09);
  --violet: #7c6cf6;
  --blue: #4a6cf7;
  --green: #34d399;
  --sky: #6e8bff;
  --amber: #e0a44a;
  --rose: #f26d6d;
  --font-ui: "Hanken Grotesk", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
  --shell: 1180px;
  --ease: cubic-bezier(0.2, 0.72, 0.2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--void); }
body {
  margin: 0;
  background: var(--void);
  color: var(--ice);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
.shell { width: min(var(--shell), calc(100% - 48px)); margin-inline: auto; }
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 200;
  padding: 10px 14px;
  background: var(--ice);
  color: var(--void);
  border-radius: 6px;
}
.skip-link:focus { top: 14px; }
:focus-visible { outline: 3px solid var(--green); outline-offset: 4px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(8, 8, 11, 0.72);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(20px) saturate(135%);
  transition: background 180ms ease, border-color 180ms ease;
}
.site-header.is-scrolled { background: rgba(8, 8, 11, 0.94); border-color: var(--hairline); }
.nav-shell { min-height: 76px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 11px; width: fit-content; }
.brand img { width: 42px; height: 42px; }
.brand-type { display: flex; align-items: baseline; gap: 8px; }
.brand-type strong { font-size: 18px; line-height: 1; font-weight: 800; }
.brand-type small { font: 500 10px/1 var(--font-mono); letter-spacing: 0.28em; color: var(--slate); }
.nav-links { display: flex; justify-content: center; gap: 28px; color: #b8b7c1; font-size: 14px; font-weight: 600; }
.nav-links a, .text-link { transition: color 160ms ease; }
.nav-links a:hover, .text-link:hover { color: #fff; }
.nav-actions { display: flex; align-items: center; gap: 18px; }
.text-link { color: #b8b7c1; font-size: 14px; font-weight: 600; }
.menu-button { display: none; width: 42px; height: 42px; padding: 0; border: 1px solid var(--hairline); border-radius: 6px; background: var(--carbon); }
.menu-button span { display: block; width: 18px; height: 2px; margin: 5px auto; background: var(--ice); transition: transform 160ms ease; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 21px;
  border: 1px solid var(--hairline);
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #fff;
  box-shadow: 0 14px 38px rgba(74, 108, 247, 0.25);
}
.button-primary:hover { box-shadow: 0 18px 46px rgba(74, 108, 247, 0.38); }
.button-quiet { background: rgba(255, 255, 255, 0.04); color: #d7d6de; }
.button-quiet:hover { border-color: rgba(255, 255, 255, 0.25); background: rgba(255, 255, 255, 0.07); }
.button-small { min-height: 42px; padding-inline: 16px; font-size: 13px; }

.hero {
  position: relative;
  min-height: 820px;
  padding: 142px 0 52px;
  overflow: hidden;
  border-bottom: 1px solid var(--hairline);
  isolation: isolate;
}
.signal-canvas { position: absolute; inset: 0; z-index: -3; width: 100%; height: 100%; opacity: 0.62; }
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(rgba(255,255,255,0.026) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.026) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black 15%, rgba(0,0,0,0.8) 62%, transparent 100%);
}
.hero:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 200px;
  z-index: -1;
  background: linear-gradient(to bottom, transparent, var(--void));
}
.hero-layout { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr); gap: 74px; align-items: center; }
.hero-copy { padding-bottom: 32px; }
.eyebrow { margin: 0 0 17px; color: #aaa8b4; font: 600 11px/1.4 var(--font-mono); letter-spacing: 0.16em; text-transform: uppercase; }
.live-dot { display: inline-block; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 16px rgba(52, 211, 153, 0.75); }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2, h3 { letter-spacing: 0; }
.hero h1 { max-width: 680px; margin: 0; font-size: 72px; line-height: 0.98; font-weight: 800; }
.hero h1 span { display: block; color: #a9a2ff; }
.hero-lede { max-width: 610px; margin: 26px 0 0; color: #b7b6c0; font-size: 19px; line-height: 1.62; }
.hero-lede strong { color: var(--ice); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 30px; }
.microcopy { margin: 16px 0 0; color: #73727d; font: 500 11px/1.55 var(--font-mono); }

.build-scene { position: relative; min-height: 520px; perspective: 1100px; }
.scene-label { display: flex; justify-content: space-between; align-items: center; margin: 0 4px 13px; color: #777681; font: 500 10px/1 var(--font-mono); letter-spacing: 0.14em; }
.scene-label b { color: var(--green); font-weight: 500; }
.browser-window {
  position: absolute;
  overflow: hidden;
  background: rgba(18, 18, 24, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.55);
  transform-style: preserve-3d;
}
.browser-back { width: 68%; height: 270px; top: 84px; left: 0; opacity: 0.72; transform: rotateY(8deg) translateZ(-70px); }
.browser-mid { width: 70%; height: 285px; top: 144px; right: 0; opacity: 0.84; transform: rotateY(-7deg) translateZ(-30px); }
.browser-front { width: 82%; height: 340px; top: 38px; left: 9%; z-index: 5; animation: sceneFloat 7s var(--ease) infinite; }
.browser-bar { height: 36px; display: flex; align-items: center; gap: 6px; padding: 0 12px; border-bottom: 1px solid var(--hairline); color: #83828d; font: 500 9px/1 var(--font-mono); }
.browser-bar i { width: 6px; height: 6px; border-radius: 50%; background: #45444e; }
.browser-bar span { margin-left: 7px; }
.browser-bar em { margin-left: auto; color: var(--green); font-style: normal; letter-spacing: 0.08em; }
.evidence-lines { display: grid; gap: 14px; padding: 28px; }
.evidence-lines span { height: 10px; border-radius: 2px; background: linear-gradient(90deg, rgba(110,139,255,0.55), rgba(255,255,255,0.06)); }
.evidence-lines span:nth-child(2) { width: 74%; }
.evidence-lines span:nth-child(3) { width: 88%; background: linear-gradient(90deg, rgba(52,211,153,0.48), rgba(255,255,255,0.05)); }
.evidence-lines span:nth-child(4) { width: 58%; }
.evidence-footer { position: absolute; inset: auto 22px 20px; }
.evidence-footer b, .evidence-footer small { display: block; }
.evidence-footer b { font-size: 13px; }.evidence-footer small { margin-top: 4px; color: var(--graphite); font: 500 9px/1.4 var(--font-mono); }
.market-map { position: relative; height: 100%; overflow: hidden; }
.map-ring { position: absolute; border: 1px solid rgba(52,211,153,0.34); border-radius: 50%; }
.ring-one { width: 180px; height: 180px; top: 60px; left: 42px; }
.ring-two { width: 104px; height: 104px; top: 98px; left: 80px; }
.map-pin { position: absolute; width: 12px; height: 12px; top: 144px; left: 126px; border-radius: 50%; background: var(--green); box-shadow: 0 0 24px rgba(52,211,153,0.85); }
.market-copy { position: absolute; left: 225px; top: 99px; width: 180px; }
.market-copy b, .market-copy small { display: block; }.market-copy b { font-size: 14px; }.market-copy small { margin-top: 8px; color: var(--graphite); font-size: 11px; }
.site-mock { height: calc(100% - 36px); padding: 18px; background: #ebeee7; color: #11150f; }
.mock-nav { height: 27px; display: flex; align-items: center; justify-content: flex-end; gap: 15px; }
.mock-nav span { width: 34px; height: 4px; border-radius: 2px; background: rgba(17,21,15,0.2); }
.mock-nav .mock-logo { width: 26px; height: 26px; margin-right: auto; border-radius: 5px; background: #315b3c; }
.mock-hero { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 18px; margin-top: 17px; }
.mock-hero small { color: #53715a; font: 600 7px/1 var(--font-mono); letter-spacing: 0.11em; }
.mock-hero b { display: block; max-width: 220px; margin-top: 10px; font-size: 29px; line-height: 0.97; }
.mock-hero p { max-width: 215px; margin: 12px 0 0; color: #667066; font-size: 9px; line-height: 1.5; }
.mock-media { position: relative; min-height: 174px; overflow: hidden; border-radius: 6px; background: #40644c; }
.mock-media:before { content: ""; position: absolute; inset: 0; background: linear-gradient(150deg, #355c41 0 36%, #92a77f 36% 61%, #d6b270 61%); }
.mock-media i { position: absolute; width: 44px; height: 92px; bottom: -20px; border-radius: 30px 30px 0 0; background: rgba(239,244,231,0.28); transform: rotate(30deg); }
.mock-media i:nth-child(1) { left: 13px; }.mock-media i:nth-child(2) { left: 65px; height: 130px; }.mock-media i:nth-child(3) { right: 13px; height: 108px; }
.mock-footer { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-top: 14px; }
.mock-footer span { padding: 8px 5px; border: 1px solid rgba(17,21,15,0.11); border-radius: 4px; color: #506055; font-size: 7px; text-align: center; }
.scan-beam { position: absolute; left: 6%; right: 6%; top: 82px; z-index: 7; height: 1px; background: linear-gradient(90deg, transparent, var(--green), transparent); box-shadow: 0 0 24px rgba(52,211,153,0.7); animation: scanScene 5.4s ease-in-out infinite; }
.scene-status { position: absolute; z-index: 8; right: 9%; bottom: 35px; width: 270px; padding: 13px 15px; background: rgba(10,10,14,0.94); border: 1px solid rgba(52,211,153,0.28); border-radius: 7px; box-shadow: 0 18px 55px rgba(0,0,0,0.44); }
.scene-status b, .scene-status small { display: block; }.scene-status b { display: inline; font-size: 12px; }.scene-status small { margin: 5px 0 0 15px; color: var(--graphite); font-size: 10px; }
.promise-strip { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 50px; border: 1px solid var(--hairline); border-radius: 7px; background: rgba(13,13,17,0.72); }
.promise-strip span { min-width: 0; padding: 15px 18px; border-right: 1px solid var(--hairline); color: #8d8c96; font-size: 12px; }
.promise-strip span:last-child { border-right: 0; }.promise-strip b { color: #dedde4; }

.section { padding: 112px 0; }
.section-heading { max-width: 700px; margin-bottom: 52px; }
.section-heading.wide { max-width: 850px; }
.section-heading h2, .offer-copy h2, .final-cta h2 { margin: 0; font-size: 50px; line-height: 1.04; font-weight: 800; }
.section-heading > p:last-child, .offer-copy > p, .final-cta-inner > p { max-width: 650px; margin: 18px 0 0; color: var(--slate); font-size: 17px; }
.process-section { background: #0c0c10; }
.process-rail { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--hairline); }
.process-rail li { display: grid; grid-template-columns: 88px 1fr; gap: 24px; padding: 34px 0; border-bottom: 1px solid var(--hairline); }
.process-rail > li > span { color: var(--green); font: 500 12px/1.4 var(--font-mono); }
.process-rail h3 { margin: 0; font-size: 24px; }.process-rail p { max-width: 780px; margin: 8px 0 0; color: var(--slate); }

.comparison-section { background: #eceee8; color: #11140f; }
.comparison-section .eyebrow { color: #53705a; }
.comparison-section .section-heading p { color: #5f665e; }
.comparison-table { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border: 1px solid rgba(17,20,15,0.14); border-radius: 8px; background: #f7f8f4; }
.comparison-head { padding: 15px 24px; font: 600 11px/1 var(--font-mono); letter-spacing: 0.1em; text-transform: uppercase; }
.comparison-head.current { color: #7d746c; background: #e6e1dc; }.comparison-head.upgraded { color: #1f623e; background: #dce9dd; }
.comparison-cell { min-height: 170px; padding: 30px 32px; border-top: 1px solid rgba(17,20,15,0.1); }
.comparison-cell:nth-child(even) { border-right: 1px solid rgba(17,20,15,0.1); }
.comparison-cell.current { background: #f2efeb; }.comparison-cell.upgraded { background: #f5f8f3; }
.comparison-cell b { font-size: 19px; }.comparison-cell p { margin: 10px 0 0; color: #61665f; }
.comparison-cell.upgraded b:before { content: ""; display: inline-block; width: 8px; height: 8px; margin-right: 10px; border-radius: 50%; background: #2d9861; }

.deliverables-section { background: #0a0a0e; }
.deliverables-grid { display: grid; grid-template-columns: 1.15fr 0.85fr 0.85fr; gap: 14px; }
.deliverable { position: relative; min-height: 390px; overflow: hidden; padding: 27px; border: 1px solid var(--hairline); border-radius: 8px; background: var(--carbon); }
.deliverable-top { display: flex; justify-content: space-between; color: var(--graphite); font: 500 10px/1 var(--font-mono); letter-spacing: 0.1em; }
.deliverable-top span { color: var(--green); }.deliverable h3 { margin: 58px 0 0; font-size: 27px; }.deliverable p { max-width: 430px; margin: 11px 0 0; color: var(--slate); }
.mini-site { position: absolute; left: 27px; right: 27px; bottom: -35px; height: 185px; padding: 18px; border-radius: 7px 7px 0 0; background: #eff0eb; }
.mini-site span { display: block; width: 24px; height: 24px; border-radius: 4px; background: #325b3e; }.mini-site b { display: block; width: 55%; height: 21px; margin-top: 22px; border-radius: 2px; background: #182019; }
.mini-site i { display: inline-block; width: 27%; height: 48px; margin: 18px 6px 0 0; border-radius: 4px; background: #cbd4c7; }
.report-lines { position: absolute; left: 27px; right: 27px; bottom: 33px; display: grid; gap: 12px; }
.report-lines span { height: 11px; border-radius: 2px; background: linear-gradient(90deg, rgba(124,108,246,0.8), rgba(255,255,255,0.05)); }
.report-lines span:nth-child(2) { width: 82%; }.report-lines span:nth-child(3) { width: 65%; background: linear-gradient(90deg, rgba(52,211,153,0.7), rgba(255,255,255,0.04)); }.report-lines span:nth-child(4) { width: 92%; }
.plan-steps { position: absolute; left: 27px; right: 27px; bottom: 36px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.plan-steps span { padding: 11px 5px; border: 1px solid var(--hairline); border-radius: 4px; color: var(--graphite); font: 500 9px/1 var(--font-mono); text-align: center; }.plan-steps span:first-child { border-color: rgba(52,211,153,0.4); color: var(--green); }

.offer-section { background: #111117; }
.offer-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 76px; align-items: center; }
.offer-copy .button { margin-top: 28px; }
.price-panel { padding: 34px; border: 1px solid rgba(124,108,246,0.38); border-radius: 8px; background: #16161d; box-shadow: 0 34px 90px rgba(0,0,0,0.35); }
.price-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; padding-bottom: 25px; border-bottom: 1px solid var(--hairline); }.price-head > span { color: #a6a4b0; font: 600 10px/1 var(--font-mono); letter-spacing: 0.12em; }.price-head > b { font-size: 46px; line-height: 1; }.price-head small { margin-left: 4px; color: var(--slate); font-size: 14px; font-weight: 500; }
.price-panel ul { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 22px; margin: 26px 0; padding: 0; list-style: none; }.price-panel li { position: relative; padding-left: 20px; color: #d2d1d8; font-size: 14px; }.price-panel li:before { content: ""; position: absolute; left: 0; top: 8px; width: 7px; height: 7px; border-radius: 50%; background: var(--green); }.price-panel > p { margin: 0; padding-top: 20px; border-top: 1px solid var(--hairline); color: var(--graphite); font-size: 12px; }
.product-row { display: flex; justify-content: space-between; align-items: center; gap: 36px; margin-top: 56px; padding-top: 34px; border-top: 1px solid var(--hairline); }.product-row h3 { margin: 6px 0 0; font-size: 25px; }.product-row p { max-width: 650px; margin: 7px 0 0; color: var(--slate); }.product-key { color: var(--amber); font: 600 10px/1 var(--font-mono); letter-spacing: 0.13em; }.product-actions { display: flex; align-items: center; gap: 18px; flex: none; }

.faq-section { background: #eceee8; color: #11140f; }
.faq-section .eyebrow { color: #53705a; }
.faq-layout { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 90px; }
.faq-list { border-top: 1px solid rgba(17,20,15,0.15); }
.faq-list details { border-bottom: 1px solid rgba(17,20,15,0.15); }.faq-list summary { position: relative; padding: 24px 42px 24px 0; cursor: pointer; list-style: none; font-size: 18px; font-weight: 700; }.faq-list summary::-webkit-details-marker { display: none; }.faq-list summary:after { content: "+"; position: absolute; right: 6px; top: 22px; width: 24px; height: 24px; border: 1px solid rgba(17,20,15,0.2); border-radius: 50%; font: 400 17px/21px var(--font-mono); text-align: center; }.faq-list details[open] summary:after { content: "-"; }.faq-list details p { margin: -7px 48px 25px 0; color: #5c625b; }.faq-list a { text-decoration: underline; }

.final-cta { position: relative; min-height: 520px; display: grid; place-items: center; overflow: hidden; border-bottom: 1px solid var(--hairline); isolation: isolate; }.signal-canvas-small { opacity: 0.5; }.final-cta:after { content: ""; position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(8,8,11,0.92), rgba(8,8,11,0.55), rgba(8,8,11,0.92)); }.final-cta-inner { max-width: 830px; text-align: center; }.final-cta-inner .eyebrow { color: var(--green); }.final-cta h2 { font-size: 58px; }.final-cta-inner > p { margin-inline: auto; }.final-cta .hero-actions { justify-content: center; }

.site-footer { padding: 62px 0 72px; background: #08080b; }
.footer-grid { display: grid; grid-template-columns: 1.35fr 0.65fr 0.65fr 1fr; gap: 48px; }.footer-brand { margin-bottom: 18px; }.footer-grid h3 { margin: 0 0 14px; color: #d5d4db; font: 600 10px/1.4 var(--font-mono); letter-spacing: 0.12em; text-transform: uppercase; }.footer-grid a { display: block; margin: 8px 0; color: #8e8d98; font-size: 13px; }.footer-grid a.brand { display: inline-flex; margin: 0 0 18px; }.footer-grid a:hover { color: var(--ice); }.footer-grid p { max-width: 310px; margin: 0 0 12px; color: var(--graphite); font-size: 13px; }

.consent-note { position: fixed; z-index: 150; left: 18px; bottom: 18px; display: flex; align-items: center; gap: 18px; max-width: 520px; padding: 12px 14px; border: 1px solid var(--hairline); border-radius: 7px; background: rgba(19,19,24,0.97); box-shadow: 0 20px 60px rgba(0,0,0,0.45); }.consent-note p { margin: 0; color: #aaa9b2; font-size: 12px; }.consent-note a { color: var(--ice); text-decoration: underline; }.consent-note button { flex: none; padding: 7px 10px; border: 1px solid var(--hairline); border-radius: 5px; background: transparent; cursor: pointer; font-size: 11px; }.consent-note[hidden] { display: none; }

.subpage-main { position: relative; min-height: 100vh; padding: 138px 0 90px; overflow: hidden; isolation: isolate; }
.subpage-main:after { content: ""; position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(8,8,11,0.97) 0 38%, rgba(8,8,11,0.67), rgba(8,8,11,0.92)); }
.status-page { display: grid; place-items: center; text-align: center; }
.status-page .final-cta-inner { padding-top: 10vh; }
.status-page h1 { margin: 0; font-size: 58px; }
.status-page .status-copy { color: var(--slate); font-size: 18px; }
.status-page .hero-actions { justify-content: center; }
.intake-layout { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr); gap: 72px; align-items: start; }
.intake-copy { position: sticky; top: 128px; }
.intake-copy h1 { max-width: 620px; margin: 0; font-size: 60px; line-height: 1; font-weight: 800; }
.intake-copy h1 span { color: #a9a2ff; }
.intake-copy > p:not(.eyebrow) { max-width: 560px; margin: 22px 0 0; color: var(--slate); font-size: 18px; }
.intake-checks { display: grid; gap: 15px; margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--hairline); }
.intake-checks div { display: grid; grid-template-columns: 23px 1fr; gap: 12px; align-items: start; }
.intake-checks span { display: grid; place-items: center; width: 21px; height: 21px; border: 1px solid rgba(52,211,153,0.4); border-radius: 50%; color: var(--green); font-size: 11px; }
.intake-checks b { display: block; font-size: 14px; }.intake-checks small { display: block; margin-top: 3px; color: var(--graphite); font-size: 12px; }
.intake-panel { padding: 32px; border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; background: rgba(18,18,24,0.95); box-shadow: 0 40px 110px rgba(0,0,0,0.48); }
.form-heading { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 24px; border-bottom: 1px solid var(--hairline); }
.form-heading h2 { margin: 0; font-size: 27px; }.form-heading p { margin: 6px 0 0; color: var(--slate); font-size: 13px; }.form-step { flex: none; color: var(--green); font: 500 10px/1.4 var(--font-mono); letter-spacing: 0.1em; }
.preview-form { display: grid; gap: 18px; margin-top: 26px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }.field-full { grid-column: 1 / -1; }
.field > span { color: #b8b7c1; font: 600 11px/1.4 var(--font-mono); letter-spacing: 0.04em; }.field em { color: var(--graphite); font-style: normal; font-weight: 400; }
.field input, .field textarea, .field select { width: 100%; min-height: 48px; padding: 11px 13px; border: 1px solid rgba(255,255,255,0.11); border-radius: 6px; background: #0c0c11; color: var(--ice); outline: 0; transition: border-color 160ms ease, box-shadow 160ms ease; }
.field textarea { min-height: 96px; resize: vertical; }.field input::placeholder, .field textarea::placeholder { color: #54535d; }.field input:focus, .field textarea:focus, .field select:focus { border-color: rgba(124,108,246,0.8); box-shadow: 0 0 0 3px rgba(124,108,246,0.13); }
.consent-field { display: grid; grid-template-columns: 20px 1fr; gap: 11px; align-items: start; color: #9998a3; font-size: 12px; line-height: 1.5; cursor: pointer; }.consent-field input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--violet); }.consent-field b { color: #d8d7de; }
.submit-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-top: 4px; }.submit-row small { max-width: 270px; color: var(--graphite); font-size: 10px; line-height: 1.5; }.submit-row .button { border: 0; cursor: pointer; }.submit-row .button[aria-busy="true"] { opacity: 0.65; cursor: progress; transform: none; }
.request-status { display: grid; gap: 4px; padding: 14px 15px; border: 1px solid var(--hairline); border-radius: 6px; background: rgba(255,255,255,0.03); }.request-status strong { font-size: 13px; }.request-status span { color: var(--slate); font-size: 12px; }.request-status.working { border-color: rgba(110,139,255,0.32); }.request-status.success { border-color: rgba(52,211,153,0.38); background: rgba(52,211,153,0.06); }.request-status.error { border-color: rgba(242,109,109,0.4); background: rgba(242,109,109,0.06); }.request-status[hidden] { display: none; }
.email-fallback { width: fit-content; color: #c7c4ff; font-size: 13px; text-decoration: underline; }.email-fallback[hidden] { display: none; }
.subpage-footer { padding: 24px 0; border-top: 1px solid var(--hairline); background: #08080b; color: var(--graphite); font-size: 12px; }.subpage-footer .shell { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }.subpage-footer a { color: #a9a8b1; }

.legal-main { background: #eceee8; color: #11140f; }
.legal-main:after { background: linear-gradient(90deg, rgba(236,238,232,0.98), rgba(236,238,232,0.88)); }
.legal-layout { display: grid; grid-template-columns: 260px 1fr; gap: 70px; }
.legal-nav { position: sticky; top: 118px; align-self: start; display: grid; gap: 7px; padding: 18px; border: 1px solid rgba(17,20,15,0.13); border-radius: 7px; background: rgba(255,255,255,0.55); }.legal-nav a { padding: 10px 11px; border-radius: 5px; color: #626760; font-size: 13px; font-weight: 600; }.legal-nav a:hover { background: #fff; color: #11140f; }
.legal-content { max-width: 820px; }.legal-content > header { padding-bottom: 32px; border-bottom: 1px solid rgba(17,20,15,0.14); }.legal-content h1 { margin: 0; font-size: 54px; line-height: 1; }.legal-content > header p { color: #5f655e; }.legal-section { scroll-margin-top: 110px; padding: 42px 0; border-bottom: 1px solid rgba(17,20,15,0.14); }.legal-section h2 { margin: 0 0 22px; font-size: 30px; }.legal-section h3 { margin: 26px 0 8px; font-size: 18px; }.legal-section p, .legal-section li { color: #555b54; }.legal-section ul { padding-left: 20px; }.legal-note { padding: 14px 16px; border-left: 3px solid #2d9861; background: #e0e9df; color: #415048; font-size: 13px; }

[data-reveal] { opacity: 1; transform: none; }
[data-reveal].is-visible { animation: revealIn 700ms var(--ease) both; }
@keyframes revealIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes sceneFloat { 0%,100% { transform: translateY(0) rotateX(0); } 50% { transform: translateY(-9px) rotateX(1deg); } }
@keyframes scanScene { 0%,100% { transform: translateY(0); opacity: 0; } 15% { opacity: 0.75; } 75% { opacity: 0.7; } 90% { transform: translateY(288px); opacity: 0; } }

@media (max-width: 1040px) {
  .nav-links { display: none; }
  .hero { min-height: auto; }
  .hero-layout { grid-template-columns: 1fr; gap: 42px; }
  .hero-copy { max-width: 760px; padding-bottom: 0; }
  .hero h1 { font-size: 64px; }
  .build-scene { width: min(720px, 100%); margin-inline: auto; }
  .deliverables-grid { grid-template-columns: 1fr 1fr; }.deliverable:first-child { grid-column: 1 / -1; }
  .offer-layout, .faq-layout { grid-template-columns: 1fr; gap: 46px; }
  .footer-grid { grid-template-columns: 1.2fr 0.8fr 0.8fr; }.footer-grid > div:last-child { grid-column: 1 / -1; }
  .intake-layout { grid-template-columns: 1fr; gap: 44px; }.intake-copy { position: static; }.intake-copy h1 { font-size: 54px; }
}

@media (max-width: 760px) {
  .shell { width: min(100% - 30px, var(--shell)); }
  .nav-shell { min-height: 68px; grid-template-columns: auto auto; justify-content: space-between; }
  .nav-actions { display: none; }
  .menu-button { display: block; }
  .nav-links { position: fixed; inset: 68px 0 auto; display: none; padding: 20px 15px 26px; background: #0d0d12; border-bottom: 1px solid var(--hairline); }
  .nav-links.is-open { display: grid; gap: 0; }.nav-links a { padding: 14px 8px; border-bottom: 1px solid var(--hairline); font-size: 16px; }
  .hero { padding: 96px 0 18px; }
  .hero-layout { gap: 22px; }
  .hero h1 { font-size: 42px; }
  .hero-lede { margin-top: 18px; font-size: 15px; line-height: 1.5; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 20px; }
  .hero-actions .button { width: auto; min-height: 46px; padding-inline: 10px; font-size: 12px; }
  .microcopy { margin-top: 10px; font-size: 9px; }
  .build-scene { min-height: 218px; overflow: hidden; }
  .browser-back { display: none; }
  .browser-mid { display: none; }
  .browser-front { width: 94%; height: 202px; left: 3%; top: 13px; animation: none; }
  .browser-bar { height: 30px; }
  .site-mock { height: calc(100% - 30px); padding: 11px; }
  .mock-nav { height: 22px; }.mock-nav .mock-logo { width: 22px; height: 22px; }.mock-nav span { width: 25px; }
  .mock-hero { grid-template-columns: 1fr 0.82fr; gap: 10px; margin-top: 9px; }.mock-hero b { margin-top: 7px; font-size: 20px; }.mock-hero p { display: none; }.mock-media { min-height: 108px; }.mock-footer { margin-top: 8px; }.mock-footer span { padding: 5px 2px; font-size: 5px; }
  .scan-beam { top: 58px; }
  .scene-status { display: none; }
  .promise-strip { display: flex; margin-top: 12px; overflow-x: auto; scrollbar-width: none; }.promise-strip::-webkit-scrollbar { display: none; }.promise-strip span { flex: 0 0 180px; padding-block: 13px; border-right: 1px solid var(--hairline); border-bottom: 0; }
  .section { padding: 82px 0; }
  .section-heading { margin-bottom: 38px; }.section-heading h2, .offer-copy h2, .final-cta h2 { font-size: 38px; }
  .process-rail li { grid-template-columns: 44px 1fr; gap: 14px; }.process-rail h3 { font-size: 21px; }
  .comparison-table { display: block; }.comparison-head { display: none; }.comparison-cell { min-height: 0; border-right: 0; border-top: 0; border-bottom: 1px solid rgba(17,20,15,0.1); }.comparison-cell:before { display: block; margin-bottom: 13px; font: 600 9px/1 var(--font-mono); letter-spacing: 0.1em; }.comparison-cell.current:before { content: "CURRENT GAP"; color: #8a7366; }.comparison-cell.upgraded:before { content: "WSS BUILD"; color: #2d9861; }
  .deliverables-grid { grid-template-columns: 1fr; }.deliverable:first-child { grid-column: auto; }.deliverable { min-height: 350px; }
  .offer-layout { gap: 34px; }.price-panel { padding: 25px 21px; }.price-head { align-items: flex-start; flex-direction: column; }.price-panel ul { grid-template-columns: 1fr; }
  .product-row { align-items: flex-start; flex-direction: column; }.product-actions { width: 100%; flex-direction: column; align-items: stretch; }.product-actions .button { width: 100%; }
  .faq-layout { gap: 24px; }
  .final-cta { min-height: 480px; }.final-cta h2 { font-size: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 24px; }.footer-grid > div:first-child, .footer-grid > div:last-child { grid-column: 1 / -1; }
  .consent-note { right: 12px; left: 12px; bottom: 12px; }
  .subpage-main { padding: 108px 0 70px; }.intake-copy h1 { font-size: 43px; }.intake-panel { padding: 24px 18px; }.form-grid { grid-template-columns: 1fr; }.field-full { grid-column: auto; }.submit-row { align-items: stretch; flex-direction: column-reverse; }.submit-row .button { width: 100%; }.submit-row small { max-width: none; }
  .legal-layout { grid-template-columns: 1fr; gap: 32px; }.legal-nav { position: static; grid-template-columns: repeat(3, 1fr); }.legal-nav a { text-align: center; }.legal-content h1 { font-size: 42px; }
}

@media (max-width: 430px) {
  .brand-type small { display: none; }
  .hero h1 { font-size: 39px; }
  .section-heading h2, .offer-copy h2, .final-cta h2 { font-size: 34px; }
  .comparison-cell { padding: 25px 22px; }
  .footer-grid { grid-template-columns: 1fr; }.footer-grid > div:first-child, .footer-grid > div:last-child { grid-column: auto; }
}

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

@media print {
  .site-header, .signal-canvas, .hero-grid, .hero-actions, .consent-note, .final-cta { display: none !important; }
  body { background: #fff; color: #111; }
  .section, .hero { min-height: 0; padding: 28px 0; }
  .comparison-section, .faq-section { background: #fff; }
}
