/* =========================================================
   TradewithIce Orderflow Suite — Landing Page Styles
   Brand: Roboto + Lato · Ice Blue #4a9ebb · Crimson #8b2142
   ========================================================= */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Lato:wght@300;400;700;900&display=swap');

:root {
  --bg-base:      #0a0a0f;
  --bg-card:      #0f0f17;
  --bg-card2:     #13131e;
  --border:       rgba(255,255,255,0.07);
  --border-ice:   rgba(74,158,187,0.25);
  --ice:          #4a9ebb;
  --ice-dim:      #2a5e75;
  --ice-glow:     rgba(74,158,187,0.15);
  --crimson:      #8b2142;
  --crimson-dim:  rgba(139,33,66,0.2);
  --crimson-text: #e8706a;
  --gold:         #d4a574;
  --green:        #4ade80;
  --yellow:       #fbbf24;
  --purple:       #a78bfa;
  --gray-dim:     #4b5563;
  --text-main:    #f0f0f5;
  --text-sub:     rgba(255,255,255,0.55);
  --text-dim:     rgba(255,255,255,0.3);
  --radius-lg:    12px;
  --radius-md:    8px;
  --radius-sm:    4px;
  --font:         'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-label:   'Lato', sans-serif;
  --max-w:        1200px;
  --transition:   0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg-base);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: var(--ice-dim); border-radius: 3px; }

/* ── Typography ── */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.2; font-family: var(--font); }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); letter-spacing: -0.02em; }
h3 { font-size: 1.35rem; letter-spacing: -0.01em; }
h4 { font-size: 1.05rem; }

.gradient-text {
  background: linear-gradient(135deg, #7ecee8 0%, #4a9ebb 50%, #2a7a9a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-label);
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--ice);
  color: #0a0a0f;
  box-shadow: 0 4px 20px rgba(74,158,187,0.3);
}
.btn-primary:hover {
  background: #5fb8d4;
  box-shadow: 0 6px 30px rgba(74,158,187,0.5);
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--text-sub);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  color: var(--text-main);
  border-color: rgba(255,255,255,0.15);
}
.btn-large { padding: 16px 40px; font-size: 1rem; width: 100%; justify-content: center; }

/* ── Section common ── */
section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ice);
  background: rgba(74,158,187,0.08);
  border: 1px solid rgba(74,158,187,0.2);
  border-radius: 2px;
  padding: 4px 12px;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--text-sub);
  font-size: 1rem;
  max-width: 580px;
  margin: 14px auto 0;
  line-height: 1.75;
}

/* =========================================================
   NAV
   ========================================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,15,0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}
.nav-logo-text { display: flex; flex-direction: column; align-items: flex-start; gap: 1px; }
.logo-ice { font-size: 1rem; font-weight: 700; color: var(--text-main); font-family: var(--font); letter-spacing: -0.01em; line-height: 1.1; }
.logo-suite { font-size: 0.6rem; font-weight: 700; color: var(--ice); letter-spacing: 0.1em; font-family: var(--font-label); text-transform: uppercase; line-height: 1; }
.nav-links { display: flex; list-style: none; align-items: center; gap: 4px; }
.nav-links a {
  color: var(--text-sub);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-links a:hover { color: var(--text-main); background: rgba(255,255,255,0.04); }
.nav-cta {
  background: var(--ice) !important;
  color: #0a0a0f !important;
  font-weight: 700 !important;
  padding: 7px 16px !important;
  border-radius: 6px !important;
  border: 1px solid transparent !important;
  font-family: var(--font-label) !important;
  letter-spacing: 0.05em !important;
  box-shadow: 0 2px 12px rgba(74,158,187,0.25) !important;
}
.nav-cta:hover {
  background: #5fb8d4 !important;
  box-shadow: 0 4px 20px rgba(74,158,187,0.4) !important;
}
.nav-cta--activate {
  background: #8b2142 !important;
  border: 1px solid #8b2142 !important;
  color: #fff !important;
  box-shadow: none !important;
}
.nav-cta--activate:hover {
  background: #a8284f !important;
  border-color: #a8284f !important;
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(139,33,66,0.4) !important;
}
.nav-cta--journal {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: #0a0a0f !important;
  box-shadow: 0 2px 12px rgba(212,165,116,0.25) !important;
}
.nav-cta--journal:hover {
  background: #e0b882 !important;
  border-color: #e0b882 !important;
  color: #0a0a0f !important;
  box-shadow: 0 4px 20px rgba(212,165,116,0.4) !important;
}
.ind-launch-btn {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  background: var(--gold);
  color: #0a0a0f;
  font-size: 0.78rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
}
.ind-launch-btn:hover {
  background: #e0b882;
  border-color: #e0b882;
}
.nav-burger { display: none; background: none; border: none; color: var(--text-main); font-size: 1.4rem; cursor: pointer; padding: 10px 12px; }

/* =========================================================
   HERO
   ========================================================= */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 64px;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(74,158,187,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,158,187,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.hero-glow-blue {
  width: 600px; height: 400px;
  background: rgba(74,158,187,0.14);
  top: -100px; left: -100px;
}
.hero-glow-red {
  width: 400px; height: 300px;
  background: rgba(139,33,66,0.12);
  top: 100px; right: -50px;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  text-align: center;
}
.hero-badge {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ice);
  background: rgba(74,158,187,0.08);
  border: 1px solid rgba(74,158,187,0.22);
  border-radius: 2px;
  padding: 5px 14px;
  margin-bottom: 28px;
}
.hero-title { margin-bottom: 24px; }
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-sub);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.8;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: inline-flex;
  align-items: center;
  padding: 18px 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
  margin-bottom: 60px;
}
.stat { display: flex; flex-direction: column; align-items: center; padding: 0 24px; }
.stat-num { font-size: 1.5rem; font-weight: 700; color: var(--text-main); font-family: var(--font-label); }
.stat-label { font-family: var(--font-label); font-size: 0.65rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700; margin-top: 2px; }
.stat-div { width: 1px; height: 32px; background: var(--border); }

.hero-chart-wrap {
  position: relative;
  z-index: 2;
  padding: 0 24px 0;
  max-width: 1200px;
  margin: 0 auto;
}
/* ── Hero Card Deck ── */
.hero-deck-wrap {
  position: relative;
  margin: 0 auto;
  max-width: 1100px;
  padding-right: 120px; /* room for back card to peek */
  padding-bottom: 30px; /* prevent cards overflowing into hint */
  cursor: pointer;
  user-select: none;
}

.hero-deck-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: absolute;
  width: calc(100% - 120px);
  will-change: transform;
}
.hero-deck-card img { width: 100%; display: block; }

/* Spacer so wrap has height */
.hero-deck-spacer {
  width: calc(100% - 120px);
  visibility: hidden;
  pointer-events: none;
}
.hero-deck-spacer img { width: 100%; display: block; }

/* Blue card — behind, peeking out on the right */
.hero-deck-card--blue {
  z-index: 1;
  right: 0;
  top: 20px;
  transform: rotate(3deg);
  border: 1px solid rgba(74,158,187,0.35);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(74,158,187,0.08);
}

/* Red card — front, on top left */
.hero-deck-card--red {
  z-index: 2;
  left: 0;
  top: 0;
  transform: rotate(-1deg);
  border: 1px solid rgba(139,33,66,0.35);
  box-shadow: 0 28px 60px rgba(0,0,0,0.65), 0 0 40px rgba(139,33,66,0.1);
}

/* Flipped: Red goes to back-right peek */
.hero-deck-wrap.deck-flipped .hero-deck-card--red {
  z-index: 1;
  left: auto;
  right: 0;
  top: 20px;
  transform: rotate(3deg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(139,33,66,0.08);
}
/* Flipped: Blue comes to front-left */
.hero-deck-wrap.deck-flipped .hero-deck-card--blue {
  z-index: 2;
  right: auto;
  left: 0;
  top: 0;
  transform: rotate(-1deg);
  box-shadow: 0 28px 60px rgba(0,0,0,0.65), 0 0 40px rgba(74,158,187,0.12);
}

.hero-deck-hint {
  text-align: center;
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 36px;
  position: relative;
  z-index: 10;
  clear: both;
}
.hero-preset-label {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 3;
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
/* Blue label sits on the right side so it's visible when peeking */
.hero-deck-card--blue .hero-preset-label {
  left: auto;
  right: 14px;
}
/* When blue is flipped to front, move label back to left */
.hero-deck-wrap.deck-flipped .hero-deck-card--blue .hero-preset-label {
  right: auto;
  left: 14px;
}
/* When red is flipped to back/peek, move its label to the right */
.hero-deck-wrap.deck-flipped .hero-deck-card--red .hero-preset-label {
  left: auto;
  right: 14px;
}
.hero-preset-label--red {
  background: var(--crimson-dim);
  border: 1px solid rgba(139,33,66,0.5);
  color: var(--crimson-text);
}
.hero-preset-label--blue {
  background: rgba(74,158,187,0.12);
  border: 1px solid rgba(74,158,187,0.4);
  color: var(--ice);
}
.hero-chart-img { width: 100%; display: block; }
.hero-chart-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 75%, var(--bg-base) 100%);
}
@media (max-width: 680px) {
  .hero-presets-row { grid-template-columns: 1fr; }
}

/* =========================================================
   TRUST BAR
   ========================================================= */
#trust {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.trust-nt-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.6;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.trust-nt-link:hover { opacity: 1; transform: scale(1.04); }
.trust-nt-logo { height: 28px; width: auto; display: block; }
.trust-nt-label {
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
}
.trust-nt-link { text-decoration: none; }

/* =========================================================
   INDICATOR INDEX
   ========================================================= */
#indicator-index {
  padding: 52px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: linear-gradient(180deg, rgba(74,158,187,0.03) 0%, transparent 100%);
}

.ind-index-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 36px;
}

.ind-index-eyebrow {
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ice);
  opacity: 0.7;
  white-space: nowrap;
  flex-shrink: 0;
}

.ind-index-rule {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.07);
}

.ind-index-count {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
  flex-shrink: 0;
}

.ind-index-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(10, auto);
  grid-auto-flow: column;
  gap: 0 56px;
}

.ind-index-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  text-decoration: none;
  transition: border-color 0.2s ease;
}

.ind-index-row:hover { border-bottom-color: rgba(74,158,187,0.18); }
.ind-index-row:hover .ind-index-num  { color: var(--ice); opacity: 1; }
.ind-index-row:hover .ind-index-name { color: #fff; }

.ind-index-row--spacer { pointer-events: none; border-bottom-color: transparent; }
.ind-index-row--soon { opacity: 0.42; }
.ind-index-row--soon:hover { opacity: 0.65; }
.ind-index-row--soon .ind-index-name { font-style: italic; }

.ind-index-num {
  font-family: var(--font-label);
  font-size: 0.68rem;
  color: var(--ice);
  opacity: 0.45;
  letter-spacing: 0.06em;
  flex-shrink: 0;
  min-width: 22px;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.ind-index-name {
  font-size: 0.96rem;
  color: var(--text-main);
  font-weight: 400;
  white-space: nowrap;
  transition: color 0.2s ease;
  flex-shrink: 0;
}

.ind-index-leader {
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.1) 0px,
    rgba(255,255,255,0.1) 3px,
    transparent 3px,
    transparent 8px
  );
  margin-bottom: 3px;
  min-width: 16px;
}

.ind-index-type {
  font-family: var(--font-label);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.2s ease;
}

.ind-index-row:hover .ind-index-type { color: var(--text-sub); }

.ind-index-badge {
  font-family: var(--font-label);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 999px;
  flex-shrink: 0;
  align-self: center;
}

.ind-index-badge--new {
  color: var(--green);
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.3);
}

.ind-index-badge--soon {
  color: var(--ice);
  background: rgba(74,158,187,0.08);
  border: 1px solid rgba(74,158,187,0.2);
}

.ind-index-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 0 6px;
}

.ind-index-divider::before,
.ind-index-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.07);
}

.ind-index-divider-label {
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
}

@media (max-width: 640px) {
  .ind-index-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-flow: row;
    gap: 0;
  }
  .ind-index-row--spacer { display: none; }
  .ind-index-row {
    flex-wrap: wrap;
    row-gap: 2px;
  }
  .ind-index-name, .ind-index-type {
    white-space: normal;
    flex-shrink: 1;
  }
  .ind-index-leader { display: none; }
  .ind-index-type { width: 100%; padding-left: 32px; }
}

/* =========================================================
   INDICATORS
   ========================================================= */
#indicators { background: var(--bg-base); }

.indicators-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.ind-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 32px;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}
.ind-card:hover { border-color: rgba(74,158,187,0.25); transform: translateY(-2px); }

.ind-card--featured {
  border-color: rgba(74,158,187,0.15);
  background: rgba(74,158,187,0.03);
  box-shadow: inset 0 1px 0 rgba(74,158,187,0.08);
}
.ind-card-tag {
  position: absolute;
  top: 20px; right: 20px;
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ice);
  background: rgba(74,158,187,0.1);
  border: 1px solid rgba(74,158,187,0.2);
  border-radius: 2px;
  padding: 3px 10px;
}
.ind-card-tag--new {
  left: 20px; right: auto;
  color: var(--green);
  background: rgba(74,222,128,0.1);
  border-color: rgba(74,222,128,0.3);
}
.ind-name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.ind-name-row .ind-name { margin: 0; }
.ind-badge-new {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.3);
  border-radius: 2px;
  padding: 3px 10px;
  white-space: nowrap;
}
/* ── Click to Order — alternating how-to rows ── */
.cbs-how-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  margin-top: 36px;
}
.cbs-how-row--flip .cbs-how-img { order: 2; }
.cbs-how-row--flip .cbs-how-text { order: 1; }
.cbs-step-num {
  font-family: var(--font-label);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ice);
  margin-bottom: 8px;
}
.cbs-step-title {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-main);
  margin: 0 0 10px;
}
.cbs-step-desc {
  color: var(--text-sub);
  font-size: 0.88rem;
  line-height: 1.75;
  margin: 0;
}
@media (max-width: 680px) {
  .cbs-how-row { grid-template-columns: 1fr; }
  .cbs-how-row--flip .cbs-how-img { order: 0; }
  .cbs-how-row--flip .cbs-how-text { order: 0; }
}

.ind-number {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  font-family: var(--font-label);
  margin-bottom: -10px;
}
.ind-name { font-size: 1.5rem; margin-bottom: 6px; }
.ind-tagline { color: var(--ice); font-size: 0.88rem; font-weight: 500; margin-bottom: 16px; font-family: var(--font-label); }
.ind-desc { color: var(--text-sub); font-size: 0.93rem; margin-bottom: 24px; line-height: 1.75; }
.ind-footnote {
  color: var(--text-sub);
  opacity: 0.6;
  font-size: 0.78rem;
  font-style: italic;
  margin-top: -16px;
  margin-bottom: 24px;
}

.ind-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.ind-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--text-sub); }
.ind-feature .feat-dot { margin-top: 7px; }
.ind-feature strong { white-space: nowrap; }
.ind-feature--highlight {
  color: var(--ice);
  font-weight: 500;
  background: rgba(74,158,187,0.06);
  border: 1px solid rgba(74,158,187,0.15);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  margin: 0 -10px;
}
.ind-callout--gold {
  color: var(--gold);
  font-weight: 500;
  background: rgba(212,165,116,0.08);
  border: 1px solid rgba(212,165,116,0.3);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  box-shadow: 0 0 16px rgba(212,165,116,0.08);
}
.feat-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.feat-blue   { background: var(--ice);     box-shadow: 0 0 6px rgba(74,158,187,0.6); }
.feat-red    { background: var(--crimson-text); box-shadow: 0 0 6px rgba(232,112,106,0.5); }
.feat-green  { background: var(--green);   box-shadow: 0 0 6px rgba(74,222,128,0.5); }
.feat-yellow { background: var(--yellow);  box-shadow: 0 0 6px rgba(251,191,36,0.5); }
.feat-gray   { background: var(--gray-dim); }
.feat-purple { background: var(--purple);  box-shadow: 0 0 6px rgba(167,139,250,0.5); }
.feat-orange   { background: #fb923c; box-shadow: 0 0 6px rgba(251,146,60,0.5); }
.feat-cyan     { background: #22d3ee; box-shadow: 0 0 6px rgba(34,211,238,0.5); }
.feat-darkblue { background: #2563eb; box-shadow: 0 0 6px rgba(37,99,235,0.5); }
.feat-gold     { background: var(--gold); box-shadow: 0 0 6px rgba(212,165,116,0.5); }

/* Gradient dot strip — shows a row's color sequence at a glance */
.feat-gradient {
  display: inline-flex;
  gap: 4px;
  flex-shrink: 0;
}
.feat-gradient .feat-dot { width: 7px; height: 7px; margin-top: 0; }

/* Full-width wrapper for the Market Pulse Box color table */
/* ── Market Pulse 2×2 Grid ── */
.pulse-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.pulse-grid-item {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.25);
}
.pulse-grid-item img {
  width: 100%;
  height: 110px;
  object-fit: contain;
  display: block;
  background: rgba(0,0,0,0.3);
}
.pulse-grid-label {
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ice);
  text-align: center;
  padding: 6px 0;
  background: rgba(74,158,187,0.05);
}

/* ── Image Carousel (reusable) ── */
.img-carousel-wrap {
  margin-top: 28px;
  width: 100%;
}

.img-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.img-carousel-track {
  display: grid;
  grid-template-columns: 100%;
}

.img-carousel-slide {
  display: none;
  flex-direction: column;
}
.img-carousel-slide.active { display: flex; }

.img-carousel-slide .ind-img-wrap {
  border-radius: 0;
  margin: 0;
  overflow: hidden;
  display: block;
  background: rgba(0,0,0,0.3);
}
.img-carousel-slide .ind-img-wrap img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.img-carousel-label {
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ice);
  text-align: center;
  padding: 12px 16px;
  background: rgba(74,158,187,0.05);
  border-top: 1px solid rgba(74,158,187,0.15);
}

.img-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px 0;
  background: rgba(0,0,0,0.2);
  border-top: 1px solid var(--border);
}

.img-carousel-btn {
  background: rgba(74,158,187,0.1);
  border: 1px solid rgba(74,158,187,0.25);
  color: var(--ice);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
  line-height: 1;
}
.img-carousel-btn:hover {
  background: rgba(74,158,187,0.22);
  border-color: rgba(74,158,187,0.5);
}

.img-carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.img-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.img-dot.active {
  background: var(--ice);
  transform: scale(1.3);
}

.ind-img-wrap {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  cursor: zoom-in;
}
.ind-img-wrap img { width: 100%; display: block; transition: transform 0.25s ease; }
.ind-img-wrap:hover img { transform: scale(1.02); }
.ind-img-wrap::after {
  content: '⤢';
  position: absolute;
  bottom: 10px; right: 10px;
  width: 28px; height: 28px;
  background: rgba(10,10,15,0.75);
  border: 1px solid rgba(74,158,187,0.4);
  border-radius: 4px;
  color: var(--ice);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.ind-img-wrap:hover::after { opacity: 1; }
.ind-img-cap { font-size: 0.72rem; color: var(--text-dim); text-align: center; padding: 10px; background: rgba(0,0,0,0.3); font-family: var(--font-label); letter-spacing: 0.04em; }

.ind-img-placeholder {
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.15);
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.placeholder-inner { text-align: center; display: flex; flex-direction: column; gap: 6px; padding: 20px; }
.placeholder-icon { font-size: 2rem; }
.placeholder-text { font-size: 0.88rem; color: var(--text-dim); }
.placeholder-sub { font-size: 0.72rem; color: rgba(255,255,255,0.12); font-family: var(--font-label); letter-spacing: 0.05em; }

.ind-bottom-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

/* ── Just Launched Banner ── */
.launch-banner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 12px 26px;
  background: linear-gradient(90deg, rgba(74,222,128,0.12), rgba(74,158,187,0.12));
  border: 1px solid rgba(74,222,128,0.4);
  border-radius: 999px;
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-sub);
  text-transform: uppercase;
  box-shadow: 0 0 0 0 rgba(74,222,128,0.35);
  animation: launch-banner-pulse 2.4s ease-in-out infinite;
}
.launch-banner strong { color: var(--green); }
.launch-link {
  text-decoration: none;
  border-bottom: 1px dashed rgba(74,222,128,0.5);
  transition: border-color 0.2s ease, opacity 0.2s ease;
}
.launch-link:hover {
  border-bottom-color: var(--green);
  opacity: 0.85;
}
.launch-banner-icon {
  color: var(--green);
  font-size: 1rem;
  animation: next-update-flicker 2.4s ease-in-out infinite;
}
@keyframes launch-banner-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.28); border-color: rgba(74,222,128,0.4); }
  50% { box-shadow: 0 0 24px 4px rgba(74,222,128,0.22); border-color: rgba(74,222,128,0.7); }
}
@media (max-width: 560px) {
  .launch-banner {
    font-size: 0.68rem;
    padding: 10px 16px;
    white-space: normal;
    text-align: center;
  }
}

/* ── Next Update Banner ── */
.next-update-banner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 12px 26px;
  background: linear-gradient(90deg, rgba(74,158,187,0.12), rgba(139,33,66,0.12));
  border: 1px solid rgba(74,158,187,0.4);
  border-radius: 999px;
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-sub);
  text-transform: uppercase;
  box-shadow: 0 0 0 0 rgba(74,158,187,0.35);
  animation: next-update-pulse 2.4s ease-in-out infinite;
}
.next-update-banner strong { color: var(--ice); }
.next-update-link {
  text-decoration: none;
  border-bottom: 1px dashed rgba(74,158,187,0.5);
  transition: border-color 0.2s ease, opacity 0.2s ease;
}
.next-update-link:hover {
  border-bottom-color: var(--ice);
  opacity: 0.85;
}
.next-update-icon {
  color: var(--ice);
  font-size: 1rem;
  animation: next-update-flicker 2.4s ease-in-out infinite;
}
@keyframes next-update-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,158,187,0.28); border-color: rgba(74,158,187,0.4); }
  50% { box-shadow: 0 0 24px 4px rgba(74,158,187,0.22); border-color: rgba(74,158,187,0.7); }
}
@keyframes next-update-flicker {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}
@media (max-width: 560px) {
  .next-update-banner {
    font-size: 0.68rem;
    padding: 10px 16px;
    white-space: normal;
    text-align: center;
  }
}

/* ── Shipped feature card (two-column layout, no "coming soon" styling) ── */
.feature-card {
  margin-top: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 36px;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}
.feature-card:hover { border-color: rgba(74,158,187,0.25); transform: translateY(-2px); }
.feature-card--gold {
  background: linear-gradient(135deg, rgba(212,165,116,0.08), rgba(139,33,66,0.05));
  border: 1px solid rgba(212,165,116,0.4);
  box-shadow: 0 0 32px rgba(212,165,116,0.12);
}
.feature-card--gold:hover { border-color: rgba(212,165,116,0.6); }
.feature-card--new {
  background: linear-gradient(135deg, rgba(139,33,66,0.07), rgba(10,10,15,0.0));
  border: 1px solid rgba(139,33,66,0.25);
  border-left: 3px solid #8b2142;
  box-shadow: 0 0 32px rgba(139,33,66,0.1);
}
.feature-card--new:hover { border-color: rgba(139,33,66,0.5); border-left-color: #8b2142; }
.feature-card--ice {
  background: linear-gradient(135deg, rgba(74,158,187,0.07), rgba(10,10,15,0.0));
  border: 1px solid rgba(74,158,187,0.35);
  box-shadow: 0 0 32px rgba(74,158,187,0.1);
}
.feature-card--ice:hover { border-color: rgba(74,158,187,0.6); }

/* ── Depth Map Teaser ── */
.depth-map-teaser {
  margin-top: 16px;
  background: rgba(74,158,187,0.03);
  border: 1px dashed rgba(74,158,187,0.2);
  border-radius: var(--radius-md);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.depth-map-teaser::before {
  content: 'COMING SOON';
  position: absolute;
  top: 18px; right: 20px;
  font-family: var(--font-label);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--ice);
  opacity: 0.5;
}
.depth-map-teaser--top {
  margin-top: 0;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(212,165,116,0.08), rgba(139,33,66,0.05));
  border: 1px solid rgba(212,165,116,0.4);
  box-shadow: 0 0 32px rgba(212,165,116,0.12);
}
.depth-map-teaser--top::before {
  color: var(--gold);
  opacity: 0.8;
}
.depth-map-teaser--top .depth-map-badge {
  color: var(--gold);
  background: rgba(212,165,116,0.1);
  border-color: rgba(212,165,116,0.3);
}
.depth-map-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

/* ── Performance Tracker Journal — alternating rows ── */
.journal-header { margin-bottom: 8px; }
.journal-header .ind-desc { margin-bottom: 0; }

.journal-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(212,165,116,0.15);
}
.journal-row--reverse .journal-row-img { order: 2; }
.journal-row--reverse .journal-row-text { order: 1; }

.journal-row-title {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 10px;
}
.journal-row-text .ind-desc { margin-bottom: 14px; }

@media (max-width: 760px) {
  .journal-row { grid-template-columns: 1fr; }
  .journal-row--reverse .journal-row-img { order: 1; }
  .journal-row--reverse .journal-row-text { order: 2; }
}
.depth-map-badge {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ice);
  background: rgba(74,158,187,0.1);
  border: 1px solid rgba(74,158,187,0.25);
  border-radius: 2px;
  padding: 3px 10px;
  margin-bottom: 12px;
}
.depth-map-placeholder {
  aspect-ratio: 16/9;
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(74,158,187,0.2);
  background: rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.depth-map-soon {
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(74,158,187,0.3);
}
#market-pulse-feature .depth-map-inner {
  align-items: center;
}
@media (max-width: 680px) {
  .depth-map-inner { grid-template-columns: 1fr; }
}

/* =========================================================
   HOW IT WORKS
   ========================================================= */
#how-it-works {
  background: rgba(255,255,255,0.015);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}
.how-step {
  flex: 1;
  min-width: 200px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 28px;
}
.step-num {
  width: 38px; height: 38px;
  background: rgba(74,158,187,0.12);
  border: 1px solid rgba(74,158,187,0.3);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-family: var(--font-label);
  font-size: 1rem;
  color: var(--ice);
  margin-bottom: 16px;
}
.how-step h4 { margin-bottom: 10px; }
.how-step p { color: var(--text-sub); font-size: 0.9rem; line-height: 1.7; }
.how-arrow { color: var(--text-dim); font-size: 1.4rem; padding-top: 42px; flex-shrink: 0; }

.divergence-section { }
.divergence-section h3 { font-size: 1.7rem; margin-bottom: 8px; letter-spacing: -0.02em; }
.div-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 14px; margin: 32px 0; }
.div-card {
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid;
  border-left-width: 3px;
  position: relative;
}
.div-bearish { background: rgba(139,33,66,0.05); border-color: rgba(139,33,66,0.2); border-left-color: var(--crimson); }
.div-bullish { background: rgba(74,158,187,0.05); border-color: rgba(74,158,187,0.2); border-left-color: var(--ice); }
.div-label {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.div-bearish .div-label { color: var(--crimson-text); }
.div-bullish .div-label { color: var(--ice); }
.div-card h4 { margin-bottom: 10px; font-size: 1rem; }
.div-card p { color: var(--text-sub); font-size: 0.875rem; line-height: 1.65; }
.no-repaint-note {
  text-align: center;
  color: var(--green);
  font-size: 0.88rem;
  padding: 14px;
  background: rgba(74,222,128,0.05);
  border: 1px solid rgba(74,222,128,0.15);
  border-radius: var(--radius-sm);
}

/* =========================================================
   PRESETS
   ========================================================= */
#presets { background: var(--bg-base); }

.presets-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.preset-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}
.preset-card:hover { transform: translateY(-4px); }
.preset-red:hover   { border-color: rgba(139,33,66,0.4); box-shadow: 0 8px 30px rgba(139,33,66,0.08); }
.preset-extreme:hover { border-color: rgba(212,165,116,0.3); box-shadow: 0 8px 30px rgba(212,165,116,0.06); }
.preset-blue:hover  { border-color: rgba(74,158,187,0.4); box-shadow: 0 8px 30px rgba(74,158,187,0.08); }

.preset-swatch { display: flex; gap: 4px; justify-content: center; margin-bottom: 20px; }
.swatch { width: 20px; height: 44px; border-radius: 3px; }
/* Team Red swatches */
.swatch-r9 { background: #c0392b; }
.swatch-r7 { background: #922b21; }
.swatch-r5 { background: #6e2219; }
.swatch-r3 { background: #4a1810; }
.swatch-n  { background: #1a1a26; }
.swatch-b3 { background: #1a3d50; }
.swatch-b5 { background: #2a6a8a; }
.swatch-b7 { background: #3d8fad; }
.swatch-b9 { background: #4a9ebb; }
/* Extreme Candles */
.swatch-dim { background: rgba(255,255,255,0.06); }
/* Team Blue swatches */
.swatch-tb9 { background: #a8dce8; }
.swatch-tb7 { background: #7ecee8; }
.swatch-tb5 { background: #4a9ebb; }
.swatch-tb3 { background: #2a6a8a; }
.swatch-ts3 { background: #2e3040; }
.swatch-ts5 { background: #454860; }
.swatch-ts7 { background: #606480; }
.swatch-ts9 { background: #8890a0; }

.preset-card h3 { margin-bottom: 12px; }
.preset-card p { color: var(--text-sub); font-size: 0.88rem; line-height: 1.75; }
.preset-badge {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ice);
  background: rgba(74,158,187,0.1);
  border: 1px solid rgba(74,158,187,0.25);
  border-radius: 2px;
  padding: 3px 10px;
}

/* =========================================================
   INSTALL
   ========================================================= */
#install {
  background: rgba(255,255,255,0.015);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.install-steps { display: flex; flex-direction: column; gap: 0; margin-bottom: 48px; }
.install-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.install-step:last-child { border-bottom: none; }
.install-num {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(74,158,187,0.08);
  border: 1px solid rgba(74,158,187,0.25);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-family: var(--font-label);
  font-size: 1.1rem;
  color: var(--ice);
}
.install-content h4 { margin-bottom: 8px; }
.install-content p { color: var(--text-sub); font-size: 0.93rem; }
code {
  font-family: var(--font-label);
  font-size: 0.82em;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1px 6px;
  color: var(--ice);
  letter-spacing: 0.02em;
}

.req-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 3px solid var(--ice);
  border-radius: var(--radius-md);
  padding: 32px;
}
.req-box h4 {
  margin-bottom: 20px;
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ice);
}
.req-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.req-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-sub); }
.req-icon { color: var(--ice); font-weight: 700; }

/* =========================================================
   FAQ
   ========================================================= */
#faq { background: var(--bg-base); }

.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 6px; }
.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item[open] { border-color: rgba(74,158,187,0.25); }
.faq-item summary {
  padding: 20px 24px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.97rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--ice);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 24px 20px;
  color: var(--text-sub);
  font-size: 0.93rem;
  line-height: 1.75;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 16px;
}

/* =========================================================
   BUY / CTA
   ========================================================= */
#buy {
  background: var(--bg-base);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.buy-glow-blue, .buy-glow-red {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.buy-glow-blue { width: 500px; height: 300px; background: rgba(74,158,187,0.12); top: -50px; left: -100px; }
.buy-glow-red  { width: 400px; height: 250px; background: rgba(139,33,66,0.1); bottom: -50px; right: -50px; }

.buy-inner { position: relative; z-index: 2; }
.buy-badge {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--crimson-text);
  background: var(--crimson-dim);
  border: 1px solid rgba(139,33,66,0.4);
  border-radius: 2px;
  padding: 4px 12px;
  margin-bottom: 20px;
}
.buy-title { margin-bottom: 16px; }
.buy-sub { color: var(--text-sub); font-size: 1rem; margin-bottom: 48px; }

.pricing-card {
  max-width: 460px;
  margin: 0 auto;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(74,158,187,0.2);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: 0 0 60px rgba(74,158,187,0.08), 0 32px 64px rgba(0,0,0,0.5);
}
.price-header { margin-bottom: 32px; }
.price-name {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-dim);
}
.price-amount { display: flex; align-items: baseline; gap: 4px; justify-content: center; margin: 12px 0 4px; }
.price-currency { font-size: 1.4rem; font-weight: 500; color: var(--text-sub); }
.price-num { font-size: 3.2rem; font-weight: 700; color: var(--text-main); font-family: var(--font-label); }
.price-per { font-family: var(--font-label); font-size: 0.75rem; font-weight: 700; color: var(--text-dim); letter-spacing: 0.08em; text-transform: uppercase; }
.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.price-features li { color: var(--text-sub); font-size: 0.93rem; }
.price-note {
  font-family: var(--font-label);
  font-size: 0.72rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: 16px;
  letter-spacing: 0.03em;
}

/* =========================================================
   FOOTER
   ========================================================= */
#footer {
  background: #070709;
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand { }
.footer-logo-img { width: 40px !important; height: 40px !important; max-width: 40px !important; object-fit: contain; margin-bottom: 14px; display: block; }
.footer-about-title {
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 10px;
}
.footer-brand p { color: var(--text-sub); font-size: 0.88rem; line-height: 1.75; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links h5 {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.footer-links a { color: var(--text-sub); text-decoration: none; font-size: 0.88rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--ice); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-family: var(--font-label);
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

/* =========================================================
   RISK DISCLOSURE TICKER
   ========================================================= */
#risk {
  background: rgba(212,165,116,0.06);
  border-top: 1px solid rgba(212,165,116,0.2);
  border-bottom: 1px solid rgba(212,165,116,0.2);
  overflow: hidden;
  padding: 10px 0;
}
.risk-ticker-wrap {
  overflow: hidden;
  white-space: nowrap;
}
.risk-ticker {
  display: inline-flex;
  gap: 60px;
  animation: ticker-scroll 40s linear infinite;
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d4a574;
}
.risk-ticker span { flex-shrink: 0; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================================
   LIGHTBOX
   ========================================================= */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
#lightbox.active { display: flex; }
#lightbox-img {
  max-width: 92vw;
  max-height: 92vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 0 80px rgba(0,0,0,0.8);
  animation: lb-in 0.2s ease;
}
@keyframes lb-in {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

/* =========================================================
   MOBILE
   ========================================================= */
@media (max-width: 900px) {
  .indicators-grid { grid-template-columns: 1fr; }
  .ind-bottom-grid { grid-template-columns: 1fr; }
  .div-grid { grid-template-columns: 1fr 1fr; }
  .presets-grid { grid-template-columns: 1fr; }
  .req-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    right: 12px;
    left: auto;
    width: auto;
    background: rgba(7,7,15,0.98);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 12px 16px 16px;
    gap: 4px;
  }
  .nav-links.open li { width: 100%; }
  .nav-links.open a { display: block; padding: 10px 0; width: auto; }
  .nav-links.open .nav-cta { padding: 7px 16px !important; width: 100% !important; text-align: center !important; box-sizing: border-box !important; }
  .nav-burger { display: block; }
}
@media (max-width: 680px) {
  section { padding: 70px 0; }
  .how-steps { flex-direction: column; }
  .how-arrow { display: none; }
  .hero-stats { flex-wrap: wrap; }
  .div-grid { grid-template-columns: 1fr; }
}

/* ── Lightbox ── */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  backdrop-filter: blur(6px);
}
#lightbox.open { display: flex; }
#lightboxImg {
  max-width: 92vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 0 80px rgba(0,0,0,0.8);
  pointer-events: none;
}
#lightboxClose {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 1.1rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  z-index: 10000;
}
#lightboxClose:hover { background: rgba(255,255,255,0.18); }

/* Make all card images show pointer so users know they're clickable */
.ind-img-wrap img,
.pulse-grid-item img { cursor: zoom-in; }
