/* =========================================================
   Podcast Technology Course — studio-dark visual system
   ========================================================= */

:root {
  --bg:           #0a0c10;
  --bg-elev:      #11141b;
  --bg-card:      #161a23;
  --bg-card-2:    #1c2230;
  --border:       #232a38;
  --border-soft:  #1a1f2a;
  --text:         #e8ecf3;
  --text-dim:     #9aa3b2;
  --text-mute:    #6b7382;
  --accent:       #ff8a1f;        /* peaking-meter amber */
  --accent-hot:   #ffb056;
  --accent-glow:  rgba(255, 138, 31, 0.35);
  --cool:         #4cc9f0;         /* waveform cyan */
  --green:        #4ade80;
  --red:          #ef4444;
  --maxw:         1180px;
  --r-sm:         8px;
  --r:            14px;
  --r-lg:         20px;
  --shadow-1:     0 1px 0 rgba(255,255,255,0.04) inset, 0 8px 30px rgba(0,0,0,0.35);
  --shadow-2:     0 1px 0 rgba(255,255,255,0.06) inset, 0 20px 60px rgba(0,0,0,0.55);
  --font-sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-display: "Space Grotesk", "Inter", -apple-system, system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image:
    radial-gradient(1100px 600px at 80% -200px, rgba(255,138,31,0.10), transparent 60%),
    radial-gradient(900px 500px at -10% 10%, rgba(76,201,240,0.06), transparent 60%);
  background-attachment: fixed;
}

img { max-width: 100%; display: block; }
a { color: var(--accent-hot); text-decoration: none; }
a:hover { color: var(--accent); text-decoration: underline; }

::selection { background: var(--accent); color: #0a0c10; }

/* ---------- Layout helpers ---------- */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 96px 0; position: relative; }
@media (max-width: 720px) { section { padding: 64px 0; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 12px;
  border: 1px solid rgba(255,138,31,0.25);
  border-radius: 999px;
  background: rgba(255,138,31,0.06);
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px var(--accent-glow); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text);
  margin: 0 0 16px;
}
h1 { font-size: clamp(2.4rem, 5.6vw, 4.4rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.8rem); margin-bottom: 12px; }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 16px; color: var(--text-dim); }
.lead { font-size: 1.15rem; color: var(--text-dim); max-width: 64ch; }

.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { color: var(--text); }
.section-head p { font-size: 1.05rem; }

.text-accent { color: var(--accent); }
.text-cool   { color: var(--cool); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--r);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(180deg, var(--accent-hot), var(--accent));
  color: #1a0e00;
  box-shadow: 0 8px 24px var(--accent-glow), 0 1px 0 rgba(255,255,255,0.25) inset;
}
.btn-primary:hover { color: #1a0e00; box-shadow: 0 12px 32px var(--accent-glow), 0 1px 0 rgba(255,255,255,0.35) inset; }

.btn-secondary {
  background: var(--bg-card);
  color: var(--text);
  border-color: var(--border);
}
.btn-secondary:hover { color: var(--text); background: var(--bg-card-2); border-color: #2e3648; }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { color: var(--text); border-color: var(--accent); }

.btn-block { width: 100%; justify-content: center; }
.btn-lg { padding: 16px 28px; font-size: 1.02rem; }

.btn .arrow { transition: transform 0.18s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  background: rgba(10, 12, 16, 0.72);
  border-bottom: 1px solid var(--border-soft);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.brand:hover { text-decoration: none; color: var(--text); }
.brand-mark {
  width: 28px; height: 28px;
  display: inline-grid; place-items: center;
  background: linear-gradient(180deg, var(--accent-hot), var(--accent));
  border-radius: 8px;
  color: #1a0e00;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  color: var(--text-dim);
  font-size: 0.92rem;
  font-weight: 500;
}
.nav-links a:hover { color: var(--text); text-decoration: none; }
.nav-cta { margin-left: 8px; }
@media (max-width: 820px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}
.hero h1 .accent {
  background: linear-gradient(120deg, var(--accent-hot), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 1.2rem;
  color: var(--text-dim);
  max-width: 56ch;
  margin: 20px 0 32px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
  color: var(--text-mute);
  font-size: 0.92rem;
  font-family: var(--font-mono);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta .pip { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px rgba(74,222,128,0.45); }

/* Waveform visual */
.waveform {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--bg-card), var(--bg-elev));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-2);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
}
.waveform::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(400px 200px at 80% 0%, rgba(255,138,31,0.15), transparent 60%);
  pointer-events: none;
}
.wf-head {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-mono); font-size: 11px; color: var(--text-mute);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.wf-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 10px rgba(239,68,68,0.5); display: inline-block; margin-right: 6px; }
.wf-canvas {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 12px 4px;
}
.wf-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--accent-hot), var(--accent));
  border-radius: 2px;
  opacity: 0.95;
  animation: wf 2.4s ease-in-out infinite;
}
@keyframes wf {
  0%, 100% { transform: scaleY(0.25); }
  50%      { transform: scaleY(1); }
}
.wf-meter {
  display: grid; grid-template-columns: 60px 1fr 40px; gap: 12px; align-items: center;
  padding-top: 12px; border-top: 1px solid var(--border);
  font-family: var(--font-mono); font-size: 11px; color: var(--text-mute);
}
.wf-meter-bar {
  height: 8px; border-radius: 4px;
  background: linear-gradient(90deg, var(--green) 0%, var(--green) 60%, #facc15 60%, #facc15 85%, var(--red) 85%);
  position: relative;
  overflow: hidden;
}
.wf-meter-bar::after {
  content: ""; position: absolute; top: 0; bottom: 0; right: 0;
  width: 22%; background: rgba(10,12,16,0.85);
  animation: meter 2.4s ease-in-out infinite;
}
@keyframes meter {
  0%, 100% { width: 70%; }
  50%      { width: 12%; }
}

/* ---------- "What the gurus" pitch ---------- */
.pitch {
  background: linear-gradient(180deg, transparent, rgba(255,138,31,0.04));
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.pitch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .pitch-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pitch-grid { grid-template-columns: 1fr; } }

.pitch-card {
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.pitch-card:hover { transform: translateY(-2px); border-color: rgba(255,138,31,0.4); }
.pitch-card .ico {
  width: 36px; height: 36px; border-radius: 8px;
  display: grid; place-items: center;
  background: rgba(255,138,31,0.12);
  color: var(--accent);
  margin-bottom: 14px;
}
.pitch-card h3 { font-size: 1rem; margin-bottom: 8px; }
.pitch-card p { font-size: 0.94rem; margin: 0; color: var(--text-dim); }

/* ---------- 3 stages ---------- */
.stages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 800px) { .stages { grid-template-columns: 1fr; } }

.stage {
  background: linear-gradient(180deg, var(--bg-card), var(--bg-elev));
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
}
.stage::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0.7;
}
.stage .num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 14px;
}
.stage h3 { font-size: 1.5rem; }
.stage p { margin: 0; }

/* ---------- Curriculum ---------- */
.curriculum {
  background: linear-gradient(180deg, var(--bg), var(--bg-elev));
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.modules {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 980px) { .modules { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .modules { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px) { .modules { grid-template-columns: 1fr; } }

.module {
  padding: 20px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
  position: relative;
}
.module:hover { transform: translateY(-2px); border-color: rgba(255,138,31,0.4); background: var(--bg-card-2); }
.module .mod-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--text-mute);
}
.module .mod-title {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  margin: 6px 0 14px;
  color: var(--text);
}
.module .mod-time {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.module .mod-time::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 8px var(--accent-glow);
}
.curriculum-total {
  margin-top: 32px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-mute);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ---------- Instructor ---------- */
.instructor {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 820px) { .instructor { grid-template-columns: 1fr; gap: 32px; } }
.instructor-card {
  background: linear-gradient(180deg, var(--bg-card), var(--bg-elev));
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-1);
}
.instructor-card .name {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 600;
  margin: 0 0 4px;
}
.instructor-card .role {
  color: var(--accent); font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 24px;
}
.instructor-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border);
}
.stat-val {
  font-family: var(--font-display); font-size: 1.7rem; color: var(--accent);
  font-weight: 600; line-height: 1;
}
.stat-lbl {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-mute); margin-top: 6px;
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative;
}
.testimonial .quote-mark {
  font-family: var(--font-display); color: var(--accent);
  font-size: 3rem; line-height: 1; opacity: 0.7;
  position: absolute; top: 18px; right: 24px;
}
.testimonial p { color: var(--text); margin: 0 0 20px; font-size: 0.98rem; }
.testimonial .who { display: flex; align-items: center; gap: 14px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--border); }
.testimonial .avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--cool));
  display: grid; place-items: center;
  color: #0a0c10; font-weight: 700; font-family: var(--font-display);
}
.testimonial .who-name { font-weight: 600; color: var(--text); font-size: 0.95rem; }
.testimonial .who-role { font-size: 0.85rem; color: var(--text-mute); }

/* ---------- Fit (good/bad) ---------- */
.fit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 800px) { .fit { grid-template-columns: 1fr; } }
.fit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
}
.fit-card.good { border-color: rgba(74,222,128,0.25); }
.fit-card.bad  { border-color: rgba(239,68,68,0.18); }
.fit-card h3 {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.2rem; margin-bottom: 24px;
}
.fit-card.good h3 { color: var(--green); }
.fit-card.bad  h3 { color: var(--red); }
.fit-list { list-style: none; padding: 0; margin: 0; }
.fit-list li {
  display: flex; gap: 12px; padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
  color: var(--text-dim); font-size: 0.97rem;
}
.fit-list li:last-child { border-bottom: 0; }
.fit-list li .mark { flex-shrink: 0; margin-top: 2px; }
.fit-card.good .mark { color: var(--green); }
.fit-card.bad  .mark { color: var(--red); }

/* ---------- Pricing ---------- */
.pricing {
  background: linear-gradient(180deg, var(--bg-elev), var(--bg));
  border-top: 1px solid var(--border-soft);
}
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 900px) { .tiers { grid-template-columns: 1fr; } }

.tiers-single {
  grid-template-columns: minmax(0, 520px);
  justify-content: center;
}
.tiers-single .tier.featured { transform: none; }

.tier {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.tier.featured {
  background: linear-gradient(180deg, var(--bg-card-2), var(--bg-card));
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 20px 60px rgba(255,138,31,0.18);
  transform: scale(1.02);
}
@media (max-width: 900px) { .tier.featured { transform: none; } }
.tier-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(180deg, var(--accent-hot), var(--accent));
  color: #1a0e00; font-size: 0.74rem; font-weight: 700;
  padding: 6px 14px; border-radius: 999px; letter-spacing: 0.08em; text-transform: uppercase;
}
.tier h3 { font-size: 1.4rem; margin-bottom: 4px; }
.tier .tier-tag { font-family: var(--font-mono); font-size: 11px; color: var(--text-mute); letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 22px; }
.tier .price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 22px; }
.tier .price .amount { font-family: var(--font-display); font-size: 2.6rem; font-weight: 600; color: var(--text); line-height: 1; }
.tier .price .cur { font-size: 1.1rem; color: var(--text-mute); }
.tier .price .once { color: var(--text-mute); font-size: 0.85rem; }
.tier ul { list-style: none; padding: 0; margin: 0 0 28px; flex: 1; }
.tier ul li {
  display: flex; gap: 10px; padding: 10px 0;
  font-size: 0.95rem; color: var(--text-dim);
  border-bottom: 1px solid var(--border-soft);
}
.tier ul li:last-child { border-bottom: 0; }
.tier ul li .check { color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.tier .btn { margin-top: auto; }

/* ---------- Guarantee ---------- */
.guarantee {
  display: flex; align-items: center; gap: 32px;
  background: linear-gradient(135deg, rgba(74,222,128,0.08), rgba(255,138,31,0.06));
  border: 1px solid rgba(74,222,128,0.25);
  border-radius: var(--r-lg);
  padding: 32px 36px;
  margin-top: 48px;
}
@media (max-width: 700px) { .guarantee { flex-direction: column; text-align: center; gap: 16px; } }
.guarantee-shield {
  width: 64px; height: 64px; flex-shrink: 0;
  background: rgba(74,222,128,0.12); border: 1px solid rgba(74,222,128,0.3);
  border-radius: 50%; display: grid; place-items: center; color: var(--green);
}
.guarantee h3 { font-size: 1.25rem; margin: 0 0 6px; color: var(--text); }
.guarantee p { margin: 0; color: var(--text-dim); font-size: 0.97rem; }

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.faq-item[open] { border-color: rgba(255,138,31,0.4); }
.faq-item summary {
  list-style: none;
  padding: 22px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--text);
  font-size: 1.02rem;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .chev {
  width: 22px; height: 22px; flex-shrink: 0;
  color: var(--accent);
  transition: transform 0.2s ease;
}
.faq-item[open] .chev { transform: rotate(45deg); }
.faq-item .answer {
  padding: 0 24px 22px;
  color: var(--text-dim);
  font-size: 0.97rem;
}
.faq-item .answer p:last-child { margin-bottom: 0; }

/* ---------- Final CTA ---------- */
.final-cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(255,138,31,0.08), rgba(76,201,240,0.04));
  border-top: 1px solid var(--border-soft);
}
.final-cta h2 { margin-bottom: 12px; }
.final-cta p { font-size: 1.1rem; margin-bottom: 32px; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border-soft);
  background: var(--bg);
  padding: 48px 0 36px;
}
.footer-inner {
  display: flex; justify-content: space-between; gap: 24px; align-items: center;
  flex-wrap: wrap;
}
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: var(--text-mute); font-size: 0.9rem; }
.footer-links a:hover { color: var(--text); text-decoration: none; }
.footer-copy { color: var(--text-mute); font-size: 0.85rem; font-family: var(--font-mono); }

/* ---------- Book-owners enrollment page ---------- */
.enroll-hero { padding: 64px 0 96px; }
.enroll-wrap { max-width: 1080px; margin: 0 auto; }
.enroll-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: linear-gradient(180deg, var(--bg-card), var(--bg-elev));
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  margin-top: 28px;
}
@media (max-width: 860px) { .enroll-card { grid-template-columns: 1fr; } }

.enroll-intro {
  padding: 48px 44px;
  border-right: 1px solid var(--border-soft);
  background:
    radial-gradient(400px 220px at 0% 0%, rgba(255,138,31,0.08), transparent 60%),
    transparent;
}
@media (max-width: 860px) { .enroll-intro { border-right: 0; border-bottom: 1px solid var(--border-soft); padding: 40px 28px; } }

.enroll-intro h1 {
  font-size: clamp(1.9rem, 3.4vw, 2.4rem);
  margin: 16px 0 14px;
}
.enroll-intro .lead { font-size: 1.05rem; margin-bottom: 28px; }

.enroll-perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.enroll-perks li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.enroll-perks .perk-ico {
  width: 22px; height: 22px;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}
.enroll-perks strong {
  display: block;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 2px;
}
.enroll-perks span {
  color: var(--text-dim);
  font-size: 0.94rem;
}

.enroll-form {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--bg-card-2);
}
@media (max-width: 860px) { .enroll-form { padding: 40px 28px; } }

.enroll-form-title {
  font-size: 1.4rem;
  margin: 0 0 4px;
}
.enroll-form-sub {
  color: var(--text-dim);
  font-size: 0.95rem;
  margin: 0 0 8px;
}

.field { display: flex; flex-direction: column; gap: 6px; }
.field-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.field input {
  font: inherit;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.field input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
  background: var(--bg-elev);
}
.field-hint {
  font-size: 0.82rem;
  color: var(--text-mute);
}
.enroll-fineprint {
  margin: 6px 0 0;
  font-size: 0.82rem;
  color: var(--text-mute);
  text-align: center;
}

/* ---------- Legal page layout (privacy, disclaimer) ---------- */
.legal { padding: 80px 0 96px; }
.legal-wrap { max-width: 760px; margin: 0 auto; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 12px; }
.legal .updated { font-family: var(--font-mono); font-size: 12px; color: var(--text-mute); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 40px; }
.legal h2 { font-size: 1.3rem; margin: 40px 0 14px; color: var(--text); }
.legal h3 { font-size: 1.05rem; margin: 24px 0 10px; color: var(--text); }
.legal p, .legal li { color: var(--text-dim); font-size: 0.98rem; line-height: 1.7; }
.legal ul { padding-left: 22px; margin: 0 0 16px; }
.legal a { color: var(--accent-hot); }
.back-link { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 24px; color: var(--text-mute); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; }
.back-link:hover { color: var(--accent); text-decoration: none; }
