/* ═══════════════════════════════════════════════════
   LITENDS — DESIGN SYSTEM 2026
   Professional. Minimal. Trustworthy.
═══════════════════════════════════════════════════ */

:root {
  /* Type Scale */
  --text-xs:   clamp(0.7rem,   0.65rem + 0.25vw, 0.8rem);
  --text-sm:   clamp(0.85rem,  0.8rem  + 0.25vw, 0.95rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.1rem);
  --text-lg:   clamp(1.15rem,  1rem    + 0.6vw,  1.4rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.2vw,  2.2rem);
  --text-2xl:  clamp(2rem,     1.4rem  + 2.2vw,  3.4rem);
  --text-3xl:  clamp(2.6rem,   1.4rem  + 3.8vw,  5rem);

  /* Spacing */
  --sp-1: 0.25rem;  --sp-2: 0.5rem;   --sp-3: 0.75rem;
  --sp-4: 1rem;     --sp-5: 1.25rem;  --sp-6: 1.5rem;
  --sp-8: 2rem;     --sp-10: 2.5rem;  --sp-12: 3rem;
  --sp-16: 4rem;    --sp-20: 5rem;    --sp-24: 6rem;
  --sp-32: 8rem;

  /* Radius */
  --r-sm: 4px;  --r-md: 8px;  --r-lg: 14px;
  --r-xl: 20px; --r-2xl: 28px; --r-full: 9999px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 150ms var(--ease-out);
  --t-base: 220ms var(--ease-out);
  --t-slow: 400ms var(--ease-out);

  /* Layout */
  --w-narrow: 640px;
  --w-default: 960px;
  --w-wide: 1180px;

  /* Fonts */
  --font-display: 'Cabinet Grotesk', 'Inter', system-ui, sans-serif;
  --font-body:    'Satoshi', 'Inter', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', 'Fira Code', monospace;
}

/* ── LIGHT THEME ── */
:root, [data-theme="light"] {
  --bg:          #f8f8f6;
  --bg-2:        #ffffff;
  --bg-3:        #f2f2ef;
  --bg-inv:      #0e0e10;

  --surface:     #ffffff;
  --surface-2:   #f4f4f1;
  --surface-3:   #ebebе7;

  --border:      #e2e2dc;
  --border-2:    #d0d0c8;

  --text:        #111110;
  --text-2:      #3d3d38;
  --text-3:      #6b6b63;
  --text-4:      #9a9a90;
  --text-inv:    #f8f8f6;

  --accent:      #1a1a1a;
  --accent-2:    #333330;

  --brand:       #5b4cff;
  --brand-h:     #4538e0;
  --brand-a:     #3528cc;
  --brand-soft:  rgba(91,76,255,0.08);
  --brand-glow:  rgba(91,76,255,0.18);

  --amber:       #d97706;
  --amber-soft:  rgba(217,119,6,0.1);

  --green:       #16a34a;
  --green-soft:  rgba(22,163,74,0.1);

  --red:         #dc2626;

  --shadow-sm:   0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.1), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-brand: 0 4px 24px rgba(91,76,255,0.22);
}

/* ── DARK THEME ── */
[data-theme="dark"] {
  --bg:          #0c0c0e;
  --bg-2:        #111113;
  --bg-3:        #161618;

  --surface:     #161618;
  --surface-2:   #1c1c1f;
  --surface-3:   #222226;

  --border:      #2a2a2e;
  --border-2:    #343438;

  --text:        #ededea;
  --text-2:      #c8c8c2;
  --text-3:      #8a8a82;
  --text-4:      #5a5a54;
  --text-inv:    #0c0c0e;

  --accent:      #f0f0ec;
  --accent-2:    #d0d0c8;

  --brand:       #7c6fff;
  --brand-h:     #9488ff;
  --brand-a:     #6358e8;
  --brand-soft:  rgba(124,111,255,0.12);
  --brand-glow:  rgba(124,111,255,0.25);

  --amber:       #f59e0b;
  --amber-soft:  rgba(245,158,11,0.12);

  --green:       #22c55e;
  --green-soft:  rgba(34,197,94,0.12);

  --red:         #f87171;

  --shadow-sm:   0 1px 3px rgba(0,0,0,0.3);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.5);
  --shadow-brand: 0 4px 24px rgba(124,111,255,0.3);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --bg: #0c0c0e; --bg-2: #111113; --bg-3: #161618;
    --surface: #161618; --surface-2: #1c1c1f; --surface-3: #222226;
    --border: #2a2a2e; --border-2: #343438;
    --text: #ededea; --text-2: #c8c8c2; --text-3: #8a8a82; --text-4: #5a5a54;
    --text-inv: #0c0c0e; --accent: #f0f0ec; --accent-2: #d0d0c8;
    --brand: #7c6fff; --brand-h: #9488ff; --brand-a: #6358e8;
    --brand-soft: rgba(124,111,255,0.12); --brand-glow: rgba(124,111,255,0.25);
    --amber: #f59e0b; --amber-soft: rgba(245,158,11,0.12);
    --green: #22c55e; --green-soft: rgba(34,197,94,0.12);
    --red: #f87171;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.5);
    --shadow-brand: 0 4px 24px rgba(124,111,255,0.3);
  }
}

/* ════════════════════════════════════
   NAVIGATION
════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-base), background var(--t-base);
}
.nav.scrolled {
  border-bottom-color: var(--border);
  background: color-mix(in srgb, var(--bg) 92%, transparent);
}
.nav-inner {
  width: 100%;
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: 0 var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-mark {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: var(--brand);
  border-radius: var(--r-md);
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-3);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: var(--r-md);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-links a:hover { color: var(--text); background: var(--surface-2); }
.nav-links a.active { color: var(--text); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}
.nav-theme-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-md);
  color: var(--text-3);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-theme-btn:hover { color: var(--text); background: var(--surface-2); }
.nav-cta {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--r-md);
  background: var(--text);
  color: var(--bg);
  text-decoration: none;
  transition: opacity var(--t-fast);
  white-space: nowrap;
}
.nav-cta:hover { opacity: 0.85; }
.nav-hamburger {
  display: none;
  width: 36px; height: 36px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: var(--r-md);
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base);
}
@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: var(--sp-4) var(--sp-6);
    gap: var(--sp-1);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 12px; }
  .nav-cta-desktop { display: none; }
}
@media (min-width: 769px) {
  .nav-hamburger { display: none; }
}

/* ════════════════════════════════════
   HERO
════════════════════════════════════ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(64px + var(--sp-20)) var(--sp-6) var(--sp-20);
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}
.hero-glow {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--brand-glow) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--amber-soft) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--w-wide);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: var(--sp-12); }
  .hero-visual { display: none; }
}
.hero-content {}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: var(--sp-6);
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: var(--sp-6);
}
.hero h1 em {
  font-style: normal;
  color: var(--brand);
}
.hero-desc {
  font-size: var(--text-base);
  color: var(--text-3);
  line-height: 1.75;
  max-width: 44ch;
  margin-bottom: var(--sp-10);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-12);
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--r-md);
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-brand);
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.btn-hero-primary:hover {
  background: var(--brand-h);
  transform: translateY(-1px);
  box-shadow: 0 6px 32px var(--brand-glow);
}
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: var(--r-md);
  background: transparent;
  color: var(--text-2);
  text-decoration: none;
  border: 1px solid var(--border-2);
  transition: border-color var(--t-fast), color var(--t-fast);
}
.btn-hero-secondary:hover { border-color: var(--text-3); color: var(--text); }
.hero-stats {
  display: flex;
  gap: var(--sp-8);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 0.75rem;
  color: var(--text-4);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: var(--sp-8);
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.hero-visual-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand) 0%, transparent 100%);
  border-radius: var(--r-2xl) var(--r-2xl) 0 0;
}

/* ════════════════════════════════════
   SECTIONS
════════════════════════════════════ */
.section {
  padding: clamp(var(--sp-16), 8vw, var(--sp-24)) var(--sp-6);
  background: var(--bg);
}
.section-alt { background: var(--bg-3); }
.section-inner {
  max-width: var(--w-wide);
  margin: 0 auto;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: var(--sp-4);
}
.section-label::before {
  content: '';
  display: block;
  width: 16px; height: 1px;
  background: var(--brand);
}
.section-header {
  max-width: 600px;
  margin-bottom: clamp(var(--sp-10), 5vw, var(--sp-16));
}
.section-header.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-header.centered .section-label { justify-content: center; }
.section-header.centered .section-label::before { display: none; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: var(--sp-4);
  line-height: 1.1;
}
.section-header p {
  font-size: var(--text-base);
  color: var(--text-3);
  line-height: 1.7;
  max-width: 52ch;
}

/* ════════════════════════════════════
   SERVICES
════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
}
.service-item {
  background: var(--surface);
  padding: var(--sp-10) var(--sp-8);
  position: relative;
  transition: background var(--t-base);
}
.service-item:hover { background: var(--surface-2); }
.service-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-4);
  letter-spacing: 0.06em;
  margin-bottom: var(--sp-6);
  display: block;
}
.service-icon-wrap {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-md);
  background: var(--brand-soft);
  color: var(--brand);
  margin-bottom: var(--sp-5);
  transition: background var(--t-base);
}
.service-item:hover .service-icon-wrap { background: var(--brand); color: #fff; }
.service-item h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--sp-3);
  letter-spacing: -0.02em;
}
.service-item p {
  font-size: 0.875rem;
  color: var(--text-3);
  line-height: 1.7;
  max-width: 38ch;
}
.service-arrow {
  position: absolute;
  bottom: var(--sp-6);
  right: var(--sp-6);
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-2);
  color: var(--text-4);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity var(--t-base), transform var(--t-base), color var(--t-base), border-color var(--t-base);
}
.service-item:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--brand);
  border-color: var(--brand);
}

/* ════════════════════════════════════
   PROCESS
════════════════════════════════════ */
.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-row::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 14px);
  right: calc(12.5% + 14px);
  height: 1px;
  background: var(--border);
  z-index: 0;
}
@media (max-width: 768px) {
  .process-row { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .process-row::before { display: none; }
}
@media (max-width: 480px) {
  .process-row { grid-template-columns: 1fr; }
}
.process-step {
  padding: 0 var(--sp-6) var(--sp-6);
  position: relative;
  z-index: 1;
}
.process-step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-4);
  margin-bottom: var(--sp-6);
  transition: background var(--t-base), border-color var(--t-base), color var(--t-base);
}
.process-step:hover .process-step-num {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--sp-2);
  letter-spacing: -0.01em;
}
.process-step p {
  font-size: 0.85rem;
  color: var(--text-3);
  line-height: 1.65;
  max-width: 26ch;
}

/* ════════════════════════════════════
   ABOUT
════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: start;
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: var(--sp-10); }
}
.about-text h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: var(--sp-6);
  line-height: 1.1;
}
.about-text p {
  font-size: var(--text-base);
  color: var(--text-3);
  line-height: 1.75;
  margin-bottom: var(--sp-5);
}
.values-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}
.value-row {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding-bottom: var(--sp-5);
  border-bottom: 1px solid var(--border);
}
.value-row:last-child { border-bottom: none; padding-bottom: 0; }
.value-row-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-md);
  background: var(--brand-soft);
  color: var(--brand);
  margin-top: 1px;
}
.value-row strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
}
.value-row p {
  font-size: 0.85rem;
  color: var(--text-3);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ════════════════════════════════════
   FOUNDER
════════════════════════════════════ */
.founder-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--sp-12);
  align-items: start;
}
@media (max-width: 768px) {
  .founder-layout { grid-template-columns: 1fr; }
}
.founder-aside {
  position: sticky;
  top: calc(64px + var(--sp-8));
}
.founder-avatar-wrap {
  width: 100%;
  aspect-ratio: 1;
  max-width: 240px;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  position: relative;
}
.founder-avatar-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  box-shadow: inset 0 0 0 1px var(--border);
}
.founder-monogram {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  color: var(--brand);
  opacity: 0.4;
  user-select: none;
}
.founder-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}
.founder-title {
  font-size: 0.82rem;
  color: var(--brand);
  font-weight: 600;
  margin-bottom: var(--sp-5);
}
.founder-socials {
  display: flex;
  gap: var(--sp-2);
}
.founder-social-btn {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  color: var(--text-3);
  text-decoration: none;
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
}
.founder-social-btn:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-soft);
}
.founder-bio h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: var(--sp-5);
  line-height: 1.15;
}
.founder-bio p {
  font-size: var(--text-base);
  color: var(--text-3);
  line-height: 1.75;
  margin-bottom: var(--sp-5);
}
.skill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-6);
}
.skill-chip {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: var(--r-full);
  background: var(--surface-2);
  color: var(--text-3);
  border: 1px solid var(--border);
  letter-spacing: 0.01em;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.skill-chip:hover {
  background: var(--brand-soft);
  color: var(--brand);
  border-color: var(--brand);
}

/* ════════════════════════════════════
   PODCAST
════════════════════════════════════ */
.podcast-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  overflow: hidden;
}
.podcast-header {
  padding: var(--sp-10) var(--sp-10) var(--sp-8);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: var(--sp-6);
}
@media (max-width: 640px) {
  .podcast-header { flex-direction: column; padding: var(--sp-6); gap: var(--sp-4); }
}
.podcast-cover {
  width: 80px; height: 80px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--brand) 0%, #9b59b6 100%);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.podcast-meta h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.podcast-meta p {
  font-size: 0.85rem;
  color: var(--text-3);
  line-height: 1.6;
  max-width: 55ch;
}
.podcast-platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #1DB954;
  background: rgba(29,185,84,0.1);
  padding: 4px 10px;
  border-radius: var(--r-full);
  margin-top: var(--sp-3);
}
.podcast-embed {
  padding: var(--sp-8) var(--sp-10);
}
@media (max-width: 640px) {
  .podcast-embed { padding: var(--sp-6); }
}
.podcast-embed iframe {
  border-radius: var(--r-lg);
  display: block;
  width: 100%;
}
.podcast-footer {
  padding: var(--sp-6) var(--sp-10);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
}
@media (max-width: 640px) {
  .podcast-footer { padding: var(--sp-5) var(--sp-6); }
}
.podcast-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}
.podcast-tag {
  font-size: 0.72rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: var(--r-full);
  background: var(--bg-3);
  color: var(--text-3);
  border: 1px solid var(--border);
}
.podcast-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--r-md);
  background: #1DB954;
  color: #fff;
  text-decoration: none;
  transition: opacity var(--t-fast), transform var(--t-fast);
}
.podcast-cta-btn:hover { opacity: 0.88; transform: translateY(-1px); }

/* ════════════════════════════════════
   CTA BANNER
════════════════════════════════════ */
.cta-band {
  background: var(--text);
  color: var(--bg);
  border-radius: var(--r-2xl);
  padding: clamp(var(--sp-12), 6vw, var(--sp-20)) var(--sp-10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -5%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: inherit;
  line-height: 1.15;
  max-width: 36ch;
}
.cta-band p {
  font-size: var(--text-sm);
  opacity: 0.65;
  margin-top: var(--sp-2);
  max-width: 44ch;
}
.btn-cta-inv {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--r-md);
  background: var(--bg);
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity var(--t-fast), transform var(--t-fast);
  flex-shrink: 0;
}
.btn-cta-inv:hover { opacity: 0.9; transform: translateY(-1px); }
[data-theme="dark"] .btn-cta-inv { background: var(--surface-3); }

/* ════════════════════════════════════
   CONTACT
════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-16);
  align-items: start;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: var(--sp-10); }
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: var(--sp-4);
  line-height: 1.15;
}
.contact-info > p {
  font-size: var(--text-base);
  color: var(--text-3);
  line-height: 1.7;
  margin-bottom: var(--sp-8);
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:first-of-type { border-top: 1px solid var(--border); }
.contact-item-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-md);
  background: var(--brand-soft);
  color: var(--brand);
}
.contact-item h4 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 3px;
}
.contact-item p, .contact-item a {
  font-size: 0.9rem;
  color: var(--text-2);
  text-decoration: none;
  font-weight: 500;
}
.contact-item a:hover { color: var(--brand); }
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.form-group {
  margin-bottom: var(--sp-5);
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--sp-2);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-size: 0.9rem;
  color: var(--text);
  font-family: var(--font-body);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-4); }
.form-group textarea { resize: vertical; min-height: 110px; }
.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 13px;
  border-radius: var(--r-md);
  background: var(--brand);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-brand);
  transition: background var(--t-fast), transform var(--t-fast);
}
.btn-submit:hover { background: var(--brand-h); transform: translateY(-1px); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
#formStatus {
  text-align: center;
  margin-top: var(--sp-4);
  font-size: 0.85rem;
  display: none;
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-md);
}
#formStatus.success { background: var(--green-soft); color: var(--green); display: block; }
#formStatus.error { background: rgba(220,38,38,0.08); color: var(--red); display: block; }

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: var(--sp-16) var(--sp-6) var(--sp-8);
}
.footer-inner {
  max-width: var(--w-wide);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-10);
  margin-bottom: var(--sp-12);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid var(--border);
}
@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
/* ── MOBILE FOOTER FIX ──
   Brand row full-width on top,
   then 3 link cols side by side in a sub-grid.
   Prevents the long colour-block on 333px screens. */
@media (max-width: 480px) {
  .footer {
    padding: var(--sp-10) var(--sp-5) var(--sp-6);
  }
  .footer-top {
    display: flex;
    flex-direction: column;
    gap: var(--sp-6);
    margin-bottom: var(--sp-6);
    padding-bottom: var(--sp-6);
  }
  /* Brand block stays as a single row */
  .footer-top > div:first-child {
    width: 100%;
  }
  /* Wrap the 3 nav cols into a horizontal 3-col sub-row */
  .footer-top > div:first-child ~ div {
    display: contents; /* lift children out */
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--sp-5);
  }
  /* Brand col spans full width */
  .footer-top > div:first-child {
    grid-column: 1 / -1;
  }
  .footer-brand-desc {
    max-width: 100%;
    font-size: 0.82rem;
  }
  .footer-col h4 {
    font-size: 0.7rem;
    margin-bottom: var(--sp-3);
  }
  .footer-col ul { gap: var(--sp-2); }
  .footer-col a { font-size: 0.82rem; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-2);
  }
  .footer-copy, .footer-legal a { font-size: 0.75rem; }
}

.footer-brand-desc {
  font-size: 0.875rem;
  color: var(--text-3);
  line-height: 1.65;
  max-width: 30ch;
  margin-top: var(--sp-4);
}
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-4);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-col a {
  font-size: 0.875rem;
  color: var(--text-3);
  text-decoration: none;
  transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--text-4);
}
.footer-legal {
  display: flex;
  gap: var(--sp-5);
}
.footer-legal a {
  font-size: 0.8rem;
  color: var(--text-4);
  text-decoration: none;
  transition: color var(--t-fast);
}
.footer-legal a:hover { color: var(--text-3); }

/* ════════════════════════════════════
   ANIMATIONS & UTILITIES
════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* Pricing note */
.pricing-note {
  font-size: 0.85rem;
  color: var(--text-4);
  text-align: center;
  margin-top: var(--sp-8);
}
.pricing-note a { color: var(--brand); text-decoration: none; }
.pricing-note a:hover { text-decoration: underline; }
