/* ============================================================
   Sampoo TV — global stylesheet
   Light theme is the default. Dark theme via [data-theme="dark"].
   ============================================================ */

/* Clash Display (editorial headings) */
@import url("https://api.fontshare.com/v2/css?f[]=clash-display@400,500,600,700&display=swap");
/* Plus Jakarta Sans (body) */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap");

/* ---------- Theme tokens ---------- */
:root,
[data-theme="light"] {
  --bg: #f6f4f0;
  --bg-soft: #efece6;
  --surface: #ffffff;
  --surface-2: #f3f0ea;
  --text: #15110e;
  --text-soft: rgba(21, 17, 14, 0.66);
  --text-faint: rgba(21, 17, 14, 0.45);
  --border: rgba(21, 17, 14, 0.1);
  --border-strong: rgba(21, 17, 14, 0.2);
  --eyebrow-bg: rgba(21, 17, 14, 0.04);
  --nav-bg: rgba(246, 244, 240, 0.95);
  --shadow: 0 18px 50px -24px rgba(21, 17, 14, 0.25);
  --shadow-lg: 0 40px 90px -40px rgba(21, 17, 14, 0.4);
  --grain-opacity: 0.04;
  --blob-opacity: 0.42;
  --hero-veil: radial-gradient(ellipse at center, transparent 0%, rgba(246, 244, 240, 0.55) 72%, var(--bg) 100%);
  --grid-dot: rgba(21, 17, 14, 0.06);
}

[data-theme="dark"] {
  --bg: #0a0a0a;
  --bg-soft: #111111;
  --surface: #161616;
  --surface-2: #1c1c1c;
  --text: #f4f4f5;
  --text-soft: rgba(244, 244, 245, 0.62);
  --text-faint: rgba(244, 244, 245, 0.4);
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.22);
  --eyebrow-bg: rgba(255, 255, 255, 0.03);
  --nav-bg: rgba(10, 10, 10, 0.92);
  --shadow: 0 18px 50px -24px rgba(0, 0, 0, 0.7);
  --shadow-lg: 0 40px 90px -40px rgba(0, 0, 0, 0.85);
  --grain-opacity: 0.05;
  --blob-opacity: 0.5;
  --hero-veil: radial-gradient(ellipse at center, transparent 0%, rgba(10, 10, 10, 0.7) 70%, var(--bg) 100%);
  --grid-dot: rgba(255, 255, 255, 0.06);
}

/* Brand accents — two-shade palette: orange + green only */
:root {
  --orange: #ff6b35;
  --orange-soft: #ff8c42;
  --green: #004F54;
  --green-bright: #007878;
  --green-deep: #00363B;
  --brand-gradient: linear-gradient(120deg, #ff6b35 0%, #004F54 100%);
  --font-display: "Clash Display", "Syne", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --maxw: 1280px;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background-color 0.5s ease, color 0.5s ease;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}
::selection {
  background: rgba(0, 79, 84, 0.3);
  color: #fff;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--brand-gradient);
  border-radius: 999px;
  border: 2px solid var(--bg);
}

/* ---------- Custom cursor ---------- */
@media (hover: hover) and (pointer: fine) {
  body.has-cursor,
  body.has-cursor a,
  body.has-cursor button {
    cursor: none;
  }
}
.cursor-ring,
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 999px;
  mix-blend-mode: difference;
  opacity: 0;
}
.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid #fff;
  transition: opacity 0.3s, background-color 0.3s, border-color 0.3s;
}
.cursor-ring.active {
  background: rgba(255, 255, 255, 0.4);
}
.cursor-dot {
  width: 6px;
  height: 6px;
  background: #fff;
}
@media (hover: none), (pointer: coarse) {
  .cursor-ring,
  .cursor-dot {
    display: none;
  }
}

/* ---------- Film grain (static — no per-frame repaint, keeps scroll smooth) ---------- */
.grain::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: var(--grain-opacity);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Lenis smooth-scroll required styles ---------- */
html.lenis,
html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 640px) {
  .container { padding: 0 32px; }
}
@media (min-width: 1024px) {
  .container { padding: 0 48px; }
}
.section {
  position: relative;
  padding: 40px 0;
}
@media (min-width: 768px) {
  .section { padding: 84px 0; }
}

/* ---------- FAQ accordion ---------- */
.faq { max-width: none; display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  padding: 0 22px;
  transition: border-color 0.25s ease;
}
.faq-item[open] { border-color: var(--border-strong); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text-faint);
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 0 22px; color: var(--text-soft); font-size: 0.95rem; max-width: 68ch; }
.faq-item p a { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid var(--border);
  background: var(--eyebrow-bg);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-soft);
  backdrop-filter: blur(6px);
}
.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--green);
}
.display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
}
.h-xl { font-size: clamp(2.6rem, 7vw, 5.4rem); }
.h-lg { font-size: clamp(2.2rem, 5.5vw, 4rem); }
.h-md { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.text-gradient {
  background: var(--brand-gradient);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-soft);
}
.muted { color: var(--text-soft); }
.section-head { max-width: 640px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 20px; }
.section-head p { margin-top: 18px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: transform 0.3s, background-position 0.4s, border-color 0.3s, background-color 0.3s, color 0.3s;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  color: #fff;
  background-image: linear-gradient(120deg, #ff6b35, #004F54);
  background-size: 180% 180%;
  box-shadow: 0 12px 30px -12px rgba(0, 79, 84, 0.55);
}
.btn-primary:hover { background-position: 100% 0; }
.btn-ghost {
  border: 1px solid var(--border-strong);
  color: var(--text);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--text);
  background: var(--eyebrow-bg);
}

/* ---------- Header / nav ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background-color 0.4s, border-color 0.4s, backdrop-filter 0.4s;
}
.site-header.scrolled {
  background: var(--nav-bg);
  border-bottom-color: var(--border);
}
.nav {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 38px; width: auto; }
.nav-links {
  display: none;
  align-items: center;
  gap: 4px;
}
@media (min-width: 992px) {
  .nav-links { display: flex; }
}
.nav-links a {
  position: relative;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-soft);
  border-radius: 999px;
  transition: color 0.3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 2px;
  height: 2px;
  background: var(--brand-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.theme-toggle {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--eyebrow-bg);
  color: var(--text);
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.theme-toggle:hover { border-color: var(--border-strong); }
.theme-toggle svg { width: 19px; height: 19px; }
.theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: block; }

.nav-cta { display: none; }
@media (min-width: 640px) {
  .nav-cta { display: inline-flex; padding: 11px 20px; font-size: 0.8rem; }
}

.hamburger {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--eyebrow-bg);
}
@media (min-width: 992px) {
  .hamburger { display: none; }
}
.hamburger span {
  position: relative;
  width: 20px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger span::before,
.hamburger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, top 0.3s;
}
.hamburger span::before { top: -6px; }
.hamburger span::after { top: 6px; }
.hamburger.open span { background: transparent; }
.hamburger.open span::before { top: 0; transform: rotate(45deg); }
.hamburger.open span::after { top: 0; transform: rotate(-45deg); }

/* Mobile overlay menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 9vw, 2.8rem);
  padding: 10px 0;
  color: var(--text);
  opacity: 0;
  transform: translateX(-24px);
}
.mobile-menu.open a {
  animation: menuIn 0.5s forwards;
}
.mobile-menu a:nth-child(1) { animation-delay: 0.08s; }
.mobile-menu a:nth-child(2) { animation-delay: 0.14s; }
.mobile-menu a:nth-child(3) { animation-delay: 0.2s; }
.mobile-menu a:nth-child(4) { animation-delay: 0.26s; }
.mobile-menu .btn { margin-top: 28px; align-self: flex-start; font-size: 0.875rem; padding: 14px 28px; opacity: 0; animation: menuIn 0.5s 0.34s forwards; }
.mobile-menu .btn-primary { color: #fff; }
@keyframes menuIn {
  to { opacity: 1; transform: translateX(0); }
}

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--brand-gradient);
  z-index: 60;
}

/* ---------- Reveal animations ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(90px);
  opacity: var(--blob-opacity);
  will-change: transform;
}
.blob-1 { width: 46vw; height: 46vw; max-width: 600px; max-height: 600px; top: -6%; left: -8%; background: var(--orange); }
.blob-2 { width: 42vw; height: 42vw; max-width: 540px; max-height: 540px; top: 8%; right: -6%; background: var(--green); }
.blob-3 { width: 44vw; height: 44vw; max-width: 560px; max-height: 560px; bottom: -16%; left: 26%; background: var(--green-deep); }
.blob-4 { width: 180px; height: 180px; top: 54%; right: 16%; background: var(--green-bright); opacity: calc(var(--blob-opacity) * 0.6); }
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--hero-veil);
}
/* Full container width so the content's left edge aligns with the nav logo.
   Text width is constrained per element instead of by centering the block. */
.hero-content { max-width: var(--maxw); }
.hero-content .hero-title,
.hero-content .hero-sub,
.hero-content .hero-body { margin-left: 0; }
.hero h1 { margin-top: 26px; max-width: 900px; }
.hero .word {
  display: inline-block;
  margin-right: 0.22em;
  opacity: 0;
  transform: translateY(60px);
  filter: blur(14px);
}
.hero-sub {
  margin-top: 28px;
  max-width: 640px;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 500;
  color: var(--text);
}
.hero-body {
  margin-top: 16px;
  max-width: 540px;
  color: var(--text-soft);
}
.hero-ctas {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-faint);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
@media (min-width: 640px) { .scroll-cue { display: flex; } }
.scroll-cue .mouse {
  width: 20px;
  height: 34px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  display: flex;
  justify-content: center;
}
.scroll-cue .mouse span {
  margin-top: 6px;
  width: 4px;
  height: 6px;
  border-radius: 999px;
  background: var(--text-faint);
  animation: cueBounce 1.4s infinite;
}
@keyframes cueBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(6px); opacity: 0.3; }
}

/* ====================================================
   HERO — motion-rich enhancements
   ==================================================== */

/* Rotating conic aurora spotlight behind the headline */
.aurora {
  position: absolute;
  left: 50%;
  top: 36%;
  width: 130vw;
  height: 130vw;
  max-width: 1180px;
  max-height: 1180px;
  border-radius: 999px;
  background: conic-gradient(from 0deg, #ff6b35, #ff8c42, #007878, #004F54, #00363B, #ff6b35);
  filter: blur(130px);
  opacity: calc(var(--blob-opacity) * 0.55);
  will-change: transform;
  animation: auroraSpin 28s linear infinite;
}
@keyframes auroraSpin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
.aurora { transform: translate(-50%, -50%) rotate(0deg); }

/* Faint dot grid for depth, radially masked */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--grid-dot) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 42%, #000 0%, transparent 72%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 42%, #000 0%, transparent 72%);
  opacity: 0.7;
}

/* Floating channel orbs */
.hero-orbs {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.orb {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  white-space: nowrap;
  will-change: transform;
  animation: float 9s ease-in-out infinite;
}
.orb .od { width: 8px; height: 8px; border-radius: 999px; }
.orb-1 { top: 20%; left: 4%; animation-delay: 0s; }
.orb-2 { top: 30%; right: 5%; animation-delay: -2s; }
.orb-3 { bottom: 24%; left: 8%; animation-delay: -4s; }
.orb-4 { bottom: 30%; right: 9%; animation-delay: -6s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}
@media (max-width: 991px) {
  .hero-orbs { display: none; }
}

/* Shimmering badge pill */
.hero-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  overflow: hidden;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--eyebrow-bg);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-soft);
  transition: border-color 0.3s, transform 0.3s;
}
.hero-badge:hover { border-color: var(--border-strong); }
.hero-badge .spark { color: var(--green); }
.hero-badge .pulse {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #007878;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 120, 120, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(0, 120, 120, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 120, 120, 0); }
}
.badge-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.55) 50%, transparent 70%);
  transform: translateX(-120%);
  animation: shine 5s ease-in-out infinite 1.2s;
}
@keyframes shine {
  0%, 55% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

/* Masked headline reveal + panning gradient word */
.hero-title { margin-top: 26px; }
.hero-title .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.12em;
}
.hero-title .word { display: inline-block; margin-right: 0; }
.gradient-pan {
  background: var(--brand-gradient);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: panGrad 7s linear infinite;
  filter: drop-shadow(0 6px 28px rgba(0, 79, 84, 0.22));
}
@keyframes panGrad {
  to { background-position: 220% center; }
}

/* Shine sweep on primary CTA */
.btn-shine { position: relative; overflow: hidden; }
.btn-shine::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, 0.45) 50%, transparent 65%);
  transform: translateX(-130%);
  animation: shine 5.5s ease-in-out infinite 1.6s;
}

/* Trust row under CTAs */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
  color: var(--text-soft);
  font-size: 0.85rem;
}
.hero-trust b { color: var(--text); font-family: var(--font-display); font-weight: 600; }
.hero-trust .sep { width: 4px; height: 4px; border-radius: 999px; background: var(--text-faint); }

@media (prefers-reduced-motion: reduce) {
  .aurora, .orb, .badge-shine, .gradient-pan, .btn-shine::after, .hero-badge .pulse {
    animation: none !important;
  }
}

/* ---------- Generic card ---------- */
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 700px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1000px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  border: 1px solid var(--border);
}
.icon-badge svg { width: 26px; height: 26px; }

/* Problem cards */
.problem-card { padding: 34px; border-left-width: 3px; border-left-style: solid; }
.problem-card .blur-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.25;
}
.problem-card h3 { margin-top: 22px; }
.problem-card p { margin-top: 12px; color: var(--text-soft); }

/* Stats */
.stat-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.6rem, 9vw, 6rem);
  line-height: 1;
  letter-spacing: -0.04em;
}
.stat-label { margin-top: 14px; max-width: 280px; font-size: 0.9rem; color: var(--text-soft); }
.quote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  line-height: 1.25;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 0.5;
  color: var(--border-strong);
}

/* Marquee */
.marquee {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  display: flex;
}
.marquee-track {
  display: flex;
  flex-shrink: 0;
  gap: 40px;
  padding-right: 40px;
  align-items: center;
  animation: marquee 38s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.4rem, 3vw, 2rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--text-faint);
  white-space: nowrap;
}
.marquee-track .star { color: rgba(0, 79, 84, 0.6); }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Channel cards */
.channel-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}
.tilt { transform-style: preserve-3d; will-change: transform; }
.channel-card .glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
  z-index: 2;
}
.channel-card:hover .glow { opacity: 1; }
.channel-banner {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--border);
}
.channel-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.channel-card:hover .channel-banner img { transform: scale(1.05); }
.channel-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.channel-top { display: flex; align-items: center; justify-content: space-between; }
.chip {
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.channel-card h3 { margin-top: 26px; }
.channel-card h3 .net { color: var(--text-faint); }
.channel-card p { margin-top: 10px; font-size: 0.9rem; color: var(--text-soft); }
.watch-link {
  margin-top: auto;
  padding-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
}
.watch-link svg { width: 16px; height: 16px; }
.channel-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}
.channel-card:hover .channel-bar { transform: scaleX(1); }

/* Show cards */
.show-card { transition: transform 0.5s; }
.show-card:hover { transform: translateY(-8px); }
.show-art {
  position: relative;
  height: 210px;
  overflow: hidden;
}
.show-art .sheen {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.3), transparent 55%);
}
.show-art .fade {
  position: absolute;
  inset: auto 0 0 0;
  height: 90px;
  background: linear-gradient(to top, var(--surface), transparent);
}
.show-art .tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(6px);
}
.show-art .title {
  position: absolute;
  bottom: 16px;
  left: 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.show-card .body { padding: 26px; }
.show-card .body p { font-size: 0.9rem; color: var(--text-soft); }

/* Feature cards (youtube-first) */
.feature-card { padding: 28px; }
.feature-card h3 { margin-top: 22px; font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; }
.feature-card p { margin-top: 10px; font-size: 0.9rem; color: var(--text-soft); }

/* Donut */
.donut-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 34px;
}
.donut {
  position: relative;
  width: 220px;
  height: 220px;
  border-radius: 999px;
}
.donut .hole {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 110px;
  height: 110px;
  border-radius: 999px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.legend { margin-top: 30px; width: 100%; display: grid; gap: 12px; }
.legend li { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; color: var(--text-soft); }
.legend .sw { width: 12px; height: 12px; border-radius: 3px; flex-shrink: 0; }

/* Moat cards */
.moat-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
}
@media (min-width: 700px) { .moat-grid { grid-template-columns: 1fr 1fr; } }
.moat-card {
  background: var(--surface);
  padding: 34px;
  transition: background-color 0.4s;
}
.moat-card:hover { background: var(--surface-2); }
.moat-head { display: flex; align-items: baseline; gap: 16px; }
.moat-num { font-family: var(--font-display); font-weight: 700; font-size: 2.8rem; line-height: 1; opacity: 0.25; }
.moat-card:hover .moat-num { opacity: 0.6; }
.moat-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; }
.moat-card p { margin-top: 14px; max-width: 440px; color: var(--text-soft); }
.moat-line { margin-top: 24px; height: 1px; transform: scaleX(0); transform-origin: left; transition: transform 0.5s; }
.moat-card:hover .moat-line { transform: scaleX(1); }

/* Founder cards */
.founder-card { padding: 36px; text-align: center; }
.avatar { position: relative; width: 128px; height: 128px; margin: 0 auto; }
.avatar .ring-glow {
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  opacity: 0;
  filter: blur(14px);
  transition: opacity 0.5s;
}
.founder-card:hover .ring-glow { opacity: 0.8; }
.avatar .ring {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  padding: 2px;
  transition: transform 0.5s;
}
.founder-card:hover .avatar .ring { transform: scale(1.05); }
.avatar .inner {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: var(--surface);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--text);
}
.avatar .inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px;
  display: block;
}
.founder-card h3 { margin-top: 24px; font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; }
.founder-role {
  margin-top: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.founder-card p { margin-top: 18px; font-size: 0.9rem; color: var(--text-soft); }
.social-btn {
  margin-top: 22px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-soft);
  transition: color 0.3s, border-color 0.3s;
}
.social-btn:hover { color: var(--text); border-color: var(--border-strong); }
.social-btn svg { width: 18px; height: 18px; }

/* CTA / contact band */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  text-align: center;
}
.cta-band .sweep {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--brand-gradient);
  background-size: 300% 300%;
  opacity: 0.14;
  animation: sweep 18s ease infinite;
}
.cta-band .veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse at center, transparent 30%, var(--bg) 85%);
}
@keyframes sweep {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.mail-link {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--text);
}
.mail-link svg { width: 18px; height: 18px; }

/* Contact info / form */
.contact-grid { display: grid; gap: 28px; align-items: start; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.1fr; } }
.info-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--border); }
.info-item .icon-badge { width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0; }
.info-item h4 { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; }
.info-item p, .info-item a { color: var(--text-soft); font-size: 0.95rem; }
.info-item a:hover { color: var(--text); }

.form { padding: 34px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.8rem; font-weight: 600; margin-bottom: 8px; color: var(--text-soft); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0, 79, 84, 0.15);
}
.form-note { margin-top: 10px; font-size: 0.8rem; color: var(--text-faint); }

/* Contact form success confirmation */
.form-success {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.98);
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s;
  z-index: 3;
}
.form.sent .form-success { opacity: 1; visibility: visible; transform: scale(1); }
.form-success h3 { font-weight: 600; font-size: 1.6rem; color: var(--text); margin-top: 8px; }
.form-success p { margin-top: 8px; max-width: 320px; font-size: 0.92rem; }
.form-success .btn { margin-top: 22px; }

.success-check { position: relative; width: 88px; height: 88px; }
.success-check svg { width: 100%; height: 100%; }
.sc-circle {
  fill: none;
  stroke: url(#scGrad);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
}
.sc-check {
  fill: none;
  stroke: url(#scGrad);
  stroke-width: 4.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 32;
  stroke-dashoffset: 32;
}
.form.sent .sc-circle { animation: scCircle 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards; }
.form.sent .sc-check { animation: scCheck 0.32s 0.5s cubic-bezier(0.65, 0, 0.45, 1) forwards; }
.form.sent .success-check::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 999px;
  border: 2px solid var(--green);
  opacity: 0;
  animation: scPop 0.7s 0.45s ease-out forwards;
}
@keyframes scCircle { to { stroke-dashoffset: 0; } }
@keyframes scCheck { to { stroke-dashoffset: 0; } }
@keyframes scPop {
  0% { transform: scale(0.7); opacity: 0.55; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Job / careers */
.value-card { padding: 30px; }
.value-card .icon-badge { margin-bottom: 20px; }
.value-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; }
.value-card p { margin-top: 10px; font-size: 0.9rem; color: var(--text-soft); }

.job {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 30px;
  transition: transform 0.3s, border-color 0.3s;
}
.job:hover { transform: translateX(6px); }
.job .job-main { display: flex; flex-direction: column; gap: 6px; }
.job h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; }
.job .meta { display: flex; flex-wrap: wrap; gap: 14px; font-size: 0.82rem; color: var(--text-soft); }
.job .meta span { display: inline-flex; align-items: center; gap: 6px; }
.job .meta svg { width: 15px; height: 15px; flex-shrink: 0; }
.job .apply {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}
.job .apply svg { width: 16px; height: 16px; transition: transform 0.3s; }
.job:hover .apply svg { transform: translateX(4px); }

/* perks */
.perk { display: flex; gap: 14px; align-items: flex-start; }
.perk .tick {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 79, 84, 0.12);
  color: var(--green);
}
.perk .tick svg { width: 15px; height: 15px; }
.perk h4 { font-weight: 600; font-size: 0.98rem; }
.perk p { font-size: 0.86rem; color: var(--text-soft); margin-top: 2px; }

/* page hero (inner pages) */
.page-hero {
  position: relative;
  padding: 170px 0 70px;
  overflow: hidden;
}
.page-hero .blob { opacity: calc(var(--blob-opacity) * 0.8); }
.page-hero .hero-veil { z-index: -1; }
.page-hero .aurora { top: 6%; opacity: calc(var(--blob-opacity) * 0.4); }
.page-hero .hero-grid {
  -webkit-mask-image: radial-gradient(ellipse 65% 80% at 35% 30%, #000 0%, transparent 72%);
  mask-image: radial-gradient(ellipse 65% 80% at 35% 30%, #000 0%, transparent 72%);
}
.page-hero .orb-1 { top: 26%; right: 7%; left: auto; bottom: auto; }
.page-hero .orb-2 { bottom: 24%; right: 13%; left: auto; top: auto; }
.page-hero .orb-3 { top: 62%; right: 6%; left: auto; bottom: auto; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
}
.footer-grid {
  display: grid;
  gap: 44px;
  padding: 64px 0 0;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; }
}
.footer-brand img { height: 40px; width: auto; }
.footer-brand p { margin-top: 20px; max-width: 360px; font-size: 0.9rem; color: var(--text-soft); }
.footer-social { margin-top: 24px; display: flex; gap: 12px; }
.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.footer-col ul { margin-top: 20px; display: grid; gap: 12px; }
.footer-col a, .footer-col li { font-size: 0.9rem; color: var(--text-soft); display: inline-flex; align-items: center; gap: 8px; }
.footer-col a:hover { color: var(--text); }
.footer-col svg { width: 16px; height: 16px; flex-shrink: 0; }
.footer-bottom {
  margin-top: 56px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-faint);
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }
.footer-legal a { color: var(--text-faint); transition: color 0.3s; }
.footer-legal a:hover { color: var(--text); }

/* ---------- Legal / long-form prose (terms, privacy) ---------- */
.legal { padding: 8px 0 40px; }
.legal-prose { max-width: 760px; }
.legal-prose h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  color: var(--text);
  margin: 42px 0 14px;
}
.legal-prose h2:first-child { margin-top: 0; }
.legal-prose h3 { font-weight: 600; font-size: 1.05rem; color: var(--text); margin: 24px 0 8px; }
.legal-prose p { color: var(--text-soft); line-height: 1.8; margin-bottom: 14px; }
.legal-prose ul { margin: 0 0 18px; padding: 0; display: grid; gap: 9px; }
.legal-prose li { position: relative; padding-left: 22px; color: var(--text-soft); line-height: 1.75; }
.legal-prose li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--brand-gradient);
}
.legal-prose a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.legal-prose strong { color: var(--text); font-weight: 600; }
.legal-meta { margin-top: 12px; font-size: 0.85rem; color: var(--text-faint); }

/* ---------- Utilities ---------- */
.center { text-align: center; }
.mt-sm { margin-top: 14px; }
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 56px; }
.relative { position: relative; }
.glow-soft { position: absolute; border-radius: 999px; filter: blur(110px); z-index: -1; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; filter: none; }
  .hero .word { opacity: 1; transform: none; filter: none; }
  .grain::before { display: none; }
}
