/* =====================================================================
   THE PROP FIRM CODEX — TERM PAGE
   Shared stylesheet for all 107 individual term pages.
   Extends the gamified joinprop palette with casino/forex motifs:
   gold "rarity" seal, chip iconography, felt-green accent gradients.
   ===================================================================== */

:root {
  /* Joinprop brand purples */
  --jp-purple-main: #5b4b8a;
  --jp-purple-deep: #2D106B;
  --jp-purple-darker: #11005e;
  --jp-purple-darkest: #1f1441;
  --jp-purple-light: #c4a8e8;

  /* Codex (dark surface) palette */
  --bg-0: #08041a;
  --bg-1: #0f0729;
  --bg-2: #160d3b;
  --bg-3: #1f1554;
  --bg-4: #2a1d6e;

  --line: rgba(196, 168, 232, 0.14);
  --line-strong: rgba(196, 168, 232, 0.28);

  --text: #ede9ff;
  --text-soft: #b5add4;
  --text-mute: #807599;

  /* Brand accents */
  --cyan: #00d4ff;
  --cyan-soft: rgba(0, 212, 255, 0.18);
  --blue: #4d7dff;

  /* Casino gold */
  --gold: #f0b537;
  --gold-soft: #ffd56b;
  --gold-deep: #8a5a06;

  /* Tier / rarity (casino-style) */
  --tier-rookie: #34d399;
  --tier-rookie-soft: rgba(52, 211, 153, 0.16);
  --tier-pro: #a78bfa;
  --tier-pro-soft: rgba(167, 139, 250, 0.18);
  --tier-elite: #fbbf24;
  --tier-elite-soft: rgba(251, 191, 36, 0.18);

  /* Felt-green casino accent (subtle) */
  --felt: #134e44;
  --felt-soft: rgba(19, 78, 68, 0.4);

  --f-head: 'Nunito', system-ui, sans-serif;
  --f-body: 'Lato', system-ui, sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, monospace;

  --r-sm: 6px;
  --r: 10px;
  --r-lg: 18px;
  --r-xl: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg-1);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  /* One soft ambient glow only — keeps the page calm */
  background-image:
    radial-gradient(ellipse 90% 50% at 50% 0%, rgba(45, 16, 107, 0.55) 0%, transparent 60%);
  background-attachment: fixed;
  min-height: 100vh;
}

.wrap {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================================================
   TOP NAV
   ========================================================================= */
.brand-nav {
  position: relative;
  z-index: 5;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 4, 26, 0.6);
  backdrop-filter: blur(12px);
}
.brand-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-head);
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--text);
  text-decoration: none;
}
.brand-logo .mark {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, #5B2E91, #00d4ff);
  display: grid; place-items: center;
  font-family: var(--f-head);
  font-weight: 900;
  font-size: 14px;
  color: #fff;
  box-shadow: 0 6px 20px -6px rgba(0, 212, 255, 0.6);
}
.brand-nav nav {
  display: flex;
  gap: 28px;
  font-size: 0.9rem;
  color: var(--text-soft);
}
.brand-nav nav a {
  color: var(--text-soft);
  text-decoration: none;
  transition: color 0.15s;
}
.brand-nav nav a:hover { color: var(--cyan); }
.brand-nav nav a.current { color: var(--text); }
.brand-cta {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 9px 18px;
  border-radius: 99px;
  background: var(--cyan);
  color: var(--bg-0);
  text-decoration: none;
  box-shadow: 0 6px 20px -8px rgba(0, 212, 255, 0.7);
  transition: transform 0.15s;
}
.brand-cta:hover { transform: translateY(-1px); }

/* =========================================================================
   BREADCRUMBS
   ========================================================================= */
.breadcrumbs {
  padding: 22px 0 0;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.breadcrumbs a {
  color: var(--text-soft);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.15s;
}
.breadcrumbs a:hover { color: var(--cyan); }
.breadcrumbs .sep {
  color: var(--text-mute);
  opacity: 0.6;
}
.breadcrumbs .current { color: var(--text); }

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative;
  padding: 40px 0 56px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: start;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-meta .chip {
  padding: 5px 12px;
  border-radius: 99px;
  background: rgba(31, 21, 84, 0.6);
  border: 1px solid var(--line);
  color: var(--text-soft);
}
.hero-meta .chip.cat { color: var(--cyan); border-color: rgba(0, 212, 255, 0.3); }
.hero-meta .chip.tier { font-weight: 700; }
.hero-meta .chip.tier.rookie { background: var(--tier-rookie-soft); color: var(--tier-rookie); border-color: var(--tier-rookie); }
.hero-meta .chip.tier.pro    { background: var(--tier-pro-soft);    color: var(--tier-pro);    border-color: var(--tier-pro); }
.hero-meta .chip.tier.elite  { background: var(--tier-elite-soft);  color: var(--tier-elite);  border-color: var(--tier-elite); }
.hero-meta .chip .dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  margin-right: 6px;
  vertical-align: middle;
}

h1.term-title {
  font-family: var(--f-head);
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  color: #fff;
}
.term-lede {
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--text-soft);
  margin: 0 0 28px;
  max-width: 720px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.btn-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 99px;
  background: rgba(31, 21, 84, 0.55);
  border: 1px solid var(--line);
  color: var(--text);
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s;
}
.btn-chip:hover {
  border-color: var(--cyan);
  background: rgba(0, 212, 255, 0.08);
  color: var(--cyan);
}
.btn-chip.primary {
  background: var(--cyan);
  color: var(--bg-0);
  border-color: var(--cyan);
}
.btn-chip.primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-0);
}
.btn-chip.saved {
  background: var(--gold-soft);
  border-color: var(--gold);
  color: var(--bg-0);
}
.btn-chip svg { width: 16px; height: 16px; }

/* =========================================================================
   HERO CTA ORB — green "Get Funded" call-to-action.
   Same on every page (no tier coding). Click goes to the firm-compare page.
   ========================================================================= */
.cta-orb {
  position: relative;
  display: block;
  width: 320px;
  height: 320px;
  margin-left: auto;
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.3s cubic-bezier(.2,.7,.2,1);
}
.cta-orb:hover { transform: translateY(-6px) scale(1.02); }
.cta-orb:active { transform: translateY(-2px) scale(0.99); }

.cta-orb .coin {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, #b8f5d8 0%, var(--tier-rookie) 35%, #0d6b4d 80%, #062e22 100%);
  box-shadow:
    inset 0 0 0 5px rgba(180, 255, 220, 0.55),
    inset 0 0 40px rgba(0, 0, 0, 0.35),
    0 24px 60px -12px rgba(52, 211, 153, 0.5),
    0 0 0 1px rgba(180, 255, 220, 0.4);
  transition: box-shadow 0.3s;
}
.cta-orb:hover .coin {
  box-shadow:
    inset 0 0 0 5px rgba(180, 255, 220, 0.7),
    inset 0 0 40px rgba(0, 0, 0, 0.3),
    0 30px 70px -10px rgba(52, 211, 153, 0.7),
    0 0 0 1px rgba(180, 255, 220, 0.55),
    0 0 80px rgba(52, 211, 153, 0.35);
}
.cta-orb .coin::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  pointer-events: none;
}
.cta-orb .coin-inner {
  position: absolute;
  inset: 38px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 28%, rgba(255,255,255,0.16), transparent 60%);
  display: grid;
  grid-template-rows: auto auto auto auto;
  gap: 6px;
  align-content: center;
  justify-items: center;
  text-align: center;
  color: #062e22;
  padding: 0 22px;
}
.cta-orb .ribbon {
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  opacity: 0.75;
  text-transform: uppercase;
}
.cta-orb .head {
  font-family: var(--f-head);
  font-weight: 900;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #042419;
}
.cta-orb .divider {
  width: 40px;
  height: 2px;
  background: rgba(4, 36, 25, 0.4);
  border-radius: 99px;
  margin: 4px 0;
}
.cta-orb .foot {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #042419;
}

/* Soft pulsing glow ring behind orb (continuous, very subtle) */
.cta-orb::after {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 2px solid rgba(52, 211, 153, 0.18);
  animation: orbPulse 3.6s ease-out infinite;
  pointer-events: none;
}
@keyframes orbPulse {
  0%   { transform: scale(0.92); opacity: 0; }
  40%  { opacity: 1; }
  100% { transform: scale(1.18); opacity: 0; }
}

/* =========================================================================
   BODY GRID — main column + sidebar
   ========================================================================= */
.body-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  margin: 36px 0 60px;
}

.section {
  margin-bottom: 56px;
}
.section:last-child { margin-bottom: 0; }

.section-h {
  font-family: var(--f-head);
  font-weight: 900;
  font-size: 1.6rem;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-h::before {
  content: "";
  width: 4px;
  height: 22px;
  background: linear-gradient(180deg, var(--cyan), var(--jp-purple-main));
  border-radius: 99px;
}

.prose {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
}
.prose p { margin: 0 0 1em; }
.prose strong { color: #fff; }
.prose a {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 212, 255, 0.3);
  padding-bottom: 1px;
  transition: all 0.15s;
}
.prose a:hover {
  border-bottom-color: var(--cyan);
  background: rgba(0, 212, 255, 0.05);
}

/* =========================================================================
   EXAMPLE CALLOUT (gold chip / casino style)
   ========================================================================= */
.example-card {
  position: relative;
  margin: 28px 0;
  padding: 22px 24px 22px 78px;
  background: linear-gradient(135deg, rgba(240, 181, 55, 0.08), rgba(240, 181, 55, 0.02));
  border: 1px solid rgba(240, 181, 55, 0.3);
  border-radius: var(--r-lg);
}
.example-card::before {
  /* chip stack ico */
  content: "";
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #fff5d0, var(--gold) 50%, var(--gold-deep) 100%);
  box-shadow:
    0 -4px 0 -1px var(--gold-deep),
    0 -8px 0 -1px var(--gold),
    0 -12px 0 -1px var(--gold-deep),
    inset 0 0 0 2px rgba(0,0,0,0.18);
}
.example-card .label {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}
.example-card .body {
  font-style: italic;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
}

/* =========================================================================
   KEY TAKEAWAYS — bullet cards
   ========================================================================= */
.takeaway-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.takeaway-card {
  position: relative;
  padding: 18px 18px 18px 52px;
  background: rgba(22, 13, 59, 0.55);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text);
}
.takeaway-card::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 18px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--cyan), #003c54 80%);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.18);
}
.takeaway-card::after {
  content: "✓";
  position: absolute;
  left: 21px;
  top: 18px;
  width: 24px; height: 24px;
  display: grid;
  place-items: center;
  color: var(--bg-0);
  font-size: 0.85rem;
  font-weight: 900;
}

/* =========================================================================
   COMPARISON TABLE
   ========================================================================= */
.compare {
  margin: 16px 0;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: rgba(22, 13, 59, 0.55);
}
.compare-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(45, 16, 107, 0.6);
}
.compare-head .col {
  padding: 14px 18px;
  font-family: var(--f-head);
  font-weight: 900;
  font-size: 1.05rem;
  color: #fff;
  border-right: 1px solid var(--line);
}
.compare-head .col:last-child { border-right: none; }
.compare-head .col .sub {
  display: block;
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 700;
  margin-top: 4px;
}
.compare-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-size: 0.92rem;
  line-height: 1.55;
}
.compare-body .cell {
  padding: 18px;
  color: var(--text-soft);
  border-right: 1px solid var(--line);
  border-top: 1px solid var(--line);
}
.compare-body .cell:last-child { border-right: none; }

/* =========================================================================
   FAQ — stacked chip accordion
   ========================================================================= */
.faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: rgba(22, 13, 59, 0.55);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all 0.2s;
}
.faq-item[open] {
  background: linear-gradient(180deg, rgba(45, 16, 107, 0.85), rgba(22, 13, 59, 0.85));
  border-color: var(--line-strong);
}
.faq-q {
  list-style: none;
  padding: 18px 24px 18px 22px;
  cursor: pointer;
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.1);
  color: var(--cyan);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  font-weight: 600;
  transition: transform 0.2s, background 0.2s;
}
.faq-item[open] .faq-q::after {
  transform: rotate(45deg);
  background: var(--cyan);
  color: var(--bg-0);
}
.faq-item:hover .faq-q::after {
  background: rgba(0, 212, 255, 0.22);
}
.faq-a {
  padding: 0 24px 22px 22px;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-soft);
}
.faq-a strong { color: var(--text); }
.faq-a a {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 212, 255, 0.3);
}
.faq-a a:hover { border-bottom-color: var(--cyan); }

/* =========================================================================
   RELATED CONCEPTS — visual cards
   ========================================================================= */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}
.related-card {
  position: relative;
  display: block;
  padding: 18px 20px;
  background: linear-gradient(180deg, rgba(31, 21, 84, 0.7), rgba(22, 13, 59, 0.7));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  text-decoration: none;
  color: var(--text);
  overflow: hidden;
  transition: all 0.2s;
}
.related-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--cyan);
  opacity: 0.6;
  transition: width 0.2s, opacity 0.2s;
}
.related-card[data-tier="rookie"]::before { background: var(--tier-rookie); }
.related-card[data-tier="pro"]::before    { background: var(--tier-pro); }
.related-card[data-tier="elite"]::before  { background: var(--tier-elite); }
.related-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: linear-gradient(180deg, rgba(42, 29, 110, 0.85), rgba(31, 21, 84, 0.85));
}
.related-card:hover::before { width: 5px; opacity: 1; }
.related-card .rel-tier {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--text-mute);
}
.related-card[data-tier="rookie"] .rel-tier { color: var(--tier-rookie); }
.related-card[data-tier="pro"]    .rel-tier { color: var(--tier-pro); }
.related-card[data-tier="elite"]  .rel-tier { color: var(--tier-elite); }
.related-card .rel-name {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.2;
}
.related-card .rel-short {
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text-soft);
}
.related-card::after {
  content: "→";
  position: absolute;
  right: 16px;
  bottom: 14px;
  color: var(--cyan);
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
}
.related-card:hover::after { opacity: 1; transform: translateX(2px); }

/* =========================================================================
   SIDEBAR
   ========================================================================= */
.sidebar {
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: start;
}
.side-card {
  background: rgba(22, 13, 59, 0.6);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 20px;
}
.side-card .label {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 12px;
}
.side-card h4 {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
  margin: 0 0 12px;
}
.side-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.side-list li {
  border-top: 1px solid var(--line);
}
.side-list li:first-child { border-top: none; }
.side-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  gap: 12px;
  transition: color 0.15s;
}
.side-list a:hover { color: var(--cyan); }
.side-list a::after {
  content: "→";
  color: var(--text-mute);
  opacity: 0.7;
  flex-shrink: 0;
}
.side-list .tier-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}
.side-list .tier-dot.rookie { background: var(--tier-rookie); }
.side-list .tier-dot.pro    { background: var(--tier-pro); }
.side-list .tier-dot.elite  { background: var(--tier-elite); }
.side-list a span:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

/* CTA card in sidebar */
.side-cta {
  background: linear-gradient(135deg, #2D106B, #5B2E91);
  border-color: var(--line-strong);
  text-align: center;
  padding: 24px 20px;
}
.side-cta h4 { margin-bottom: 6px; }
.side-cta p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 14px;
}
.side-cta a {
  display: inline-block;
  background: var(--cyan);
  color: var(--bg-0);
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 0.82rem;
  padding: 9px 18px;
  border-radius: 99px;
  text-decoration: none;
  box-shadow: 0 6px 20px -8px rgba(0, 212, 255, 0.7);
}

/* Rank mini in sidebar */
.side-rank .rank-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.side-rank .badge {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--cyan), #5B2E91);
  display: grid; place-items: center;
  font-family: var(--f-head);
  font-weight: 900;
  color: #fff;
  font-size: 0.95rem;
}
.side-rank .meta { line-height: 1.2; }
.side-rank .name {
  font-family: var(--f-head);
  font-weight: 800;
  color: #fff;
  font-size: 0.95rem;
}
.side-rank .sub {
  font-size: 0.78rem;
  color: var(--text-mute);
  font-family: var(--f-mono);
  letter-spacing: 0.08em;
}
.side-rank .bar {
  height: 6px;
  background: rgba(8, 4, 26, 0.6);
  border-radius: 99px;
  overflow: hidden;
}
.side-rank .bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--jp-purple-light));
}

/* =========================================================================
   CONTINUE DISCOVERY (bottom)
   ========================================================================= */
.continue {
  margin: 64px 0 32px;
}
.continue-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 22px;
}
.continue-head h2 {
  font-family: var(--f-head);
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
}
.continue-head .kicker {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 6px;
}
.continue-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}

/* =========================================================================
   CTA BAND
   ========================================================================= */
.cta {
  margin: 60px 0;
  padding: 44px 36px;
  background:
    radial-gradient(circle at 80% 20%, rgba(240, 181, 55, 0.18), transparent 55%),
    radial-gradient(circle at 15% 90%, rgba(0, 212, 255, 0.18), transparent 55%),
    linear-gradient(135deg, #2D106B, #5B2E91);
  border-radius: var(--r-xl);
  border: 1px solid var(--line-strong);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta h2 {
  font-family: var(--f-head);
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 10px;
}
.cta p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 540px;
  margin: 0 auto 22px;
  font-size: 1rem;
}
.cta-btn {
  display: inline-block;
  background: var(--cyan);
  color: var(--bg-0);
  font-family: var(--f-head);
  font-weight: 800;
  padding: 13px 30px;
  border-radius: 99px;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 10px 30px -10px rgba(0, 212, 255, 0.7);
  transition: transform 0.15s;
}
.cta-btn:hover { transform: translateY(-2px); }

footer {
  padding: 36px 0 60px;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--text-mute);
  font-size: 0.88rem;
}
footer a { color: var(--text-soft); text-decoration: none; }
footer a:hover { color: var(--cyan); }

/* =========================================================================
   TOAST
   ========================================================================= */
.toast {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 100;
  padding: 14px 18px 14px 14px;
  background: linear-gradient(135deg, #2D106B, #11005e);
  border: 1px solid var(--cyan);
  border-radius: var(--r-lg);
  box-shadow: 0 0 0 1px rgba(0, 212, 255, 0.35), 0 12px 40px -10px rgba(0, 212, 255, 0.35);
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1);
  max-width: 340px;
}
.toast.show { transform: translateX(0); }
.toast .ico {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--cyan), #5B2E91);
  display: grid; place-items: center;
  font-size: 1.2rem;
}
.toast .title {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 0.92rem;
  color: #fff;
}
.toast .desc {
  font-size: 0.78rem;
  color: var(--text-soft);
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .cta-orb { width: 240px; height: 240px; margin: 0; }
  .cta-orb .coin-inner { inset: 30px; }
  .cta-orb .head { font-size: 1.3rem; }
  .body-grid { grid-template-columns: 1fr; gap: 36px; }
  .sidebar { position: static; }
}
@media (max-width: 640px) {
  .brand-nav nav { display: none; }
  .wrap { padding: 0 16px; }
  .cta-orb { width: 200px; height: 200px; }
  .cta-orb .coin-inner { inset: 24px; }
  .cta-orb .head { font-size: 1.1rem; }
  .compare-body, .compare-head { grid-template-columns: 1fr; }
  .compare-head .col, .compare-body .cell { border-right: none; }
  .compare-body .cell:nth-child(2) { border-top: 1px solid var(--line); }
}
