:root {
  --navy: #06090f;
  --panel: #101823;
  --panel-2: #0c121c;
  --emerald: #10b981;
  --emerald-bright: #34d399;
  --teal: #22d3ee;
  --white: #ffffff;
  --muted: #8b96a5;
  --border: #1f2937;
  --red: #f87171;
  --radius: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--navy);
  color: var(--white);
  font-family: 'Inter Tight', 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.55;
}
h1, h2, h3 { font-family: 'Inter Tight', sans-serif; font-weight: 800; margin: 0 0 .5em; line-height: 1.12; letter-spacing: -0.01em; }
a { color: inherit; }
img { max-width: 100%; display: block; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---- Promo bar ---- */
.promo-bar {
  background: linear-gradient(90deg, var(--emerald), var(--teal));
  color: #04120d; text-align: center; font-size: 13.5px; font-weight: 700;
  padding: 10px 16px; letter-spacing: .02em;
}
.promo-bar .code-pill {
  display: inline-block; background: rgba(0,0,0,.2); border: 1px solid rgba(0,0,0,.35);
  border-radius: 999px; padding: 2px 12px; margin-left: 10px; font-weight: 800;
}

/* ---- Nav ---- */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(6,9,15,.9); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { font-family: 'Inter Tight', sans-serif; font-size: 19px; font-weight: 800; letter-spacing: .02em; text-transform: uppercase; }
.brand span { color: var(--emerald-bright); }
.nav-links { display: flex; gap: 26px; font-size: 14.5px; }
.nav-links a { text-decoration: none; color: var(--muted); font-weight: 600; transition: color .2s; }
.nav-links a:hover { color: var(--emerald-bright); }
.nav-cta { background: linear-gradient(135deg, var(--emerald), var(--teal)); color: #04120d; font-weight: 800; padding: 11px 24px; border-radius: 999px; text-decoration: none; font-size: 13.5px; white-space: nowrap; text-transform: uppercase; letter-spacing: .03em; }

/* ---- Hero ---- */
.hero { position: relative; padding: 70px 0 40px; background: radial-gradient(90% 60% at 50% 0%, #0b2a22 0%, var(--navy) 60%); overflow: hidden; text-align: center; }
.hero-content { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.eyebrow-pill {
  display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center;
  border: 1px solid var(--border); background: rgba(255,255,255,.03); border-radius: 999px;
  padding: 10px 20px; font-size: 12.5px; color: var(--muted); font-weight: 600; margin-bottom: 26px;
}
.eyebrow-pill .dot { color: var(--emerald-bright); }
.hero h1 { font-size: clamp(38px, 6.6vw, 68px); text-transform: uppercase; color: var(--white); }
.hero h1 em { font-style: normal; background: linear-gradient(135deg, var(--emerald-bright), var(--teal)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { font-size: 18px; color: var(--muted); max-width: 560px; margin: 18px auto 34px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 16px 34px; border-radius: 999px; font-weight: 800; font-size: 15px; text-decoration: none; border: none; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease; text-transform: uppercase; letter-spacing: .03em; }
.btn-primary { background: linear-gradient(135deg, var(--emerald), var(--teal)); color: #04120d; box-shadow: 0 10px 34px -8px rgba(16,185,129,.5); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 38px -8px rgba(16,185,129,.65); }
.btn-ghost { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.25); }
.btn-ghost:hover { border-color: var(--emerald-bright); color: var(--emerald-bright); }
.btn-sm { padding: 10px 20px; font-size: 12.5px; }
.btn-block { width: 100%; }

.trust-bar { position: relative; z-index: 2; margin-top: 50px; }
.trust-bar .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-item { font-size: 13px; color: var(--muted); display: flex; flex-direction: column; gap: 4px; text-align: center; padding: 18px 10px; background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); }
.trust-item strong { color: var(--emerald-bright); font-size: 25px; font-family: 'Inter Tight', sans-serif; font-weight: 800; }

/* ---- Sections ---- */
section { padding: 90px 0; }
.section-head { max-width: 640px; margin: 0 auto 50px; text-align: center; }
.section-head .eyebrow-pill { display: inline-flex; }
.section-head h2 { font-size: clamp(28px, 4.4vw, 44px); text-transform: uppercase; }
.section-head p { color: var(--muted); font-size: 16px; margin-top: 10px; }

/* ---- Pricing cards ---- */
.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.price-card { background: var(--panel); border: 1px solid var(--border); border-radius: 20px; padding: 30px; position: relative; }
.price-card.featured { background: linear-gradient(160deg, var(--emerald) 0%, var(--teal) 120%); border-color: transparent; }
.price-card .popular-badge { display: inline-block; background: rgba(0,0,0,.3); border: 1px solid rgba(255,255,255,.4); border-radius: 999px; padding: 4px 14px; font-size: 11.5px; font-weight: 800; text-transform: uppercase; margin-bottom: 14px; }
.price-card h3 { font-size: 22px; margin-bottom: 2px; }
.price-card .size-sub { color: var(--muted); font-size: 13.5px; margin-bottom: 18px; }
.price-card.featured .size-sub { color: rgba(4,18,13,.75); }
.price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 12px; }
.price-strike { color: var(--muted); text-decoration: line-through; font-size: 17px; font-weight: 600; }
.price-card.featured .price-strike { color: rgba(4,18,13,.6); }
.price-final { font-size: 36px; font-weight: 800; color: var(--emerald-bright); }
.price-card.featured .price-final { color: #04120d; }
.price-per { color: var(--muted); font-size: 13px; }
.price-card.featured .price-per { color: rgba(4,18,13,.7); }
.promo-chip { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.06); border: 1px solid var(--border); border-radius: 999px; padding: 6px 14px; font-size: 12.5px; color: var(--muted); margin-bottom: 20px; }
.price-card.featured .promo-chip { background: rgba(4,18,13,.15); border-color: rgba(4,18,13,.3); color: rgba(4,18,13,.85); }
.promo-chip .code { background: rgba(255,255,255,.12); border-radius: 6px; padding: 1px 8px; font-weight: 800; color: var(--white); }
.price-card.featured .promo-chip .code { background: rgba(4,18,13,.18); color: #04120d; }
.price-card .btn { width: 100%; margin-bottom: 22px; }
.price-card.featured .btn { background: var(--navy); color: #fff; box-shadow: none; }
.feature-list-title { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 12px; font-weight: 700; }
.price-card.featured .feature-list-title { color: rgba(4,18,13,.8); }
.feature-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.feature-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--white); }
.feature-list li::before { content: '✓'; color: var(--emerald-bright); font-weight: 800; flex-shrink: 0; }
.price-card.featured .feature-list li { color: #04120d; }
.price-card.featured .feature-list li::before { color: #04120d; }

/* ---- Plain data tables (trade log, admin) ---- */
.pricing-table { width: 100%; border-collapse: collapse; margin-top: 10px; }
.pricing-table th, .pricing-table td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--border); font-size: 14.5px; }
.pricing-table th { color: var(--muted); font-weight: 600; text-transform: uppercase; font-size: 12px; letter-spacing: .06em; }
.pricing-table .sub { color: var(--muted); font-size: 12px; }

/* ---- Feature grid (Why traders choose us) ---- */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.feature-card { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.feature-card .icon-circle { width: 48px; height: 48px; border-radius: 50%; background: rgba(16,185,129,.15); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.feature-card h3 { font-size: 19px; margin-bottom: 8px; }
.feature-card p { color: var(--muted); font-size: 14.5px; margin: 0; }

.payout-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.payout-card { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; text-align: center; }
.payout-card .icon-circle { width: 44px; height: 44px; border-radius: 50%; background: rgba(16,185,129,.15); display: flex; align-items: center; justify-content: center; font-size: 20px; margin: 0 auto 14px; }
.payout-card h3 { font-size: 17px; margin-bottom: 8px; }
.payout-card p { color: var(--muted); font-size: 14px; margin: 0; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { text-align: center; }
.step .num { width: 46px; height: 46px; margin: 0 auto 16px; border-radius: 50%; background: linear-gradient(135deg, var(--emerald), var(--teal)); color: #04120d; font-weight: 800; display: flex; align-items: center; justify-content: center; font-size: 17px; }
.step h3 { font-size: 18px; }
.step p { color: var(--muted); font-size: 14.5px; }

.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 1px; }
.faq-item { padding: 22px 0; border-bottom: 1px solid var(--border); }
.faq-item h3 { font-size: 16.5px; margin-bottom: 8px; }
.faq-item p { color: var(--muted); font-size: 14.5px; margin: 0; }

.cta-banner { background: linear-gradient(160deg, #0b2a22 0%, var(--navy) 70%); border: 1px solid var(--border); border-radius: 24px; padding: 54px 46px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; text-align: left; }
.cta-banner h2 { font-size: 28px; margin-bottom: 6px; text-transform: uppercase; }
.cta-banner p { color: var(--muted); margin: 0; }

footer { border-top: 1px solid var(--border); padding: 44px 0 0; color: var(--muted); font-size: 14px; }
footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; padding-bottom: 28px; }
footer .brand { font-size: 17px; margin-bottom: 8px; }
.foot-muted { max-width: 320px; font-size: 13.5px; }
.foot-links { display: flex; flex-direction: column; gap: 8px; }
footer a.link { text-decoration: none; color: var(--muted); }
footer a.link:hover { color: var(--emerald-bright); }
.foot-fine { border-top: 1px solid var(--border); padding: 20px 24px; font-size: 12px; color: #5a6472; }

/* ---- Reserve / dashboard shells ---- */
.reserve-shell { padding: 50px 0 90px; }
.reserve-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; align-items: flex-start; }
.form-card, .quote-card { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13.5px; color: var(--muted); margin-bottom: 6px; }
.field input, .field select, .field textarea { width: 100%; padding: 13px 14px; border-radius: 10px; border: 1px solid var(--border); background: #0a0f17; color: var(--white); font-size: 15px; font-family: inherit; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--emerald); }

.quote-card h3 { color: var(--muted); text-transform: uppercase; letter-spacing: .06em; font-size: 12px; margin-bottom: 16px; }
.quote-placeholder { color: var(--muted); font-size: 14px; }
.quote-error { color: var(--red); font-size: 13.5px; margin-top: 8px; }
.quote-line { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14.5px; }
.quote-line.total { border-bottom: none; padding-top: 16px; font-size: 20px; font-weight: 800; color: var(--emerald-bright); }

.confirm-box { text-align: center; padding: 80px 0; }
.confirm-box .icon { font-size: 50px; margin-bottom: 16px; }

.dash-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 30px; }
.dash-label { color: var(--muted); font-size: 12.5px; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 8px; }
.dash-value { font-family: 'Inter Tight', sans-serif; font-size: 22px; font-weight: 800; }
.pnl-pos { color: var(--emerald-bright); }
.pnl-neg { color: var(--red); }

.progress-block { margin-bottom: 22px; }
.progress-label { display: flex; justify-content: space-between; font-size: 13.5px; color: var(--muted); margin-bottom: 8px; }
.progress-bar { height: 10px; border-radius: 999px; background: #0a0f17; border: 1px solid var(--border); overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--emerald), var(--teal)); border-radius: 999px; }
.progress-fill.progress-danger { background: linear-gradient(90deg, #f59e0b, var(--red)); }

.status-badge { display: inline-block; padding: 5px 14px; border-radius: 999px; font-size: 12.5px; font-weight: 700; vertical-align: middle; margin-left: 10px; }
.badge-active { background: rgba(34,211,238,.15); color: var(--teal); }
.badge-funded { background: rgba(245,158,11,.18); color: #fbbf24; }
.badge-fail { background: rgba(248,113,113,.18); color: var(--red); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .trust-bar .wrap { grid-template-columns: repeat(2, 1fr); }
  .pricing-cards { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .payout-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .reserve-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .dash-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-banner { padding: 34px 24px; text-align: center; justify-content: center; }
}
