/* ===========================================================
   Vantage Point Trading, LLC — Shared Design System
   Dark charcoal + white + blue (fintech / modern) theme
   =========================================================== */

:root{
  --bg-0: #0b0d10;         /* deepest background */
  --bg-1: #14171c;         /* base charcoal */
  --bg-2: #1b1f26;         /* card surface */
  --bg-3: #232833;         /* raised surface / hover */
  --border: #2a303c;
  --border-soft: #20242c;

  --text-hi: #f5f6f8;
  --text-mid: #b7bec9;
  --text-low: #7c8494;

  --blue: #3b82f6;
  --blue-bright: #5b9dff;
  --blue-dim: #1e3a63;
  --blue-glow: rgba(59,130,246,0.35);

  --green: #22c55e;
  --red: #ef4444;
  --gold: #d4af6a;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --shadow-card: 0 10px 30px rgba(0,0,0,0.35);
  --container: 1160px;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin:0;
  background: var(--bg-0);
  color: var(--text-mid);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }

h1,h2,h3,h4{
  color: var(--text-hi);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
h1{ font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
h2{ font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3{ font-size: 1.25rem; }
p{ margin: 0 0 16px; }

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-bright);
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.25);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.eyebrow::before{
  content:"";
  width:6px; height:6px;
  border-radius:50%;
  background: var(--blue-bright);
  box-shadow: 0 0 8px 2px var(--blue-glow);
}

.countdown-banner{
  display:inline-flex;
  align-items:center;
  gap:12px;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--text-hi);
  background: linear-gradient(135deg, rgba(59,130,246,0.22), rgba(91,157,255,0.08));
  border: 1px solid rgba(59,130,246,0.5);
  padding: 16px 30px;
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: 0 0 30px rgba(59,130,246,0.3);
}
.countdown-banner::before{
  content:"";
  width:10px; height:10px;
  border-radius:50%;
  background: var(--blue-bright);
  box-shadow: 0 0 12px 3px var(--blue-glow);
  flex-shrink:0;
  animation: countdownPulse 1.6s ease-in-out infinite;
}
@keyframes countdownPulse{
  0%, 100%{ opacity:1; transform:scale(1); }
  50%{ opacity:0.55; transform:scale(0.8); }
}
@media (max-width: 600px){
  .countdown-banner{ font-size: 1rem; padding: 13px 20px; }
}

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

section{ padding: 96px 0; }
section.tight{ padding: 64px 0; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .18s ease;
  white-space: nowrap;
}
.btn-primary{
  background: linear-gradient(180deg, var(--blue-bright), var(--blue));
  color: #08101f;
  box-shadow: 0 6px 20px rgba(59,130,246,0.35);
}
.btn-primary:hover{ transform: translateY(-1px); box-shadow: 0 10px 26px rgba(59,130,246,0.45); }
.btn-outline{
  background: transparent;
  border-color: var(--border);
  color: var(--text-hi);
}
.btn-outline:hover{ border-color: var(--blue-bright); color: var(--blue-bright); }
.btn-gold{
  background: linear-gradient(180deg, #e8c98a, var(--gold));
  color: #1a1400;
  box-shadow: 0 6px 20px rgba(212,175,106,0.35);
}
.btn-gold:hover{ transform: translateY(-1px); box-shadow: 0 10px 26px rgba(212,175,106,0.45); }
.btn-disabled{
  background: var(--bg-3);
  color: var(--text-low);
  border-color: var(--border);
  cursor: not-allowed;
}
.btn-block{ width:100%; }
.btn-sm{ padding: 10px 18px; font-size: 0.85rem; }

/* ---------- Nav ---------- */
header.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11,13,16,0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}
.nav-wrap{
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 24px;
  display:flex;
  align-items:center;
  justify-content: space-between;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight: 800;
  color: var(--text-hi);
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.brand-mark{
  width: 34px; height:34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-dim));
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-weight:900; font-size: 0.95rem;
  box-shadow: 0 4px 14px rgba(59,130,246,0.4);
}
.brand-mark-icon{
  width: 34px; height:34px;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.brand-mark-icon img{ width: 32px; height:32px; display:block; }
.brand-name span{ display:block; font-size: 0.68rem; font-weight: 500; color: var(--text-low); letter-spacing: 0.06em; }

nav.main-nav{ display:flex; align-items:center; gap: 6px; }
nav.main-nav a{
  padding: 9px 16px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: all .15s ease;
}
nav.main-nav a:hover{ color: var(--text-hi); background: var(--bg-2); }
nav.main-nav a.active{ color: var(--text-hi); background: var(--bg-2); }

.nav-cta{ display:flex; align-items:center; gap:10px; }

.nav-login{
  padding: 9px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: all .15s ease;
}
.nav-login:hover{ color: var(--text-hi); background: var(--bg-2); }

/* mobile nav toggle (visual only) */
.nav-toggle{ display:none; }

/* ---------- Cards ---------- */
.card{
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: border-color 0.25s ease;
}
.card::before{
  content:"";
  position:absolute;
  top:0; left:-60%;
  width:50%; height:100%;
  background: linear-gradient(100deg, transparent, rgba(91,157,255,0.14), transparent);
  transition: left 0.7s ease;
  pointer-events:none;
}
.card:hover{ border-color: var(--blue); }
.card:hover::before{ left:140%; }

/* ---------- Glow accent (light-collection motif) ---------- */
.glow-accent{ position:relative; }
.glow-accent::before{
  content:"";
  position:absolute;
  top:-70px; right:-50px;
  width:260px; height:260px;
  border-radius:50%;
  background: radial-gradient(circle, rgba(59,130,246,0.28), transparent 70%);
  pointer-events:none;
  z-index:0;
}
.glow-accent > *{ position:relative; z-index:1; }
.glow-accent.gold::before{ background: radial-gradient(circle, rgba(212,175,106,0.28), transparent 70%); }

/* ---------- Horizon-line divider ---------- */
.divider-glow{
  display:flex;
  align-items:center;
  gap:0;
  margin: 8px 0 40px;
}
.divider-glow::before, .divider-glow::after{
  content:"";
  flex:1;
  height:1px;
}
.divider-glow::before{ background: linear-gradient(90deg, transparent, var(--border)); }
.divider-glow::after{ background: linear-gradient(90deg, var(--border), transparent); }
.divider-glow .dot{
  width:7px; height:7px;
  border-radius:50%;
  background: var(--gold);
  box-shadow: 0 0 8px 2px rgba(212,175,106,0.45);
  margin: 0 3px;
  flex-shrink:0;
}

/* ---------- Bot icon circles ---------- */
.bot-icon{
  position:relative;
  z-index:1;
  width:46px; height:46px;
  border-radius:50%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.bot-icon img{ width:20px; height:20px; display:block; }
.bot-icon.lg{ width:64px; height:64px; }
.bot-icon.lg img{ width:28px; height:28px; }

/* ---------- Roadmap timeline (scales to any number of bots) ---------- */
.roadmap-track{ position:relative; }
.roadmap-track .roadmap-line{
  position:absolute;
  top:22px; bottom:22px; left:22px;
  width:1px;
  background: linear-gradient(180deg, var(--blue) 0%, var(--gold) 45%, var(--border) 78%, transparent 100%);
  z-index:0;
}
.pill.later{ color: var(--text-low); border-color: var(--border); background: var(--bg-3); }
.bot-icon.pulse{ animation: botIconPulse 2.2s ease-in-out infinite; }
@keyframes botIconPulse{
  0%, 100%{ box-shadow: 0 0 0 0 rgba(91,157,255,0.45); }
  50%{ box-shadow: 0 0 0 7px rgba(91,157,255,0); }
}

/* ---------- Ticker tape ---------- */
.ticker-band{
  position:relative;
  overflow:hidden;
  background: var(--bg-1);
  border-bottom: 1px solid var(--border-soft);
  padding: 11px 0;
}
.ticker-band .ticker-note{
  position:absolute;
  top:50%; right:16px; transform:translateY(-50%);
  font-size:0.62rem; color: var(--text-low); letter-spacing:0.04em;
  background: var(--bg-1);
  padding-left:14px;
  background: linear-gradient(90deg, transparent, var(--bg-1) 30%);
}
.ticker-track{
  display:flex;
  gap: 48px;
  width: max-content;
  white-space: nowrap;
  animation: tickerScroll 26s linear infinite;
}
.ticker-track span{ color: var(--text-hi); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.01em; }
.ticker-track span b{ color: var(--text-low); font-weight: 600; margin-right: 6px; }
.ticker-track .up{ color: var(--green); }
.ticker-track .down{ color: var(--red); }
@keyframes tickerScroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
@media (max-width:600px){ .ticker-track{ animation-duration: 18s; } }

/* ---------- Pricing spotlight ---------- */
.price-card.spotlight{ position:relative; z-index:1; }
.price-card.spotlight::before{
  content:"";
  position:absolute;
  inset:-14px;
  border-radius: 30px;
  background: radial-gradient(circle, rgba(59,130,246,0.45), transparent 72%);
  z-index:-1;
  animation: spotlightHalo 2.6s ease-in-out infinite;
  pointer-events:none;
}
@keyframes spotlightHalo{
  0%, 100%{ opacity:0.55; transform:scale(1); }
  50%{ opacity:0.9; transform:scale(1.045); }
}
@media (min-width:901px){
  .price-card.spotlight{ transform: scale(1.05); }
}

/* ---------- Aurora wash: full-bleed ribbons + stars (TradingView-style dramatic lights) ---------- */
.aurora-wrap .aurora-ribbon{
  position:absolute;
  left:-30%; right:-30%;
  height: 300px;
  filter: blur(30px);
  opacity:0.58;
  mix-blend-mode: screen;
  pointer-events:none;
  z-index:0;
}
.aurora-wrap .aurora-ribbon.x1{
  top:-6%;
  background: linear-gradient(90deg, transparent, rgba(34,197,94,0.4), rgba(59,130,246,0.38), transparent);
  animation: auroraWave1 10s ease-in-out infinite;
}
.aurora-wrap .aurora-ribbon.x2{
  top:26%;
  background: linear-gradient(90deg, transparent, rgba(91,157,255,0.34), rgba(212,175,106,0.3), transparent);
  animation: auroraWave2 13s ease-in-out infinite;
}
.aurora-wrap .aurora-ribbon.x3{
  top:56%;
  height: 320px;
  background: linear-gradient(90deg, transparent, rgba(212,175,106,0.38), rgba(34,197,94,0.36), rgba(59,130,246,0.3), transparent);
  animation: auroraWave3 16s ease-in-out infinite;
}
.aurora-wrap .aurora-stars{
  position:absolute; inset:0;
  background-image:
    radial-gradient(1.5px 1.5px at 12% 18%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 32% 8%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1.5px 1.5px at 58% 32%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 78% 14%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 88% 46%, rgba(255,255,255,0.35), transparent),
    radial-gradient(1.5px 1.5px at 6% 50%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 95% 64%, rgba(255,255,255,0.35), transparent);
  animation: auroraTwinkle 4.5s ease-in-out infinite;
  z-index:0;
  pointer-events:none;
}
@media (prefers-reduced-motion: reduce){
  .aurora-wrap .aurora-ribbon, .aurora-wrap .aurora-stars{ animation:none; }
}

.aurora-wrap{ position:relative; overflow:hidden; }
.aurora-wrap .aurora-blob{
  position:absolute;
  border-radius:50%;
  pointer-events:none;
  filter: blur(6px);
  z-index:0;
}
.aurora-wrap .aurora-blob.a{
  top:-30%; left:-12%; width:55%; height:160%;
  background: radial-gradient(circle, rgba(59,130,246,0.30), transparent 70%);
  animation: auroraDrift 11s ease-in-out infinite;
}
.aurora-wrap .aurora-blob.b{
  top:-25%; right:-14%; width:50%; height:150%;
  background: radial-gradient(circle, rgba(212,175,106,0.22), transparent 70%);
  animation: auroraDrift 13s ease-in-out infinite reverse;
}
.aurora-wrap > .container{ position:relative; z-index:1; }
.hero.aurora-wrap::before, .hero.aurora-wrap::after{ content:none; }
@keyframes auroraDrift{
  0%{ transform: translate(-6%,-4%) scale(1); }
  50%{ transform: translate(5%,4%) scale(1.15); }
  100%{ transform: translate(-6%,-4%) scale(1); }
}
/* ---------- Hero aurora panel ---------- */
.aurora-hero{
  position:relative;
  height: 520px;
  overflow:visible;
}
.aurora-hero .stars{
  position:absolute; inset:0;
  background-image:
    radial-gradient(1.5px 1.5px at 18% 22%, rgba(255,255,255,0.7), transparent),
    radial-gradient(1px 1px at 68% 12%, rgba(255,255,255,0.55), transparent),
    radial-gradient(1.5px 1.5px at 38% 60%, rgba(255,255,255,0.45), transparent),
    radial-gradient(1px 1px at 84% 48%, rgba(255,255,255,0.55), transparent),
    radial-gradient(1px 1px at 52% 78%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1.5px 1.5px at 8% 68%, rgba(255,255,255,0.45), transparent),
    radial-gradient(1px 1px at 92% 78%, rgba(255,255,255,0.4), transparent);
  animation: auroraTwinkle 4.5s ease-in-out infinite;
}
.aurora-hero .ribbon{
  position:absolute;
  left:-25%; right:-25%;
  height: 260px;
  filter: blur(26px);
  opacity:0.72;
  mix-blend-mode: screen;
  pointer-events:none;
}
.aurora-hero .ribbon.r1{
  top: 0%;
  background: linear-gradient(90deg, transparent, rgba(34,197,94,0.5), rgba(59,130,246,0.45), transparent);
  animation: auroraWave1 9s ease-in-out infinite;
}
.aurora-hero .ribbon.r2{
  top: 18%;
  background: linear-gradient(90deg, transparent, rgba(91,157,255,0.4), rgba(212,175,106,0.38), transparent);
  animation: auroraWave2 12s ease-in-out infinite;
}
.aurora-hero .ribbon.r3{
  top: 58%;
  height: 300px;
  background: linear-gradient(90deg, transparent, rgba(212,175,106,0.5), rgba(34,197,94,0.5), rgba(59,130,246,0.4), transparent);
  animation: auroraWave3 15s ease-in-out infinite;
}
@keyframes auroraWave1{
  0%, 100%{ transform: translateX(0) skewY(-3deg) scaleY(1); }
  50%{ transform: translateX(6%) skewY(2deg) scaleY(1.3); }
}
@keyframes auroraWave2{
  0%, 100%{ transform: translateX(4%) skewY(2deg) scaleY(1.1); }
  50%{ transform: translateX(-5%) skewY(-3deg) scaleY(0.9); }
}
@keyframes auroraWave3{
  0%, 100%{ transform: translateX(-3%) skewY(-1deg) scaleY(1); }
  50%{ transform: translateX(5%) skewY(3deg) scaleY(1.2); }
}
@keyframes auroraTwinkle{
  0%, 100%{ opacity:0.9; }
  50%{ opacity:0.55; }
}
.aurora-hero .aurora-caption{
  position:absolute; left:0; right:0; bottom:6px;
  padding: 0 2px;
  z-index:2;
}
.aurora-hero .aurora-caption .eyebrow{ margin-bottom:10px; }
.aurora-hero .aurora-caption p{
  color: var(--text-hi);
  font-size:0.9rem;
  margin:0;
  max-width: 420px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.9), 0 1px 4px rgba(0,0,0,0.85);
}

@media (max-width:900px){
  .aurora-hero{ height: 360px; }
}

/* ---------- Hero skyline panel (About) ---------- */
.skyline-hero{
  position:relative;
  height: 440px;
  overflow:hidden;
  display:flex;
  align-items:flex-end;
}
.skyline-glow{
  position:absolute; inset:0;
  background: radial-gradient(circle at 50% 100%, rgba(59,130,246,0.18), transparent 65%);
  pointer-events:none;
  z-index:0;
}
.candle-chart{
  position:relative;
  z-index:1;
  width:100%;
  height:100%;
  display:block;
}
.candle-chart .candles{ opacity:0.55; }
.candle-chart line{ stroke-width:1; }
.candle-chart line.up, .candle-chart rect.up{ stroke: var(--green); fill: var(--green); }
.candle-chart line.down, .candle-chart rect.down{ stroke: var(--red); fill: var(--red); }
.candle-trend{
  fill:none;
  stroke: var(--gold);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.6;
  vector-effect: non-scaling-stroke;
}
@media (max-width:900px){
  .skyline-hero{ height: 260px; }
}

/* ---------- Stats slider (Bots page — track record) ---------- */
.stats-summary{
  display:flex;
  justify-content:center;
  gap:48px;
  margin-bottom:40px;
  flex-wrap:wrap;
}
.stats-summary .stat-block{ text-align:center; }
.stats-summary .stat-block b{
  display:block;
  font-size:2.4rem;
  font-weight:800;
  color:var(--text-hi);
  line-height:1;
  margin-bottom:6px;
}
.stats-summary .stat-block span{
  font-size:0.8rem;
  color:var(--text-low);
  letter-spacing:0.04em;
  text-transform:uppercase;
}
.stats-slider{
  position:relative;
  overflow:hidden;
  padding:8px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.stats-track{
  display:flex;
  gap:20px;
  width:max-content;
  animation: statsScroll 22s linear infinite;
}
.stat-card{
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 34px;
  min-width: 160px;
  text-align:center;
  flex-shrink:0;
}
.stat-card .amt{ font-size:1.6rem; font-weight:800; color: var(--green); margin-bottom:4px; }
.stat-card .lbl{ font-size:0.75rem; color: var(--text-low); letter-spacing:0.03em; }
@keyframes statsScroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
@media (max-width:600px){ .stats-track{ animation-duration: 15s; } }

@media (prefers-reduced-motion: reduce){
  .ticker-track, .price-card.spotlight::before, .aurora-wrap .aurora-blob, .bot-icon.pulse,
  .aurora-hero .ribbon, .aurora-hero .stars, .stats-track{ animation: none; }
}

.grid{ display:grid; gap: 24px; }
.grid-2{ grid-template-columns: repeat(2, 1fr); }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-4{ grid-template-columns: repeat(4, 1fr); }

/* ---------- Hero ---------- */
.hero{
  position: relative;
  padding: 110px 0 90px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-soft);
}
.hero::before{
  content:"";
  position:absolute;
  top:-200px; right:-160px;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(59,130,246,0.22), transparent 65%);
  pointer-events:none;
}
.hero::after{
  content:"";
  position:absolute;
  bottom:-260px; left:-160px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(212,175,106,0.08), transparent 65%);
  pointer-events:none;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items:center;
  position:relative;
  z-index:1;
}
.hero-actions{ display:flex; gap:14px; margin-top: 32px; flex-wrap:wrap; }
.hero-stats{ display:flex; gap: 36px; margin-top: 48px; flex-wrap:wrap; }
.hero-stats .stat b{ display:block; font-size: 1.5rem; color: var(--text-hi); }
.hero-stats .stat span{ font-size: 0.8rem; color: var(--text-low); }

/* ---------- Hero (full-bleed photographic) ---------- */
.hero-photo{
  position: relative;
  min-height: clamp(780px, 94vh, 1020px);
  display:flex;
  align-items:center;
  overflow:hidden;
  background: #05070c url('vpt-hero-earth.jpg') center 60% / cover no-repeat;
  border-bottom: 1px solid var(--border-soft);
}
.hero-photo-overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(4,6,10,0.5) 0%, rgba(4,6,10,0.08) 30%, rgba(4,6,10,0.18) 55%, rgba(4,6,10,0.72) 84%, var(--bg-1) 100%),
    linear-gradient(90deg, rgba(4,6,10,0.5) 0%, rgba(4,6,10,0.05) 58%);
  pointer-events:none;
}
.hero-photo-content{
  position:relative; z-index:1;
  max-width: 660px;
  padding: 60px 0 130px;
}
.hero-photo-content h1{
  font-size: clamp(2.6rem, 5.6vw, 4.4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 30px;
}
.hero-photo-sub{
  font-size: 1.15rem;
  line-height: 1.65;
  color: rgba(235,238,245,0.86);
  max-width: 520px;
  margin-bottom: 8px;
}
.hero-photo .hero-actions{ margin-top: 40px; }
@media (max-width: 780px){
  .hero-photo{ min-height: 640px; background-position: 68% 60%; }
  .hero-photo-content{ padding: 100px 0 70px; }
}
.hero-photo .btn-outline{ border-color: rgba(255,255,255,0.45); backdrop-filter: blur(2px); }
.hero-photo .btn-outline:hover{ border-color:#fff; color:#fff; }

/* Compact/centered variant used on sub-page heroes */
.hero-photo.compact{ min-height: clamp(520px, 62vh, 660px); border-bottom: 1px solid var(--border-soft); }
.hero-photo.compact .hero-photo-overlay{
  background:
    radial-gradient(ellipse 70% 60% at 50% 48%, rgba(4,6,10,0.55) 0%, rgba(4,6,10,0.28) 55%, rgba(4,6,10,0.1) 100%),
    linear-gradient(180deg, rgba(4,6,10,0.45) 0%, rgba(4,6,10,0.15) 30%, rgba(4,6,10,0.3) 65%, var(--bg-1) 100%);
}
.hero-photo.center{ text-align:center; }
.hero-photo.center .hero-photo-content{ max-width:720px; margin:0 auto; padding:70px 0 90px; }
.hero-photo.center .hero-photo-sub{ margin-left:auto; margin-right:auto; }
.hero-photo.compact .hero-photo-content h1{ font-size: clamp(2.2rem, 4.4vw, 3.2rem); margin-top:16px; }
@media (max-width: 780px){
  .hero-photo.compact{ min-height: 460px; }
}

/* ---------- Mock chart panel ---------- */
.chart-panel{
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-card);
}
.chart-panel .chart-head{
  display:flex; justify-content:space-between; align-items:center;
  margin-bottom: 14px; padding-bottom: 14px;
  border-bottom: 1px solid var(--border-soft);
}
.chart-panel .chart-head .pair{ color: var(--text-hi); font-weight: 700; font-size: 0.95rem; }
.chart-panel .chart-head .price{ color: var(--green); font-weight: 700; font-family: 'SF Mono', monospace; }
.chart-tags{ display:flex; gap:8px; margin-top: 14px; flex-wrap: wrap; }
.chart-tag{
  font-size: 0.72rem;
  padding: 5px 10px;
  border-radius: 100px;
  background: var(--bg-3);
  color: var(--text-mid);
  border: 1px solid var(--border);
}

/* ---------- Sections common ---------- */
.section-head{ max-width: 640px; margin-bottom: 52px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

.feature-icon{
  width: 46px; height:46px;
  border-radius: 12px;
  background: var(--blue-dim);
  color: var(--blue-bright);
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 18px;
  font-size: 1.2rem;
}

.step-num{
  width: 40px; height:40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-hi);
  display:flex; align-items:center; justify-content:center;
  font-weight:700;
  margin-bottom: 16px;
}

/* ---------- CTA band ---------- */
.cta-band{
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px;
  text-align:center;
}
.cta-band.glow-accent{ overflow:hidden; }
.cta-band.glow-accent::before{ width:320px; height:320px; top:-90px; right:-70px; }
.cta-band.glow-accent::after{
  content:"";
  position:absolute;
  bottom:-90px; left:-70px;
  width:280px; height:280px;
  border-radius:50%;
  background: radial-gradient(circle, rgba(59,130,246,0.24), transparent 70%);
  pointer-events:none;
  z-index:0;
}

/* ---------- Table ---------- */
table.specs{ width:100%; border-collapse: collapse; }
table.specs tr{ border-bottom: 1px solid var(--border-soft); }
table.specs td{ padding: 16px 4px; }
table.specs td:first-child{ color: var(--text-low); width: 40%; }
table.specs td:last-child{ color: var(--text-hi); font-weight: 600; }

/* ---------- Pricing ---------- */
.price-card{
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
  display:flex;
  flex-direction:column;
  position:relative;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.price-card:hover{
  border-color: var(--blue-dim, var(--blue));
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.35);
}
.price-card.featured{
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), 0 20px 40px rgba(59,130,246,0.15);
}
.price-card.featured:hover{
  box-shadow: 0 0 0 1px var(--blue), 0 24px 48px rgba(59,130,246,0.24);
}
.price-card .badge{
  position:absolute; top:-13px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color:#08101f;
  font-size: 0.7rem; font-weight:800; letter-spacing:0.05em;
  padding: 5px 14px; border-radius: 100px;
  text-transform: uppercase;
}
.price-card .badge.gold{ background: var(--gold); color:#1a1400; }
.price{ font-size: 2.4rem; font-weight:800; color: var(--text-hi); margin: 6px 0 4px; }
.price span{ font-size: 0.95rem; color: var(--text-low); font-weight:500; margin-left:4px; }

/* ---------- VIP feature band ---------- */
.vip-band{
  margin-top: 40px;
  background: var(--bg-2);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 44px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items:center;
  overflow:hidden;
}
.vip-band h3{ font-size:1.6rem; margin: 12px 0 8px; }
.vip-band-main p{ font-size:0.95rem; color:var(--text-mid); margin-bottom:18px; }
.vip-band-list{
  list-style:none;
  margin:0;
  padding:0;
  columns: 2;
  column-gap: 28px;
}
.vip-band-list li{
  padding: 9px 0;
  border-bottom: 1px solid var(--border-soft);
  color: var(--text-mid);
  font-size: 0.9rem;
  display:flex; gap:10px; align-items:flex-start;
  break-inside: avoid;
}
.price-list.vip-band-list li::before{ content:"✓"; color: var(--gold); font-weight:700; }
@media (max-width:900px){
  .vip-band{ grid-template-columns: 1fr; }
  .vip-band-list{ columns: 1; }
}
.price-list{ list-style:none; padding-top:20px; margin: 24px 0 0; flex:1; border-top: 1px solid var(--border-soft); }
.price-list li{
  padding: 10px 0;
  border-bottom: 1px solid var(--border-soft);
  color: var(--text-mid);
  font-size: 0.92rem;
  display:flex; gap:10px; align-items:flex-start;
}
.price-list li::before{ content:"✓"; color: var(--blue-bright); font-weight:700; }

/* ---------- Forms ---------- */
.form-field{ margin-bottom: 18px; }
.form-field label{
  display:block; font-size: 0.82rem; font-weight:600;
  color: var(--text-hi); margin-bottom: 8px;
}
.form-field input, .form-field textarea, .form-field select{
  width:100%;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  color: var(--text-hi);
  font-family: inherit;
  font-size: 0.95rem;
}
.form-field input:focus, .form-field textarea:focus{
  outline:none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.2);
}
.form-field textarea{ resize: vertical; min-height: 130px; }
.form-note{ font-size: 0.8rem; color: var(--text-low); margin-top: 10px; }

/* ---------- Badge / pill ---------- */
.pill{
  display:inline-block;
  font-size: 0.72rem;
  font-weight:700;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--bg-3);
  color: var(--text-mid);
  border: 1px solid var(--border);
}
.pill.soon{ color: var(--gold); border-color: rgba(212,175,106,0.4); background: rgba(212,175,106,0.08); }
.pill.live{ color: var(--green); border-color: rgba(34,197,94,0.4); background: rgba(34,197,94,0.08); }

/* ---------- Legal pages ---------- */
.legal-note{
  background: rgba(212,175,106,0.08);
  border: 1px solid rgba(212,175,106,0.35);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  font-size: 0.88rem;
  color: var(--text-mid);
  margin-bottom: 40px;
}
.legal-note b{ color: var(--gold); }
.legal-body h2{ font-size: 1.15rem; margin-top: 40px; }
.legal-body h2:first-of-type{ margin-top:0; }
.legal-body p, .legal-body li{ font-size: 0.95rem; color: var(--text-mid); }
.legal-body ul{ padding-left: 22px; }
.legal-links-row{ display:flex; gap:16px; flex-wrap:wrap; margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--border-soft); }

/* ---------- Roadmap ---------- */
.roadmap-item{
  display:flex; gap:20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border-soft);
}
.roadmap-item:last-child{ border-bottom:none; }

/* ---------- Footer ---------- */
footer.site-footer{
  border-top: 1px solid var(--border-soft);
  background: var(--bg-1);
  padding: 64px 0 32px;
  margin-top: 40px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-soft);
}
.footer-grid h4{ font-size: 0.85rem; color: var(--text-hi); margin-bottom: 16px; }
.footer-grid ul{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px; }
.footer-grid a{ color: var(--text-low); font-size: 0.9rem; }
.footer-grid a:hover{ color: var(--blue-bright); }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center;
  padding-top: 28px; flex-wrap: wrap; gap: 16px;
}
.footer-bottom .legal-links{ display:flex; gap:20px; }
.footer-bottom a{ font-size: 0.82rem; color: var(--text-low); }
.footer-bottom a:hover{ color: var(--text-hi); }

.risk-disclosure{
  background: var(--bg-0);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  font-size: 0.78rem;
  color: var(--text-low);
  line-height: 1.7;
  margin-top: 32px;
}
.risk-disclosure b{ color: var(--text-mid); }

/* ---------- Gradient frame (TradingView-style stroked container) ---------- */
.gradient-frame{
  position:relative;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(120deg, rgba(91,157,255,0.85), rgba(212,175,106,0.7) 52%, rgba(59,130,246,0.55));
}
.gradient-frame.gold-cyan{ background: linear-gradient(120deg, rgba(212,175,106,0.85), rgba(91,157,255,0.6) 55%, rgba(212,175,106,0.5)); }
.gradient-frame-inner{
  background: var(--bg-2);
  border-radius: calc(var(--radius-lg) - 1px);
  overflow:hidden;
  position:relative;
}
.gradient-frame.glow{ box-shadow: 0 0 50px rgba(59,130,246,0.16); }

/* Single-element gradient border (no wrapper needed) — for elements that already set their own background */
.cta-band.gradient-border{
  border: 1px solid transparent;
  background-image: linear-gradient(135deg, var(--bg-2), var(--bg-3)), linear-gradient(120deg, rgba(91,157,255,0.9), rgba(212,175,106,0.75) 50%, rgba(59,130,246,0.6));
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
.bot-detail-card.gradient-border, .price-card.gradient-border, .card.gradient-border{
  border: 1px solid transparent;
  background-image: linear-gradient(var(--bg-2), var(--bg-2)), linear-gradient(120deg, rgba(91,157,255,0.85), rgba(212,175,106,0.7) 52%, rgba(59,130,246,0.55));
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
.vip-band.gradient-border{
  border: 1px solid transparent;
  background-image: linear-gradient(var(--bg-2), var(--bg-2)), linear-gradient(120deg, rgba(212,175,106,0.9), rgba(91,157,255,0.55) 55%, rgba(212,175,106,0.6));
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

/* ---------- Dot-leader rows (label ⋯⋯⋯ value) ---------- */
.leader-row{
  display:flex;
  align-items:baseline;
  gap:10px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border-soft);
}
.leader-row:last-child{ border-bottom:none; }
.leader-row .leader-label{
  color: var(--text-low);
  font-size: 0.78rem;
  font-weight:600;
  letter-spacing:0.02em;
  text-transform: uppercase;
  white-space:nowrap;
}
.leader-row .leader-fill{
  flex:1;
  border-bottom: 1px dotted var(--border);
  margin-bottom: 5px;
  min-width: 16px;
}
.leader-row .leader-value{
  color: var(--text-hi);
  font-weight:700;
  font-size:0.92rem;
  white-space:nowrap;
}

/* ---------- Bot detail card (Bots page) ---------- */
.bot-detail-card{
  background: var(--bg-2);
  border-radius: calc(var(--radius-lg) - 1px);
  padding: 36px;
  position:relative;
}
.bot-detail-head{
  display:flex; align-items:center; gap:16px; flex-wrap:wrap; margin-bottom:6px;
}
.bot-detail-tagline{ color:var(--gold); font-style:italic; font-size:0.92rem; margin-bottom:18px; }
.bot-mini-stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin: 22px 0;
}
.bot-mini-stats .mini-stat{
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 12px;
  text-align:center;
}
.bot-mini-stats .mini-stat b{ display:block; font-size:1.3rem; color:var(--text-hi); margin-bottom:2px; }
.bot-mini-stats .mini-stat span{ font-size:0.68rem; color:var(--text-low); letter-spacing:0.03em; text-transform:uppercase; }
.bot-spec-list{ margin-top: 8px; }
@media (max-width:600px){
  .bot-mini-stats{ grid-template-columns: repeat(3,1fr); gap:8px; }
  .bot-mini-stats .mini-stat b{ font-size:1.05rem; }
  .bot-detail-card{ padding:24px; }
}

/* ---------- Utilities ---------- */
.text-center{ text-align:center; }
.mt-0{ margin-top:0; }
.mb-0{ margin-bottom:0; }
.flex{ display:flex; }
.gap-12{ gap:12px; }
.gap-24{ gap:24px; }
.items-center{ align-items:center; }
.justify-between{ justify-content:space-between; }
.flex-wrap{ flex-wrap:wrap; }

/* ---------- Responsive ---------- */
@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4{ grid-template-columns: 1fr 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  nav.main-nav{ display:none; }
}
@media (max-width: 600px){
  section{ padding: 64px 0; }
  .grid-2, .grid-3, .grid-4{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .hero-stats{ gap: 24px; }
  .cta-band{ padding: 36px 24px; }
}
