/* ============================================================
   TOP FLOOR UNIVERSITY — styles.css  (v3 polish)
   Mobile-first. No framework. Hand-written.
   ============================================================ */

:root {
  --bg:        #08080A;
  --navy:      #0B1A2E;
  --navy2:     #0D2137;
  --gold:      #F5A623;
  --orange:    #FF7A00;
  --highlight: #FFD36E;
  --fire:      #FF4D1C;
  --green:     #00C853;
  --text:      #F5F5F2;
  --muted:     #8A95A3;
  --border:    rgba(245,166,35,0.16);
  --border-hi: rgba(245,166,35,0.42);
  --grad:      linear-gradient(90deg, #F5A623, #FF7A00);
  --max-w:     1080px;
  --r:         10px;
  --header-h:  66px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }

/* ── Scroll reveal ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
/* Staggered children */
.reveal-children > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal-children.revealed > *:nth-child(1) { opacity:1; transform:none; transition-delay:0s; }
.reveal-children.revealed > *:nth-child(2) { opacity:1; transform:none; transition-delay:0.08s; }
.reveal-children.revealed > *:nth-child(3) { opacity:1; transform:none; transition-delay:0.16s; }
.reveal-children.revealed > *:nth-child(4) { opacity:1; transform:none; transition-delay:0.24s; }
.reveal-children.revealed > *:nth-child(5) { opacity:1; transform:none; transition-delay:0.32s; }
.reveal-children.revealed > *:nth-child(6) { opacity:1; transform:none; transition-delay:0.40s; }
.reveal-children.revealed > *:nth-child(n+7) { opacity:1; transform:none; transition-delay:0.48s; }

/* ── Utils ──────────────────────────────────────────────── */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 22px;
}
.eyebrow {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.1;
}

/* ── CTA Button ─────────────────────────────────────────── */
.btn {
  display: inline-block;
  position: relative;
  padding: 16px 36px;
  background: var(--grad);
  color: #07070A;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.15s, box-shadow 0.15s;
  animation: pulse-glow 2.8s ease-in-out infinite;
}
/* Shimmer sweep */
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  transform: skewX(-20deg);
  animation: shimmer 3.5s ease-in-out infinite 1.5s;
}
@keyframes shimmer {
  0%   { left: -80%; }
  40%  { left: 130%; }
  100% { left: 130%; }
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(245,166,35,0.5);
  animation: none;
}
.btn:hover::after { animation: none; }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 18px 48px; font-size: 1.05rem; width: 100%; max-width: 420px; text-align: center; }

@keyframes pulse-glow {
  0%,100% { box-shadow: 0 0 0px rgba(245,166,35,0); }
  50%      { box-shadow: 0 0 30px rgba(245,166,35,0.55); }
}

/* ── Header ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  background: rgba(8,8,10,0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.site-header .container { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.header-logo {
  height: 38px;
  width: auto;
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}
/* Particle canvas sits behind everything */
#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
/* Faint stock chart SVG */
.hero-chart {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(105deg, rgba(8,8,10,0.88) 0%, rgba(8,8,10,0.60) 60%, rgba(8,8,10,0.20) 100%);
}
.hero .container { position: relative; z-index: 3; padding-top: 80px; padding-bottom: 80px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.1);
  border: 1px solid var(--border-hi);
  border-radius: 50px;
  padding: 6px 16px;
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: blink 1.4s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 8.5vw, 5.4rem);
  font-weight: 700;
  line-height: 1.03;
  max-width: 640px;
  margin-bottom: 22px;
  /* Soft glow behind headline */
  text-shadow: 0 0 80px rgba(245,166,35,0.12);
}
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 30px;
  line-height: 1.7;
}
.hero-price-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.price-old { text-decoration: line-through; color: var(--muted); font-size: 1rem; }
.price-new {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--highlight);
  line-height: 1;
}
.price-new sub { font-size: 0.38em; font-weight: 600; color: var(--muted); vertical-align: baseline; }
.price-pill { background: var(--grad); color: #07070A; font-weight: 800; font-size: 0.72rem; letter-spacing: 0.06em; padding: 5px 13px; border-radius: 20px; }

/* ── Trust bar ──────────────────────────────────────────── */
.trust-bar { background: var(--navy); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-bar-inner { display: flex; justify-content: center; flex-wrap: wrap; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 24px;
  border-right: 1px solid var(--border);
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  flex: 1;
  justify-content: center;
  min-width: 150px;
}
.trust-item:last-child { border-right: none; }
.trust-icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--gold); }
.trust-item strong { color: var(--highlight); font-size: 0.9rem; display: block; letter-spacing: 0.02em; text-transform: none; font-family: 'Inter', sans-serif; }

/* ── Pain section ───────────────────────────────────────── */
.pain-section { padding: 96px 0; background: var(--bg); text-align: center; }
.pain-list {
  display: flex; flex-direction: column; gap: 10px;
  max-width: 520px; margin: 0 auto 40px; text-align: left;
}
.pain-item {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(255,77,28,0.05);
  border: 1px solid rgba(255,77,28,0.18);
  border-radius: var(--r);
  padding: 14px 18px;
  font-size: 0.91rem; color: var(--muted); line-height: 1.55;
  transition: border-color 0.2s;
}
.pain-item:hover { border-color: rgba(255,77,28,0.38); }
.pain-icon { flex-shrink: 0; width: 18px; height: 18px; color: var(--fire); margin-top: 1px; }

/* ── Earnings Calculator ────────────────────────────────── */
.calc-section { padding: 96px 0; background: linear-gradient(180deg, var(--navy) 0%, var(--bg) 100%); }
.calc-card {
  background: rgba(11,26,46,0.6);
  border: 1px solid var(--border-hi);
  border-radius: 16px;
  padding: 52px 36px;
  max-width: 760px; margin: 0 auto;
  position: relative; overflow: hidden;
}
.calc-card::before {
  content: '';
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,166,35,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.calc-sub { text-align: center; color: var(--muted); font-size: 0.93rem; margin: 10px 0 36px; }
.calc-label { display: block; text-align: center; font-size: 0.95rem; font-weight: 600; margin-bottom: 16px; }
.calc-label strong { color: var(--gold); font-size: 1.5rem; }
.calc-slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 5px;
  background: rgba(245,166,35,0.18); border-radius: 3px; outline: none; cursor: pointer;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--gold); cursor: pointer;
  box-shadow: 0 0 12px rgba(245,166,35,0.7);
  transition: box-shadow 0.2s;
}
.calc-slider::-webkit-slider-thumb:hover { box-shadow: 0 0 22px rgba(245,166,35,1); }
.calc-slider::-moz-range-thumb { width:26px; height:26px; border-radius:50%; background:var(--gold); border:none; cursor:pointer; }
.calc-ticks { display:flex; justify-content:space-between; padding:6px 0 28px; font-size:0.66rem; color:var(--muted); }
.calc-results { display:grid; grid-template-columns:1fr; gap:12px; }
.calc-result-card {
  background: rgba(8,8,10,0.65); border: 1px solid var(--border);
  border-radius: var(--r); padding: 22px; display: flex; flex-direction: column; gap: 5px; text-align: center;
  transition: border-color 0.2s;
}
.calc-result-card:hover { border-color: var(--border-hi); }
.calc-result-card.highlight {
  border-color: var(--border-hi);
  background: rgba(245,166,35,0.06);
  box-shadow: 0 0 32px rgba(245,166,35,0.08);
}
.calc-result-label { font-family:'Barlow Condensed','Inter',sans-serif; font-size:0.68rem; font-weight:700; letter-spacing:0.14em; text-transform:uppercase; color:var(--muted); }
.calc-result-value { font-size:2rem; font-weight:800; color:var(--highlight); line-height:1.1; }
.calc-result-note { font-size:0.72rem; color:var(--muted); }
.calc-disclaimer { font-size:0.67rem; color:#4a5260; text-align:center; margin-top:20px; line-height:1.6; }

/* ── Features ───────────────────────────────────────────── */
.features-section { padding: 96px 0; background: var(--bg); }
.features-header { text-align:center; margin-bottom:52px; }
.features-header h2 { font-family:'Playfair Display',Georgia,serif; font-size:clamp(1.7rem,4vw,2.4rem); letter-spacing:0.04em; margin-bottom:12px; }
.features-header p { color:var(--muted); max-width:460px; margin:0 auto; font-size:0.96rem; }
.features-grid { display:grid; grid-template-columns:1fr; gap:14px; margin-bottom:52px; }
.feature-card {
  background: rgba(11,26,46,0.45);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px 20px;
  display: flex; align-items: flex-start; gap: 16px;
  transition: border-color 0.25s, transform 0.22s, background 0.22s, box-shadow 0.25s;
}
.feature-card:hover {
  border-color: var(--border-hi);
  background: rgba(11,26,46,0.75);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(245,166,35,0.08);
}
.feature-icon {
  flex-shrink:0; width:46px; height:46px; background:var(--grad);
  border-radius:10px; display:flex; align-items:center; justify-content:center;
}
.feature-icon svg { width:22px; height:22px; color:#07070A; }
.feature-card h3 { font-family:'Playfair Display',Georgia,serif; font-size:1.02rem; color:var(--highlight); margin-bottom:4px; }
.feature-card p { font-size:0.86rem; color:var(--muted); line-height:1.6; }
.features-cta { text-align:center; }

/* ── Wins ───────────────────────────────────────────────── */
.wins-section { padding: 96px 0; background: linear-gradient(180deg, rgba(0,40,15,0.18) 0%, var(--bg) 100%); }
.wins-grid { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-bottom:48px; }
.win-card {
  background: rgba(0,30,10,0.5);
  border: 1px solid rgba(0,200,80,0.22);
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 9/16;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.25s, transform 0.22s, box-shadow 0.25s;
}
.win-card:hover { border-color: rgba(0,200,80,0.5); transform:scale(1.02); box-shadow:0 8px 28px rgba(0,200,80,0.12); }
.win-card img { width:100%; height:100%; object-fit:contain; background: #000; }
.win-placeholder { display:flex; flex-direction:column; align-items:center; gap:6px; color:var(--muted); font-size:0.75rem; }
.win-placeholder svg { width:28px; height:28px; opacity:0.35; }

/* ── Discord proof showcase ─────────────────────────────── */
.discord-showcase {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  background: rgba(11,26,46,0.5);
  border: 1px solid var(--border-hi);
  border-radius: 16px;
  padding: 36px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.discord-showcase::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(245,166,35,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.ds-video-wrap {
  flex-shrink: 0;
  width: 220px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background: #000;
  box-shadow: 0 16px 56px rgba(0,0,0,0.6);
}
.ds-video-wrap video {
  width: 100%;
  height: auto;
  display: block;
}
.ds-live-dot {
  position: absolute;
  top: 10px; left: 10px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.72);
  border-radius: 20px;
  padding: 4px 10px;
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #fff;
}
.live-pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #ff3b30;
  animation: live-blink 1.2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes live-blink { 0%,100%{opacity:1} 50%{opacity:0.25} }

.ds-callout { flex: 1; min-width: 0; }
.ds-callout h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  line-height: 1.1;
  margin-bottom: 14px;
}
.ds-callout > p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; }
.ds-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ds-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
}
.ds-points li svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--green); }

@media (max-width: 767px) {
  .discord-showcase { flex-direction: column; padding: 24px; gap: 24px; }
  .ds-video-wrap { width: 100%; max-width: 280px; margin: 0 auto; }
}

/* ── Lifestyle flex strip ───────────────────────────────── */
.flex-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #000;
  height: 540px;
}
/* Images: show fully (no crop), dark bg fills any gaps */
.flex-strip-img {
  width: 100%;
  height: 540px;
  object-fit: contain;
  background: #000;
  display: block;
  filter: brightness(0.92) saturate(1.1);
  transition: filter 0.4s;
}
/* Videos: cover the fixed height so they don't show letterbox bars */
.flex-strip-vid {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.92) saturate(1.1);
  transition: filter 0.4s;
}
.flex-strip-img:hover,
.flex-strip-vid:hover { filter: brightness(1.02) saturate(1.15); }

/* ── Why / value ────────────────────────────────────────── */
.why-section {
  padding: 96px 0; background: var(--bg); text-align: center;
  position: relative; overflow: hidden;
}
.why-section::before {
  content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.why-inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 1; }
.why-inner h2 { font-family:'Playfair Display',Georgia,serif; font-size:clamp(1.7rem,4vw,2.8rem); margin-bottom:20px; }
.why-inner > p { color:var(--muted); font-size:1.04rem; line-height:1.8; margin-bottom:40px; }
.gold-em { color:var(--gold); font-weight:700; font-style:normal; }
.value-anchor { display:flex; flex-direction:column; gap:12px; margin-bottom:40px; text-align:left; }
.va-item { display:flex; align-items:flex-start; gap:14px; background:rgba(11,26,46,0.4); border:1px solid var(--border); border-radius:var(--r); padding:16px 20px; transition:border-color 0.2s; }
.va-item:hover { border-color:var(--border-hi); }
.va-icon { flex-shrink:0; width:22px; height:22px; color:var(--gold); margin-top:2px; }
.va-item strong { display:block; color:var(--highlight); font-size:0.93rem; font-weight:700; }
.va-item span { font-size:0.86rem; color:var(--muted); }

/* ── Urgency band ───────────────────────────────────────── */
.urgency-band {
  background: linear-gradient(90deg, rgba(255,77,28,0.13), rgba(245,166,35,0.09));
  border-top: 1px solid rgba(255,77,28,0.42);
  border-bottom: 1px solid rgba(255,77,28,0.42);
  padding: 20px; text-align: center;
}
.urgency-band p { font-family:'Barlow Condensed','Inter',sans-serif; font-size:0.95rem; font-weight:700; letter-spacing:0.06em; text-transform:uppercase; }
.urgency-band .fire { color:var(--fire); animation: fire-pulse 2s ease-in-out infinite; display:inline-block; }
@keyframes fire-pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.75;transform:scale(1.15)} }

/* ── FAQ ────────────────────────────────────────────────── */
.faq-section { padding:96px 0; background: linear-gradient(180deg, var(--bg) 0%, var(--navy) 40%, var(--bg) 100%); }
.faq-section h2 { font-family:'Playfair Display',Georgia,serif; font-size:clamp(1.7rem,4vw,2.4rem); text-align:center; margin-bottom:48px; }
.faq-list { max-width:720px; margin:0 auto; }
.faq-item { border:1px solid var(--border); border-radius:var(--r); margin-bottom:10px; overflow:hidden; transition:border-color 0.2s; }
.faq-item.open { border-color:var(--border-hi); }
.faq-question {
  width:100%; display:flex; justify-content:space-between; align-items:center; gap:12px;
  padding:20px 22px; background:rgba(11,26,46,0.35); border:none;
  cursor:pointer; text-align:left; color:var(--text);
  font-family:'Inter',sans-serif; font-size:0.96rem; font-weight:600; transition:background 0.2s;
}
.faq-question:hover { background:rgba(11,26,46,0.68); }
.faq-icon {
  flex-shrink:0; width:22px; height:22px;
  border:1.5px solid var(--gold); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:var(--gold); transition:transform 0.25s, background 0.2s;
}
.faq-item.open .faq-icon { transform:rotate(45deg); background:rgba(245,166,35,0.12); }
.faq-icon svg { width:12px; height:12px; }
.faq-answer { max-height:0; overflow:hidden; transition:max-height 0.32s ease, padding 0.25s ease; padding:0 22px; color:var(--muted); font-size:0.92rem; line-height:1.75; }
.faq-item.open .faq-answer { max-height:300px; padding:16px 22px 22px; }

/* ── Checkout ───────────────────────────────────────────── */
.checkout-section {
  padding:100px 0 70px;
  background:var(--bg);
  text-align:center;
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--gold), var(--orange), transparent) 1;
}
.checkout-inner { max-width:520px; margin:0 auto; }
.checkout-inner h2 { font-family:'Playfair Display',Georgia,serif; font-size:clamp(1.8rem,4vw,2.8rem); margin-bottom:10px; }
.checkout-sub { color:var(--muted); margin-bottom:18px; font-size:0.93rem; }
.checkout-price-row {
  display:inline-flex; align-items:center; gap:12px;
  background:rgba(245,166,35,0.08); border:1px solid var(--border-hi);
  border-radius:50px; padding:8px 20px; margin-bottom:28px;
}
.checkout-price-row .old { text-decoration:line-through; color:var(--muted); font-size:0.9rem; }
.checkout-price-row .new { font-weight:800; font-size:1.1rem; color:var(--highlight); }
.checkout-price-row .pill { background:var(--grad); color:#07070A; font-weight:800; font-size:0.7rem; padding:3px 10px; border-radius:20px; }
#whop-embedded-checkout { border-radius:var(--r); overflow:hidden; }
.checkout-trust { margin-top:16px; display:flex; justify-content:center; gap:18px; flex-wrap:wrap; font-size:0.78rem; color:var(--muted); }
.checkout-trust span::before { content:'✓ '; color:var(--gold); }
#checkout-success { margin-top:32px; background:rgba(245,166,35,0.08); border:1px solid var(--border-hi); border-radius:var(--r); padding:32px; }
#checkout-success h3 { font-family:'Playfair Display',Georgia,serif; font-size:1.5rem; color:var(--highlight); margin-bottom:10px; }
#checkout-success p { color:var(--muted); font-size:0.92rem; }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer { background:#050507; border-top:1px solid var(--border); padding:52px 0 32px; text-align:center; }
.footer-logo {
  height:34px; margin:0 auto 20px;
}
.footer-links { display:flex; justify-content:center; gap:22px; flex-wrap:wrap; margin-bottom:18px; font-size:0.8rem; color:var(--muted); }
.footer-links a:hover { color:var(--gold); }
.footer-copy { color:var(--muted); font-size:0.78rem; margin-bottom:14px; }
.footer-disclaimer { max-width:580px; margin:0 auto; font-size:0.7rem; color:#454e58; line-height:1.65; }

/* ── Responsive 768px ───────────────────────────────────── */
@media (min-width: 768px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .wins-grid { grid-template-columns: repeat(3, 1fr); }
  .calc-results { grid-template-columns: repeat(3, 1fr); }
  .value-anchor { flex-direction:row; }
  .va-item { flex-direction:column; align-items:center; text-align:center; flex:1; }
  /* flex-strip height is auto */
}

/* ── Responsive 1024px ──────────────────────────────────── */
@media (min-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .wins-grid { grid-template-columns: repeat(3, 1fr); }
  /* flex-strip height is auto */
}

/* ── Mobile ─────────────────────────────────────────────── */
@media (max-width: 600px) {
  /* Flex strip: 2-col on mobile, shorter */
  .flex-strip { grid-template-columns: 1fr 1fr; height: auto; }
  .flex-strip-img, .flex-strip-vid { height: 220px; }

  /* Win cards: 1-col, natural portrait height */
  .wins-grid { grid-template-columns: 1fr; }
  .win-card { aspect-ratio: 3/4; }

  /* Discord showcase: tighten up */
  .discord-showcase { padding: 20px; }
  .ds-callout h3 { font-size: 1.4rem; }

  /* Hero: extra top padding so h1 clears sticky header */
  .hero .container { padding-top: 100px; }

  /* Checkout: reduce top padding */
  .checkout-section { padding: 64px 0 48px; }
}

