:root{
  --bg:#07101c;
  --surface:#0d1728;
  --surface2:#111f35;
  --card:#ffffff;
  --text:#f7fbff;
  --muted:#93a4bd;
  --soft:#cbd8ea;
  --line:rgba(255,255,255,.10);
  --cyan:#22d3ee;
  --blue:#3b82f6;
  --purple:#7c3aed;
  --green:#10b981;
  --red:#ef4444;
  --yellow:#f59e0b;
  --shadow:0 28px 70px rgba(0,0,0,.32);
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  background:
    radial-gradient(circle at 18% 0,rgba(59,130,246,.20),transparent 34%),
    radial-gradient(circle at 88% 3%,rgba(34,211,238,.16),transparent 30%),
    linear-gradient(180deg,#07101c,#050914 100%);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
}

a{text-decoration:none;color:inherit}
.wrap{width:min(1180px,calc(100% - 32px));margin:0 auto}

.topbar{
  position:sticky;
  top:0;
  z-index:40;
  background:rgba(7,16,28,.86);
  backdrop-filter:blur(18px);
  border-bottom:1px solid var(--line);
}

.nav{
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}

.brand{
  font-size:28px;
  font-weight:950;
  letter-spacing:-.05em;
}

.brand span{color:var(--cyan)}

.menu{
  display:flex;
  gap:22px;
  font-size:15px;
  font-weight:850;
  color:#cbd8ea;
}

.menu a:hover{color:white}

.nav-actions,.actions{
  display:flex;
  gap:12px;
  align-items:center;
  flex-wrap:wrap;
}

.btn,button{
  border:0;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:13px 20px;
  border-radius:999px;
  font-weight:950;
  color:white;
  cursor:pointer;
}

.btn.primary{
  background:linear-gradient(90deg,var(--purple),var(--blue));
  box-shadow:0 16px 40px rgba(59,130,246,.28);
}

.btn.ghost{
  background:rgba(255,255,255,.065);
  border:1px solid var(--line);
}

/* MARKET STRIP */
.market-strip{
  background:rgba(13,23,40,.82);
  border-bottom:1px solid var(--line);
}

.strip-grid{
  min-height:58px;
  display:flex;
  align-items:center;
  gap:18px;
}

.strip-title{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--cyan);
  font-size:12px;
  font-weight:950;
  letter-spacing:.16em;
  white-space:nowrap;
}

.live-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--cyan);
  box-shadow:0 0 0 6px rgba(34,211,238,.12),0 0 18px rgba(34,211,238,.55);
  animation:pulse 1.5s ease-in-out infinite;
}

@keyframes pulse{
  0%,100%{transform:scale(1);opacity:1}
  50%{transform:scale(1.18);opacity:.72}
}

.market-ticker{
  display:flex;
  gap:10px;
  overflow:auto;
  scrollbar-width:none;
}

.market-ticker::-webkit-scrollbar{display:none}

.ticker-card{
  min-width:max-content;
  display:flex;
  gap:12px;
  align-items:center;
  padding:9px 14px;
  border-radius:16px;
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.09);
}

.ticker-card strong{font-size:14px}
.ticker-card span{font-size:14px;color:#d9e6f8;font-variant-numeric:tabular-nums}
.ticker-card em{font-style:normal;font-size:12px;font-weight:900}
.ticker-card.up em{color:var(--green)}
.ticker-card.down em{color:var(--red)}

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

.dashboard-grid{
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:34px;
  align-items:center;
}

.eyebrow{
  color:var(--cyan);
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:12px;
  font-weight:950;
  margin-bottom:14px;
}

h1{
  font-size:clamp(42px,5.4vw,68px);
  line-height:.98;
  letter-spacing:-.06em;
  margin:0 0 22px;
  max-width:12ch;
}

h1 span{
  color:var(--cyan);
  display:block;
}

.lead{
  font-size:18px;
  line-height:1.62;
  color:#c8d7ec;
  margin:0 0 26px;
  max-width:680px;
}

.mini-proof{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-top:22px;
  max-width:620px;
}

.mini-proof div{
  padding:14px;
  border-radius:18px;
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.08);
}

.mini-proof strong{
  display:block;
  font-size:22px;
  letter-spacing:-.04em;
}

.mini-proof span{
  display:block;
  color:var(--muted);
  font-size:13px;
  margin-top:4px;
}

/* RADAR BOARD */
.radar-board{
  background:
    radial-gradient(circle at 85% 0,rgba(34,211,238,.12),transparent 30%),
    linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.035));
  border:1px solid rgba(255,255,255,.11);
  border-radius:30px;
  padding:22px;
  box-shadow:var(--shadow);
}

.board-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  margin-bottom:18px;
}

.board-label{
  color:var(--muted);
  font-size:12px;
  font-weight:950;
  letter-spacing:.13em;
  text-transform:uppercase;
}

.board-head h2{
  margin:6px 0 0;
  font-size:30px;
  letter-spacing:-.045em;
}

.status-chip{
  padding:8px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:950;
}

.status-chip.live{
  color:#c5fff0;
  background:rgba(16,185,129,.12);
  border:1px solid rgba(16,185,129,.22);
}

.pair-table{
  display:grid;
  gap:12px;
}

.pair-row{
  display:grid;
  grid-template-columns:1.15fr .75fr .8fr 1.05fr auto;
  gap:14px;
  align-items:center;
  min-height:92px;
  padding:15px;
  border-radius:22px;
  background:rgba(255,255,255,.052);
  border:1px solid rgba(255,255,255,.08);
}

.pair-row.alert{
  border-color:rgba(239,68,68,.22);
  background:linear-gradient(90deg,rgba(239,68,68,.10),rgba(255,255,255,.04));
}

.pair-row.watch{
  border-color:rgba(245,158,11,.20);
}

.pair-main strong{
  display:block;
  font-size:18px;
}

.pair-main span{
  color:var(--muted);
  font-size:13px;
}

.pair-price{
  font-size:22px;
  font-weight:950;
  font-variant-numeric:tabular-nums;
}

.pair-move{
  font-size:20px;
  font-weight:950;
  font-variant-numeric:tabular-nums;
}

.pair-move.up{color:var(--green)}
.pair-move.watch{color:var(--yellow)}
.pair-move.calm{color:#9ee8c7}

.spark-bars{
  height:54px;
  display:flex;
  align-items:flex-end;
  gap:5px;
  padding:8px;
  border-radius:14px;
  background:rgba(4,10,20,.42);
}

.spark-bars i{
  display:block;
  flex:1;
  min-width:8px;
  border-radius:999px;
}

.spark-bars i.up{
  background:linear-gradient(180deg,var(--cyan),var(--blue));
}

.spark-bars i.down{
  background:linear-gradient(180deg,#fb7185,var(--red));
}

.h2{height:16px}.h3{height:22px}.h4{height:28px}.h5{height:34px}.h6{height:40px}.h7{height:46px}.h8{height:50px}

.pill-alert,.pill-watch,.pill-calm{
  padding:8px 11px;
  border-radius:999px;
  font-size:12px;
  font-weight:950;
}

.pill-alert{
  color:#ffd7df;
  background:rgba(239,68,68,.18);
  border:1px solid rgba(239,68,68,.25);
}

.pill-watch{
  color:#ffe8b2;
  background:rgba(245,158,11,.15);
  border:1px solid rgba(245,158,11,.24);
}

.pill-calm{
  color:#c5fff0;
  background:rgba(16,185,129,.12);
  border:1px solid rgba(16,185,129,.22);
}

/* SECTIONS */
.section{
  padding:44px 0;
}

.muted-section{
  background:linear-gradient(180deg,transparent,rgba(255,255,255,.025));
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.feature-card,.price-card{
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.09);
  border-radius:24px;
  padding:22px;
}

.feature-icon{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  border-radius:16px;
  background:rgba(34,211,238,.10);
  border:1px solid rgba(34,211,238,.20);
  font-size:22px;
  margin-bottom:14px;
}

.feature-card h3,.price-card h3{
  margin:0 0 10px;
  font-size:22px;
}

.feature-card p,.price-card p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
}

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.price-label{
  color:var(--cyan);
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:12px;
  font-weight:950;
}

.price-card h3{
  font-size:36px;
  letter-spacing:-.06em;
  margin-top:8px;
}

.price-card.featured{
  border-color:rgba(34,211,238,.28);
  background:
    radial-gradient(circle at top right,rgba(34,211,238,.12),transparent 30%),
    rgba(255,255,255,.062);
}

.footer{
  padding:34px 0;
  border-top:1px solid var(--line);
  color:var(--muted);
  text-align:center;
  font-size:14px;
  line-height:1.7;
}

/* REUSABLE FOR OTHER PAGES */
.panel,.card,.radar-card,.alert-card,.phone-card{
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.09);
  border-radius:24px;
  padding:22px;
  box-shadow:0 22px 60px rgba(0,0,0,.24);
}

.grid2{display:grid;grid-template-columns:1fr 1fr;gap:20px}
.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.grid4{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}

.badge,.tag{
  display:inline-flex;
  width:max-content;
  padding:8px 11px;
  border-radius:999px;
  font-size:12px;
  font-weight:950;
  border:1px solid rgba(255,255,255,.10);
}

.badge.alert{color:#ffd7df;background:rgba(239,68,68,.18)}
.badge.watch{color:#ffe8b2;background:rgba(245,158,11,.15)}
.badge.calm{color:#c5fff0;background:rgba(16,185,129,.12)}
.tag{color:#dbeafe;background:rgba(255,255,255,.055)}

.field{margin:0 0 16px}
label{display:block;font-weight:850;margin:0 0 8px}
input,select{
  width:100%;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(2,8,18,.72);
  color:#fff;
  border-radius:16px;
  padding:14px 15px;
  outline:none;
}

.notice{
  color:var(--muted);
  font-size:13px;
  line-height:1.65;
}

.copybox{
  background:#050b15;
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:14px;
  color:#d9eaff;
  word-break:break-word;
}

/* RESPONSIVE */
@media(max-width:1100px){
  .dashboard-grid,
  .feature-grid,
  .pricing-grid,
  .grid2,
  .grid3,
  .grid4{
    grid-template-columns:1fr;
  }

  .menu{display:none}

  .pair-row{
    grid-template-columns:1fr 1fr;
  }

  .spark-bars{
    grid-column:1/-1;
  }
}

@media(max-width:720px){
  .nav{
    align-items:flex-start;
    flex-direction:column;
    padding:16px 0;
  }

  .nav-actions,.actions{
    width:100%;
  }

  .btn,button{
    width:100%;
  }

  .strip-grid{
    flex-direction:column;
    align-items:flex-start;
    padding:10px 0;
  }

  h1{
    font-size:42px;
  }

  .lead{
    font-size:16px;
  }

  .mini-proof{
    grid-template-columns:1fr;
  }

  .pair-row{
    grid-template-columns:1fr;
  }

  .pair-price,.pair-move{
    font-size:24px;
  }
}
