/* ===== Design tokens ===== */
:root {
  --bg: #fbfbf8;
  --bg-soft: #f2f4ec;
  --surface: #ffffff;
  --surface-tint: #f6f7f1;
  --border: rgba(20, 30, 20, 0.09);
  --text: #172018;
  --text-dim: rgba(23, 32, 24, 0.68);
  --text-faint: rgba(23, 32, 24, 0.46);
  --accent: #5f9a12;
  --accent-strong: #3f6e0b;
  --accent-soft: #1f3d10;
  --accent-dim: rgba(95, 154, 18, 0.1);
  --accent-text: #ffffff;
  --spotify: #1db954;
  --youtube: #ff3b3b;
  --purple: #8a5cf6;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 16px -6px rgba(23, 32, 24, 0.1);
  --shadow-lg: 0 30px 70px -30px rgba(23, 32, 24, 0.22);
  --maxw: 1180px;
  --font-display: "Space Grotesk", "Inter", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 173px; }

@property --border-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

/* ===== Preloader ===== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-logo-wrap {
  position: relative;
  width: 180px;
}
.preloader-logo-wrap img {
  display: block;
  width: 100%;
  height: auto;
}
.preloader-logo-base { filter: grayscale(1); opacity: 0.16; }
.preloader-logo-fill {
  position: absolute;
  inset: 0;
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.25s ease-out;
  filter: drop-shadow(0 0 14px rgba(142, 224, 0, 0.35));
}
.preloader-percent {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--accent-strong);
}
@media (prefers-reduced-motion: reduce) {
  .preloader-logo-fill, .preloader { transition: none; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(700px 500px at 88% -5%, rgba(95, 154, 18, 0.1), transparent 60%),
    radial-gradient(900px 600px at -10% 20%, rgba(138, 92, 246, 0.05), transparent 60%),
    var(--bg);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; margin: 0; letter-spacing: -0.01em; color: var(--text); }
p { margin: 0; }
section { position: relative; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--accent-strong);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: var(--accent-strong);
}

.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); margin-bottom: 14px; }
.section-head p { color: var(--text-dim); font-size: 1.05rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }

.pad { padding: 110px 0; }

/* ===== Buttons (electric finish) ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color .25s ease;
  white-space: nowrap;
}
/* Electric shine sweep on hover */
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,0.65), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
  z-index: 1;
}
.btn:hover::before { left: 130%; }

.btn-primary {
  background: var(--accent-strong);
  color: var(--accent-text);
  box-shadow: 0 14px 30px -10px rgba(63, 110, 11, 0.45), 0 0 0 0 rgba(142, 224, 0, 0.6);
  animation: btn-electric-pulse 3.2s ease-in-out infinite;
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 40px -10px rgba(63, 110, 11, 0.55), 0 0 26px 2px rgba(142, 224, 0, 0.65);
  animation-play-state: paused;
}
@keyframes btn-electric-pulse {
  0%, 100% { box-shadow: 0 14px 30px -10px rgba(63, 110, 11, 0.45), 0 0 0 0 rgba(142, 224, 0, 0.5); }
  50% { box-shadow: 0 14px 30px -10px rgba(63, 110, 11, 0.45), 0 0 16px 3px rgba(142, 224, 0, 0.45); }
}
@media (prefers-reduced-motion: reduce) {
  .btn-primary { animation: none; }
}

.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover {
  background: var(--surface-tint);
  border-color: var(--accent-strong);
  color: var(--accent-strong);
  box-shadow: 0 0 0 3px var(--accent-dim), 0 10px 24px -12px rgba(63, 110, 11, 0.4);
  transform: translateY(-1px);
}
.btn-full { width: 100%; justify-content: center; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; animation: none; }

/* ===== Top bar (24h helpline) ===== */
.top-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
  height: 40px;
  background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center;
}
.top-bar a {
  display: flex; align-items: center; gap: 8px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.top-bar a:hover { color: var(--accent); }
.top-bar .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #8ee000;
  box-shadow: 0 0 0 0 rgba(142,224,0,.6);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 40px; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.3s ease, padding 0.3s ease, border-color 0.3s ease, box-shadow .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(251, 251, 248, 0.86);
  backdrop-filter: blur(14px);
  border-color: var(--border);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }

.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; }
.logo img { height: 84px; width: auto; transition: height 0.3s ease; }
.site-header.scrolled .logo img { height: 62px; }

.nav-links {
  display: flex;
  gap: 3px;
  align-items: center;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--border);
  padding: 6px;
  border-radius: 100px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}
.nav-links a {
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--text-dim);
  position: relative;
  padding: 9px 17px;
  border-radius: 100px;
  transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}
.nav-links a:hover {
  color: #fff;
  background: var(--accent-strong);
  box-shadow: 0 6px 16px -5px rgba(63, 110, 11, 0.55);
  transform: translateY(-1px);
}
.site-header.scrolled .nav-links { background: rgba(255, 255, 255, 0.75); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.lang-switch {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.03em;
  color: var(--text-dim);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 13px 6px 6px;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.lang-switch:hover { color: var(--accent-strong); border-color: var(--accent-strong); background: var(--accent-dim); }
.flag-icon {
  width: 20px; height: 14px;
  border-radius: 3px;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
}
.mobile-nav .lang-switch { font-size: 1rem; padding: 8px 20px 8px 8px; }
.mobile-nav .flag-icon { width: 26px; height: 18px; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  align-items: center; justify-content: center;
  cursor: pointer;
}

/* ===== Hero ===== */
.hero { padding: 236px 0 100px; overflow: clip; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  background: var(--accent-dim);
  border: 1px solid rgba(95, 154, 18, 0.25);
  color: var(--accent-strong);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 26px;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-strong); box-shadow: 0 0 0 0 rgba(95,154,18,.6); animation: pulse 2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(95,154,18,.45); }
  70% { box-shadow: 0 0 0 8px rgba(95,154,18,0); }
  100% { box-shadow: 0 0 0 0 rgba(95,154,18,0); }
}

.hero h1 { font-size: clamp(2.6rem, 5vw, 4.2rem); line-height: 1.05; margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--accent-strong); }
.hero .role { font-size: 1.05rem; color: var(--text-dim); margin-bottom: 6px; font-weight: 500; }
.hero .role strong { color: var(--text); font-weight: 600; }
.hero .role-sub { font-size: 0.92rem; color: var(--accent-strong); margin-bottom: 20px; font-weight: 600; }
.hero p.lede { font-size: 1.08rem; color: var(--text-dim); max-width: 560px; margin-bottom: 38px; }
.hero p.lede .quote { color: var(--text); font-weight: 600; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats { display: flex; gap: 40px; }
.hero-stats .stat b { display: block; font-family: var(--font-display); font-size: 2rem; color: var(--text); }
.hero-stats .stat span { font-size: 0.82rem; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.08em; }

.hero-avatar-circle {
  width: 240px; height: 240px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 22%;
  border: 5px solid transparent;
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    conic-gradient(from var(--border-angle), var(--accent-strong), #8ee000, var(--accent-strong), transparent, transparent, var(--accent-strong)) border-box;
  margin-bottom: 24px;
  animation: border-travel 6s linear infinite, avatar-glow-pulse 6s linear infinite;
}

@keyframes avatar-glow-pulse {
  0%, 100% { box-shadow: var(--shadow-lg), 0 0 0 0 rgba(142, 224, 0, 0); }
  50% { box-shadow: var(--shadow-lg), 0 0 30px 2px rgba(142, 224, 0, 0.45); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-avatar-circle { animation: none; box-shadow: var(--shadow-lg); }
}

.hero-form-card { padding: 34px; }

.social-rail { display: flex; gap: 12px; margin-top: 28px; }
.social-rail a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  transition: all 0.2s ease;
}
.social-rail a:hover { border-color: var(--accent-strong); color: var(--accent-strong); transform: translateY(-3px); box-shadow: var(--shadow-sm); }

/* ===== Cards / grids ===== */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.card:hover { border-color: rgba(20,30,20,0.16); box-shadow: var(--shadow-sm); transform: translateY(-3px); }

.videos-section { position: relative; overflow: hidden; }
.videos-section > .container { position: relative; z-index: 1; }
.episodes-section { position: relative; overflow: hidden; }
.episodes-section > .container { position: relative; z-index: 1; }

/* ===== Ambient floating blobs (soft, translucent, non-intrusive) ===== */
.ambient-blobs {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(142, 224, 0, 0.32), rgba(142, 224, 0, 0) 72%);
  filter: blur(4px);
  animation: blob-float 20s ease-in-out infinite;
}
.blob-1 { width: 420px; height: 420px; top: -12%; left: -8%; animation-duration: 23s; }
.blob-2 { width: 320px; height: 320px; bottom: -14%; right: -6%; animation-duration: 27s; animation-delay: -6s; }
.blob-3 { width: 260px; height: 260px; top: 45%; left: 58%; animation-duration: 19s; animation-delay: -3s; }
.blob-4 { width: 380px; height: 380px; top: -10%; right: -8%; animation-duration: 24s; }
.blob-5 { width: 300px; height: 300px; bottom: -12%; left: -6%; animation-duration: 28s; animation-delay: -8s; }
.blob-6 { width: 240px; height: 240px; top: 50%; right: 55%; animation-duration: 21s; animation-delay: -4s; }

@keyframes blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(50px, -35px) scale(1.1); }
  66% { transform: translate(-35px, 30px) scale(0.92); }
}
@media (prefers-reduced-motion: reduce) {
  .blob { animation: none; }
}

.video-banner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 30px 36px;
  margin-bottom: 22px;
  background: linear-gradient(100deg, rgba(255,59,59,0.06), var(--surface) 55%);
  position: relative;
  overflow: hidden;
}
.vb-left { display: flex; align-items: center; gap: 18px; flex: 1; min-width: 0; }
.vb-left h3 { font-size: 1.3rem; margin-bottom: 4px; }
.vb-left p { color: var(--text-dim); margin: 0; }
.video-banner .yt-icon { width: 56px; height: 56px; border-radius: 16px; background: var(--youtube); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.vb-stats { display: flex; gap: 34px; padding: 0 12px; }
.vb-stat { text-align: center; }
.vb-stat b { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--text); }
.vb-stat span { font-size: 0.72rem; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.07em; }

.vb-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  flex-shrink: 0;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.video-banner:hover .vb-arrow { background: var(--youtube); color: #fff; transform: translateX(3px); }

.yt-embed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
  margin-bottom: 22px;
}
.yt-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.yt-embed:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.yt-embed img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition: opacity 0.3s ease, transform 0.4s ease;
}
.yt-embed:hover img { opacity: 1; transform: scale(1.04); }
.yt-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.yt-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  border-radius: 50%;
  border: none;
  background: var(--youtube);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px -6px rgba(255, 59, 59, 0.6);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.yt-embed:hover .yt-play-btn { transform: translate(-50%, -50%) scale(1.1); box-shadow: 0 10px 30px -4px rgba(255, 59, 59, 0.75); }
.yt-play-btn svg { margin-left: 3px; }
.yt-embed-title {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 30px 14px 12px;
  background: linear-gradient(0deg, rgba(0,0,0,0.75), transparent);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.3;
}
@media (max-width: 980px) {
  .yt-embed-grid { grid-template-columns: 1fr; }
}

.video-subgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; z-index: 1; }
.video-sub { padding: 26px; display: flex; flex-direction: column; gap: 10px; }
.video-sub .ic-row { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.video-sub .ic-row .ic { width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.video-sub h4 { font-size: 1.1rem; }
.video-sub p { color: var(--text-dim); font-size: 0.92rem; }

/* ===== Episodes ===== */
.episodes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.episode-card { padding: 26px; display: flex; flex-direction: column; gap: 14px; height: 100%; }
.ep-tags { display: flex; align-items: center; gap: 10px; }
.ep-tag {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 4px 10px; border-radius: 100px;
  background: var(--accent-dim); color: var(--accent-strong);
}
.ep-tag.tag-new { background: rgba(255, 59, 59, 0.1); color: #e23c3c; }
.ep-dur { font-size: 0.78rem; color: var(--text-faint); margin-left: auto; }
.episode-card h4 { font-size: 1.08rem; line-height: 1.35; }
.episode-card p { color: var(--text-dim); font-size: 0.9rem; flex-grow: 1; }
.ep-spotify-embed { border-radius: 12px; display: block; }
.ep-link { display: inline-flex; align-items: center; gap: 8px; font-size: 0.86rem; font-weight: 600; color: var(--spotify); }
.ep-link svg { transition: transform 0.2s ease; }
.episode-card:hover .ep-link svg { transform: translateX(3px); }

.quote-block {
  margin: 70px auto 0;
  max-width: 960px;
  text-align: center;
  padding: 0 20px;
}
.quote-block p {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.6vw, 2.8rem);
  line-height: 1.35;
  font-weight: 600;
  background: linear-gradient(100deg, var(--accent-strong) 0%, var(--accent) 30%, #8ee000 50%, var(--accent) 70%, var(--accent-strong) 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: quote-shine 6s ease-in-out infinite;
}
.quote-block span { display: block; margin-top: 18px; color: var(--text-faint); font-size: 0.9rem; }

@keyframes quote-shine {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

@media (prefers-reduced-motion: reduce) {
  .quote-block p { animation: none; }
}

/* ===== Podcast platforms ===== */
.platforms {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.platform-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; margin-top: 10px; }
.platform-card { padding: 26px; display: flex; align-items: center; gap: 16px; }
.platform-card .ic { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.platform-card b { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-faint); }
.platform-card span { font-size: 1.02rem; font-weight: 600; }
.platform-links-all { text-align: center; margin-top: 34px; }

/* ===== Instagram slider ===== */
.instagram-slider { position: relative; }
.instagram-slider::before, .instagram-slider::after {
  content: "";
  position: absolute;
  top: 0; bottom: 16px;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.instagram-slider::before { left: 0; background: linear-gradient(90deg, var(--bg-soft), transparent); }
.instagram-slider::after { right: 0; background: linear-gradient(270deg, var(--bg-soft), transparent); }

.instagram-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 6px 6px 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.instagram-grid::-webkit-scrollbar { display: none; }
.ig-embed-wrap {
  flex: 0 0 320px;
  width: 320px;
  scroll-snap-align: start;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--surface);
}
.ig-embed-wrap iframe { border-radius: var(--radius-md) !important; }

.ig-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.ig-nav:hover { background: var(--accent-strong); color: #fff; }
.ig-nav.is-hidden { opacity: 0; pointer-events: none; }
.ig-prev { left: -6px; }
.ig-next { right: -6px; }

@media (max-width: 768px) {
  .ig-nav { display: none; }
  .instagram-slider::before, .instagram-slider::after { display: none; }
}
@media (max-width: 640px) {
  .ig-embed-wrap { flex-basis: 280px; width: 280px; }
}

/* ===== About ===== */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: start; }
.about-photo { position: sticky; top: 110px; }
.about-photo .frame {
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-photo .frame img { width: 100%; height: 100%; object-fit: cover; }
.badge-row { display: flex; flex-wrap: wrap; gap: 8px; }
.badge-row span { font-size: 0.8rem; padding: 7px 14px; border-radius: 100px; background: var(--surface); border: 1px solid var(--border); color: var(--text-dim); }

.about-bio p { color: var(--text-dim); margin-bottom: 18px; }
.about-bio p strong { color: var(--text); font-weight: 600; }

.media-row { margin: 28px 0 38px; padding: 24px 0 6px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.media-row .label { display: block; font-size: 0.78rem; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; }
.media-logos { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.media-logos img { height: 26px; width: auto; opacity: 0.75; filter: grayscale(1); transition: opacity .2s ease, filter .2s ease; }
.media-logos img:hover { opacity: 1; filter: grayscale(0); }
.media-logos img.tve { height: 22px; }
.media-logos img.cuatro { height: 30px; }

.creds-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 10px; }
.creds-cols h4 { font-size: 0.95rem; margin-bottom: 16px; color: var(--text); }
.creds-cols ul li { position: relative; padding-left: 20px; color: var(--text-dim); font-size: 0.92rem; margin-bottom: 12px; line-height: 1.5; }
.creds-cols ul li::before { content: ""; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-strong); }
.cert-item { margin-bottom: 16px; }
.cert-item b { display: block; font-size: 0.92rem; }
.cert-item span { font-size: 0.85rem; color: var(--text-faint); }

.about-cta { margin-top: 40px; }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; }
.highlight { color: var(--accent-strong); }
.contact-title { font-size: clamp(2.3rem, 4.2vw, 3.5rem); line-height: 1.08; margin-bottom: 22px; }
.contact-info p.lede { color: var(--text-dim); margin-bottom: 12px; font-size: 1.08rem; }
.contact-info p.lede:last-of-type { margin-bottom: 30px; }
.contact-links { display: flex; flex-direction: column; gap: 16px; margin-bottom: 34px; }
.contact-links a { display: flex; align-items: center; gap: 14px; font-size: 0.98rem; }
.contact-links .ic { width: 42px; height: 42px; border-radius: 12px; background: var(--surface); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-links a:hover .ic { border-color: var(--accent-strong); color: var(--accent-strong); }

.contact-form-card {
  padding: 38px;
  position: relative;
  border: 3px solid transparent;
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    conic-gradient(from var(--border-angle),
      transparent 0deg,
      transparent 180deg,
      var(--accent-strong) 210deg,
      #8ee000 250deg,
      var(--accent-strong) 290deg,
      transparent 320deg,
      transparent 360deg) border-box;
  animation: border-travel 4.5s linear infinite, glow-pulse 4.5s linear infinite;
  box-shadow: var(--shadow-lg), 0 0 55px -12px rgba(95, 154, 18, 0.55);
}
.contact-form-card:hover {
  border-color: transparent;
  transform: none;
  box-shadow: var(--shadow-lg), 0 0 70px -10px rgba(95, 154, 18, 0.7);
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: var(--shadow-lg), 0 0 55px -12px rgba(95, 154, 18, 0.55); }
  50% { box-shadow: var(--shadow-lg), 0 0 75px -10px rgba(138, 92, 246, 0.45); }
}

@keyframes border-travel {
  to { --border-angle: -360deg; }
}

@media (prefers-reduced-motion: reduce) {
  .contact-form-card { animation: none; }
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 8px; color: var(--text-dim); }
.field label .req { color: var(--accent-strong); }
.field input, .field textarea {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.96rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-faint); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent-strong); background: var(--surface); }
.field textarea { resize: vertical; min-height: 120px; }
.field .hint { font-size: 0.78rem; color: var(--text-faint); margin-top: 6px; }
.field.has-error input, .field.has-error textarea { border-color: #e04a4a; }
.field .error-msg { font-size: 0.8rem; color: #c73a3a; margin-top: 6px; display: none; }
.field.has-error .error-msg { display: block; }

.honeypot-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.consent-field .consent-label { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: var(--text-dim); font-weight: 400; cursor: pointer; }
.consent-field .consent-label input[type="checkbox"] { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--accent-strong); flex-shrink: 0; cursor: pointer; }
.consent-field .consent-label a { color: var(--accent-strong); text-decoration: underline; text-underline-offset: 2px; }
.consent-field.has-error .consent-label { color: #c73a3a; }

.form-feedback { margin-top: 16px; padding: 14px 16px; border-radius: var(--radius-sm); font-size: 0.9rem; display: none; }
.form-feedback.show { display: block; }
.form-feedback.success { background: rgba(95,154,18,0.1); border: 1px solid rgba(95,154,18,0.3); color: var(--accent-strong); }
.form-feedback.error { background: rgba(224,74,74,0.08); border: 1px solid rgba(224,74,74,0.3); color: #c73a3a; }

/* ===== Footer ===== */
.site-footer { padding: 50px 0 40px; border-top: 1px solid var(--border); }
.footer-grid { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-grid .logo { margin-bottom: 0; }
.footer-grid .logo img { height: 160px; }
@media (max-width: 640px) {
  .footer-grid .logo img { height: 100px; }
}
.footer-nav { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-nav a { font-size: 0.88rem; color: var(--text-dim); }
.footer-nav a:hover { color: var(--text); }
.footer-phone {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.9rem; font-weight: 700; color: var(--accent-strong);
}
.footer-phone:hover { color: var(--accent); }
.footer-social { display: flex; justify-content: center; gap: 14px; margin-top: 30px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  transition: all 0.2s ease;
}
.footer-social a:hover { border-color: var(--accent-strong); color: var(--accent-strong); transform: translateY(-3px); }
.footer-copy { color: var(--text-faint); font-size: 0.82rem; margin-top: 20px; text-align: center; }
.footer-legal { display: flex; justify-content: center; gap: 14px; margin-top: 8px; }
.footer-legal a { color: var(--text-faint); font-size: 0.78rem; text-decoration: none; }
.footer-legal a:hover { color: var(--accent-strong); text-decoration: underline; }

/* ===== Marquee band ===== */
.marquee-band {
  overflow: hidden;
  white-space: nowrap;
  padding: 22px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.marquee-track {
  display: inline-flex;
  width: max-content;
  animation: marquee-scroll 26s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 5vw, 3.6rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(95, 154, 18, 0.35);
  background: linear-gradient(90deg, rgba(95, 154, 18, 0.18), rgba(142, 224, 0, 0.14));
  -webkit-background-clip: text;
  background-clip: text;
  padding: 0 36px;
  flex-shrink: 0;
}

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

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ===== Reveal-on-scroll ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-photo { position: static; max-width: 320px; margin: 0 auto 40px; }
  .hero-avatar-circle { width: 190px; height: 190px; }
  .video-banner { flex-wrap: wrap; }
  .vb-stats { order: 3; width: 100%; justify-content: space-between; padding: 18px 0 0; border-top: 1px solid var(--border); margin-top: 4px; }
  .video-subgrid { grid-template-columns: 1fr 1fr; }
  .episodes-grid { grid-template-columns: 1fr 1fr; }
  .platform-grid { grid-template-columns: 1fr; }
  .creds-cols { grid-template-columns: 1fr; }
  .pad { padding: 80px 0; }
}
@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .logo img { height: 54px; }
  .hero { padding: 148px 0 70px; }
  .hero-avatar-circle { width: 160px; height: 160px; margin-bottom: 16px; display: block; margin-left: auto; margin-right: auto; }
  .top-bar .tb-label, .top-bar .tb-sep { display: none; }
  .hero-stats { gap: 26px; }
  .episodes-grid { grid-template-columns: 1fr; }
  .episode-card:nth-child(n+4) { display: none; }
  .video-subgrid { grid-template-columns: 1fr; }
  .video-banner { padding: 26px 22px; gap: 20px; }
  .vb-stats { gap: 22px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .media-logos { gap: 20px; }

  .footer-grid { flex-direction: column; text-align: center; gap: 24px; }
  .footer-nav { justify-content: center; }
  .footer-social { flex-wrap: wrap; }
}

/* ===== Mobile nav drawer ===== */
.mobile-nav {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(251, 251, 248, 0.98);
  backdrop-filter: blur(10px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 30px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav a { font-family: var(--font-display); font-size: 1.6rem; }
.mobile-nav .close-btn { position: absolute; top: 24px; right: 24px; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; }

/* ===== Adaptive custom cursor (desktop, fine-pointer only) ===== */
@media (hover: hover) and (pointer: fine) {
  *, *::before, *::after { cursor: none; }

  .cursor-dot, .cursor-ring {
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.25s ease;
  }
  body.cursor-ready .cursor-dot, body.cursor-ready .cursor-ring { opacity: 1; }

  .cursor-dot {
    width: 7px; height: 7px;
    background: var(--accent-strong);
    transform: translate(-50%, -50%);
  }

  .cursor-ring {
    width: 34px; height: 34px;
    border: 1.5px solid var(--accent-strong);
    background: transparent;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.32s cubic-bezier(.2,.8,.2,1), height 0.32s cubic-bezier(.2,.8,.2,1),
                background 0.32s ease, border-color 0.32s ease, border-radius 0.32s ease, opacity 0.25s ease;
  }
  .cursor-ring .cursor-label {
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
    color: #fff; opacity: 0; transition: opacity 0.2s ease; white-space: nowrap;
  }

  /* Hovering links / buttons: ring grows and fills softly */
  .cursor-ring.is-pointer { width: 52px; height: 52px; background: var(--accent-dim); border-color: var(--accent-strong); }

  /* Hovering text fields: ring collapses into a text-caret shape */
  .cursor-ring.is-text { width: 3px; height: 24px; border-radius: 2px; background: var(--accent-strong); border-color: transparent; }
  .cursor-dot.is-hidden { opacity: 0; }

  /* Hovering content cards: ring expands into a dark "Ver" pill */
  .cursor-ring.is-view { width: 74px; height: 74px; background: var(--text); border-color: transparent; }
  .cursor-ring.is-view .cursor-label { opacity: 1; }
}

@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ===== Floating contact rectangle (call / WhatsApp) ===== */
.floating-contact {
  position: fixed;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  border-radius: 26px;
  border: 2px solid transparent;
  background:
    linear-gradient(165deg, rgba(255,255,255,0.85), rgba(255,255,255,0.6)) padding-box,
    conic-gradient(from var(--border-angle), var(--accent-strong), #25D366, #8ee000, #25D366, var(--accent-strong)) border-box;
  backdrop-filter: blur(14px);
  animation: border-travel 5s linear infinite, fc-glow-pulse 5s linear infinite;
}

@keyframes fc-glow-pulse {
  0%, 100% { box-shadow: var(--shadow-lg), 0 0 40px -10px rgba(63, 110, 11, 0.55); }
  50% { box-shadow: var(--shadow-lg), 0 0 46px -8px rgba(37, 211, 102, 0.6); }
}

@media (prefers-reduced-motion: reduce) {
  .floating-contact { animation: none; }
}

.fc-btn {
  width: 54px; height: 54px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  position: relative;
  transition: transform 0.25s ease, filter 0.25s ease;
}
.fc-btn:hover { transform: scale(1.06); filter: brightness(1.08); }
.fc-call { background: linear-gradient(135deg, var(--accent-strong), var(--accent)); }
.fc-whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); }
.fc-label {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: var(--text);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 100px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.fc-btn:hover .fc-label { opacity: 1; transform: translateY(-50%) translateX(0); }

@media (max-width: 980px) {
  .floating-contact { right: 20px; top: auto; bottom: 20px; transform: none; }
}
@media (max-width: 640px) {
  .fc-btn { width: 48px; height: 48px; }
  .fc-label { display: none; }
}
