:root {
  --bg: #0a0a0f;
  --surface: #12121a;
  --surface-2: #1a1a26;
  --fg: #f0ede6;
  --fg-2: #a8a49e;
  --accent: #E63946;
  --accent-glow: rgba(230, 57, 70, 0.15);
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --green: #22c55e;
  --border: rgba(240, 237, 230, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 2rem;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--fg);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  color: var(--fg-2);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 4rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(230, 57, 70, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(240,237,230,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,237,230,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}
.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(230, 57, 70, 0.3);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  background: rgba(230, 57, 70, 0.08);
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero-headline em {
  font-style: normal;
  color: var(--accent);
  position: relative;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-2);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 0.2rem; }
.stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--fg);
}
.stat-label {
  font-size: 0.75rem;
  color: var(--fg-2);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ── PROOF ── */
.proof {
  padding: 5rem 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof-inner { max-width: 1200px; margin: 0 auto; }
.proof-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-2);
  margin-bottom: 2rem;
}
.proof-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.proof-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.proof-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.proof-card strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--fg);
}
.proof-card p {
  font-size: 0.85rem;
  color: var(--fg-2);
  line-height: 1.5;
}

/* ── FEATURES ── */
.features {
  padding: 7rem 2rem;
}
.features-inner { max-width: 1200px; margin: 0 auto; }
.features-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.features-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.features-header p {
  color: var(--fg-2);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s;
}
.feature-card:hover {
  border-color: rgba(230, 57, 70, 0.3);
  transform: translateY(-4px);
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.feature-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--fg-2);
  line-height: 1.6;
}

/* ── DIFFERENTIATORS ── */
.differentiators {
  padding: 7rem 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.diff-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.diff-left h2 {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 1rem 0 1.5rem;
}
.diff-body {
  color: var(--fg-2);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.diff-table {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.diff-row {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  align-items: center;
  padding: 0.7rem 1.2rem;
  font-size: 0.8rem;
  border-bottom: 1px solid var(--border);
}
.diff-row:last-child { border-bottom: none; }
.diff-row:first-child {
  background: var(--surface-2);
  font-weight: 600;
}
.diff-col-header { text-align: center; color: var(--fg-2); }
.diff-col-highlight { color: var(--accent) !important; }
.diff-yes { color: var(--green); text-align: center; font-size: 1rem; }
.diff-no { color: var(--fg-2); text-align: center; opacity: 0.4; }
.diff-partial { color: #f59e0b; text-align: center; font-size: 0.75rem; }

/* Card stack visual */
.diff-right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.diff-card-stack {
  position: relative;
  width: 220px;
  height: 300px;
}
.diff-card {
  position: absolute;
  width: 200px;
  height: 280px;
  border-radius: 16px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.3s;
}
.diff-card-back {
  top: 0;
  left: 20px;
  transform: rotate(-6deg);
  opacity: 0.4;
}
.diff-card-mid {
  top: 10px;
  left: 10px;
  transform: rotate(-2deg);
  opacity: 0.7;
}
.diff-card-front {
  top: 20px;
  left: 0;
  background: linear-gradient(135deg, var(--surface-2) 0%, #1e1a10 100%);
  border-color: rgba(201, 168, 76, 0.3);
}
.diff-card-tier {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-2);
  margin-bottom: 0.5rem;
}
.diff-card-gold { color: var(--gold); }
.diff-card-name {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.3rem;
}
.diff-card-value {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--fg);
}
.diff-card-value-lg { color: var(--gold-light); font-size: 1.8rem; }
.diff-card-bar {
  margin-top: 1rem;
}
.diff-card-bar-fill {
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin-bottom: 0.3rem;
}
.diff-card-bar span {
  font-size: 0.65rem;
  color: var(--fg-2);
}

/* ── VISION ── */
.vision {
  padding: 7rem 2rem;
}
.vision-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.vision-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.vision-line {
  width: 40px;
  height: 1px;
  background: var(--accent);
}
.vision-eyebrow span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}
.vision-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}
.vision-headline strong { color: var(--accent); }
.vision-body {
  color: var(--fg-2);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.vision-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 3rem;
  padding: 2.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
}
.vstat { display: flex; flex-direction: column; align-items: center; gap: 0.2rem; }
.vstat-year { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
.vstat-rev {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.vstat-label { font-size: 0.75rem; color: var(--fg-2); }
.vision-closer {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.5;
}

/* ── FOOTER ── */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 4rem 2rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand p {
  color: var(--fg-2);
  font-size: 0.85rem;
  margin-top: 1rem;
  max-width: 260px;
  line-height: 1.6;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.footer-col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col-head {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-2);
  margin-bottom: 0.3rem;
}
.footer-col a {
  font-size: 0.85rem;
  color: var(--fg-2);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--fg); }
.footer-bottom {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  font-size: 0.78rem;
  color: var(--fg-2);
  opacity: 0.6;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .proof-cards { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .diff-inner { grid-template-columns: 1fr; gap: 3rem; }
  .diff-right { display: none; }
  .vision-stats { flex-direction: column; gap: 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-stats { gap: 1.5rem; }
  .stat-divider { display: none; }
  .diff-row { grid-template-columns: 1.5fr repeat(3, 0.8fr); font-size: 0.7rem; }
}

@media (max-width: 480px) {
  .nav-links { display: none; }
  .hero-headline { font-size: 2.5rem; }
  .proof-card { flex-direction: column; }
}