:root {
  --bg: #ffffff;
  --bg-alt: #f4f5f6;
  --dark: #2b2b2b;
  --dark-soft: #353535;
  --card: #ffffff;
  --text: #2b2b2b;
  --text-on-dark: #ffffff;
  --muted: #6b6f73;
  --muted-on-dark: #c7cacd;
  --red: #d6483b;
  --red-dark: #bf3e32;
  --green: #8bc24a;
  --green-dark: #79ad3c;
  --border: #e4e6e8;
  --border-dark: #444444;
  --max: 1100px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Helvetica Neue", Arial, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 1.25rem;
}

.brand strong {
  color: var(--red);
  font-weight: 800;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.15s ease;
}

.nav-links a:hover {
  color: var(--red);
}

.nav-cta {
  margin-left: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
  padding: 0.95rem 1.8rem;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: var(--red);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.btn-green {
  background: var(--green);
  color: #ffffff;
}

.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}

.btn-outline:hover {
  background: var(--red);
  color: #ffffff;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 4.5rem 0;
  text-align: center;
  background: linear-gradient(135deg, #9a9a9a 0%, #6f6f6f 100%);
}

.hero-box {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  padding: 3rem 2.5rem;
  background: rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 4px;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 1.2rem;
}

.hero .eyebrow {
  color: #ffffff;
  opacity: 0.85;
}

.hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.hero .lede {
  max-width: 620px;
  margin: 0 auto;
  color: #f0f0f0;
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-actions .btn {
  padding: 1.05rem 2.6rem;
  font-size: 0.9rem;
}

/* ---------- Stats ---------- */
.stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 920px;
  margin: 0 auto;
}

.stats {
  padding: 3rem 0;
}

.stats li,
.social-stats li {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: center;
}

.stat-num {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--muted);
}

.stats-section {
  border-bottom: 1px solid var(--border);
}

/* ---------- As Seen In strip ---------- */
.strip {
  background: var(--bg-alt);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.strip-title {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.logos {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  color: var(--text);
  opacity: 0.65;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

/* ---------- Sections ---------- */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-dark {
  background: var(--dark);
  color: var(--text-on-dark);
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.section-head h2,
.split-body h2,
.cta-card h2 {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--muted);
  font-size: 1.1rem;
}

/* Underline accent for headings on the dark section */
.accent-underline {
  position: relative;
  padding-bottom: 0.6rem;
}

.accent-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  height: 4px;
  background: var(--green);
  border-radius: 2px;
}

/* ---------- Split (About) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.split-media {
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  border: 1px solid var(--border-dark);
  background: linear-gradient(135deg, #3a3a3a 0%, #4a4a4a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.monogram {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.monogram span {
  color: var(--red);
}

.section-dark .eyebrow {
  color: var(--green);
}

.section-dark p {
  color: var(--muted-on-dark);
}

.checks {
  list-style: none;
  margin: 1.5rem 0 2rem;
  display: grid;
  gap: 0.7rem;
}

.checks li {
  position: relative;
  padding-left: 1.8rem;
  color: var(--text-on-dark);
}

/* CSS-drawn checkmark (no emoji) */
.checks li::before,
.benefits li::before {
  content: "";
  position: absolute;
  left: 0.25rem;
  top: 0.35em;
  width: 0.45rem;
  height: 0.8rem;
  border: solid var(--green);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* ---------- Benefits ---------- */
.benefits {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem 2rem;
  max-width: 880px;
  margin: 0 auto 3rem;
}

.benefits li {
  position: relative;
  padding-left: 1.8rem;
  color: var(--text);
}

.center {
  text-align: center;
}

/* ---------- Testimonials ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.quote {
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  border-radius: 8px;
  padding: 2rem 1.75rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.quote p {
  font-style: italic;
  margin-bottom: 1.25rem;
}

.quote cite {
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--red);
}

/* ---------- Episodes ---------- */
.episodes {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.episodes li {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.episodes li:hover {
  border-color: var(--red);
  transform: translateY(-2px);
}

.episodes h3 {
  color: var(--text);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.episodes p {
  color: var(--muted);
  font-size: 0.98rem;
}

/* ---------- Social ---------- */
.social-stats {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 4rem;
  text-align: center;
}

/* ---------- CTA ---------- */
.cta-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.cta-card {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 4px solid var(--red);
  border-radius: 12px;
  padding: 3rem 2.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.cta-card p {
  color: var(--muted);
  margin-bottom: 2rem;
}

.signup {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.signup input {
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}

.signup input:focus {
  outline: none;
  border-color: var(--red);
}

.signup .btn {
  margin-top: 0.4rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark);
  padding: 2.5rem 0;
  text-align: center;
}

.site-footer p {
  color: var(--muted-on-dark);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav {
    justify-content: space-between;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .split {
    grid-template-columns: 1fr;
  }
  .benefits,
  .cards,
  .episodes {
    grid-template-columns: 1fr;
  }
  .social-stats {
    gap: 2.5rem;
  }
}
