@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");

/* Base Styles */
:root {
  /* Brand Colors */
  --brand: #f85f00;
  --brand-rgb: 248, 95, 0;
  --brand-dark: #c74b00;
  --bg-dark: #171719;
  --text-light: #dbdbdb;
  --text-muted: #9aa0aa;
  --white: #ffffff;

  /* Spacing Scale */
  --space-xs: 0.25rem;   /* 4px */
  --space-sm: 0.5rem;    /* 8px */
  --space-md: 1rem;      /* 16px */
  --space-lg: 1.5rem;    /* 24px */
  --space-xl: 2rem;      /* 32px */
  --space-2xl: 3rem;     /* 48px */
  --space-3xl: 4rem;     /* 64px */

  /* Layout */
  --navbar-margin-x: 5%;
  --navbar-offset-y: 0.5rem;
  --navbar-height: 64px;
  --page-start-space: var(--space-md);
  --page-end-space: var(--space-lg);
  --footer-padding-y: var(--space-xl);
}

html,
body {
  margin: 0;
  padding: 0;
  padding-top: var(--navbar-height);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  background: var(--bg-dark);
  color: var(--text-light);
  /* Sticky footer layout */
  height: 100%;
  display: flex;
  flex-direction: column;
}

main > :first-child,
body > section:first-of-type {
  padding-top: var(--page-start-space);
}

main > :last-child,
body > section:last-of-type {
  padding-bottom: var(--page-end-space);
}

/* Typography */
h1,
h2,
h3,
h4 {
  color: var(--white);
  margin: 0 0 0.75rem 0;
}

p {
  margin: 0 0 1rem 0;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  isolation: isolate; /* keep navbar content above backdrop/composited layers */
  backdrop-filter: blur(20px);
  background: rgba(36, 37, 40, 0.8);
  border: none;
  border-bottom: 1px solid #3a3a3a;
  border-radius: 0;
  margin: 0;
  padding: 0.5rem var(--space-lg);
  transition: transform 0.3s ease-in-out;
  box-sizing: border-box;
}

.navbar-hidden {
  transform: translateY(-100%);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.nav-logo {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  text-decoration: none;
}

/* Responsive text swaps for logo and CTA */
.nav-logo .logo-short,
.nav-cta .cta-short { display: none; }
.nav-logo .logo-full,
.nav-cta .cta-full { display: inline; }

@media (max-width: 520px) {
  .nav-logo .logo-full { display: none; }
  .nav-logo .logo-short { display: inline; }
  .nav-cta .cta-full { display: none; }
  .nav-cta .cta-short { display: inline; }
  .nav-cta { padding: 0.45rem 0.8rem; font-size: 0.95rem; }
}

.nav-menu {
  display: none;
  gap: var(--space-lg);
}

.nav-link {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.9rem;
}

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

.nav-cta {
  border: 1px solid var(--brand);
  background: rgba(var(--brand-rgb), 0.18);
  color: var(--white);
  text-decoration: none;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  transition: all 0.25s ease;
  box-sizing: border-box;
}

.nav-cta:hover {
  background: var(--brand-dark);
  box-shadow: 0 6px 18px rgba(var(--brand-rgb), 0.24);
  transform: translateY(-1px);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  width: 38px;
  height: 38px;
  padding: 0;
  font-size: 0; /* hide native ☰ glyph in the HTML; we render our own via ::before */
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.35);
}

.nav-toggle::before {
  content: "\2630"; /* ☰ */
  font-size: 1.2rem;
  line-height: 1;
  display: inline-block;
  transition: transform 220ms ease;
}

.nav-toggle[aria-expanded="true"]::before {
  content: "\2715"; /* ✕ */
  transform: rotate(90deg);
}

@media (min-width: 900px) {
  .nav-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
  .nav-menu {
    display: flex;
    justify-self: center;
  }
  .nav-cta {
    justify-self: end;
  }
  .nav-toggle {
    display: none;
  }
}

@media (min-width: 1600px) {
  .nav-inner,
  .hero-inner,
  .help-inner,
  .about-inner,
  .videos-inner,
  .footer-inner,
  .what-inner,
  .faq-inner,
  .blog-posts-grid {
    max-width: 1280px;
  }

  .home-hero .hero-shell {
    max-width: 1360px;
  }

  .nav-logo {
    font-size: 1.3rem;
  }

  .nav-link,
  .footer-link {
    font-size: 0.98rem;
  }

  .nav-cta,
  .primary-button {
    font-size: 1.05rem;
    padding: 0.95rem 1.85rem;
  }

  .hero-content h1 {
    font-size: clamp(2.4rem, 4vw, 3.5rem);
  }

  .hero-content p {
    font-size: 1.18rem;
  }

  .home-hero .hero-content h1 {
    font-size: clamp(3.4rem, 5vw, 5.75rem);
    max-width: 11ch;
  }

  .home-hero .hero-content p {
    font-size: 1.16rem;
    max-width: 42rem;
  }

  .help-card {
    grid-template-columns: minmax(0, 1fr) 300px;
    padding: 1.5rem;
  }
}

/* Mobile Menu - Dropdown that connects flush to the navbar */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: center;      /* center each row in the dropdown */
  justify-content: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg) var(--space-lg);
  background: rgba(24, 28, 34, 0.97);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);

  /* Anchor to the bottom of the navbar so there is never a gap, no matter
     what the navbar's actual rendered height is. */
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  /* The navbar's border-bottom already provides the divider — no need for a
     second one here, which would double-stack visually. */
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);

  /* Constrain to remaining viewport so long menus scroll instead of overflowing */
  max-height: calc(100dvh - var(--navbar-height));
  overflow-y: auto;
  overscroll-behavior: contain;
  z-index: 60;

  /* Animation — animate visibility/opacity/transform instead of display so it can transition */
  visibility: hidden;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease, visibility 0s linear 220ms;
  box-sizing: border-box;
}

/* Open state — driven by aria-hidden so JS only flips one attribute */
.mobile-menu[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 220ms ease, transform 220ms ease, visibility 0s linear 0s;
}

/* Pre-JS state: respect the [hidden] attribute to avoid a flash before main.js runs */
.mobile-menu[hidden] {
  display: none;
}

/* Don't render the dropdown at all on desktop — the inline nav-menu is shown instead */
@media (min-width: 900px) {
  .mobile-menu {
    display: none !important;
  }
}

/* Lock page scroll when mobile menu is open (site-wide) */
body.menu-open {
  overflow: hidden;
}

/* The hamburger button now toggles open/close on its own, so the floating X
   inside the dropdown is redundant. Hide it but keep it in the DOM for any
   pages that haven't been updated. */
.mobile-close {
  display: none;
}

.mobile-link,
.mobile-cta {
  display: block;
  width: 100%;
  max-width: 360px;       /* keep rows readable on wider phones/tablets */
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1.4;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-link:hover,
.mobile-link:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.mobile-cta {
  border: 1px solid var(--brand);
  background: rgba(var(--brand-rgb), 0.18);
  border-radius: 999px;
  font-weight: 700;
  /* No margin-top — the flex container's `gap` already spaces items evenly. */
}

.mobile-cta:hover,
.mobile-cta:focus-visible {
  background: var(--brand-dark);
}

/* Hero */
.hero {
  padding: var(--space-xl) var(--space-lg);
  position: relative;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  align-items: center;
}

.hero-image-wrapper {
  flex: 1 1 300px;
  position: relative;
}

.hero-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(var(--brand-rgb), 0.6),
    transparent 70%
  );
  filter: blur(24px);
}

.hero-image {
  width: 100%;
  max-width: 400px;
  border-radius: 16px;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1 1 300px;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
}

.hero-content p {
  font-size: 1.1rem;
  color: #cbd5e1;
}

.home-hero {
  padding: var(--space-xl) var(--space-lg) var(--space-3xl);
  overflow: clip;
}

.home-hero .hero-shell {
  --hero-spotlight-x: 50%;
  --hero-spotlight-y: 50%;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(var(--brand-rgb), 0.18), transparent 32%),
    radial-gradient(circle at bottom right, rgba(92, 214, 255, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    #121316;
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  isolation: isolate;
}

.home-hero .hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at var(--hero-spotlight-x) var(--hero-spotlight-y), rgba(255, 255, 255, 0.12), transparent 22%),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.82), transparent 92%);
  opacity: 0.75;
  pointer-events: none;
}

.home-hero .hero-inner {
  max-width: none;
  margin: 0;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.home-hero .hero-image-wrapper {
  flex: initial;
}

.home-hero .hero-glow {
  filter: blur(36px);
  opacity: 0.85;
}

.home-hero .hero-image {
  max-width: 100%;
  border-radius: 24px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

.home-hero .hero-content {
  flex: 1 1 440px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.home-hero .hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 10ch;
  margin-bottom: 1rem;
}

.home-hero .hero-content p {
  font-size: 1.08rem;
  max-width: 38rem;
}

.home-hero .hero-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 0.55rem 0.95rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(var(--brand-rgb), 0.14);
  border: 1px solid rgba(var(--brand-rgb), 0.42);
  color: #ffd8bf;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-hero .hero-title,
.home-hero .hero-description,
.home-hero .hero-actions {
  position: relative;
  z-index: 1;
}

.home-hero .hero-proof-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.home-hero .hero-proof-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f3f4f6;
  font-size: 0.9rem;
  font-weight: 600;
}

.home-hero .hero-stats {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.home-hero .hero-stat-card {
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.home-hero .hero-stat-value {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.home-hero .hero-stat-label {
  display: block;
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.45;
}

.home-hero .hero-showcase {
  flex: 1 1 420px;
  min-height: 100%;
  padding: 1.25rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transform: perspective(1200px) rotateX(calc(var(--hero-tilt-y, 0) * -1deg)) rotateY(calc(var(--hero-tilt-x, 0) * 1deg));
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.home-hero .hero-showcase:hover {
  border-color: rgba(var(--brand-rgb), 0.32);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.24);
}

.home-hero .hero-spotlight {
  position: absolute;
  inset: auto;
  width: 320px;
  height: 320px;
  left: calc(var(--hero-spotlight-x) - 160px);
  top: calc(var(--hero-spotlight-y) - 160px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--brand-rgb), 0.18), rgba(var(--brand-rgb), 0));
  filter: blur(12px);
  opacity: 0.95;
  pointer-events: none;
}

.home-hero .hero-profile-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.9fr);
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-radius: 24px;
  background: rgba(10, 11, 14, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
}

.home-hero .hero-profile-label {
  display: inline-block;
  margin-bottom: 0.65rem;
  color: #ffd8bf;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-hero .hero-profile-copy h2 {
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1.05;
  margin-bottom: 0.75rem;
}

.home-hero .hero-profile-copy p {
  margin: 0;
  color: #cbd5e1;
  font-size: 0.98rem;
}

.home-hero .hero-image-card {
  min-height: 100%;
}

.home-hero .hero-image-card .hero-glow {
  inset: 8% 0 0;
}

.home-hero .hero-paths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  position: relative;
  z-index: 1;
}

.home-hero .hero-path-card {
  min-height: 140px;
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: inherit;
  text-decoration: none;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.home-hero .hero-path-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--brand-rgb), 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.home-hero .hero-path-title {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
}

.home-hero .hero-path-copy {
  display: block;
  color: #cbd5e1;
  font-size: 0.94rem;
  line-height: 1.5;
}

.home-hero .hero-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
  opacity: 0.6;
}

.home-hero .hero-orbit-1 {
  width: 260px;
  height: 260px;
  top: -120px;
  right: 18%;
  animation: hero-spin 18s linear infinite;
}

.home-hero .hero-orbit-2 {
  width: 160px;
  height: 160px;
  bottom: -60px;
  left: 6%;
  animation: hero-spin-reverse 14s linear infinite;
}

.home-hero .hero-shell > .hero-inner > .hero-image-wrapper:first-child,
.home-hero .hero-content > h1:not(.hero-title),
.home-hero .hero-content > p:not(.hero-description),
.home-hero .hero-content > .button-row:not(.hero-actions) {
  display: none;
}

.button-row {
  margin-top: var(--space-lg);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

@keyframes hero-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes hero-spin-reverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

@media (max-width: 1080px) {
  .hero-content h1 {
    max-width: 12ch;
  }

  .hero-profile-card {
    grid-template-columns: 1fr;
  }

  .hero-image-card {
    max-width: 360px;
    margin: 0 auto;
  }

  .hero-paths {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .hero {
    padding: var(--space-lg) var(--space-md) var(--space-2xl);
  }

  .hero-shell {
    padding: 1.1rem;
    border-radius: 26px;
  }

  .hero-inner {
    flex-direction: column;
    gap: 1.2rem;
  }

  .hero-content,
  .hero-showcase {
    width: 100%;
  }

  .hero-content {
    text-align: left;
  }

  .hero-content h1 {
    font-size: clamp(2.2rem, 11vw, 3.1rem);
    max-width: 12ch;
    margin-bottom: 0.85rem;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 0;
  }

  .hero-kicker {
    font-size: 0.74rem;
    letter-spacing: 0.06em;
  }

  .hero-proof-bar {
    gap: 0.6rem;
  }

  .hero-proof-pill {
    font-size: 0.84rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    padding: 1rem;
    transform: none;
  }

  .hero-profile-card {
    grid-template-columns: 1fr;
    padding: 0.9rem;
  }

  .hero-profile-copy h2 {
    font-size: 1.45rem;
  }

  .hero-paths {
    grid-template-columns: 1fr;
  }

  .hero-path-card {
    min-height: auto;
  }

  .hero-orbit {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-orbit,
  .hero-showcase,
  .hero-path-card,
  .hero-shell::before {
    animation: none !important;
    transition: none !important;
  }
}

/* Buttons */
.primary-button {
  display: inline-block;
  box-sizing: border-box;
  padding: 0.875rem var(--space-lg);
  border: 1px solid var(--brand);
  background: rgba(var(--brand-rgb), 0.18);
  color: var(--white);
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  transition: all 0.25s ease;
}

.primary-button:hover {
  background: var(--brand-dark);
  box-shadow: 0 6px 18px rgba(var(--brand-rgb), 0.24);
  transform: translateY(-1px);
}

/* Help Section */
.help {
  padding: var(--space-3xl) var(--space-lg);
}

.help-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.help-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.help-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.help-card {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 1rem;
  border: 1px solid #333;
  background: #15161a;
  border-radius: 12px;
  padding: 1.25rem;
  overflow: hidden;
}

.help-card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.help-card-content .primary-button,
.help-card-content .secondary-button {
  align-self: flex-start;
  max-width: 100%;
}

.help-card h3 {
  font-size: 1.5rem;
}

.help-card p {
  font-size: 1rem;
  line-height: 1.6;
}

.help-card-image-wrapper {
  justify-self: end;
  width: 100%;
}

.help-card-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
}

@media (max-width: 900px) {
  .help-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .help-card-content {
    align-items: center;
  }
  .help-card-content .primary-button,
  .help-card-content .secondary-button {
    align-self: center;
  }
  .help-card-image-wrapper {
    justify-self: center;
    max-width: 220px;
    width: 100%;
  }
}

/* About Section */
.about {
  padding: var(--space-xl) var(--space-md);
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  align-items: center;
}

.about-content {
  flex: 1 1 300px;
}

.about-collage {
  flex: 1 1 300px;
  position: relative;
  height: 420px;
}

.about-photo {
  position: absolute;
  width: 46%;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.about-photo-1 {
  top: 2%;
  left: 0;
}

.about-photo-2 {
  top: 2%;
  right: 0;
}

.videos {
  padding: var(--space-xl) var(--space-md);
  background: transparent;
}

.videos-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.videos-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1rem;
}

.videos-eyebrow {
  color: var(--accent-orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.videos-controls {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.videos-channel-link,
.vid-btn {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.videos-channel-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
}

.videos-channel-link:hover,
.videos-channel-link:focus {
  background: rgba(248, 95, 0, 0.14);
  border-color: rgba(248, 95, 0, 0.45);
  color: var(--white);
  transform: none;
}

.vid-btn {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  cursor: pointer;
}

.vid-btn:hover,
.vid-btn:focus {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  transform: none;
}

.vid-btn:disabled {
  opacity: 0.38;
  cursor: not-allowed;
  transform: none;
}

.videos-status {
  min-height: 1.25rem;
  margin: -0.2rem 0 1rem;
  color: var(--gray);
  font-size: 0.9rem;
}

.videos-scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 2.2rem) / 3);
  gap: 1.1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  padding: 0.25rem 0 0.9rem;
  /* hide scrollbar UI but keep scrolling */
  -ms-overflow-style: none; /* IE/Edge */
  scrollbar-width: none;    /* Firefox */
}

.videos-scroller::-webkit-scrollbar { /* Chrome/Safari */
  display: none;
}

.video-card {
  position: relative;
  background: #141518;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.65rem;
  scroll-snap-align: start;
  transform-style: preserve-3d;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
  overflow: hidden;
}

@media (max-width: 980px) {
  .videos-scroller {
    grid-auto-columns: calc((100% - 1.1rem) / 2);
  }
}

.video-card:hover,
.video-card:focus-within {
  border-color: rgba(248, 95, 0, 0.44);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
  transform: translateY(-4px);
}

.video-thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  background: #23262b center / cover no-repeat;
  overflow: hidden;
  isolation: isolate;
}

.video-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.62));
  opacity: 0.85;
  transition: opacity 200ms ease;
}

.video-thumb::after {
  content: "\f04b";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(248, 95, 0, 0.92);
  color: var(--white);
  font-family: "Font Awesome 6 Free";
  font-size: 1rem;
  font-weight: 900;
  transform: translate(-50%, -50%) scale(0.92);
  transition: transform 200ms ease, background 200ms ease;
}

.video-card:hover .video-thumb::before,
.video-card:focus-within .video-thumb::before {
  opacity: 0.45;
}

.video-card:hover .video-thumb::after,
.video-card:focus-within .video-thumb::after,
.video-card:active .video-thumb::after,
.video-thumb:hover::after,
.video-thumb:focus::after,
.video-thumb:active::after {
  background: rgba(248, 95, 0, 0.92);
  color: var(--white);
  transform: translate(-50%, -50%) scale(1);
}

.video-title {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.35;
  margin: 0.72rem 0 0.4rem;
  position: relative;
}

.video-meta {
  color: var(--gray);
  font-size: 0.78rem;
  font-weight: 700;
  position: relative;
}

.video-card-skeleton {
  min-height: 250px;
}

.video-card-skeleton::after {
  content: "";
  display: block;
  aspect-ratio: 16/9;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(255,255,255,0.05), rgba(255,255,255,0.12), rgba(255,255,255,0.05));
  background-size: 220% 100%;
  animation: video-skeleton 1.2s ease-in-out infinite;
}

@media (max-width: 720px) {
  .videos-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .videos-controls {
    width: 100%;
  }

  .videos-channel-link {
    flex: 1;
    justify-content: center;
  }

  .videos-scroller {
    grid-auto-columns: 100%;
  }
}

@keyframes video-skeleton {
  0% { background-position: 120% 0; }
  100% { background-position: -120% 0; }
}

@media (prefers-reduced-motion: reduce) {
  .video-card,
  .video-thumb::before,
  .video-thumb::after,
  .videos-channel-link,
  .vid-btn {
    transition: none;
  }

  .video-card:hover,
  .video-card:focus-within {
    transform: none;
  }

  .video-card-skeleton::after {
    animation: none;
  }
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--footer-padding-y) 1.5rem;
  background: #0f1012;
  margin-top: auto; /* Push footer to bottom when content is short */
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-logo {
  display: inline-block;
  font-weight: 1000;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.01em;
  font-size: 0.95rem;
}

.footer-logo:hover,
.footer-logo:focus {
  text-decoration: none;
}

.footer-menu {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-left: auto;
}

.footer-link {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.88rem;
}

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

.footer-disclaimer {
  max-width: 1100px;
  margin: 1.5rem auto 0;
  color: var(--text-muted);
  font-size: 0.74rem;
  line-height: 1.6;
}

/* Footer: stack on small screens */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
  }
  .footer-menu {
    justify-content: center;
    margin-left: 0; /* center via parent align-items */
  }
  .footer-disclaimer {
    text-align: center;
  }
}

/* Audience Callout */
.audience-callout {
  width: 100%;
  background: rgba(var(--brand-rgb), 0.18);
  border: 2px solid rgba(var(--brand-rgb), 0.6);
  border-radius: 12px;
  padding: 0.6rem 1rem;
  margin: 0 auto 1.5rem;
  max-width: 600px; /* smaller than navbar max-width */
  text-align: center;
  position: relative;
  box-shadow: 
    0 0 15px rgba(var(--brand-rgb), 0.25),
    0 0 30px rgba(var(--brand-rgb), 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.audience-callout::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(45deg, 
    rgba(var(--brand-rgb), 0.6), 
    rgba(var(--brand-rgb), 0.3), 
    rgba(var(--brand-rgb), 0.6));
  border-radius: 14px;
  z-index: -1;
  filter: blur(6px);
  opacity: 0.5;
}

.audience-callout h2 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.2px;
}

/* Mobile adjustments for audience callout */
@media (max-width: 768px) {
  .audience-callout h2 {
    font-size: 0.9rem;
    letter-spacing: 0.1px;
    white-space: normal; /* Allow text to wrap on mobile */
    line-height: 1.4;
  }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  /* Ensure audience callout is visible */
  .audience-callout {
    padding: 0.6rem 1rem;
    margin: 0 auto 1.25rem;
    max-width: 95%;
    display: block !important;
    visibility: visible !important;
  }
  
  .audience-callout h2 {
    font-size: 0.9rem;
    letter-spacing: 0.1px;
    white-space: normal;
    line-height: 1.4;
    display: block !important;
    visibility: visible !important;
  }
  
  /* Button row mobile adjustments */
  .button-row {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .primary-button,
  .secondary-button {
    display: block;
    box-sizing: border-box;
    width: 100%;
    max-width: 300px;
    text-align: center;
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
    margin: 0 auto;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .primary-button,
  .hero-actions .secondary-button {
    max-width: none;
    margin: 0;
  }
  
  /* Step CTA mobile adjustments */
  .step-cta {
    margin: 1.5rem 0;
    text-align: center;
    width: 100%;
  }
  
  .step-callout {
    display: inline-block !important;
    visibility: visible !important;
  }
  
  /* Typeform intro mobile adjustments */
  .typeform-intro {
    padding: 2rem 1rem;
  }
  
  .typeform-intro h1 {
    font-size: 1.6rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }
  
  .typeform-intro p {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .typeform-section {
    padding: 1rem;
  }
  
  .typeform-section iframe {
    height: 500px;
  }
  
  .step-cta-1 {
    margin: 0.75rem 0 1.25rem;
    padding: 0 1rem;
  }
  
  .step-cta-2 {
    margin: 1.5rem 0;
    padding: 0 1rem;
  }
  
  /* Company logos mobile adjustments */
  .company-logos-grid {
    padding: var(--space-lg) 0;
  }

  .logo-row {
    gap: var(--space-xl);
    margin-bottom: var(--space-lg);
  }
  
  .company-logo {
    height: 65px;
    width: 130px;
  }
  
  .company-logo img {
    max-height: 55px;
    max-width: 130px;
  }
  
  .logo-placeholder {
    font-size: 1.2rem;
  }
  
  /* What you get section mobile adjustments */
  .what-you-get {
    padding: var(--space-2xl) var(--space-md);
  }
  
  .what-header h1 {
    font-size: 1.4rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }
  
  .what-header p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .what-card {
    padding: 1.5rem 1rem;
  }
  
  .what-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }
  
  .what-card p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  /* Help section mobile adjustments */
  .help {
    padding: var(--space-2xl) var(--space-md);
  }
  
.help-header h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}
  
  .help-header p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .help-card {
    padding: 1.25rem;
  }
  
  .help-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
  }
  
  .help-card p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  /* FAQ mobile adjustments */
  .faq {
    padding: var(--space-2xl) var(--space-md);
  }
  
  .faq-header h1 {
    font-size: 1.4rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }
  
  .faq-header p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .faq-question {
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
  }
  
  .faq-answer p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

/* FAQ Section */
.faq {
  padding: var(--space-3xl) var(--space-lg);
  background: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-inner {
  max-width: 900px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  border: 1px solid #333;
  border-radius: 8px;
  overflow: hidden;
  background: #1b1d22;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem 1.25rem;
  border: none;
  background: none;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.25rem;
}

.faq-answer p {
  margin: 1rem 0;
  color: #cbd5e1;
}

.faq-item.active .faq-answer {
  max-height: 300px; /* large enough to fit text */
  padding: 0 1.25rem 1rem;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg); /* turns + into an × */
}

/* Slim Disclaimer Tab */
.disclaimer-tab {
  background: #0f1012; /* darker strip for separation */
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 1.5rem;
  text-align: center;
}

.disclaimer-tab p {
  margin: 0 auto;
  max-width: 900px;
  font-size: 0.75rem;      /* small text */
  line-height: 1.5;
  color: #9aa0aa;          /* lighter-muted gray */
}

/* Step CTA Block */
.step-cta {
  text-align: center;
  margin: 2rem 0 1rem;
}

.step-cta .step-label {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #f85f00; /* your brand orange */
  margin-bottom: 1rem;
}

.secondary-button {
  display: inline-block;
  box-sizing: border-box;
  padding: 0.875rem var(--space-lg);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}

.secondary-button:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

/* Step CTA Container */
.step-cta {
  text-align: center;
  margin: 2rem 0 1rem;
}

/* Callout box for step labels */
.step-callout {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1rem;
  background: rgba(var(--brand-rgb), 0.18);
  border: 2px solid rgba(var(--brand-rgb), 0.6);
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  position: relative;
  box-shadow: 
    0 0 15px rgba(var(--brand-rgb), 0.25),
    0 0 30px rgba(var(--brand-rgb), 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.3px;
}

.step-callout::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(45deg, 
    rgba(var(--brand-rgb), 0.6), 
    rgba(var(--brand-rgb), 0.3), 
    rgba(var(--brand-rgb), 0.6));
  border-radius: 14px;
  z-index: -1;
  filter: blur(6px);
  opacity: 0.5;
}

/* Already-have secondary button style for Learn How It Works */
.secondary-callout {
  display: inline-block;
  box-sizing: border-box;
  padding: 0.85rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}

.secondary-button:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

/* Compact Typeform section */
.typeform-section {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
  background: var(--bg-dark);
}

.typeform-section iframe {
  display: block;
  width: 100%;
  height: 550px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Typeform intro section */
.typeform-intro {
  padding: 2.5rem 1.5rem;
  text-align: center;
  background: var(--bg-dark);
}

.typeform-intro-inner {
  max-width: 800px;
  margin: 0 auto;
}

.typeform-intro h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}

.typeform-intro p {
  font-size: 1.1rem;
  color: #cbd5e1;
  line-height: 1.6;
}

/* Step 1 CTA styling */
.step-cta-1 {
  text-align: center;
  margin: 1rem 0 1.5rem;
  padding: 0 1.5rem;
}

/* Step 2 CTA styling */
.step-cta-2 {
  text-align: center;
  margin: 2rem 0;
  padding: 0 1.5rem;
}

/* Company Logos Grid */
.company-logos-grid {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.logo-row:last-child {
  margin-bottom: 0;
}

.company-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 160px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.company-logo:hover {
  opacity: 1;
}

.company-logo img {
  max-height: 70px;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.logo-placeholder {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 1px;
}

/* Typeform placeholder styling */
.typeform-placeholder {
  width: 100%;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #141518;
  border: 2px dashed rgba(var(--brand-rgb), 0.3);
  border-radius: 12px;
  margin: 2rem 0;
}

.typeform-loading {
  text-align: center;
  padding: 2rem;
}

.typeform-loading h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.typeform-loading p {
  color: #cbd5e1;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

/* Mobile adjustments for typeform placeholder */
@media (max-width: 768px) {
  .typeform-placeholder {
    height: 60vh;
    margin: 1rem 0;
  }
  
  .typeform-loading {
    padding: 1.5rem;
  }
  
  .typeform-loading h3 {
    font-size: 1.25rem;
    line-height: 1.3;
  }
  
  .typeform-loading p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

/* Additional mobile optimizations */
@media (max-width: 480px) {
  /* Extra small screens */
  .hero-content h1 {
    font-size: 1.6rem;
    display: block !important;
    visibility: visible !important;
  }
  
  .hero-content p {
    font-size: 0.95rem;
    display: block !important;
    visibility: visible !important;
  }
  
  .audience-callout {
    display: block !important;
    visibility: visible !important;
  }
  
  .audience-callout h2 {
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
    display: block !important;
    visibility: visible !important;
  }
  
  .primary-button,
  .secondary-button {
    display: block;
    box-sizing: border-box;
    width: 100%;
    max-width: 280px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    margin: 0 auto;
  }
  
  .what-header h1,
  .help-header h1,
  .faq-header h1 {
    font-size: 1.4rem;
  }
  
  .typeform-intro h1 {
    font-size: 1.4rem;
  }
  
  .typeform-intro p {
    font-size: 0.95rem;
  }
  
  .typeform-section {
    padding: 0.75rem;
  }
  
  .typeform-section iframe {
    height: 480px;
  }
  
  .step-cta-1 {
    margin: 0.5rem 0 1rem;
    padding: 0 0.75rem;
  }
  
  .step-cta-2 {
    margin: 1.25rem 0;
    padding: 0 0.75rem;
  }
  
  /* Company logos small mobile adjustments */
  .company-logos-grid {
    padding: 1rem 0;
  }
  
  .logo-row {
    gap: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .company-logo {
    height: 55px;
    width: 110px;
  }
  
  .company-logo img {
    max-height: 45px;
    max-width: 110px;
  }
  
  .logo-placeholder {
    font-size: 1rem;
  }
}

/* What You'll Get Section */
.what-you-get {
  padding: var(--space-3xl) var(--space-lg);
  background: var(--bg-dark);
}

.what-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.what-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.what-header h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.help-header h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}

.what-header p {
  color: #cbd5e1;
  max-width: 700px;
  margin: 0 auto;
}

.what-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

/* Responsive layout for What You'll Get section */
@media (max-width: 900px) {
  .what-cards {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

.what-card {
  background: #1b1d22;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}


.what-image-wrapper {
  width: 112px;
  height: 112px;
  margin: 0 auto 1rem;
}

.what-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.what-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.what-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #cbd5e1;
}

/* VSL Hero Section - Coaching Page Specific */
.hero-vsl {
  padding: 3rem 1.5rem 2rem;
  text-align: center;
}

.hero-vsl-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-vsl-content {
  flex: none;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-vsl-content h1 {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  line-height: 1.1;
  text-align: center;
  width: 100%;
}

.hero-vsl-content p {
  font-size: 1.2rem;
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* VSL Video Container */
.vsl-container {
  width: 100%;
  max-width: 900px;
  margin: 2rem auto 0;
  padding: 0 1.5rem;
}

.vsl-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(248, 95, 0, 0.2);
}

.vsl-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.vsl-wrapper--placeholder {
  height: auto;
  min-height: 380px;
  padding-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top, rgba(var(--brand-rgb), 0.16), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    #15161a;
}

.vsl-placeholder {
  max-width: 640px;
  padding: 2.5rem 2rem;
  text-align: center;
}

.vsl-placeholder-eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--brand-rgb), 0.4);
  background: rgba(var(--brand-rgb), 0.14);
  color: #ffd8bf;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vsl-placeholder-title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 0.85rem;
}

.vsl-placeholder-copy {
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.vsl-placeholder-actions {
  justify-content: center;
}

.vsl-helper-text {
  margin-top: 1rem;
  color: #9aa0aa;
  font-size: 0.85rem;
}

#typeform-section,
#what-you-get {
  scroll-margin-top: calc(var(--navbar-height) + 1.5rem);
}

/* VSL Step CTA adjustments */
.hero-vsl .step-cta {
  margin: 1rem 0 0;
}

.hero-vsl .button-row {
  justify-content: center;
  gap: 1.5rem;
}

.hero-vsl .primary-button,
.hero-vsl .secondary-button {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  min-width: 200px;
}

/* Mobile adjustments for VSL */
@media (max-width: 768px) {
  .hero-vsl {
    padding: 2.5rem 1rem 1.5rem;
  }
  
  .hero-vsl-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .hero-vsl-content p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
  }
  
  .vsl-container {
    margin: 1.5rem auto 0;
    padding: 0 1rem;
  }
  
  .vsl-wrapper {
    border-radius: 12px;
  }

  .vsl-wrapper--placeholder {
    min-height: 320px;
  }

  .vsl-placeholder {
    padding: 2rem 1.25rem;
  }

  .hero-vsl .step-cta {
    margin: 0.75rem 0 0;
  }
  
  .hero-vsl .button-row {
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .hero-vsl .primary-button,
  .hero-vsl .secondary-button {
    box-sizing: border-box;
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    min-width: 180px;
    max-width: 280px;
    flex: 1;
  }
}

@media (max-width: 480px) {
  .hero-vsl-content h1 {
    font-size: 1.8rem;
  }
  
  .hero-vsl-content p {
    font-size: 1rem;
  }
  
  .vsl-container {
    margin: 1.25rem auto 0;
    padding: 0 0.5rem;
  }

  .vsl-wrapper--placeholder {
    min-height: 280px;
  }

  .vsl-placeholder {
    padding: 1.5rem 1rem;
  }

  .vsl-placeholder-copy {
    font-size: 0.95rem;
  }

  .hero-vsl .step-cta {
    margin: 0.5rem 0 0;
  }
  
  .hero-vsl .button-row {
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
  }
  
  .hero-vsl .primary-button,
  .hero-vsl .secondary-button {
    box-sizing: border-box;
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
    min-width: 160px;
    max-width: 240px;
    flex: 1;
  }
}

/* Hero CTA Section (coaching page final CTA) */
.hero-cta-section {
  text-align: center;
}

.hero-cta-inner {
  flex-direction: column;
  align-items: center;
}

/* ===================== Blog Section ===================== */

.blog-hero {
  padding: var(--space-3xl) var(--space-md) var(--space-2xl);
  text-align: center;
}

.blog-hero-inner {
  max-width: 700px;
  margin: 0 auto;
}

.blog-hero-title {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.blog-hero-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.blog-subscribe-btn i {
  margin-right: var(--space-xs);
}

/* Blog posts section */
.blog-posts-section {
  padding: 0 var(--space-md) var(--space-3xl);
}

.blog-posts-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Blog grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-lg);
}

/* Blog card */
.blog-card {
  background: #1e1f23;
  border: 1px solid #2a2b2f;
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
  border-color: var(--brand);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.blog-card-link-wrapper {
  display: block;
  text-decoration: none;
  color: inherit;
}

.blog-card-image-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, #25262a 0%, #1a1b1e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-image-wrapper.blog-card-no-image {
  background: linear-gradient(135deg, rgba(var(--brand-rgb), 0.12) 0%, #1a1b1e 100%);
}

.blog-card-image-wrapper.blog-card-no-image i {
  font-size: 2.5rem;
  color: var(--text-muted);
  opacity: 0.5;
}

.blog-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card-content {
  padding: var(--space-lg);
}

.blog-card-date {
  display: block;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-xs);
}

.blog-card-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-sm);
  line-height: 1.35;
}

.blog-card-excerpt {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.blog-card-read {
  color: var(--brand);
  font-weight: 600;
  font-size: 0.9rem;
  transition: opacity 0.2s ease;
}

.blog-card:hover .blog-card-read {
  opacity: 0.85;
}

/* Loading skeletons */
.blog-loading {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-lg);
}

.blog-skeleton-card {
  background: #1e1f23;
  border: 1px solid #2a2b2f;
  border-radius: 14px;
  height: 340px;
  position: relative;
  overflow: hidden;
}

.blog-skeleton-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.04) 50%,
    transparent 100%
  );
  animation: blog-shimmer 1.5s infinite;
}

@keyframes blog-shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Error & empty states */
.blog-error,
.blog-empty {
  text-align: center;
  padding: var(--space-3xl) var(--space-md);
}

.blog-error i,
.blog-empty i {
  font-size: 2.5rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  display: block;
}

.blog-error h3,
.blog-empty h3 {
  margin-bottom: var(--space-sm);
}

.blog-error p,
.blog-empty p {
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

/* Legal Pages */
.legal-hero {
  padding: var(--space-3xl) var(--space-md) var(--space-xl);
}

.legal-hero-inner,
.legal-content-inner {
  max-width: 900px;
  margin: 0 auto;
}

.legal-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--brand-rgb), 0.4);
  background: rgba(var(--brand-rgb), 0.12);
  color: #ffd8bf;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 0.85rem;
}

.legal-subtitle {
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 52rem;
}

.legal-content {
  padding: 0 var(--space-md) var(--space-3xl);
}

.legal-card {
  padding: clamp(1.4rem, 3vw, 2rem);
  background: #15161a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.legal-card > *:last-child {
  margin-bottom: 0;
}

.legal-card h2 {
  margin-top: 1.9rem;
  margin-bottom: 0.7rem;
  font-size: 1.3rem;
}

.legal-card h2:first-of-type {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  color: #cbd5e1;
}

.legal-card ul {
  margin: 0 0 1rem 1.25rem;
  padding: 0;
}

.legal-card li + li {
  margin-top: 0.55rem;
}

.legal-meta {
  color: #9aa0aa;
  font-size: 0.9rem;
}

/* Blog responsive */
@media (max-width: 600px) {
  .blog-grid,
  .blog-loading {
    grid-template-columns: 1fr;
  }

  .blog-hero {
    padding: var(--space-2xl) var(--space-md) var(--space-lg);
  }

  .blog-hero-title {
    font-size: 2rem;
  }
}
