/* ── Variables ── */
:root {
  --bg: #080C14;
  --surface: #0D1525;
  --surface-2: #111D2E;
  --border: rgba(255,255,255,0.07);
  --teal: #00D4A1;
  --teal-dim: rgba(0,212,161,0.12);
  --gold: #F0B429;
  --gold-dim: rgba(240,180,41,0.12);
  --text: #E8ECF2;
  --text-muted: #6B7F96;
  --text-dim: #3D5068;
}

/* ── Base ── */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3 { font-family: 'Syne', system-ui, sans-serif; }

/* ── Nav ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2.5rem;
  display: flex;
  align-items: center;
}
.nav-inner { display: flex; align-items: center; gap: 0.5rem; }
.nav-logo {
  width: 28px; height: 28px;
  background: var(--teal);
  color: #000;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px;
}
.nav-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2.5rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero-bg-text {
  position: absolute;
  bottom: -2rem;
  right: -1rem;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(8rem, 20vw, 18rem);
  color: rgba(255,255,255,0.025);
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero-headline .teal { color: var(--teal); }
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 42ch;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
}
.stat { border-left: 1px solid var(--border); padding-left: 1rem; }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}

/* Hero right — charts */
.hero-right { position: relative; }
.geo-charts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.chart-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
}
.chart-panel.muted { opacity: 0.7; }
.chart-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.sparkline { width: 100%; height: 60px; }
.chart-pnl {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}
.chart-pnl span { font-weight: 400; color: var(--text-muted); font-size: 0.75rem; }
.positive { color: var(--teal); }
.account-card {
  grid-column: 1 / -1;
  background: var(--surface-2);
  border: 1px solid rgba(0,212,161,0.2);
  border-radius: 12px;
  padding: 1.25rem;
}
.acc-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem; }
.acc-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); }
.acc-badge {
  background: var(--teal-dim);
  color: var(--teal);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}
.acc-balance {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
}
.acc-metrics {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.acc-metrics strong { color: var(--teal); font-weight: 600; }

/* ── Proof ── */
.proof {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 2.5rem;
}
.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.proof-item { text-align: center; }
.proof-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}
.proof-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.4rem;
}
.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ── Section shared ── */
.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; }
.section-tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}
.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: 0.75rem;
}

/* ── How ── */
.how { padding: 5rem 2.5rem; max-width: 1200px; margin: 0 auto; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.step {
  padding: 2rem 1.75rem;
  border-right: 1px solid var(--border);
  position: relative;
}
.step:last-child { border-right: none; }
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  margin-bottom: 1rem;
}
.step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Edge ── */
.edge { padding: 5rem 2.5rem; background: var(--surface); }
.edge .section-header { max-width: 1200px; margin: 0 auto 3rem; }
.edge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.edge-card {
  background: var(--surface-2);
  padding: 2rem;
  transition: background 0.2s;
}
.edge-card:hover { background: var(--surface); }
.edge-icon {
  width: 44px; height: 44px;
  background: var(--teal-dim);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  margin-bottom: 1.25rem;
}
.edge-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text);
}
.edge-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Pricing ── */
.pricing { padding: 5rem 2.5rem; }
.pricing .section-header { max-width: 1200px; margin: 0 auto 3rem; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  position: relative;
  transition: border-color 0.2s;
}
.pricing-card.featured {
  border-color: rgba(0,212,161,0.3);
  background: var(--surface-2);
}
.pc-badge {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--teal);
  color: #000;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 0 0 8px 8px;
}
.pc-size {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}
.pc-target {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.pc-price {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 1.5rem;
}
.pc-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pc-features span {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pc-features span::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Closing ── */
.closing {
  padding: 7rem 2.5rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.closing-tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.5rem;
}
.closing-headline {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.closing-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 52ch;
  margin: 0 auto 2.5rem;
}
.closing-markets {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.closing-markets span {
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
}

/* ── Footer ── */
footer {
  padding: 2rem 2.5rem;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand { display: flex; align-items: center; gap: 0.5rem; }
.footer-logo {
  width: 24px; height: 24px;
  background: var(--teal);
  color: #000;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 5px;
}
.footer-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-right { order: -1; }
  .geo-charts { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 1px; }
  .step { border-right: none; border-bottom: 1px solid var(--border); padding: 1.5rem 0; }
  .edge-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
}
/* ── Buttons ── */
.btn-primary {
  background: var(--teal);
  color: #000;
  border: none;
  padding: 0.65rem 1.5rem;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s;
}
.btn-primary:hover { opacity: 0.85; }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 0.65rem 1.5rem;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.15s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.2); }
.btn-danger {
  background: #c0392b;
  color: #fff;
  border: none;
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

/* ── Nav actions ── */
.nav-actions { margin-left: auto; display: flex; gap: 0.75rem; align-items: center; }

/* ── Auth Modal ── */
#authModal {
  position: fixed; inset: 0; z-index: 200;
  display: none; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
}
#authModal.active { display: flex; }
.auth-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  width: 100%; max-width: 420px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  position: relative;
}
.auth-box h2 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.auth-sub { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.75rem; }
.auth-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; color: var(--text-muted);
  cursor: pointer; font-size: 1.2rem;
}
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.4rem; }
.form-group input, .form-group select {
  width: 100%; background: var(--surface-2);
  border: 1px solid var(--border); color: var(--text);
  padding: 0.65rem 0.85rem; border-radius: 8px;
  font-size: 0.9rem; font-family: 'DM Sans', sans-serif;
}
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--teal); }
.form-error { background: rgba(192,57,43,0.12); border: 1px solid rgba(192,57,43,0.3); color: #e74c3c; padding: 0.6rem 0.85rem; border-radius: 8px; font-size: 0.82rem; margin-bottom: 1rem; display: none; }
.form-error.visible { display: block; }
.auth-toggle { font-size: 0.82rem; color: var(--text-muted); text-align: center; margin-top: 1rem; }
.auth-toggle a { color: var(--teal); cursor: pointer; text-decoration: none; }
.auth-submit { width: 100%; margin-top: 0.5rem; }

/* ── Dashboard Layout ── */
.dashboard-page { min-height: 100vh; padding-top: 5rem; }
.dashboard-inner { max-width: 1100px; margin: 0 auto; padding: 2rem 2.5rem; }
.dash-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2.5rem; }
.dash-header h1 { font-size: 1.75rem; font-weight: 700; }
.dash-header .trader-email { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.2rem; }
.dash-section { margin-bottom: 3rem; }
.dash-section h2 { font-size: 1rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.25rem; }

/* Account cards */
.accounts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1rem; }
.account-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: border-color 0.2s;
}
.account-card.eval-passed { border-color: rgba(0,212,161,0.4); background: linear-gradient(135deg, var(--surface) 0%, rgba(0,212,161,0.04) 100%); }
.account-card.funded { border-color: rgba(240,180,41,0.3); background: linear-gradient(135deg, var(--surface) 0%, rgba(240,180,41,0.04) 100%); }
.acct-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; }
.acct-name { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 700; }
.acct-type-badge { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.2rem 0.6rem; border-radius: 4px; }
.badge-eval { background: var(--teal-dim); color: var(--teal); }
.badge-funded { background: var(--gold-dim); color: var(--gold); }
.badge-status { font-size: 0.7rem; padding: 0.15rem 0.5rem; border-radius: 4px; margin-top: 0.4rem; }
.status-active { background: rgba(0,212,161,0.1); color: var(--teal); }
.status-passed { background: var(--teal-dim); color: var(--teal); }
.status-failed { background: rgba(192,57,43,0.15); color: #e74c3c; }
.acct-balance { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; margin: 0.5rem 0; }
.acct-balance .cents { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.acct-progress { margin: 1rem 0; }
.progress-bar { height: 4px; background: var(--surface-2); border-radius: 2px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--teal); border-radius: 2px; transition: width 0.4s; }
.progress-fill.gold { background: var(--gold); }
.progress-fill.danger { background: #e74c3c; }
.progress-label { display: flex; justify-content: space-between; font-size: 0.72rem; color: var(--text-muted); margin-top: 0.3rem; }
.acct-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-top: 1rem; }
.metric-cell { background: var(--surface-2); padding: 0.6rem 0.75rem; border-radius: 6px; }
.metric-cell .mlabel { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); }
.metric-cell .mvalue { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; margin-top: 0.1rem; }
.acct-actions { display: flex; gap: 0.5rem; margin-top: 1rem; flex-wrap: wrap; }
.btn-sm { font-size: 0.78rem; padding: 0.45rem 0.9rem; }
.btn-reset {
  background: transparent;
  border: 1px solid #f97316;
  color: #f97316;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.btn-reset:hover { background: #f97316; color: #fff; }

/* Trading panel */
.trade-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.trade-panel h3 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 1rem; }
.position-row { display: flex; gap: 0.5rem; margin-bottom: 0.75rem; align-items: center; }
.position-row select, .position-row input {
  background: var(--surface-2); border: 1px solid var(--border);
  color: var(--text); padding: 0.55rem 0.75rem;
  border-radius: 6px; font-size: 0.85rem; font-family: 'DM Sans', sans-serif;
}
.position-info {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem;
  margin-top: 1rem;
}
.position-info .pi-row { display: flex; justify-content: space-between; font-size: 0.8rem; padding: 0.3rem 0; }
.position-info .pi-row .label { color: var(--text-muted); }
.position-info .pi-row .value { font-weight: 600; }
.position-info .pi-row .value.positive { color: var(--teal); }
.position-info .pi-row .value.negative { color: #e74c3c; }
.trade-btns { display: flex; gap: 0.75rem; margin-top: 1rem; }
.trade-btns button { flex: 1; }
.btn-long { background: #27ae60; color: #fff; border: none; padding: 0.75rem; border-radius: 8px; font-weight: 700; cursor: pointer; font-size: 0.9rem; }
.btn-short { background: #c0392b; color: #fff; border: none; padding: 0.75rem; border-radius: 8px; font-weight: 700; cursor: pointer; font-size: 0.9rem; }
.btn-close { background: var(--surface-2); border: 1px solid var(--border); color: var(--text); padding: 0.75rem; border-radius: 8px; cursor: pointer; font-size: 0.85rem; width: 100%; }

/* Trade log */
.trade-log { margin-top: 1.5rem; }
.trade-log table { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
.trade-log th { text-align: left; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); padding: 0.5rem 0.75rem; border-bottom: 1px solid var(--border); }
.trade-log td { padding: 0.6rem 0.75rem; border-bottom: 1px solid var(--border); }
.trade-log td.positive { color: var(--teal); }
.trade-log td.negative { color: #e74c3c; }
.trade-log .symbol-cell { font-weight: 600; }
.trade-log .dir-cell { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.05em; }
.dir-long { color: #2ecc71; }
.dir-short { color: #e74c3c; }

/* Payout section */
.payout-form-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  max-width: 500px;
}
.payout-form-panel h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.25rem; }
.payout-form-panel p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.amount-input { display: flex; align-items: center; gap: 0.5rem; }
.amount-input span { font-size: 1.5rem; font-weight: 700; color: var(--text-muted); }
.amount-input input {
  font-size: 2rem; font-weight: 700; font-family: 'Syne', sans-serif;
  background: var(--surface-2); border: 1px solid var(--border);
  color: var(--text); padding: 0.5rem 0.75rem; border-radius: 8px; width: 200px;
}
.quick-amounts { display: flex; gap: 0.5rem; margin-top: 0.75rem; }
.quick-btn { background: var(--surface-2); border: 1px solid var(--border); color: var(--text-muted); font-size: 0.75rem; padding: 0.3rem 0.75rem; border-radius: 6px; cursor: pointer; }
.quick-btn:hover { border-color: var(--teal); color: var(--teal); }
.payout-estimate { background: var(--surface-2); border-radius: 8px; padding: 1rem; margin-top: 1rem; font-size: 0.82rem; }
.payout-estimate .row { display: flex; justify-content: space-between; padding: 0.3rem 0; }
.payout-estimate .total { border-top: 1px solid var(--border); margin-top: 0.5rem; padding-top: 0.5rem; font-weight: 700; }

/* Account detail page */
.account-detail-page { min-height: 100vh; padding-top: 5rem; }
.account-detail-inner { max-width: 900px; margin: 0 auto; padding: 2rem 2.5rem; }
.account-detail-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.back-btn { background: var(--surface); border: 1px solid var(--border); color: var(--text-muted); padding: 0.5rem 0.85rem; border-radius: 6px; cursor: pointer; font-size: 0.8rem; text-decoration: none; }
.back-btn:hover { color: var(--text); }
.eval-criteria { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem; margin-bottom: 1.5rem; }
.eval-criteria h3 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 1rem; }
.criteria-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.criteria-item { background: var(--surface-2); border-radius: 8px; padding: 1rem; }
.criteria-item .clabel { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); }
.criteria-item .cvalue { font-family: 'Syne', sans-serif; font-size: 1.25rem; font-weight: 700; margin-top: 0.2rem; }
.criteria-item.met { color: var(--teal); }
.criteria-item.not-met { color: var(--text-muted); }
.criteria-item .check-icon { color: var(--teal); }

/* Empty state */
.empty-state { text-align: center; padding: 3rem 1rem; color: var(--text-muted); }
.empty-state .icon { font-size: 3rem; margin-bottom: 1rem; opacity: 0.3; }
.empty-state h3 { font-size: 1.1rem; font-weight: 600; color: var(--text); margin-bottom: 0.5rem; }
.empty-state p { font-size: 0.85rem; }

/* Inline alerts */
.alert { padding: 0.75rem 1rem; border-radius: 8px; font-size: 0.85rem; margin-bottom: 1rem; }
.alert-success { background: var(--teal-dim); border: 1px solid rgba(0,212,161,0.2); color: var(--teal); }
.alert-info { background: rgba(52,152,219,0.12); border: 1px solid rgba(52,152,219,0.2); color: #3498db; }
.alert-error { background: rgba(192,57,43,0.12); border: 1px solid rgba(192,57,43,0.2); color: #e74c3c; }

@media (max-width: 600px) {
  .hero { padding: 7rem 1.5rem 3rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .edge-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .proof-inner { gap: 1.5rem; }
  .proof-divider { display: none; }
  .hero-stats { gap: 1.5rem; }
  .footer-inner { flex-direction: column; gap: 0.5rem; }
}