/*
 * Formless Flow — Styles
 * All design tokens come from design-system.css (OKLCH color space).
 * This file: layout, components, responsive behavior.
 */

/* ============================================================
   Reset & Base
   ============================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--foreground);
  background: var(--color-neutral-0);
  line-height: var(--leading-body-m);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

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

/* ============================================================
   Accessibility
   ============================================================ */

/* Skip link — hidden until focused */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  background: var(--primary);
  color: var(--primary-foreground);
  padding: var(--space-2xs) var(--space-md);
  border-radius: var(--radius-sm);
  font-size: var(--text-body-m);
  font-weight: 500;
  text-decoration: none;
  z-index: 200;
  transition: top 0.2s;
}

.skip-link:focus {
  top: var(--space-2xs);
}

/* Screen-reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus visible — custom ring for keyboard users */
:focus-visible {
  outline: var(--ring-width) solid var(--ring);
  outline-offset: var(--ring-offset);
}

/* Remove default focus for mouse users */
:focus:not(:focus-visible) {
  outline: none;
}

/* ============================================================
   Container
   ============================================================ */

.container {
  max-width: var(--container-default);
  margin: 0 auto;
}

.container-narrow {
  max-width: var(--container-prose);
  margin: 0 auto;
}

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

.section {
  padding: var(--space-3xl) var(--space-xl);
}

/* Section backgrounds — semantic naming reflects intent */

.section-surface {
  background: var(--color-surface-50);
  color: var(--foreground);
}

.section-brand {
  background: var(--primary);
  color: var(--primary-foreground);
}

.section-brand-muted {
  background: var(--color-brand-200);
  color: var(--color-brand-900);
}

.section-brand-dark {
  background: var(--color-brand-800);
  color: var(--color-neutral-0);
}

.section-surface-warm {
  background: var(--color-warmth-50);
  color: var(--foreground);
}

.section-healing {
  background: var(--color-healing-50);
  color: var(--foreground);
}

/* Section typography helpers */

.section h2 {
  font-size: var(--text-h2);
  font-weight: 600;
  line-height: var(--leading-h2);
  letter-spacing: var(--tracking-h2);
  margin-bottom: var(--space-md);
}

.section h2:only-child {
  margin-bottom: var(--space-xl);
}

.section-subtitle {
  font-size: var(--text-body-l);
  color: var(--muted-foreground);
  margin-bottom: var(--space-xl);
}

/* Dark-section overrides */
.section-brand h2,
.section-brand-dark h2,
.section-brand-muted h2 {
  color: inherit;
}

.section-brand .section-subtitle,
.section-brand-dark .section-subtitle {
  color: var(--color-brand-100);
}

/* ============================================================
   NAV
   ============================================================ */

nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: oklch(1 0 0 / 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 100;
  padding: var(--space-sm) var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-muted);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-2xs);
  text-decoration: none;
  color: var(--primary);
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-logo span {
  font-family: var(--font-heading);
  font-size: var(--text-h5);
  font-weight: 400;
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--primary);
  font-size: var(--text-body-s);
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 0.7;
}

.nav-links .btn-nav {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
}

.nav-links .btn-nav:hover {
  opacity: 0.9;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2xs);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  margin: 5px 0;
  transition: 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--color-neutral-0);
  padding: var(--space-xl);
  text-align: center;
}

.hero-content {
  max-width: var(--container-prose);
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: var(--text-display);
  font-weight: 500;
  line-height: var(--leading-display);
  letter-spacing: var(--tracking-display);
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: var(--text-body-l);
  font-weight: 400;
  line-height: var(--leading-body-l);
  color: var(--muted-foreground);
  margin-bottom: var(--space-xl);
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero logo (kept for backwards compatibility if used elsewhere) */
.hero-logo {
  max-width: 240px;
  height: auto;
  margin-bottom: var(--space-2xs);
}

/* ============================================================
   Buttons
   ============================================================ */

.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: var(--primary);
  color: var(--primary-foreground);
  text-decoration: none;
  border-radius: 50px;
  font-size: var(--text-body-m);
  font-weight: 500;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Light variant — for dark backgrounds where primary won't contrast */
.btn-primary-light {
  background: var(--color-neutral-0);
  color: var(--primary);
}

.btn-primary-light:hover {
  background: var(--color-surface-25);
}

/* Ghost button — outline on light backgrounds */
.btn-ghost {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: transparent;
  color: var(--primary);
  text-decoration: none;
  border-radius: 50px;
  font-size: var(--text-body-m);
  font-weight: 500;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  border: 1px solid var(--color-brand-200);
  transition: background 0.2s, border-color 0.2s;
}

.btn-ghost:hover {
  background: var(--color-brand-50);
  border-color: var(--primary);
}

/* Legacy button classes — preserved for any pages still using them */
.btn-cta {
  display: inline-block;
  padding: 1rem 3rem;
  background: var(--foreground);
  color: var(--color-neutral-0);
  text-decoration: none;
  border-radius: 50px;
  font-size: var(--text-body-l);
  font-weight: 400;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.skool-btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: var(--color-neutral-0);
  color: var(--foreground);
  text-decoration: none;
  border-radius: 50px;
  font-size: var(--text-body-m);
  font-weight: 500;
  font-family: var(--font-body);
  transition: transform 0.2s, box-shadow 0.2s;
}

.skool-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   This May Feel Familiar
   ============================================================ */

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

.familiar-list li {
  font-size: var(--text-body-l);
  font-weight: 400;
  line-height: var(--leading-body-l);
  padding: var(--space-md);
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border-muted);
  transition: border-color 0.2s;
}

.familiar-list li:hover {
  border-color: var(--border);
}

/* ============================================================
   The Path So Far
   ============================================================ */

.path-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.path-list li {
  font-size: var(--text-body-l);
  font-weight: 400;
  line-height: var(--leading-body-l);
  padding-left: var(--space-lg);
  position: relative;
}

.path-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  opacity: 0.6;
}

.path-tagline {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-weight: 600;
  line-height: var(--leading-h3);
  margin-bottom: var(--space-md);
  opacity: 0.9;
}

.path-insight {
  font-size: var(--text-body-l);
  font-weight: 400;
  font-style: italic;
  opacity: 0.85;
}

/* ============================================================
   The Approach
   ============================================================ */

.approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.approach-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--border-muted);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.approach-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.approach-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--primary-subtle);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.approach-card h3 {
  font-family: var(--font-heading);
  font-size: var(--text-h5);
  font-weight: 600;
  line-height: var(--leading-h5);
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.approach-card p {
  font-size: var(--text-body-m);
  line-height: var(--leading-body-l);
  color: var(--muted-foreground);
}

.approach-bottom {
  text-align: center;
}

.approach-summary {
  font-family: var(--font-heading);
  font-size: var(--text-h4);
  font-weight: 500;
  line-height: var(--leading-h4);
  color: var(--foreground);
  margin-bottom: var(--space-lg);
  font-style: italic;
}

/* ============================================================
   Testimonials Carousel
   ============================================================ */

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

.testimonials-section h2 {
  font-size: var(--text-h2);
  font-weight: 600;
  margin-bottom: var(--space-2xl);
}

.carousel {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  padding: var(--space-lg);
}

.testimonial-card-inner {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  color: var(--foreground);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary-subtle);
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  color: var(--primary);
}

.testimonial-text {
  font-size: var(--text-body-m);
  line-height: var(--leading-body-m);
  color: var(--muted-foreground);
  font-style: italic;
}

.testimonial-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-body-l);
  margin-top: var(--space-md);
  color: var(--primary);
}

.testimonial-context {
  font-size: var(--text-caption);
  color: var(--muted-foreground);
  margin-top: var(--space-3xs);
  font-style: italic;
}

/* Carousel controls — default for light backgrounds */
.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.carousel-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2xs);
  color: var(--foreground);
  font-size: var(--text-h3);
  transition: opacity 0.2s;
  line-height: 1;
}

.carousel-btn:hover {
  opacity: 0.6;
}

.carousel-dots {
  display: flex;
  gap: var(--space-2xs);
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-surface-300);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.carousel-dot.active {
  background: var(--primary);
}

/* Override carousel controls for dark-section contexts */
.section-brand .carousel-btn,
.section-brand-dark .carousel-btn {
  color: var(--color-neutral-0);
}

.section-brand .carousel-dot,
.section-brand-dark .carousel-dot {
  background: oklch(1 0 0 / 0.4);
}

.section-brand .carousel-dot.active,
.section-brand-dark .carousel-dot.active {
  background: var(--color-neutral-0);
}

/* ============================================================
   Video Stories
   ============================================================ */

.video-stories {
  text-align: center;
  overflow: hidden;
}

.video-stories h2 {
  font-size: var(--text-h2);
  font-weight: 600;
  margin-bottom: var(--space-2xl);
}

.video-scroll-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.video-scroll {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: var(--space-2xs) var(--space-md) var(--space-md);
  scrollbar-width: none;
}

.video-scroll::-webkit-scrollbar {
  display: none;
}

.video-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  background: var(--card);
  box-shadow: var(--shadow-sm);
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.video-card img {
  width: 100%;
  height: auto;
  display: block;
}

.video-card .play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: oklch(0 0 0 / 0.15);
  opacity: 0;
  transition: opacity 0.2s;
}

.video-card:hover .play-overlay {
  opacity: 1;
}

.play-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: oklch(1 0 0 / 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.play-circle::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 18px solid var(--primary);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 4px;
}

/* Scroll arrows — adapted for light teal background (.section-brand-muted) */

.scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-neutral-0);
  border: none;
  cursor: pointer;
  font-size: 1.3rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  z-index: 2;
  transition: background 0.2s;
}

.scroll-arrow:hover {
  background: var(--color-surface-25);
}

.scroll-arrow.left  { left: 0; }
.scroll-arrow.right { right: 0; }

/* ============================================================
   Video Modal
   ============================================================ */

.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: oklch(0 0 0 / 0.85);
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}

.video-modal.active {
  display: flex;
}

.video-modal-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
}

.video-modal-content video {
  width: 100%;
  max-height: 80vh;
  display: block;
}

.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: var(--color-neutral-0);
  font-size: 2rem;
  cursor: pointer;
  padding: var(--space-2xs);
  line-height: 1;
}

/* ============================================================
   CTA Section
   ============================================================ */

.cta-section {
  text-align: center;
  padding: 7rem var(--space-xl);
}

.cta-section h2 {
  font-size: var(--text-h2);
  font-weight: 600;
  margin-bottom: var(--space-md);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-subtext {
  font-size: var(--text-body-l);
  margin-bottom: var(--space-xl);
  opacity: 0.85;
}

/* ============================================================
   Social Proof / Alignable Badge
   ============================================================ */

.social-proof {
  text-align: center;
}

.alignable-badge-placeholder {
  width: 280px;
  height: 180px;
  background: var(--card);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  padding: var(--space-md);
  color: var(--primary);
  box-shadow: var(--shadow-xs);
}

.alignable-badge-placeholder .badge-stars {
  font-size: var(--text-h4);
  margin-bottom: var(--space-2xs);
  color: var(--color-warmth-500);
}

.alignable-badge-placeholder .badge-title {
  font-size: var(--text-body-l);
  font-weight: 700;
  color: #5B2D8E;
}

.alignable-badge-placeholder .badge-sub {
  font-size: var(--text-caption);
  color: var(--muted-foreground);
  margin-top: var(--space-3xs);
}

.social-proof h2 {
  font-size: var(--text-h3);
  font-weight: 500;
  margin-bottom: var(--space-2xl);
}

/* ============================================================
   Recommendations (Social Proof carousel)
   ============================================================ */

.recommendations {
  max-width: 700px;
  margin: 0 auto;
}

.rec-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  color: var(--foreground);
  display: none;
  box-shadow: var(--shadow-xs);
}

.rec-card.active {
  display: block;
}

.rec-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.rec-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--text-h5);
  color: var(--primary);
  flex-shrink: 0;
}

.rec-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-body-l);
  color: var(--primary);
}

.rec-title {
  font-size: var(--text-caption);
  color: var(--muted-foreground);
}

.rec-link {
  font-size: var(--text-caption);
  color: var(--color-brand-400);
  text-decoration: none;
}

.rec-link:hover {
  text-decoration: underline;
}

.rec-text {
  font-size: var(--text-body-m);
  line-height: var(--leading-body-l);
  color: var(--muted-foreground);
  font-style: italic;
}

.rec-controls {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.rec-btn {
  background: var(--color-surface-100);
  border: 1px solid var(--border-muted);
  color: var(--foreground);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.rec-btn:hover {
  background: var(--color-surface-200);
  border-color: var(--border);
}

/* Override rec controls for dark-section contexts */
.section-brand .rec-btn,
.section-brand-dark .rec-btn {
  background: oklch(1 0 0 / 0.15);
  border-color: oklch(1 0 0 / 0.25);
  color: var(--color-neutral-0);
}

.section-brand .rec-btn:hover,
.section-brand-dark .rec-btn:hover {
  background: oklch(1 0 0 / 0.25);
}

/* ============================================================
   LinkedIn Section
   ============================================================ */

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

.linkedin-section h2 {
  font-size: var(--text-h2);
  font-weight: 500;
  margin-bottom: var(--space-2xs);
}

.linkedin-followers {
  font-size: var(--text-body-l);
  opacity: 0.8;
  margin-bottom: var(--space-lg);
}

.linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 2rem;
  background: #0A66C2;
  color: var(--color-neutral-0);
  text-decoration: none;
  border-radius: 50px;
  font-size: var(--text-body-m);
  font-weight: 500;
  font-family: var(--font-body);
  transition: transform 0.2s, box-shadow 0.2s;
  margin-bottom: var(--space-2xl);
}

.linkedin-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(10, 102, 194, 0.3);
}

.linkedin-embeds {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
  max-width: 1000px;
  margin: 0 auto;
}

.linkedin-embed-card {
  background: oklch(1 0 0 / 0.08);
  border-radius: var(--radius);
  padding: var(--space-md);
  text-align: left;
  border: 1px solid oklch(1 0 0 / 0.12);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.linkedin-embed-card iframe {
  width: 100%;
  border: none;
  border-radius: var(--radius-sm);
}

.linkedin-embed-placeholder {
  text-align: center;
  opacity: 0.6;
  font-size: var(--text-caption);
  line-height: var(--leading-body-m);
  padding: var(--space-md);
}

.linkedin-embed-placeholder a {
  color: inherit;
  text-decoration: underline;
}

/* ============================================================
   Skool Community
   ============================================================ */

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

.skool-section h2 {
  font-size: var(--text-h2);
  font-weight: 500;
  margin-bottom: var(--space-xs);
}

.skool-count {
  font-family: var(--font-heading);
  font-size: var(--text-display);
  font-weight: 700;
  margin-bottom: var(--space-2xs);
}

.skool-subtitle {
  font-size: var(--text-body-l);
  opacity: 0.8;
  margin-bottom: var(--space-xl);
}

/* ============================================================
   Footer
   ============================================================ */

footer {
  background: var(--color-brand-800);
  color: var(--color-neutral-0);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xs);
  margin-bottom: var(--space-md);
}

.footer-logo img {
  height: 36px;
  width: auto;
}

.footer-logo span {
  font-family: var(--font-heading);
  font-size: var(--text-h5);
  font-weight: 400;
  letter-spacing: 0.03em;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-md);
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--color-neutral-0);
  text-decoration: none;
  font-size: var(--text-caption);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-copy {
  font-size: var(--text-caption);
  opacity: 0.5;
}

/* ============================================================
   Responsive — Tablet & Mobile
   ============================================================ */

@media (max-width: 768px) {

  /* ---- NAV ---- */
  nav {
    padding: 0.6rem 1.25rem;
  }

  .nav-logo img {
    height: 36px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-neutral-0);
    flex-direction: column;
    padding: var(--space-md);
    gap: var(--space-md);
    border-bottom: 1px solid var(--border-muted);
    box-shadow: var(--shadow-md);
  }

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

  .nav-toggle {
    display: block;
  }

  /* ---- HERO ---- */
  .hero-content h1 {
    font-size: var(--text-h1);
  }

  .hero-subtitle {
    font-size: var(--text-body-m);
  }

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

  .hero-logo {
    max-width: 160px;
  }

  /* ---- SECTION ---- */
  .section {
    padding: var(--space-2xl) var(--space-md);
  }

  .familiar-list li {
    font-size: var(--text-body-m);
  }

  .path-list li {
    font-size: var(--text-body-m);
  }

  .path-tagline {
    font-size: var(--text-h4);
  }

  /* ---- APPROACH ---- */
  .approach-grid {
    grid-template-columns: 1fr;
  }

  .approach-card {
    padding: var(--space-md);
  }

  .approach-summary {
    font-size: var(--text-h5);
  }

  /* ---- TESTIMONIALS ---- */
  .testimonials-section h2 {
    font-size: var(--text-h3);
  }

  .testimonial-card-inner {
    padding: var(--space-md);
  }

  /* ---- VIDEO STORIES ---- */
  .video-stories h2,
  .cta-section h2 {
    font-size: var(--text-h3);
  }

  .video-card {
    flex: 0 0 240px;
  }

  .scroll-arrow {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  /* ---- LINKEDIN ---- */
  .linkedin-embeds {
    grid-template-columns: 1fr;
  }

  /* ---- SKOOL ---- */
  .skool-count {
    font-size: var(--text-h1);
  }

  /* ---- FOOTER ---- */
  .footer-links {
    flex-direction: column;
    gap: var(--space-xs);
  }

  /* ---- MODAL ---- */
  .video-modal-content {
    border-radius: var(--radius-sm);
  }
}

/* ============================================================
   Large screens
   ============================================================ */

@media (min-width: 1200px) {
  .container {
    max-width: var(--container-wide);
  }
}
