:root {
  color-scheme: dark;
  --ink: #e9f1ea;
  --muted: #9eafa4;
  --line: rgba(219, 239, 224, .13);
  --panel: rgba(24, 40, 34, .72);
  --panel-strong: rgba(30, 50, 41, .9);
  --lime: #c9f27e;
  --lime-ink: #142018;
  --orange: #ffab70;
  --bg: #0d1714;
}

* { box-sizing: border-box; }
body { margin: 0; min-width: 320px; color: var(--ink); background: var(--bg); font-family: Manrope, system-ui, sans-serif; }
body::before { position: fixed; inset: 0; z-index: -2; background: radial-gradient(circle at 76% 7%, rgba(201,242,126,.14), transparent 27%), radial-gradient(circle at 0% 90%, rgba(255,171,112,.08), transparent 32%), linear-gradient(135deg, #12211c 0%, #0d1714 53%, #0b1210 100%); content: ''; }
body::after { position: fixed; inset: 0; z-index: -1; opacity: .035; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E"); pointer-events: none; content: ''; }
.shell { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.topbar { display: flex; min-height: 88px; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); text-decoration: none; }
.brand-mark { display: grid; width: 36px; height: 36px; place-items: center; color: var(--lime-ink); background: var(--lime); border-radius: 10px 3px 10px 3px; font-size: 19px; font-weight: 800; }
.brand strong, .brand small { display: block; }
.brand strong { font-size: 15px; letter-spacing: .03em; }
.brand small { margin-top: 2px; color: var(--muted); font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.topbar-actions { display: flex; align-items: center; gap: 16px; color: var(--muted); font-size: 13px; }
.hero { display: flex; min-height: 310px; align-items: end; justify-content: space-between; gap: 30px; padding: 74px 0 54px; }
.eyebrow { margin: 0 0 15px; color: var(--lime); font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: .16em; }
h1, h2, p { margin-top: 0; }
h1 { max-width: 700px; margin-bottom: 18px; font-size: clamp(37px, 6vw, 78px); line-height: .98; letter-spacing: -.055em; }
h1 em { color: var(--lime); font-style: normal; }
.hero-copy { max-width: 590px; margin-bottom: 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.hero-note { display: inline-flex; align-items: center; gap: 8px; align-self: start; margin-top: 15px; padding: 10px 13px; border: 1px solid var(--line); color: var(--muted); background: rgba(9,18,14,.4); font-family: 'DM Mono', monospace; font-size: 11px; white-space: nowrap; }
.hero-note b { color: var(--ink); font-weight: 500; }
.pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 5px rgba(255,171,112,.08); }
.grid { display: grid; gap: 14px; }
.guest-grid, .account-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.panel { border: 1px solid var(--line); background: var(--panel); box-shadow: 0 24px 80px rgba(0,0,0,.12); backdrop-filter: blur(18px); }
.auth-panel, .authorize-panel, .entitlement-panel { min-height: 365px; padding: 27px; }
.panel-heading { display: flex; gap: 15px; margin-bottom: 32px; }
.section-index { color: var(--lime); font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: .12em; }
h2 { margin-bottom: 6px; font-size: 22px; letter-spacing: -.03em; }
.panel-heading p, .section-lead > p:last-child { max-width: 420px; margin-bottom: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.form-stack { display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field span { color: var(--muted); font-size: 12px; }
input { width: 100%; border: 1px solid var(--line); outline: 0; padding: 13px 14px; color: var(--ink); background: rgba(7,16,12,.56); font: inherit; font-size: 14px; transition: border-color .18s, background .18s; }
input:focus { border-color: rgba(201,242,126,.78); background: rgba(7,16,12,.85); }
.button { display: inline-flex; min-height: 45px; align-items: center; justify-content: center; gap: 12px; border: 0; padding: 0 16px; cursor: pointer; font: inherit; font-size: 13px; font-weight: 700; transition: transform .18s, background .18s, color .18s; }
.button:hover { transform: translateY(-2px); }
.primary { color: var(--lime-ink); background: var(--lime); }
.secondary { color: var(--ink); border: 1px solid rgba(201,242,126,.5); background: rgba(201,242,126,.08); }
.secondary:hover { background: rgba(201,242,126,.15); }
.ghost { min-height: 37px; color: var(--muted); border: 1px solid var(--line); background: transparent; }
.button-arrow { font-size: 17px; font-weight: 400; }
.form-hint { margin: 18px 0 0; color: var(--muted); font-size: 12px; }
.link-button { border: 0; padding: 0; color: var(--lime); background: transparent; cursor: pointer; font: inherit; }
.authorization-help { display: flex; gap: 10px; margin-top: 30px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; line-height: 1.6; }
.mini-icon { color: var(--orange); font-size: 19px; }
.plans-section { padding: 82px 0 40px; }
.section-lead { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 22px; }
.section-lead h2 { margin-bottom: 0; font-size: 31px; }
.plans-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.plan-card { min-height: 210px; padding: 22px; border: 1px solid var(--line); background: rgba(20,35,29,.6); }
.plan-card.featured { border-color: rgba(201,242,126,.52); background: linear-gradient(155deg, rgba(201,242,126,.12), rgba(20,35,29,.72) 58%); }
.plan-top { display: flex; align-items: start; justify-content: space-between; gap: 14px; }
.plan-name { margin: 0; font-size: 18px; }
.plan-price { color: var(--lime); font-family: 'DM Mono', monospace; font-size: 17px; }
.plan-description { min-height: 42px; margin: 13px 0 18px; color: var(--muted); font-size: 13px; line-height: 1.55; }
.feature-list { display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; list-style: none; }
.feature-list li { padding: 5px 7px; color: #d4e4d6; border: 1px solid var(--line); font-family: 'DM Mono', monospace; font-size: 10px; }
.account-header { display: flex; align-items: end; justify-content: space-between; gap: 20px; padding: 25px 27px; }
.account-header h2 { margin-bottom: 5px; font-size: 27px; }
.muted { color: var(--muted); font-size: 13px; }
.entitlement-status { display: flex; align-items: center; gap: 12px; margin: 32px 0 26px; }
.status-badge { display: inline-flex; align-items: center; gap: 7px; padding: 7px 9px; color: var(--lime-ink); background: var(--lime); font-family: 'DM Mono', monospace; font-size: 11px; }
.status-badge.off { color: #ffe1cc; background: rgba(255,171,112,.18); }
.entitlement-copy { color: var(--muted); font-size: 13px; line-height: 1.6; }
.toast { position: fixed; right: 20px; bottom: 20px; z-index: 4; max-width: min(380px, calc(100vw - 40px)); padding: 12px 14px; border: 1px solid rgba(255,171,112,.4); color: #ffe1cc; background: #2b1d16; opacity: 0; pointer-events: none; transform: translateY(12px); transition: opacity .2s, transform .2s; font-size: 13px; }
.toast.show { opacity: 1; transform: translateY(0); }
.hidden { display: none !important; }
.loading-line { padding: 20px 0; color: var(--muted); font-family: 'DM Mono', monospace; font-size: 12px; }
footer { display: flex; justify-content: space-between; padding: 35px 0 50px; color: var(--muted); font-size: 11px; }
.mono { font-family: 'DM Mono', monospace; }
@media (max-width: 760px) { .shell { width: min(100% - 26px, 560px); } .hero { display: block; min-height: 0; padding: 52px 0 38px; } .hero-note { margin-top: 27px; } .guest-grid, .account-grid, .plans-grid { grid-template-columns: 1fr; } .auth-panel, .authorize-panel, .entitlement-panel { min-height: auto; padding: 22px; } .section-lead { display: block; } .section-lead h2 { margin-bottom: 12px; } .account-header { align-items: start; flex-direction: column; } footer { display: block; } footer .mono { display: block; margin-top: 9px; } }
