/* ==========================================================================
   FOUNDERS CLUB — DESIGN SYSTEM
   ========================================================================== */

:root {
  --bg: #0a0a0a;
  --bg-elevated: #121212;
  --card: #141414;
  --card-border: #262626;
  --text-primary: #ffffff;
  --text-secondary: #a3a3a3;
  --text-tertiary: #737373;
  --accent: #f4c430;
  --accent-hover: #ffd447;
  --accent-dark: #0a0a0a;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --container-max: 1180px;
  --gutter: 20px;

  --font-display: "Space Grotesk", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --sticky-cta-height: 92px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: var(--sticky-cta-height);
}
@media (min-width: 860px) {
  body { padding-bottom: 0; }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: 64px 0;
  position: relative;
}
@media (min-width: 860px) {
  .section { padding: 100px 0; }
}

/* Section 2 follows Section 1 closely per the reference — no large empty gap */
#learning {
  padding-top: 20px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.01em;
}

.section-heading {
  font-size: clamp(28px, 5.5vw, 46px);
  color: var(--text-primary);
  text-transform: uppercase;
  max-width: 760px;
}
.section-heading-accent {
  color: var(--accent);
}

.section-subtitle {
  margin-top: 14px;
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.55;
}

.whats-inside-label {
  margin-top: 28px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 16px 28px;
  border-radius: var(--radius-pill);
  border: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--accent-dark);
  box-shadow: 0 0 0 0 rgba(244, 196, 48, 0);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244, 196, 48, 0.25);
}
.btn-primary:active { transform: translateY(0); }
.btn-block { width: 100%; }
.btn-nav {
  padding: 11px 20px;
  font-size: 13px;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--gutter);
  max-width: var(--container-max);
  margin: 0 auto;
}
.nav-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- SECTION 1 — Hero (wireframe-accurate) ---------- */
.hero {
  padding-top: 28px;
  padding-bottom: 8px; /* tightened further — Join Masterclass should follow soon after credibility badges */
}

/* Section 1 reads as one bordered block on larger screens, matching the
   reference's boxed section; on mobile the border is dropped so it reads
   as a natural page flow (the reference itself is a full-page mobile mock). */
.section1-block {
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 24px 20px 28px;
}
@media (max-width: 639px) {
  .section1-block {
    border: none;
    border-radius: 0;
    padding: 0;
  }
}

.hero-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-eyebrow-row::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* Photo (left) + headline/subtitle (right) — preserved side-by-side even
   on narrow mobile widths, per the reference structure. */
.hero-top-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.hero-photo-wrap {
  flex: 0 0 128px;
  opacity: 0;
  transform: translateY(16px);
}
@media (min-width: 480px) {
  .hero-photo-wrap { flex-basis: 150px; }
}
.hero-photo-card {
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  background: var(--card);
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.hero-photo-card .placeholder-img-inner {
  font-size: 9.5px;
  padding: 6px 8px;
}
.hero-photo-card .placeholder-img-inner .fname { font-size: 8px; }

/* Name/title sit directly under the photo — closer relationship, per instruction */
.hero-instructor-block {
  margin-top: 10px;
}
.hero-instructor-name {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.2;
}
.hero-instructor-title {
  font-size: 11.5px;
  color: var(--text-secondary);
  margin-top: 2px;
}

.hero-content {
  flex: 1;
  min-width: 0;
  opacity: 0;
  transform: translateY(16px);
}
.hero-headline {
  font-size: clamp(19px, 6vw, 28px);
  line-height: 1.15;
}
.hero-headline-accent {
  color: var(--accent);
}
.hero-subtitle {
  margin-top: 10px;
  font-size: clamp(13px, 3.6vw, 15px);
  line-height: 1.5;
  color: var(--text-secondary);
  font-weight: 500;
}

.hero-intro {
  margin-top: 18px;
}
.hero-intro p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0 0 10px;
}
.hero-intro p:last-child { margin-bottom: 0; }
.hero-intro mark {
  background: none;
  color: var(--accent);
  font-weight: 700;
}
.hero-intro p:last-child strong {
  color: var(--text-primary);
  font-weight: 700;
}

.visited-row {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
.visited-label {
  font-weight: 700;
  color: var(--text-primary);
  margin-right: 2px;
}
.flag-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 16px;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  flex: 0 0 auto;
}
.flag-chip svg {
  width: 100%;
  height: 100%;
  display: block;
}
.visited-suffix {
  font-size: 13px;
  color: var(--text-secondary);
  margin-left: 2px;
}

.badge-row {
  margin-top: 22px;
  margin-bottom: 4px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
/* Credibility badges — stronger border + gold accent so they read as
   credibility badges, not ordinary text boxes (kept compact, not big cards). */
.badge-card {
  border: 1.5px solid rgba(244, 196, 48, 0.45);
  border-radius: var(--radius-sm);
  padding: 16px 12px;
  background: linear-gradient(180deg, rgba(244,196,48,0.05), transparent);
}
.badge-value {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.15;
}
.badge-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* ---------- SECTION 2 — What You'll Learn (wireframe-accurate) ---------- */
.section2-block {
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 24px 20px 28px;
}
@media (max-width: 639px) {
  .section2-block {
    border: none;
    border-radius: 0;
    padding: 0;
  }
}

.top-cta-block {
  display: block;
  text-align: center;
  background: var(--accent);
  color: var(--accent-dark);
  border: 1px solid #000;
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(14px, 3.6vw, 17px);
  letter-spacing: 0.01em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.top-cta-block:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(244, 196, 48, 0.22);
}
.session-meta {
  margin-top: 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

/* "*PROBLEM?" block — sits between the session-meta line and the
   "INSIDE THE ₹199 CLASS" header, calling out the reader's pain points
   before presenting the workshop as the solution. */
.problem-block {
  margin-top: 32px;
  border: 1.5px solid rgba(244, 196, 48, 0.35);
  border-radius: var(--radius-sm);
  padding: 18px 18px 16px;
  background: linear-gradient(180deg, rgba(244,196,48,0.05), transparent);
}
.problem-eyebrow {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.problem-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.problem-point {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.problem-point-number {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.problem-point-text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-primary);
}

.learning-header {
  margin-top: 32px;
  text-align: left;
}

/* "INSIDE THE ₹199 CLASS" — highlighted pill, not a plain eyebrow */
.class-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: var(--accent-dark);
  border-radius: var(--radius-pill);
  padding: 7px 14px;
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.learning-header .section-heading {
  font-size: clamp(22px, 6vw, 30px);
  text-transform: none;
  font-weight: 700;
}
.learning-header .section-subtitle {
  margin-left: 0;
  font-size: 14px;
  color: var(--text-secondary);
}

.learning-cards {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.learn-card {
  border: 1.5px solid var(--text-primary);
  border-radius: var(--radius-sm);
  padding: 18px 18px;
  opacity: 0;
  transform: translateY(16px);
  min-height: 64px;
  display: flex;
  align-items: center;
}
.learn-card:has(.learn-card-desc) {
  align-items: flex-start;
}
.learn-card-inner {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.learn-card-number {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  flex-shrink: 0;
}
.learn-card-title {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-primary);
  text-transform: none;
}
.learn-card-title-accent {
  color: var(--accent);
  font-weight: 700;
}
.learn-card-desc {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
}

/* Short transition line + ampersand — bridges Learning into Mega Bonus so
   the bonus reads as the next benefit, not an isolated symbol. */
.learning-closing-line {
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  text-align: center;
}

.transition-block {
  text-align: center;
  margin-top: 40px;
}
.transition-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ---------- Bonus section — premium celebratory treatment ---------- */
.bonus-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(244,196,48,0.16), transparent 70%),
    var(--bg-elevated);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding-top: 32px;
}

/* Sparkle particles — pure CSS, restrained, GPU-cheap (opacity/transform only) */
.bonus-sparkle {
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  pointer-events: none;
  animation: sparkle-pulse 3.2s ease-in-out infinite;
}
.bonus-sparkle:nth-child(1) { top: 12%; left: 12%; width: 4px; height: 4px; animation-delay: 0s; }
.bonus-sparkle:nth-child(2) { top: 22%; right: 16%; width: 3px; height: 3px; animation-delay: 0.6s; }
.bonus-sparkle:nth-child(3) { top: 65%; left: 8%; width: 3px; height: 3px; animation-delay: 1.2s; }
.bonus-sparkle:nth-child(4) { top: 75%; right: 10%; width: 5px; height: 5px; animation-delay: 1.8s; }
.bonus-sparkle:nth-child(5) { top: 40%; left: 50%; width: 3px; height: 3px; animation-delay: 2.4s; }
@keyframes sparkle-pulse {
  0%, 100% { opacity: 0; transform: scale(0.6); }
  50% { opacity: 0.9; transform: scale(1.4); }
}
@media (prefers-reduced-motion: reduce) {
  .bonus-sparkle { animation: none; opacity: 0.5; }
}

.bonus-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 34px 20px 38px;
  background:
    radial-gradient(ellipse 100% 60% at 50% 0%, rgba(244,196,48,0.22), transparent 65%),
    linear-gradient(180deg, rgba(244,196,48,0.10), rgba(244,196,48,0.02) 55%),
    var(--bg-elevated);
  box-shadow: 0 0 0 1px rgba(244,196,48,0.18), 0 24px 64px rgba(244,196,48,0.2);
}

.bonus-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(244, 196, 48, 0.12);
  border: 1px solid rgba(244, 196, 48, 0.4);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 18px;
  animation: badge-glow 2.6s ease-in-out infinite;
}
@keyframes badge-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(244,196,48,0.0); }
  50% { box-shadow: 0 0 18px 2px rgba(244,196,48,0.28); }
}
@media (prefers-reduced-motion: reduce) {
  .bonus-badge-top { animation: none; }
}

.bonus-heading {
  font-size: clamp(26px, 5.5vw, 40px);
  text-transform: uppercase;
}

/* Glowing bordered panel around the price block — the "MEGA" moment.
   Solid dark fill so it reads as its own distinct panel set against the
   warmer gold-tinted outer box, instead of blending into it. */
.bonus-price-panel {
  margin-top: 28px;
  border: 1.5px solid rgba(244, 196, 48, 0.5);
  border-radius: var(--radius-lg);
  padding: 26px 20px;
  background: var(--bg);
  animation: panel-glow 3s ease-in-out infinite;
}
@keyframes panel-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(244,196,48,0); }
  50% { box-shadow: 0 0 40px 4px rgba(244,196,48,0.18); }
}
@media (prefers-reduced-motion: reduce) {
  .bonus-price-panel { animation: none; }
}

.bonus-price-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.bonus-value-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--text-tertiary);
  font-weight: 700;
}
.bonus-strike {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--text-tertiary);
  text-decoration: line-through;
  text-decoration-color: #b03030;
  text-decoration-thickness: 2px;
}
.bonus-final {
  font-family: var(--font-display);
  font-size: clamp(52px, 13vw, 84px);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-top: 6px;
  text-shadow: 0 0 24px rgba(244, 196, 48, 0.35);
}
.bonus-final-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-top: 8px;
}
.bonus-copy {
  margin-top: 20px;
  font-size: 15.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.bonus-cta {
  margin-top: 28px;
}

/* Limited-time badge — noticeable, not ordinary small text */
.limited-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  background: var(--accent);
  color: var(--accent-dark);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Countdown timer */
.countdown-row {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 56px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 10px 6px;
  background: var(--card);
}
.countdown-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.countdown-unit-label {
  margin-top: 4px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
  text-transform: uppercase;
}
.countdown-sep {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-tertiary);
  margin-top: -14px;
}

/* ---------- Starter Kit inclusions list ---------- */
.kit-includes-block {
  margin-top: 28px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.kit-includes-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  margin-bottom: 14px;
  text-align: center;
}
.kit-includes-label-accent {
  color: var(--accent);
}
.kit-includes-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.kit-includes-item {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
}
.kit-includes-item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.kit-includes-item mark {
  background: none;
  color: var(--accent);
  font-weight: 700;
}

/* ---------- Carousels (shared) ---------- */
.carousel-wrap {
  margin-top: 40px;
  position: relative;
}
.carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 4px 20px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.carousel-track::-webkit-scrollbar { display: none; }

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}
.carousel-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--card-border);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex: 0 0 auto;
  transition: background 0.2s ease, transform 0.2s ease;
}
@media (min-width: 700px) {
  .carousel-btn { width: 44px; height: 44px; font-size: 18px; }
  .carousel-controls { gap: 16px; }
}
.carousel-btn:hover { background: #1e1e1e; transform: scale(1.05); }
.carousel-btn:disabled { opacity: 0.35; cursor: default; transform: none; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--card-border);
  border: none;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease, width 0.2s ease;
}
.carousel-dot.active {
  background: var(--accent);
  width: 20px;
  border-radius: 4px;
}

/* ---------- Placeholder image block ---------- */
.placeholder-img {
  position: relative;
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(45deg, #171717, #171717 10px, #1c1c1c 10px, #1c1c1c 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-tertiary);
  text-align: center;
  padding: 16px;
}
.placeholder-img-inner {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.5;
  border: 1px dashed #3a3a3a;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  background: rgba(0,0,0,0.35);
}
.placeholder-img-inner .fname {
  display: block;
  margin-top: 4px;
  color: #555;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  font-size: 10px;
  word-break: break-all;
}

/* ---------- Starter kit slides ---------- */
/* Auto-slider: one screenshot at a time on mobile (swipeable). */
.kit-slide {
  flex: 0 0 88%;
  scroll-snap-align: center;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (min-width: 640px) { .kit-slide { flex-basis: 60%; } }
@media (min-width: 1000px) { .kit-slide { flex-basis: 38%; } }
.kit-slide-media {
  aspect-ratio: 12 / 5.5; /* matches the real Starter Kit screenshots (~1920x880, ~2.18:1) */
  overflow: hidden;
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
}
.kit-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* show the full screenshot, never crop or stretch */
  display: block;
}
.kit-slide-label {
  padding: 14px 20px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* Credibility heading — centered, with the "1,000+ BUSINESSES" social-proof
   number visually highlighted (larger + gold), per instruction. */
.credibility-heading {
  max-width: 420px;
}
.credibility-heading-accent {
  color: var(--accent);
  font-size: 1.12em;
}

/* ---------- Credibility photos ---------- */
.credibility-slide {
  flex: 0 0 72%;
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--card-border);
  aspect-ratio: 4 / 5;
  position: relative;
}
@media (min-width: 640px) { .credibility-slide { flex-basis: 38%; } }
@media (min-width: 1000px) { .credibility-slide { flex-basis: 24%; } }
.credibility-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- FAQ ---------- */
.faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 780px;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-primary);
  text-align: left;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
}
.faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--accent);
  transition: transform 0.3s var(--ease);
}
.faq-item[data-open="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s var(--ease);
}
.faq-item[data-open="true"] .faq-answer-wrap { grid-template-rows: 1fr; }
.faq-answer-inner { overflow: hidden; }
.faq-answer {
  padding: 0 20px 18px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}
.faq-list-items {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}
.faq-list-items li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
}
.faq-list-items li:last-child { margin-bottom: 0; }
.faq-list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* ---------- Final reality-check CTA (before footer) ---------- */
.final-cta-section {
  background: var(--bg-elevated);
  border-top: 1px solid var(--card-border);
}
.final-cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.final-cta-headline {
  margin-top: 16px;
  font-size: clamp(24px, 5.6vw, 36px);
  text-transform: uppercase;
  line-height: 1.2;
}
.final-cta-headline-accent {
  color: var(--accent);
}
.final-cta-body {
  margin-top: 18px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.final-cta-offer-box {
  margin-top: 28px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.final-cta-offer-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 4px 12px;
}
.final-cta-offer-line:first-child {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--card-border);
}
.final-cta-offer-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-primary);
}
.final-cta-offer-value {
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--accent);
  text-align: right;
  min-width: 0;
  word-break: break-word;
}
.final-cta-btn {
  margin-top: 28px;
  width: 100%;
}
@media (min-width: 480px) {
  .final-cta-btn { width: auto; }
}

/* ---------- Sticky mobile CTA (fixed to bottom of viewport) ---------- */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--card-border);
  padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom, 0px));
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-meta {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
}
.sticky-cta .btn { width: 100%; padding: 13px 20px; font-size: 14px; }
@media (min-width: 860px) {
  .sticky-cta { display: none; }
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--card-border);
  padding: 56px 0 40px;
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
}
.footer-tagline {
  margin-top: 6px;
  color: var(--text-tertiary);
  font-size: 13.5px;
}
.footer-links {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
}
.footer-links a {
  font-size: 13.5px;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--accent); }
.footer-disclaimer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--card-border);
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-tertiary);
  max-width: 640px;
}

/* ---------- Registration anchor target ---------- */
#registration {
  scroll-margin-top: 90px;
}

/* ---------- Reveal animations ---------- */
.reveal {
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0) !important;
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .hero-content, .hero-photo-wrap, .learn-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Stagger for card grids */
.learn-card:nth-child(1) { transition-delay: 0.02s; }
.learn-card:nth-child(2) { transition-delay: 0.08s; }
.learn-card:nth-child(3) { transition-delay: 0.14s; }
.learn-card:nth-child(4) { transition-delay: 0.2s; }
