/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #080808;
  --bg-2: #0f0f0f;
  --bg-card: #111111;
  --lime: #C8F526;
  --lime-dim: rgba(200, 245, 38, 0.15);
  --gold: #B8963A;
  --gold-dim: rgba(184, 150, 58, 0.15);
  --white: #F2EDE3;
  --muted: #7A7A7A;
  --border: rgba(200, 245, 38, 0.12);
}

html {
  font-family: 'Syne', sans-serif;
  background: var(--bg);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
}

body { min-height: 100vh; overflow-x: hidden; }

/* === HERO === */
.hero {
  position: relative;
  padding: 80px 48px 64px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 245, 38, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 245, 38, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
  pointer-events: none;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 70% 50%, rgba(200, 245, 38, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--lime);
  text-transform: uppercase;
  margin-bottom: 32px;
}

.label-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lime);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.hero-headline {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-headline .lime {
  color: var(--lime);
}

.hero-sub {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(242, 237, 227, 0.65);
  max-width: 480px;
  font-family: 'Geist Mono', monospace;
}

/* === HERO DASHBOARD === */
.hero-dashboard { display: flex; flex-direction: column; gap: 12px; }

.dash-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
}

.dash-card--main { padding: 24px; }

.dash-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.dash-label {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.dash-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  color: var(--lime);
}

.live-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--lime);
  animation: pulse 2s ease-in-out infinite;
}

.dash-value {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.dash-currency {
  font-size: 16px;
  color: var(--muted);
  font-family: 'Geist Mono', monospace;
}

.dash-change {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  margin-bottom: 16px;
}

.dash-change.positive { color: var(--lime); }
.dash-change.negative { color: #FF6B6B; }

.dash-chart { margin-bottom: 8px; }
.dash-chart svg { width: 100%; height: 60px; }

.dash-chart-labels {
  display: flex;
  justify-content: space-between;
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  color: var(--muted);
}

.dash-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }

.dash-card--sm .dash-value-sm {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin: 8px 0 4px;
  font-family: 'Geist Mono', monospace;
}

.dash-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
}

.dash-status.green { color: var(--lime); }
.dash-status.amber { color: var(--gold); }

/* === PRICE BADGE === */
.hero-price-badge {
  position: absolute;
  bottom: 24px;
  right: 48px;
  text-align: right;
  pointer-events: none;
}

.price-main {
  font-size: 48px;
  font-weight: 800;
  color: var(--lime);
  letter-spacing: -0.03em;
  line-height: 1;
}

.price-sub {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}

/* === FEATURES === */
.features {
  padding: 80px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.features-header { margin-bottom: 64px; }

.section-tag {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--lime);
  margin-bottom: 20px;
}

.features-title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--white);
}

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

.feature-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: border-color 0.2s;
}

.feature-card:hover { border-color: rgba(200, 245, 38, 0.3); }

.feature-card--accent {
  border-color: rgba(184, 150, 58, 0.2);
}

.feature-card--accent:hover { border-color: rgba(184, 150, 58, 0.4); }

.feature-icon { margin-bottom: 16px; }

.feature-badge {
  display: inline-block;
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--lime-dim);
  color: var(--lime);
  margin-bottom: 12px;
}

.sat-badge { background: var(--lime-dim); color: var(--lime); }
.amber-badge { background: var(--gold-dim); color: var(--gold); }

.feature-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(242, 237, 227, 0.6);
  margin-bottom: 20px;
  font-family: 'Geist Mono', monospace;
}

.feature-detail {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-top: 1px solid var(--border);
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
}

.detail-key { color: var(--muted); }
.detail-val { color: var(--white); }

/* Compliance bars */
.compliance-bars { display: flex; flex-direction: column; gap: 10px; }

.comp-bar {
  display: grid;
  grid-template-columns: 60px 1fr 50px;
  align-items: center;
  gap: 12px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
}

.comp-label { color: var(--muted); }

.comp-track {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}

.comp-fill {
  height: 100%;
  background: var(--lime);
  border-radius: 2px;
  transition: width 1s ease;
}

.comp-fill--amber { background: var(--gold); }

.comp-status { font-size: 11px; }
.comp-status.green { color: var(--lime); }
.comp-status.amber { color: var(--gold); }

/* Forecast scenarios */
.forecast-scenarios {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.scenario {
  display: flex;
  justify-content: space-between;
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
}

.scenario-label { color: var(--muted); }
.scenario--base .scenario-val { color: var(--lime); font-weight: 500; }
.scenario--opt .scenario-val { color: rgba(200, 245, 38, 0.6); }
.scenario--caut .scenario-val { color: var(--gold); }

/* === FEATURES DIVIDER === */
.features-divider {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 56px 0;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.divider-text {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
}

/* === COMPARISON === */
.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 0;
}

.comparison-item {
  padding: 32px;
  border-radius: 16px;
  border: 1px solid;
}

.comparison--old {
  background: rgba(255,255,255,0.02);
  border-color: rgba(255,255,255,0.08);
}

.comparison--new {
  background: var(--lime-dim);
  border-color: rgba(200, 245, 38, 0.3);
}

.comparison-label {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.comparison-price {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--muted);
  margin-bottom: 24px;
}

.comparison-price.lime { color: var(--lime); }

.comp-period {
  font-size: 16px;
  font-weight: 400;
  opacity: 0.6;
  font-family: 'Geist Mono', monospace;
}

.comparison-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.comparison-list li {
  font-family: 'Geist Mono', monospace;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.comparison-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison--old .cross::before {
  background: rgba(255,255,255,0.1);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 2L8 8M8 2L2 8' stroke='%237A7A7A' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

.comparison--old .cross { color: var(--muted); }

.comparison--new .check::before {
  background: var(--lime);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5L4 7L8 3' stroke='%23080808' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

.comparison--new .check { color: var(--white); }

/* === MANIFESTO === */
.manifesto {
  background: linear-gradient(180deg, var(--bg) 0%, #0d0d0d 50%, var(--bg) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 96px 48px;
}

.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.manifesto-tag {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 24px;
}

.manifesto-headline {
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.manifesto-body {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(242, 237, 227, 0.65);
  max-width: 640px;
  margin-bottom: 56px;
  font-family: 'Geist Mono', monospace;
}

.sat-stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.sat-stat {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
}

.stat-num {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--lime);
  margin-bottom: 6px;
}

.stat-label {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.4;
}

.manifesto-quote {
  background: rgba(184, 150, 58, 0.06);
  border: 1px solid rgba(184, 150, 58, 0.2);
  border-radius: 16px;
  padding: 32px 40px;
  margin-bottom: 40px;
}

.manifesto-quote blockquote {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(242, 237, 227, 0.85);
  font-style: italic;
  margin-bottom: 12px;
}

.manifesto-quote cite {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  color: var(--gold);
  font-style: normal;
}

/* === CLOSING === */
.closing {
  padding: 96px 48px;
  text-align: center;
}

.closing-inner { max-width: 760px; margin: 0 auto; }

.closing-headline {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}

.closing-sub {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(242, 237, 227, 0.55);
  margin-bottom: 56px;
  font-family: 'Geist Mono', monospace;
}

.closing-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 56px;
}

.closing-stat { text-align: center; }

.cstat-val {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--lime);
  margin-bottom: 4px;
}

.cstat-label {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: var(--muted);
}

.closing-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

.closing-signature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.sig-line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: var(--border);
}

.sig-brand { text-align: center; }

.sig-name {
  display: block;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
}

.sig-tagline {
  display: block;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 48px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand { display: flex; flex-direction: column; gap: 4px; }

.footer-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.footer-desc {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: var(--muted);
}

.footer-meta {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-sep { opacity: 0.4; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero { padding: 60px 24px 48px; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-dashboard { order: -1; }
  .dash-row { grid-template-columns: 1fr 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr; gap: 16px; }
  .sat-stat-row { grid-template-columns: 1fr 1fr; gap: 16px; }
  .comparison-row { grid-template-columns: 1fr; gap: 16px; }
  .manifesto, .closing { padding: 64px 24px; }
  .hero-price-badge { display: none; }
  .closing-stats { flex-wrap: wrap; gap: 24px; }
}

@media (max-width: 600px) {
  .dash-row { grid-template-columns: 1fr; }
  .sat-stat-row { grid-template-columns: 1fr 1fr; }
  .closing-stats { flex-direction: column; align-items: center; }
  .closing-divider { display: none; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .features-divider .divider-line { display: none; }
}