/* ========================================
   CS CONNECT PAKISTAN // STYLE SYSTEM v2
   ========================================

   TABLE OF CONTENTS
   -----------------
   01. Custom Properties (Design Tokens)
   02. Reset & Base
   03. Background Grid Pattern
   04. Typography
   05. Layout
   06. Preloader
   07. Navigation
   08. Buttons
   09. Cards
   10. Section Headers
   11. Placeholders
   12. Guests Showcase (Animated Ticker)
   13. Hero (Homepage)
   14. Stats Bar
   15. Marquee
   16. Universities Showcase
   17. Features — Editorial Layout
   18. Podcast Spotlight
   19. Testimonials — Vertical Columns
   20. Community CTA
   21. About Page
   22. Podcasts Page
   23. Resources Page
   24. Join Page
   25. Footer
   26. Utilities
   27. Animations
   28. Responsive — 480px
   29. Responsive — 768px (Tablet)
   30. Responsive — 1024px (Desktop)
   31. Mobile Overrides — Phone-First Design
   ======================================== */


/* ----------------------------------------
   01. Custom Properties
   ---------------------------------------- */
:root {
  /* Colors */
  --color-bg: #0a0a0a;
  --color-surface: #111111;
  --color-elevated: #1a1a1a;
  --color-accent: #00C853;
  --color-accent-light: #69F0AE;
  --color-accent-dim: rgba(0, 200, 83, 0.08);
  --color-accent-glow: rgba(0, 200, 83, 0.15);
  --color-text: #F5F5F5;
  --color-text-secondary: #999999;
  --color-border: #1E1E1E;
  --color-border-hover: rgba(0, 200, 83, 0.25);

  /* Typography */
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;

  /* Layout */
  --container-max: 1200px;
  --section-py: clamp(4rem, 10vh, 8rem);
  --section-px: clamp(1.5rem, 5vw, 6rem);

  /* Transitions */
  --ease-out: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-in-out: cubic-bezier(0.85, 0, 0.15, 1);

  /* Border radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* Light theme overrides */
[data-theme="light"] {
  --color-bg: #FAFAFA;
  --color-surface: #FFFFFF;
  --color-elevated: #F0F0F0;
  --color-accent: #00A844;
  --color-accent-light: #00C853;
  --color-accent-dim: rgba(0, 200, 83, 0.06);
  --color-accent-glow: rgba(0, 200, 83, 0.1);
  --color-text: #1A1A1A;
  --color-text-secondary: #666666;
  --color-border: #E5E5E5;
  --color-border-hover: rgba(0, 168, 68, 0.25);
}


/* ----------------------------------------
   02. Reset & Base
   ---------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  transition: background-color 0.3s ease, color 0.3s ease;
}

body.loading {
  overflow: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
}

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input, textarea {
  font-family: inherit;
  border: none;
  background: none;
  color: inherit;
  outline: none;
}


/* ----------------------------------------
   03. Background Grid Pattern
   ---------------------------------------- */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 200, 83, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 200, 83, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 20%, transparent 70%);
}

body > * {
  position: relative;
  z-index: 1;
}


/* ----------------------------------------
   04. Typography
   ---------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

h1 {
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.85rem, 4.5vw, 3rem);
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

h4 {
  font-size: clamp(1.05rem, 1.5vw, 1.15rem);
  font-weight: 600;
}

p {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

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

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


/* ----------------------------------------
   05. Layout
   ---------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-px);
}

.section {
  padding: var(--section-py) 0;
}

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


/* ----------------------------------------
   06. Preloader
   ---------------------------------------- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.8s var(--ease-in-out);
}

.preloader.loaded {
  transform: translateY(-100%);
}

.preloader__text {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-sm);
  color: var(--color-accent);
}

.preloader__bar {
  width: clamp(150px, 50vw, 200px);
  height: 2px;
  background: var(--color-border);
  overflow: hidden;
  border-radius: 1px;
}

.preloader__fill {
  width: 0%;
  height: 100%;
  background: var(--color-accent);
  transition: width 0.5s ease;
}


/* ----------------------------------------
   07. Navigation
   ---------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: var(--space-sm) var(--section-px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: color-mix(in srgb, var(--color-bg) 80%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  transition: background 0.3s ease, padding 0.3s ease;
}

.nav__logo {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 2px;
  z-index: 1001;
  white-space: nowrap;
}

.nav__logo span {
  color: var(--color-accent);
}

.nav__menu {
  display: none;
  gap: var(--space-lg);
  align-items: center;
}

.nav__link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--color-text-secondary);
  position: relative;
  transition: color 0.3s ease;
  padding: 4px 0;
}

.nav__link:hover,
.nav__link.active {
  color: var(--color-text);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav__link:hover::after,
.nav__link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Hamburger */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 12px 8px;
  z-index: 1001;
  -webkit-tap-highlight-color: transparent;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  transition: all 0.3s ease;
  border-radius: 1px;
}

/* Checkbox hamburger */
#nav-check {
  display: none;
}

#nav-check:checked + .nav__hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

#nav-check:checked + .nav__hamburger span:nth-child(2) {
  opacity: 0;
}

#nav-check:checked + .nav__hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Theme Toggle */
.nav__theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text-secondary);
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.nav__theme-toggle:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.nav__theme-toggle svg {
  width: 18px;
  height: 18px;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 1001;
}

/* Mobile Overlay */
.nav__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: var(--color-bg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: var(--space-3xl) var(--space-xl);
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav__overlay.active {
  opacity: 1;
  pointer-events: all;
}

.nav__overlay-link {
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-text-secondary);
  transition: color 0.3s ease, transform 0.3s ease;
  padding: var(--space-sm) 0;
  display: block;
  line-height: 1.3;
}

.nav__overlay-link:hover,
.nav__overlay-link.active {
  color: var(--color-accent);
  transform: translateX(8px);
}



/* ----------------------------------------
   08. Buttons
   ---------------------------------------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 0.875rem 2rem;
  background: var(--color-accent);
  color: #000;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 100px;
  transition: all 0.35s var(--ease-out);
  white-space: nowrap;
  min-height: 48px;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover {
  background: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 200, 83, 0.35);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 0.875rem 2rem;
  background: transparent;
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid var(--color-accent);
  border-radius: 100px;
  transition: all 0.35s var(--ease-out);
  white-space: nowrap;
  min-height: 48px;
}

.btn-secondary:hover {
  background: var(--color-accent-dim);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 200, 83, 0.15);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.5rem 0;
  color: var(--color-accent);
  font-weight: 500;
  font-size: 0.9rem;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.btn-ghost:hover {
  border-bottom-color: var(--color-accent);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  min-height: 52px;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-icon svg {
  width: 18px;
  height: 18px;
}

/* Uiverse Sliding-Icon Button (Join page) */
.uiverse-btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0.875rem 2rem;
  background: var(--color-accent);
  color: #000;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-md);
  transition: all 0.35s var(--ease-out);
  white-space: nowrap;
  min-height: 52px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.uiverse-btn__icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0;
  overflow: hidden;
  transition: width 0.35s var(--ease-out), margin-right 0.35s var(--ease-out);
  margin-right: 0;
}

.uiverse-btn__icon-wrapper svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: #000;
}

.uiverse-btn:hover {
  background: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 200, 83, 0.35);
}

.uiverse-btn:hover .uiverse-btn__icon-wrapper {
  width: 20px;
  margin-right: 0.5rem;
}

/* Hero CTA — slide-fill outlined button */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border: 1.5px solid var(--color-accent);
  color: var(--color-accent);
  font-weight: 600;
  font-size: 1rem;
  background: transparent;
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease;
  text-decoration: none;
}

.hero-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-accent);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease-out);
}

.hero-cta:hover {
  color: #000;
}

.hero-cta:hover::before {
  transform: translateX(0);
}

.hero-cta span {
  position: relative;
  z-index: 1;
}

.hero-cta__arrow {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  transition: transform 0.4s var(--ease-out);
}

.hero-cta:hover .hero-cta__arrow {
  transform: translateX(4px);
}

/* Gooey Text Morphing */
.gooey-filter {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
}

.gooey-morph {
  display: inline-block;
  position: relative;
  height: 1.15em;
  vertical-align: bottom;
}

.gooey-morph__text {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  white-space: nowrap;
}


/* ----------------------------------------
   09. Cards
   ---------------------------------------- */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: all 0.35s ease;
}

.card:hover {
  border-color: var(--color-border-hover);
}

/* Feature Card */
.card--feature {
  padding: var(--space-xl) var(--space-lg);
  position: relative;
  overflow: hidden;
}

.card--feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card--feature:hover::before {
  opacity: 1;
}

.card--feature .card__icon {
  width: 52px;
  height: 52px;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-dim);
  border-radius: var(--radius-md);
  color: var(--color-accent);
  transition: all 0.3s ease;
}

.card--feature:hover .card__icon {
  background: var(--color-accent-glow);
  transform: scale(1.05);
}

.card--feature .card__title {
  margin-bottom: var(--space-xs);
  font-size: 1rem;
}

.card--feature .card__text {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.card--feature .card__number {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  opacity: 0.4;
  letter-spacing: 0.1em;
}

/* Team Card */
.card--team {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
}

.card--team .card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-elevated);
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent);
  border: 2px solid var(--color-border);
  transition: border-color 0.3s ease;
}

.card--team:hover .card__avatar {
  border-color: var(--color-accent);
}

.card--team .card__name {
  margin-bottom: 2px;
  font-size: 1rem;
}

.card--team .card__role {
  font-size: 0.85rem;
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
}

.card--team .card__text {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

/* Testimonial Card */
.card--testimonial {
  min-width: 300px;
  max-width: 380px;
  flex-shrink: 0;
  scroll-snap-align: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.card--testimonial .card__quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  position: relative;
  padding-top: var(--space-lg);
}

.card--testimonial .card__quote::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 24px;
  background: var(--color-accent);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 24'%3E%3Cpath d='M0 24V14.4C0 6.08 4.48 1.28 13.44 0l1.28 3.2C9.6 4.48 7.36 8 7.04 12H13.44V24H0zm18.56 0V14.4C18.56 6.08 23.04 1.28 32 0l1.28 3.2c-5.12 1.28-7.36 4.8-7.68 8.8H32V24H18.56z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 24'%3E%3Cpath d='M0 24V14.4C0 6.08 4.48 1.28 13.44 0l1.28 3.2C9.6 4.48 7.36 8 7.04 12H13.44V24H0zm18.56 0V14.4C18.56 6.08 23.04 1.28 32 0l1.28 3.2c-5.12 1.28-7.36 4.8-7.68 8.8H32V24H18.56z'/%3E%3C/svg%3E");
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  opacity: 0.3;
}

.card--testimonial .card__author {
  font-weight: 600;
  font-size: 0.9rem;
}

.card--testimonial .card__university {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

/* Resource Card */
.card--resource {
  display: flex;
  flex-direction: column;
}

.card--resource .card__tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--color-accent-dim);
  color: var(--color-accent);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 4px;
  margin-bottom: var(--space-sm);
  width: fit-content;
  letter-spacing: 0.05em;
}

.card--resource .card__title {
  margin-bottom: var(--space-xs);
}

.card--resource .card__text {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  flex-grow: 1;
  line-height: 1.7;
}

/* Resource Card with Thumbnail */
.card--has-thumb {
  padding: 0;
  text-decoration: none;
  color: inherit;
}

.card--has-thumb .card__tag,
.card--has-thumb .card__title,
.card--has-thumb .card__text,
.card--has-thumb .btn-ghost {
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
}

.card--has-thumb .card__text {
  padding-bottom: 0;
}

.card--has-thumb .btn-ghost {
  padding-bottom: var(--space-lg);
}

.card__thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  margin-bottom: var(--space-sm);
}

.card__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.card--has-thumb:hover .card__thumbnail img {
  transform: scale(1.05);
}

.card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card__play svg {
  width: 20px;
  height: 20px;
}

.card--has-thumb:hover .card__play {
  opacity: 1;
}


/* ----------------------------------------
   10. Section Headers
   ---------------------------------------- */
.section-header {
  margin-bottom: clamp(2rem, 6vh, var(--space-2xl));
}

.section-header__number {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
  display: block;
}

.section-header__title {
  margin-bottom: var(--space-sm);
}

.section-header__subtitle {
  max-width: 600px;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}


/* ----------------------------------------
   11. Placeholders
   ---------------------------------------- */
.placeholder-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-border);
  overflow: hidden;
}

.placeholder-thumbnail {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--color-elevated);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.placeholder-logo {
  padding: 0.5rem 1.25rem;
  background: var(--color-elevated);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  font-weight: 600;
  letter-spacing: 0.05em;
  border: 1px solid var(--color-border);
}

/* ----------------------------------------
   12. Guests Showcase (Animated Ticker)
   ---------------------------------------- */
.guests-showcase {
  padding: clamp(3rem, 6vh, 5rem) 0;
  overflow: hidden;
}

.guests-showcase__label {
  text-align: center;
  font-size: clamp(0.85rem, 1.3vw, 0.95rem);
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

.guests-showcase__ticker {
  overflow: hidden;
}

.guests-showcase__track {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}

.guests-showcase__name {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
  color: var(--color-text-secondary);
  white-space: nowrap;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.guests-showcase__name:hover {
  color: var(--color-text);
}


/* ----------------------------------------
   13. Hero (Homepage)
   ---------------------------------------- */
.hero {
  min-height: 0;
  height: 100dvh;
  max-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding: calc(70px + var(--space-lg)) var(--section-px) var(--space-lg);
  position: relative;
  overflow: hidden;
  gap: var(--space-lg);
}

.hero__content {
  z-index: 2;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  padding: 0.5rem 1.15rem;
  border: 1px solid rgba(0, 200, 83, 0.25);
  border-radius: 100px;
  margin-bottom: var(--space-lg);
  width: fit-content;
  background: var(--color-accent-dim);
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-md);
}

.hero__title-line {
  white-space: nowrap;
}

.hero__subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.15rem);
  color: var(--color-text-secondary);
  max-width: 500px;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

.hero__visual {
  display: none;
}

.hero__glow {
  position: absolute;
  top: 15%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 200, 83, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* Wave Background */
.hero__waves {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__waves svg {
  display: block;
}

.hero__waves svg path {
  stroke: rgba(0, 200, 83, 0.15);
  fill: none;
  stroke-width: 1;
}

[data-theme="light"] .hero__waves svg path {
  stroke: rgba(0, 168, 68, 0.1);
}

/* Page hero (for secondary pages) */
.page-hero {
  padding: calc(80px + var(--space-2xl)) 0 var(--space-2xl);
}

.page-hero__title {
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-sm);
}

.page-hero__subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.15rem);
  color: var(--color-text-secondary);
  max-width: 560px;
  line-height: 1.7;
}


/* ----------------------------------------
   14. Stats Bar
   ---------------------------------------- */
.stats-bar {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
}

.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: var(--container-max);
  margin: 0 auto;
}

.stats-bar__item {
  padding: var(--space-lg) var(--space-sm);
  text-align: center;
  position: relative;
}

.stats-bar__item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 0;
  height: 60%;
  width: 1px;
  background: var(--color-border);
}

.stats-bar__number {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-accent);
  display: block;
  line-height: 1;
}

.stats-bar__label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 6px;
}


/* ----------------------------------------
   15. Marquee
   ---------------------------------------- */
.marquee-section {
  background: var(--color-accent);
  padding: var(--space-sm) 0;
  overflow: hidden;
}

.marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.marquee__inner {
  display: inline-block;
  animation: marquee 30s linear infinite;
}

.marquee__inner span {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 800;
  color: #000;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ----------------------------------------
   16. Universities Showcase
   ---------------------------------------- */
.universities {
  padding: clamp(3rem, 6vh, 5rem) 0;
  overflow: hidden;
}

.universities__label {
  text-align: center;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

.universities__ticker {
  overflow: hidden;
  margin-bottom: 1rem;
}

.universities__track {
  display: flex;
  gap: clamp(1rem, 2.5vw, 2rem);
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}

.universities__ticker--reverse .universities__track {
  animation: ticker-scroll-reverse 35s linear infinite;
}

.universities__name {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 600;
  color: var(--color-text-secondary);
  white-space: nowrap;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.universities__name:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
  opacity: 1;
}

/* Bold university ticker style */
.universities--bold .universities__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--color-text);
  opacity: 0.2;
  border: none;
  border-radius: 0;
  padding: 0 clamp(1rem, 3vw, 2rem);
  transition: opacity 0.4s ease, color 0.4s ease;
}

.universities--bold .universities__name:hover {
  opacity: 0.6;
  color: var(--color-accent);
  border-color: transparent;
}

.universities--bold .universities__ticker {
  margin-bottom: 0.5rem;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes ticker-scroll-reverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}


/* ----------------------------------------
   17. Features — Editorial Layout
   ---------------------------------------- */
.features-editorial {
  display: flex;
  flex-direction: column;
  gap: var(--space-4xl);
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.feature-row__text {
  order: 2;
}

.feature-row__visual {
  order: 1;
}

.feature-row__number {
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: var(--color-border);
  margin-bottom: var(--space-sm);
  transition: color 0.4s ease;
  -webkit-text-stroke: 1px var(--color-border);
}

.feature-row:hover .feature-row__number {
  color: transparent;
  -webkit-text-stroke: 1px var(--color-accent);
}

.feature-row__title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-sm);
  line-height: 1.1;
}

.feature-row__title .accent {
  display: inline;
}

.feature-row__desc {
  font-size: clamp(1rem, 1.5vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 480px;
}

.feature-row__image {
  aspect-ratio: 4 / 3;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  transition: border-color 0.3s ease;
}

.feature-row:hover .feature-row__image {
  border-color: var(--color-border-hover);
}

.feature-row__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-accent-dim) 0%, transparent 60%);
  border-radius: inherit;
}

.feature-row__image svg {
  opacity: 0.1;
  width: 48px;
  height: 48px;
}

.feature-row__image-label {
  position: absolute;
  bottom: var(--space-sm);
  left: var(--space-sm);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  background: color-mix(in srgb, var(--color-bg) 80%, transparent);
  padding: 4px 10px;
  border-radius: 4px;
  backdrop-filter: blur(8px);
}


/* ----------------------------------------
   18. Podcast Spotlight
   ---------------------------------------- */
.podcast-spotlight__featured {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  transition: border-color 0.3s ease;
}

.podcast-spotlight__featured:hover {
  border-color: var(--color-border-hover);
}

.podcast-spotlight__featured-thumbnail {
  aspect-ratio: 16 / 9;
  background: var(--color-elevated);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.podcast-spotlight__featured-thumbnail img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.podcast-spotlight__featured:hover .podcast-spotlight__featured-thumbnail img {
  transform: scale(1.03);
  filter: brightness(0.75);
}

.podcast-spotlight__play-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 200, 83, 0.3);
}

/* Homepage spotlight: always visible, scales on hover */
.podcast-spotlight__featured .podcast-spotlight__play-icon {
  opacity: 1;
}

.podcast-spotlight__featured:hover .podcast-spotlight__play-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(0, 200, 83, 0.4);
}

/* Podcasts page featured episode: hidden until hover */
.featured-episode .podcast-spotlight__play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  z-index: 2;
}

.featured-episode:hover .podcast-spotlight__play-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  box-shadow: 0 8px 30px rgba(0, 200, 83, 0.4);
}

.podcast-spotlight__featured-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.podcast-spotlight__featured-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
}

.podcast-spotlight__featured-title {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-bottom: var(--space-xs);
}

.podcast-spotlight__featured-desc {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.podcast-spotlight__featured-meta {
  display: flex;
  gap: var(--space-md);
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

.podcast-spotlight__guests {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.guest-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  transition: all 0.3s ease;
}

.guest-card:hover {
  border-color: var(--color-border-hover);
  transform: translateX(4px);
}

.guest-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-elevated);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-accent);
  border: 2px solid var(--color-border);
}

.guest-card__info {
  flex-grow: 1;
  min-width: 0;
}

.guest-card__name {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1px;
}

.guest-card__role {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}


/* ----------------------------------------
   19. Testimonials — Vertical Columns
   ---------------------------------------- */
.testimonials-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  max-height: 560px;
  overflow: hidden;
  position: relative;
}

.testimonials-columns::before,
.testimonials-columns::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 100px;
  z-index: 2;
  pointer-events: none;
}

.testimonials-columns::before {
  top: 0;
  background: linear-gradient(to bottom, var(--color-bg), transparent);
}

.testimonials-columns::after {
  bottom: 0;
  background: linear-gradient(to top, var(--color-bg), transparent);
}

.testimonials-column {
  overflow: hidden;
}

.testimonials-column__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  animation: scroll-up var(--scroll-duration, 35s) linear infinite;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.testimonials-column:nth-child(2) .testimonials-column__inner {
  --scroll-duration: 28s;
}

.testimonials-column:nth-child(3) .testimonials-column__inner {
  --scroll-duration: 40s;
}

.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-accent);
  border-radius: 0;
  padding: var(--space-lg);
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--color-border-hover);
  border-left-color: var(--color-accent);
  transform: translateX(4px);
}

.testimonial-card__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  font-style: italic;
}

.testimonial-card__text::before {
  content: '\201C';
  display: block;
  font-size: 2.5rem;
  line-height: 1;
  font-style: normal;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
  opacity: 0.6;
}

.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 0;
}

.testimonial-card__meta {
  display: flex;
  align-items: baseline;
  gap: var(--space-xs);
  flex-wrap: wrap;
}

.testimonial-card__author {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-accent);
}

.testimonial-card__author::before {
  content: '\2014\00a0';
  color: var(--color-text-secondary);
}

.testimonial-card__university {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  opacity: 0.7;
}


/* ----------------------------------------
   20. Community CTA
   ---------------------------------------- */
.community-cta {
  border-top: 1px solid var(--color-border);
}

.community-cta__quote {
  margin: 0 0 var(--space-xl);
  padding: 0;
  max-width: 800px;
}

.community-cta__quote p {
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.community-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.community-cta__note {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}


/* ----------------------------------------
   21. About Page
   ---------------------------------------- */
.origin-hero {
  position: relative;
  overflow: hidden;
}

.origin-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.origin-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  opacity: 0.2;
}

.origin-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--color-bg) 0%, transparent 30%, transparent 75%, var(--color-bg) 100%);
}

.origin-hero__content {
  position: relative;
  z-index: 1;
}

.origin-hero__text {
  max-width: 720px;
}

.origin-hero__text p {
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.impact-numbers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.impact-numbers__item {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color 0.3s ease;
}

.impact-numbers__item:hover {
  border-color: var(--color-border-hover);
}

.impact-numbers__value {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: -0.03em;
}

.impact-numbers__label {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  margin-top: 4px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-sm);
}

/* Founder Rows — Alternating Editorial Layout */
.founder-rows {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
}

.founder-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.founder-row__text {
  order: 2;
}

.founder-row__visual {
  order: 1;
}

.founder-row__number {
  font-size: clamp(3.5rem, 10vw, 6rem);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: var(--color-border);
  margin-bottom: var(--space-sm);
  -webkit-text-stroke: 1px var(--color-border);
  transition: color 0.4s ease;
}

.founder-row:hover .founder-row__number {
  color: transparent;
  -webkit-text-stroke: 1px var(--color-accent);
}

.founder-row__name {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  white-space: nowrap;
  margin-bottom: var(--space-xs);
}

.founder-row__role {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.founder-row__bio {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: var(--space-sm);
}

.founder-row__image {
  aspect-ratio: 1 / 1;
  max-width: 270px;
  margin: 0 auto;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: border-color 0.3s ease;
}

.founder-row:hover .founder-row__image {
  border-color: var(--color-border-hover);
}

.founder-row__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Animated Team Showcase */
.animated-team {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.animated-team__stack {
  position: relative;
  width: 100%;
  max-width: 250px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}

.animated-team__image {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  transition: all 0.5s var(--ease-out);
  display: flex;
  align-items: center;
  justify-content: center;
}

.animated-team__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.animated-team__image svg {
  width: 64px;
  height: 64px;
  opacity: 0.15;
}

.animated-team__image[data-pos="active"] {
  z-index: 5;
  transform: rotate(0deg) scale(1);
  opacity: 1;
  border-color: var(--color-accent);
}

.animated-team__image[data-pos="next"] {
  z-index: 4;
  transform: rotate(8deg) scale(0.92) translateX(12%);
  opacity: 0.6;
}

.animated-team__image[data-pos="prev"] {
  z-index: 4;
  transform: rotate(-8deg) scale(0.92) translateX(-12%);
  opacity: 0.6;
}

.animated-team__image[data-pos="hidden"] {
  z-index: 1;
  transform: rotate(0deg) scale(0.8);
  opacity: 0;
}

.animated-team__info {
  text-align: center;
}

.animated-team__name {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-xs);
  line-height: 1.2;
}

.animated-team__role {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-md);
}

.animated-team__bio {
  color: var(--color-text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
  max-width: 500px;
  margin: 0 auto;
}

.animated-team__linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  margin-top: var(--space-md);
  padding: 0;
  border: none;
  background: none;
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
}

.animated-team__linkedin svg {
  width: 14px;
  height: 14px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.animated-team__linkedin:hover {
  color: var(--color-accent);
}

.animated-team__linkedin:hover svg {
  opacity: 1;
}

.animated-team__controls {
  display: flex;
  gap: var(--space-xs);
  justify-content: center;
  margin-top: var(--space-lg);
}

.animated-team__btn {
  width: 36px;
  height: 36px;
  border-radius: 0;
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.animated-team__btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: transparent;
}

.animated-team__btn svg {
  width: 14px;
  height: 14px;
}

/* Word-by-word blur reveal */
.animated-team__name .word,
.animated-team__bio .word {
  display: inline-block;
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.animated-team__name .word.visible,
.animated-team__bio .word.visible {
  opacity: 1;
  filter: blur(0);
}

/* Team Profile Cards — Rectangular Photo Design */
.team-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.team-profile {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.35s var(--ease-out);
}

.team-profile:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.team-profile__photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-elevated);
}

.team-profile__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.team-profile:hover .team-profile__photo img {
  transform: scale(1.03);
}

.team-profile__photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-elevated) 100%);
}

.team-profile__photo--placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.12;
}

.team-profile__body {
  padding: var(--space-md) var(--space-lg) var(--space-lg);
}

.team-profile__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.2rem;
}

.team-profile__role {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.65rem;
}

.team-profile__desc {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 0.85rem;
}

.team-profile__linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--color-text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  transition: all 0.3s ease;
}

.team-profile__linkedin:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

/* Join Team Inline CTA */
.join-team-inline {
  margin-top: var(--space-3xl);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
}

.join-team-inline__title {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.join-team-inline__text {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto var(--space-lg);
}

/* About Vision */
.about-vision .section-header {
  margin-bottom: var(--space-lg);
}

.about-vision__quote {
  margin: 0;
  padding: 0;
  max-width: 800px;
}

.about-vision__quote p {
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.about-vision__cta {
  margin-top: var(--space-xl);
}


/* ----------------------------------------
   22. Podcasts Page
   ---------------------------------------- */
.featured-episode {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
  transition: border-color 0.3s ease;
}

.featured-episode:hover {
  border-color: var(--color-border-hover);
}

.featured-episode__thumbnail {
  aspect-ratio: 16 / 9;
  background: var(--color-elevated);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.featured-episode__thumbnail img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.featured-episode:hover .featured-episode__thumbnail img {
  transform: scale(1.03);
  filter: brightness(0.75);
}

.featured-episode__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-episode__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.featured-episode__title {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-bottom: var(--space-xs);
}

.featured-episode__desc {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.featured-episode__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

.featured-episode__meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.episodes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

.episode-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.episode-card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-2px);
}

.episode-card__thumbnail {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--color-elevated);
}

.episode-card__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.episode-card:hover .episode-card__thumbnail img {
  transform: scale(1.05);
  filter: brightness(0.7);
}

.episode-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 200, 83, 0.4);
}

.episode-card:hover .episode-card__play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.episode-card__play svg {
  width: 18px;
  height: 18px;
  margin-left: 2px;
}

.episode-card__body {
  padding: var(--space-md) var(--space-lg) var(--space-lg);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.episode-card__number {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.15em;
  margin-bottom: var(--space-xs);
}

.episode-card__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  line-height: 1.3;
}

.episode-card__guest {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
}

.episode-card__meta {
  display: flex;
  gap: var(--space-sm);
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  margin-top: auto;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-border);
}

.guests-logos {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  align-items: center;
  padding: var(--space-lg) 0;
}

.guest-cta {
  text-align: center;
}


/* ----------------------------------------
   23. Resources Page
   ---------------------------------------- */
.resources-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.resource-list {
  display: flex;
  flex-direction: column;
}

.resource-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

.resource-item:last-child {
  border-bottom: none;
}

.resource-item:hover {
  padding-left: 0.5rem;
}

.resource-item:hover .resource-item__title {
  color: var(--color-accent);
}

.resource-item:hover .resource-item__arrow {
  color: var(--color-accent);
  transform: translateX(4px);
  opacity: 1;
}

.resource-item__tag {
  display: inline-block;
  background: var(--color-accent-dim);
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 4px;
  flex-shrink: 0;
  min-width: 64px;
  text-align: center;
}

.resource-item__content {
  flex: 1;
  min-width: 0;
}

.resource-item__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.15rem;
  transition: color 0.25s ease;
}

.resource-item__text {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.resource-item__arrow {
  font-size: 1.25rem;
  color: var(--color-text-secondary);
  transition: all 0.25s ease;
  flex-shrink: 0;
  opacity: 0.5;
}

.resources-sub-header {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
  margin-top: 2.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-border);
}

/* Feature Row — Video Thumbnails */
a.feature-row {
  text-decoration: none;
  color: inherit;
}

.feature-row__tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--color-accent-dim);
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 4px;
  margin-bottom: var(--space-sm);
  width: fit-content;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-row__image--video {
  aspect-ratio: 16 / 9;
}

.feature-row__image--video::before {
  display: none;
}

.feature-row__image--video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.feature-row__image--video .card__play {
  position: absolute;
  z-index: 2;
}

.feature-rows {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
}

/* Entry Test Rows */
.entry-test-rows {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
}

.entry-test-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.entry-test-row__text {
  order: 2;
}

.entry-test-row__visual {
  order: 1;
}

.entry-test-row__number {
  font-size: clamp(3.5rem, 10vw, 6rem);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: transparent;
  margin-bottom: var(--space-sm);
  -webkit-text-stroke: 1px var(--color-accent);
  transition: color 0.4s ease;
}

.entry-test-row__name {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: var(--space-sm);
}

.entry-test-row__desc {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: var(--space-sm);
}

.entry-test-row__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
  display: inline-block;
  transition: transform 0.25s ease;
}

.entry-test-row:hover .entry-test-row__link {
  transform: translateX(4px);
}

.entry-test-row__abbr {
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 2px var(--color-accent);
  text-align: center;
  user-select: none;
  transition: all 0.4s ease;
  filter: drop-shadow(0 0 20px var(--color-accent-dim));
}

.entry-test-row:hover .entry-test-row__abbr {
  filter: drop-shadow(0 0 30px var(--color-accent-dim));
}


/* Entry Test CTA */
.entry-test-cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  text-align: center;
}

.entry-test-cta__visual {
  order: 1;
}

.entry-test-cta__content {
  order: 2;
}

.entry-test-cta__abbr {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 18vw, 12rem);
  font-weight: 400;
  line-height: 0.85;
  letter-spacing: 0.05em;
  color: transparent;
  -webkit-text-stroke: 2px var(--color-accent);
  user-select: none;
}

[data-theme="light"] .origin-hero__bg img {
  opacity: 0.12;
}

.entry-test-cta__desc {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto var(--space-lg);
}

.entry-test-cta__note {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  margin-top: var(--space-sm);
  opacity: 0.6;
}

/* Roadmap Cards */
.roadmaps {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.roadmap-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.roadmap-card:hover {
  border-color: var(--color-border-hover);
}

.roadmap-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-xl);
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.3s ease;
}

.roadmap-card__header:hover {
  background: var(--color-surface);
}

.roadmap-card__header-text {
  flex: 1;
  min-width: 0;
}

.roadmap-card__number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 0.85;
  letter-spacing: 0.02em;
  color: transparent;
  -webkit-text-stroke: 1px var(--color-accent);
  margin-bottom: var(--space-xs);
}

.roadmap-card__title {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: var(--space-xs);
}

.roadmap-card__subtitle {
  font-size: clamp(0.88rem, 1.3vw, 0.95rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.roadmap-card__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.roadmap-card__toggle::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-text-secondary);
  transition: transform 0.3s ease;
}

.roadmap-card--open .roadmap-card__toggle {
  border-color: var(--color-accent);
  background: var(--color-accent-dim);
}

.roadmap-card--open .roadmap-card__toggle::after {
  content: '\2212';
  color: var(--color-accent);
}

.roadmap-card__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.roadmap-card--open .roadmap-card__body {
  max-height: 4000px;
  transition: max-height 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.roadmap-card__content {
  padding: 0 var(--space-xl) var(--space-xl);
  border-top: 1px solid var(--color-border);
}

.roadmap-step {
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-border);
}

.roadmap-step:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.roadmap-step__marker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  background: var(--color-accent-dim);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: var(--space-sm);
}

.roadmap-step__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  letter-spacing: -0.02em;
}

.roadmap-step__text {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.roadmap-step__text strong {
  color: var(--color-text);
  font-weight: 600;
}

/* Roadmaps: show-more toggle */
.roadmaps-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: var(--space-sm) 0;
  margin-top: var(--space-md);
  align-self: center;
  background: transparent;
  border: none;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease;
}

.roadmaps-toggle:hover {
  color: var(--color-accent);
}

.roadmaps-toggle__icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.roadmaps-toggle--open .roadmaps-toggle__icon {
  transform: rotate(180deg);
}

/* Roadmap share button */
.roadmap-card__share {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.3s ease;
  opacity: 0;
}

.roadmap-card__header:hover .roadmap-card__share {
  opacity: 1;
}

.roadmap-card__share:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: var(--color-accent-dim);
}

.roadmap-card__share--copied {
  border-color: var(--color-accent);
  color: var(--color-accent);
  opacity: 1;
}

.roadmap-card__share svg {
  width: 16px;
  height: 16px;
}

/* View more toggle (sessions) */
.view-more-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: var(--space-sm) 0;
  margin-top: var(--space-lg);
  background: transparent;
  border: none;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease;
}

.view-more-toggle:hover {
  color: var(--color-accent);
}

.view-more-toggle__icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.view-more-toggle--open .view-more-toggle__icon {
  transform: rotate(180deg);
}


.roadmaps-more {
  display: none;
  flex-direction: column;
  gap: var(--space-xl);
}

.roadmaps-more--visible {
  display: flex;
  margin-top: var(--space-xl);
}

/* Roadmap filter tabs */
.roadmap-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--space-xl);
}

.roadmap-filter {
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body);
}

.roadmap-filter:not(.roadmap-filter--active):hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.roadmap-filter--active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #0a0a0a;
  font-weight: 600;
}

[data-theme="light"] .roadmap-filter--active {
  color: #fff;
}

/* Category badge on roadmap cards */
.roadmap-card__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 100px;
  margin-top: 2px;
}

.roadmap-card__badge--entry-test {
  background: rgba(255, 171, 0, 0.1);
  color: #FFAB00;
  border: 1px solid rgba(255, 171, 0, 0.2);
}

.roadmap-card__badge--university {
  background: var(--color-accent-dim);
  color: var(--color-accent);
  border: 1px solid rgba(0, 200, 83, 0.15);
}

/* Hidden by filter */
.roadmap-card--hidden {
  display: none;
}


/* ----------------------------------------
   24. Join Page
   ---------------------------------------- */
.benefits-list {
  display: flex;
  flex-direction: column;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: 2rem 0;
  border-bottom: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.benefit-item:last-child {
  border-bottom: none;
}

.benefit-item__number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  -webkit-text-stroke: 1px var(--color-accent);
  color: transparent;
  flex-shrink: 0;
  width: 80px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.benefit-item__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-accent);
  margin-right: 0.5rem;
}

.benefit-item__content {
  flex: 1;
}

.benefit-item__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.benefit-item__text {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* Community Spaces — List */
.spaces-list {
  display: flex;
  flex-direction: column;
}

.space-item {
  --item-accent: var(--color-accent);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s ease;
}

.space-item:first-child {
  padding-top: 0;
}

.space-item:last-child {
  border-bottom: none;
}

.space-item:hover {
  border-color: var(--item-accent);
}

.space-item__name {
  position: relative;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 12vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--color-surface);
  -webkit-text-stroke: 1.5px var(--item-accent);
  paint-order: stroke fill;
  user-select: none;
  transition: filter 0.3s ease;
}

.space-item__name::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  color: transparent;
  -webkit-text-stroke: 4px var(--item-accent);
  z-index: -1;
}

.space-item:hover .space-item__name {
  filter: drop-shadow(0 0 16px rgba(0, 200, 83, 0.12));
}

.space-item__info {
  display: flex;
  align-items: baseline;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.space-item__desc {
  color: var(--color-text-secondary);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.7;
  flex: 1;
  min-width: 200px;
  max-width: 520px;
}

.space-item__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--item-accent);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
  transition: gap 0.2s ease;
}

.space-item:hover .space-item__cta {
  gap: 0.6rem;
}

/* Platform variants */
.space-item--whatsapp { --item-accent: #25D366; }
.space-item--discord { --item-accent: #5865F2; }

.space-item--whatsapp:hover .space-item__name {
  filter: drop-shadow(0 0 16px rgba(37, 211, 102, 0.12));
}
.space-item--discord:hover .space-item__name {
  filter: drop-shadow(0 0 16px rgba(88, 101, 242, 0.12));
}

[data-theme="light"] .space-item__name {
  color: var(--color-surface);
}

@media (min-width: 768px) {
  .space-item {
    flex-direction: row;
    align-items: center;
    gap: var(--space-xl);
  }

  .space-item__name {
    min-width: 280px;
    font-size: clamp(3rem, 5vw, 4.5rem);
  }
}

/* FAQ */
.faq {
  max-width: 700px;
  margin: 0 auto;
}

.faq details {
  border-bottom: 1px solid var(--color-border);
}

.faq details[open] summary {
  color: var(--color-accent);
}

.faq summary {
  padding: var(--space-md) 0;
  font-weight: 600;
  font-size: 1.15rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  list-style: none;
  color: var(--color-text);
  transition: color 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-text-secondary);
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq details[open] summary::after {
  content: '\2212';
  color: var(--color-accent);
}

.faq__answer {
  overflow: hidden;
  transition: height 0.3s ease;
}

.faq details p {
  padding-bottom: var(--space-md);
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}


.join-team-cta {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.join-team-cta__title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.join-team-cta__text {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}


/* ----------------------------------------
   25. Footer
   ---------------------------------------- */
.footer {
  position: relative;
  border-top: 1px solid var(--color-border);
  padding: clamp(3rem, 8vh, 5rem) 0 var(--space-xl);
  background: var(--color-bg);
  overflow: hidden;
}

.footer__glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50vw;
  height: 200px;
  background: radial-gradient(ellipse at top, var(--color-accent-glow), transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}

.footer__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-px);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  margin-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-border);
}

.footer__brand .nav__logo {
  font-size: 1.4rem;
  margin-bottom: var(--space-xs);
  display: inline-block;
}

.footer__brand-desc {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin-top: var(--space-xs);
  line-height: 1.6;
  max-width: 360px;
}

.footer__brand-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: var(--space-md);
}

.footer__social-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer__social-link:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: var(--color-accent-dim);
  transform: translateY(-2px);
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
}

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

.footer__col {
  display: flex;
  flex-direction: column;
}

.footer__col-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.footer__link {
  display: block;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  padding: 0.5rem 0;
  transition: color 0.2s ease;
}

.footer__link:hover {
  color: var(--color-accent);
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-xs);
  position: relative;
  z-index: 2;
}

.footer__copyright {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  opacity: 0.5;
}

.footer__bottom-links {
  display: flex;
  gap: var(--space-md);
}

.footer__bottom-link {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  opacity: 0.5;
  transition: color 0.2s ease;
}

.footer__bottom-link:hover {
  color: var(--color-text-secondary);
}

.footer__watermark {
  position: absolute;
  bottom: -4%;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(3rem, 14vw, 14rem);
  font-weight: 800;
  white-space: nowrap;
  color: var(--color-text);
  opacity: 0.015;
  pointer-events: none;
  z-index: 1;
  user-select: none;
}


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

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

.mt-xs { margin-top: var(--space-xs); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }

.mb-xs { margin-bottom: var(--space-xs); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }


/* ----------------------------------------
   27. Animations
   ---------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="delay-1"] { transition-delay: 0.08s; }
[data-reveal="delay-2"] { transition-delay: 0.16s; }
[data-reveal="delay-3"] { transition-delay: 0.24s; }
[data-reveal="delay-4"] { transition-delay: 0.32s; }
[data-reveal="delay-5"] { transition-delay: 0.4s; }

/* Shutter Text Effect */
.shutter-text {
  display: inline-flex;
  flex-wrap: wrap;
}

.shutter-char {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.shutter-char__main {
  display: inline-block;
  opacity: 0;
  filter: blur(8px);
  animation: shutter-reveal 0.7s var(--ease-out) forwards;
  animation-delay: calc(var(--char-i, 0) * 0.04s + 0.4s);
}

.shutter-char__slice {
  position: absolute;
  inset: 0;
  display: inline-block;
  color: var(--color-accent);
  pointer-events: none;
  opacity: 0;
}

.shutter-char__slice--top {
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
  animation: shutter-slice-right 0.6s ease-in-out forwards;
  animation-delay: calc(var(--char-i, 0) * 0.04s + 0.1s);
}

.shutter-char__slice--mid {
  clip-path: polygon(0 35%, 100% 35%, 100% 65%, 0 65%);
  color: var(--color-text);
  animation: shutter-slice-left 0.6s ease-in-out forwards;
  animation-delay: calc(var(--char-i, 0) * 0.04s + 0.2s);
}

.shutter-char__slice--bot {
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
  animation: shutter-slice-right 0.6s ease-in-out forwards;
  animation-delay: calc(var(--char-i, 0) * 0.04s + 0.3s);
}

@keyframes shutter-reveal {
  0% { opacity: 0; filter: blur(8px); }
  100% { opacity: 1; filter: blur(0px); }
}

@keyframes shutter-slice-right {
  0% { transform: translateX(-110%); opacity: 0; }
  30% { opacity: 1; }
  70% { opacity: 1; }
  100% { transform: translateX(110%); opacity: 0; }
}

@keyframes shutter-slice-left {
  0% { transform: translateX(110%); opacity: 0; }
  30% { opacity: 1; }
  70% { opacity: 1; }
  100% { transform: translateX(-110%); opacity: 0; }
}

@keyframes scroll-up {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__waves {
    display: none;
  }
}


/* ----------------------------------------
   28. Responsive — 480px
   ---------------------------------------- */
@media (min-width: 480px) {
  .episodes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ----------------------------------------
   29. Responsive — 768px (Tablet)
   ---------------------------------------- */
@media (min-width: 768px) {
  .nav__menu {
    display: flex;
  }


  .nav__hamburger {
    display: none;
  }

  .nav__right {
    gap: 0.5rem;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: calc(70px + var(--space-xl));
    height: 100dvh;
    max-height: 100dvh;
    justify-items: center;
    text-align: center;
  }

  .hero__content {
    max-width: 720px;
  }

  .hero__badge {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__subtitle {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .stats-bar__inner {
    grid-template-columns: repeat(4, 1fr);
  }

  .podcast-spotlight__featured {
    grid-template-columns: 1fr 1fr;
  }

  .podcast-spotlight__guests {
    grid-template-columns: repeat(3, 1fr);
  }

  .origin-hero__text {
    max-width: 680px;
  }

  .founder-row {
    grid-template-columns: 1fr 1fr;
  }

  .founder-row__text {
    order: 1;
  }

  .founder-row__visual {
    order: 2;
  }

  .founder-row:nth-child(even) .founder-row__text {
    order: 2;
  }

  .founder-row:nth-child(even) .founder-row__visual {
    order: 1;
  }

  .founder-row__image {
    max-width: 270px;
  }

  .impact-numbers {
    grid-template-columns: repeat(4, 1fr);
  }

  .featured-episode {
    grid-template-columns: 1fr 1fr;
  }

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

  .feature-row__text {
    order: 1;
  }

  .feature-row__visual {
    order: 2;
  }

  .feature-row:nth-child(even) .feature-row__text {
    order: 2;
  }

  .feature-row:nth-child(even) .feature-row__visual {
    order: 1;
  }

  .entry-test-row {
    grid-template-columns: 1fr 1fr;
  }

  .entry-test-row__text {
    order: 1;
  }

  .entry-test-row__visual {
    order: 2;
  }

  .entry-test-row:nth-child(even) .entry-test-row__text {
    order: 2;
  }

  .entry-test-row:nth-child(even) .entry-test-row__visual {
    order: 1;
  }

  .entry-test-cta {
    grid-template-columns: auto 1fr;
    text-align: left;
  }

  .entry-test-cta__desc {
    margin-left: 0;
  }

  .testimonials-columns {
    grid-template-columns: repeat(3, 1fr);
  }

  .animated-team {
    grid-template-columns: 1fr 1fr;
  }

  .animated-team__info {
    text-align: left;
  }

  .animated-team__bio {
    margin: 0;
  }

  .animated-team__controls {
    justify-content: flex-start;
  }

  .footer__top {
    grid-template-columns: 1fr 2fr;
    gap: var(--space-3xl);
    align-items: start;
  }

  .footer__links {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}


/* ----------------------------------------
   30. Responsive — 1024px (Desktop)
   ---------------------------------------- */
@media (min-width: 1024px) {
  .episodes-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .team-card-grid {
    grid-template-columns: repeat(4, 1fr);
  }

}


/* ----------------------------------------
   31. Mobile Overrides — Phone-First Design
   ---------------------------------------- */

/* ------ Small phones (max 479px) ------ */
@media (max-width: 479px) {

  /* Hero: left-aligned, breathing room */
  .hero {
    padding-top: calc(70px + var(--space-xl));
    padding-bottom: var(--space-xl);
    min-height: 100svh;
    height: auto;
    max-height: none;
  }

  .hero__title {
    font-size: clamp(2.25rem, 9.5vw, 3rem);
    line-height: 1;
  }

  .hero__title-line {
    white-space: normal;
  }

  .hero__subtitle {
    font-size: clamp(1rem, 3.8vw, 1.1rem);
  }

  .hero__badge {
    padding: 0.45rem 1rem;
    font-size: 0.8rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  /* Stats: generous padding */
  .stats-bar__item {
    padding: var(--space-lg) var(--space-sm);
  }

  .stats-bar__label {
    font-size: 0.8rem;
  }

  /* Features: bigger decorative numbers, more section gap */
  .features-editorial {
    gap: var(--space-3xl);
  }

  .feature-row__number {
    font-size: clamp(5rem, 22vw, 8rem);
  }

  /* Gooey morph: constrain to viewport */
  .gooey-morph {
    max-width: 100% !important;
    width: auto !important;
  }

  /* Hero CTA: smaller on phone */
  .hero-cta {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }

  /* Uiverse buttons: compact on phone */
  .uiverse-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    min-height: 44px;
  }

  /* Testimonials: single column, more visible height */
  .testimonials-columns {
    grid-template-columns: 1fr;
    max-height: 480px;
  }

  /* Founder images: scale on small phones */
  .founder-row__image {
    max-width: 180px;
  }

  /* Remove fixed min/max width so cards fill container */
  .card--testimonial {
    min-width: 0;
    max-width: none;
  }

  /* Roadmap cards: compact on mobile */
  .roadmap-card__share {
    opacity: 1;
    width: 30px;
    height: 30px;
  }

  .roadmap-card__share svg {
    width: 14px;
    height: 14px;
  }

  .roadmap-card__header {
    padding: 1rem;
    gap: 0.5rem;
    align-items: flex-start;
  }

  .roadmap-card__content {
    padding: 0 1rem 1rem;
  }

  .roadmap-card__toggle {
    width: 30px;
    height: 30px;
  }

  .roadmap-card__title {
    font-size: 1.1rem;
    line-height: 1.3;
  }

  .roadmap-card__subtitle {
    font-size: 0.85rem;
  }

  .roadmap-step__title {
    font-size: 1.05rem;
  }

  .roadmap-step__text {
    font-size: 0.9rem;
  }

  .roadmap-filters {
    gap: 0.4rem;
  }

  .roadmap-filter {
    padding: 0.4rem 1rem;
    font-size: 0.82rem;
  }

  .roadmap-card__badge {
    font-size: 0.65rem;
    padding: 2px 8px;
  }

  /* Entry test CTA: readable on mobile */
  .entry-test-cta__desc {
    font-size: 1rem;
  }

  /* CTA: stacked buttons on mobile */
  .community-cta__buttons {
    flex-direction: column;
    align-items: center;
  }

  /* Animated team: scale down on phone */
  .animated-team__stack {
    max-width: 60vw;
  }

  .animated-team__name {
    font-size: 1.2rem;
  }

  .animated-team__btn {
    width: 32px;
    height: 32px;
  }

  .animated-team__btn svg {
    width: 12px;
    height: 12px;
  }

  .animated-team__linkedin {
    font-size: 0.8rem;
  }

  /* FAQ: bigger tap targets */
  .faq summary {
    padding: var(--space-md) 0;
    min-height: 48px;
    font-size: 1.05rem;
  }

  .faq details p {
    font-size: 0.95rem;
  }

  /* Section headers: more bottom margin */
  .section-header {
    margin-bottom: var(--space-xl);
  }

  /* Impact numbers: bigger values */
  .impact-numbers__value {
    font-size: 2rem;
  }

  /* Nav overlay: compact for small screens */
  .nav__overlay-link {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  /* Page hero: proper spacing */
  .page-hero {
    padding-top: calc(70px + var(--space-xl));
    padding-bottom: var(--space-lg);
  }

  .page-hero__title {
    font-size: clamp(1.85rem, 8vw, 2.5rem);
  }

  /* Podcast play icon: smaller on mobile */
  .podcast-spotlight__play-icon {
    width: 48px;
    height: 48px;
  }

  /* Reduce reveal animation distance on small phones */
  [data-reveal] {
    transform: translateY(12px);
  }

  /* Slow down ticker animations on small viewports */
  .guests-showcase__track {
    animation: ticker-scroll 35s linear infinite;
  }

  .universities__track {
    animation: ticker-scroll 40s linear infinite;
  }

  .universities__ticker--reverse .universities__track {
    animation: ticker-scroll-reverse 45s linear infinite;
  }

  .marquee__inner {
    animation: marquee 40s linear infinite;
  }

  /* Reduce padding on featured cards for more content space */
  .podcast-spotlight__featured,
  .featured-episode {
    padding: var(--space-md);
  }

  .episode-card__body {
    padding: var(--space-sm) var(--space-md) var(--space-md);
  }

  /* Testimonial card: reduce padding */
  .testimonial-card {
    padding: var(--space-md);
  }

  .testimonial-card__text {
    font-size: 0.9rem;
  }

  .testimonial-card__text::before {
    font-size: 2rem;
  }

  /* Slow testimonials scroll on single column */
  .testimonials-column__inner {
    --scroll-duration: 50s;
  }

  /* Benefits list: wrap on small phones */
  .benefit-item {
    flex-wrap: wrap;
    gap: var(--space-sm);
    padding: 1.5rem 0;
  }

  .benefit-item__number {
    font-size: 2rem;
    width: auto;
  }

  .benefit-item__icon {
    margin-right: 0;
  }

  .benefit-item__content {
    width: 100%;
    flex-basis: 100%;
  }

  .benefit-item__title {
    font-size: 1.1rem;
  }

  .benefit-item__text {
    font-size: 0.9rem;
  }

  /* Resource items: compact on mobile */
  .resource-item {
    gap: 0.75rem;
    padding: 1rem 0;
  }

  .resource-item:hover {
    padding-left: 0;
  }

  .resource-item__tag {
    min-width: 52px;
    font-size: 0.75rem;
    padding: 3px 8px;
  }

  .resource-item__title {
    font-size: 0.95rem;
  }

  .resource-item__text {
    font-size: 0.875rem;
  }

  .resource-item__arrow {
    display: none;
  }

  /* Entry test rows: mobile sizing */
  .entry-test-row__abbr {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  /* Footer: stack links and center on mobile */
  .footer__links {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  .footer__bottom {
    align-items: center;
    text-align: center;
  }

  .footer__watermark {
    font-size: clamp(2.5rem, 12vw, 5rem);
    bottom: 0;
  }

  .footer__brand-desc {
    font-size: 0.9rem;
  }

  .footer__social-link {
    width: 42px;
    height: 42px;
  }

  /* Feature row text: bump size for readability */
  .feature-row__title {
    font-size: 1.65rem;
  }

  .feature-row__desc {
    font-size: 1.05rem;
    line-height: 1.6;
  }

  /* About Vision: mobile */
  .about-vision__quote p {
    font-size: clamp(1.25rem, 5.5vw, 1.75rem);
  }

  /* Buttons: ensure touch targets */
  .btn-primary,
  .btn-secondary {
    padding: 0.75rem 1.75rem;
    font-size: 0.9rem;
  }

  .btn-lg {
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
  }

  /* Community CTA: mobile quote */
  .community-cta__quote p {
    font-size: clamp(1.25rem, 5.5vw, 1.75rem);
  }

  /* Theme toggle: slightly smaller on small phones */
  .nav__theme-toggle {
    width: 36px;
    height: 36px;
  }

  .nav__theme-toggle svg {
    width: 16px;
    height: 16px;
  }
}

/* ------ Phones & small tablets (max 767px) ------ */
@media (max-width: 767px) {

  /* Gooey morph: left-align on mobile so text doesn't clip offscreen */
  .gooey-morph {
    max-width: 100% !important;
  }

  .gooey-morph__text {
    left: 0 !important;
    transform: none !important;
  }

  /* Wave background: disable on phones for performance */
  .hero__waves {
    display: none;
  }

  /* Founder images: cap for tablet range */
  .founder-row__image {
    max-width: 220px;
  }

  /* Testimonial cards: reset constraints */
  .card--testimonial {
    min-width: 0;
    max-width: none;
  }

  /* Footer: center copyright + watermark on phones */
  .footer__bottom {
    align-items: center;
    text-align: center;
  }

  .footer__watermark {
    bottom: -1%;
  }

  /* Footer top: stack on mobile */
  .footer__top {
    gap: var(--space-xl);
  }

  /* Guest card: more padding */
  .guest-card {
    padding: var(--space-md);
  }

  /* Section padding: ensure breathing room */
  .section {
    padding: clamp(3rem, 8vh, var(--section-py)) 0;
  }

  /* Origin story: adjust bg for mobile */
  .origin-hero__bg img {
    opacity: 0.25;
    object-position: center 20%;
  }

  .origin-hero__text p {
    font-size: 1rem;
    line-height: 1.75;
  }

  /* Nav right: proper gap between theme toggle and hamburger */
  .nav__right {
    gap: 0.25rem;
  }

  /* Podcast spotlight: stack properly */
  .podcast-spotlight__featured-title {
    font-size: 1.15rem;
  }

  .podcast-spotlight__featured-desc {
    font-size: 0.9rem;
  }

  /* Featured episode: compact text */
  .featured-episode__title {
    font-size: 1.15rem;
  }

  .featured-episode__desc {
    font-size: 0.9rem;
  }

  /* Episode card: compact */
  .episode-card__title {
    font-size: 0.92rem;
  }

  /* Team profile cards: ensure text doesn't overflow */
  .team-profile__body {
    padding: var(--space-sm) var(--space-md) var(--space-md);
  }

  .team-profile__desc {
    font-size: 0.85rem;
  }

  /* Join team CTA: responsive text */
  .join-team-cta__title {
    font-size: clamp(1.4rem, 5vw, 1.75rem);
  }

  .join-team-cta__text {
    font-size: 0.95rem;
  }

  /* Section header subtitle: full width */
  .section-header__subtitle {
    max-width: 100%;
  }

  /* Hero subtitle: full width */
  .hero__subtitle {
    max-width: 100%;
  }

  /* Animated team: center info */
  .animated-team__info {
    text-align: center;
  }

  .animated-team__bio {
    margin: 0 auto;
    max-width: 100%;
  }

  .animated-team__controls {
    justify-content: center;
  }
}
