/* ===========================================================
   Wali Khan — Personal Finance & Investing
   Dark, minimal, editorial — inspired by muzamilhasan.com
   =========================================================== */

@font-face {
  font-family: 'Fraunces';
  src: url('../assets/fonts/fraunces-var.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/inter-var.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
}

:root {
  --bg: #0d1310;
  --bg-2: #121a16;
  --surface: #161f1a;
  --surface-2: #1b251f;
  --line: rgba(255,255,255,0.09);
  --line-strong: rgba(255,255,255,0.16);

  --text: #ecf2ee;
  --text-soft: #9db0a6;
  --text-dim: #6f827a;

  --jade: #57c99f;
  --jade-bright: #6fe0b4;
  --jade-deep: #2f8f6d;
  --gold: #e9c46a;
  --teal: #4bb3b3;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 11px;
  --radius-pill: 999px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1160px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  /* subtle jade glows in the backdrop */
  background-image:
    radial-gradient(60% 55% at 82% -5%, rgba(87,201,159,0.10), transparent 60%),
    radial-gradient(50% 45% at 5% 12%, rgba(75,179,179,0.07), transparent 55%);
  background-attachment: fixed;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: rgba(87,201,159,0.28); }

.eyebrow {
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--jade);
  margin-bottom: 1rem;
}
.eyebrow-light { color: var(--jade-bright); }
.accent {
  background: linear-gradient(100deg, var(--jade) 0%, var(--jade-bright) 50%, var(--teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 100%;
  animation: accentShift 8s ease-in-out infinite;
}
@keyframes accentShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.hero-text em { font-style: italic; color: var(--jade-bright); font-weight: 500; }

/* ===== Reveal-on-scroll ===== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: calc(var(--delay, 0) * 90ms);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .marquee-track { animation: none !important; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem 1.7rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }
.btn-small { padding: 0.58rem 1.2rem; font-size: 0.9rem; }

.btn-primary { background: var(--jade); color: #06120d; box-shadow: 0 8px 24px rgba(87,201,159,0.25); }
.btn-primary:hover { background: var(--jade-bright); box-shadow: 0 12px 30px rgba(87,201,159,0.4); }

.btn-ghost { background: transparent; color: var(--text); border-color: var(--line-strong); }
.btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: var(--jade); color: var(--jade-bright); }

.btn-light { background: var(--gold); color: #1a1406; box-shadow: 0 8px 22px rgba(233,196,106,0.22); }
.btn-light:hover { background: #f2d488; box-shadow: 0 12px 28px rgba(233,196,106,0.34); }

.link-underline {
  font-weight: 600;
  color: var(--jade-bright);
  background-image: linear-gradient(var(--jade), var(--jade));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 100% 1.5px;
  transition: background-size 0.3s var(--ease);
}
.link-underline:hover { background-size: 0% 1.5px; }

/* ===== Nav ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.05rem 0;
  background: rgba(13,19,16,0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: box-shadow 0.3s var(--ease), padding 0.3s var(--ease), border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled { border-bottom-color: var(--line); padding: 0.65rem 0; }
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-logo { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; transition: color 0.3s var(--ease); }
.nav-logo:hover { color: var(--jade-bright); }
.nav-links { display: flex; gap: 2rem; margin-left: auto; margin-right: 2rem; }
.nav-link { font-weight: 500; font-size: 0.95rem; color: var(--text-soft); position: relative; padding: 0.3rem 0; transition: color 0.3s var(--ease); }
.nav-link:hover { color: var(--text); }
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--jade);
  transition: width 0.3s var(--ease);
}
.nav-link:hover::after { width: 100%; }

.nav-cta-mobile { display: none; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 0.5rem;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--text); transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8.5rem 2rem 3rem;
  max-width: var(--container);
  margin: 0 auto;
}
.hero-inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 6vw, 4.6rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin-bottom: 1.5rem;
}
.hero-text {
  font-size: 1.15rem;
  color: var(--text-soft);
  max-width: 46ch;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-mini-stats {
  display: flex;
  gap: 2.6rem;
  margin-top: 2.8rem;
  flex-wrap: wrap;
}
.mini-stat { display: flex; flex-direction: column; cursor: default; transition: transform 0.35s var(--ease); }
.mini-stat:hover { transform: translateY(-4px); }
.mini-stat strong {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
  transition: color 0.35s var(--ease);
}
.mini-stat:hover strong { color: var(--jade-bright); }
.mini-stat span { font-size: 0.8rem; color: var(--text-dim); margin-top: 0.35rem; letter-spacing: 0.02em; }

/* Hero photo */
.hero-photo { position: relative; justify-self: center; width: 100%; max-width: 380px; }
.photo-shape {
  position: absolute;
  inset: -6% -6% 4% 6%;
  background: linear-gradient(150deg, var(--jade-deep), var(--teal));
  border-radius: 46% 54% 58% 42% / 40% 44% 56% 60%;
  filter: blur(2px);
  opacity: 0.55;
  animation: blobMove 11s ease-in-out infinite;
  z-index: 0;
}
@keyframes blobMove {
  0%, 100% { border-radius: 46% 54% 58% 42% / 40% 44% 56% 60%; }
  50% { border-radius: 56% 44% 42% 58% / 54% 58% 42% 46%; }
}
.photo-frame {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.hero-photo:hover .photo-frame { transform: translateY(-6px) rotate(-1.2deg); box-shadow: 0 36px 72px rgba(0,0,0,0.6); }
.hero-photo:hover .photo { transform: scale(1.04); }
.photo { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; transition: transform 0.6s var(--ease); background: var(--surface); }
.photo-badge {
  position: absolute;
  z-index: 2;
  bottom: 1.1rem; left: -1rem;
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 12px 28px rgba(0,0,0,0.4);
  animation: floaty 4.5s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ===== Topic ticker ===== */
.marquee-wrap { padding: 1rem 0 4rem; overflow: hidden; }
.marquee-label {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.6rem;
  font-weight: 600;
}
.marquee { position: relative; width: 100%; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 1.2rem; width: max-content; animation: scrollX 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--surface);
  color: var(--text-soft);
  font-weight: 500;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.marquee-item::before { content: '›'; color: var(--jade); font-weight: 700; }
.marquee-item:hover { color: var(--text); border-color: var(--jade); }
@keyframes scrollX { to { transform: translateX(-50%); } }

/* ===== Section shared ===== */
.section { padding: 6.5rem 2rem; max-width: var(--container); margin: 0 auto; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.015em;
}
.section-title-sm {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 500;
  line-height: 1.14;
  margin-bottom: 1.5rem;
}
.section-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.8rem; }

/* ===== About ===== */
.about-inner { display: grid; grid-template-columns: 1.15fr 1fr; gap: 4rem; align-items: center; }
.about-copy p { color: var(--text-soft); margin-bottom: 1.2rem; }
.about-actions { display: flex; gap: 1rem; margin-top: 1.7rem; flex-wrap: wrap; }
.credential-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  margin: 0.4rem 0 0.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}
.credential-thumb { flex: 0 0 auto; width: 52px; height: 74px; border-radius: 6px; overflow: hidden; border: 1px solid var(--line-strong); display: block; }
.credential-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.credential-text { display: flex; flex-direction: column; gap: 0.25rem; }
.credential-text strong { font-family: var(--font-display); font-size: 0.96rem; font-weight: 600; color: var(--jade-bright); }
.credential-text span { color: var(--text-dim); font-size: 0.8rem; line-height: 1.4; }
.credential-text .link-underline { font-size: 0.78rem; margin-top: 0.1rem; }
.about-cards { display: grid; gap: 1.1rem; }
.mini-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.7rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.3rem 1.2rem;
  align-items: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.mini-card:hover { transform: translateY(-6px); box-shadow: 0 18px 38px rgba(0,0,0,0.35); border-color: var(--line-strong); }
.mini-card-shape { grid-row: span 2; width: 42px; height: 42px; border-radius: 12px; }
.mini-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; align-self: end; }
.mini-card p { color: var(--text-soft); font-size: 0.92rem; align-self: start; }
.shape-jade { background: linear-gradient(140deg, var(--jade), var(--jade-deep)); }
.shape-gold { background: linear-gradient(140deg, var(--gold), #c99a3a); }
.shape-teal { background: linear-gradient(140deg, var(--teal), #2c7a7a); }

/* ===== Expertise ===== */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem;
}
.expertise-card {
  padding: 1.9rem 1.7rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.expertise-card:hover { transform: translateY(-6px); box-shadow: 0 18px 38px rgba(0,0,0,0.35); border-color: var(--jade); }
.expertise-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  font-size: 1.5rem;
  border-radius: 14px;
  background: rgba(87,201,159,0.12);
  border: 1px solid rgba(87,201,159,0.25);
  margin-bottom: 1.1rem;
}
.expertise-card h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; margin-bottom: 0.4rem; }
.expertise-card p { color: var(--text-soft); font-size: 0.94rem; }

/* ===== Brands ===== */
.brands-lead { color: var(--text-soft); font-size: 1.05rem; max-width: 58ch; margin: -1.4rem 0 2.6rem; }
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.1rem;
}
.brand-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  padding: 1.8rem 1.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.brand-card:hover { transform: translateY(-6px); box-shadow: 0 18px 38px rgba(0,0,0,0.35); border-color: var(--jade); background: var(--surface-2); }
.brand-logo {
  width: 100px; height: 100px;
  border-radius: 20px;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  padding: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
  transition: transform 0.45s var(--ease);
}
.brand-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.brand-card:hover .brand-logo { transform: translateY(-16px) scale(1.05); }
.brand-reveal {
  position: absolute;
  left: 0; right: 0; bottom: 16px;
  display: flex; flex-direction: column; align-items: center; gap: 0.1rem;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  pointer-events: none;
}
.brand-card:hover .brand-reveal { opacity: 1; transform: translateY(0); }
.brand-name { font-family: var(--font-display); font-size: 1.08rem; font-weight: 600; color: var(--jade-bright); letter-spacing: -0.01em; }
.brand-cat { font-size: 0.72rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-dim); }

/* ===== Speaking gallery ===== */
.speaking-lead { color: var(--text-soft); font-size: 1.05rem; max-width: 60ch; margin: -1.4rem 0 2.6rem; }
.speaking-carousel { position: relative; }
.speaking-grid {
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
}
.speaking-grid::-webkit-scrollbar { display: none; }
.speaking-item {
  position: relative;
  flex: 0 0 auto;
  width: min(340px, 72vw);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  background: var(--surface);
  scroll-snap-align: start;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(13,19,16,0.72);
  backdrop-filter: blur(4px);
  border: 1px solid var(--line-strong);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.carousel-arrow:hover { background: var(--jade); color: #06120d; }
.carousel-prev { left: 0.6rem; }
.carousel-next { right: 0.6rem; }
.carousel-dots { display: flex; justify-content: center; gap: 0.55rem; margin-top: 1.4rem; }
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  padding: 0;
  border: none;
  background: var(--line-strong);
  cursor: pointer;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.carousel-dot.is-active { background: var(--jade); transform: scale(1.3); }
.speaking-item img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; transition: transform 0.5s var(--ease); }
.speaking-item:hover img { transform: scale(1.05); }
.speaking-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.1rem 1rem 0.9rem;
  font-size: 0.9rem; font-weight: 600; color: #fff;
  background: linear-gradient(transparent, rgba(0,0,0,0.78));
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.speaking-item:hover .speaking-cap { opacity: 1; transform: translateY(0); }

/* ===== Audience / stats ===== */
.audience {
  max-width: var(--container);
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(87,201,159,0.10), transparent 55%),
    var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 5rem 3rem;
}
.audience-inner { max-width: 960px; margin: 0 auto; }
.section-title-light { color: var(--text); }
.audience-lead { color: var(--text-soft); font-size: 1.1rem; max-width: 54ch; margin-top: 1rem; }
.audience-head { margin-bottom: 3rem; }

.stat-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.1rem; margin-bottom: 2.4rem; }
.stat-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.4rem;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.stat-box:hover { transform: translateY(-6px); background: var(--surface-2); border-color: var(--jade); }
.stat-num { display: block; font-family: var(--font-display); font-size: 2.5rem; font-weight: 600; color: var(--jade-bright); line-height: 1; }
.stat-name { display: block; font-weight: 600; font-size: 0.95rem; margin-top: 0.7rem; }
.stat-meta { display: block; font-size: 0.8rem; color: var(--text-dim); margin-top: 0.25rem; }

.platform-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.4rem; }
.platform-pill {
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.4rem;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.platform-pill:hover { background: var(--surface-2); border-color: var(--jade); transform: translateY(-3px); }
.platform-name { font-weight: 600; font-size: 0.95rem; }
.platform-handle { font-size: 0.82rem; color: var(--text-dim); }

.audience-cta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.8rem 2rem;
}
.audience-cta h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; margin-bottom: 0.2rem; }
.audience-cta p { color: var(--text-soft); font-size: 0.92rem; }

/* ===== Language switch ===== */
.lang-switch {
  display: inline-flex;
  gap: 0.3rem;
  padding: 0.35rem;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}
.lang-btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-soft);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.3s var(--ease), background 0.3s var(--ease);
}
.lang-btn:hover { color: var(--text); }
.lang-btn.is-active { background: var(--jade); color: #06120d; }
.lang-btn span[dir="rtl"] { font-size: 1.05rem; }
.lang-note { color: var(--text-dim); font-size: 0.9rem; margin: 0 0 2.2rem; }
.lang-note strong { color: var(--text-soft); }
.lang-grid[hidden] { display: none; }

/* ===== Videos ===== */
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.video-card { display: block; }
.video-thumb {
  aspect-ratio: 16/9;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.video-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-thumb .play {
  position: relative; z-index: 1;
  width: 58px; height: 58px;
  background: rgba(13,19,16,0.6);
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.05rem; padding-left: 3px;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}
.video-card:hover .video-thumb { transform: translateY(-4px); box-shadow: 0 18px 36px rgba(0,0,0,0.4); }
.video-card:hover .play { transform: scale(1.14); background: var(--jade); color: #06120d; border-color: transparent; }
.video-tag { font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--jade); font-weight: 600; margin-bottom: 0.4rem; }
.video-card h3 { font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; line-height: 1.3; transition: color 0.3s var(--ease); }
.video-card:hover h3 { color: var(--jade-bright); }

/* ===== Connect band ===== */
.connect-band {
  max-width: var(--container);
  margin: 0 auto 2rem;
  padding: 4.5rem 3rem 5rem;
  border-radius: var(--radius-xl);
  text-align: center;
  border: 1px solid var(--line);
  background:
    radial-gradient(90% 130% at 15% 0%, rgba(75,179,179,0.16), transparent 55%),
    radial-gradient(90% 130% at 90% 20%, rgba(87,201,159,0.16), transparent 55%),
    var(--bg-2);
  overflow: hidden;
  position: relative;
}
.connect-eyebrow {
  font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--jade); margin-bottom: 0.8rem;
}
.connect-title { font-family: var(--font-display); font-size: clamp(1.9rem, 3.6vw, 2.7rem); font-weight: 500; }
.connect-sub { color: var(--text-soft); margin: 0.7rem auto 0; font-size: 1rem; max-width: 52ch; }

.connect-grid {
  margin-top: 2.8rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.connect-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  text-align: left;
  padding: 1.6rem 1.6rem 1.4rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.connect-card:hover { transform: translateY(-6px); border-color: var(--jade); background: var(--surface-2); }
.connect-card-ic { font-size: 1.5rem; margin-bottom: 0.5rem; }
.connect-card-name { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; }
.connect-card-handle { font-size: 0.88rem; color: var(--text-dim); }
.connect-card-go { margin-top: 0.6rem; font-size: 0.85rem; font-weight: 600; color: var(--jade-bright); }

/* ===== Contact ===== */
.contact { text-align: center; }
.contact-text { color: var(--text-soft); font-size: 1.1rem; max-width: 50ch; margin: 1rem auto 3rem; }
.contact-form {
  max-width: 560px; margin: 0 auto 3rem;
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 50px rgba(0,0,0,0.35);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.85rem; margin-bottom: 0.45rem; color: var(--text-soft); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.8rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.97rem;
  background: var(--bg-2);
  color: var(--text);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-dim); }
.form-group select { appearance: none; -webkit-appearance: none; cursor: pointer; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--jade); box-shadow: 0 0 0 4px rgba(87,201,159,0.15);
}
.contact-form .btn { width: 100%; margin-top: 0.3rem; }
.form-note { font-size: 0.85rem; color: var(--text-dim); margin-top: 1rem; text-align: center; }

/* ===== Press & Podcasts ===== */
.press-lead { color: var(--text-soft); font-size: 1.05rem; max-width: 60ch; margin: -1.4rem 0 2.6rem; }
.press-carousel { position: relative; }
.press-grid {
  display: flex;
  gap: 1.6rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
}
.press-grid::-webkit-scrollbar { display: none; }
.press-card { display: block; flex: 0 0 auto; width: min(320px, 78vw); scroll-snap-align: start; }
.press-thumb {
  aspect-ratio: 16/9;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: flex; align-items: flex-end;
  margin-bottom: 1rem;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.press-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.press-kind {
  position: absolute; z-index: 1;
  top: 0.7rem; left: 0.7rem;
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-pill);
  font-size: 0.76rem; font-weight: 600;
  color: #fff;
  background: rgba(13,19,16,0.68);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.25);
}
.press-card:hover .press-thumb { transform: translateY(-4px); box-shadow: 0 18px 36px rgba(0,0,0,0.4); }
.press-card:hover .press-kind { background: var(--jade); color: #06120d; border-color: transparent; }
.press-tag { font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--jade); font-weight: 600; margin-bottom: 0.4rem; }
.press-card h3 { font-family: var(--font-display); font-size: 1.08rem; font-weight: 600; line-height: 1.3; transition: color 0.3s var(--ease); }
.press-card:hover h3 { color: var(--jade-bright); }

/* ===== Community ===== */
.community-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.community-copy p { color: var(--text-soft); margin-bottom: 1.4rem; }
.community-perks { list-style: none; margin: 0 0 1.8rem; display: grid; gap: 0.65rem; }
.community-perks li { position: relative; padding-left: 1.7rem; color: var(--text-soft); }
.community-perks li::before {
  content: '✓';
  position: absolute; left: 0; top: -1px;
  color: var(--jade); font-weight: 700;
}
.community-photos { display: grid; gap: 1rem; }
.community-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 10;
  background: var(--surface);
}
.community-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; transition: transform 0.5s var(--ease); }
.community-photo:hover img { transform: scale(1.05); }
.community-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1rem;
  font-size: 0.85rem; font-weight: 600; color: #fff;
  background: linear-gradient(transparent, rgba(0,0,0,0.78));
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.community-photo:hover .community-cap { opacity: 1; transform: translateY(0); }

/* ===== Newsletter ===== */
.newsletter-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  padding: 3rem 3rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    radial-gradient(80% 130% at 100% 100%, rgba(233,196,106,0.10), transparent 55%),
    var(--bg-2);
}
.newsletter-card > .newsletter-copy,
.newsletter-card > .newsletter-embed { align-self: center; }
.newsletter-lead { color: var(--text-soft); margin-top: 0.8rem; font-size: 1rem; max-width: 42ch; }
.newsletter-input-row { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.newsletter-input-row input {
  flex: 1 1 220px;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.97rem;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.newsletter-input-row input::placeholder { color: var(--text-dim); }
.newsletter-input-row input:focus { outline: none; border-color: var(--jade); box-shadow: 0 0 0 4px rgba(87,201,159,0.15); }
.newsletter-input-row .btn { flex: 0 0 auto; }
.newsletter-note { font-size: 0.82rem; color: var(--text-dim); margin-top: 0.8rem; }
.newsletter-embed { width: 100%; }
.newsletter-embed iframe {
  width: 100%;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}
.post-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1.2rem;
  grid-column: 1 / -1;
  margin-top: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.post-card { display: block; flex: 0 1 200px; max-width: 200px; }
.post-thumb {
  aspect-ratio: 16/9;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm, 10px);
  margin-bottom: 0.6rem;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.post-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.post-card:hover .post-thumb { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(0,0,0,0.4); }
.post-date { font-size: 0.68rem; letter-spacing: 0.07em; text-transform: uppercase; color: var(--jade); font-weight: 600; margin-bottom: 0.25rem; }
.post-card h3 { font-family: var(--font-display); font-size: 0.9rem; font-weight: 600; line-height: 1.3; transition: color 0.3s var(--ease); }
.post-card:hover h3 { color: var(--jade-bright); }
.post-excerpt {
  color: var(--text-dim); font-size: 0.78rem; margin-top: 0.3rem; line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ===== Socials ===== */
.links-lead { color: var(--text-soft); font-size: 1.05rem; max-width: 58ch; margin: -1.4rem 0 2.2rem; }
.social-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.social-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 0 1 110px;
  gap: 0.6rem;
  padding: 1.3rem 0.8rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--surface);
  text-align: center;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
}
.social-tile:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(0,0,0,0.35); border-color: var(--jade); background: var(--surface-2); }
.social-ic {
  width: 2.6rem; height: 2.6rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(87,201,159,0.12);
  border: 1px solid rgba(87,201,159,0.25);
  color: var(--jade);
  transition: color 0.3s var(--ease);
}
.social-ic svg { width: 19px; height: 19px; }
.social-tile:hover .social-ic { color: var(--jade-bright); }
.social-tile span:last-child { font-size: 0.82rem; color: var(--text-soft); transition: color 0.3s var(--ease); }
.social-tile:hover span:last-child { color: var(--jade-bright); }

/* ===== Book a call (Calendly) ===== */
.book { text-align: center; }
.book-text { color: var(--text-soft); font-size: 1.1rem; max-width: 52ch; margin: 1rem auto 2.5rem; }
.calendly-inline-widget {
  min-width: 320px;
  height: 1000px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}
.book-fallback { margin-top: 1rem; }
.book-cta { display: flex; flex-direction: column; align-items: center; gap: 0.9rem; }
.book-cta .btn { min-width: 240px; }
.book-note { color: var(--text-dim); font-size: 0.85rem; }

/* ===== Cursor trail ===== */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--jade);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  will-change: transform, opacity;
  mix-blend-mode: screen;
  box-shadow: 0 0 12px 2px rgba(87,201,159,0.45);
}
@media (prefers-reduced-motion: reduce), (hover: none) {
  .cursor-dot { display: none !important; }
}

/* ===== Footer ===== */
.footer { text-align: center; padding: 3rem 2rem; color: var(--text-dim); font-size: 0.85rem; border-top: 1px solid var(--line); margin-top: 2rem; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .nav-links.open {
    display: flex; position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 1.5rem 2rem; gap: 1.25rem;
    margin: 0;
  }
  .nav-cta-mobile { display: inline-flex; align-self: flex-start; margin-top: 0.4rem; }

  .hero { min-height: auto; padding-top: 7rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .hero-copy { order: 2; }
  .hero-photo { order: 1; max-width: 290px; }
  .hero-text { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-mini-stats { justify-content: center; }
  .photo-badge { left: 0; }

  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .stat-grid .stat-box:last-child { grid-column: 1 / -1; }
  .connect-grid { grid-template-columns: 1fr; }
  .community-inner { grid-template-columns: 1fr; gap: 2.2rem; }
  .newsletter-card { grid-template-columns: 1fr; gap: 1.6rem; padding: 2.4rem 1.6rem; }
  .post-card { flex-basis: calc(50% - 0.6rem); max-width: calc(50% - 0.6rem); }
  .brand-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 1rem; }
  .brand-card { min-height: 184px; padding: 1.4rem 1rem; }
  .brand-logo { width: 96px; height: 96px; }
  .calendly-inline-widget { height: 1150px; }
  .form-row { grid-template-columns: 1fr; }
  .audience { padding: 3.5rem 1.6rem; border-radius: var(--radius-lg); }
  .section { padding: 5rem 1.5rem; }
}
@media (max-width: 480px) {
  .stat-grid { grid-template-columns: 1fr; }
  .hero-mini-stats { gap: 1.6rem; }
  .social-grid { gap: 0.6rem; }
  .social-tile { flex-basis: calc(33.333% - 0.4rem); padding: 0.9rem 0.4rem; gap: 0.45rem; }
  .social-ic { width: 2.2rem; height: 2.2rem; }
  .social-ic svg { width: 16px; height: 16px; }
  .social-tile span:last-child { font-size: 0.72rem; line-height: 1.25; }
}
