/* Scout. Shared stylesheet. */

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

html {
  overflow-x: clip;
  overflow-y: auto;
  scroll-behavior: auto;
}
body {
  overflow-x: clip;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; }

:root {
  --teal-50: #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --teal-300: #5eead4;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --teal-800: #115e59;
  --teal-900: #134e4a;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --coral: #f43f5e;
  --coral-light: #fff1f2;
  --navy: #0f172a;
  --navy-2: #1e293b;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #ffffff;
  color: var(--gray-800);
  -webkit-font-smoothing: antialiased;
  font-style: normal;
}

/* NAV */
nav.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(14px, 1vw + 0.4rem, 20px) clamp(16px, 4vw, 48px);
  border-bottom: 1px solid var(--gray-100);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: clamp(18px, 1.4vw + 0.5rem, 22px);
  color: var(--teal-700);
  text-decoration: none;
}
.nav-logo .logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  font-weight: 800;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  text-decoration: none;
  color: var(--gray-600);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--teal-600); }
.nav-cta {
  background: var(--teal-600) !important;
  color: white !important;
  padding: 10px 24px;
  border-radius: 10px;
  font-weight: 600 !important;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--teal-700) !important; transform: translateY(-1px); }

/* HERO */
.main-hero {
  text-align: center;
  padding: clamp(60px, 7vw, 100px) clamp(20px, 2vw, 24px) clamp(40px, 5vw, 80px);
  background: linear-gradient(180deg, var(--teal-200) 0%, var(--teal-100) 55%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}
.main-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.main-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--teal-200);
  color: var(--teal-700);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  box-shadow: 0 2px 8px rgba(13, 148, 136, 0.08);
}
.main-hero .hero-badge > span {
  display: inline-block;
  animation: sparkle-spin 2.4s ease-in-out infinite;
  font-size: 18px;
}
@keyframes sparkle-spin {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(20deg) scale(1.15); }
  50% { transform: rotate(0deg) scale(1); }
  75% { transform: rotate(-20deg) scale(1.15); }
}
.research-eyebrow > :first-child,
.dance-label::before {
  display: inline-block;
  animation: float 2.8s ease-in-out infinite;
}
.main-hero h1 {
  font-size: clamp(32px, 4vw + 0.7rem, 60px);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.main-hero h1 .accent {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.main-hero .subtitle {
  font-size: clamp(15px, 0.9vw + 0.7rem, 20px);
  color: var(--gray-500);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 60px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
  color: white;
  padding: 16px 36px;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.3);
  transition: all 0.2s;
  display: inline-block;
}
.btn-primary:hover {
  box-shadow: 0 6px 24px rgba(13, 148, 136, 0.4);
  transform: translateY(-2px);
  color: white;
}
.btn-secondary {
  background: white;
  color: var(--gray-700);
  padding: 16px 36px;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid var(--gray-200);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  display: inline-block;
}
.btn-secondary:hover {
  border-color: var(--teal-300);
  color: var(--teal-700);
}
.hero-photo {
  max-width: 900px;
  margin: 0 auto;
}
.hero-photo img,
.hero-photo video.hero-video {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 25px 80px rgba(0,0,0,0.15);
  display: block;
  background: var(--teal-100);
}
.hero-sound-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px 10px 12px;
  border-radius: 100px;
  background: rgba(10, 110, 98, 0.92);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: all 0.2s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 10;
}
.hero-sound-btn:hover {
  background: var(--teal-500);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 28px rgba(0,0,0,0.3);
}
.hero-sound-btn svg {
  width: 18px;
  height: 18px;
  color: white;
  flex-shrink: 0;
}
.hero-sound-btn .icon-unmuted { display: none; }
.hero-sound-btn.unmuted .icon-muted { display: none; }
.hero-sound-btn.unmuted .icon-unmuted { display: block; }
.hero-sound-btn.unmuted .hero-sound-label::before { content: "Mute"; }
.hero-sound-btn.unmuted .hero-sound-label { font-size: 0; }
.hero-sound-btn.unmuted .hero-sound-label::before { font-size: 13px; }
@media (max-width: 560px) {
  .hero-sound-btn { padding: 8px 12px 8px 10px; font-size: 12px; bottom: 10px; right: 10px; }
  .hero-sound-btn svg { width: 16px; height: 16px; }
}

/* LOGO BAR */
.logo-bar {
  text-align: center;
  padding: 48px 24px;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.logo-bar p {
  font-size: 14px;
  color: var(--gray-400);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}
.logo-bar-logos {
  overflow: hidden;
  position: relative;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.logo-scroll-track {
  display: flex;
  align-items: center;
  gap: 48px;
  animation: scrollLogos 90s linear infinite;
  width: max-content;
}
.logo-scroll-track:hover { animation-play-state: paused; }
@keyframes scrollLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-placeholder {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-300);
  letter-spacing: 1px;
  white-space: nowrap;
  flex-shrink: 0;
}
.logo-separator {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gray-200);
  flex-shrink: 0;
}

/* SECTION HEADER */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal-600);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(26px, 2.5vw + 0.7rem, 40px);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.section-header p {
  font-size: clamp(15px, 0.7vw + 0.7rem, 18px);
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* RESEARCH / PAIN POINTS */
.research-section {
  padding: clamp(56px, 7vw, 100px) clamp(20px, 2vw, 24px);
  background: var(--gray-900);
  color: white;
  position: relative;
  overflow: hidden;
}
.research-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(20,184,166,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.research-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(20,184,166,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.research-inner {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.research-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(20,184,166,0.12);
  border: 1px solid rgba(20,184,166,0.25);
  color: var(--teal-300);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.research-section h2 {
  font-size: clamp(28px, 2.8vw + 0.7rem, 42px);
  font-weight: 800;
  color: white;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 16px;
  max-width: 600px;
}
.research-section h2 .accent { color: var(--teal-400); }
.research-subtitle {
  font-size: 18px;
  color: var(--gray-400);
  max-width: 540px;
  line-height: 1.6;
  margin-bottom: 48px;
}
.research-banner-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 56px;
}
.research-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px 28px;
  flex: 1;
}
.research-stat-value {
  font-size: 36px;
  font-weight: 800;
  color: var(--teal-400);
  margin-bottom: 4px;
}
.research-stat-label {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.4;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.pain-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.2s;
}
.pain-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(20,184,166,0.2);
}
.pain-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.pain-rank {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
}
.pain-rank.r1 { background: var(--teal-600); color: white; }
.pain-rank.r2 { background: rgba(20,184,166,0.2); color: var(--teal-300); }
.pain-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: white;
}
.pain-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}
.pain-solved {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-400);
}
.pain-solved-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-400);
}

/* DANCE SEASON CALLOUT */
.dance-callout {
  padding: clamp(56px, 7vw, 100px) clamp(20px, 2vw, 24px);
  background: linear-gradient(135deg, var(--teal-500) 0%, var(--teal-700) 100%);
  position: relative;
  overflow: hidden;
}
.dance-callout::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.dance-callout::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.dance-callout-inner {
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  border-radius: 24px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  transition: transform 0.3s;
  position: relative;
  z-index: 1;
}
.dance-callout-inner:hover { transform: translateY(-3px); }
.dance-callout-inner .dance-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--teal-600);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
  display: block;
}
.dance-callout-inner h2 {
  font-size: clamp(24px, 2.5vw + 0.5rem, 36px);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 18px;
}
.dance-callout-inner h2 .accent {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.dance-callout-inner p {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.6;
}
.dance-stat-box {
  background: linear-gradient(135deg, var(--teal-600), var(--teal-800));
  border-radius: 20px;
  padding: 36px 28px;
  color: white;
  text-align: center;
}
.dance-stat-box.coral {
  background: linear-gradient(135deg, var(--coral), #fb7185);
}
.dance-stat-box.gold {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}
.dance-stat-value {
  font-size: clamp(40px, 3.5vw + 1rem, 56px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 10px;
}
.dance-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.88);
  line-height: 1.5;
}

/* FEATURES */
.features-section {
  padding: clamp(56px, 7vw, 100px) clamp(20px, 2vw, 24px);
  background: linear-gradient(180deg, var(--teal-200) 0%, var(--teal-100) 40%, #ffffff 100%);
  border-top: 1px solid var(--teal-300);
}
.features-section > .section-header,
.features-section > .features-grid {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature-card {
  padding: 36px 28px;
  border-radius: 20px;
  border: 1px solid var(--gray-100);
  background: white;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(13, 148, 136, 0.08);
  position: relative;
}
.card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, var(--coral), #fb7185);
  color: white;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(244, 63, 94, 0.3);
  animation: badge-wiggle 2.4s ease-in-out infinite;
  z-index: 2;
}
@keyframes badge-wiggle {
  0%, 100% { transform: rotate(-2deg) scale(1); }
  50% { transform: rotate(2deg) scale(1.05); }
}
.feature-card:hover {
  border-color: var(--teal-200);
  box-shadow: 0 12px 40px rgba(13, 148, 136, 0.06);
  transform: translateY(-4px);
}
.feature-icon {
  width: 76px;
  height: 76px;
  border-radius: 52% 48% 50% 52% / 48% 52% 50% 48%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  margin-bottom: 24px;
  box-shadow: 0 6px 18px rgba(13, 148, 136, 0.15);
  animation: bobble 3.6s ease-in-out infinite, blob-morph 8s ease-in-out infinite;
  transform-origin: center bottom;
  line-height: 1;
  position: relative;
}
.feature-icon::after {
  content: "✨";
  position: absolute;
  top: -8px;
  right: -10px;
  font-size: 18px;
  animation: sparkle-spin 2.4s ease-in-out infinite;
  pointer-events: none;
}
.feature-icon svg { width: 52px; height: 52px; display: block; }
.kawaii-cheek { fill: #f9a8d4; opacity: 0.85; }
.kawaii-eye { fill: #1f2937; }
.kawaii-mouth { stroke: #1f2937; stroke-width: 1.6; stroke-linecap: round; fill: none; }
.card-icon svg { width: 40px; height: 40px; display: block; }
.trust-badge-icon svg { width: 38px; height: 38px; display: block; }
.guarantee-icon svg { width: 32px; height: 32px; display: block; }
.feature-card:nth-child(1) .feature-icon { background: linear-gradient(135deg, #ccfbf1, #99f6e4); animation-name: bobble, blob-morph; animation-delay: 0s, 0s; }
.feature-card:nth-child(2) .feature-icon { background: linear-gradient(135deg, #fce7f3, #fbcfe8); animation-name: wiggle, blob-morph; animation-delay: 0.4s, 1s; }
.feature-card:nth-child(3) .feature-icon { background: linear-gradient(135deg, #fef3c7, #fde68a); animation-name: pop, blob-morph; animation-delay: 0.8s, 2s; }
.feature-card:nth-child(4) .feature-icon { background: linear-gradient(135deg, #dbeafe, #bfdbfe); animation-name: bobble, blob-morph; animation-delay: 1.2s, 3s; }
.feature-card:nth-child(5) .feature-icon { background: linear-gradient(135deg, #99f6e4, #5eead4); animation-name: wiggle, blob-morph; animation-delay: 1.6s, 4s; }
.feature-card:nth-child(6) .feature-icon { background: linear-gradient(135deg, #ede9fe, #ddd6fe); animation-name: pop, blob-morph; animation-delay: 2.0s, 5s; }
.feature-card:hover .feature-icon { animation-duration: 1.2s, 8s; }

@keyframes blob-morph {
  0%, 100% { border-radius: 52% 48% 50% 52% / 48% 52% 50% 48%; }
  25% { border-radius: 48% 52% 54% 46% / 52% 50% 48% 52%; }
  50% { border-radius: 50% 54% 48% 52% / 48% 52% 54% 46%; }
  75% { border-radius: 54% 46% 52% 48% / 50% 48% 52% 54%; }
}

@keyframes bobble {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-6px) rotate(-3deg); }
  50% { transform: translateY(-3px) rotate(0deg); }
  75% { transform: translateY(-6px) rotate(3deg); }
}
@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-8deg) scale(1.05); }
  50% { transform: rotate(0deg) scale(1); }
  75% { transform: rotate(8deg) scale(1.05); }
}
@keyframes pop {
  0%, 100% { transform: scale(1); }
  20% { transform: scale(1.12); }
  40% { transform: scale(0.96); }
  60% { transform: scale(1.08); }
  80% { transform: scale(1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.feature-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* TESTIMONIALS */
.testimonials-section {
  padding: clamp(56px, 7vw, 100px) clamp(20px, 2vw, 24px);
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.testimonials-section .section-header {
  max-width: 1120px;
  margin: 0 auto 48px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}
.testimonial-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.2s;
}
.testimonial-card:hover {
  border-color: var(--teal-200);
  box-shadow: 0 8px 24px rgba(13,148,136,0.06);
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
  color: #f59e0b;
  font-size: 16px;
}
.testimonial-quote {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
  font-style: normal;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: white;
}
.testimonial-avatar.a1 { background: linear-gradient(135deg, var(--teal-400), var(--teal-600)); }
.testimonial-avatar.a2 { background: linear-gradient(135deg, var(--teal-500), var(--teal-700)); }
.testimonial-avatar.a3 { background: linear-gradient(135deg, var(--teal-300), var(--teal-500)); }
.testimonial-avatar.a4 { background: linear-gradient(135deg, var(--teal-600), var(--teal-800)); }
.testimonial-avatar.a5 { background: linear-gradient(135deg, var(--teal-400), var(--teal-700)); }
.testimonial-avatar.a6 { background: linear-gradient(135deg, var(--teal-500), var(--teal-800)); }
.testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-800);
}
.testimonial-role {
  font-size: 12px;
  color: var(--gray-400);
}
.testimonial-highlight {
  color: var(--teal-600);
  font-weight: 600;
  font-style: normal;
}

/* STATS BANNER */
.stats-banner {
  padding: clamp(36px, 4vw, 56px) clamp(20px, 2vw, 24px);
  background: linear-gradient(135deg, var(--teal-600), var(--teal-800));
  color: white;
}
.stats-banner-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  text-align: center;
  gap: 24px;
  flex-wrap: wrap;
}
.stats-banner-item { min-width: 140px; }
.stats-banner-value {
  font-size: clamp(26px, 2vw + 0.7rem, 36px);
  font-weight: 800;
}
.stats-banner-label {
  font-size: 14px;
  color: var(--teal-200);
  margin-top: 4px;
}

/* TRUST BADGES */
.trust-section {
  padding: clamp(40px, 4.5vw, 64px) clamp(20px, 2vw, 24px);
  background: white;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.trust-badges-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
}
.trust-badge-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
  animation: float 3s ease-in-out infinite;
  line-height: 1;
}
.trust-badge:nth-child(1) .trust-badge-icon { animation-name: bobble; animation-delay: 0s; }
.trust-badge:nth-child(2) .trust-badge-icon { animation-name: wiggle; animation-delay: 0.6s; }
.trust-badge:nth-child(3) .trust-badge-icon { animation-name: pop; animation-delay: 1.2s; }
.trust-badge:nth-child(4) .trust-badge-icon { animation-name: float; animation-delay: 1.8s; }
.trust-badge-icon.secure { background: #ecfdf5; }
.trust-badge-icon.data { background: #eff6ff; }
.trust-badge-icon.money { background: #fef3c7; }
.trust-badge-icon.uptime { background: var(--teal-100); }
.trust-badge-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-700);
}
.trust-badge-sub {
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 500;
}

/* HOW IT WORKS */
.how-section {
  padding: clamp(56px, 7vw, 100px) clamp(20px, 2vw, 24px);
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.how-section .section-header { max-width: 1120px; margin: 0 auto 64px; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: var(--teal-200);
  z-index: 0;
}
.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--teal-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 800;
  color: var(--teal-600);
  margin: 0 auto 24px;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.1);
}
.step-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.step-card p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.6;
  max-width: 260px;
  margin: 0 auto;
}

/* CURSOR SPARKLE TRAIL (soft gold) */
.cursor-sparkle {
  position: fixed;
  width: 14px;
  height: 14px;
  background: #f2cc8a;
  clip-path: polygon(50% 0%, 58% 42%, 100% 50%, 58% 58%, 50% 100%, 42% 58%, 0% 50%, 42% 42%);
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.4) rotate(0deg);
  filter:
    drop-shadow(0 0 4px rgba(254, 243, 199, 0.9))
    drop-shadow(0 0 8px rgba(212, 165, 72, 0.5));
  animation: cursor-sparkle-fade 900ms ease-out forwards;
  will-change: transform, opacity;
}
.cursor-sparkle.sm { width: 9px; height: 9px; }
.cursor-sparkle.lg { width: 18px; height: 18px; }
.cursor-sparkle.warm {
  background: #fef3c7;
  filter:
    drop-shadow(0 0 4px rgba(254, 243, 199, 1))
    drop-shadow(0 0 10px rgba(212, 165, 72, 0.6));
}

@keyframes cursor-sparkle-fade {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.3) rotate(0deg);
  }
  20% {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(1) rotate(25deg);
  }
  60% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(0.95) rotate(45deg);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.6) rotate(90deg) translateY(14px);
  }
}

@media (hover: none) and (pointer: coarse) {
  .cursor-sparkle { display: none; }
}

/* SPARKLE TWINKLES (4-point star shape) */
.has-sparkles {
  position: relative;
  overflow: visible;
}
.has-sparkles .sparkle {
  position: absolute;
  width: 20px;
  height: 20px;
  background: #ffffff;
  clip-path: polygon(50% 0%, 58% 42%, 100% 50%, 58% 58%, 50% 100%, 42% 58%, 0% 50%, 42% 42%);
  pointer-events: none;
  filter:
    drop-shadow(0 0 4px rgba(255,255,255,0.95))
    drop-shadow(0 0 8px rgba(17,175,157,0.7));
  opacity: 0;
  animation: twinkle 2.8s ease-in-out infinite;
  z-index: 5;
}
.sparkle.s1 { top: 8%; left: 12%; animation-delay: 0s; }
.sparkle.s2 { top: 18%; right: 14%; animation-delay: 0.8s; }
.sparkle.s3 { bottom: 22%; left: 22%; animation-delay: 1.4s; width: 14px; height: 14px; }
.sparkle.s4 { top: 58%; right: 8%; animation-delay: 1.9s; width: 16px; height: 16px; }
.sparkle.s5 { bottom: 10%; right: 26%; animation-delay: 0.4s; width: 12px; height: 12px; }
.sparkle.teal-tint {
  background: var(--teal-300);
  filter:
    drop-shadow(0 0 4px rgba(255,255,255,0.8))
    drop-shadow(0 0 8px rgba(17,175,157,0.9));
}

@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(0.3) rotate(0deg); }
  50% { opacity: 1; transform: scale(1) rotate(20deg); }
}

/* PAW TRAIL ANIMATION (walks across How It Works steps) */
.steps-grid { overflow: visible; }
.paw-trail {
  position: absolute;
  left: 5%;
  right: 5%;
  top: 26px;
  height: 36px;
  pointer-events: none;
  z-index: 2;
}
.paw-trail .paw {
  position: absolute;
  width: 28px;
  height: 28px;
  opacity: 0;
  animation: paw-walk 4s ease-in-out infinite;
  transform-origin: center;
  filter: drop-shadow(0 2px 4px rgba(13, 148, 136, 0.3));
}
.paw-trail .paw-sparkle {
  position: absolute;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 0%, rgba(17,175,157,0.7) 50%, transparent 85%);
  filter: drop-shadow(0 0 6px rgba(17,175,157,1));
  opacity: 0;
  animation: paw-sparkle 4s ease-in-out infinite;
}
.paw-trail .paw.p1 { left: 5%; animation-delay: 0s; }
.paw-trail .paw.p2 { left: 22%; animation-delay: 0.5s; }
.paw-trail .paw.p3 { left: 40%; animation-delay: 1s; }
.paw-trail .paw.p4 { left: 58%; animation-delay: 1.5s; }
.paw-trail .paw.p5 { left: 76%; animation-delay: 2s; }
.paw-trail .paw.p6 { left: 90%; animation-delay: 2.5s; }
.paw-trail .paw-sparkle.ps1 { left: 12%; animation-delay: 0.25s; }
.paw-trail .paw-sparkle.ps2 { left: 29%; animation-delay: 0.75s; }
.paw-trail .paw-sparkle.ps3 { left: 47%; animation-delay: 1.25s; }
.paw-trail .paw-sparkle.ps4 { left: 65%; animation-delay: 1.75s; }
.paw-trail .paw-sparkle.ps5 { left: 83%; animation-delay: 2.25s; }

.paw-trail .paw { animation-duration: 4s; }
.paw-trail .paw-sparkle { animation-duration: 4s; }

@keyframes paw-walk {
  0% { opacity: 0; transform: scale(0.6) translateY(6px) rotate(-8deg); }
  15% { opacity: 1; transform: scale(1) translateY(0) rotate(-2deg); }
  50% { opacity: 1; transform: scale(1) translateY(0) rotate(2deg); }
  75% { opacity: 0; transform: scale(1.1) translateY(-4px) rotate(4deg); }
  100% { opacity: 0; transform: scale(0.6) translateY(6px) rotate(-8deg); }
}
@keyframes paw-sparkle {
  0% { opacity: 0; transform: scale(0.3); }
  20% { opacity: 1; transform: scale(1.3); }
  40% { opacity: 0.4; transform: scale(0.8); }
  60% { opacity: 0; transform: scale(0.3); }
  100% { opacity: 0; transform: scale(0.3); }
}

/* Paw bullet replacement for pricing feature list */
.feature-list li.paw::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  background-image: url('images/Paw-teal.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Paw decorations in research section */
.research-section .deco-paw {
  position: absolute;
  width: 40px;
  height: 40px;
  opacity: 0.12;
  filter: drop-shadow(0 0 8px rgba(20,184,166,0.4));
}
.research-section .deco-paw.dp1 { top: 8%; left: 6%; transform: rotate(-18deg); }
.research-section .deco-paw.dp2 { top: 22%; right: 8%; transform: rotate(24deg); width: 28px; height: 28px; }
.research-section .deco-paw.dp3 { bottom: 14%; left: 4%; transform: rotate(12deg); width: 32px; height: 32px; }
.research-section .deco-paw.dp4 { bottom: 8%; right: 6%; transform: rotate(-8deg); width: 48px; height: 48px; }

/* EDU / SCOUT 101 */
.edu-section {
  padding: clamp(56px, 7vw, 100px) clamp(20px, 2vw, 24px);
  background: linear-gradient(180deg, var(--teal-200) 0%, var(--teal-100) 40%, #ffffff 100%);
  border-top: 1px solid var(--teal-300);
  border-bottom: 1px solid var(--gray-100);
}
.edu-section .section-header { max-width: 1120px; margin: 0 auto 56px; }
.edu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1120px;
  margin: 0 auto;
}
.edu-card {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(13, 148, 136, 0.08);
}
.edu-card:hover {
  border-color: var(--teal-200);
  box-shadow: 0 16px 40px rgba(13, 148, 136, 0.08);
  transform: translateY(-4px);
}
.edu-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--teal-100);
}
.edu-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.edu-photo.edu-illus {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--teal-100), var(--teal-200));
  position: relative;
  overflow: hidden;
}
.edu-photo.edu-illus svg {
  width: 150px;
  height: 150px;
  display: block;
  filter: drop-shadow(0 6px 12px rgba(13, 148, 136, 0.18));
  animation: bobble 4s ease-in-out infinite;
}
.edu-card:nth-child(5) .edu-illus svg { animation-name: wiggle; animation-duration: 3.2s; }
.edu-card:nth-child(6) .edu-illus svg { animation-name: pop; animation-duration: 3.6s; }
.edu-photo.edu-illus::before,
.edu-photo.edu-illus::after {
  content: "";
  position: absolute;
  width: 20px; height: 20px;
  background: #ffffff;
  clip-path: polygon(50% 0%, 58% 42%, 100% 50%, 58% 58%, 50% 100%, 42% 58%, 0% 50%, 42% 42%);
  filter: drop-shadow(0 0 8px rgba(17,175,157,0.85));
  animation: twinkle 2.8s ease-in-out infinite;
  pointer-events: none;
}
.edu-photo.edu-illus::before { top: 14%; left: 12%; animation-delay: 0s; }
.edu-photo.edu-illus::after { bottom: 14%; right: 12%; animation-delay: 1.2s; }
.edu-body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.edu-tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--teal-600);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 12px;
}
.edu-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
  line-height: 1.25;
  letter-spacing: -0.3px;
}
.edu-card p {
  font-size: 14.5px;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}
.edu-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal-600);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: gap 0.2s;
}
.edu-read-more:hover { gap: 10px; color: var(--teal-700); }

/* SPOTLIGHT */
.spotlight-section {
  padding: clamp(56px, 7vw, 100px) clamp(20px, 2vw, 24px);
  max-width: 1120px;
  margin: 0 auto;
}
.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.spotlight-text h2 {
  font-size: clamp(26px, 2.4vw + 0.7rem, 38px);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  line-height: 1.15;
}
.spotlight-text h2 .accent {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.spotlight-text p {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 32px;
}
.spotlight-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.spotlight-stat {
  background: linear-gradient(135deg, var(--teal-200), var(--teal-100));
  border-radius: 14px;
  padding: 20px;
  border: 1px solid var(--teal-300);
}
.spotlight-stat-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--teal-700);
}
.spotlight-stat-label {
  font-size: 14px;
  color: var(--gray-500);
  margin-top: 4px;
}
.spotlight-visual img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  margin-bottom: 24px;
}
.scout-mock {
  background: var(--gray-900);
  border-radius: 16px;
  padding: 24px;
}
.scout-mock-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 10px;
  align-items: center;
  font-size: 14px;
}
.scout-mock-row.header {
  color: var(--gray-400);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 4px;
}
.scout-mock-row:not(.header) {
  color: white;
  transition: background 0.2s;
}
.scout-mock-row:not(.header):nth-child(2) { background: rgba(20, 184, 166, 0.15); }
.scout-mock-row:not(.header):hover { background: rgba(20, 184, 166, 0.1); }
.scout-supplier { font-weight: 600; }
.scout-price { font-weight: 700; }
.scout-best { color: var(--teal-400); }
.scout-tag {
  background: var(--teal-600);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-left: 6px;
}

/* PRICING */
.pricing-wrap {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  padding-bottom: 1px;
}
.pricing-hero {
  text-align: center;
  padding: 80px 24px 20px;
}
.pricing-hero h2 {
  font-size: clamp(28px, 2.5vw + 0.7rem, 40px);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.pricing-hero p {
  font-size: clamp(15px, 0.7vw + 0.7rem, 18px);
  color: var(--gray-500);
  max-width: 520px;
  margin: 0 auto;
}
.toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 40px 0 48px;
}
.toggle-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-500);
  cursor: pointer;
  transition: color 0.2s;
}
.toggle-label.active { color: var(--gray-800); }
.toggle-track {
  width: 52px;
  height: 28px;
  background: var(--teal-500);
  border-radius: 100px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s;
}
.toggle-knob {
  width: 22px;
  height: 22px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: transform 0.3s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.toggle-track.yearly .toggle-knob { transform: translateX(24px); }
.save-badge {
  background: var(--coral);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}
.pricing-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px 80px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: stretch;
  max-width: 760px;
  margin: 0 auto;
}
.pricing-card {
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: 20px;
  padding: 30px 24px;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  border-color: var(--teal-300);
  box-shadow: 0 8px 30px rgba(13, 148, 136, 0.08);
  transform: translateY(-3px);
}
.pricing-card.featured {
  border: 2px solid var(--teal-500);
  box-shadow: 0 8px 40px rgba(13, 148, 136, 0.12);
}
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}
.card-icon {
  width: 112px;
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  animation: float 4s ease-in-out infinite;
  line-height: 1;
  position: relative;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}
.card-icon img,
.card-icon video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 14px;
}
.card-icon.basic img {
  width: 90%;
  height: 90%;
}
.pricing-card:nth-child(1) .card-icon { animation-delay: 0s; }
.pricing-card:nth-child(2) .card-icon { animation-delay: 0.8s; }

.card-icon-spark {
  position: absolute;
  width: 10px;
  height: 10px;
  background:
    radial-gradient(circle, rgba(20, 184, 166, 0.95) 0%, rgba(20, 184, 166, 0.55) 35%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: twinkle 2.6s ease-in-out infinite;
  filter: drop-shadow(0 0 4px rgba(20, 184, 166, 0.6));
}
.card-icon-spark.s1 { top: -4px; right: 6px; width: 9px; height: 9px; animation-delay: 0s; }
.card-icon-spark.s2 { bottom: 14px; left: -6px; width: 7px; height: 7px; animation-delay: 0.9s; }
.card-icon-spark.s3 { top: 28px; right: -8px; width: 6px; height: 6px; animation-delay: 1.6s; }

.scout-toggle-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--teal-600);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.scout-toggle {
  display: flex;
  background: var(--teal-100);
  border-radius: 100px;
  padding: 4px;
  margin-bottom: 18px;
  gap: 2px;
  border: 1px solid var(--teal-200);
}
.scout-toggle-opt {
  background: transparent;
  border: none;
  color: var(--teal-700);
  font-family: inherit;
  font-weight: 600;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  flex: 1;
  text-align: center;
}
.scout-toggle-opt.active {
  background: white;
  color: var(--teal-700);
  box-shadow: 0 2px 6px rgba(13, 148, 136, 0.18);
}
.scout-toggle-opt:not(.active):hover { color: var(--teal-800); }

.tier-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.tier-desc {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 24px;
  min-height: 46px;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.price {
  font-size: 48px;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -2px;
}
.price-period {
  font-size: 15px;
  color: var(--gray-400);
  font-weight: 500;
}
.price-note {
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 28px;
}
.cta-btn {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  font-family: inherit;
  text-decoration: none;
}
.cta-btn.outline {
  background: white;
  border: 2px solid var(--teal-500);
  color: var(--teal-600);
}
.cta-btn.outline:hover { background: var(--teal-100); }
.cta-btn.filled {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
  color: white;
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.3);
}
.cta-btn.filled:hover {
  background: linear-gradient(135deg, var(--teal-600), var(--teal-700));
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.35);
  transform: translateY(-1px);
}
.divider {
  height: 1px;
  background: var(--gray-100);
  margin: 28px 0;
}
.features-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--teal-600);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
}
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-list[hidden] { display: none; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--gray-600);
  line-height: 1.4;
}
.feature-list .check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--teal-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.feature-list .check svg {
  width: 12px;
  height: 12px;
  color: var(--teal-600);
}
.feature-new {
  background: var(--coral-light);
  color: var(--coral);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  margin-left: 4px;
}
.feature-soon {
  background: var(--gray-100);
  color: var(--gray-500);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  margin-left: 4px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* GUARANTEE BAR */
.trust-bar {
  padding: clamp(32px, 3.5vw, 48px) clamp(20px, 2vw, 24px);
  border-top: 1px solid var(--gray-100);
  background: white;
}
.guarantees {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.guarantee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--gray-600);
  font-weight: 500;
}
.guarantee-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--teal-100), var(--teal-200));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  animation: bobble 4s ease-in-out infinite;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(13, 148, 136, 0.1);
}
.guarantee-item:nth-child(1) .guarantee-icon { animation-name: float; animation-delay: 0s; }
.guarantee-item:nth-child(2) .guarantee-icon { animation-name: wiggle; animation-delay: 0.7s; }
.guarantee-item:nth-child(3) .guarantee-icon { animation-name: pop; animation-delay: 1.4s; }
.guarantee-item:nth-child(4) .guarantee-icon { animation-name: bobble; animation-delay: 2.1s; }

/* FAQ */
.faq-section {
  padding: clamp(56px, 7vw, 100px) clamp(20px, 2vw, 24px);
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
}
.faq-section .section-header { max-width: 1120px; margin: 0 auto 48px; }
.faq-grid {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item:hover { border-color: var(--teal-300); }
.faq-question {
  padding: 24px 28px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-800);
  user-select: none;
}
.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--teal-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--teal-600);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 320px; }
.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* Scout wink animation */
.scout-wink {
  display: block;
  width: 100%;
  height: auto;
  max-width: 220px;
  margin: 0 auto;
  border-radius: 50%;
  box-shadow: 0 12px 32px rgba(13, 148, 136, 0.18);
  background: var(--teal-100);
}
.scout-wink-wrap {
  display: inline-block;
  padding: 6px;
  background: linear-gradient(135deg, var(--teal-200), var(--coral-light), var(--teal-300));
  border-radius: 50%;
  animation: gertie-blob 14s ease-in-out infinite;
  margin: 0 auto 16px;
}
.scout-wink-wrap .scout-wink {
  border-radius: 50%;
  box-shadow: none;
}
.scout-wink-lg { max-width: 300px; }

/* Gertie photo with kawaii frame */
.gertie-photo-wrap {
  position: relative;
  display: inline-block;
  padding: 8px;
  background: linear-gradient(135deg, var(--teal-100), var(--teal-300), var(--coral-light));
  border-radius: 50% 48% 52% 50% / 50% 52% 48% 50%;
  box-shadow: 0 18px 48px rgba(13, 148, 136, 0.18);
  animation: gertie-blob 12s ease-in-out infinite;
}
.gertie-photo {
  display: block;
  width: 280px;
  height: 280px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50% 48% 52% 50% / 50% 52% 48% 50%;
  animation: gertie-blob-inner 12s ease-in-out infinite;
}
@keyframes gertie-blob {
  0%, 100% { border-radius: 50% 48% 52% 50% / 50% 52% 48% 50%; }
  33% { border-radius: 52% 54% 46% 48% / 48% 46% 54% 52%; }
  66% { border-radius: 48% 50% 52% 54% / 52% 54% 48% 46%; }
}
@keyframes gertie-blob-inner {
  0%, 100% { border-radius: 50% 48% 52% 50% / 50% 52% 48% 50%; }
  33% { border-radius: 52% 54% 46% 48% / 48% 46% 54% 52%; }
  66% { border-radius: 48% 50% 52% 54% / 52% 54% 48% 46%; }
}

/* ABOUT GERTIE */
.about-section {
  padding: clamp(56px, 7vw, 100px) clamp(20px, 2vw, 24px);
  background: white;
}
.about-inner {
  max-width: 760px;
  margin: 0 auto;
}
.about-section .section-label { margin-bottom: 12px; }
.about-section h2 {
  font-size: clamp(28px, 2.5vw + 0.7rem, 40px);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  line-height: 1.15;
}
.about-section h2 .accent {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-section p {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 18px;
}
.about-sig {
  font-size: 18px;
  color: var(--teal-700);
  font-weight: 700;
  margin-top: 24px;
}

.gertie-facts {
  margin: 36px 0 8px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.gertie-fact {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: linear-gradient(135deg, var(--teal-100), var(--teal-200));
  border-radius: 16px;
  border: 1px solid rgba(13, 148, 136, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gertie-fact:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(13, 148, 136, 0.18);
}
.gertie-fact-emoji {
  font-size: 28px;
  line-height: 1;
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: white;
  box-shadow: 0 3px 8px rgba(13, 148, 136, 0.12);
  flex-shrink: 0;
  animation: bobble 4s ease-in-out infinite;
}
.gertie-fact:nth-child(2) .gertie-fact-emoji { animation-name: wiggle; animation-duration: 3.4s; animation-delay: 0.4s; }
.gertie-fact:nth-child(3) .gertie-fact-emoji { animation-name: pop; animation-duration: 3.6s; animation-delay: 0.8s; }
.gertie-fact:nth-child(4) .gertie-fact-emoji { animation-name: float; animation-delay: 1.2s; }
.gertie-fact:nth-child(5) .gertie-fact-emoji { animation-name: wiggle; animation-duration: 3.2s; animation-delay: 1.6s; }
.gertie-fact:nth-child(6) .gertie-fact-emoji { animation-name: pop; animation-duration: 3.8s; animation-delay: 2s; }
.gertie-fact > div { display: flex; flex-direction: column; }
.gertie-fact strong {
  font-size: 15px;
  font-weight: 800;
  color: var(--teal-800);
  letter-spacing: -0.1px;
  margin-bottom: 2px;
}
.gertie-fact span {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.45;
}
@media (max-width: 560px) {
  .gertie-facts { grid-template-columns: 1fr; }
}

/* PODCAST + EMAIL GATE */
.podcast-section {
  padding: clamp(56px, 7vw, 100px) clamp(20px, 2vw, 24px);
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  border-top: 1px solid var(--navy-2);
  border-bottom: 1px solid var(--navy);
  position: relative;
  overflow: hidden;
  color: white;
}
.podcast-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(20,184,166,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.podcast-section::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -120px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(244,63,94,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.podcast-section > * { position: relative; z-index: 1; }
.podcast-section .section-label { color: var(--teal-300); }
.podcast-section .gertie-intro-card .gertie-intro-label { color: var(--teal-300); }
.podcast-section .gertie-intro-card h3 { color: white; }
.podcast-section .gertie-intro-card .gertie-intro-caption { color: rgba(255,255,255,0.78); }
.podcast-section .podcast-text h2 { color: white; }
.podcast-section .podcast-text p { color: rgba(255,255,255,0.82); }
.podcast-section .podcast-text h2 .accent {
  background: linear-gradient(135deg, var(--teal-300), var(--teal-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.podcast-section .gertie-intro-card h3 .accent {
  background: linear-gradient(135deg, var(--teal-300), var(--teal-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.podcast-section .podcast-hosts-caption { color: var(--teal-300); }
.gertie-intro-card {
  max-width: 960px;
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.gertie-intro-card .gertie-intro-text {
  text-align: left;
}
.gertie-intro-card .gertie-intro-visual {
  text-align: right;
}
.gertie-intro-card .gertie-intro-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--teal-700);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 14px;
  display: block;
}
.gertie-intro-card h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  line-height: 1.2;
}
@media (max-width: 820px) {
  .gertie-intro-card {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .gertie-intro-card .gertie-intro-text,
  .gertie-intro-card .gertie-intro-visual { text-align: center; }
}
.gertie-intro-frame {
  display: inline-block;
  padding: 5px;
  background: linear-gradient(135deg, var(--teal-200), var(--coral-light), var(--teal-300));
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(13, 148, 136, 0.18);
  animation: hosts-blob 14s ease-in-out infinite;
  width: 150px;
}
.gertie-intro-frame video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  background: #000;
}
.gertie-audio-card {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #0f172a;
  cursor: pointer;
  border: none;
  padding: 0;
}
.gertie-audio-card img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.4s ease, filter 0.3s ease;
}
.gertie-audio-card:hover img {
  transform: scale(1.04);
  filter: brightness(1.05);
}
.gertie-audio-card .play-overlay {
  position: absolute;
  right: clamp(8px, 2.5%, 18px);
  bottom: clamp(10px, 3%, 22px);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.gertie-audio-card .play-btn {
  width: clamp(28px, 6.5%, 44px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.25);
  transition: transform 0.2s ease;
}
.gertie-audio-card:hover .play-btn { transform: scale(1.1); }
.gertie-audio-card .play-btn svg {
  width: 40%;
  height: 40%;
  fill: var(--teal-700);
}
.gertie-audio-card.playing .play-btn svg.play-icon { display: none; }
.gertie-audio-card .play-btn svg.pause-icon { display: none; }
.gertie-audio-card.playing .play-btn svg.pause-icon { display: block; }
.gertie-audio-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255,255,255,0.2);
  overflow: hidden;
}
.gertie-audio-progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--teal-400), var(--teal-300));
  transition: width 0.15s linear;
}
.gertie-intro-card p.gertie-intro-caption {
  margin-top: 20px;
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.podcast-top {
  max-width: 960px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}
.podcast-photo {
  position: relative;
  padding: 8px;
  background: linear-gradient(135deg, var(--teal-200), var(--coral-light), var(--teal-300));
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(13, 148, 136, 0.15);
  animation: hosts-blob 14s ease-in-out infinite;
}
.podcast-photo img {
  display: block;
  width: 100%;
  max-width: 340px;
  height: auto;
  border-radius: 20px;
}
.podcast-hosts-caption {
  margin-top: 16px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--teal-700);
  font-weight: 700;
  text-align: center;
}
@keyframes hosts-blob {
  0%, 100% { border-radius: 24px; }
  33% { border-radius: 36px 24px 30px 28px; }
  66% { border-radius: 28px 34px 26px 32px; }
}
.podcast-gate-wrap {
  max-width: 960px;
  margin: 0 auto;
}
.podcast-gate-wrap .podcast-gate {
  max-width: 100%;
}

.podcast-player-wrap {
  max-width: 960px;
  margin: 48px auto 0;
  padding: 28px;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(13, 148, 136, 0.08);
}
.podcast-player-wrap h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 6px;
}
.podcast-player-wrap > p {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 18px;
}
.podcast-subscribe-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--gray-100);
}
.podcast-subscribe-row .label {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
  margin-bottom: 4px;
}
.subscribe-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 10px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  text-decoration: none;
  color: var(--gray-700);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s ease;
}
.subscribe-btn:hover {
  background: var(--teal-100);
  border-color: var(--teal-300);
  color: var(--teal-700);
  transform: translateY(-1px);
}
.subscribe-btn .platform-icon { font-size: 16px; }
.podcast-text h2 {
  font-size: clamp(26px, 2.4vw + 0.7rem, 38px);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 18px;
}
.podcast-text h2 .accent {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.podcast-text p {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 14px;
}
.podcast-gate-wrap { margin-top: 56px; }
.podcast-gate {
  background: linear-gradient(135deg, var(--teal-600), var(--teal-700));
  border: 1px solid var(--teal-500);
  border-radius: 18px;
  padding: 28px 36px;
  box-shadow: 0 12px 32px rgba(13, 148, 136, 0.25);
  color: white;
  position: relative;
  overflow: hidden;
}
.podcast-gate::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.podcast-gate-paw {
  display: block;
  width: 80px;
  height: auto;
  margin: 18px auto 0;
  pointer-events: none;
  opacity: 0.9;
  filter: drop-shadow(0 0 14px rgba(255,255,255,0.4));
  animation: paw-float 5.5s ease-in-out infinite;
}
@keyframes paw-float {
  0%, 100% { transform: translateY(0) rotate(-4deg) scale(1); }
  50% { transform: translateY(-6px) rotate(4deg) scale(1.04); }
}
.podcast-gate .podcast-gate-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 540px;
  margin: 0 auto;
}
.podcast-gate .podcast-form {
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}
.podcast-gate-sparkle,
.soft-sparkle {
  position: absolute;
  width: 14px;
  height: 14px;
  background: #ffffff;
  clip-path: polygon(50% 0%, 58% 42%, 100% 50%, 58% 58%, 50% 100%, 42% 58%, 0% 50%, 42% 42%);
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.9));
  pointer-events: none;
  opacity: 0;
  animation: gate-twinkle 3s ease-in-out infinite;
  z-index: 2;
}
.soft-sparkle.sm { width: 9px; height: 9px; }
.soft-sparkle.lg { width: 18px; height: 18px; }
.soft-sparkle.tl { top: 12%; left: 8%; }
.soft-sparkle.tr { top: 14%; right: 8%; }
.soft-sparkle.tm { top: 18%; left: 50%; transform: translateX(-50%); }
.soft-sparkle.bl { bottom: 14%; left: 10%; }
.soft-sparkle.br { bottom: 14%; right: 10%; }
.soft-sparkle.bm { bottom: 16%; left: 50%; transform: translateX(-50%); }
.soft-sparkle.ml { top: 50%; left: 6%; transform: translateY(-50%); }
.soft-sparkle.mr { top: 50%; right: 6%; transform: translateY(-50%); }
.soft-sparkle.d1 { animation-delay: 0s; }
.soft-sparkle.d2 { animation-delay: 0.6s; }
.soft-sparkle.d3 { animation-delay: 1.1s; }
.soft-sparkle.d4 { animation-delay: 1.7s; }
.soft-sparkle.d5 { animation-delay: 2.3s; }
.podcast-gate-sparkle.gs1 { top: 18%; right: 8%; animation-delay: 0s; }
.podcast-gate-sparkle.gs2 { top: 60%; right: 18%; animation-delay: 0.9s; width: 10px; height: 10px; }
.podcast-gate-sparkle.gs3 { top: 38%; right: 30%; animation-delay: 1.6s; width: 12px; height: 12px; }
.podcast-gate-sparkle.gs4 { top: 75%; right: 8%; animation-delay: 2.2s; width: 9px; height: 9px; }
@keyframes gate-twinkle {
  0%, 100% { opacity: 0; transform: scale(0.3) rotate(0deg); }
  50% { opacity: 0.95; transform: scale(1) rotate(20deg); }
}
@media (max-width: 640px) {
  .podcast-gate-paw { width: 70px; opacity: 0.6; }
  .podcast-gate .podcast-gate-content { max-width: 100%; padding-right: 70px; }
}
.podcast-gate h3 {
  font-size: 18px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}
.podcast-gate p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
  margin-bottom: 16px;
}
.podcast-form {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.podcast-form input[type="email"] {
  flex: 1;
  padding: 12px 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--gray-900);
  background: white;
  outline: none;
  transition: all 0.2s;
}
.podcast-form input[type="email"]::placeholder { color: var(--gray-400); }
.podcast-form input[type="email"]:focus {
  border-color: white;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.25);
}
.podcast-form button {
  background: linear-gradient(135deg, var(--coral), #fb7185);
  color: white;
  border: none;
  padding: 0 20px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(244, 63, 94, 0.35);
}
.podcast-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(244, 63, 94, 0.45);
  background: linear-gradient(135deg, #fb7185, var(--coral));
}
.podcast-fineprint {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* FINAL CTA */
.final-cta {
  text-align: center;
  padding: clamp(56px, 7vw, 100px) clamp(20px, 2vw, 24px);
  background: linear-gradient(180deg, white 0%, var(--teal-100) 50%, var(--teal-200) 100%);
}
.final-cta-photo {
  max-width: 700px;
  margin: 0 auto 48px;
}
.final-cta-photo img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.final-cta h2 {
  font-size: clamp(28px, 2.5vw + 0.7rem, 40px);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.final-cta p {
  font-size: clamp(15px, 0.7vw + 0.7rem, 18px);
  color: var(--gray-500);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

/* GUIDE PAGES */
.guide-hero {
  padding: 80px 24px 56px;
  background: linear-gradient(180deg, var(--teal-200) 0%, var(--teal-100) 55%, #ffffff 100%);
  text-align: center;
  border-bottom: 1px solid var(--teal-300);
}
.guide-breadcrumb {
  font-size: 13px;
  font-weight: 700;
  color: var(--teal-700);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
}
.guide-breadcrumb a { color: var(--teal-700); text-decoration: none; }
.guide-breadcrumb a:hover { text-decoration: underline; }
.guide-breadcrumb .sep { margin: 0 8px; opacity: 0.5; }
.guide-hero h1 {
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -1.5px;
  line-height: 1.1;
  max-width: 760px;
  margin: 0 auto 20px;
}
.guide-hero h1 .accent {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.guide-hero .guide-subtitle {
  font-size: 19px;
  color: var(--gray-600);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.5;
}
.guide-hero .guide-meta {
  margin-top: 20px;
  font-size: 13px;
  color: var(--gray-500);
  letter-spacing: 0.5px;
}
.guide-article {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}
.guide-article p,
.guide-article li {
  font-size: 17px;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 18px;
}
.guide-article h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.5px;
  margin-top: 48px;
  margin-bottom: 16px;
  line-height: 1.2;
}
.guide-article h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--teal-700);
  margin-top: 32px;
  margin-bottom: 10px;
}
.guide-article ul, .guide-article ol {
  padding-left: 24px;
  margin-bottom: 18px;
}
.guide-article strong { color: var(--gray-900); font-weight: 700; }
.guide-article .callout {
  background: linear-gradient(135deg, var(--teal-100), #ffffff);
  border-left: 4px solid var(--teal-500);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 24px 0;
}
.guide-article .callout p { margin-bottom: 0; }
.guide-article sup { font-size: 70%; vertical-align: super; line-height: 0; }
.guide-article sup a { color: var(--teal-600); text-decoration: none; font-weight: 700; padding-left: 1px; }
.guide-article sup a:hover { text-decoration: underline; }
.guide-sources {
  max-width: 720px;
  margin: 48px auto 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--gray-100);
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.6;
}
.guide-sources h4 {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.guide-sources ol { padding-left: 20px; margin: 0; }
.guide-sources li { margin-bottom: 4px; font-size: 12px; color: var(--gray-500); }
.guide-sources a { color: var(--gray-600); text-decoration: underline; text-decoration-style: dotted; }
.guide-sources a:hover { color: var(--teal-700); }
.guide-article .callout strong { color: var(--teal-800); }
.guide-article table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(13, 148, 136, 0.08);
}
.guide-article thead { background: var(--teal-600); color: white; }
.guide-article th { padding: 12px 16px; text-align: left; font-weight: 700; }
.guide-article td { padding: 12px 16px; border-top: 1px solid var(--gray-100); background: white; }
.guide-article tr:hover td { background: var(--teal-100); }

.related-guides {
  background: linear-gradient(180deg, #ffffff 0%, var(--teal-100) 100%);
  padding: 80px 24px;
  border-top: 1px solid var(--gray-100);
}
.related-guides-header {
  text-align: center;
  margin-bottom: 48px;
}
.related-guides-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.related-guides-header p {
  color: var(--gray-500);
  font-size: 16px;
}
.related-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.related-card {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 24px;
  text-decoration: none;
  transition: all 0.3s;
  display: block;
  box-shadow: 0 4px 16px rgba(13, 148, 136, 0.06);
}
.related-card:hover {
  border-color: var(--teal-300);
  box-shadow: 0 12px 32px rgba(13, 148, 136, 0.12);
  transform: translateY(-4px);
}
.related-card .related-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--teal-600);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
  display: block;
}
.related-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.3;
  margin-bottom: 10px;
}
.related-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.55;
  margin: 0;
}
.related-card .related-arrow {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--teal-600);
}

.guide-cta {
  text-align: center;
  padding: 80px 24px;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  color: white;
}
.guide-cta h2 {
  font-size: clamp(26px, 4vw, 36px);
  color: white;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.guide-cta p {
  color: rgba(255,255,255,0.88);
  font-size: 17px;
  max-width: 520px;
  margin: 0 auto 28px;
}
.guide-cta .btn-primary {
  background: white;
  color: var(--teal-700);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.guide-cta .btn-primary:hover {
  color: var(--teal-700);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

@media (max-width: 820px) {
  .guide-article { padding: 48px 20px 64px; }
  .guide-article h2 { font-size: 24px; margin-top: 36px; }
  .guide-article p, .guide-article li { font-size: 16px; }
  .related-grid { grid-template-columns: 1fr; }
}

/* LEGAL PAGES */
.legal-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}
.legal-wrap h1 {
  font-size: 48px;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -1.5px;
  margin-bottom: 8px;
}
.legal-meta {
  font-size: 13px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 40px;
  font-weight: 600;
}
.legal-wrap h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--teal-700);
  margin-top: 40px;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}
.legal-wrap p, .legal-wrap li {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal-wrap ul { padding-left: 22px; }
.legal-wrap a { color: var(--teal-600); font-weight: 600; }

/* FOOTER */
footer.site-footer {
  background: var(--gray-900);
  padding: clamp(40px, 4.5vw, 64px) clamp(20px, 4vw, 48px) clamp(20px, 2vw, 32px);
  color: var(--gray-400);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 48px;
}
.footer-brand .nav-logo {
  color: white;
  margin-bottom: 16px;
}
.footer-brand .logo-icon {
  background: linear-gradient(135deg, var(--teal-400), var(--teal-600));
}
.footer-brand p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 20px;
}
.footer-diamond-paw {
  width: 54px;
  height: 54px;
  opacity: 0.85;
  filter: drop-shadow(0 0 12px rgba(20, 184, 166, 0.4));
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--gray-500);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--teal-400); }
.footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--gray-600);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  color: var(--gray-600);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--gray-400); }

/* RESPONSIVE */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 32px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .research-banner-stats { gap: 20px; }
}

@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .edu-grid { grid-template-columns: repeat(2, 1fr); }
  .spotlight-grid { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .pricing-card { padding: 24px 20px; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .dance-callout-inner { grid-template-columns: 1fr; gap: 32px; padding: clamp(28px, 3.5vw, 40px); }
  .podcast-inner { grid-template-columns: 1fr; gap: 32px; }
  .callout-grid { grid-template-columns: 1fr; gap: 32px; }
  .feature-photo { grid-template-columns: 1fr; gap: 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .scout-mock-row { font-size: 12px; gap: 8px; padding: 12px 12px; }
}

@media (max-width: 820px) {
  nav.site-nav { flex-wrap: wrap; gap: 12px; }
  .nav-links { gap: 14px; flex-wrap: wrap; font-size: 13px; }
  .hero-buttons { flex-direction: column; align-items: stretch; gap: 12px; max-width: 320px; margin: 0 auto 40px; }
  .btn-primary, .btn-secondary { padding: 14px 24px; font-size: 15px; }
  .research-banner-stats { flex-direction: column; gap: 12px; margin-bottom: 32px; }
  .pain-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .edu-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; max-width: 320px; gap: 40px; }
  .steps-grid::before { display: none; }
  .paw-trail { display: none; }
  .pricing-hero { padding: 60px 20px 16px; }
  .pricing-section { padding: 0 20px 56px; }
  .trust-badges-row { flex-direction: column; gap: 14px; }
  .guarantees { flex-direction: column; align-items: center; gap: 16px; }
  .faq-section .section-header { padding: 0 8px; }
  .faq-question { padding: 18px 20px; font-size: 15px; }
  .faq-answer-inner { padding: 0 20px 18px; font-size: 14px; }
  .podcast-gate { padding: 24px; }
  .podcast-form { flex-direction: column; }
  .podcast-form button { padding: 14px; width: 100%; }
  .spotlight-visual { padding: 0; }
  .scout-mock { padding: 16px; }
  .scout-mock-row { grid-template-columns: 1.5fr 1fr 1fr; font-size: 11px; }
  .scout-mock-row span:nth-child(3) { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  footer.site-footer { padding: clamp(36px, 5vw, 48px) clamp(20px, 2.5vw, 24px) 24px; }
}

@media (max-width: 600px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; gap: 16px; }
  .pricing-card { padding: 28px 22px; }
}

@media (max-width: 480px) {
  .hero-badge { font-size: 12px; padding: 6px 14px; }
  .logo-bar-logos { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-brand { grid-column: auto; }
}

/* TRIAL SIGNUP MODAL */
.trial-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: trialFadeIn 0.2s ease-out;
}
.trial-modal[hidden] { display: none; }
.trial-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
}
.trial-modal-card {
  position: relative;
  background: white;
  border-radius: 22px;
  padding: 36px 32px 28px;
  max-width: 460px;
  width: 100%;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.3);
  animation: trialPopIn 0.28s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
@keyframes trialFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes trialPopIn {
  from { opacity: 0; transform: translateY(14px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.trial-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--gray-100);
  color: var(--gray-600);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s ease, color 0.18s ease;
}
.trial-modal-close:hover { background: var(--gray-200); color: var(--gray-800); }
.trial-modal-close svg { width: 16px; height: 16px; }

.trial-modal-content[hidden] { display: none; }
.trial-modal-header { text-align: center; margin-bottom: 22px; }
.trial-modal-paw {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  animation: float 4s ease-in-out infinite;
}
.trial-modal-paw img { width: 100%; height: 100%; object-fit: contain; }
.trial-modal-header h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.trial-modal-header p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.5;
  max-width: 340px;
  margin: 0 auto;
}

.trial-plan-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--teal-100);
  border: 1px solid var(--teal-200);
  padding: 10px 14px;
  border-radius: 12px;
  margin-bottom: 18px;
}
.trial-plan-pill[hidden] { display: none; }
.trial-plan-pill-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--teal-700);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.trial-plan-pill-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--teal-800);
}

.trial-form { display: flex; flex-direction: column; }
.trial-form-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.trial-form input[type="email"] {
  font-family: inherit;
  font-size: 15px;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--gray-200);
  background: white;
  color: var(--gray-900);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  width: 100%;
}
.trial-form input[type="email"]:focus {
  outline: none;
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.18);
}
.trial-form-error {
  background: var(--coral-light);
  color: var(--coral);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 10px;
  line-height: 1.4;
}
.trial-form-error[hidden] { display: none; }

.trial-submit-btn {
  margin-top: 14px;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
  color: white;
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  padding: 14px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: filter 0.18s ease, transform 0.18s ease;
}
.trial-submit-btn:hover { filter: brightness(1.07); transform: translateY(-1px); }
.trial-submit-btn:disabled { opacity: 0.7; cursor: progress; transform: none; }
.trial-submit-spinner {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: white;
  animation: trialSpin 0.8s linear infinite;
  display: none;
}
.trial-submit-btn.loading .trial-submit-spinner { display: inline-block; }
.trial-submit-btn.loading .trial-submit-label { opacity: 0.8; }
@keyframes trialSpin { to { transform: rotate(360deg); } }

.trial-form-meta {
  font-size: 12px;
  color: var(--gray-500);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}
.trial-form-meta a { color: var(--teal-700); text-decoration: underline; }

.trial-modal-content[data-state="success"] { text-align: center; padding-top: 8px; }
.trial-success-icon { width: 72px; height: 72px; margin: 0 auto 16px; }
.trial-success-icon svg { width: 100%; height: 100%; }
.trial-modal-content[data-state="success"] h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.trial-modal-content[data-state="success"] > p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.55;
  max-width: 340px;
  margin: 0 auto;
}
.trial-modal-content[data-state="success"] strong { color: var(--gray-900); }
.trial-success-meta {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 16px;
}
.trial-link-btn {
  background: none;
  border: none;
  color: var(--teal-700);
  font-weight: 600;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}
.trial-close-btn {
  margin-top: 20px;
  background: var(--teal-100);
  border: 1px solid var(--teal-200);
  color: var(--teal-700);
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 22px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.18s ease;
}
.trial-close-btn:hover { background: var(--teal-200); }

@media (max-width: 480px) {
  .trial-modal-card { padding: 28px 22px 22px; border-radius: 18px; }
  .trial-modal-header h2 { font-size: 20px; }
  .trial-modal-paw { width: 54px; height: 54px; }
}
