:root {
  --ink: #151815;
  --muted: #626961;
  --paper: #f4f3ee;
  --surface: #e7eae4;
  --green: #b9d4c2;
  --sky: #b9d8e0;
  --coral: #e8a091;
  --white: #fffef9;
  --line: rgba(21, 24, 21, .16);
  --page: min(1320px, calc(100vw - 64px));
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, "Helvetica Neue", Arial, sans-serif; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
button, input { font: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, summary { cursor: pointer; }
:focus-visible { outline: 2px solid #087b87; outline-offset: 4px; }
.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; top: -80px; left: 16px; z-index: 100; padding: 12px 18px; color: var(--white); background: var(--ink); }
.skip-link:focus { top: 16px; }

.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; height: 78px; padding: 0 max(24px, calc((100vw - 1320px) / 2)); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.2); transition: color .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease); }
.site-header.is-scrolled { color: var(--ink); background: rgba(244,243,238,.92); border-color: var(--line); backdrop-filter: blur(16px); }
.brand { width: 154px; }
.brand img { width: 100%; height: auto; filter: invert(1); transition: filter .35s var(--ease); }
.site-header.is-scrolled .brand img { filter: none; }
.desktop-nav { display: flex; gap: 30px; font-size: 13px; }
.desktop-nav a { position: relative; padding: 8px 0; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 2px; height: 1px; background: currentColor; transition: right .25s var(--ease); }
.desktop-nav a:hover::after { right: 0; }
.site-header > .button { justify-self: end; }
.site-header:not(.is-scrolled) > .button { color: var(--ink); background: var(--white); }
.menu-button, .mobile-nav { display: none; }

.button { min-height: 54px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center; gap: 20px; border: 1px solid var(--ink); color: var(--white); background: var(--ink); font-size: 14px; font-weight: 600; line-height: 1; transition: transform .25s var(--ease), color .25s var(--ease), background .25s var(--ease); }
.button:hover { transform: translateY(-2px); }
.button--small { min-height: 42px; padding: 0 17px; gap: 12px; font-size: 12px; }
.button--light { color: var(--ink); border-color: var(--white); background: var(--white); }
.button--wide { width: 100%; justify-content: space-between; }

.eyebrow { margin: 0 0 24px; font-size: 11px; font-weight: 700; line-height: 1; text-transform: uppercase; }
.eyebrow--light { color: rgba(255,255,255,.72); }
.section { width: var(--page); margin: 0 auto; }
.section__label { padding: 24px 0; display: flex; gap: 24px; border-top: 1px solid var(--line); font-size: 11px; text-transform: uppercase; }
.section__label p { margin: 0; }
.section__label span { color: var(--muted); }

.hero { position: relative; min-height: 850px; height: min(920px, 100svh); color: var(--white); overflow: hidden; background: #5a5047; }
.hero__image, .hero__veil { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__image { object-position: center; }
.hero__veil { background: linear-gradient(90deg, rgba(10,12,10,.68) 0%, rgba(10,12,10,.2) 52%, rgba(10,12,10,.02) 78%); }
.hero__content { position: relative; z-index: 1; width: var(--page); height: 100%; margin: auto; padding-top: 148px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.hero h1 { margin: 0; max-width: 820px; font-size: clamp(68px, 7.4vw, 116px); font-weight: 400; line-height: .9; letter-spacing: 0; }
.hero__copy { max-width: 560px; margin: 32px 0; font-size: 18px; line-height: 1.6; color: rgba(255,255,255,.82); }
.hero__actions { display: flex; align-items: center; gap: 24px; }
.hero__actions > span { font-size: 11px; line-height: 1.45; color: rgba(255,255,255,.62); }
.hero__actions > span strong { color: var(--white); font-size: 16px; }
.hero__foot { position: absolute; z-index: 1; left: max(32px, calc((100vw - 1320px) / 2)); right: max(32px, calc((100vw - 1320px) / 2)); bottom: 25px; padding-top: 18px; display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.35); font-size: 10px; text-transform: uppercase; }

.signal-strip { min-height: 70px; padding: 0 32px; display: flex; align-items: center; justify-content: center; gap: 36px; overflow: hidden; background: var(--green); font-size: 11px; font-weight: 700; text-transform: uppercase; white-space: nowrap; }
.signal-strip i { width: 4px; height: 4px; background: var(--ink); border-radius: 50%; }

.intro { padding: 120px 0 140px; }
.intro__copy { margin: 70px 0 100px; display: grid; grid-template-columns: minmax(0, 1.7fr) 1fr; gap: 9vw; align-items: end; }
.intro h2, .features h2, .trust h2, .pricing h2, .faq h2 { margin: 0; font-size: clamp(48px, 6vw, 88px); line-height: .98; font-weight: 400; letter-spacing: 0; }
.intro h2 em { color: var(--muted); font-style: normal; }
.intro__copy > p, .features__heading > p, .pricing__intro > p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.intro__modes { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.intro__modes article { min-height: 370px; padding: 34px; display: flex; flex-direction: column; border-right: 1px solid var(--line); }
.intro__modes article:nth-child(2) { border-right: 0; }
.intro__modes article > div { display: flex; justify-content: space-between; color: var(--muted); font-size: 10px; text-transform: uppercase; }
.intro__modes article h3 { max-width: 520px; margin: 70px 0 22px; font-size: clamp(30px, 3vw, 46px); font-weight: 400; line-height: 1.02; }
.intro__modes article p { max-width: 520px; margin: 0 0 40px; color: var(--muted); font-size: 13px; line-height: 1.65; }
.intro__modes article > strong { margin-top: auto; font-size: 10px; text-transform: uppercase; }
.intro__mode-foot { grid-column: 1 / -1; min-height: 72px; padding: 0 34px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; border-top: 1px solid var(--line); font-size: 11px; text-transform: uppercase; }
.intro__mode-foot b { font-size: 18px; font-weight: 500; }
.intro__mode-foot span:last-child { text-align: right; }

.app-story { min-height: 820px; display: grid; grid-template-columns: 1.08fr .92fr; background: var(--sky); }
.app-story__media { min-height: 820px; overflow: hidden; }
.app-story__media img { width: 100%; height: 100%; object-fit: cover; }
.app-story__panel { padding: 90px clamp(40px, 6vw, 100px); display: flex; flex-direction: column; justify-content: center; }
.app-story__panel h2 { margin: 0 0 48px; font-size: clamp(48px, 5vw, 76px); font-weight: 400; line-height: .97; }
.mode-switch { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid rgba(21,24,21,.25); }
.mode-switch button { min-height: 45px; padding: 0; border: 0; border-bottom: 3px solid transparent; color: rgba(21,24,21,.55); background: transparent; font-size: 12px; }
.mode-switch button[aria-selected="true"] { color: var(--ink); border-color: var(--ink); }
.insight { min-height: 270px; padding: 34px 0 28px; border-bottom: 1px solid rgba(21,24,21,.25); }
.insight > span { font-size: 10px; text-transform: uppercase; }
.insight h3 { margin: 28px 0 16px; max-width: 520px; font-size: 32px; font-weight: 400; line-height: 1.05; }
.insight > p { margin: 0; max-width: 600px; font-size: 14px; line-height: 1.65; }
.confidence { margin-top: 30px; display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center; font-size: 10px; text-transform: uppercase; }
.confidence i { height: 3px; background: rgba(21,24,21,.18); }
.confidence b { display: block; width: 62%; height: 100%; background: var(--ink); transition: width .35s var(--ease); }
.app-story__note { margin: 24px 0 0; max-width: 560px; color: rgba(21,24,21,.65); font-size: 11px; line-height: 1.55; }

.features { padding: 130px 0 150px; }
.features__heading { margin: 64px 0 100px; display: grid; grid-template-columns: 1.6fr .8fr; gap: 9vw; align-items: end; }
.feature-list { border-top: 1px solid var(--line); }
.feature-list article { min-height: 155px; padding: 28px 0; display: grid; grid-template-columns: 60px 1fr 1.1fr 150px; gap: 36px; align-items: start; border-bottom: 1px solid var(--line); }
.feature-list article > span { color: var(--muted); font-size: 11px; }
.feature-list h3 { margin: 0; max-width: 360px; font-size: 27px; font-weight: 400; line-height: 1.08; }
.feature-list p { margin: 0; max-width: 430px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.feature-list b { justify-self: end; font-size: 10px; text-transform: uppercase; }

.baseline { min-height: 860px; display: grid; grid-template-columns: 1fr 1fr; color: var(--white); background: #181b18; }
.baseline__visual { min-height: 860px; overflow: hidden; }
.baseline__visual img { width: 100%; height: 100%; object-fit: cover; }
.baseline__content { padding: 110px max(48px, 7vw); display: flex; flex-direction: column; justify-content: center; }
.baseline h2 { margin: 0 0 60px; font-size: clamp(48px, 5vw, 78px); font-weight: 400; line-height: .98; }
.baseline ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.2); }
.baseline li { padding: 24px 0; display: grid; grid-template-columns: 48px 1fr; gap: 16px; border-bottom: 1px solid rgba(255,255,255,.2); }
.baseline li > span { color: rgba(255,255,255,.45); font-size: 11px; }
.baseline strong { font-size: 16px; font-weight: 500; }
.baseline li p { margin: 8px 0 0; color: rgba(255,255,255,.58); font-size: 12px; line-height: 1.55; }

.trust { padding: 130px 0 150px; }
.trust__heading { margin: 64px 0 80px; }
.trust__grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.trust__grid article { min-height: 260px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust__grid article > span { color: var(--muted); font-size: 10px; }
.trust__grid h3 { margin: 70px 0 18px; font-size: 25px; font-weight: 400; line-height: 1.1; }
.trust__grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.trust__lead { position: relative; grid-column: span 3; min-height: 560px !important; padding: 0 !important; overflow: hidden; color: var(--white); }
.trust__lead img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; }
.trust__lead::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,9,7,.72), transparent 62%); }
.trust__lead div { position: absolute; z-index: 1; left: 48px; bottom: 46px; }
.trust__lead div span { font-size: 10px; text-transform: uppercase; }
.trust__lead div h3 { margin: 18px 0 0; max-width: 620px; font-size: clamp(36px, 4vw, 56px); }

.pricing { padding: 130px 0; display: grid; grid-template-columns: 1fr minmax(420px, .62fr); gap: 10vw; align-items: center; }
.pricing__intro p:last-child { max-width: 560px; margin: 34px 0 0; }
.price-block { padding: 34px; background: var(--coral); }
.price-block__top { padding-bottom: 24px; display: flex; justify-content: space-between; border-bottom: 1px solid rgba(21,24,21,.3); font-size: 10px; text-transform: uppercase; }
.price { padding: 44px 0 36px; display: flex; align-items: flex-start; }
.price sup { margin-top: 7px; font-size: 25px; }
.price strong { font-size: 86px; font-weight: 400; line-height: .8; }
.price > span { margin: 24px 0 0 12px; font-size: 11px; line-height: 1.4; }
.platform-status { margin: 0 0 28px; border-top: 1px solid rgba(21,24,21,.3); }
.platform-status div { padding: 13px 0; display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid rgba(21,24,21,.3); font-size: 10px; text-transform: uppercase; }
.platform-status strong { font-weight: 600; }
.price-block ul { margin: 0 0 32px; padding: 0; list-style: none; border-top: 1px solid rgba(21,24,21,.3); }
.price-block li { position: relative; padding: 14px 8px 14px 26px; border-bottom: 1px solid rgba(21,24,21,.3); font-size: 12px; }
.price-block li::before { content: "\2713"; position: absolute; left: 0; }
.store-note { margin: -10px 0 24px; display: inline-flex; gap: 12px; align-items: center; font-size: 11px; font-weight: 600; }
.store-note:hover span, .text-link:hover span { transform: translateX(3px); }
.store-note span, .text-link span { display: inline-block; transition: transform .2s var(--ease); }
.price-block > p { margin: 16px 0 0; font-size: 10px; line-height: 1.5; text-align: center; }

.faq { padding: 50px 0 150px; }
.faq__layout { margin-top: 70px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 10vw; }
.faq__list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { min-height: 82px; padding: 0 42px 0 0; display: flex; align-items: center; position: relative; list-style: none; font-size: 17px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; font-size: 24px; font-weight: 300; transition: transform .2s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { max-width: 650px; margin: -6px 0 28px; color: var(--muted); font-size: 13px; line-height: 1.7; }
.text-link { color: var(--ink); font-weight: 600; white-space: nowrap; }

.closing { position: relative; min-height: 620px; color: var(--white); overflow: hidden; }
.closing > img, .closing__shade { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.closing > img { transform: scaleX(-1); }
.closing__shade { background: linear-gradient(90deg, rgba(9,10,9,.08), rgba(9,10,9,.72)); }
.closing__content { position: relative; z-index: 1; width: var(--page); min-height: 620px; margin: auto; display: flex; flex-direction: column; align-items: flex-end; justify-content: center; text-align: right; }
.closing h2 { margin: 0 0 34px; font-size: clamp(52px, 6vw, 90px); font-weight: 400; line-height: .95; }

footer { padding: 78px max(32px, calc((100vw - 1320px) / 2)) 26px; color: var(--white); background: #151815; display: grid; grid-template-columns: 1fr auto; gap: 80px; }
.footer__brand a { display: inline-block; }
.footer__brand img { width: 190px; height: auto; aspect-ratio: 1896 / 593; object-fit: contain; filter: invert(1); }
.footer__brand p { max-width: 440px; margin: 30px 0 0; color: rgba(255,255,255,.55); font-size: 15px; line-height: 1.6; }
footer nav { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 70px; align-content: start; font-size: 12px; }
.footer__bottom { grid-column: 1 / -1; padding-top: 24px; display: flex; justify-content: space-between; gap: 24px; border-top: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.4); font-size: 10px; }
.mobile-buy { display: none; }

.setup-dialog { width: min(520px, calc(100vw - 32px)); padding: 38px; border: 0; color: var(--ink); background: var(--paper); box-shadow: 0 24px 80px rgba(0,0,0,.3); }
.setup-dialog::backdrop { background: rgba(11,13,11,.64); backdrop-filter: blur(4px); }
.setup-dialog h2 { margin: 0 0 20px; font-size: 36px; font-weight: 400; line-height: 1.04; }
.setup-dialog > p:not(.eyebrow) { color: var(--muted); font-size: 14px; line-height: 1.65; }
.dialog-platforms { margin: 28px 0; border-top: 1px solid var(--line); }
.dialog-platforms span { padding: 14px 0; display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); font-size: 11px; text-transform: uppercase; }
.dialog-platforms b { font-weight: 600; }
.setup-dialog .dialog-price { color: var(--ink); }
.dialog-close { position: absolute; top: 12px; right: 14px; width: 36px; height: 36px; border: 0; background: transparent; font-size: 26px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  :root { --page: calc(100vw - 40px); }
  .site-header { height: 68px; padding: 0 20px; grid-template-columns: 1fr auto; }
  .brand { width: 136px; }
  .desktop-nav, .site-header > .button { display: none; }
  .menu-button { width: 42px; height: 42px; padding: 0; display: grid; place-content: center; gap: 6px; justify-self: end; border: 0; color: currentColor; background: transparent; }
  .menu-button span:not(.sr-only) { width: 21px; height: 1px; background: currentColor; transition: transform .2s var(--ease); }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-nav { position: fixed; inset: 68px 0 auto; padding: 26px 20px 32px; display: grid; gap: 0; color: var(--ink); background: var(--paper); border-bottom: 1px solid var(--line); }
  .mobile-nav[hidden] { display: none; }
  .mobile-nav a:not(.button) { padding: 16px 0; border-bottom: 1px solid var(--line); }
  .mobile-nav .button { margin-top: 22px; }
  .hero { min-height: 760px; }
  .hero__content { padding-top: 100px; }
  .hero h1 { font-size: clamp(62px, 10vw, 90px); }
  .intro__copy, .features__heading { grid-template-columns: 1fr; gap: 36px; }
  .app-story, .baseline { grid-template-columns: 1fr; }
  .app-story__media, .baseline__visual { min-height: 560px; }
  .app-story__panel, .baseline__content { padding: 90px 7vw; }
  .feature-list article { grid-template-columns: 45px 1fr 1fr; }
  .feature-list b { display: none; }
  .trust__lead { grid-column: span 3; }
  .pricing { grid-template-columns: 1fr; gap: 70px; }
  .price-block { width: min(620px, 100%); }
}

@media (max-width: 640px) {
  :root { --page: calc(100vw - 32px); }
  .hero { min-height: 730px; height: 92svh; }
  .hero__image { object-position: 63% center; }
  .hero__veil { background: linear-gradient(90deg, rgba(10,12,10,.72), rgba(10,12,10,.12)); }
  .hero__content { padding-top: 88px; justify-content: flex-end; padding-bottom: 118px; }
  .hero h1 { font-size: 54px; line-height: .93; }
  .hero__copy { margin: 22px 0; max-width: 410px; font-size: 15px; }
  .hero__actions > span { display: none; }
  .hero__foot { left: 16px; right: 16px; bottom: 20px; }
  .hero__foot span:last-child { display: none; }
  .signal-strip { justify-content: flex-start; gap: 24px; overflow-x: auto; }
  .intro, .features, .trust { padding: 90px 0; }
  .intro__copy { margin: 45px 0 60px; }
  .intro h2, .features h2, .trust h2, .pricing h2, .faq h2 { font-size: 44px; }
  .intro__modes { grid-template-columns: 1fr; }
  .intro__modes article { min-height: 340px; padding: 26px 20px; border-right: 0; border-bottom: 1px solid var(--line); }
  .intro__modes article h3 { margin-top: 50px; font-size: 34px; }
  .intro__mode-foot { grid-column: auto; padding: 20px; grid-template-columns: 1fr auto; }
  .intro__mode-foot span:last-child { grid-column: 1 / -1; text-align: left; color: var(--muted); }
  .app-story__media { min-height: 360px; }
  .app-story__media img { object-position: 62% center; }
  .app-story__panel { padding: 72px 20px; }
  .app-story__panel h2, .baseline h2 { font-size: 44px; }
  .insight { min-height: 315px; }
  .features__heading { margin: 42px 0 65px; }
  .feature-list article { min-height: 0; padding: 28px 0; grid-template-columns: 34px 1fr; gap: 12px; }
  .feature-list p { grid-column: 2; }
  .baseline__visual { min-height: 400px; }
  .baseline__content { padding: 78px 20px; }
  .trust__heading { margin: 42px 0 54px; }
  .trust__grid { grid-template-columns: 1fr; }
  .trust__lead { grid-column: auto; min-height: 420px !important; }
  .trust__lead img { min-height: 420px; }
  .trust__lead div { left: 24px; right: 24px; bottom: 28px; }
  .trust__lead div h3 { font-size: 34px; }
  .trust__grid article { min-height: 220px; }
  .trust__grid h3 { margin-top: 48px; }
  .pricing { padding: 90px 0; gap: 50px; }
  .price-block { padding: 26px 20px; }
  .price strong { font-size: 72px; }
  .faq { padding: 30px 0 100px; }
  .faq__layout { margin-top: 46px; grid-template-columns: 1fr; gap: 52px; }
  .closing, .closing__content { min-height: 570px; }
  .closing > img { object-position: 66% center; }
  .closing__shade { background: linear-gradient(0deg, rgba(9,10,9,.75), rgba(9,10,9,.06)); }
  .closing__content { align-items: flex-start; justify-content: flex-end; padding-bottom: 70px; text-align: left; }
  .closing h2 { font-size: 50px; }
  footer { padding: 70px 20px 100px; grid-template-columns: 1fr; gap: 48px; }
  footer nav { max-width: 320px; }
  .footer__bottom { flex-direction: column; }
  .mobile-buy { position: fixed; z-index: 45; left: 12px; right: 12px; bottom: 12px; min-height: 64px; padding: 9px 9px 9px 16px; display: flex; align-items: center; justify-content: space-between; color: var(--white); background: rgba(21,24,21,.94); backdrop-filter: blur(15px); box-shadow: 0 12px 35px rgba(0,0,0,.24); transform: translateY(100px); transition: transform .35s var(--ease); }
  .mobile-buy.is-visible { transform: none; }
  .mobile-buy strong { font-size: 17px; font-weight: 500; }
  .mobile-buy span { margin-left: 4px; color: rgba(255,255,255,.55); font-size: 10px; }
  .mobile-buy .button { min-height: 46px; color: var(--ink); border-color: var(--white); background: var(--white); }
}

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