:root {
  --ink: #2b2622;
  --ink-2: #403833;
  --paper: #f8f5ef;
  --paper-2: #efe8df;
  --white: #fffdfa;
  --coral: #e8664a;
  --coral-dark: #bd4c35;
  --mint: #dce8df;
  --muted: #736c65;
  --line: #d8d0c7;
  --shadow: 0 24px 80px rgba(43, 38, 34, .14);
  --display: 'Fraunces', Georgia, serif;
  --body: 'DM Sans', system-ui, sans-serif;
  --mono: 'DM Mono', monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font: 15px/1.6 var(--body); }
body::selection { background: var(--coral); color: var(--white); }
a { color: inherit; }
button, a, input, textarea, select { outline-color: var(--coral); }
a:focus-visible, button:focus-visible, summary:focus-visible { outline: 3px solid rgba(232, 102, 74, .4); outline-offset: 4px; }
.skip-link { position: fixed; z-index: 50; top: 12px; left: -999px; padding: 10px 14px; background: var(--coral); color: white; text-decoration: none; font-weight: 700; }
.skip-link:focus { left: 12px; }
.page-glow { position: absolute; top: 0; right: 3%; width: 38vw; height: 45vw; max-height: 680px; pointer-events: none; opacity: .18; background: radial-gradient(circle at center, var(--coral) 0, transparent 68%); filter: blur(30px); }

.site-header { position: relative; z-index: 4; display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 18px clamp(22px, 6vw, 92px); background: var(--ink); color: var(--white); }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--white); text-decoration: none; }
.brand img { width: 38px; height: 38px; border-radius: 11px; }
.brand span { display: grid; gap: 0; line-height: 1; }
.brand strong { font: 700 .92rem/1 var(--mono); letter-spacing: .17em; }
.brand small { margin-top: 6px; color: #b9aea5; font: 400 .48rem/1 var(--mono); letter-spacing: .14em; }
.site-nav { display: flex; align-items: center; gap: clamp(18px, 3vw, 40px); }
.site-nav a { color: #d3cbc4; text-decoration: none; font-size: .78rem; font-weight: 600; }
.site-nav a:hover { color: var(--white); }
.site-nav .nav-repo { padding: 11px 14px; border: 1px solid #716861; color: var(--white); }
.site-nav .nav-repo:hover { border-color: var(--coral); background: rgba(232, 102, 74, .13); }
.menu-toggle { display: none; border: 1px solid #716861; background: transparent; color: var(--white); padding: 9px 12px; cursor: pointer; }

.section-shell { width: min(1240px, calc(100% - 44px)); margin: 0 auto; }
.hero { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(390px, .86fr); gap: clamp(34px, 7vw, 110px); align-items: center; min-height: 700px; max-width: none; padding: 86px clamp(22px, 8vw, 120px) 104px; overflow: hidden; background: var(--ink); color: var(--white); }
.hero::after { position: absolute; inset: 0; pointer-events: none; opacity: .08; content: ''; background-image: linear-gradient(rgba(255,255,255,.35) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.35) 1px, transparent 1px); background-size: 40px 40px; mask-image: linear-gradient(90deg, black, transparent 70%); }
.hero-copy, .hero-stage { position: relative; z-index: 1; }
.hero-copy { max-width: 660px; margin-left: auto; }
.eyebrow { display: flex; align-items: center; gap: 9px; margin: 0 0 17px; color: var(--coral); font: 500 .67rem/1.2 var(--mono); letter-spacing: .13em; text-transform: uppercase; }
.eyebrow-mark { display: inline-block; width: 18px; height: 2px; background: var(--coral); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--display); font-weight: 600; letter-spacing: -.055em; }
h1 { margin-bottom: 28px; font-size: clamp(4rem, 8vw, 7.7rem); line-height: .9; }
h1 em, h2 em { color: var(--coral); font-style: normal; }
.hero-lede { max-width: 530px; margin-bottom: 32px; color: #cfc6be; font-size: 1.08rem; line-height: 1.65; }
.hero-actions, .release-actions { display: flex; flex-wrap: wrap; gap: 11px; align-items: center; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 46px; padding: 0 17px; border: 1px solid transparent; cursor: pointer; text-decoration: none; font-weight: 700; transition: transform .18s ease, background .18s ease, border-color .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--coral); color: var(--white); }
.button-primary:hover { background: var(--coral-dark); }
.button-ghost { border-color: #756a63; color: var(--white); }
.button-ghost:hover { border-color: var(--coral); background: rgba(232, 102, 74, .12); }
.button-light { border-color: var(--line); background: transparent; color: var(--ink); }
.button-light:hover { border-color: var(--coral); background: var(--paper-2); }
.button.disabled { pointer-events: none; opacity: .55; }
.hero-specs { display: flex; flex-wrap: wrap; gap: 18px 25px; margin-top: 54px; padding-top: 17px; border-top: 1px solid #534a45; color: #aba099; font: .68rem var(--mono); text-transform: uppercase; letter-spacing: .06em; }
.hero-specs b { margin-right: 6px; color: var(--coral); font-weight: 500; }

.hero-stage { min-height: 540px; display: grid; place-items: center; }
.stage-label { color: #82766e; font: .63rem var(--mono); letter-spacing: .13em; }
.stage-label-top { position: absolute; top: 0; right: 4%; }
.stage-rule { position: absolute; top: 25px; right: 12%; width: 1px; height: 415px; background: linear-gradient(#82766e, transparent); opacity: .55; }
.phone-frame { position: relative; width: min(292px, 70vw); padding: 9px; border: 1px solid #625850; border-radius: 35px; background: #171311; box-shadow: 28px 35px 0 rgba(0,0,0,.14), 0 30px 90px rgba(0,0,0,.3); transform: rotate(4deg); }
.phone-speaker { position: absolute; z-index: 2; top: 15px; left: 50%; width: 72px; height: 5px; border-radius: 10px; background: #403731; transform: translateX(-50%); }
.phone-screen { min-height: 510px; overflow: hidden; border-radius: 27px; background: var(--paper); color: var(--ink); }
.phone-topline, .reader-head, .reader-footer { display: flex; justify-content: space-between; align-items: center; }
.phone-topline { padding: 22px 19px 10px; color: #82776e; font: .48rem var(--mono); letter-spacing: .08em; }
.reader-head { padding: 11px 17px; border-bottom: 1px solid #ded4cb; font-size: .67rem; font-weight: 700; }
.reader-back, .reader-menu { color: var(--coral); font-size: 1rem; }
.reader-paper { min-height: 348px; margin: 20px 16px 14px; padding: 16px 16px 13px; border: 1px solid #ded3c9; background: var(--white); box-shadow: 8px 9px 0 #e6dcd3; }
.paper-meta, .paper-stamp { display: flex; justify-content: space-between; color: #998c82; font: .48rem var(--mono); letter-spacing: .09em; }
.paper-logo { margin-top: 26px; }
.paper-logo img { width: 42px; height: 42px; border-radius: 12px; }
.reader-paper h2 { margin: 16px 0 14px; font-size: 2rem; line-height: .96; }
.reader-paper h2 em { color: var(--coral); font-style: normal; }
.reader-paper p { color: #82776e; font: .61rem/1.55 var(--mono); }
.paper-lines { display: grid; gap: 7px; margin: 26px 0 21px; }
.paper-lines i { display: block; height: 3px; background: #e5ddd6; }
.paper-lines i:nth-child(2) { width: 75%; }.paper-lines i:nth-child(3) { width: 91%; }.paper-lines i:nth-child(4) { width: 68%; }.paper-lines i:nth-child(5) { width: 83%; }
.paper-stamp { padding-top: 10px; border-top: 1px solid #e4d9cf; }
.reader-chat { display: flex; align-items: center; gap: 8px; margin: 0 18px 11px; padding: 11px 12px; border: 1px solid var(--coral); color: var(--coral-dark); font-size: .64rem; font-weight: 700; }
.reader-chat span:last-child { margin-left: auto; }
.chat-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); }
.reader-footer { padding: 10px 19px 16px; color: #8e8278; font: .55rem var(--mono); }
.stage-note { position: absolute; display: grid; gap: 5px; width: 157px; padding: 12px 14px; border: 1px solid #665c55; background: rgba(43,38,34,.84); box-shadow: 12px 13px 0 rgba(0,0,0,.13); }
.stage-note span { color: var(--coral); font: .6rem var(--mono); }.stage-note strong { font-size: .76rem; }.stage-note small { color: #afa59d; font-size: .64rem; line-height: 1.4; }.stage-note-one { top: 17%; left: 0; transform: rotate(-4deg); }.stage-note-two { right: -2%; bottom: 7%; transform: rotate(3deg); }

.release-section, .feature-section, .trust-section, .install-section, .faq-section { padding-top: 112px; }
.section-marker { display: flex; align-items: center; gap: 14px; margin-bottom: 42px; color: var(--muted); font: .65rem var(--mono); letter-spacing: .14em; }
.section-marker span:first-child { color: var(--coral); }.section-marker span:last-child { display: flex; align-items: center; gap: 14px; }.section-marker span:last-child::before { display: block; width: 42px; height: 1px; background: var(--line); content: ''; }
.release-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(30px, 7vw, 110px); align-items: center; }
.release-intro { max-width: 380px; }.release-intro h2, .section-heading h2, .trust-copy h2, .install-layout h2, .faq-layout h2 { margin-bottom: 20px; font-size: clamp(3.2rem, 5.7vw, 5.4rem); line-height: .92; }
.release-intro > p:not(.eyebrow) { margin-bottom: 23px; color: var(--muted); }.text-link { color: var(--coral-dark); font-weight: 700; text-decoration: none; }.text-link:hover { text-decoration: underline; }.text-link span { margin-left: 5px; }
.release-card { overflow: hidden; border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow); }
.release-card-head { display: flex; align-items: center; gap: 9px; padding: 15px 19px; border-bottom: 1px solid var(--line); color: var(--muted); font: .62rem var(--mono); letter-spacing: .12em; }.release-source { margin-left: auto; color: var(--coral-dark); letter-spacing: .02em; text-transform: none; }.release-pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 5px rgba(232,102,74,.12); }
.release-card-body { padding: 29px; }.release-kicker { margin-bottom: 8px; color: var(--coral-dark); font: .63rem var(--mono); letter-spacing: .12em; text-transform: uppercase; }.release-card h3 { margin: 0 0 9px; font-size: clamp(2.3rem, 4.2vw, 4.15rem); line-height: .95; }.release-copy { max-width: 560px; margin-bottom: 25px; color: var(--muted); }.release-facts { display: grid; grid-template-columns: repeat(3, 1fr); margin-bottom: 27px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }.release-facts div { padding: 15px 12px 16px 0; }.release-facts div + div { padding-left: 12px; border-left: 1px solid var(--line); }.release-facts span { display: block; margin-bottom: 5px; color: var(--muted); font: .57rem var(--mono); letter-spacing: .1em; }.release-facts strong { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: .83rem; }.release-error { margin: 16px 0 0; color: var(--coral-dark); font-size: .8rem; }.release-foot { display: flex; flex-wrap: wrap; gap: 10px 22px; padding: 13px 19px; background: var(--ink); color: #b7aca4; font: .59rem var(--mono); letter-spacing: .04em; text-transform: uppercase; }

.section-heading { display: grid; grid-template-columns: .85fr 1fr .7fr; gap: 28px; align-items: end; margin-bottom: 38px; }.section-heading .eyebrow { align-self: start; }.section-heading h2 { margin: 0; }.section-heading > p:last-child { margin: 0 0 4px; color: var(--muted); font-size: .92rem; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }.feature-card { min-height: 350px; display: flex; flex-direction: column; padding: 22px; border: 1px solid var(--line); background: var(--white); }.feature-card:nth-child(2) { background: var(--paper-2); }.feature-card:nth-child(3) { background: var(--ink); color: var(--white); }.feature-card:nth-child(4) { background: var(--mint); }.feature-top { display: flex; justify-content: space-between; color: var(--muted); font: .64rem var(--mono); }.feature-chat .feature-top { color: #b9aea7; }.feature-number { color: var(--coral-dark); }.feature-arrow { font-size: 1rem; }.feature-icon { position: relative; height: 92px; margin: 24px 0 19px; }.icon-page { width: 66px; height: 78px; margin-left: 5px; padding: 13px 11px; border: 1px solid var(--coral); background: var(--paper); box-shadow: 8px 8px 0 var(--coral); }.icon-page span { display: block; width: 20px; height: 20px; margin-bottom: 12px; border-radius: 5px; background: var(--coral); }.icon-page i { display: block; width: 38px; height: 3px; margin: 6px 0; background: #d5c9c0; }.icon-page i:nth-of-type(2) { width: 28px; }.icon-page i:nth-of-type(3) { width: 34px; }.icon-stack i { position: absolute; width: 58px; height: 73px; border: 1px solid var(--coral-dark); background: rgba(255,255,255,.54); transform: rotate(-9deg); }.icon-stack i:nth-child(1) { left: 17px; top: 4px; }.icon-stack i:nth-child(2) { left: 10px; top: 10px; transform: rotate(0); }.icon-stack i:nth-child(3) { left: 3px; top: 16px; transform: rotate(9deg); background: transparent; }.icon-chat { display: grid; place-items: center; width: 70px; height: 62px; border: 1px solid var(--coral); border-radius: 18px 18px 18px 3px; color: var(--coral); font: 600 2rem var(--display); }.icon-chat::after { position: absolute; bottom: 14px; left: 1px; width: 15px; height: 15px; border-left: 1px solid var(--coral); border-bottom: 1px solid var(--coral); background: var(--ink); transform: skewY(-35deg); content: ''; }.icon-scan { width: 75px; height: 62px; border: 1px solid var(--ink); }.icon-scan::before, .icon-scan::after, .icon-scan span::before, .icon-scan span::after { position: absolute; width: 15px; height: 15px; border-color: var(--coral-dark); content: ''; }.icon-scan::before { top: -1px; left: -1px; border-top: 3px solid; border-left: 3px solid; }.icon-scan::after { top: -1px; right: -1px; border-top: 3px solid; border-right: 3px solid; }.icon-scan span::before { bottom: -1px; left: -1px; border-bottom: 3px solid; border-left: 3px solid; }.icon-scan span::after { right: -1px; bottom: -1px; border-right: 3px solid; border-bottom: 3px solid; }.feature-card h3 { margin: 0 0 9px; font-size: 1.7rem; line-height: .98; }.feature-card p { margin-bottom: 20px; color: var(--muted); font-size: .85rem; line-height: 1.55; }.feature-chat p { color: #c7beb8; }.feature-tag { margin-top: auto; color: var(--coral-dark); font: .57rem var(--mono); letter-spacing: .07em; text-transform: uppercase; }.feature-chat .feature-tag { color: #f38a73; }

.trust-card { display: grid; grid-template-columns: 160px 1fr; gap: clamp(26px, 6vw, 90px); align-items: center; padding: clamp(32px, 6vw, 75px); background: var(--ink); color: var(--white); }.trust-mark { display: grid; place-items: center; align-self: stretch; min-height: 160px; border: 1px solid #6b5f58; background: #362f2a; }.trust-mark img { width: 94px; height: 94px; border-radius: 25px; box-shadow: 10px 10px 0 rgba(232,102,74,.3); }.trust-copy { max-width: 700px; }.trust-copy h2 { margin-bottom: 23px; }.trust-copy > p:not(.eyebrow) { max-width: 630px; color: #c5bbb4; font-size: 1rem; }.trust-points { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 31px; }.trust-points span { padding: 10px 12px; border: 1px solid #5d534d; color: #bfb4ac; font-size: .72rem; }.trust-points b { margin-right: 5px; color: var(--coral); font: .76rem var(--mono); }
.install-layout { display: grid; grid-template-columns: .95fr 1fr; gap: 80px; align-items: end; }.install-steps { border-top: 1px solid var(--line); }.install-steps > div { display: grid; grid-template-columns: 45px 1fr; gap: 16px; align-items: start; padding: 17px 0; border-bottom: 1px solid var(--line); }.install-steps span { color: var(--coral-dark); font: .67rem var(--mono); }.install-steps p { margin: 0; max-width: 390px; color: var(--muted); }.warning-card { display: flex; gap: 17px; align-items: flex-start; margin-top: 42px; padding: 18px 20px; border-left: 3px solid var(--coral); background: var(--paper-2); }.warning-symbol { display: grid; flex: 0 0 28px; place-items: center; width: 28px; height: 28px; background: var(--coral); color: var(--white); font-weight: 700; }.warning-card strong { display: block; margin-bottom: 3px; }.warning-card p { margin: 0; color: var(--muted); font-size: .82rem; }.warning-card a { color: var(--coral-dark); font-weight: 700; }
.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(30px, 8vw, 120px); }.faq-list { border-top: 1px solid var(--line); }.faq-list details { padding: 19px 0; border-bottom: 1px solid var(--line); }.faq-list summary { display: flex; align-items: center; justify-content: space-between; cursor: pointer; list-style: none; font-weight: 700; }.faq-list summary::-webkit-details-marker { display: none; }.faq-list summary::after { color: var(--coral); content: '+'; font: 1.3rem var(--mono); }.faq-list details[open] summary::after { content: '-'; }.faq-list details p { max-width: 620px; margin: 12px 32px 0 0; color: var(--muted); font-size: .85rem; }.faq-list a { color: var(--coral-dark); font-weight: 700; }
.site-footer { display: grid; grid-template-columns: 1fr auto auto; gap: 35px; align-items: end; margin-top: 128px; padding: 35px clamp(22px, 8vw, 120px) 45px; background: var(--ink); color: #c5bbb4; }.footer-brand p { margin: 13px 0 0 49px; color: #8e8179; font: .7rem var(--mono); }.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }.footer-links a { color: #c5bbb4; font-size: .72rem; text-decoration: none; }.footer-links a:hover { color: var(--coral); }.site-footer > small { color: #8e8179; font-size: .68rem; }

@media (max-width: 1050px) { .hero { grid-template-columns: 1fr .8fr; padding-left: clamp(22px, 5vw, 60px); padding-right: clamp(22px, 5vw, 60px); }.hero-copy { margin-left: 0; }.stage-note-one { left: -15px; }.stage-note-two { right: -15px; }.feature-grid { grid-template-columns: repeat(2, 1fr); }.section-heading { grid-template-columns: .7fr 1fr; }.section-heading > p:last-child { grid-column: 2; }.site-footer { grid-template-columns: 1fr 1fr; }.site-footer > small { grid-column: 1 / -1; } }
@media (max-width: 720px) { .site-header { padding: 14px 20px; }.menu-toggle { display: block; }.site-nav { position: absolute; top: 70px; right: 20px; left: 20px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 9px; border: 1px solid #655b54; background: var(--ink); box-shadow: 0 18px 35px rgba(0,0,0,.2); }.site-nav.open { display: flex; }.site-nav a { padding: 12px; }.site-nav .nav-repo { text-align: center; }.hero { display: block; min-height: 0; padding-top: 72px; }.hero-copy { max-width: 600px; }.hero-stage { min-height: 580px; margin-top: 42px; }.stage-rule { right: 9%; height: 460px; }.phone-frame { transform: rotate(3deg) scale(.92); }.stage-note-one { left: 2%; top: 17%; }.stage-note-two { right: 0; bottom: 3%; }.release-section, .feature-section, .trust-section, .install-section, .faq-section { padding-top: 78px; }.release-layout, .install-layout, .faq-layout { grid-template-columns: 1fr; gap: 34px; }.section-heading { display: block; }.section-heading > p:last-child { margin-top: 18px; }.feature-grid { grid-template-columns: 1fr 1fr; }.feature-card { min-height: 330px; padding: 17px; }.trust-card { grid-template-columns: 1fr; }.trust-mark { min-height: 125px; }.trust-mark img { width: 70px; height: 70px; border-radius: 19px; }.site-footer { grid-template-columns: 1fr; margin-top: 85px; }.site-footer > small { grid-column: auto; }.footer-links { gap: 12px 18px; } }
@media (max-width: 480px) { h1 { font-size: clamp(3.4rem, 16vw, 5rem); }.hero-lede { font-size: .97rem; }.hero-actions .button { width: 100%; }.hero-specs { display: grid; gap: 10px; }.hero-stage { min-height: 545px; }.phone-frame { transform: rotate(2deg) scale(.8); }.stage-note { width: 137px; padding: 9px 10px; }.stage-note strong { font-size: .68rem; }.stage-note small { font-size: .57rem; }.stage-note-one { left: -10px; top: 15%; }.stage-note-two { right: -5px; bottom: 0; }.section-shell { width: min(100% - 32px, 1240px); }.release-card-body { padding: 20px 16px; }.release-card-head { align-items: flex-start; flex-wrap: wrap; }.release-source { width: 100%; margin-left: 16px; }.release-facts { grid-template-columns: 1fr; }.release-facts div, .release-facts div + div { padding: 11px 0; border-left: 0; }.release-facts div + div { border-top: 1px solid var(--line); }.release-actions .button { width: 100%; }.feature-grid { grid-template-columns: 1fr; }.feature-card { min-height: 290px; }.trust-points { display: grid; }.warning-card { padding: 14px; }.footer-brand p { margin-left: 0; } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; }.button { transition: none; }.button:hover { transform: none; } }
