@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&display=swap');

:root {
  --bg: #080808;
  --surface: #151515;
  --surface-raised: #1a1a1a;
  --line: #2d2d2d;
  --text: #f2efeb;
  --muted: #a19b95;
  --quiet: #77716c;
  --accent: #765aa6;
  --accent-soft: #191322;
  --good: #d8e66d;
  --mono: 'DM Mono', 'SFMono-Regular', Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: var(--mono); text-transform: lowercase; -webkit-font-smoothing: antialiased; }
body::selection { background: var(--accent); color: var(--bg); }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.site-shell { min-width: 320px; overflow: hidden; }
.section-pad { padding-left: max(5vw, 22px); padding-right: max(5vw, 22px); }

.site-header { width: min(1180px, calc(100% - 34px)); height: 83px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 22px; border-bottom: 1px solid var(--line); }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 500; letter-spacing: -.05em; }
.brand-mark { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 3px; background: var(--surface); color: var(--accent); }
.brand-mark svg { width: 18px; height: 18px; }.brand-mark path { stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }.brand-mark circle { fill: currentColor; }
.main-nav { display: flex; gap: 24px; margin-left: auto; margin-right: 8px; color: var(--muted); font-size: 11px; }.main-nav a:hover, .text-link:hover, .back-top:hover, .footer-policy:hover { color: var(--accent); }
.button { display: inline-flex; min-height: 43px; align-items: center; justify-content: center; gap: 11px; padding: 0 17px; border: 1px solid transparent; border-radius: 2px; font-size: 11px; font-weight: 500; transition: background .2s ease, color .2s ease, border-color .2s ease; }.button span { font-size: 15px; }.button-small { min-height: 36px; padding: 0 14px; }.button-dark, .button-primary { background: var(--accent); color: var(--bg); }.button:hover { background: #8c70bf; }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--text); font-size: 11px; }.text-link:hover { color: var(--accent); }.text-link span { font-size: 14px; }

.hero { display: flex; min-height: 570px; align-items: center; justify-content: center; padding-top: 82px; padding-bottom: 92px; text-align: center; }.hero-copy { width: min(100%, 760px); }.eyebrow { display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--accent); font-size: 10px; letter-spacing: .08em; text-transform: lowercase; }.eyebrow-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
h1, h2, h3, p { margin-top: 0; } h1, h2, h3 { font-weight: 500; letter-spacing: -.06em; } h1 { margin: 22px 0; font-size: clamp(4rem, 10vw, 7.4rem); line-height: .95; } h2 { margin: 17px 0 19px; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1; } h3 { margin: 18px 0 13px; font-size: 17px; line-height: 1.2; }
.hero-lede { max-width: 630px; margin: 0 auto; color: var(--muted); font-size: 13px; line-height: 1.75; }.hero-actions { display: flex; align-items: center; justify-content: center; gap: 23px; margin-top: 31px; }.hero-notes { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 23px; margin-top: 32px; color: var(--quiet); font-size: 9px; text-transform: lowercase; }.hero-notes span + span::before { content: '·'; margin-right: 23px; color: var(--accent); }

.signal-strip { display: grid; grid-template-columns: repeat(3, 1fr); width: min(940px, calc(100% - 44px)); margin: 0 auto; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }.signal-strip > div { min-height: 70px; display: flex; align-items: center; gap: 12px; padding: 0 18px; border-right: 1px solid var(--line); }.signal-strip > div:last-child { border-right: 0; }.signal-strip strong, .feature-number, .step-num { color: var(--accent); font-size: 10px; font-weight: 400; }.signal-strip span { color: var(--muted); font-size: 10px; }

.plain-section { width: min(100%, 1020px); margin: 0 auto; padding-top: 108px; padding-bottom: 108px; }.section-intro { max-width: 670px; margin: 0 auto 46px; text-align: center; }.section-intro p, .simple-panel > p { color: var(--muted); font-size: 12px; line-height: 1.75; }.text-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }.text-card, .simple-panel { border: 1px solid var(--line); border-radius: 3px; background: var(--surface); }.text-card { min-height: 230px; padding: 22px; }.text-card p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.7; }.text-card:hover { border-color: #51504d; }
.steps { margin-top: 0; }.step-num { display: block; }.steps h3 { margin-top: 28px; }.steps kbd { margin: 0 2px; }

.simple-panel { max-width: 760px; margin: 0 auto; padding: clamp(24px, 5vw, 48px); }.simple-panel .eyebrow { justify-content: flex-start; }.simple-panel h2 { margin-top: 18px; }.simple-panel > p { max-width: 650px; }.settings-list { margin: 32px 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }.settings-list li { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 15px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 11px; }.settings-list strong { color: var(--text); font-weight: 400; text-align: right; }.setup-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 21px; margin-top: 28px; }.setup-note { display: block; margin-top: 22px; color: var(--quiet); font-size: 9px; }.setup-panel { background: var(--surface-raised); }

kbd { display: inline-block; padding: 2px 5px; border: 1px solid #4b4642; border-radius: 2px; background: #202020; color: var(--text); font: 10px var(--mono); }
.faq-list { max-width: 760px; margin: 0 auto; border-top: 1px solid var(--line); }.faq-list details { border-bottom: 1px solid var(--line); }.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; cursor: pointer; list-style: none; font-size: 14px; }.faq-list summary::-webkit-details-marker { display: none; }.faq-list summary::after { content: '+'; color: var(--accent); font-size: 19px; }.faq-list details[open] summary::after { content: '−'; }.faq-list p { max-width: 620px; margin: -2px 40px 23px 0; color: var(--muted); font-size: 11px; line-height: 1.7; }

.site-footer { padding: 35px max(5vw, 22px) 22px; border-top: 1px solid var(--line); background: #101010; }.footer-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 30px; border-bottom: 1px solid var(--line); }.back-top, .footer-policy { color: var(--accent); font-size: 10px; }.back-top span { margin-left: 8px; font-size: 14px; }.footer-bottom { display: flex; flex-wrap: wrap; gap: 14px 28px; padding-top: 18px; color: var(--quiet); font-size: 9px; }

.legal-page { background: var(--bg); }.legal-hero { padding-top: 76px; padding-bottom: 65px; border-top: 1px solid var(--line); }.legal-hero .eyebrow { justify-content: flex-start; }.legal-hero h1 { max-width: 760px; margin: 22px 0; }.legal-hero p { max-width: 620px; margin-bottom: 24px; color: var(--muted); font-size: 13px; line-height: 1.75; }.legal-meta { display: flex; flex-wrap: wrap; gap: 18px 27px; color: var(--quiet); font-size: 9px; text-transform: lowercase; }.legal-content { padding-top: 45px; padding-bottom: 110px; }.legal-notice { display: grid; grid-template-columns: 170px 1fr; gap: 28px; max-width: 930px; margin: 0 auto 56px; padding: 22px 24px; border: 1px solid #3b2f48; border-radius: 3px; background: var(--accent-soft); color: var(--muted); font-size: 11px; line-height: 1.7; }.legal-notice strong { color: var(--accent); font-size: 9px; font-weight: 400; letter-spacing: .08em; text-transform: lowercase; }.legal-article { max-width: 760px; margin: 0 auto; }.legal-article h2 { margin: 42px 0 13px; font-size: 19px; }.legal-article h2:first-child { margin-top: 0; }.legal-article p, .legal-article li { color: var(--muted); font-size: 11px; line-height: 1.8; }.legal-article p { margin-bottom: 13px; }.legal-article ul { margin: 0 0 15px; padding-left: 20px; }.legal-article li { margin: 7px 0; }.legal-article li::marker { color: var(--accent); }.legal-placeholder { padding: 14px 16px; border-left: 2px solid var(--accent); background: var(--accent-soft); color: #b29fc9 !important; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }.reveal { opacity: 0; transform: translateY(12px); transition: opacity .45s ease, transform .45s ease; }.reveal.revealed { opacity: 1; transform: translateY(0); }.reveal-delay-1 { transition-delay: .08s; }.reveal-delay-2 { transition-delay: .14s; }.reveal-delay-3 { transition-delay: .2s; }

@media (max-width: 780px) { .site-header { width: calc(100% - 28px); }.main-nav { display: none; }.hero { min-height: 510px; padding-top: 70px; padding-bottom: 72px; }.signal-strip { grid-template-columns: 1fr; }.signal-strip > div { min-height: 55px; border-right: 0; border-bottom: 1px solid var(--line); }.signal-strip > div:last-child { border-bottom: 0; }.plain-section { padding-top: 78px; padding-bottom: 78px; }.text-grid { grid-template-columns: 1fr; }.text-card { min-height: auto; }.footer-bottom { flex-direction: column; gap: 9px; }.legal-hero { padding-top: 58px; padding-bottom: 52px; }.legal-notice { grid-template-columns: 1fr; gap: 10px; margin-bottom: 44px; } }
@media (max-width: 520px) { h1 { font-size: clamp(3.3rem, 17vw, 5rem); }.hero-lede { font-size: 12px; }.hero-actions { flex-direction: column; gap: 18px; }.hero-notes { display: block; line-height: 2; }.hero-notes span + span::before { margin-right: 10px; }.settings-list li { align-items: flex-start; flex-direction: column; gap: 7px; }.settings-list strong { text-align: left; }.setup-actions { align-items: flex-start; flex-direction: column; gap: 18px; }.faq-list summary { font-size: 12px; }.faq-list p { font-size: 10px; } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .reveal { opacity: 1; transform: none; transition: none; } }
