:root {

  --bg:          #0a0e16;
  --bg-1:        #0d1117;
  --surface:     #11161f;
  --surface-2:   #161b22;
  --surface-3:   #1c2333;
  --surface-4:   #20283a;
  --border:      #232b3a;
  --border-2:    #2d3548;

  --text:        #e6edf3;
  --text-2:      #9ca9b7;
  --text-3:      #6b7686;

  --accent:      #4a7cff;
  --accent-600:  #3a6af0;
  --accent-300:  #82a6ff;
  --blue:        #0083c2;
  --teal:        #63c1c1;
  --green:       #a2d899;
  --green-deep:  #27544b;
  --purple:      #8d92c1;

  --danger:      #f85149;
  --success:     #57d38c;

  --grad-brand:  linear-gradient(120deg, #a2d899 0%, #63c1c1 32%, #4a7cff 70%, #8d92c1 100%);
  --grad-accent: linear-gradient(120deg, #63c1c1 0%, #4a7cff 100%);

  --maxw: 1160px;
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;

  --shadow:    0 18px 50px -18px rgba(0, 0, 0, 0.7);
  --shadow-lg: 0 40px 120px -30px rgba(0, 0, 0, 0.85);

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: "Cascadia Mono", "JetBrains Mono", ui-monospace, "SF Mono", Consolas, monospace;
}

html[data-theme="light"] {
  --bg:          #f6f8fc;
  --bg-1:        #ffffff;
  --surface:     #ffffff;
  --surface-2:   #f1f5fa;
  --surface-3:   #eaeff7;
  --surface-4:   #e1e8f2;
  --border:      #e4eaf3;
  --border-2:    #d2dbe8;

  --text:        #0e1726;
  --text-2:      #46566e;
  --text-3:      #76869c;

  --accent:      #4a7cff;
  --accent-600:  #3a6af0;
  --accent-300:  #2f5fe0;
  --blue:        #0072ac;

  --teal:        #149aa6;
  --green:       #3a9e6f;
  --purple:      #6f74ad;

  --success:     #1f9d57;

  --grad-brand:  linear-gradient(120deg, #2f9e6f 0%, #149aa6 30%, #3a6af0 68%, #6f74ad 100%);
  --grad-accent: linear-gradient(120deg, #149aa6 0%, #3a6af0 100%);

  --shadow:      0 18px 44px -20px rgba(20, 40, 80, 0.22);
  --shadow-lg:   0 40px 100px -34px rgba(20, 40, 80, 0.30);
}

html[data-theme="light"] body::before {
  background:
    radial-gradient(58rem 38rem at 80% -10%, rgba(74, 124, 255, 0.10), transparent 60%),
    radial-gradient(44rem 30rem at 4% 4%, rgba(20, 154, 166, 0.08), transparent 55%),
    radial-gradient(36rem 26rem at 52% 112%, rgba(111, 116, 173, 0.07), transparent 60%);
}

html[data-theme="light"] .site-header.scrolled {
  background: rgba(255, 255, 255, 0.82);
  border-bottom-color: var(--border);
}

html[data-theme="light"] .feature-icon {
  background: rgba(74, 124, 255, 0.10);
  border-color: rgba(74, 124, 255, 0.24);
  color: var(--accent-600);
}

html[data-theme="light"] .trustbar { background: rgba(15, 30, 60, 0.02); }

html[data-theme="light"] .cta-box {
  background: linear-gradient(135deg, #eaf1ff, #ffffff 72%);
  border-color: var(--border-2);
}
html[data-theme="light"] .cta-box::before {
  background: radial-gradient(40rem 16rem at 50% -40%, rgba(74, 124, 255, 0.18), transparent 70%);
}

html[data-theme="light"] .app-window,
html[data-theme="light"] .spot-visual {
  --bg-1:      #0d1117;
  --surface:   #11161f;
  --surface-2: #161b22;
  --surface-3: #1c2333;
  --surface-4: #20283a;
  --border:    #232b3a;
  --border-2:  #2d3548;
  --text:      #e6edf3;
  --text-2:    #9ca9b7;
  --text-3:    #6b7686;
  --success:   #57d38c;
  --accent-300:#82a6ff;
}

.theme-toggle {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-2);
  border-radius: 10px;
  color: var(--text-2);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.theme-toggle:hover { background: var(--surface-3); color: var(--text); border-color: var(--accent); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .ic-moon { display: none; }
html[data-theme="light"] .theme-toggle .ic-sun { display: none; }
html[data-theme="light"] .theme-toggle .ic-moon { display: block; }

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60rem 40rem at 78% -8%, rgba(74, 124, 255, 0.16), transparent 60%),
    radial-gradient(48rem 32rem at 8% 6%, rgba(99, 193, 193, 0.10), transparent 55%),
    radial-gradient(40rem 30rem at 50% 110%, rgba(141, 146, 193, 0.10), transparent 60%);
  pointer-events: none;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.section { padding: 96px 0; position: relative; }
.section--tight { padding: 72px 0; }
.section-soft { background: linear-gradient(180deg, transparent, rgba(255,255,255,0.015), transparent); }

.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 18px; height: 1px;
  background: var(--teal);
  opacity: 0.6;
}

h1, h2, h3 { line-height: 1.12; font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); }
h3 { font-size: 1.2rem; letter-spacing: -0.01em; }

.lead { font-size: 1.075rem; color: var(--text-2); }

.gradient-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 10px 30px -10px rgba(74, 124, 255, 0.6);
}
.btn-primary:hover { background: #5d8bff; box-shadow: 0 14px 36px -10px rgba(74, 124, 255, 0.75); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  border-color: var(--border-2);
}
.btn-ghost:hover { background: var(--surface-3); border-color: var(--accent); }

.btn-lg { padding: 16px 28px; font-size: 1.02rem; }
.btn-block { width: 100%; }

.btn svg { width: 18px; height: 18px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10, 14, 22, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.brand { display: flex; align-items: center; gap: 11px; font-weight: 700; font-size: 1.16rem; letter-spacing: -0.02em; }
.brand .logo-mark { width: 30px; height: 30px; }
.brand b { color: var(--text); }
.brand span { color: var(--blue); }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 0.93rem;
  color: var(--text-2);
  font-weight: 500;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--text); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .login { font-size: 0.93rem; color: var(--text-2); font-weight: 500; }
.nav-cta .login:hover { color: var(--text); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-2);
  border-radius: 9px;
  width: 42px; height: 38px;
  color: var(--text);
}

.hero { padding: 70px 0 40px; position: relative; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 13px 6px 7px;
  border: 1px solid var(--border-2);
  background: var(--surface-2);
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--text-2);
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--grad-accent);
  display: inline-grid;
  place-items: center;
  font-size: 11px;
  color: #04121f;
  font-weight: 800;
}
.hero h1 {
  font-size: clamp(2.05rem, 6.2vw, 3.7rem);
  margin-bottom: 22px;
}
.hero p.lead { font-size: 1.16rem; max-width: 540px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--text-3);
  font-size: 0.88rem;
  flex-wrap: wrap;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust svg { width: 16px; height: 16px; color: var(--teal); }

.mockup-wrap { position: relative; }
.mockup-wrap::after {
  content: "";
  position: absolute;
  inset: -10% -6% -16% -6%;
  background: radial-gradient(closest-side, rgba(74, 124, 255, 0.28), transparent 72%);
  filter: blur(20px);
  z-index: -1;
}
.app-window {
  background: var(--bg-1);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: perspective(1600px) rotateX(2.5deg) rotateY(-5deg);
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
}
.mockup-wrap:hover .app-window { transform: perspective(1600px) rotateX(0) rotateY(0); }

.app-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.app-titlebar .left { display: flex; align-items: center; gap: 10px; }
.app-titlebar .title { font-weight: 700; font-size: 0.92rem; }
.app-titlebar .pill {
  font-size: 0.68rem;
  color: #add439;
  background: #1e2f45;
  border: 1px solid var(--blue);
  border-radius: 6px;
  padding: 3px 8px;
}
.win-controls { display: flex; align-items: center; gap: 2px; }
.win-control {
  position: relative;
  display: block;
  width: 28px;
  height: 24px;
  border-radius: 5px;
  background: rgba(54, 64, 79, 0.58);
}
.win-control::before,
.win-control::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.win-control.minimize::before {
  width: 10px;
  height: 1px;
  background: #b9c1d1;
}
.win-control.maximize::before {
  width: 9px;
  height: 8px;
  border: 1.5px solid #b9c1d1;
  border-radius: 1px;
}
.win-control.close::before,
.win-control.close::after {
  width: 11px;
  height: 1.5px;
  background: #e7edf8;
}
.win-control.close::before { transform: translate(-50%, -50%) rotate(45deg); }
.win-control.close::after { transform: translate(-50%, -50%) rotate(-45deg); }
.win-control.close { background: rgba(248, 81, 73, 0.78); }

.app-body { display: grid; grid-template-columns: 116px minmax(0, 1fr); }
.app-nav { background: var(--surface-2); border-right: 1px solid var(--border); padding: 14px 10px; }
.app-nav .label { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-3); padding: 4px 8px 10px; }
.app-nav .item { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; padding: 9px 10px; border-radius: 8px; color: var(--text-2); margin-bottom: 4px; }
.app-nav .item.active { background: #1f2d4f; color: var(--accent-300); border: 1px solid #2c3f6b; }
.app-nav .item .ic { width: 8px; height: 8px; border-radius: 2px; background: currentColor; opacity: .8; }

.app-main { padding: 16px; min-width: 0; }
.field-label { font-size: 0.66rem; color: var(--text-3); margin-bottom: 5px; }
.field {
  background: var(--surface-3);
  border: 1px solid var(--border-2);
  border-radius: 8px;
  padding: 9px 11px;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--text-2);
  margin-bottom: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.field .ts { color: var(--teal); }

.stat-row { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 8px; margin-bottom: 14px; }
.stat { min-width: 0; }
.stat .v { overflow: hidden; text-overflow: ellipsis; }
.stat {
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 9px 10px;
}
.stat .k { font-size: 0.58rem; color: var(--text-3); text-transform: uppercase; letter-spacing: .06em; }
.stat .v { font-family: var(--mono); font-weight: 700; font-size: 1.15rem; margin-top: 2px; }
.stat.fail .v { color: var(--danger); }
.stat.ok .v { color: var(--success); }
.spot-stat-row { margin-top: 14px; margin-bottom: 0; }

.threads {
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 10px;
}
.threads-dark { background: var(--bg-1); }
.threads .cap { font-size: 0.66rem; font-weight: 600; color: var(--text-2); margin-bottom: 8px; }
.thread {
  display: grid;
  grid-template-columns: 40px 60px minmax(0, 1fr) 50px;
  gap: 8px;
  align-items: center;
  font-size: 0.66rem;
  padding: 6px 4px;
  border-top: 1px solid var(--border);
  color: var(--text-2);
}
.thread > * { min-width: 0; }
.thread .url { font-family: var(--mono); color: var(--text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.badge-phase { color: var(--teal); }
.badge-phase.wait { color: #e3b341; }
.dur { font-family: var(--mono); text-align: right; color: var(--text-3); }

.trustbar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(255,255,255,0.012); }
.trustbar .inner { display: flex; align-items: center; justify-content: center; gap: 14px 38px; flex-wrap: wrap; padding: 26px 0; }
.trustbar p { color: var(--text-3); font-size: 0.82rem; letter-spacing: 0.04em; }
.trustbar .tag {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text-2); font-weight: 600; font-size: 0.92rem;
}
.trustbar .tag svg { width: 17px; height: 17px; color: var(--teal); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}
.feature-card:hover { transform: translateY(-4px); border-color: var(--border-2); box-shadow: var(--shadow); }
.feature-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(74, 124, 255, 0.12);
  border: 1px solid rgba(74, 124, 255, 0.28);
  color: var(--accent-300);
  margin-bottom: 18px;
}
.feature-icon svg { width: 23px; height: 23px; }
.feature-card h3 { margin-bottom: 9px; }
.feature-card p { color: var(--text-2); font-size: 0.94rem; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
}
.step .num {
  counter-increment: step;
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: #04121f;
  width: 34px; height: 34px;
  border-radius: 9px;
  display: grid; place-items: center;
  background: var(--grad-accent);
  margin-bottom: 16px;
}
.step .num::before { content: "0" counter(step); }
.step h3 { margin-bottom: 8px; }
.step p { color: var(--text-2); font-size: 0.94rem; }
.step code { font-family: var(--mono); font-size: 0.8rem; color: var(--teal); background: var(--surface-3); padding: 2px 6px; border-radius: 5px; }

.spotlight { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.spotlight.rev .spot-text { order: 2; }
.spotlight + .spotlight { margin-top: 90px; }
.spot-list { margin-top: 22px; display: grid; gap: 14px; }
.spot-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--text-2); font-size: 0.97rem; }
.spot-list .check {
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(87, 211, 140, 0.14);
  border: 1px solid rgba(87, 211, 140, 0.35);
  color: var(--success);
  display: grid; place-items: center;
  margin-top: 1px;
}
.spot-list .check svg { width: 13px; height: 13px; }
.spot-list b { color: var(--text); font-weight: 600; }

.spot-visual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow);
}
.code-block {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--mono);
  font-size: 0.8rem;
  overflow: hidden;
}
.code-block .hd { display: flex; gap: 7px; padding: 11px 14px; border-bottom: 1px solid var(--border); }
.code-block .hd i { width: 10px; height: 10px; border-radius: 50%; background: #36404f; }
.code-block pre { padding: 16px; overflow-x: auto; color: var(--text-2); line-height: 1.7; }
.code-block .c-key { color: var(--accent-300); }
.code-block .c-str { color: var(--green); }
.code-block .c-com { color: var(--text-3); }
.code-block .c-ok { color: var(--success); }

.compare { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.compare-col {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 28px 24px;
}
.compare-col.feature {
  border-color: rgba(74, 124, 255, 0.5);
  background: linear-gradient(180deg, rgba(74,124,255,0.08), var(--surface));
  box-shadow: 0 0 0 1px rgba(74,124,255,0.15), var(--shadow);
  position: relative;
}
.compare-col h3 { font-size: 1.1rem; margin-bottom: 4px; }
.compare-col .sub { font-size: 0.82rem; color: var(--text-3); margin-bottom: 18px; }
.compare-col.feature .sub { color: var(--accent-300); }
.compare-tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase; padding: 4px 12px; border-radius: 999px;
}
.compare-col li { display: flex; gap: 10px; align-items: flex-start; padding: 8px 0; font-size: 0.9rem; color: var(--text-2); border-top: 1px solid var(--border); }
.compare-col li:first-of-type { border-top: none; }
.compare-col li svg { width: 16px; height: 16px; flex: none; margin-top: 3px; }
.ic-yes { color: var(--success); }
.ic-no { color: #5a6573; }

.pricing-wrap { display: flex; justify-content: center; }
.price-card {
  width: 100%;
  max-width: 460px;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 4px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.price-card::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: var(--grad-brand);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0.55;
  pointer-events: none;
}
.price-inner { padding: 32px 30px; }
.price-card .ribbon {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 14px;
}
.price-amount { display: flex; align-items: baseline; gap: 8px; }
.price-amount .cur { font-size: 1.4rem; font-weight: 700; color: var(--text-2); }
.price-amount .num { font-size: 3.6rem; font-weight: 800; letter-spacing: -0.03em; }
.price-amount .per { color: var(--text-3); font-size: 0.95rem; }
.price-note { color: var(--text-2); margin: 6px 0 24px; font-size: 0.95rem; }
.price-features { display: grid; gap: 13px; margin-bottom: 28px; }
.price-features li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.95rem; color: var(--text); }
.price-features .check { flex: none; width: 21px; height: 21px; border-radius: 50%; background: rgba(74,124,255,0.16); border: 1px solid rgba(74,124,255,0.4); color: var(--accent-300); display: grid; place-items: center; margin-top: 1px; }
.price-features .check svg { width: 12px; height: 12px; }
.price-guarantee { text-align: center; margin-top: 16px; font-size: 0.84rem; color: var(--text-3); display: flex; align-items: center; justify-content: center; gap: 7px; }
.price-guarantee svg { width: 16px; height: 16px; color: var(--teal); }

.bundle-callout {
  max-width: 860px;
  margin: 34px auto 0;
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  background: linear-gradient(135deg, rgba(99, 193, 193, 0.10), rgba(74, 124, 255, 0.08));
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
}
.bundle-callout .eyebrow { margin-bottom: 10px; }
.bundle-callout h3 { margin-bottom: 8px; }
.bundle-callout p { color: var(--text-2); max-width: 590px; }

.faq { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; color: var(--text);
  font-size: 1.04rem; font-weight: 600; padding: 22px 0; display: flex; justify-content: space-between; gap: 20px; align-items: center;
}
.faq-q .chev { flex: none; width: 22px; height: 22px; color: var(--text-3); transition: transform 0.25s ease; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); color: var(--accent-300); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a-inner { padding: 0 0 22px; color: var(--text-2); font-size: 0.97rem; max-width: 92%; }
.faq-a-inner a { color: var(--accent-300); text-decoration: underline; text-underline-offset: 2px; }

.cta-band { position: relative; }
.cta-box {
  background: linear-gradient(135deg, #11203f, #131826 60%);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(40rem 16rem at 50% -40%, rgba(74,124,255,0.35), transparent 70%);
  pointer-events: none;
}
.cta-box h2 { margin-bottom: 14px; position: relative; }
.cta-box p { color: var(--text-2); max-width: 540px; margin: 0 auto 28px; position: relative; }
.cta-box .hero-actions { justify-content: center; position: relative; }

.site-footer { border-top: 1px solid var(--border); padding: 64px 0 36px; background: var(--bg-1); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { color: var(--text-3); font-size: 0.9rem; max-width: 280px; }
.footer-col h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-3); margin-bottom: 16px; font-weight: 600; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { color: var(--text-2); font-size: 0.92rem; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap;
  color: var(--text-3); font-size: 0.84rem;
}
.footer-bottom .disclaimer { max-width: 640px; }

.page-main { padding-top: 0; }
.page-hero {
  padding: 76px 0 46px;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(42rem 22rem at 76% -20%, rgba(74, 124, 255, 0.18), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,0.015), transparent);
}
.page-hero .inner { max-width: 820px; }
.page-hero h1 {
  font-size: clamp(2.05rem, 4.8vw, 3.4rem);
  margin-bottom: 18px;
}
.page-hero p { color: var(--text-2); font-size: 1.08rem; max-width: 720px; }
.page-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.content-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 56px 24px 90px;
}
.content-card {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 44px);
}
.content-card + .content-card { margin-top: 22px; }
.content-card h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  margin: 8px 0 14px;
}
.content-card h3 { margin: 24px 0 10px; }
.content-card p,
.content-card li { color: var(--text-2); }
.content-card p + p { margin-top: 13px; }
.content-card ul,
.content-card ol { padding-left: 20px; margin: 14px 0 0; }
.content-card ul { list-style: disc; }
.content-card ol { list-style: decimal; }
.content-card li + li { margin-top: 9px; }
.content-card a { color: var(--accent-300); text-decoration: underline; text-underline-offset: 3px; }
.content-note {
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  background: rgba(74, 124, 255, 0.08);
  color: var(--text-2);
}
.meta-line { color: var(--text-3); font-size: 0.92rem; margin-top: 12px; }
.two-col-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}
.mini-card {
  padding: 18px;
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.mini-card h3 { margin: 0 0 8px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero p.lead { max-width: none; }
  .app-window { transform: none; }
  .feature-grid, .steps, .compare { grid-template-columns: 1fr 1fr; }
  .spotlight, .spotlight.rev .spot-text { grid-template-columns: 1fr; order: unset; }
  .spotlight + .spotlight { margin-top: 56px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta .login, .nav-cta .btn-primary { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .site-header.menu-open .nav-links {
    display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
    position: absolute; top: 70px; left: 0; right: 0;
    background: var(--surface-2); border-bottom: 1px solid var(--border); padding: 14px 24px 22px;
  }
  .site-header.menu-open .nav-links a { padding: 10px 0; width: 100%; }
}

@media (max-width: 760px) {
  .section { padding: 70px 0; }
  .feature-grid, .steps, .compare { grid-template-columns: 1fr; }
  .bundle-callout,
  .two-col-list { grid-template-columns: 1fr; }
  .bundle-callout { align-items: stretch; }

  .app-body { grid-template-columns: 78px minmax(0, 1fr); }
  .app-nav { padding: 12px 7px; }
  .app-main { padding: 12px; }
  .stat-row { gap: 5px; }
  .stat { padding: 7px 5px; }
  .stat .k { font-size: 0.46rem; letter-spacing: 0; }
  .stat .v { font-size: 0.92rem; }
  .field { font-size: 0.66rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-box { padding: 40px 24px; }
  .stat-row { grid-template-columns: repeat(5, 1fr); }
  .price-amount .num { font-size: 3rem; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .app-window { transition: none; }
}

