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

:root {
  --joy-orange: #F26A21;
  --joy-navy: #0B1B3D;
  --joy-light: #F8F9FA;
  --font-body: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Outfit", ui-sans-serif, system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: #fff;
  color: var(--joy-navy);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--joy-orange); color: #fff; }

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

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font-body); border: none; }

/* ---- NAV ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: all 0.3s ease;
  padding: 8px 0;
}
.nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #f0f0f0;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
  padding: 0;
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  height: 80px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo-link {
  display: flex; align-items: center; transition: opacity 0.3s; text-decoration: none;
}
.nav-logo-link:hover { opacity: 0.8; }
.nav-logo-img { height: 40px; width: auto; object-fit: contain; }
.nav:not(.scrolled) .nav-logo-white { display: block; }
.nav:not(.scrolled) .nav-logo-color { display: none; }
.nav.scrolled .nav-logo-white { display: none; }
.nav.scrolled .nav-logo-color { display: block; }
.nav-logo-text {
  display: flex; align-items: center; transition: opacity 0.3s;
  font-size: 28px; font-weight: 800; letter-spacing: -0.5px; text-decoration: none;
}
.nav:not(.scrolled) .nav-logo-text { color: #fff; }
.nav.scrolled .nav-logo-text { color: var(--joy-navy); }
.nav-logo-text:hover { opacity: 0.8; }
.nav-sup {
  color: var(--joy-orange); font-size: 14px; vertical-align: super;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 14px; font-weight: 500; transition: color 0.2s;
}
.nav:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.9); }
.nav:not(.scrolled) .nav-links a:hover { color: #fff; }
.nav.scrolled .nav-links a { color: #666; }
.nav.scrolled .nav-links a:hover { color: var(--joy-orange); }
.nav-links a.nav-cta {
  padding: 10px 24px; border-radius: 9999px; font-size: 14px; font-weight: 500;
  transition: all 0.3s ease; display: inline-block;
}
.nav:not(.scrolled) .nav-links a.nav-cta {
  background: var(--joy-orange); color: #fff;
}
.nav:not(.scrolled) .nav-links a.nav-cta:hover {
  background: #fff; color: var(--joy-navy);
}
.nav.scrolled .nav-links a.nav-cta {
  background: var(--joy-orange); color: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.nav.scrolled .nav-links a.nav-cta:hover {
  background: var(--joy-navy); color: #fff; box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

/* Mobile nav */
.nav-toggle { display: none; background: none; border: none; padding: 8px; cursor: pointer;
  min-width: 44px; min-height: 44px; align-items: center; justify-content: center;
}
.nav-toggle svg { width: 24px; height: 24px; }
.nav:not(.scrolled) .nav-toggle svg { stroke: #fff; }
.nav.scrolled .nav-toggle svg { stroke: var(--joy-navy); }

/* Mobile menu open state */
.nav-toggle.menu-open {
  position: fixed !important; top: 20px; right: 16px; z-index: 10000;
  pointer-events: auto; -webkit-tap-highlight-color: transparent;
}
.nav .nav-toggle.menu-open svg { stroke: var(--joy-navy) !important; width: 28px; height: 28px; }

.nav-links.menu-open {
  display: flex !important; flex-direction: column; position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff; padding: 100px 32px 32px; z-index: 999;
  gap: 28px; align-items: flex-start; overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.nav-links.menu-open a {
  color: var(--joy-navy) !important; font-size: 28px;
  font-family: var(--font-display); font-weight: 600;
}
.nav-links.menu-open a.nav-cta {
  background: var(--joy-orange) !important; color: #fff !important;
  font-size: 18px; margin-top: 12px;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

/* ---- HERO ---- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  justify-content: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  will-change: transform;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay1 { position: absolute; inset: 0; background: rgba(11,27,61,0.4); mix-blend-mode: multiply; }
.hero-overlay2 { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent, rgba(11,27,61,0.2) 50%, rgba(11,27,61,0.9)); }
.hero-content {
  position: relative; z-index: 10; max-width: 1024px; margin: 0 auto;
  padding: 80px 24px 0; text-align: center;
  animation: fadeUp 0.8s 0.2s ease-out both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-block; margin-bottom: 24px; padding: 6px 16px;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2); border-radius: 9999px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.hero-badge span { color: #fff; font-size: 14px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
.hero h1 {
  font-family: var(--font-display); font-size: clamp(40px, 7vw, 96px); font-weight: 700;
  color: #fff; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 32px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero h1 .accent { color: var(--joy-orange); }
.hero p {
  font-size: clamp(18px, 2.5vw, 24px); color: rgba(255,255,255,0.9);
  font-weight: 300; max-width: 720px; margin: 0 auto;
  text-shadow: 0 1px 10px rgba(0,0,0,0.3);
}
.scroll-indicator {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.7); display: flex; flex-direction: column; align-items: center;
  animation: bobble 2s ease-in-out infinite;
}
@keyframes bobble { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(10px); } }
.scroll-indicator span { font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 500; margin-bottom: 8px; }
.scroll-indicator .line { width: 1px; height: 48px; background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent); }

/* ---- SECTIONS ---- */
.section { padding: 128px 24px; }
@media (max-width: 768px) { .section { padding: 80px 24px; } }
.section-center { max-width: 896px; margin: 0 auto; text-align: center; }
.section-wide { max-width: 1280px; margin: 0 auto; }
.section-dark { background: var(--joy-navy); color: #fff; }
.section-light { background: var(--joy-light); }

.section h2 {
  font-family: var(--font-display); font-size: clamp(32px, 5vw, 60px);
  font-weight: 700; letter-spacing: -0.02em; margin-bottom: 32px; line-height: 1.15;
}
.section .subtitle {
  font-family: var(--font-display); font-size: clamp(18px, 3vw, 30px);
  color: #999; margin-bottom: 48px;
}
.section .body-text {
  font-size: clamp(16px, 1.8vw, 20px); font-weight: 300; line-height: 1.75;
  color: #666;
}
.section-dark .body-text { color: rgba(255,255,255,0.75); }
.section .body-text p + p { margin-top: 24px; }
.section .callout {
  font-weight: 500; color: var(--joy-navy); font-size: clamp(20px, 2.5vw, 28px);
  margin-top: 48px;
}
.section-dark .callout { color: #fff; }
.callout .accent { color: var(--joy-orange); }
.label {
  font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--joy-orange); margin-bottom: 16px;
}

/* Text highlight */
.text-highlight { position: relative; z-index: 1; white-space: nowrap; font-weight: 700; }
.text-highlight::after {
  content: ''; position: absolute; left: -2%; bottom: 10%; width: 104%; height: 30%;
  background: var(--joy-orange); opacity: 0.2; z-index: -1; border-radius: 2px;
  transition: opacity 0.3s ease;
}
.text-highlight:hover::after { opacity: 0.4; }

/* ---- TWO COLUMN GRID ---- */
.grid-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; gap: 48px; }
  .grid-2 .order-swap { order: -1; }
}
.grid-img {
  position: relative; border-radius: 16px; overflow: hidden;
  aspect-ratio: 4/5; box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.grid-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease;
}
.grid-img:hover img { transform: scale(1.05); }
.grid-img .img-overlay {
  position: absolute; inset: 0; background: rgba(11,27,61,0.2);
  mix-blend-mode: overlay; transition: opacity 0.7s; pointer-events: none;
}
.grid-img:hover .img-overlay { opacity: 0; }

/* Podcast image overlay */
.podcast-overlay {
  position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 32px;
  background: linear-gradient(to top, rgba(11,27,61,0.9), rgba(11,27,61,0.2) 40%, transparent);
  pointer-events: none;
}
.pulse-dot {
  display: flex; align-items: center; gap: 8px; color: #fff;
}
.pulse-dot .dot {
  position: relative; width: 12px; height: 12px;
}
.pulse-dot .dot::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: var(--joy-orange); animation: ping 1.5s cubic-bezier(0,0,0.2,1) infinite;
}
.pulse-dot .dot::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: var(--joy-orange);
}
@keyframes ping { 75%,100% { transform: scale(2); opacity: 0; } }
.pulse-dot span { font-weight: 500; text-transform: uppercase; font-size: 13px; letter-spacing: 0.05em; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 32px; border-radius: 9999px; font-weight: 500; font-size: 16px;
  transition: all 0.3s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-navy { background: var(--joy-navy); color: #fff; }
.btn-navy:hover { background: var(--joy-orange); }
.btn-orange { background: var(--joy-orange); color: #fff; }
.btn-orange:hover { background: var(--joy-navy); }
.btn-white { background: var(--joy-orange); color: #fff; }
.btn-white:hover { background: #fff; color: var(--joy-navy); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
.btn svg { width: 20px; height: 20px; transition: transform 0.3s; }
.btn:hover svg { transform: translateX(4px); }

.link-btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 500; font-size: 18px; transition: color 0.2s;
}
.link-btn:hover { color: var(--joy-orange); }
.link-btn .underline-text { border-bottom: 2px solid var(--joy-orange); padding-bottom: 4px; }
.link-btn svg { width: 20px; height: 20px; transition: transform 0.3s; }
.link-btn:hover svg { transform: translateX(8px); }
.link-btn-white { color: #fff; }

/* Podcast buttons */
.podcast-btns { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 48px; }
.podcast-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border: 1px solid #e0e0e0; border-radius: 9999px;
  font-weight: 500; font-size: 15px; transition: all 0.3s;
}
.podcast-btn:hover { border-color: var(--joy-orange); background: var(--joy-orange); color: #fff; }
.podcast-btn svg { width: 20px; height: 20px; transition: transform 0.3s; }
.podcast-btn:hover svg { transform: scale(1.1); }

/* ---- ECOSYSTEM BG ---- */
.eco-bg {
  position: absolute; top: 0; right: 0; width: 50%; height: 100%;
  opacity: 0.1; pointer-events: none;
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--joy-navy); color: rgba(255,255,255,0.8); padding: 80px 24px 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.site-footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
  align-items: start;
}
.site-footer-brand { max-width: 320px; }
.site-footer-logo {
  height: 56px; width: auto; object-fit: contain; margin-bottom: 20px;
}
.site-footer-tagline {
  font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: 24px;
}
.site-footer-social { display: flex; gap: 16px; }
.site-footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7);
  transition: all 0.3s ease;
}
.site-footer-social a:hover {
  background: var(--joy-orange); color: #fff; transform: translateY(-2px);
}
.site-footer-heading {
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  color: #fff; text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.site-footer-nav { display: flex; flex-direction: column; gap: 12px; }
.site-footer-nav a {
  color: rgba(255,255,255,0.6); font-size: 15px; transition: color 0.3s;
}
.site-footer-nav a:hover { color: var(--joy-orange); }
.site-footer-contact { display: flex; flex-direction: column; gap: 8px; }
.site-footer-name { font-weight: 600; font-size: 16px; margin-bottom: 0; color: #fff; }
.site-footer-title { opacity: 0.6; line-height: 1.6; font-size: 14px; margin-bottom: 8px; }
.site-footer-contact a {
  color: rgba(255,255,255,0.7); font-weight: 500; font-size: 15px; transition: color 0.3s;
}
.site-footer-contact a:hover { color: var(--joy-orange); }
.footer-cta {
  display: inline-block; margin-top: 8px; padding: 10px 20px;
  background: var(--joy-orange); color: #fff !important; border-radius: 9999px;
  font-size: 14px; font-weight: 500; transition: all 0.3s ease;
}
.footer-cta:hover { background: #fff; color: var(--joy-navy) !important; transform: translateY(-2px); }
.site-footer-bottom {
  max-width: 1280px; margin: 64px auto 0; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1); text-align: center; font-size: 14px; opacity: 0.6;
}
@media (max-width: 968px) {
  .site-footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .site-footer-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ---- SCROLL ANIMATIONS ---- */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.95); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Animated Text Highlight */
.text-highlight { position: relative; z-index: 1; white-space: nowrap; font-weight: 700; display: inline-block; }
.text-highlight::after {
  content: ''; position: absolute; left: -2%; bottom: 10%; width: 0; height: 30%;
  background: var(--joy-orange); opacity: 0.3; z-index: -1; border-radius: 2px;
  transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.text-highlight.is-visible::after { width: 104%; }

/* Podcast Equalizer Animation */
.equalizer { display: flex; align-items: flex-end; gap: 4px; height: 24px; margin-bottom: 16px; }
.eq-bar { width: 4px; background: var(--joy-orange); border-radius: 2px; animation: eq 0.8s ease-in-out infinite alternate; }
.eq-bar:nth-child(1) { height: 40%; animation-delay: 0.1s; }
.eq-bar:nth-child(2) { height: 80%; animation-delay: 0.4s; }
.eq-bar:nth-child(3) { height: 60%; animation-delay: 0.2s; }
.eq-bar:nth-child(4) { height: 100%; animation-delay: 0.6s; }
.eq-bar:nth-child(5) { height: 50%; animation-delay: 0.3s; }
@keyframes eq { 0% { height: 20%; } 100% { height: 100%; } }

/* SVG icons inline */
.icon { width: 20px; height: 20px; display: inline-block; vertical-align: middle; }

/* Inner Page Nav Override */
.nav-inner-page {
  background: var(--joy-navy);
}
.nav-inner-page.scrolled {
  background: rgba(255,255,255,0.95);
}

/* ============================================
   REDESIGNED HOMEPAGE — Split Hero
   ============================================ */
.hero-split {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh;
  position: relative; overflow: hidden;
}
.hero-split-content {
  display: flex; align-items: center; justify-content: center;
  padding: 120px 64px 80px; background: var(--joy-navy);
  position: relative; z-index: 2;
}
.hero-split-text { max-width: 560px; }
.hero-badge-new {
  display: inline-block; margin-bottom: 32px; padding: 8px 20px;
  background: rgba(242,106,33,0.15); border: 1px solid rgba(242,106,33,0.3);
  border-radius: 9999px;
}
.hero-badge-new span {
  color: var(--joy-orange); font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.hero-headline {
  font-family: var(--font-display); font-size: clamp(36px, 4vw, 56px);
  font-weight: 700; color: #fff; line-height: 1.15; letter-spacing: -0.02em;
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.2s ease-out both;
}
.hero-accent {
  color: var(--joy-orange); display: block;
}
.hero-sub {
  font-size: clamp(16px, 1.8vw, 20px); color: rgba(255,255,255,0.7);
  font-weight: 300; margin-bottom: 40px; line-height: 1.6;
  animation: fadeUp 0.8s 0.4s ease-out both;
}
.hero-cta-row {
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
  animation: fadeUp 0.8s 0.6s ease-out both;
}
.hero-cta-row .link-btn { color: #fff; }
.hero-cta-row .link-btn .underline-text { border-color: var(--joy-orange); }

.hero-split-image {
  position: relative; overflow: hidden;
}
.hero-split-image img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center center;
  animation: heroImageZoom 20s ease-in-out infinite alternate;
}
@keyframes heroImageZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}
.hero-image-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(11,27,61,0.25) 0%, transparent 50%),
    linear-gradient(to top, rgba(11,27,61,0.85) 0%, rgba(11,27,61,0.4) 18%, transparent 40%),
    linear-gradient(to bottom, rgba(11,27,61,0.6) 0%, transparent 25%);
  pointer-events: none;
}
.hero-image-accent {
  position: absolute; bottom: -2px; left: 0; width: 100%; height: 120px;
  background: linear-gradient(to top, var(--joy-navy), transparent);
  pointer-events: none; display: none;
}

@media (max-width: 968px) {
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-split-content { padding: 140px 32px 64px; order: 2; }
  .hero-split-image { height: 50vh; order: 1; }
}
@media (max-width: 600px) {
  .hero-split-content { padding: 120px 24px 48px; }
  .hero-cta-row { gap: 20px; }
}

/* ============================================
   CHAPTER SECTIONS — Storytelling layout
   ============================================ */
.chapter { padding: 120px 24px; position: relative; overflow: hidden; }
.chapter-white { background: #fff; }
.chapter-dark { background: var(--joy-navy); }
.chapter-light { background: var(--joy-light); }

.chapter-inner { max-width: 896px; margin: 0 auto; text-align: center; }
.chapter-inner-wide { max-width: 1280px; margin: 0 auto; }

.chapter-label {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--joy-orange); margin-bottom: 20px;
}
.chapter-title {
  font-family: var(--font-display); font-size: clamp(32px, 5vw, 60px);
  font-weight: 700; letter-spacing: -0.02em; margin-bottom: 32px;
  line-height: 1.12; color: var(--joy-navy);
}
.chapter-subtitle {
  font-family: var(--font-display); font-size: clamp(18px, 2.5vw, 26px);
  color: #999; margin-bottom: 56px; text-align: center; font-weight: 300;
}
.chapter-body {
  font-size: clamp(17px, 1.8vw, 20px); font-weight: 300; line-height: 1.8;
  color: #555; text-align: center; max-width: 760px; margin: 0 auto;
}
.chapter-body p + p { margin-top: 24px; }

.chapter-callout {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(22px, 3vw, 32px); color: var(--joy-navy);
  margin-top: 64px; text-align: center;
}
.chapter-callout .accent { color: var(--joy-orange); }

/* Section title left-aligned for grid layouts */
.section-title-left {
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 48px);
  font-weight: 700; letter-spacing: -0.02em; margin-bottom: 24px;
  line-height: 1.15; color: var(--joy-navy);
}

/* ---- Stat cards row ---- */
.stat-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 64px; margin-bottom: 48px;
}
.stat-card {
  background: var(--joy-light); border-radius: 16px; padding: 32px 24px;
  text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(11,27,61,0.06);
}
.stat-card:hover {
  transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.stat-icon {
  width: 48px; height: 48px; margin: 0 auto 16px;
  color: var(--joy-orange);
}
.stat-icon svg { width: 100%; height: 100%; }
.stat-text {
  font-size: 16px; color: #555; line-height: 1.6; font-weight: 400;
}
@media (max-width: 768px) {
  .stat-row { grid-template-columns: 1fr; }
}

/* ---- Pull quote ---- */
.pull-quote {
  position: relative; margin: 64px auto; max-width: 800px;
  padding: 48px 48px 48px 80px;
  background: rgba(242,106,33,0.08); border-radius: 20px;
  border-left: 4px solid var(--joy-orange);
}
.pull-quote-mark {
  position: absolute; top: 20px; left: 24px;
  font-family: var(--font-display); font-size: 80px; font-weight: 700;
  color: var(--joy-orange); opacity: 0.4; line-height: 1;
}
.pull-quote blockquote {
  font-family: var(--font-display); font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 500; color: #fff; line-height: 1.5; font-style: italic;
}
@media (max-width: 600px) {
  .pull-quote { padding: 32px 24px 32px 48px; }
  .pull-quote-mark { font-size: 60px; left: 12px; }
}

/* ---- Insight cards grid ---- */
.chapter-grid-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  margin-top: 48px;
}
.insight-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 40px 32px; text-align: left;
  transition: transform 0.3s, border-color 0.3s;
}
.insight-card:hover {
  transform: translateY(-4px); border-color: var(--joy-orange);
}
.insight-number {
  font-family: var(--font-display); font-size: 48px; font-weight: 700;
  color: var(--joy-orange); opacity: 0.5; margin-bottom: 16px; line-height: 1;
}
.insight-card p {
  font-size: 18px; color: rgba(255,255,255,0.8); line-height: 1.7; font-weight: 300;
}
@media (max-width: 768px) {
  .chapter-grid-2 { grid-template-columns: 1fr; }
}

/* ---- Big statement ---- */
.chapter-big-statement {
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 52px);
  font-weight: 700; text-align: center; margin-top: 80px;
  color: #fff; line-height: 1.2;
}
.chapter-big-statement em {
  color: var(--joy-orange); font-style: italic;
}

/* ---- Ecosystem grid ---- */
.eco-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 16px;
}
.eco-card {
  background: #fff; border-radius: 20px; padding: 40px 28px;
  text-align: center; border: 1px solid rgba(11,27,61,0.06);
  transition: all 0.4s ease; position: relative; overflow: hidden;
}
.eco-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--joy-orange); transform: scaleX(0);
  transition: transform 0.4s ease; transform-origin: left;
}
.eco-card:hover::before { transform: scaleX(1); }
.eco-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
.eco-icon {
  width: 56px; height: 56px; margin: 0 auto 20px;
  background: rgba(242,106,33,0.1); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--joy-orange); transition: all 0.3s;
}
.eco-card:hover .eco-icon { background: var(--joy-orange); color: #fff; }
.eco-icon svg { width: 28px; height: 28px; }
.eco-card h3 {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  color: var(--joy-navy); margin-bottom: 8px;
}
.eco-card p { font-size: 15px; color: #777; line-height: 1.6; margin-bottom: 20px; }
.eco-card a {
  font-size: 14px; font-weight: 600; color: var(--joy-orange);
  text-transform: uppercase; letter-spacing: 0.05em;
  transition: color 0.3s;
}
.eco-card a:hover { color: var(--joy-navy); }
@media (max-width: 968px) { .eco-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .eco-grid { grid-template-columns: 1fr; } }

/* ---- ALIGN split layout ---- */
.align-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.align-services { display: flex; flex-direction: column; gap: 24px; }
.align-service-card {
  background: #fff; border-radius: 16px; padding: 32px;
  border: 1px solid rgba(11,27,61,0.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.align-service-card h4 {
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  color: var(--joy-orange); margin-bottom: 16px; text-transform: uppercase;
  letter-spacing: 0.05em;
}
.align-service-card ul {
  list-style: none; padding: 0;
}
.align-service-card li {
  position: relative; padding-left: 20px; margin-bottom: 10px;
  font-size: 15px; color: #555; line-height: 1.6;
}
.align-service-card li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--joy-orange); opacity: 0.5;
}
@media (max-width: 768px) {
  .align-split { grid-template-columns: 1fr; }
}

/* ---- Quote flow with arrows ---- */
.quote-flow {
  display: flex; flex-direction: column; align-items: center; gap: 0;
  margin-top: 48px;
}
.quote-flow-item { width: 100%; max-width: 800px; }
.quote-flow-item .pull-quote { margin: 0; }
.quote-flow-item .insight-card { max-width: 800px; margin: 0 auto; text-align: center; }
.quote-flow-arrow {
  display: flex; justify-content: center; padding: 16px 0;
  opacity: 0.6;
}

/* ---- FOUNDING SPONSORS ---- */
.sponsors-section {
  background: linear-gradient(180deg, #FDF0E2 0%, #F5DCC3 40%, #E8C9A0 100%);
  padding: 80px 0 64px;
  text-align: center;
}
.sponsors-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--joy-navy);
  margin-bottom: 48px;
  letter-spacing: -0.5px;
}
.sponsors-tier-label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--joy-navy);
  opacity: 0.6;
  margin-bottom: 24px;
}
.sponsors-title-sponsor {
  margin-bottom: 48px;
}
.sponsors-title-logo {
  max-width: 580px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 56px 64px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sponsors-title-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.sponsors-title-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.sponsors-divider {
  width: 120px;
  height: 2px;
  background: var(--joy-navy);
  opacity: 0.15;
  margin: 0 auto 40px;
}
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
a.sponsor-card, a.sponsors-title-logo {
  text-decoration: none;
  display: flex;
}
.sponsor-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sponsor-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.sponsor-card img {
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;
  filter: none;
  transition: filter 0.3s ease;
}
@media (max-width: 768px) {
  .sponsors-section { padding: 56px 16px 48px; }
  .sponsors-heading { margin-bottom: 32px; }
  .sponsors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .sponsor-card { padding: 16px; min-height: 90px; }
  .sponsor-card img { max-height: 55px; }
  .sponsors-title-logo { max-width: 300px; padding: 28px 36px; }
  .sponsors-title-sponsor { margin-bottom: 36px; }
}
@media (max-width: 480px) {
  .sponsors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .sponsor-card { padding: 12px; min-height: 80px; }
  .sponsor-card img { max-height: 48px; }
  .sponsors-title-logo { max-width: 260px; padding: 24px 28px; }
}
