:root {
  --color-paper: oklch(98% 0 0);
  --color-ink: oklch(23% 0.015 90);
  --color-ink-soft: oklch(29% 0.018 90);
  --color-muted: oklch(48% 0.02 90);
  --color-line: oklch(88% 0.01 90);
  --color-lime: oklch(78% 0.18 121);
  --color-lime-deep: oklch(35% 0.1 121);
  --color-coral: oklch(68% 0.17 35);
  --color-mist: oklch(95% 0.012 121);
  --color-white: oklch(100% 0 0);
  --shell: min(1180px, calc(100% - 48px));
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 72px;
  --space-8: 112px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-soft: 0 12px 36px oklch(20% 0.02 90 / 0.1);
  --shadow-tight: 0 6px 18px oklch(20% 0.02 90 / 0.1);
  --font-display: "Aptos Display", "Segoe UI Variable Display", "Segoe UI", sans-serif;
  --font-body: "Aptos", "Segoe UI Variable", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

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

.skip-link {
  position: fixed;
  z-index: 20;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--color-ink);
  background: var(--color-lime);
  border-radius: var(--radius-sm);
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }
.shell { width: var(--shell); margin: 0 auto; }

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--color-white);
}

.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 92px; }
.brand { display: inline-flex; align-items: center; width: 142px; }
.brand img { width: 100%; height: auto; }
.main-navigation { display: flex; align-items: center; gap: 28px; font-size: 13px; font-weight: 700; }
.main-navigation > a:not(.button) { color: oklch(95% 0 0 / 0.78); transition: color 180ms ease; }
.main-navigation > a:not(.button):hover { color: var(--color-white); }
.menu-toggle { display: none; }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button-small { min-height: 40px; padding: 10px 15px; font-size: 12px; }
.button-dark { color: var(--color-white); background: var(--color-ink); }
.button-dark:hover { background: var(--color-ink-soft); }
.button-lime { color: var(--color-ink); background: var(--color-lime); }
.button-lime:hover { background: oklch(83% 0.16 121); }
.icon { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.icon-arrow { width: 17px; }

.section { padding: var(--space-8) 0; }
.section-dark { color: var(--color-white); background: var(--color-ink); }
.section-light { background: var(--color-paper); }
.section-mist { background: var(--color-mist); }
.eyebrow { margin: 0 0 16px; color: var(--color-lime-deep); font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.eyebrow-lime { color: var(--color-lime); }
.eyebrow-coral { color: var(--color-coral); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--font-display); letter-spacing: -0.025em; }
h1 { max-width: 720px; margin-bottom: 24px; font-size: clamp(3.7rem, 8vw, 7rem); font-weight: 600; line-height: 0.92; text-wrap: balance; }
h1 span { color: var(--color-lime); }
h2 { margin-bottom: 20px; font-size: clamp(2.4rem, 4.8vw, 4.5rem); font-weight: 600; line-height: 0.98; text-wrap: balance; }
h3 { margin-bottom: 10px; font-size: clamp(1.35rem, 2vw, 1.75rem); line-height: 1.08; }

.hero { min-height: 760px; padding: 160px 0 96px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 0.98fr) minmax(0, 0.82fr); gap: clamp(48px, 8vw, 120px); align-items: center; }
.hero-lede { max-width: 560px; margin-bottom: 32px; color: oklch(93% 0.01 90 / 0.78); font-size: clamp(1.05rem, 1.6vw, 1.25rem); }
.need-form { max-width: 640px; }
.need-form label { display: block; margin-bottom: 10px; color: oklch(93% 0.01 90 / 0.9); font-size: 12px; font-weight: 800; }
.need-input-wrap { display: flex; align-items: center; gap: 10px; padding: 7px; background: var(--color-white); border-radius: 999px; box-shadow: var(--shadow-soft); }
.need-input-wrap .icon-search { flex: 0 0 auto; margin-left: 13px; color: var(--color-muted); }
.need-input-wrap input { min-width: 0; flex: 1; padding: 10px 2px; color: var(--color-ink); background: transparent; border: 0; outline: 0; }
.need-input-wrap input::placeholder { color: var(--color-muted); }
.button-submit { flex: 0 0 auto; min-height: 48px; }
.form-hint, .form-status { margin: 9px 0 0 14px; color: oklch(90% 0.01 90 / 0.65); font-size: 12px; }
.form-status { min-height: 18px; color: var(--color-lime); }
.form-status.is-error { color: oklch(84% 0.12 35); }
.hero-proof { display: flex; align-items: center; gap: 12px; margin-top: 32px; color: oklch(90% 0.01 90 / 0.7); font-size: 12px; font-weight: 700; }
.hero-proof i { width: 4px; height: 4px; background: var(--color-coral); border-radius: 50%; }
.hero-visual { position: relative; min-height: 520px; }
.hero-photo { position: absolute; top: 0; right: 0; width: min(100%, 520px); margin: 0; }
.hero-photo::after { position: absolute; inset: 0; border: 1px solid oklch(100% 0 0 / 0.22); border-radius: var(--radius-lg); content: ""; pointer-events: none; }
.hero-photo img { width: 100%; aspect-ratio: 1 / 1.2; object-fit: cover; border-radius: var(--radius-lg); }
.hero-photo figcaption { position: absolute; right: 20px; bottom: 20px; display: inline-flex; align-items: center; gap: 8px; padding: 10px 13px; color: var(--color-white); background: oklch(20% 0.02 90 / 0.82); border: 1px solid oklch(100% 0 0 / 0.16); border-radius: 999px; font-size: 12px; font-weight: 700; backdrop-filter: blur(10px); }
.status-dot { width: 8px; height: 8px; background: var(--color-lime); border-radius: 50%; }
.hero-note { position: absolute; bottom: 10px; left: 0; display: flex; align-items: flex-start; gap: 12px; width: 220px; padding: 16px; color: var(--color-ink); background: var(--color-lime); border-radius: var(--radius-md); transform: translateX(-20px); }
.hero-note p { margin: 0; font-family: var(--font-display); font-size: 18px; font-weight: 600; line-height: 1.02; }
.note-mark { font-size: 22px; font-weight: 800; }

.proof-strip { color: var(--color-ink); background: var(--color-lime); }
.proof-strip-inner { display: grid; grid-template-columns: 0.55fr 1.45fr; gap: 36px; align-items: center; min-height: 128px; }
.proof-strip p { margin: 0; font-family: var(--font-display); font-size: 20px; font-weight: 600; }
.proof-strip ul { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 0; padding: 0; list-style: none; }
.proof-strip li { display: grid; gap: 3px; padding-left: 18px; border-left: 1px solid oklch(23% 0.015 90 / 0.34); }
.proof-strip strong { font-size: 14px; }
.proof-strip span { font-size: 12px; }

.intro-grid, .product-grid, .trust-grid, .dual-entry-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr); gap: clamp(40px, 9vw, 150px); align-items: start; }
.section-intro h2 { max-width: 680px; }
.section-intro-copy { max-width: 440px; padding-top: 50px; color: var(--color-muted); font-size: 1.12rem; }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--color-lime-deep); font-size: 14px; font-weight: 800; }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }
.category-rail { display: flex; gap: 10px; margin-top: 64px; padding-top: 22px; overflow-x: auto; border-top: 1px solid var(--color-line); scrollbar-width: none; }
.category-rail::-webkit-scrollbar { display: none; }
.category-rail span { flex: 0 0 auto; padding: 11px 15px; color: var(--color-ink-soft); border: 1px solid var(--color-line); border-radius: 999px; font-size: 13px; font-weight: 700; }

.section-heading { max-width: 680px; margin-bottom: 54px; }
.section-heading h2 { margin-bottom: 18px; }
.section-heading > p:last-child { max-width: 570px; margin: 0; color: var(--color-muted); font-size: 1.05rem; }
.journey-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--color-line); }
.journey-item { display: grid; grid-template-columns: 80px minmax(0, 1fr) auto; gap: 24px; align-items: center; padding: 28px 0; border-bottom: 1px solid var(--color-line); }
.journey-number { color: var(--color-coral); font-size: 13px; font-weight: 800; }
.journey-item p { max-width: 600px; margin: 0; color: var(--color-muted); }
.journey-tag { padding: 8px 12px; color: var(--color-lime-deep); background: var(--color-white); border-radius: 999px; font-size: 11px; font-weight: 800; }

.product-proof { color: var(--color-white); background: var(--color-ink-soft); }
.product-grid { grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr); align-items: center; }
.product-copy h2 { max-width: 580px; }
.product-copy > p:not(.eyebrow) { max-width: 530px; color: oklch(91% 0.01 90 / 0.72); font-size: 1.05rem; }
.trust-points { display: grid; gap: 14px; margin-top: 32px; }
.trust-points > div { display: flex; align-items: flex-start; gap: 12px; color: oklch(91% 0.01 90 / 0.8); font-size: 13px; }
.trust-points strong { display: block; margin-bottom: 2px; color: var(--color-white); }
.trust-icon { display: inline-grid; width: 24px; height: 24px; flex: 0 0 auto; place-items: center; color: var(--color-ink); background: var(--color-lime); border-radius: 50%; font-size: 13px; font-weight: 900; }
.product-frame { width: min(100%, 430px); margin: 0 auto; padding: 10px; background: oklch(17% 0.014 90); border-radius: var(--radius-md); box-shadow: var(--shadow-soft); transform: rotate(1.25deg); }
.product-frame img { width: 100%; border-radius: var(--radius-sm); }
.product-frame figcaption { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 10px; align-items: center; padding: 14px 6px 6px; color: oklch(94% 0.01 90 / 0.78); font-size: 12px; font-weight: 600; }
.capture-badge { display: inline-flex; min-height: 26px; align-items: center; padding: 5px 9px; color: var(--color-ink); background: var(--color-lime); border-radius: 999px; font-size: 10px; font-weight: 900; white-space: nowrap; }

.trust-section { color: var(--color-white); background: var(--color-lime-deep); }
.trust-section .eyebrow { color: var(--color-lime); }
.trust-statement h2 { max-width: 600px; }
.trust-list { display: grid; gap: 0; }
.trust-row { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 22px 0; border-top: 1px solid oklch(100% 0 0 / 0.26); }
.trust-row:last-child { border-bottom: 1px solid oklch(100% 0 0 / 0.26); }
.trust-symbol { color: var(--color-lime); font-size: 12px; font-weight: 900; }
.trust-row p { margin: 0; color: oklch(95% 0 0 / 0.78); font-size: 14px; }
.trust-row strong { color: var(--color-white); }

.dual-entry { background: var(--color-coral); }
.dual-entry-copy h2 { max-width: 620px; }
.dual-entry-copy > p:not(.eyebrow) { max-width: 500px; margin-bottom: 30px; font-size: 1.08rem; }
.business-sign { display: flex; min-height: 300px; flex-direction: column; justify-content: space-between; padding: 34px; color: var(--color-white); background: var(--color-ink); border-radius: var(--radius-lg); transform: rotate(-2deg); }
.sign-line { color: var(--color-lime); font-size: 12px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.business-sign strong { max-width: 360px; font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.8rem); font-weight: 500; line-height: 0.96; }
.sign-arrow { align-self: flex-end; color: var(--color-lime); font-size: 52px; line-height: 0.7; }

.final-cta { text-align: center; }
.final-cta-inner { display: flex; align-items: center; flex-direction: column; }
.final-cta h2 { max-width: 750px; margin-bottom: 18px; }
.final-cta p:not(.eyebrow) { max-width: 520px; color: oklch(91% 0.01 90 / 0.72); font-size: 1.1rem; }
.final-actions { display: flex; align-items: center; gap: 24px; margin-top: 20px; }
.text-link-light { color: var(--color-white); }

.site-footer { color: var(--color-muted); background: var(--color-paper); border-top: 1px solid var(--color-line); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 0.7fr; gap: 40px; padding: 46px 0 52px; }
.brand-footer { width: 120px; }
.footer-note { max-width: 270px; margin: 18px 0 0; font-size: 12px; }
.footer-links { display: grid; gap: 10px; align-content: start; font-size: 13px; font-weight: 700; }
.footer-links a:hover { color: var(--color-ink); }
.footer-meta { justify-self: end; font-size: 12px; text-align: right; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: 90ms; }
.reveal-delay-2 { transition-delay: 180ms; }

@media (max-width: 900px) {
  :root { --shell: min(100% - 40px, 680px); --space-8: 84px; }
  .main-navigation { position: absolute; top: 82px; right: 20px; left: 20px; display: none; align-items: stretch; flex-direction: column; gap: 0; padding: 8px; background: var(--color-ink-soft); border: 1px solid oklch(100% 0 0 / 0.14); border-radius: var(--radius-md); box-shadow: var(--shadow-soft); }
  .main-navigation.is-open { display: flex; }
  .main-navigation > a:not(.button) { padding: 12px; }
  .main-navigation .button { margin-top: 4px; }
  .menu-toggle { display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; flex-direction: column; gap: 6px; color: var(--color-white); background: transparent; border: 1px solid oklch(100% 0 0 / 0.36); border-radius: 50%; cursor: pointer; }
  .menu-toggle span { width: 17px; height: 1px; background: currentColor; transition: transform 180ms ease; }
  .hero { min-height: auto; padding: 138px 0 76px; }
  .hero-grid, .intro-grid, .product-grid, .trust-grid, .dual-entry-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { min-height: 430px; }
  .hero-photo { width: min(100%, 520px); }
  .hero-note { left: 0; transform: translateX(0); }
  .section-intro-copy { padding-top: 0; }
  .proof-strip-inner { grid-template-columns: 1fr; gap: 24px; padding: 28px 0; }
  .proof-strip ul { grid-template-columns: repeat(2, 1fr); }
  .journey-item { grid-template-columns: 54px minmax(0, 1fr); }
  .journey-tag { grid-column: 2; justify-self: start; }
  .product-frame { max-width: 430px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-meta { justify-self: start; text-align: left; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 32px); --space-8: 72px; }
  .header-inner { min-height: 76px; }
  .brand { width: 124px; }
  .main-navigation { top: 68px; right: 16px; left: 16px; }
  h1 { font-size: clamp(3.25rem, 17vw, 5.2rem); }
  h2 { font-size: clamp(2.35rem, 12vw, 3.4rem); }
  .hero { padding-top: 118px; }
  .need-input-wrap { align-items: stretch; flex-wrap: wrap; border-radius: var(--radius-md); }
  .need-input-wrap input { flex-basis: calc(100% - 50px); }
  .button-submit { width: 100%; }
  .hero-visual { min-height: 330px; }
  .hero-photo img { aspect-ratio: 0.92; }
  .hero-photo figcaption { right: 12px; bottom: 12px; font-size: 11px; }
  .hero-note { bottom: -12px; width: 190px; padding: 12px; }
  .hero-note p { font-size: 15px; }
  .proof-strip ul { grid-template-columns: 1fr 1fr; gap: 14px 10px; }
  .proof-strip li { padding-left: 10px; }
  .category-rail { margin-top: 42px; }
  .journey-item { gap: 12px; padding: 24px 0; }
  .journey-item p { font-size: 14px; }
  .journey-tag { font-size: 10px; }
  .product-frame { max-width: 360px; transform: none; }
  .product-frame figcaption { grid-template-columns: 1fr; }
  .capture-badge { justify-self: start; }
  .business-sign { min-height: 250px; padding: 26px; }
  .final-actions { align-items: stretch; flex-direction: column; width: 100%; }
  .final-actions .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

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