:root {
  color-scheme: light;
  --paper: #f3f0ea;
  --surface: #fffdf9;
  --ink: #101010;
  --muted: #68625b;
  --line: rgba(16, 16, 16, .13);
  --line-strong: rgba(16, 16, 16, .24);
  --coral: #dc756c;
  --coral-soft: #f5c3bd;
  --lavender: #c7bce9;
  --mint: #b8dbc8;
  --butter: #ead78f;
  --sky: #b9d5df;
  --shadow: 0 18px 48px rgba(42, 35, 27, .08);
  --radius: 16px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; color: var(--ink); background: var(--paper); font-size: 16px; line-height: 1.6; }
img { max-width: 100%; }
a { color: inherit; text-underline-offset: .18em; }
a:hover { text-decoration-thickness: 2px; }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 20; top: 10px; left: 10px; padding: 9px 13px; border-radius: 10px; color: #fff; background: var(--ink); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: relative; z-index: 10; border-bottom: 1px solid var(--line); background: rgba(243, 240, 234, .96); }
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.wordmark { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-size: 19px; font-weight: 790; letter-spacing: -.03em; text-decoration: none; }
.logo-mark { display: inline-grid; width: 34px; height: 34px; place-items: center; border: 1px solid var(--ink); border-radius: 11px; color: var(--paper); background: var(--ink); font-size: 17px; line-height: 1; }
.site-nav { display: flex; align-items: center; justify-content: flex-end; gap: 6px; }
.site-nav a { padding: 8px 12px; border-radius: 999px; color: #4e4943; font-size: 14px; font-weight: 650; text-decoration: none; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--ink); background: var(--surface); box-shadow: 0 5px 16px rgba(42, 35, 27, .06); }

.hero { padding: clamp(72px, 10vw, 132px) 0 82px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr); align-items: center; gap: clamp(40px, 8vw, 104px); }
.eyebrow, .chip { display: inline-flex; align-items: center; width: fit-content; min-height: 30px; padding: 5px 11px; border: 1px solid var(--line); border-radius: 999px; color: #4d4841; background: var(--surface); font-size: 12px; font-weight: 760; letter-spacing: .07em; line-height: 1.2; text-transform: uppercase; }
.eyebrow::before { width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: var(--coral); content: ""; }
h1, h2, h3 { margin-top: 0; line-height: 1.08; letter-spacing: -.045em; }
h1 { max-width: 850px; margin-bottom: 22px; font-size: clamp(46px, 7.2vw, 88px); }
h2 { margin-bottom: 16px; font-size: clamp(32px, 4.6vw, 56px); }
h3 { margin-bottom: 9px; font-size: 21px; letter-spacing: -.025em; }
.hero-copy { max-width: 700px; margin: 0 0 30px; color: var(--muted); font-size: clamp(18px, 2.1vw, 22px); }
.button-row { display: flex; flex-wrap: wrap; gap: 10px; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 11px 19px; border: 1px solid var(--line-strong); border-radius: 13px; color: var(--ink); background: var(--surface); font-weight: 760; line-height: 1.25; text-decoration: none; }
.button:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(42, 35, 27, .1); }
.button-primary { border-color: var(--ink); color: #fff; background: var(--ink); }
.button-small { min-height: 42px; padding: 9px 15px; }
.fine-print { margin: 16px 0 0; color: var(--muted); font-size: 13px; }

.hero-art { position: relative; min-height: 440px; }
.hero-card { position: absolute; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); box-shadow: var(--shadow); }
.hero-card-one { inset: 10px 12% 84px 0; padding: 22px; transform: rotate(-2deg); }
.hero-card-two { right: 0; bottom: 0; width: 58%; padding: 18px; transform: rotate(3deg); }
.mini-toolbar { display: flex; gap: 6px; margin-bottom: 16px; }
.mini-toolbar i { width: 9px; height: 9px; border-radius: 50%; background: var(--coral-soft); }
.mini-toolbar i:nth-child(2) { background: var(--butter); }
.mini-toolbar i:nth-child(3) { background: var(--mint); }
.asset-mini-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.asset-mini-grid span { aspect-ratio: 1.18; border: 1px solid var(--line); border-radius: 12px; background: linear-gradient(145deg, var(--lavender), #eee9fb); }
.asset-mini-grid span:nth-child(2) { background: linear-gradient(145deg, var(--mint), #e2f2e9); }
.asset-mini-grid span:nth-child(3) { background: linear-gradient(145deg, var(--butter), #f7efcf); }
.asset-mini-grid span:nth-child(4) { background: linear-gradient(145deg, var(--sky), #e1eff3); }
.send-line { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 13px; font-weight: 700; }
.send-line:last-child { border-bottom: 0; }
.send-icon { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 9px; background: var(--coral-soft); }

.section { padding: 94px 0; }
.section-head { display: grid; grid-template-columns: 1fr minmax(280px, .72fr); align-items: end; gap: 40px; margin-bottom: 42px; }
.section-head p, .feature-copy p, .legal-copy p, .legal-copy li, .download-card p, .price-card p, .contact-card p { color: var(--muted); }
.section-head p { margin: 0 0 5px; font-size: 18px; }
.feature-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.feature-card { grid-column: span 2; min-height: 260px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: 0 12px 34px rgba(42, 35, 27, .045); }
.feature-card.wide { grid-column: span 3; }
.feature-card p { margin: 0; color: var(--muted); }
.feature-icon { display: grid; width: 46px; height: 46px; margin-bottom: 42px; place-items: center; border: 1px solid var(--line); border-radius: 13px; background: var(--lavender); font-size: 21px; }
.feature-card:nth-child(2) .feature-icon { background: var(--coral-soft); }
.feature-card:nth-child(3) .feature-icon { background: var(--butter); }
.feature-card:nth-child(4) .feature-icon { background: var(--mint); }
.feature-card:nth-child(5) .feature-icon { background: var(--sky); }

.screens-section { overflow: hidden; padding: 94px 0; background: var(--ink); color: #f7f3ed; }
.screens-section .section-head p { color: #bdb7ae; }
.shot-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.shot-frame { margin: 0; }
.shot-media { position: relative; overflow: hidden; aspect-ratio: 16 / 10; border: 1px solid rgba(255,255,255,.16); border-radius: 16px; background: linear-gradient(145deg, #292724, #1b1a19); }
.shot-media::after { position: absolute; inset: 0; display: grid; place-items: center; color: #8f8981; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; content: "Product screenshot"; pointer-events: none; }
.shot-media img { position: relative; z-index: 1; display: block; width: 100%; height: 100%; object-fit: cover; background: transparent; }
.shot-frame figcaption { padding: 12px 3px 4px; color: #d5cfc7; font-size: 14px; }

.trial-band { padding: 28px 0; color: var(--ink); background: var(--coral-soft); }
.trial-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.trial-inner h2 { margin: 0 0 7px; font-size: clamp(25px, 3vw, 38px); }
.trial-inner p { margin: 0; color: #57443f; }
.trial-number { flex: 0 0 auto; display: grid; width: 98px; height: 98px; place-items: center; border: 1px solid rgba(16,16,16,.2); border-radius: 50%; background: rgba(255,255,255,.3); font-size: 43px; font-weight: 800; }

.requirements-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; }
.spec-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line-strong); }
.spec-list li { display: grid; grid-template-columns: 130px 1fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.spec-list strong { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; }
.spec-list span { color: var(--muted); }

.page-hero { padding: 80px 0 54px; }
.page-hero h1 { max-width: 920px; margin-bottom: 18px; font-size: clamp(44px, 7vw, 76px); }
.page-hero p { max-width: 720px; margin: 0; color: var(--muted); font-size: 19px; }
.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; padding-bottom: 100px; }
.price-card { display: flex; min-height: 590px; flex-direction: column; padding: clamp(26px, 4vw, 42px); border: 1px solid var(--line); border-radius: 18px; background: var(--surface); box-shadow: var(--shadow); }
.price-card-featured { color: #f7f3ed; background: var(--ink); }
.price-card-featured p, .price-card-featured .price-list { color: #c9c3bb; }
.price-card-featured .chip { border-color: rgba(255,255,255,.2); color: #f7f3ed; background: rgba(255,255,255,.07); }
.price-card h2 { margin: 20px 0 4px; font-size: 34px; }
.price { margin: 18px 0 22px; color: var(--ink); font-size: clamp(32px, 5vw, 48px); font-weight: 820; letter-spacing: -.045em; }
.price-card-featured .price { color: #fff; }
.price small { font-size: 15px; font-weight: 650; letter-spacing: 0; }
.price-list { display: grid; gap: 12px; margin: 24px 0 34px; padding: 0; color: var(--muted); list-style: none; }
.price-list li { position: relative; padding-left: 24px; }
.price-list li::before { position: absolute; left: 0; color: var(--coral); font-weight: 900; content: "✓"; }
.price-card .button { width: 100%; margin-top: auto; }
.price-card-featured .button { border-color: #fff; color: var(--ink); background: #fff; }
.merchant-note { grid-column: 1 / -1; margin: 2px 0 0; padding: 18px 22px; border: 1px solid var(--line); border-radius: 13px; color: var(--muted); background: rgba(255,255,255,.45); text-align: center; }

.narrow { width: min(820px, calc(100% - 48px)); }
.legal-copy { margin-bottom: 100px; padding: clamp(26px, 5vw, 52px); border: 1px solid var(--line); border-radius: 18px; background: var(--surface); box-shadow: var(--shadow); }
.legal-copy h2 { margin: 42px 0 10px; font-size: 25px; letter-spacing: -.025em; }
.legal-copy h2:first-child { margin-top: 0; }
.legal-copy ul, .legal-copy ol { padding-left: 22px; }
.draft-badge { display: inline-flex; margin-bottom: 24px; padding: 6px 10px; border-radius: 999px; color: #493c16; background: var(--butter); font-size: 12px; font-weight: 760; text-transform: uppercase; letter-spacing: .06em; }

.download-layout, .contact-layout { display: grid; grid-template-columns: 1.1fr .9fr; align-items: start; gap: 18px; padding-bottom: 100px; }
.download-card, .contact-card { padding: clamp(26px, 4vw, 42px); border: 1px solid var(--line); border-radius: 18px; background: var(--surface); box-shadow: var(--shadow); }
.download-card h2, .contact-card h2 { font-size: 31px; }
.download-card .button { margin: 14px 0 10px; }
.meta-list { display: grid; gap: 0; margin: 24px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.meta-list li { padding: 14px 0; border-bottom: 1px solid var(--line); }
.meta-list strong { display: block; margin-bottom: 3px; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
.contact-email { display: inline-block; overflow-wrap: anywhere; margin: 9px 0 18px; font-size: clamp(23px, 4vw, 35px); font-weight: 800; letter-spacing: -.03em; }

.purchase-state { min-height: calc(100vh - 310px); display: grid; place-items: center; padding: 72px 0 100px; }
.purchase-card { width: min(680px, 100%); padding: clamp(30px, 6vw, 58px); border: 1px solid var(--line); border-radius: 18px; background: var(--surface); box-shadow: var(--shadow); text-align: center; }
.purchase-icon { display: grid; width: 58px; height: 58px; margin: 0 auto 22px; place-items: center; border: 1px solid var(--line); border-radius: 16px; background: var(--coral-soft); font-size: 26px; font-weight: 800; }
.purchase-card h1 { margin-bottom: 14px; font-size: clamp(34px, 6vw, 52px); }
.purchase-card p { max-width: 530px; margin: 0 auto; color: var(--muted); font-size: 18px; }
.purchase-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 26px; font-size: 14px; font-weight: 700; }

.site-footer { padding: 52px 0; border-top: 1px solid var(--line); background: #ebe6df; }
.footer-grid { display: grid; grid-template-columns: 1fr auto 1.25fr; align-items: start; gap: 40px; }
.footer-wordmark { margin-bottom: 12px; }
.footer-note, .footer-identity p { margin: 4px 0; color: var(--muted); font-size: 13px; }
.footer-links { display: grid; gap: 8px; font-size: 14px; }
.footer-identity { text-align: right; overflow-wrap: anywhere; }

@media (max-width: 840px) {
  .hero-grid, .section-head, .requirements-grid, .download-layout, .contact-layout { grid-template-columns: 1fr; }
  .hero-art { min-height: 390px; max-width: 520px; }
  .feature-card, .feature-card.wide { grid-column: span 3; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-identity { grid-column: 1 / -1; text-align: left; }
}

@media (max-width: 640px) {
  .shell, .narrow { width: min(100% - 28px, 1180px); }
  .header-inner { min-height: auto; padding: 14px 0 10px; align-items: flex-start; flex-direction: column; gap: 8px; }
  .site-nav { width: 100%; justify-content: space-between; gap: 0; }
  .site-nav a { padding: 7px 6px; font-size: 13px; }
  .hero { padding: 58px 0 62px; }
  .hero-art { min-height: 330px; }
  .hero-card-one { inset: 0 14% 64px 0; }
  .hero-card-two { width: 62%; }
  .section { padding: 68px 0; }
  .feature-grid, .shot-grid, .pricing-grid { grid-template-columns: 1fr; }
  .feature-card, .feature-card.wide { grid-column: auto; min-height: 230px; }
  .feature-icon { margin-bottom: 28px; }
  .screens-section { padding: 68px 0; }
  .trial-inner { align-items: flex-start; flex-direction: column-reverse; }
  .trial-number { width: 72px; height: 72px; font-size: 32px; }
  .spec-list li { grid-template-columns: 1fr; gap: 4px; }
  .page-hero { padding: 58px 0 42px; }
  .pricing-grid, .download-layout, .contact-layout { padding-bottom: 68px; }
  .price-card { min-height: 0; }
  .merchant-note { grid-column: auto; }
  .legal-copy { margin-bottom: 68px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-identity { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button:hover { transform: none; }
}

/* Shared 2026-09-08 marketing identity for the existing policy/account pages. */
@font-face{font-family:'Bricolage Grotesque';src:url('fonts/bricolage-grotesque.woff2') format('woff2');font-weight:200 800;font-display:swap}
:root{color-scheme:dark;--paper:#0D0B08;--surface:#18150F;--ink:#F0EBDF;--muted:#B0A797;--line:rgba(240,232,215,.13);--line-strong:rgba(240,232,215,.25);--coral:#D2AF74;--coral-soft:#322A1B;--butter:#44371E;--shadow:0 18px 48px rgba(0,0,0,.12);font-family:'Bricolage Grotesque',system-ui,sans-serif}
:root[data-theme=light]{color-scheme:light;--paper:#F1EDE4;--surface:#FAF7F0;--ink:#221D13;--muted:#6E6455;--line:rgba(38,33,23,.13);--line-strong:rgba(38,33,23,.25);--coral:#866332;--coral-soft:#E6D8BE;--butter:#EADCB4;--shadow:0 18px 48px rgba(42,35,27,.06)}
.site-header,.site-footer{background:var(--paper)}
.site-nav a,.eyebrow,.chip,.fine-print,.trial-inner p{color:var(--muted)}
.wordmark img{width:108px;height:auto;object-fit:contain}
.policy-logo-light{display:none}
:root[data-theme=light] .policy-logo-light{display:block}
:root[data-theme=light] .policy-logo-dark{display:none}
.header-inner{gap:18px}
.site-nav{margin-left:auto;flex-wrap:wrap}
.policy-theme{border:1px solid var(--line-strong);border-radius:10px;background:var(--surface);color:var(--ink);font:inherit;font-size:13px;padding:9px 12px;cursor:pointer}
.page-hero h1{font-weight:650;letter-spacing:-.045em}
.legal-copy{line-height:1.75}
.narrow{margin-inline:auto}
.legal-copy p{margin:16px 0}
.legal-copy h2{color:var(--ink);scroll-margin-top:24px}
.legal-copy a,.contact-card a,.purchase-links a{color:var(--ink)}
.button-primary{color:var(--paper);background:var(--ink)}
.purchase-state{padding-inline:20px}
.purchase-icon{color:var(--ink);background:var(--coral-soft)}
.draft-badge{color:var(--ink)}
.footer-links a{width:fit-content}
.policy-status{margin-top:28px;padding:18px 22px;border:1px solid var(--line);border-left:3px solid var(--coral);border-radius:12px;background:var(--surface);color:var(--muted);font-size:14px}
@media(max-width:760px){.header-inner{display:grid;grid-template-columns:1fr auto;padding:18px 0}.site-nav{grid-column:1/-1;grid-row:2;justify-content:flex-start;margin:0;gap:4px}.policy-theme{grid-column:2;grid-row:1}.site-nav a{padding:8px}.page-hero{padding-top:48px}.legal-copy{padding:22px}.legal-copy h2{font-size:23px}}
