/* ============================================================
   7 IN 7 — Shared Stylesheet
   Primary: deep purple | Accent: #8C6737 (Gopher the Gold)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* --- Custom Properties --- */
:root {
  --bg:          #0E0A1F;
  --bg-2:        #160E30;
  --purple-deep: #3D2785;
  --purple-mid:  #6B35B2;
  --purple-light:#C9B8FF;
  --gold:        #8C6737;
  --gold-light:  #B8894A;
  --text:        #F5F0FF;
  --text-muted:  #A89EC0;
  --card-bg:     rgba(61, 39, 133, 0.18);
  --card-border: rgba(107, 53, 178, 0.4);
  --nav-blur:    rgba(14, 10, 31, 0.85);
  --radius:      12px;
  --radius-sm:   6px;
  --transition:  0.22s ease;
}

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

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

a { color: var(--purple-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: #fff; }

img { max-width: 100%; display: block; }

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--bg-2);
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text);
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
}

.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* --- Gold Divider --- */
.gold-rule {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 1.25rem 0 2rem;
}
.text-center .gold-rule { margin: 1.25rem auto 2rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--nav-blur);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--card-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--text);
  letter-spacing: 0.06em;
}
.nav-logo span {
  color: var(--purple-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }

.nav-cta {
  background: var(--purple-deep);
  color: var(--text) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  border: 1px solid var(--purple-mid);
  transition: background var(--transition), border-color var(--transition) !important;
}
.nav-cta:hover {
  background: var(--purple-mid) !important;
  border-color: var(--purple-light) !important;
  color: #fff !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}

/* Background radial glow */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(107, 53, 178, 0.35) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; max-width: 820px; }

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
}

.hero-title {
  font-size: clamp(4rem, 14vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 0.95;
  margin-bottom: 1rem;
}

.hero-title .in {
  font-style: italic;
  color: var(--purple-light);
  font-weight: 400;
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: var(--purple-mid);
  color: #fff;
  border: 1px solid var(--purple-light);
  box-shadow: 0 0 30px rgba(107, 53, 178, 0.4);
}
.btn-primary:hover {
  background: var(--purple-light);
  color: var(--bg);
  box-shadow: 0 0 40px rgba(201, 184, 255, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--card-border);
}
.btn-ghost:hover {
  border-color: var(--purple-light);
  color: var(--purple-light);
}

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color var(--transition), transform var(--transition);
}
.card:hover {
  border-color: var(--purple-light);
  transform: translateY(-3px);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.card h3 {
  font-size: 1.15rem;
  color: var(--purple-light);
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  align-items: start;
  position: relative;
}

.timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 39px;
  top: 44px;
  width: 2px;
  height: calc(100% + 8px);
  background: linear-gradient(to bottom, var(--purple-mid), transparent);
}

.timeline-date {
  text-align: center;
  padding-top: 0.5rem;
}

.timeline-day {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--purple-deep);
  border: 2px solid var(--purple-mid);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--purple-light);
  margin: 0 auto;
}

.timeline-body {
  padding: 0.35rem 0 2rem;
}

.timeline-body h4 {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.timeline-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ============================================================
   PRIZES
   ============================================================ */
.prizes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.prize-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  transition: border-color var(--transition);
}

.prize-card.first {
  border-color: var(--purple-mid);
  background: rgba(61, 39, 133, 0.3);
}
.prize-card.first::before {
  content: 'WINNER';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  background: var(--purple-mid);
  color: var(--purple-light);
  padding: 0.25rem 0.9rem;
  border-radius: 100px;
}

.prize-place {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.prize-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.prize-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.prize-callout {
  margin-top: 2rem;
  background: rgba(140, 103, 55, 0.12);
  border: 1px solid rgba(140, 103, 55, 0.35);
  border-radius: var(--radius);
  padding: 1.25rem 1.75rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.prize-callout strong { color: var(--text); }

/* ============================================================
   PODCAST SECTION
   ============================================================ */
.podcast-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.podcast-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  aspect-ratio: 1;
  max-width: 320px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 50%;
  padding: 2.5rem;
  text-align: center;
}

.podcast-badge-icon {
  font-size: 3.5rem;
}

.podcast-badge-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--purple-light);
}

.podcast-badge-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.podcast-text h2 { margin-bottom: 1rem; }

.podcast-bullets {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.podcast-bullets li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  align-items: flex-start;
}

.podcast-bullets li::before {
  content: '▸';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.05em;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: border-color var(--transition);
}

.pricing-card.featured {
  border-color: var(--purple-mid);
  position: relative;
}
.pricing-card.featured::before {
  content: 'BEST VALUE';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  background: var(--gold);
  color: #fff;
  padding: 0.25rem 0.9rem;
  border-radius: 100px;
}

.pricing-name {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.pricing-per {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0.35rem 0 1.25rem;
}

.pricing-features {
  list-style: none;
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.pricing-features li::before {
  content: '✓ ';
  color: var(--purple-light);
  font-weight: 600;
}

/* ============================================================
   INNER PAGE HEADER
   ============================================================ */
.page-header {
  padding: 9rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse at top, rgba(107, 53, 178, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.page-header-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }

.page-header h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  margin-bottom: 1rem;
}

.page-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ============================================================
   RULES PAGE
   ============================================================ */
.rules-table-wrap {
  overflow-x: auto;
  margin-top: 2rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

thead tr {
  background: var(--purple-deep);
}

thead th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-light);
  border-bottom: 1px solid var(--card-border);
}

tbody tr {
  border-bottom: 1px solid var(--card-border);
  transition: background var(--transition);
}
tbody tr:hover { background: rgba(107, 53, 178, 0.1); }

tbody td {
  padding: 1rem 1.25rem;
  color: var(--text-muted);
  vertical-align: top;
}
tbody td:first-child {
  color: var(--text);
  font-weight: 500;
}

/* Gate checklist */
.gate-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.gate-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
}

.gate-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(107, 53, 178, 0.3);
  border: 2px solid var(--purple-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.7rem;
  color: var(--purple-light);
  font-weight: 700;
}

.gate-item-body strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.2rem;
  font-size: 0.95rem;
}
.gate-item-body span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Category cards */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.category-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.category-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.category-card h4 {
  font-size: 1.05rem;
  color: var(--purple-light);
  margin-bottom: 0.5rem;
}

.category-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Score scale */
.score-scale {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.score-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--card-border);
  transition: background var(--transition);
}
.score-row:last-child { border-bottom: none; }
.score-row:hover { background: rgba(107, 53, 178, 0.1); }

.score-val {
  padding: 0.85rem 1rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  border-right: 1px solid var(--card-border);
}

.score-val.pos { color: var(--purple-light); }
.score-val.neg { color: #E879A0; }
.score-val.zero { color: var(--text-muted); }

.score-meaning {
  padding: 0.85rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--card-border);
}
.faq-item:last-child { border-bottom: none; }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  cursor: pointer;
  font-weight: 500;
  font-size: 1rem;
  color: var(--text);
  background: var(--card-bg);
  transition: background var(--transition);
  list-style: none;
  user-select: none;
}
.faq-question:hover { background: rgba(107, 53, 178, 0.2); }

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--purple-light);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 1.5rem;
  background: rgba(14, 10, 31, 0.5);
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 1.25rem 1.5rem;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================================
   TERMS PAGE
   ============================================================ */
.terms-warning {
  background: rgba(140, 103, 55, 0.12);
  border: 1px solid rgba(140, 103, 55, 0.45);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.5rem;
  font-size: 0.9rem;
  color: var(--gold-light);
  margin-bottom: 2.5rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.terms-warning-icon { flex-shrink: 0; font-size: 1rem; margin-top: 0.1em; }

.terms-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--card-border);
}
.terms-section:last-child { border-bottom: none; }

.terms-section h2 {
  font-size: 1.3rem;
  color: var(--purple-light);
  margin-bottom: 1rem;
}

.terms-section p,
.terms-section li {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.terms-section ul {
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.terms-section ul li {
  margin-bottom: 0.35rem;
}

/* ============================================================
   SUBMIT PAGE
   ============================================================ */
.submit-notice {
  background: rgba(107, 53, 178, 0.15);
  border: 1px solid var(--purple-mid);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.5rem;
  font-size: 0.9rem;
  color: var(--purple-light);
  margin-bottom: 2.5rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.submit-form {
  max-width: 640px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
  width: 100%;
  background: rgba(14, 10, 31, 0.6);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A89EC0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group select option {
  background: var(--bg-2);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--purple-mid);
}
.form-group input::placeholder { color: rgba(168, 158, 192, 0.5); }

.file-input-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.file-input-wrap input[type="file"] {
  display: none;
}

.file-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--purple-deep);
  border: 1px solid var(--purple-mid);
  color: var(--text);
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  cursor: pointer;
  transition: background var(--transition);
}
.file-label:hover { background: var(--purple-mid); }

.file-name-display {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 0.15em;
  flex-shrink: 0;
  accent-color: var(--purple-mid);
  cursor: pointer;
}

.form-check label {
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.5;
}

.form-check label a { color: var(--purple-light); }

.form-footer {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-price-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.form-price-note strong { color: var(--text); }

.btn-submit {
  background: var(--purple-mid);
  color: #fff;
  border: 1px solid var(--purple-light);
  padding: 0.85rem 2.25rem;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: not-allowed;
  opacity: 0.75;
  transition: opacity var(--transition);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--card-border);
  padding: 3rem 0 2rem;
  margin-top: auto;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--text);
  letter-spacing: 0.06em;
}

.footer-logo span { color: var(--purple-light); }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  list-style: none;
  justify-content: center;
}

.footer-nav a {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.footer-nav a:hover { color: var(--text); }

.footer-powered {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  border: 1px solid rgba(140, 103, 55, 0.35);
  border-radius: 100px;
  padding: 0.35rem 1rem;
}

.footer-powered strong {
  color: var(--gold);
  font-weight: 600;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(168, 158, 192, 0.5);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--nav-blur);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--card-border);
    padding: 1.5rem;
    gap: 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li { border-bottom: 1px solid var(--card-border); }
  .nav-links li:last-child { border-bottom: none; margin-top: 0.5rem; }

  .nav-links a {
    display: block;
    padding: 0.85rem 0;
    font-size: 1rem;
  }

  .nav-cta {
    display: block;
    text-align: center;
    padding: 0.75rem !important;
  }

  .nav-toggle { display: flex; }

  .podcast-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .podcast-badge {
    max-width: 240px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .section { padding: 3.5rem 0; }

  .timeline-item {
    grid-template-columns: 60px 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title { font-size: 4.5rem; }
  .btn-group { flex-direction: column; align-items: center; }
  .submit-form { padding: 1.5rem; }
  .form-footer { flex-direction: column; align-items: stretch; }
  .btn-submit { width: 100%; }
}
