/* ----------------------------------------------------------
   THEME TOKENS
   Default = Light Mode. Dark mode via [data-theme="dark"].
---------------------------------------------------------- */
:root {
  --bg-main:    #ffffff;
  --bg-alt:     #f7f8fc;
  --bg-section: #f1f3f9;
  --card-bg:      #ffffff;
  --card-bg-soft: #f4f6fb;
  --text-main:  #0f172a;
  --text-muted: #6b7280;
  --border-subtle: #e2e5ef;
  --accent:      #2563eb;
  --accent-soft: #3b82f6;
  --gold:        #2563eb;
  --shadow-soft: 0 4px 24px rgba(0,0,0,0.07);
  --radius-lg:   18px;
  --radius-md:   12px;
  --radius-pill: 999px;
  --max-width:   1120px;
}

[data-theme="dark"] {
  --bg-main:    #05060a;
  --bg-alt:     #0b0d14;
  --bg-section: #0f1119;
  --card-bg:      #101321;
  --card-bg-soft: #151829;
  --text-main:  #f7f7fb;
  --text-muted: #b3b7c9;
  --border-subtle: #25283a;
  --accent:      #ff8a3c;
  --accent-soft: #ffb36f;
  --gold:        #f4c15b;
  --shadow-soft: 0 24px 60px rgba(0,0,0,0.6);
}

/* ----------------------------------------------------------
   RESET + BASE
---------------------------------------------------------- */
*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }

body {
  font-family: system-ui,-apple-system,BlinkMacSystemFont,"SF Pro Text","Segoe UI",sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  transition: background 0.3s, color 0.3s;
}

[data-theme="dark"] body,
[data-theme="dark"] {
  background: radial-gradient(circle at top, #15192b 0, #05060a 55%, #020308 100%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.page { min-height: 100vh; }

/* ----------------------------------------------------------
   SHELL
---------------------------------------------------------- */
.shell {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 15px;
}
@media (max-width: 1200px) { .shell { padding: 0 40px; } }
@media (max-width: 900px)  { .shell { padding: 0 36px; } }
@media (max-width: 600px)  { .shell { padding: 0 28px; } }
@media (max-width: 400px)  { .shell { padding: 0 22px; } }

/* ----------------------------------------------------------
   HEADER
---------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.3s, border-color 0.3s;
}
[data-theme="dark"] .header {
  background: rgba(5,6,10,0.94);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--text-main);
}

.logo-mark {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: radial-gradient(circle at 20% 0, #ffe9b0, #f4c15b, #ff8a3c);
  box-shadow: 0 0 16px rgba(244,193,91,0.5);
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  color: var(--text-muted);
}

.nav a { position: relative; padding-bottom: 2px; transition: color 0.15s; }
.nav a:hover { color: var(--text-main); }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transition: width 0.18s ease-out;
}
.nav a:hover::after { width: 100%; }

/* THEME TOGGLE */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
  background: var(--card-bg);
  color: var(--text-main);
  cursor: pointer;
  font-size: 15px;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}
.theme-toggle:hover { border-color: var(--accent); }


/* theme toggle for index.php */
.theme-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.theme-gear {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  background: var(--card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-main);
}

.theme-menu {
  position: absolute;
  top: 42px;
  right: 0;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 6px;
  display: none;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-soft);
  z-index: 999;
}

.theme-menu.open {
  display: flex;
}

.theme-menu button {
  background: transparent;
  border: none;
  padding: 8px 10px;
  text-align: left;
  cursor: pointer;
  color: var(--text-main);
  border-radius: 6px;
}

.theme-menu button:hover {
  background: var(--bg-alt);
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px; height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg-main);
    border-top: 1px solid var(--border-subtle);
    padding: 8px 28px 16px;
    z-index: 50;
  }
  [data-theme="dark"] .nav {
    background: rgba(5,6,10,0.98);
    border-top-color: rgba(255,255,255,0.07);
  }
  .nav a {
    display: block;
    padding: 11px 0;
    font-size: 15px;
    border-bottom: 1px solid var(--border-subtle);
    width: 100%;
  }
  .nav a:last-child { border-bottom: none; }
  .nav.nav-open { display: flex; }
}

/* ----------------------------------------------------------
   BUTTONS
---------------------------------------------------------- */
.btn-primary {
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--accent), var(--gold));
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.15s;
  font-family: inherit;
}
[data-theme="dark"] .btn-primary { color: #1b1207; }
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-ghost {
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border-subtle);
  background: transparent;
  color: var(--text-main);
  font-size: 13px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  font-family: inherit;
}
.btn-ghost:hover { border-color: var(--accent); background: var(--bg-alt); }

/* ----------------------------------------------------------
   SHARED SECTION
---------------------------------------------------------- */
section { padding: 48px 0; }
.section-header { text-align: center; margin-bottom: 28px; }
.section-kicker {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 6px;
  font-weight: 600;
}
.section-title { font-size: clamp(20px,2.5vw,26px); font-weight: 700; margin-bottom: 8px; }
.section-sub   { font-size: 14px; color: var(--text-muted); max-width: 560px; margin: 0 auto; line-height: 1.6; }

/* PILL */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: rgba(244,193,91,0.1);
  border: 1px solid rgba(244,193,91,0.35);
  color: #a07010;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
[data-theme="dark"] .pill { color: #f4c15b; }

.pill-dot {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: #f4c15b;
  box-shadow: 0 0 8px rgba(244,193,91,0.7);
}

/* ----------------------------------------------------------
   HERO
---------------------------------------------------------- */
.hero { padding: 56px 0 48px; }

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(0,1fr);
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) { .hero-inner { grid-template-columns: 1fr; gap: 36px; } }

.hero-title {
  font-size: clamp(28px,4vw,44px);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 16px;
}
.hero-title span {
  background: linear-gradient(120deg, var(--accent), #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
[data-theme="dark"] .hero-title span {
  background: linear-gradient(120deg, #fff, #ffe9b0, #ffb36f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub { color: var(--text-muted); font-size: 15px; max-width: 480px; margin-bottom: 24px; line-height: 1.65; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-bottom: 12px; }
.hero-tagline { font-size: 12px; color: var(--text-muted); }

/* HERO PANEL */
.hero-panel {
  background: var(--card-bg-soft);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-subtle);
  transition: background 0.3s, border-color 0.3s;
}
[data-theme="dark"] .hero-panel {
  background: radial-gradient(circle at top left, #262a3f, #05060a);
  border-color: rgba(255,255,255,0.06);
}

.hero-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: 11px;
  color: var(--text-muted);
}
.hero-panel-header span:first-child { font-weight: 600; color: var(--text-main); }

.hero-panel-chip {
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  background: var(--bg-section);
  border: 1px solid var(--border-subtle);
  font-size: 10px;
  color: var(--text-muted);
}

.hero-panel-body {
  background: var(--bg-alt);
  border-radius: 12px;
  padding: 12px;
  border: 1px solid var(--border-subtle);
  font-size: 11px;
  transition: background 0.3s, border-color 0.3s;
}
[data-theme="dark"] .hero-panel-body {
  background: rgba(5,6,10,0.9);
  border-color: rgba(244,193,91,0.35);
  box-shadow: 0 0 20px rgba(244,193,91,0.15);
}

.hero-panel-row { display: flex; justify-content: space-between; margin-bottom: 7px; }
.hero-panel-label { color: var(--text-muted); }
.hero-panel-value { font-weight: 600; color: var(--text-main); }

.hero-panel-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  font-size: 11px;
  color: var(--text-muted);
}
.hero-panel-dot {
  width: 7px; height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34,197,94,0.8);
  margin-right: 6px;
}
.hero-panel-footer-left { display: flex; align-items: center; }
.hero-panel-footer-right { font-weight: 600; color: var(--accent); }
[data-theme="dark"] .hero-panel-footer-right { color: #f4c15b; }

/* ----------------------------------------------------------
   FEATURES
---------------------------------------------------------- */
.features { background: var(--bg-section); }
[data-theme="dark"] .features { background: radial-gradient(circle at top, #15192b, #05060a 60%); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 16px;
}
@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 580px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 18px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.feature-title { font-size: 14px; font-weight: 600; margin-bottom: 5px; }
.feature-text  { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ----------------------------------------------------------
   WHY
---------------------------------------------------------- */
.why { background: var(--bg-alt); }

.why-inner {
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(0,1fr);
  gap: 36px;
  align-items: center;
}
@media (max-width: 900px) { .why-inner { grid-template-columns: 1fr; } }

.why-title { font-size: clamp(20px,2.5vw,26px); font-weight: 700; margin-bottom: 10px; }
.why-text  { font-size: 14px; color: var(--text-muted); line-height: 1.65; max-width: 480px; }

.why-list {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.5;
}
.why-item:last-child { margin-bottom: 0; }
.why-bullet {
  width: 7px; height: 7px;
  border-radius: 999px;
  background: var(--accent);
  margin-top: 5px;
  flex-shrink: 0;
}
[data-theme="dark"] .why-bullet { background: #f4c15b; }
.why-item strong { color: var(--text-main); font-weight: 600; }

/* ----------------------------------------------------------
   PREVIEW
---------------------------------------------------------- */
.preview { background: var(--bg-section); }
[data-theme="dark"] .preview { background: radial-gradient(circle at top, #15192b, #05060a 60%); }

.preview-grid {
  display: grid;
  grid-template-columns: repeat(5,minmax(0,1fr));
  gap: 10px;
}
@media (max-width: 900px) { .preview-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 580px) { .preview-grid { grid-template-columns: repeat(2,1fr); } }

.preview-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 10px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}
.preview-thumb {
  height: 80px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--bg-section), var(--bg-alt));
  margin-bottom: 8px;
}
[data-theme="dark"] .preview-thumb { background: linear-gradient(135deg, #262a3f, #05060a); }
.preview-label { font-size: 12px; color: var(--text-muted); }

/* ----------------------------------------------------------
   ROADMAP
---------------------------------------------------------- */
.roadmap { background: var(--bg-alt); }

.roadmap-panel {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
[data-theme="dark"] .roadmap-panel {
  background: radial-gradient(circle at top left, #262a3f, #05060a);
  border-color: rgba(244,193,91,0.25);
}

.roadmap-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 16px;
  padding: 4px 0;
  scroll-behavior: smooth;
}
.roadmap-slider::-webkit-scrollbar { height: 5px; }
.roadmap-slider::-webkit-scrollbar-track { background: var(--bg-section); }
.roadmap-slider::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 999px; }

.roadmap-slide {
  flex: 0 0 100%;
  background: var(--card-bg-soft);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  border: 1px solid var(--border-subtle);
  scroll-snap-align: center;
}

.phase-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.phase-sub   { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; line-height: 1.5; }

.phase-list { columns: 3; column-gap: 20px; list-style: none; padding: 0; margin: 0; }
@media (max-width: 900px) { .phase-list { columns: 2; } }
@media (max-width: 580px) { .phase-list { columns: 1; } }

.phase-list li { break-inside: avoid; margin-bottom: 6px; font-size: 13px; color: var(--text-muted); }
.phase-list li::before { content: "• "; color: var(--accent); }
[data-theme="dark"] .phase-list li::before { color: #f4c15b; }

.roadmap-cta { display: flex; justify-content: flex-end; }
@media (max-width: 900px) { .roadmap-cta { justify-content: flex-start; } }

/* ----------------------------------------------------------
   PRICING — dark panel, always dark regardless of page theme
---------------------------------------------------------- */
.pricing {
  background: var(--bg-section);
  padding: 0 0 60px;
}
[data-theme="dark"] .pricing { background: var(--bg-section); }

.pricing-kicker {
  text-align: center;
  padding: 52px 0 28px;
}
.pricing-kicker .section-kicker { color: #d4980a; }
[data-theme="dark"] .pricing-kicker .section-kicker { color: #f4c15b; }

/* The panel is ALWAYS dark — it's a full-bleed dark box on both light and dark pages */
.pricing-panel {
  background: #121632;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(244,193,91,0.18);
  box-shadow: 0 32px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.03);
  padding: 38px 44px;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1.1fr;
  gap: 20px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Gold shimmer top edge */
.pricing-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244,193,91,0.7), transparent);
}

/* Subtle center glow */
.pricing-panel::after {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 200px;
  background: radial-gradient(ellipse, rgba(244,193,91,0.05), transparent 70%);
  pointer-events: none;
}

@media (max-width: 1100px) {
  .pricing-panel { grid-template-columns: 1fr 1fr; gap: 28px; padding: 30px 32px; }
}
@media (max-width: 640px) {
  .pricing-panel { grid-template-columns: 1fr; gap: 24px; padding: 26px 22px; }
}

/* Col 1: Eyebrow + headline */
.pricing-eyebrow {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f4c15b;
  margin-bottom: 10px;
}
.pricing-eyebrow::before { content: '★'; }

.pricing-headline {
  font-size: clamp(18px,2vw,24px);
  font-weight: 800;
  color: #f7f7fb;
  line-height: 1.2;
  margin-bottom: 10px;
}

.pricing-note { font-size: 12px; color: #6b7490; line-height: 1.6; }

/* Col 2: Countdown */
.pricing-col-timer { text-align: center; position:relative; right: 20px; }

.pricing-timer-label {
  font-size: 11px;
  color: #d7def3;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  font-weight: 600;
}

.countdown-blocks {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
}

.cd-block {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 9px;
  padding: 10px 12px;
  min-width: 54px;
  text-align: center;
}

.cd-num {
  font-size: 22px;
  font-weight: 800;
  color: #f7f7fb;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.cd-label {
  font-size: 9px;
  color: #6b7490;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
  font-weight: 600;
}

.pricing-scarcity {
  font-size: 12px;
  color: #6b7490;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-wrap: wrap;
}

.scarcity-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(244,193,91,0.14);
  border: 1px solid rgba(244,193,91,0.32);
  color: #f4c15b;
  font-weight: 800;
  font-size: 13px;
  border-radius: 999px;
  min-width: 30px;
  height: 26px;
  padding: 0 8px;
}

/* Col 3: Email form */
.pricing-form-label {
  font-size: 12px;
  color: #d7def3;
  margin-bottom: 12px;
  line-height: 1.55;
}

.pricing-form { display: flex; flex-direction: column; gap: 8px; }

.pricing-input {
  width: 100%;
  padding: 11px 14px;
  border-radius: 9px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.04);
  color: #f7f7fb;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.pricing-input::placeholder { color: rgba(255,255,255,0.25); }
.pricing-input:focus {
  border-color: rgba(244,193,91,0.45);
  background: rgba(255,255,255,0.07);
}

.pricing-submit {
  width: 100%;
  padding: 12px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff8a3c, #f4c15b);
  color: #1b1207;
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.15s, transform 0.15s;
}
.pricing-submit:hover { opacity: 0.9; transform: translateY(-1px); }

.pricing-submit-note {
  font-size: 11px;
  color: rgba(255,255,255,0.75);
  text-align: center;
  margin-top: 6px;
}

/* Col 4: Pricing ladder */
.pricing-ladder-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b7490;
  margin-bottom: 10px;
}

.ladder-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  margin-bottom: 6px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.04);
  font-size: 13px;
  color: #6b7490;
  transition: background 0.15s, border-color 0.15s;
}
.ladder-row:last-child { margin-bottom: 0; }
.ladder-row.active {
  background: rgba(244,193,91,0.08);
  border-color: rgba(244,193,91,0.26);
  color: #f7f7fb;
}

.ladder-price {
  font-weight: 700;
  color: #f7f7fb;
  white-space: nowrap;
}
.ladder-price .per { font-size: 11px; font-weight: 400; color: #6b7490; }

.ladder-save {
  font-size: 10.5px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 5px;
  white-space: nowrap;
  color: #f4c15b;
  background: rgba(244,193,91,0.1);
}
.ladder-save.dim { color: #444a62; background: transparent; font-weight: 400; }

.pricing-lock-line {
  text-align: center;
  font-size: 11.5px;
  color: rgba(255,255,255,0.75);
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  grid-column: 1 / -1;
}

/* ----------------------------------------------------------
   CTA
---------------------------------------------------------- */
.cta {
  background: var(--bg-section);
  text-align: center;
  padding: 60px 0;
}
[data-theme="dark"] .cta { background: radial-gradient(circle at top, #15192b, #05060a 60%); }
.cta-title { font-size: clamp(20px,2.5vw,26px); font-weight: 700; margin-bottom: 10px; }
.cta-sub   { font-size: 14px; color: var(--text-muted); margin-bottom: 22px; line-height: 1.6; }

/* ----------------------------------------------------------
   FAQ
---------------------------------------------------------- */
.faq { background: var(--bg-alt); padding: 60px 0; }

.faq-list { max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: var(--card-bg);
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  padding: 14px 16px;
  font-size: 13px;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--accent); }

.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-q span:first-child { font-weight: 600; color: var(--text-main); }

.faq-toggle {
  font-size: 18px;
  color: var(--text-muted);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-a { margin-top: 10px; color: var(--text-muted); font-size: 13px; display: none; line-height: 1.6; }
.faq-item.open .faq-a      { display: block; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }

/* ----------------------------------------------------------
   FOOTER
---------------------------------------------------------- */
.footer {
  background: var(--bg-main);
  border-top: 1px solid var(--border-subtle);
  padding: 24px 0;
  font-size: 12px;
  color: var(--text-muted);
  transition: background 0.3s;
}
[data-theme="dark"] .footer { background: #05060a; border-top-color: rgba(255,255,255,0.04); }

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links { display: flex; gap: 18px; }
.footer-links a { color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }

@media (max-width: 580px) { .footer-inner { flex-direction: column; align-items: flex-start; } }