/* ============================================================
   START STRONG — Master Stylesheet
   thestartstrong.com
   ============================================================

   TABLE OF CONTENTS
   -----------------
   1.  DESIGN TOKENS         — colors, fonts, spacing, shadows
   2.  RESET & BASE          — box-sizing, body, links, images
   3.  TYPOGRAPHY SCALE      — headings, body, eyebrow, tagline
   4.  LAYOUT UTILITIES      — .wrap, .section-pad, .grid-*
   5.  NAV                   — .nav, .nav-logo, .nav-links, .nav-cta
   6.  HERO                  — .hero, .hero-content, .hero-video, .hero-overlay
   7.  BUTTONS               — .btn-primary, .btn-secondary, .btn-ghost
   8.  BADGES & EYEBROWS     — .eyebrow, .badge, .tag
   9.  CARDS                 — .card, .card-border, .card-dark
   10. MIRROR STRIPS         — .mirror-list, .mirror-item (homepage pain points)
   11. FEATURE GRID          — .feature-grid, .feature-item
   12. TESTIMONIALS          — .testimonials-grid, .t-card
   13. COACH STRIP           — .coach-strip (about snippet on homepage)
   14. CTA SECTION           — .cta-section, .cta-section--yellow
   15. FOOTER                — .footer, .footer-links, .footer-social, .footer-legal
   16. ICONS                 — Material Symbols config
   17. RESPONSIVE            — tablet (max 960px), mobile (max 580px)
   18. UTILITIES             — .text-center, .mt-*, .hide-mobile, etc.

   ============================================================ */


/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */

:root {

  /* — Brand Colors — */
  --color-yellow:           #FFC107;
  --color-yellow-warm:      #FEC031;
  --color-yellow-pale:      #FFFBEE;
  --color-yellow-border:    #FDDDA0;

  --color-purple:           #673AB7;
  --color-purple-deep:      #4A1D96;
  --color-purple-light:     #CABFFD;
  --color-purple-pale:      #F0EBF8;

  /* — Neutral Colors — */
  --color-near-black:       #191818;
  --color-dark-slate:       #1B1F2B;
  --color-dark-gray:        #374151;
  --color-mid-gray:         #9CA3AF;
  --color-light-gray:       #E5E7EB;
  --color-off-white:        #F5F6FA;
  --color-white:            #FFFFFF;

  /* — Text Colors — */
  --text-on-dark:           rgba(255, 255, 255, 0.88);
  --text-on-dark-muted:     rgba(255, 255, 255, 0.52);
  --text-on-yellow:         var(--color-near-black);

  /* — Typography — */
  --font-heading:           'Poppins', sans-serif;
  --font-body:              'Open Sans', sans-serif;

  /* — Font Weights (change here to update sitewide) — */
  --weight-heading-xl:      700;   /* h1, hero headline */
  --weight-heading-lg:      700;   /* h2 section headings */
  --weight-heading-md:      600;   /* h3, card titles */
  --weight-body-bold:       600;
  --weight-body:            400;
  --weight-eyebrow:         700;

  /* — Font Sizes (fluid where possible) — */
  --size-hero-headline:     clamp(2.4rem, 4.5vw, 3.4rem);
  --size-section-heading:   clamp(1.8rem, 3vw, 2.4rem);
  --size-card-title:        1.1rem;
  --size-body-lg:           1.125rem;   /* 18px */
  --size-body:              1rem;       /* 16px */
  --size-body-sm:           0.9375rem;  /* 15px */
  --size-caption:           0.8125rem;  /* 13px */
  --size-eyebrow:           0.8125rem;  /* 13px */

  /* — Spacing — */
  --section-padding-y:      100px;
  --section-padding-x:      40px;
  --wrap-max:               1200px;
  --card-padding:           32px;
  --card-padding-sm:        20px;

  /* — Borders & Radius — */
  --radius-sm:              8px;
  --radius-md:              12px;
  --radius-lg:              16px;
  --radius-xl:              24px;
  --radius-pill:            100px;
  --border-card:            1.5px solid var(--color-light-gray);
  --border-card-dark:       1px solid rgba(255, 255, 255, 0.1);

  /* — Shadows — */
  --shadow-cta:             0 4px 14px rgba(255, 193, 7, 0.45);
  --shadow-card:            0 4px 20px rgba(103, 58, 183, 0.10);
  --shadow-card-hover:      0 12px 40px rgba(103, 58, 183, 0.18);
  --shadow-hero-frame:      0 20px 60px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.06);

  /* — Transitions — */
  --transition-fast:        0.18s ease;
  --transition-base:        0.25s ease;
}


/* ============================================================
   2. RESET & BASE
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--size-body-lg);
  font-weight: var(--weight-body);
  color: var(--color-near-black);
  background: var(--color-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}


/* ============================================================
   3. TYPOGRAPHY SCALE
   ============================================================ */

/* — Hero Headline (h1) — */
.headline-hero {
  font-family: var(--font-heading);
  font-size: var(--size-hero-headline);
  font-weight: var(--weight-heading-xl);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-white);
}

/* Yellow highlight word inside hero headline */
.headline-hero .highlight {
  color: var(--color-yellow);
  position: relative;
  display: inline-block;
}

.headline-hero .highlight::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 4px;
  border-radius: 2px;
  background: var(--color-yellow);
  opacity: 0.35;
}

/* — Section Heading (h2) — */
.heading-section {
  font-family: var(--font-heading);
  font-size: var(--size-section-heading);
  font-weight: var(--weight-heading-lg);
  line-height: 1.18;
  color: var(--color-dark-slate);
}

/* Section heading on dark backgrounds */
.heading-section--light {
  color: var(--color-white);
}

/* — Card / Sub Heading (h3) — */
.heading-card {
  font-family: var(--font-heading);
  font-size: var(--size-card-title);
  font-weight: var(--weight-heading-md);
  color: var(--color-dark-slate);
  line-height: 1.3;
}

/* — Body Lead (large paragraph under section headings) — */
.body-lead {
  font-size: var(--size-body-lg);
  color: var(--color-dark-gray);
  line-height: 1.8;
  max-width: 640px;
}

/* Body lead on dark backgrounds */
.body-lead--light {
  color: var(--text-on-dark-muted);
}

/* — Body Default — */
.body-text {
  font-size: var(--size-body);
  color: var(--color-dark-gray);
  line-height: 1.7;
}

/* — Small / Caption — */
.text-caption {
  font-size: var(--size-caption);
  color: var(--color-mid-gray);
  line-height: 1.5;
}

/* — Pull Quote — */
.pull-quote {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: var(--weight-heading-md);
  font-style: italic;
  color: var(--color-white);
  line-height: 1.7;
}


/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */

/* Centered content wrapper */
.wrap {
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding: 0 var(--section-padding-x);
}

/* Standard section vertical padding */
.section-pad {
  padding: var(--section-padding-y) var(--section-padding-x);
}

/* Two-column grid */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

/* Three-column grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Four-column grid */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Asymmetric hero grid: text left, media right */
.grid-hero {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 56px;
  align-items: center;
}

/* Section header block (eyebrow + heading + lead) */
.section-header {
  margin-bottom: 52px;
}

.section-header--center {
  text-align: center;
}

.section-header--center .body-lead {
  margin: 0 auto;
}


/* ============================================================
   5. NAV
   ============================================================ */

.nav {
  background: var(--color-dark-slate);
  padding: 10px var(--section-padding-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

/* Logo area */
.nav-logo {
  display: flex;
  align-items: center;
  max-height: 60px;
  flex-shrink: 0;
}

.nav-logo img {
  height: auto;
  max-height: 60px;
  width: auto;
  display: block;
}

/* Main nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  font-size: var(--size-body-sm);
font-weight: 500;
  color: var(--text-on-dark-muted);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: color var(--transition-fast), background var(--transition-fast);
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.07);
}

.nav-links a.active {
  color: var(--color-white);
}

/* CTA button in nav */
.nav-cta {
  background: var(--color-purple);
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: var(--weight-body-bold);
  font-size: var(--size-body-sm);
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-cta);
  transition: background var(--transition-fast), transform var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--color-purple-deep);
  transform: translateY(-1px);
}

/* Mobile hamburger (hidden on desktop) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-fast);
}

/* Mobile nav drawer */
.nav-mobile-drawer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-dark-slate);
  z-index: 200;
  flex-direction: column;
  padding: 24px var(--section-padding-x);
}

.nav-mobile-drawer.open {
  display: flex;
}

.nav-mobile-close {
  align-self: flex-end;
  font-size: 24px;
  color: var(--color-white);
  background: none;
  border: none;
  cursor: pointer;
  margin-bottom: 32px;
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  list-style: none;
}

.nav-mobile-links a {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-on-dark-muted);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: block;
  transition: color var(--transition-fast);
}

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

.nav-mobile-cta {
  margin-top: 32px;
  display: inline-block;
  background: var(--color-purple);
  color: var(--color-white);
  font-weight: var(--weight-body-bold);
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  text-align: center;
  transition: background var(--transition-fast);
}

.nav-mobile-cta:hover {
  background: var(--color-purple-deep);
}


/* ============================================================
   6. HERO
   ============================================================ */

.hero {
  background: var(--color-dark-slate);
  width: 100%;
  padding: 88px var(--section-padding-x);
  position: relative;
  overflow: hidden;
}

/* Ambient glow effects */
.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.08) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 40px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(103, 58, 183, 0.12) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

/* Allow hero background image with dark overlay */
.hero--image-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Dark overlay for image background heroes */
.hero--image-bg .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(25, 24, 24, 0.72);
  z-index: 0;
}

.hero-inner {
  max-width: var(--wrap-max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Hero with video/image on right */
.hero-inner--split {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 56px;
  align-items: center;
}

/* Hero centered (no media) */
.hero-inner--centered {
  max-width: 760px;
  text-align: center;
}

.hero-eyebrow {
  display: inline-block;
  font-size: var(--size-eyebrow);
  font-weight: var(--weight-eyebrow);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-purple-deep);
  background: var(--color-yellow);
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--text-on-dark-muted);
  line-height: 1.8;
  max-width: 520px;
  margin-top: 20px;
  margin-bottom: 36px;
}

/* Trust row beneath CTA */
.hero-trust {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--size-caption);
  color: var(--text-on-dark-muted);
}

.hero-trust-item .material-symbols-outlined {
  font-size: 16px;
  color: var(--color-yellow);
}

/* Video / image frame in hero */
.hero-media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-media-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-hero-frame);
  position: relative;
}

/* YouTube embed fills the frame */
.hero-media-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Image fallback in hero frame */
.hero-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Placeholder shown before URL is set */
.hero-media-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.28);
  font-size: var(--size-caption);
  background: rgba(255, 255, 255, 0.03);
}

.hero-media-placeholder .material-symbols-outlined {
  font-size: 40px;
}


/* ============================================================
   7. BUTTONS
   ============================================================ */

/* Primary — yellow fill, dark text */
.btn-primary {
  display: inline-block;
  background: var(--color-yellow);
  color: var(--text-on-yellow);
  font-family: var(--font-body);
  font-weight: var(--weight-body-bold);
  font-size: 1rem;
  padding: 14px 36px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-cta);
  transition: background var(--transition-fast), transform var(--transition-fast);
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--color-yellow-warm);
  transform: translateY(-2px);
}

/* Primary large — for hero CTAs */
.btn-primary--lg {
  font-size: 1.0625rem;
  padding: 17px 48px;
}

/* Secondary — dark fill, white text */
.btn-secondary {
  display: inline-block;
  background: var(--color-near-black);
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: var(--weight-body-bold);
  font-size: 1rem;
  padding: 14px 36px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 16px rgba(25, 24, 24, 0.2);
  transition: background var(--transition-fast), transform var(--transition-fast);
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

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

/* Ghost — outlined, for use on dark backgrounds */
.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: var(--weight-body-bold);
  font-size: 1rem;
  padding: 13px 34px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  transition: border-color var(--transition-fast), background var(--transition-fast);
  white-space: nowrap;
  cursor: pointer;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.06);
}

/* Button row — group multiple buttons with gap */
.btn-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}


/* ============================================================
   8. BADGES & EYEBROWS
   ============================================================ */

/* Section eyebrow label */
.eyebrow {
  display: inline-block;
  font-size: var(--size-eyebrow);
  font-weight: var(--weight-eyebrow);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-purple);
  background: var(--color-purple-light);
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

/* Eyebrow on dark section backgrounds */
.eyebrow--dark {
  color: var(--color-yellow);
  background: rgba(255, 193, 7, 0.15);
}

/* Small badge/tag (status, category labels) */
.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

.badge--yellow {
  background: var(--color-yellow);
  color: var(--text-on-yellow);
}

.badge--purple {
  background: var(--color-purple-light);
  color: var(--color-purple-deep);
}

.badge--dark {
  background: var(--color-near-black);
  color: var(--color-yellow);
}


/* ============================================================
   9. CARDS
   ============================================================ */

/* Base card */
.card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--card-padding);
  border: var(--border-card);
  transition: box-shadow var(--transition-base), border-color var(--transition-base), transform var(--transition-base);
}

.card:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-purple-light);
  transform: translateY(-2px);
}

/* Card on dark / colored background */
.card--dark {
  background: var(--color-dark-slate);
  border: var(--border-card-dark);
}

.card--dark:hover {
  border-color: rgba(202, 191, 253, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Card with yellow left-border accent */
.card--accent {
  border-left: 4px solid var(--color-yellow);
}

/* Card icon wrapper */
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--color-purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.card-icon .material-symbols-outlined {
  font-size: 24px;
  color: var(--color-purple);
}

/* Card icon on dark background */
.card-icon--dark {
  background: rgba(202, 191, 253, 0.15);
}

.card-icon--dark .material-symbols-outlined {
  color: var(--color-purple-light);
}

/* Output strip at bottom of card */
.card-output {
  background: var(--color-yellow-pale);
  border-left: 3px solid var(--color-yellow);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 12px 16px;
  margin-top: 20px;
  font-size: var(--size-body-sm);
  font-weight: var(--weight-body-bold);
  color: var(--color-dark-slate);
}

.card-output-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-mid-gray);
  margin-bottom: 4px;
}


/* ============================================================
   10. MIRROR STRIPS (Homepage pain/identification section)
   ============================================================ */

.mirror-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 40px;
}

.mirror-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  padding: 22px 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: background var(--transition-base), border-color var(--transition-base);
}

.mirror-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 193, 7, 0.25);
}

.mirror-item-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-yellow);
  background: rgba(255, 193, 7, 0.12);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  margin-top: 3px;
}

.mirror-item-content {}

.mirror-item-quote {
  font-size: var(--size-body-sm);
  color: var(--text-on-dark-muted);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 8px;
}

.mirror-item-outcome {
  font-size: var(--size-caption);
  color: var(--color-yellow);
  font-weight: var(--weight-body-bold);
  display: flex;
  align-items: center;
  gap: 6px;
}

.mirror-item-outcome::before {
  content: '→';
}


/* ============================================================
   11. FEATURE GRID (services / offerings section)
   ============================================================ */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: var(--color-white);
  border: var(--border-card);
  transition: box-shadow var(--transition-base), border-color var(--transition-base);
}

.feature-item:hover {
  box-shadow: var(--shadow-card);
  border-color: var(--color-purple-light);
}

.feature-item-meta {
  font-size: var(--size-caption);
  color: var(--color-mid-gray);
  font-weight: 500;
}

.feature-item-arrow {
  margin-top: auto;
  font-size: var(--size-caption);
  font-weight: var(--weight-body-bold);
  color: var(--color-purple);
  display: flex;
  align-items: center;
  gap: 6px;
}


/* ============================================================
   12. TESTIMONIALS
   ============================================================ */

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 52px;
}

.t-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--card-padding);
  border: var(--border-card);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow var(--transition-base), border-color var(--transition-base);
}

.t-card:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-purple-light);
}

.t-quote-mark {
  font-family: Georgia, serif;
  font-size: 64px;
  font-weight: 700;
  color: var(--color-yellow);
  line-height: 0.7;
  display: block;
  margin-bottom: 4px;
}

.t-quote {
  font-size: var(--size-body-sm);
  color: var(--color-dark-gray);
  line-height: 1.8;
  font-style: italic;
  flex: 1;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-white);
  flex-shrink: 0;
}

.t-name {
  font-family: var(--font-heading);
  font-size: var(--size-body-sm);
  font-weight: 700;
  color: var(--color-dark-slate);
}

.t-role {
  font-size: var(--size-caption);
  color: var(--color-mid-gray);
  margin-top: 2px;
}

.t-stars {
  font-size: 13px;
  color: var(--color-yellow);
  letter-spacing: 2px;
  margin-bottom: 2px;
}


/* ============================================================
   13. COACH STRIP (About snippet on homepage)
   ============================================================ */

.coach-strip {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
  border-top: 1px solid var(--color-light-gray);
}

.coach-strip-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  object-fit: cover;
  background: var(--color-off-white);
}

.coach-strip-name {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: var(--weight-heading-lg);
  color: var(--color-dark-slate);
  margin-bottom: 6px;
}

.coach-strip-role {
  font-size: var(--size-body-sm);
  font-weight: 600;
  color: var(--color-purple);
  margin-bottom: 20px;
}

.coach-strip-bio {
  font-size: var(--size-body-sm);
  color: var(--color-dark-gray);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* Pull quote for coach strip */
.coach-pull {
  padding: 22px 28px;
  background: var(--color-dark-slate);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-yellow);
  margin-top: 24px;
}

.coach-pull q {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
  font-style: italic;
  quotes: none;
  display: block;
  line-height: 1.65;
  margin-bottom: 10px;
}

.coach-pull-attr {
  font-size: var(--size-caption);
  color: var(--text-on-dark-muted);
}


/* ============================================================
   14. CTA SECTION
   ============================================================ */

/* Dark CTA section */
.cta-section {
  background: var(--color-dark-slate);
  padding: var(--section-padding-y) var(--section-padding-x);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(103, 58, 183, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

.cta-section-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-section .heading-section {
  color: var(--color-white);
  margin-bottom: 16px;
}

.cta-section .body-lead {
  color: var(--text-on-dark-muted);
  margin: 0 auto 40px;
}

/* Yellow CTA section */
.cta-section--yellow {
  background: var(--color-yellow);
}

.cta-section--yellow .heading-section {
  color: var(--color-near-black);
}

.cta-section--yellow .body-lead {
  color: rgba(25, 24, 24, 0.62);
}

.cta-section--yellow::before {
  display: none;
}

/* CTA trust note beneath button */
.cta-trust-note {
  margin-top: 18px;
  font-size: var(--size-caption);
  color: var(--text-on-dark-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.cta-section--yellow .cta-trust-note {
  color: rgba(25, 24, 24, 0.48);
}


/* ============================================================
   15. FOOTER
   ============================================================ */

.footer {
  background: var(--color-dark-slate);
  padding: 40px var(--section-padding-x) 24px;
}

.footer-inner {
  max-width: var(--wrap-max);
  margin: 0 auto;
}

/* Top row: brand + 3 link columns, all in one slim row */
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-col {
  min-width: 0;
}

.footer-logo img {
  height: auto;
  max-height: 32px;
  width: auto;
  display: block;
  margin-bottom: 10px;
}

.footer-tagline {
  font-size: var(--size-caption);
  color: var(--text-on-dark-muted);
  max-width: 220px;
  line-height: 1.5;
}

/* Footer link groups */
.footer-link-col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 12px;
}

.footer-link-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-link {
  font-size: 13px;
  color: var(--text-on-dark-muted);
  transition: color var(--transition-fast);
  line-height: 1.4;
}

.footer-link:hover {
  color: var(--color-white);
}

/* Social icons row */
.footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}

.footer-social-link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.footer-social-link:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.24);
}

.footer-social-link svg {
  width: 14px;
  height: 14px;
  fill: var(--text-on-dark-muted);
  transition: fill var(--transition-fast);
}

.footer-social-link:hover svg {
  fill: var(--color-white);
}

/* Bottom row: copyright only */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 18px;
}

.footer-copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.22);
  text-align: center;
}


/* ============================================================
   16. ICONS — Material Symbols
   ============================================================ */

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-variation-settings: 'FILL' 0, 'wght' 300, 'OPSZ' 24;
  font-size: 22px;
  color: currentColor;
  vertical-align: middle;
  line-height: 1;
  flex-shrink: 0;
  user-select: none;
}

/* Icon size variants */
.icon-sm  { font-size: 18px; }
.icon-md  { font-size: 22px; }
.icon-lg  { font-size: 28px; }
.icon-xl  { font-size: 36px; }

/* Filled icon variant */
.icon-filled {
  font-variation-settings: 'FILL' 1, 'wght' 400, 'OPSZ' 20;
}


/* ============================================================
   17. RESPONSIVE
   ============================================================ */

/* — Tablet (≤ 960px) — */
@media (max-width: 960px) {

  :root {
    --section-padding-y: 72px;
    --section-padding-x: 24px;
  }

  .grid-hero,
  .hero-inner--split {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
  }

  .hero-media-frame {
    max-width: 600px;
    margin: 0 auto;
  }

  .hero-sub {
    max-width: 100%;
  }

  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .feature-grid      { grid-template-columns: 1fr; }

  .coach-strip {
    grid-template-columns: 1fr;
  }

  .coach-strip-img {
    max-width: 280px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer-col--brand {
    grid-column: 1 / -1;
  }

  .nav {
    padding: 14px 20px;
  }

  .nav-logo,
  .nav-logo img {
    max-height: 40px;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }
}

/* — Mobile (≤ 580px) — */
@media (max-width: 580px) {

  :root {
    --section-padding-y: 56px;
  }

  .nav-logo,
  .nav-logo img {
    max-height: 44px;
  }

  .nav-cta {
    padding: 8px 16px;
    font-size: 13px;
  }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }

  .btn-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary,
  .btn-ghost {
    text-align: center;
    width: 100%;
  }

  .hero-trust { gap: 12px; }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer-bottom {
    justify-content: flex-start;
  }
}


/* ============================================================
   18. UTILITIES
   ============================================================ */

.text-center  { text-align: center; }
.text-left    { text-align: left; }

.mt-4  { margin-top: 4px; }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }

.mb-4  { margin-bottom: 4px; }
.mb-8  { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hide-mobile { display: block; }
.show-mobile { display: none; }

@media (max-width: 580px) {
  .hide-mobile { display: none; }
  .show-mobile { display: block; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   19. NEWSLETTER POPUP
   ============================================================ */

.ss-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(25, 24, 24, 0.55);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.ss-popup-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.ss-popup {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  width: auto;
  min-width: 0;
  max-width: min(580px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  box-sizing: border-box;
  position: relative;
  padding: 44px 48px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
  transform: translateY(16px) scale(0.97);
  transition: transform var(--transition-base);
}

.ss-popup-overlay.is-open .ss-popup {
  transform: translateY(0) scale(1);
}

.ss-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: var(--color-off-white);
  color: var(--color-dark-gray);
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast);
  z-index: 1;
}

.ss-popup-close:hover {
  background: var(--color-light-gray);
  color: var(--color-near-black);
}

.ss-popup-content {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  overflow-x: hidden;
}

/* Safety net only: stop any oversized media inside the embed
   from forcing horizontal scroll. Does not constrain the
   EmailOctopus form's own widths/fields — that stays
   controlled by the embed script itself. */
.ss-popup-content img,
.ss-popup-content video,
.ss-popup-content iframe {
  max-width: 100%;
  height: auto;
}

/* Prevent body scroll while popup is open */
body.ss-popup-active {
  overflow: hidden;
}

/* ── Mobile ── */
@media (max-width: 540px) {
  .ss-popup-overlay {
    padding: 0;
    align-items: flex-end;
  }

  .ss-popup {
    width: 100%;
    max-width: 100%;
    max-height: 88vh;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    padding: 40px 24px 28px;
    transform: translateY(100%);
  }

  .ss-popup-overlay.is-open .ss-popup {
    transform: translateY(0);
  }

  .ss-popup-close {
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    font-size: 24px;
    background: var(--color-light-gray);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ss-popup-overlay,
  .ss-popup {
    transition: none;
  }
}
