:root {
  --bg: #040612;
  --bg-2: #07101d;
  --bg-3: #0a1627;
  --card: #0a1020;
  --card-2: #11182c;
  --line: #1b2741;
  --text: #f6f8ff;
  --muted: #95a4c6;
  --soft: #6f83a8;
  --violet: #7c5cff;
  --violet-2: #a855f7;
  --cyan: #30c9ff;
  --pink: #ff4fd8;
  --danger: #ff6b8b;
  --success: #48f0b5;
  --warning: #f6c85f;
  --radius: 24px;
  --shadow: 0 28px 90px rgba(0, 0, 0, .36);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 7%, rgba(124,92,255,.18), transparent 28rem),
    radial-gradient(circle at 90% 32%, rgba(48,201,255,.13), transparent 27rem),
    radial-gradient(circle at 65% 85%, rgba(255,79,216,.08), transparent 25rem),
    linear-gradient(180deg, var(--bg), #050915 42%, #07101d 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.6), transparent 80%);
  z-index: -1;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; }
[hidden] { display: none !important; }

.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 100px 0; position: relative; }
.section-tight { padding: 64px 0; }
.center { text-align: center; }
.muted { color: var(--muted); }
.soft { color: var(--soft); }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--cyan);
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(48,201,255,.8);
}
.section-title {
  margin: 15px auto 14px;
  max-width: 780px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.section-subtitle {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
.gradient-text {
  background: linear-gradient(100deg, #fff 4%, #c9c3ff 38%, #8ae2ff 70%, #ff91e9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* NAV */
.nav-shell {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(4,6,18,.72);
  border-bottom: 1px solid rgba(111,131,168,.12);
}
.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; letter-spacing: -.02em; }
.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  box-shadow: 0 0 22px rgba(124,92,255,.62);
  transform: rotate(8deg);
}
.brand-name { font-size: 18px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--muted); font-size: 13px; font-weight: 650; transition: .2s ease; }
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  border: 1px solid rgba(149,164,198,.18);
  background: rgba(17,24,44,.65);
  color: var(--text);
}
.mobile-menu { display: none; }

/* BUTTONS */
.btn {
  border: 0;
  min-height: 46px;
  border-radius: 14px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--text);
  font-size: 13px;
  font-weight: 750;
  transition: transform .18s ease, border-color .18s ease, opacity .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:disabled { cursor: not-allowed; opacity: .5; transform: none; }
.btn-primary {
  position: relative;
  background: linear-gradient(110deg, var(--violet), #6b78ff 52%, var(--cyan));
  box-shadow: 0 12px 32px rgba(89,96,255,.26), inset 0 1px 0 rgba(255,255,255,.22);
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 13px;
  border: 1px solid rgba(255,255,255,.13);
  pointer-events: none;
}
.btn-primary:hover { box-shadow: 0 16px 42px rgba(89,96,255,.34); }
.btn-secondary {
  background: rgba(17,24,44,.70);
  border: 1px solid rgba(149,164,198,.19);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}
.btn-secondary:hover { border-color: rgba(48,201,255,.35); }
.btn-ghost { background: transparent; color: var(--muted); }
.btn-pink { background: rgba(255,79,216,.08); border: 1px solid rgba(255,79,216,.22); color: #ff9eea; }
.btn-wide { width: 100%; }
.btn-lg { min-height: 54px; padding: 0 24px; border-radius: 16px; font-size: 14px; }
.btn-link { color: var(--cyan); background: transparent; border: 0; padding: 0; font-size: 12px; }
.spinner {
  width: 15px; height: 15px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.24); border-top-color: #fff;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* HERO */
.hero { padding: 94px 0 74px; min-height: 770px; display: grid; align-items: center; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 58px; align-items: center; }
.hero-copy h1 {
  margin: 20px 0 20px;
  font-size: clamp(48px, 7vw, 76px);
  line-height: .98;
  letter-spacing: -.058em;
  max-width: 700px;
}
.hero-copy p { margin: 0; max-width: 600px; color: var(--muted); font-size: 17px; line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-proof { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 34px; }
.proof-item { display: flex; align-items: center; gap: 10px; color: var(--soft); font-size: 12px; }
.proof-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 14px rgba(72,240,181,.45); }
.hero-visual { position: relative; min-height: 560px; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero-orb.one { width: 250px; height: 250px; left: -55px; top: 5px; background: rgba(124,92,255,.12); box-shadow: 0 0 120px 55px rgba(124,92,255,.13); }
.hero-orb.two { width: 250px; height: 250px; right: -45px; bottom: 4px; background: rgba(48,201,255,.08); box-shadow: 0 0 120px 50px rgba(48,201,255,.11); }
.app-window {
  position: absolute;
  inset: 34px 0 10px 24px;
  border-radius: 28px;
  border: 1px solid rgba(117,147,201,.19);
  background: linear-gradient(150deg, rgba(10,16,32,.96), rgba(6,11,25,.95));
  box-shadow: 0 40px 120px rgba(0,0,0,.50), 0 0 0 1px rgba(255,255,255,.02) inset;
  overflow: hidden;
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}
.window-top { height: 54px; display: flex; align-items: center; justify-content: space-between; padding: 0 18px; border-bottom: 1px solid rgba(149,164,198,.09); background: rgba(255,255,255,.012); }
.window-dots { display: flex; gap: 7px; }
.window-dots span { width: 8px; height: 8px; border-radius: 50%; background: #273551; }
.window-title { color: var(--soft); font-size: 10px; letter-spacing: .08em; font-weight: 750; }
.window-body { display: grid; grid-template-columns: 110px 1fr; min-height: 470px; }
.fake-sidebar { border-right: 1px solid rgba(149,164,198,.08); padding: 18px 12px; display: flex; flex-direction: column; gap: 10px; }
.fake-nav-item { height: 34px; border-radius: 10px; background: rgba(255,255,255,.015); border: 1px solid transparent; }
.fake-nav-item.active { background: linear-gradient(90deg, rgba(124,92,255,.18), rgba(48,201,255,.06)); border-color: rgba(124,92,255,.18); }
.fake-content { padding: 22px; }
.fake-greeting { font-size: 12px; color: var(--muted); }
.fake-greeting strong { display: block; color: var(--text); font-size: 22px; margin-top: 5px; }
.fake-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 20px 0; }
.fake-stat { min-height: 78px; padding: 13px; border-radius: 16px; background: rgba(17,24,44,.72); border: 1px solid rgba(149,164,198,.10); }
.fake-stat b { display: block; font-size: 17px; margin-top: 7px; }
.fake-stat small { color: var(--soft); font-size: 9px; }
.fake-focus { padding: 17px; border-radius: 20px; background: linear-gradient(140deg, rgba(124,92,255,.12), rgba(48,201,255,.045)); border: 1px solid rgba(124,92,255,.17); }
.fake-focus-title { display: flex; justify-content: space-between; align-items: center; color: var(--muted); font-size: 10px; }
.fake-timer { font-size: 50px; line-height: 1; letter-spacing: -.06em; font-weight: 760; margin: 14px 0 12px; }
.fake-progress { height: 6px; border-radius: 99px; background: #15223a; overflow: hidden; }
.fake-progress span { display: block; width: 68%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--violet), var(--cyan)); box-shadow: 0 0 18px rgba(48,201,255,.35); }
.floating-chip { position: absolute; padding: 12px 14px; border-radius: 15px; border: 1px solid rgba(149,164,198,.16); background: rgba(10,16,32,.84); backdrop-filter: blur(14px); box-shadow: 0 18px 50px rgba(0,0,0,.25); }
.floating-chip strong { display: block; font-size: 12px; }
.floating-chip span { display: block; margin-top: 3px; color: var(--muted); font-size: 9px; }
.floating-chip.a { right: -14px; top: 95px; }
.floating-chip.b { left: -20px; bottom: 54px; }

/* FEATURE RAIL */
.feature-rail { border-top: 1px solid rgba(149,164,198,.10); border-bottom: 1px solid rgba(149,164,198,.10); background: rgba(8,12,26,.48); }
.feature-rail-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.rail-item { padding: 26px 32px; display: flex; align-items: center; gap: 15px; }
.rail-item + .rail-item { border-left: 1px solid rgba(149,164,198,.10); }
.rail-icon { width: 42px; height: 42px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 13px; font-size: 17px; }
.rail-icon.violet { background: rgba(124,92,255,.10); border: 1px solid rgba(124,92,255,.22); color: #b8aaff; }
.rail-icon.cyan { background: rgba(48,201,255,.08); border: 1px solid rgba(48,201,255,.20); color: #8be6ff; }
.rail-icon.pink { background: rgba(255,79,216,.07); border: 1px solid rgba(255,79,216,.18); color: #ff9ceb; }
.rail-item strong { display: block; font-size: 13px; }
.rail-item span { display: block; margin-top: 4px; color: var(--muted); font-size: 11px; }

/* FEATURES */
.features-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; margin-top: 46px; }
.feature-card { position: relative; min-height: 250px; overflow: hidden; padding: 27px; border-radius: 24px; border: 1px solid rgba(149,164,198,.12); background: linear-gradient(145deg, rgba(17,24,44,.72), rgba(8,13,28,.68)); box-shadow: inset 0 1px 0 rgba(255,255,255,.025); }
.feature-card::after { content: ""; position: absolute; width: 180px; height: 180px; border-radius: 50%; right: -95px; top: -100px; background: rgba(124,92,255,.11); filter: blur(8px); }
.feature-card.wide { grid-column: span 7; }
.feature-card.narrow { grid-column: span 5; }
.feature-card.half { grid-column: span 6; }
.feature-card .icon-box { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; color: #d8d2ff; background: rgba(124,92,255,.10); border: 1px solid rgba(124,92,255,.20); }
.feature-card h3 { margin: 22px 0 9px; font-size: 20px; letter-spacing: -.025em; }
.feature-card p { margin: 0; max-width: 520px; color: var(--muted); font-size: 13px; line-height: 1.65; }
.mini-bars { position: absolute; right: 24px; bottom: 24px; width: 160px; height: 82px; display: flex; align-items: flex-end; gap: 8px; opacity: .72; }
.mini-bars span { flex: 1; border-radius: 6px 6px 2px 2px; background: linear-gradient(to top, rgba(124,92,255,.35), rgba(48,201,255,.85)); }
.mini-stack { position: absolute; right: 24px; bottom: 22px; display: grid; gap: 8px; width: 180px; }
.mini-stack div { height: 34px; border-radius: 11px; border: 1px solid rgba(149,164,198,.10); background: rgba(10,16,32,.76); }

/* FLOW */
.steps { margin-top: 46px; display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.step { padding: 28px; border-radius: 22px; border: 1px solid rgba(149,164,198,.12); background: rgba(10,16,32,.58); }
.step-number { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 11px; color: var(--cyan); background: rgba(48,201,255,.07); border: 1px solid rgba(48,201,255,.17); font-size: 11px; font-weight: 850; }
.step h3 { margin: 20px 0 8px; font-size: 17px; }
.step p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 420px)); justify-content: center; gap: 18px; margin-top: 48px; }
.price-card { position: relative; padding: 30px; border-radius: 26px; border: 1px solid rgba(149,164,198,.13); background: linear-gradient(145deg, rgba(17,24,44,.82), rgba(8,13,28,.82)); box-shadow: var(--shadow); }
.price-card.featured { border-color: rgba(124,92,255,.42); box-shadow: 0 30px 95px rgba(64,44,170,.18); }
.price-card.featured::before { content: ""; position: absolute; inset: -1px; z-index: -1; border-radius: inherit; background: linear-gradient(130deg, rgba(124,92,255,.55), transparent 38%, rgba(48,201,255,.28)); filter: blur(11px); opacity: .45; }
.price-badge { position: absolute; top: 20px; right: 20px; padding: 7px 10px; border-radius: 99px; color: #beb2ff; background: rgba(124,92,255,.09); border: 1px solid rgba(124,92,255,.22); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.price-card h3 { margin: 0; font-size: 20px; }
.price-description { color: var(--muted); font-size: 12px; margin: 7px 0 26px; }
.price { min-height: 62px; display: flex; align-items: baseline; gap: 5px; font-size: 34px; font-weight: 820; letter-spacing: -.045em; }
.price-note { color: var(--cyan); font-size: 10px; font-weight: 750; margin-top: -6px; min-height: 18px; }
.price-list { list-style: none; padding: 0; margin: 24px 0 28px; display: grid; gap: 12px; }
.price-list li { position: relative; padding-left: 24px; color: var(--muted); font-size: 12px; }
.price-list li::before { content: "✓"; position: absolute; left: 0; color: var(--success); font-weight: 900; }
.pricing-note { margin: 22px auto 0; color: var(--soft); font-size: 11px; text-align: center; }

/* CTA */
.cta-card { position: relative; overflow: hidden; padding: 60px 40px; border-radius: 30px; border: 1px solid rgba(124,92,255,.22); background: linear-gradient(130deg, rgba(124,92,255,.13), rgba(10,16,32,.86) 42%, rgba(48,201,255,.08)); text-align: center; box-shadow: var(--shadow); }
.cta-card::before, .cta-card::after { content: ""; position: absolute; border-radius: 50%; pointer-events: none; }
.cta-card::before { width: 250px; height: 250px; left: -100px; top: -120px; background: rgba(124,92,255,.13); box-shadow: 0 0 120px rgba(124,92,255,.22); }
.cta-card::after { width: 220px; height: 220px; right: -90px; bottom: -110px; background: rgba(48,201,255,.09); box-shadow: 0 0 120px rgba(48,201,255,.17); }
.cta-card h2 { position: relative; margin: 12px 0; font-size: clamp(34px, 5vw, 52px); letter-spacing: -.045em; }
.cta-card p { position: relative; max-width: 600px; margin: 0 auto 28px; color: var(--muted); line-height: 1.7; }

/* FOOTER */
.footer { border-top: 1px solid rgba(149,164,198,.09); padding: 32px 0 40px; }
.footer-row { display: flex; justify-content: space-between; gap: 24px; align-items: center; }
.footer p { margin: 0; color: var(--soft); font-size: 11px; }
.footer-links { display: flex; gap: 18px; }
.footer-links a { color: var(--soft); font-size: 11px; }

/* AUTH */
.auth-page { min-height: 100vh; display: grid; place-items: center; padding: 42px 20px; }
.auth-shell { width: min(1120px, 100%); min-height: 680px; display: grid; grid-template-columns: 1.04fr .96fr; overflow: hidden; border-radius: 30px; border: 1px solid rgba(149,164,198,.14); background: rgba(7,12,27,.78); box-shadow: 0 40px 120px rgba(0,0,0,.50); backdrop-filter: blur(18px); }
.auth-showcase { position: relative; overflow: hidden; padding: 46px; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid rgba(149,164,198,.10); background: linear-gradient(145deg, rgba(124,92,255,.06), rgba(4,6,18,.18) 50%, rgba(48,201,255,.035)); }
.auth-showcase::before { content: ""; position: absolute; width: 260px; height: 260px; left: -85px; top: 25px; border-radius: 50%; background: rgba(124,92,255,.13); box-shadow: 0 0 140px 55px rgba(124,92,255,.13); }
.auth-showcase::after { content: ""; position: absolute; width: 260px; height: 260px; right: -100px; bottom: -60px; border-radius: 50%; background: rgba(48,201,255,.08); box-shadow: 0 0 140px 55px rgba(48,201,255,.10); }
.showcase-copy { position: relative; z-index: 1; margin-top: 80px; }
.showcase-copy h1 { margin: 13px 0 16px; max-width: 460px; font-size: clamp(42px, 5vw, 58px); line-height: 1.02; letter-spacing: -.05em; }
.neon-rule { width: 132px; height: 3px; border-radius: 99px; background: linear-gradient(90deg, var(--violet), var(--cyan), var(--pink)); margin: 24px 0; }
.showcase-copy p { max-width: 500px; color: var(--muted); line-height: 1.7; font-size: 14px; }
.auth-chips { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.auth-chip { padding: 15px; border-radius: 16px; border: 1px solid rgba(149,164,198,.10); background: rgba(17,24,44,.40); }
.auth-chip b { display: block; font-size: 11px; }
.auth-chip span { display: block; margin-top: 5px; color: var(--soft); font-size: 9px; line-height: 1.4; }
.auth-form-side { padding: 52px 58px; display: flex; align-items: center; justify-content: center; }
.auth-card { width: min(390px, 100%); }
.auth-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.auth-badge { padding: 6px 10px; border-radius: 99px; color: var(--cyan); border: 1px solid rgba(48,201,255,.18); background: rgba(48,201,255,.05); font-size: 9px; font-weight: 800; }
.auth-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; padding: 4px; border: 1px solid rgba(149,164,198,.10); background: rgba(10,16,32,.68); border-radius: 14px; margin-bottom: 24px; }
.auth-tab { height: 38px; border: 0; border-radius: 10px; color: var(--soft); background: transparent; font-size: 11px; font-weight: 750; }
.auth-tab.active { color: var(--text); background: rgba(124,92,255,.12); box-shadow: inset 0 0 0 1px rgba(124,92,255,.15); }
.auth-heading { margin: 0; font-size: 31px; letter-spacing: -.04em; }
.auth-subheading { margin: 8px 0 22px; color: var(--muted); font-size: 12px; }
.field { margin-bottom: 12px; }
.field label { display: block; margin-bottom: 7px; color: rgba(246,248,255,.80); font-size: 10px; font-weight: 700; }
.field input, .field select { width: 100%; height: 54px; outline: none; border-radius: 15px; border: 1px solid rgba(124,92,255,.22); background: rgba(17,24,44,.80); color: var(--text); padding: 0 15px; transition: .2s ease; }
.field input::placeholder { color: rgba(149,164,198,.38); }
.field input:focus, .field select:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(48,201,255,.08); }
.field select { appearance: none; cursor: pointer; background-image: linear-gradient(45deg, transparent 50%, rgba(246,248,255,.7) 50%), linear-gradient(135deg, rgba(246,248,255,.7) 50%, transparent 50%); background-position: calc(100% - 18px) 23px, calc(100% - 13px) 23px; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 38px; }
.field select option { background: #0a1020; color: #f6f8ff; }
.field-help { margin: -2px 0 14px; color: rgba(149,164,198,.66); font-size: 9px; line-height: 1.55; }
#signup-form .field { margin-bottom: 10px; }
#signup-form .field input, #signup-form .field select { height: 50px; }
.auth-form-side { overflow-y: auto; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form-meta { display: flex; justify-content: flex-end; margin: -2px 0 18px; }
.auth-security { display: flex; justify-content: center; align-items: center; gap: 7px; margin-top: 18px; color: rgba(149,164,198,.58); font-size: 10px; }
.auth-back { position: absolute; top: 26px; left: 28px; z-index: 5; }

/* ACCOUNT */
.account-page { min-height: 100vh; }
.account-main { padding: 58px 0 90px; }
.account-header { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.profile-summary { display: flex; align-items: center; gap: 16px; }
.avatar { width: 58px; height: 58px; border-radius: 18px; overflow: hidden; display: grid; place-items: center; color: var(--text); font-size: 20px; font-weight: 850; background: linear-gradient(145deg, rgba(124,92,255,.55), rgba(48,201,255,.35)); border: 1px solid rgba(255,255,255,.12); box-shadow: 0 12px 34px rgba(52,45,130,.20); }
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.profile-summary h1 { margin: 0; font-size: 24px; letter-spacing: -.035em; }
.profile-summary p { margin: 5px 0 0; color: var(--muted); font-size: 12px; }
.account-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 18px; }
.panel { border-radius: 24px; border: 1px solid rgba(149,164,198,.12); background: linear-gradient(145deg, rgba(17,24,44,.71), rgba(8,13,28,.72)); box-shadow: inset 0 1px 0 rgba(255,255,255,.025); }
.panel-pad { padding: 26px; }
.panel-title-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.panel h2 { margin: 0; font-size: 17px; letter-spacing: -.025em; }
.panel-caption { margin: 6px 0 0; color: var(--muted); font-size: 11px; }
.status-pill { display: inline-flex; align-items: center; gap: 7px; padding: 7px 10px; border-radius: 99px; font-size: 9px; font-weight: 820; text-transform: uppercase; letter-spacing: .06em; }
.status-active { color: var(--success); background: rgba(72,240,181,.07); border: 1px solid rgba(72,240,181,.18); }
.status-warning { color: var(--warning); background: rgba(246,200,95,.07); border: 1px solid rgba(246,200,95,.18); }
.status-neutral { color: var(--soft); background: rgba(149,164,198,.05); border: 1px solid rgba(149,164,198,.12); }
.subscription-main { margin-top: 26px; padding: 22px; border-radius: 20px; border: 1px solid rgba(124,92,255,.16); background: linear-gradient(135deg, rgba(124,92,255,.10), rgba(48,201,255,.025)); }
.subscription-main small { color: var(--soft); font-size: 9px; text-transform: uppercase; letter-spacing: .08em; font-weight: 750; }
.subscription-main h3 { margin: 7px 0 18px; font-size: 24px; }
.subscription-details { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.detail-box { padding: 14px; border-radius: 14px; background: rgba(5,9,21,.50); border: 1px solid rgba(149,164,198,.08); }
.detail-box span { display: block; color: var(--soft); font-size: 9px; }
.detail-box b { display: block; margin-top: 5px; font-size: 11px; }
.subscription-note { margin: 15px 0 0; color: var(--muted); font-size: 10px; line-height: 1.55; }
.panel-actions { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.stats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 18px; }
.stat-card { padding: 18px; border-radius: 18px; border: 1px solid rgba(149,164,198,.10); background: rgba(10,16,32,.57); }
.stat-card span { display: block; color: var(--soft); font-size: 9px; text-transform: uppercase; letter-spacing: .06em; }
.stat-card b { display: block; margin-top: 8px; font-size: 20px; letter-spacing: -.03em; }
.account-info { display: grid; gap: 10px; margin-top: 20px; }
.info-line { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 13px 0; border-bottom: 1px solid rgba(149,164,198,.08); }
.info-line:last-child { border-bottom: 0; }
.info-line span { color: var(--soft); font-size: 10px; }
.info-line b { text-align: right; font-size: 11px; font-weight: 650; }
.download-card { margin-top: 18px; padding: 22px; border-radius: 20px; border: 1px solid rgba(48,201,255,.17); background: linear-gradient(135deg, rgba(48,201,255,.06), rgba(124,92,255,.07)); }
.download-card.locked { filter: saturate(.5); opacity: .7; }
.download-top { display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.download-icon { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: rgba(48,201,255,.08); border: 1px solid rgba(48,201,255,.18); color: var(--cyan); }
.download-meta { flex: 1; }
.download-meta b { display: block; font-size: 13px; }
.download-meta span { display: block; margin-top: 4px; color: var(--muted); font-size: 10px; }
.no-plan { margin-top: 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mini-plan { padding: 16px; border-radius: 16px; border: 1px solid rgba(149,164,198,.10); background: rgba(10,16,32,.55); }
.mini-plan strong { display: block; font-size: 12px; }
.mini-plan span { display: block; margin: 5px 0 12px; color: var(--muted); font-size: 10px; }
.loading-state { min-height: 70vh; display: grid; place-items: center; text-align: center; }
.loading-ring { width: 42px; height: 42px; margin: 0 auto 14px; border-radius: 50%; border: 3px solid rgba(124,92,255,.16); border-top-color: var(--cyan); animation: spin .8s linear infinite; }

/* RESET */
.simple-card { width: min(460px, calc(100% - 34px)); margin: 110px auto; padding: 32px; border-radius: 26px; border: 1px solid rgba(149,164,198,.13); background: rgba(10,16,32,.82); box-shadow: var(--shadow); }
.simple-card h1 { margin: 18px 0 8px; font-size: 30px; letter-spacing: -.04em; }
.simple-card p { color: var(--muted); font-size: 12px; line-height: 1.6; margin: 0 0 22px; }

/* TOAST */
.toast-host { position: fixed; z-index: 100; top: 20px; right: 20px; display: grid; gap: 10px; width: min(360px, calc(100% - 40px)); }
.toast { transform: translateY(-7px); opacity: 0; padding: 13px 15px; border-radius: 14px; border: 1px solid rgba(149,164,198,.14); background: rgba(10,16,32,.94); color: var(--text); box-shadow: 0 18px 50px rgba(0,0,0,.32); backdrop-filter: blur(16px); font-size: 11px; line-height: 1.5; transition: .2s ease; }
.toast.show { transform: translateY(0); opacity: 1; }
.toast-error { border-color: rgba(255,107,139,.28); }
.toast-success { border-color: rgba(72,240,181,.25); }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .mobile-toggle { display: inline-grid; place-items: center; }
  .mobile-menu.open { display: grid; padding: 0 20px 18px; gap: 7px; }
  .mobile-menu a { padding: 11px 8px; color: var(--muted); font-size: 12px; }
  .hero { min-height: auto; padding-top: 70px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy h1, .hero-copy p { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-proof { justify-content: center; }
  .hero-visual { min-height: 520px; }
  .app-window { inset: 20px 30px 10px; transform: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-card.wide, .feature-card.narrow, .feature-card.half { grid-column: span 1; }
  .auth-shell { grid-template-columns: 1fr; max-width: 660px; }
  .auth-showcase { display: none; }
  .auth-form-side { padding: 54px 28px; }
  .account-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1160px); }
  .section { padding: 74px 0; }
  .nav { height: 68px; }
  .nav-actions .btn-secondary { display: none; }
  .hero { padding: 62px 0 50px; }
  .hero-copy h1 { font-size: clamp(43px, 13vw, 60px); }
  .hero-copy p { font-size: 15px; }
  .hero-actions .btn { width: 100%; }
  .hero-visual { min-height: 425px; }
  .app-window { inset: 14px 0 0; border-radius: 22px; }
  .window-body { grid-template-columns: 78px 1fr; min-height: 340px; }
  .fake-content { padding: 14px; }
  .fake-stats { grid-template-columns: 1fr 1fr; }
  .fake-stat:last-child { display: none; }
  .fake-timer { font-size: 40px; }
  .floating-chip { display: none; }
  .feature-rail-grid { grid-template-columns: 1fr; }
  .rail-item + .rail-item { border-left: 0; border-top: 1px solid rgba(149,164,198,.10); }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 225px; }
  .steps, .pricing-grid { grid-template-columns: 1fr; }
  .cta-card { padding: 46px 22px; }
  .footer-row { flex-direction: column; align-items: flex-start; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .auth-page { padding: 18px 12px; }
  .auth-shell { min-height: auto; border-radius: 24px; }
  .auth-form-side { padding: 38px 20px; }
  .auth-back { top: 18px; left: 16px; }
  .account-main { padding-top: 34px; }
  .account-header { align-items: flex-start; flex-direction: column; }
  .account-header .btn { width: 100%; }
  .stats-grid { grid-template-columns: 1fr; }
  .subscription-details { grid-template-columns: 1fr; }
  .no-plan { grid-template-columns: 1fr; }
  .download-top { align-items: flex-start; flex-wrap: wrap; }
  .download-top .btn { width: 100%; }
}
