/* ============================================================
   THE WHEEL — Company Website Styles
   Design System: Dark navy + Cyan + Purple + Gold
   Fonts: Michroma (headings) + Inter (body)
   ============================================================ */

/* ── CSS Custom Properties ────────────────────────────────── */
:root {
  --bg:           hsl(230, 80%, 4%);
  --bg-alt:       hsl(230, 70%, 6%);
  --card:         hsl(230, 60%, 8%);
  --card-hover:   hsl(230, 55%, 10%);
  --border:       hsl(230, 20%, 18%);
  --border-light: hsl(230, 20%, 22%);

  --foreground:   hsl(210, 40%, 98%);
  --muted:        hsl(220, 15%, 55%);

  --cyan:    hsl(190, 100%, 50%);
  --purple:  hsl(262, 100%, 62%);
  --gold:    hsl(40,  100%, 67%);
  --red:     hsl(0,   84%,  60%);
  --green:   hsl(142, 71%,  45%);

  --cyan-dim:   hsl(190, 100%, 50%, 0.15);
  --purple-dim: hsl(262, 100%, 62%, 0.15);
  --gold-dim:   hsl(40,  100%, 67%, 0.15);

  --font-head: 'Michroma', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  18px;
  --radius-xl:  24px;

  --shadow-glow-cyan:   0 0 16px hsl(190, 100%, 50%, 0.45), 0 0 48px hsl(190, 100%, 50%, 0.15);
  --shadow-glow-purple: 0 0 16px hsl(262, 100%, 62%, 0.45), 0 0 48px hsl(262, 100%, 62%, 0.15);
  --shadow-glow-gold:   0 0 16px hsl(40,  100%, 67%, 0.45), 0 0 60px hsl(40,  100%, 67%, 0.2);

  --transition: all 0.22s ease;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img, svg { display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Scrollbar ────────────────────────────────────────────── */
::-webkit-scrollbar       { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: hsl(190, 100%, 50%, 0.4); }
* { scrollbar-width: thin; scrollbar-color: var(--border) transparent; }

/* ── Utility ──────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-cyan   { color: var(--cyan); }
.text-purple { color: var(--purple); }
.text-gold   { color: var(--gold); }
.text-muted  { color: var(--muted); }

.body-text {
  color: var(--muted);
  margin-bottom: 1rem;
  max-width: 600px;
}
.body-text strong { color: var(--foreground); }

.glow-cyan   { box-shadow: var(--shadow-glow-cyan); }
.glow-gold   { box-shadow: var(--shadow-glow-gold); }
.glow-purple { box-shadow: var(--shadow-glow-purple); }

/* ── Atmospheric Background ───────────────────────────────── */
.bg-orbs { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  animation: orbFade 2s ease forwards;
}
.orb-purple {
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, hsl(262, 100%, 62%, 0.18) 0%, transparent 65%);
  animation-delay: 0.2s;
}
.orb-gold {
  top: 30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, hsl(40, 100%, 67%, 0.08) 0%, transparent 70%);
  animation-delay: 0.5s;
}
.orb-cyan {
  bottom: 0;
  left: -5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(ellipse, hsl(190, 100%, 50%, 0.08) 0%, transparent 70%);
  animation-delay: 0.8s;
}
@keyframes orbFade { to { opacity: 1; } }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-md);
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 400;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-lg { padding: 14px 28px; font-size: 12px; border-radius: var(--radius-lg); }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--cyan);
  color: var(--bg);
}
.btn-primary:hover { opacity: 0.88; transform: scale(1.015); }

.btn-ghost {
  color: var(--muted);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: hsl(190, 100%, 50%, 0.4); color: var(--cyan); }

.btn-gold {
  background: var(--gold);
  color: var(--bg);
}
.btn-gold:hover { opacity: 0.88; transform: scale(1.015); }

.btn-outline-cyan {
  border: 1px solid hsl(190, 100%, 50%, 0.4);
  color: var(--cyan);
}
.btn-outline-cyan:hover { background: hsl(190, 100%, 50%, 0.1); }

/* ── Section Tag ──────────────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--cyan);
  border: 1px solid hsl(190, 100%, 50%, 0.3);
  background: hsl(190, 100%, 50%, 0.08);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: 0.06em;
  color: var(--foreground);
  margin-bottom: 12px;
}

.section-sub {
  color: var(--muted);
  max-width: 560px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-sub { margin: 0 auto; }

/* ── Section Layout ───────────────────────────────────────── */
.section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.section--alt {
  background: hsl(230, 70%, 5.5%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ── HEADER ───────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid hsl(230, 20%, 18%, 0.6);
  background: hsl(230, 80%, 4%, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-name {
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--foreground);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-size: 12px;
  color: var(--muted);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.04em;
}
.nav-link:hover { color: var(--foreground); background: hsl(230, 40%, 14%); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: 6px;
  border: 1px solid var(--border);
  margin-left: auto;
}
.mobile-menu-btn span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--muted);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu-btn.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 12px 24px 16px;
  border-top: 1px solid var(--border);
  gap: 2px;
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  padding: 10px 8px;
  color: var(--muted);
  font-size: 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.mobile-nav-link:hover { color: var(--foreground); background: hsl(230, 40%, 14%); }
.mobile-nav-cta {
  margin-top: 8px;
  text-align: center;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.14em;
  padding: 12px;
  border-radius: var(--radius-md);
}

/* Nav wheel spin on hover */
#nav-wheel { transition: transform 0.6s ease; }
.brand:hover #nav-wheel { transform: rotate(60deg); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  z-index: 1;
  padding: 80px 0 100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Live badge */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid hsl(142, 71%, 45%, 0.35);
  background: hsl(142, 71%, 45%, 0.1);
  margin-bottom: 28px;
}
.live-dot {
  position: relative;
  width: 7px;
  height: 7px;
  flex-shrink: 0;
}
.live-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--green);
  animation: ping 1.5s cubic-bezier(0,0,0.2,1) infinite;
}
.live-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--green);
}
@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}
.live-text {
  font-family: var(--font-head);
  font-size: 10px;
  color: var(--green);
  letter-spacing: 0.18em;
}

.hero-headline {
  font-size: clamp(30px, 4.5vw, 58px);
  letter-spacing: 0.08em;
  color: var(--foreground);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-sub {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 36px;
}
.hero-sub strong { color: var(--foreground); }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.stat-divider { width: 1px; height: 36px; background: var(--border); }
.stat-value {
  font-family: 'Inter', monospace;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}
.stat-label {
  font-family: var(--font-head);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-top: 4px;
}

/* Wheel Visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wheel-wrapper {
  position: relative;
  width: min(360px, 90vw);
  height: min(360px, 90vw);
}

.wheel-glow-ring {
  position: absolute;
  inset: -15%;
  border-radius: 50%;
  background: radial-gradient(circle, hsl(40, 100%, 67%, 0.22) 0%, hsl(262, 100%, 62%, 0.12) 40%, transparent 70%);
  filter: blur(20px);
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.wheel-spin {
  width: 100%;
  height: 100%;
  animation: spinWheel 14s linear infinite;
}
@keyframes spinWheel {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Floating win cards */
.float-card {
  position: absolute;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  background: hsl(230, 60%, 8%, 0.95);
  border: 1px solid hsl(40, 100%, 67%, 0.4);
  backdrop-filter: blur(16px);
  z-index: 10;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.float-card-top    { top: -8px;    right: -20px; animation: floatUp 3.4s ease-in-out infinite; }
.float-card-bottom { bottom: -8px; left: -20px;  animation: floatUp 3.4s ease-in-out 1.7s infinite; }
@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.float-card-value {
  font-family: 'Inter', monospace;
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.float-card-label {
  font-size: 10px;
  color: var(--muted);
  margin-top: 3px;
}

/* ── STATS STRIP ──────────────────────────────────────────── */
.stats-strip {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: hsl(230, 60%, 7%, 0.5);
  backdrop-filter: blur(12px);
  padding: 16px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.stat-icon { flex-shrink: 0; }
.stat-item-value {
  font-family: 'Inter', monospace;
  font-size: 16px;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1;
}
.stat-item-label {
  font-family: var(--font-head);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-top: 3px;
}

/* ── COMPARISON (Problem) ─────────────────────────────────── */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.comparison-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--card);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.comparison-card--traditional { border-color: hsl(0, 84%, 60%, 0.25); }
.comparison-card--ours {
  border-color: hsl(190, 100%, 50%, 0.3);
  box-shadow: 0 0 40px hsl(190, 100%, 50%, 0.05);
}
.comparison-card--ours::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
}

.comparison-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.comparison-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.comparison-icon--red    { background: hsl(0, 84%, 60%, 0.12); color: var(--red); border: 1px solid hsl(0, 84%, 60%, 0.25); }
.comparison-icon--cyan   { background: var(--cyan-dim); color: var(--cyan); border: 1px solid hsl(190, 100%, 50%, 0.3); }

.comparison-label {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.14em;
}
.comparison-sublabel { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* Flow diagram */
.flow-diagram {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.flow-node {
  width: 100%;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  text-align: center;
  border: 1px solid;
}
.flow-node--neutral { border-color: var(--border); background: hsl(230, 40%, 12%); color: var(--muted); }
.flow-node--house   { border-color: hsl(0, 84%, 60%, 0.4); background: hsl(0, 84%, 60%, 0.08); color: hsl(0, 84%, 70%); }
.flow-node--lose    { border-color: hsl(0, 84%, 60%, 0.25); background: hsl(0, 84%, 60%, 0.05); color: var(--muted); font-size: 11px; }
.flow-node--house-win { border-color: hsl(0, 84%, 60%, 0.4); background: hsl(0, 84%, 60%, 0.1); color: hsl(0, 84%, 70%); font-size: 11px; }
.flow-node--pool    { border-color: hsl(190, 100%, 50%, 0.4); background: hsl(190, 100%, 50%, 0.08); color: var(--cyan); }
.flow-node--fee     { border-color: var(--border); background: hsl(230, 40%, 12%); color: var(--muted); font-size: 11px; }
.flow-node--win     { border-color: hsl(40, 100%, 67%, 0.4); background: hsl(40, 100%, 67%, 0.08); color: var(--gold); font-size: 11px; }

.flow-arrow {
  width: 1px;
  height: 16px;
  background: var(--border);
  position: relative;
}
.flow-arrow::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  border-top: 5px solid var(--border);
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
}
.flow-arrow--cyan { background: hsl(190, 100%, 50%, 0.5); }
.flow-arrow--cyan::after { border-top-color: hsl(190, 100%, 50%, 0.5); }

.flow-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 100%;
}
.flow-branch { display: flex; flex-direction: column; gap: 6px; }

/* Comparison points */
.comparison-points { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.point { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.point-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.point--good .point-icon { background: hsl(142, 71%, 45%, 0.15); color: var(--green); }
.point--bad  .point-icon { background: hsl(0, 84%, 60%, 0.12);   color: var(--red); }
.point--good { color: var(--foreground); }
.point--bad  { color: var(--muted); }

.comparison-quote {
  font-size: 14px;
  font-style: italic;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border-left: 3px solid;
}
.comparison-quote--bad  { border-color: hsl(0, 84%, 60%, 0.5); background: hsl(0, 84%, 60%, 0.05); color: var(--muted); }
.comparison-quote--good { border-color: var(--cyan); background: hsl(190, 100%, 50%, 0.06); color: var(--foreground); }

/* Truth Table */
.truth-table-wrapper {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--card);
  overflow: hidden;
}
.truth-table-title {
  font-family: var(--font-head);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted);
  padding: 16px 24px 0;
}
.truth-table { padding: 12px; }
.truth-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.truth-row + .truth-row { margin-top: 2px; }
.truth-row > * {
  padding: 12px 14px;
  font-size: 13px;
}
.truth-row--header > * {
  background: hsl(230, 40%, 12%);
  font-family: var(--font-head);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.truth-row:not(.truth-row--header) > * { background: hsl(230, 50%, 9%); }
.truth-row:not(.truth-row--header):hover > * { background: hsl(230, 45%, 11%); }
.truth-aspect { color: var(--muted); }
.truth-traditional { text-align: center; border-left: 1px solid var(--border); }
.truth-ours { text-align: center; border-left: 1px solid var(--border); }

/* ── ABOUT ────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: hsl(230, 50%, 7%);
  transition: var(--transition);
  margin-bottom: 12px;
}
.pillar:hover { border-color: hsl(190, 100%, 50%, 0.3); }
.pillar-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pillar-icon--cyan   { background: var(--cyan-dim);   color: var(--cyan);   border: 1px solid hsl(190, 100%, 50%, 0.25); }
.pillar-icon--purple { background: var(--purple-dim); color: var(--purple); border: 1px solid hsl(262, 100%, 62%, 0.25); }
.pillar-icon--gold   { background: var(--gold-dim);   color: var(--gold);   border: 1px solid hsl(40, 100%, 67%, 0.25); }
.pillar-title { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.pillar-desc  { font-size: 12px; color: var(--muted); }

/* ── FOUNDER ──────────────────────────────────────────────── */
.founder-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  border-radius: var(--radius-xl);
  border: 1px solid hsl(190, 100%, 50%, 0.2);
  background: var(--card);
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.founder-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--purple), var(--gold));
}
.founder-card::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, hsl(262, 100%, 62%, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* Left column */
.founder-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.founder-avatar-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}
.founder-avatar {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid hsl(190, 100%, 50%, 0.35);
}
.founder-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: opacity 0.45s ease;
}
.founder-photo--hover   { opacity: 0; }
.founder-photo--primary { opacity: 1; }
.founder-avatar:hover .founder-photo--primary { opacity: 0; }
.founder-avatar:hover .founder-photo--hover   { opacity: 1; }
.founder-avatar-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid hsl(40, 100%, 67%, 0.3);
  animation: ringPulse 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}
@keyframes ringPulse {
  0%, 100% { transform: scale(1);    opacity: 0.6; }
  50%       { transform: scale(1.06); opacity: 1; }
}

.founder-name {
  font-family: var(--font-head);
  font-size: 20px;
  letter-spacing: 0.08em;
  color: var(--foreground);
}
.founder-title {
  font-size: 12px;
  color: var(--cyan);
  letter-spacing: 0.1em;
  margin-top: 4px;
  font-family: var(--font-head);
}

.founder-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.founder-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  padding: 9px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: hsl(230, 40%, 10%);
  text-align: left;
}
.founder-badge svg { color: var(--cyan); flex-shrink: 0; }
.founder-badge--gold svg { color: var(--gold); }
.founder-badge--gold { border-color: hsl(40, 100%, 67%, 0.2); }

/* Right column */
.founder-right { position: relative; padding-top: 8px; }

.founder-quote-mark {
  font-family: Georgia, serif;
  font-size: 96px;
  line-height: 1;
  color: hsl(190, 100%, 50%, 0.12);
  position: absolute;
  top: -16px;
  left: -8px;
  user-select: none;
  pointer-events: none;
}

.founder-bio {
  position: relative;
  z-index: 1;
}
.founder-bio p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 20px;
}
.founder-bio p:last-child { margin-bottom: 0; }
.founder-bio em {
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}
.founder-bio strong { color: var(--foreground); }

/* ── VISION / MISSION ─────────────────────────────────────── */
.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.vision-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--card);
  padding: 40px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.vision-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, hsl(190, 100%, 50%, 0.4), transparent);
}
.vision-card:last-child::before {
  background: linear-gradient(90deg, transparent, hsl(40, 100%, 67%, 0.4), transparent);
}
.vision-card:hover { border-color: hsl(190, 100%, 50%, 0.25); }

.vision-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: var(--cyan-dim);
  border: 1px solid hsl(190, 100%, 50%, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  margin-bottom: 20px;
}
.vision-icon--gold {
  background: var(--gold-dim);
  border-color: hsl(40, 100%, 67%, 0.25);
  color: var(--gold);
}
.vision-title {
  font-family: var(--font-head);
  font-size: 16px;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.shift-list { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.shift-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: hsl(230, 40%, 10%);
  border: 1px solid var(--border);
}
.shift-from { color: var(--muted); flex: 1; text-align: right; }
.shift-to   { color: var(--cyan);  flex: 1; }
.shift-item svg { flex-shrink: 0; color: var(--border); }

.mission-list { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.mission-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
}
.mission-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mission-dot--cyan   { background: var(--cyan); }
.mission-dot--purple { background: var(--purple); }
.mission-dot--gold   { background: var(--gold); }

/* ── MODEL STEPS ──────────────────────────────────────────── */
.model-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 40px;
}

.model-connector {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 56px;
  color: var(--border);
}

.model-step {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--card);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.model-step:hover { border-color: hsl(190, 100%, 50%, 0.3); }

.model-step-num {
  position: absolute;
  top: 14px;
  right: 16px;
  font-family: var(--font-head);
  font-size: 36px;
  opacity: 0.08;
  line-height: 1;
}

.model-step-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.model-step-icon--cyan   { background: var(--cyan-dim);   color: var(--cyan);   border: 1px solid hsl(190, 100%, 50%, 0.3); }
.model-step-icon--purple { background: var(--purple-dim); color: var(--purple); border: 1px solid hsl(262, 100%, 62%, 0.3); }
.model-step-icon--gold   { background: var(--gold-dim);   color: var(--gold);   border: 1px solid hsl(40, 100%, 67%, 0.3); }

.model-step-title {
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.model-step-desc { font-size: 12px; color: var(--muted); line-height: 1.6; }

.model-highlight {
  border-radius: var(--radius-xl);
  border: 1px solid hsl(40, 100%, 67%, 0.3);
  background: hsl(40, 100%, 67%, 0.05);
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.model-highlight-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--gold-dim);
  border: 1px solid hsl(40, 100%, 67%, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.model-highlight-title {
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 8px;
}
.model-highlight-text { font-size: 14px; color: var(--muted); line-height: 1.7; }
.model-highlight-text strong { color: var(--foreground); }

/* ── GAMES ────────────────────────────────────────────────── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.game-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--card);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.game-card:hover {
  transform: translateY(-4px);
  border-color: hsl(190, 100%, 50%, 0.35);
}

.game-card--featured {
  border-color: hsl(40, 100%, 67%, 0.3);
}
.game-card--featured:hover { border-color: hsl(40, 100%, 67%, 0.6); }

.game-card-glow {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.game-card-glow--gold   { background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.game-card-glow--purple { background: linear-gradient(90deg, transparent, var(--purple), transparent); }
.game-card-glow--cyan   { background: linear-gradient(90deg, transparent, var(--cyan), transparent); }

.game-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--font-head);
  font-size: 9px;
  letter-spacing: 0.14em;
  padding: 3px 8px;
  border-radius: 100px;
  background: hsl(40, 100%, 67%, 0.15);
  border: 1px solid hsl(40, 100%, 67%, 0.3);
  color: var(--gold);
}

.game-icon {
  margin-bottom: 16px;
  margin-top: 4px;
}

.game-name {
  font-family: var(--font-head);
  font-size: 14px;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.game-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 9px;
  letter-spacing: 0.14em;
  padding: 3px 8px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.game-tag--gold   { background: var(--gold-dim);   border: 1px solid hsl(40, 100%, 67%, 0.25); color: var(--gold); }
.game-tag--purple { background: var(--purple-dim); border: 1px solid hsl(262, 100%, 62%, 0.25); color: var(--purple); }
.game-tag--cyan   { background: var(--cyan-dim);   border: 1px solid hsl(190, 100%, 50%, 0.25); color: var(--cyan); }

.game-desc { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }

.game-features { display: flex; flex-wrap: wrap; gap: 6px; }
.game-feature {
  font-family: var(--font-head);
  font-size: 9px;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 100px;
  background: hsl(230, 40%, 13%);
  border: 1px solid var(--border);
  color: var(--muted);
}

/* ── TRUST ────────────────────────────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.trust-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--card);
  padding: 30px;
  transition: var(--transition);
}
.trust-card:hover { border-color: hsl(190, 100%, 50%, 0.3); transform: translateY(-3px); }

.trust-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.trust-icon--cyan   { background: var(--cyan-dim);   color: var(--cyan);   border: 1px solid hsl(190, 100%, 50%, 0.2); }
.trust-icon--purple { background: var(--purple-dim); color: var(--purple); border: 1px solid hsl(262, 100%, 62%, 0.2); }
.trust-icon--gold   { background: var(--gold-dim);   color: var(--gold);   border: 1px solid hsl(40, 100%, 67%, 0.2); }

.trust-title { font-family: var(--font-head); font-size: 13px; letter-spacing: 0.08em; margin-bottom: 10px; }
.trust-desc  { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ── RESPONSIBLE ──────────────────────────────────────────── */
.responsible-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  border-radius: var(--radius-xl);
  border: 1px solid hsl(262, 100%, 62%, 0.25);
  background: hsl(262, 100%, 62%, 0.04);
  padding: 48px;
}
.responsible-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-lg);
  background: var(--purple-dim);
  border: 1px solid hsl(262, 100%, 62%, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  flex-shrink: 0;
}
.responsible-content { flex: 1; }
.responsible-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.resp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: hsl(230, 40%, 10%);
}

/* ── COLLABORATE ──────────────────────────────────────────── */
.collab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.collab-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--card);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
}
.collab-card:hover { border-color: hsl(190, 100%, 50%, 0.3); transform: translateY(-4px); }
.collab-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cyan-dim);
  border: 1px solid hsl(190, 100%, 50%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  margin: 0 auto 20px;
}
.collab-title { font-family: var(--font-head); font-size: 13px; letter-spacing: 0.08em; margin-bottom: 12px; }
.collab-desc  { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* LinkedIn quote */
.linkedin-quote {
  border-radius: var(--radius-xl);
  border: 1px solid hsl(190, 100%, 50%, 0.2);
  background: hsl(190, 100%, 50%, 0.04);
  padding: 36px;
}
.lq-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.lq-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: hsl(210, 80%, 55%, 0.15);
  border: 1px solid hsl(210, 80%, 55%, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(210, 80%, 65%);
  margin: 0 auto 20px;
}
.lq-text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--foreground);
  font-style: italic;
  margin-bottom: 16px;
}
.lq-author { font-size: 12px; color: var(--muted); font-family: var(--font-head); letter-spacing: 0.1em; }

/* ── CTA / CONTACT ────────────────────────────────────────── */
.cta-section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  overflow: hidden;
}

.cta-glow-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, hsl(262, 100%, 62%, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta-title {
  font-family: var(--font-head);
  font-size: clamp(24px, 4vw, 42px);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.cta-sub {
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 48px;
  font-size: 16px;
  line-height: 1.7;
}

/* Contact Form */
.contact-form {
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-family: var(--font-head);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  background: hsl(230, 50%, 9%);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--foreground);
  padding: 12px 16px;
  font-size: 14px;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-input:focus { border-color: hsl(190, 100%, 50%, 0.6); box-shadow: 0 0 0 3px hsl(190, 100%, 50%, 0.08); }
.form-input::placeholder { color: hsl(220, 15%, 40%); }
.form-select { cursor: pointer; }
.form-select option { background: hsl(230, 60%, 8%); }
.form-textarea { resize: vertical; min-height: 100px; }

.form-success {
  display: none;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius-md);
  background: hsl(142, 71%, 45%, 0.1);
  border: 1px solid hsl(142, 71%, 45%, 0.3);
  color: var(--green);
  font-size: 14px;
  margin-top: 12px;
}
.form-success.show { display: block; }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  background: hsl(230, 70%, 5%);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  padding-top: 56px;
  padding-bottom: 48px;
  align-items: start;
}

.footer-brand { max-width: 280px; }
.footer-tagline {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
  font-style: italic;
}

.footer-links {
  display: flex;
  gap: 60px;
}
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col-title {
  font-family: var(--font-head);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 6px;
}
.footer-link {
  font-size: 13px;
  color: hsl(220, 15%, 45%);
  transition: color 0.18s;
}
.footer-link:hover { color: var(--foreground); }

.footer-bottom { border-top: 1px solid var(--border); }
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-legal { font-size: 11px; color: hsl(220, 15%, 35%); }
.footer-copy  { font-size: 11px; color: hsl(220, 15%, 35%); }

/* ── REVEAL ANIMATIONS ────────────────────────────────────── */
.reveal,
.reveal-left,
.reveal-right,
.reveal-float,
.reveal-float-delay {
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal         { transform: translateY(28px); }
.reveal-left    { transform: translateX(-32px); }
.reveal-right   { transform: translateX(32px); }
.reveal-float   { transform: translateY(12px); }
.reveal-float-delay { transform: translateY(12px); transition-delay: 0.3s; }

.revealed {
  opacity: 1 !important;
  transform: none !important;
}

/* Staggered reveal via data-delay */
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .model-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .model-connector { display: none; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .wheel-wrapper { width: min(280px, 80vw); height: min(280px, 80vw); }
  .hero-headline { text-align: center; }
  .hero-sub { text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }

  .comparison-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .vision-grid { grid-template-columns: 1fr; }
  .founder-card { grid-template-columns: 1fr; gap: 36px; padding: 32px; }
  .founder-left { flex-direction: row; text-align: left; align-items: flex-start; flex-wrap: wrap; gap: 20px; }
  .founder-meta { flex: 1; }
  .founder-badges { flex-direction: row; flex-wrap: wrap; }
  .founder-badge { flex: 1 1 auto; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .collab-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .responsible-wrapper { flex-direction: column; padding: 36px 28px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-links { flex-wrap: wrap; gap: 36px; }
  .truth-row { grid-template-columns: 1.5fr 1fr 1fr; }
}

@media (max-width: 680px) {
  .main-nav, .header-actions { display: none; }
  .mobile-menu-btn { display: flex; }
  .games-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero { padding: 52px 0 72px; }
  .truth-row { grid-template-columns: 1fr; }
  .truth-row > * { padding: 8px 12px; font-size: 12px; }
  .truth-traditional, .truth-ours { border-left: none; border-top: 1px solid var(--border); }
  .float-card-top  { right: -8px; }
  .float-card-bottom { left: -8px; }
  /* Hide vertical dividers when hero stats wrap to multiple lines */
  .stat-divider { display: none; }
  .hero-stats { gap: 20px; }
}

/* ── HERO MICRO LINE ──────────────────────────────────────── */
.hero-micro {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: hsl(230, 50%, 8%);
  line-height: 1.7;
}
.hero-micro strong { color: var(--cyan); }

/* ── HERO TRUST STRIP ─────────────────────────────────────── */
.hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-top: 4px;
}
.hero-trust-item {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-check { color: var(--green); font-size: 15px; font-weight: 700; }

/* ── ONE WIN IS ENOUGH ────────────────────────────────────── */
.one-win-section { padding: 0 0 72px; position: relative; z-index: 1; }
.one-win-card {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid hsl(40, 100%, 67%, 0.35);
  background: hsl(40, 100%, 67%, 0.04);
  padding: 40px 48px;
}
.one-win-icon { font-size: 32px; flex-shrink: 0; margin-top: 2px; }
.one-win-title {
  font-family: var(--font-head);
  font-size: 20px;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 14px;
}
.one-win-body { font-size: 15px; color: var(--muted); margin-bottom: 18px; line-height: 1.7; }
.one-win-statement {
  font-size: 16px;
  color: var(--foreground);
  line-height: 1.7;
  border-left: 3px solid var(--gold);
  padding-left: 16px;
}
.one-win-statement strong { color: var(--gold); }

/* ── WHERE THE MONEY GOES ─────────────────────────────────── */
.money-flow-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.money-flow-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 28px 0;
  flex-wrap: wrap;
}
.money-node {
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 0.1em;
  border: 1px solid;
  text-align: center;
}
.money-node--players { border-color: hsl(190,100%,50%,0.4); background: hsl(190,100%,50%,0.08); color: var(--cyan); }
.money-node--pool    { border-color: hsl(262,100%,62%,0.4); background: hsl(262,100%,62%,0.08); color: var(--purple); }
.money-node--winner  { border-color: hsl(40,100%,67%,0.4);  background: hsl(40,100%,67%,0.08);  color: var(--gold); }
.money-arrow { font-size: 20px; color: var(--border); }
.money-flow-points { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.money-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: hsl(230, 50%, 8%);
  border: 1px solid var(--border);
}
.money-point-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; background: var(--cyan); }
.money-point-dot--purple { background: var(--purple); }
.money-point-dot--gold   { background: var(--gold); }
.money-point-dot--muted  { background: var(--muted); }
.money-simple-line {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}
.money-killer-line {
  font-size: 16px;
  font-style: italic;
  color: var(--foreground);
  border-left: 3px solid var(--cyan);
  padding: 14px 18px;
  background: hsl(190, 100%, 50%, 0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 12px;
  line-height: 1.7;
}

/* ── BIG IDEA ─────────────────────────────────────────────── */
.big-idea-wrapper { max-width: 720px; margin: 0 auto; text-align: center; }
.big-idea-shifts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 28px auto 32px;
  max-width: 440px;
  text-align: left;
}
.big-idea-shift {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: hsl(230, 40%, 10%);
  border: 1px solid var(--border);
}
.big-idea-from   { color: var(--muted);  flex: 1; text-align: right; }
.big-idea-arrow  { color: var(--border); flex-shrink: 0; }
.big-idea-to     { color: var(--cyan);   flex: 1; }
.big-idea-stokvel {
  font-size: 17px;
  color: var(--foreground);
  padding: 22px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid hsl(40, 100%, 67%, 0.3);
  background: hsl(40, 100%, 67%, 0.05);
  font-style: italic;
  line-height: 1.8;
}
.big-idea-stokvel strong { color: var(--gold); font-style: normal; }

/* ── LONG-TERM POTENTIAL ──────────────────────────────────── */
.longterm-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.longterm-build { display: flex; flex-direction: column; gap: 8px; margin: 24px 0; }
.longterm-build-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--muted);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  background: hsl(230, 50%, 8%);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.longterm-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; background: var(--gold); }
.longterm-build-item:nth-child(1) .longterm-dot { opacity: 0.25; }
.longterm-build-item:nth-child(2) .longterm-dot { opacity: 0.5; }
.longterm-build-item:nth-child(3) .longterm-dot { opacity: 0.75; }
.longterm-build-item:nth-child(4) .longterm-dot { opacity: 1; box-shadow: 0 0 8px var(--gold); }
.longterm-visual {
  border-radius: var(--radius-xl);
  border: 1px solid hsl(40, 100%, 67%, 0.25);
  background: hsl(40, 100%, 67%, 0.04);
  padding: 40px 36px;
}
.longterm-visual-title {
  font-family: var(--font-head);
  font-size: clamp(18px, 2.5vw, 26px);
  letter-spacing: 0.08em;
  color: var(--foreground);
  margin-bottom: 16px;
  line-height: 1.4;
}
.longterm-visual-sub { font-size: 15px; color: var(--muted); line-height: 1.75; }
.longterm-visual-sub strong { color: var(--gold); }

/* ── RESPONSIVE for new sections ─────────────────────────── */
@media (max-width: 900px) {
  .money-flow-wrapper  { grid-template-columns: 1fr; gap: 40px; }
  .longterm-wrapper    { grid-template-columns: 1fr; gap: 40px; }
  .one-win-card        { flex-direction: column; gap: 20px; padding: 28px; }
}
@media (max-width: 680px) {
  .one-win-card    { padding: 22px 18px; }
  .one-win-section { padding: 0 0 48px; }
}
@media (max-width: 480px) {
  .one-win-card   { padding: 20px 16px; }
  .one-win-title  { font-size: 16px; }
  .money-flow-visual { flex-direction: column; }
  .money-arrow { transform: rotate(90deg); }
  .big-idea-stokvel { padding: 18px 20px; font-size: 15px; }
  .longterm-visual  { padding: 28px 20px; }
}

@media (max-width: 480px) {
  /* Tighten container padding on narrow phones */
  .container { padding: 0 16px; }
  #founder-container { padding: 0 16px; }
  #one-win-container { padding: 0 16px; }

  /* Section spacing */
  .section { padding: 48px 0; }
  .hero { padding: 40px 0 56px; }
  .cta-section { padding: 56px 0; }

  /* Stats strip: single column on very small phones */
  .stats-grid { grid-template-columns: 1fr; gap: 12px; }

  /* Hero stats: reduce gap */
  .hero-stats { gap: 14px; }

  /* Float cards: keep them inside the wheel on tiny screens */
  .float-card-top    { top: -4px;  right: 4px; }
  .float-card-bottom { bottom: -4px; left: 4px; }

  /* Model highlight: stack icon above text */
  .model-highlight { flex-direction: column; gap: 14px; padding: 22px 20px; }
  .model-highlight-icon { width: 44px; height: 44px; }

  /* Card padding reductions */
  .comparison-card { padding: 22px 18px; }
  .vision-card { padding: 28px 22px; }
  .trust-card { padding: 22px 18px; }
  .collab-card { padding: 22px 18px; }
  .responsible-wrapper { padding: 22px 18px; gap: 18px; }

  /* LinkedIn quote */
  .lq-text { font-size: 15px; }
  .linkedin-quote { padding: 24px 18px; }

  /* Footer */
  .footer-links { gap: 24px; }
  .footer-inner { padding-top: 36px; padding-bottom: 32px; gap: 28px; }

  /* Form */
  .contact-form { padding: 0; }
}
