/*
 * AdultAgent.ai — Brand stylesheet.
 * Vibe: feminine, elegant, soft luxury × tech.
 */

:root {
  /* Brand palette */
  --purple-deepest: #1a0b2e;
  --purple-deep: #4c1d95;
  --purple-mid: #6d28d9;
  --purple: #7c3aed;
  --purple-soft: #a78bfa;
  --purple-pale: #ede9fe;

  --pink: #ec4899;
  --pink-soft: #f472b6;
  --pink-pale: #fce7f3;
  --pink-cream: #fdf2f8;

  --cream: #fdfaff;
  --cream-warm: #fef9fb;
  --white: #ffffff;

  --text: #1f0a3b;
  --text-soft: #4c1d95;
  --text-mute: #6b21a8;
  --text-dim: #9333ea;

  --border: #f3e8ff;
  --border-soft: #faf5ff;

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  --grad-soft: linear-gradient(135deg, #a78bfa 0%, #f472b6 100%);
  --grad-cream: linear-gradient(180deg, #fdfaff 0%, #fdf2f8 100%);
  --grad-text: linear-gradient(135deg, #6d28d9 0%, #ec4899 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(124, 58, 237, 0.06);
  --shadow-md: 0 8px 24px rgba(124, 58, 237, 0.10);
  --shadow-lg: 0 16px 48px rgba(124, 58, 237, 0.14);
  --shadow-pink: 0 12px 32px rgba(236, 72, 153, 0.20);
  --shadow-glow: 0 0 60px rgba(236, 72, 153, 0.18);

  /* Layout */
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --container-max: 1200px;
  --container-narrow: 880px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
  min-height: 100vh;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
button, input, textarea, select { font-family: inherit; font-size: inherit; }
button { cursor: pointer; border: none; background: none; }
a { color: var(--purple); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--pink); }

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
}

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

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  background: rgba(253, 250, 255, 0.85);
  border-bottom: 1px solid rgba(243, 232, 255, 0.6);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--grad-primary);
  box-shadow: var(--shadow-pink);
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-text { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 600; }
.brand-tld { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.primary-nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.primary-nav a {
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  padding: 4px 0;
  transition: color 0.18s ease;
}
.primary-nav a:hover { color: var(--pink); }
.primary-nav a.active { color: var(--text); }
.primary-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-primary);
  border-radius: 2px;
}

.nav-cta { display: flex; gap: 10px; align-items: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.005em;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-primary);
  color: white;
  box-shadow: var(--shadow-pink);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(236, 72, 153, 0.35);
  color: white;
}
.btn-ghost {
  color: var(--text);
  background: transparent;
  border-color: transparent;
}
.btn-ghost:hover {
  background: var(--purple-pale);
  color: var(--purple);
}
.btn-soft {
  background: var(--white);
  color: var(--purple);
  border-color: var(--border);
}
.btn-soft:hover {
  border-color: var(--purple-soft);
  color: var(--pink);
}
.btn-lg { padding: 16px 32px; font-size: 1rem; border-radius: 14px; }
.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 96px 0 80px;
  overflow: hidden;
  background: var(--grad-cream);
}
.hero::before {
  content: '';
  position: absolute;
  top: -180px;
  left: -120px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.20) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -240px;
  right: -180px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-soft);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 12px var(--pink);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero h1 .accent {
  font-style: italic;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p.lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-soft);
  line-height: 1.55;
  max-width: 640px;
  margin: 0 auto 36px;
}
.hero-cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
  padding: 28px 32px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
}
.hero-stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 600;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}
.hero-stat .label {
  color: var(--text-mute);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ---------- Sections ---------- */
.section {
  padding: 96px 0;
}
.section-tight { padding: 64px 0; }
.section-cream { background: var(--grad-cream); }
.section-purple { background: linear-gradient(180deg, #1a0b2e 0%, #4c1d95 100%); color: white; }
.section-purple h1, .section-purple h2, .section-purple h3 { color: white; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-eyebrow {
  display: inline-block;
  font-family: 'Caveat', cursive;
  font-size: 1.5rem;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}
.section h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 16px;
}
.section-head p {
  font-size: 1.1rem;
  color: var(--text-soft);
  line-height: 1.55;
}

/* ---------- Feature grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feature-card {
  padding: 32px 28px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--pink-soft);
  box-shadow: var(--shadow-lg);
}
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--grad-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
  box-shadow: var(--shadow-pink);
}
.feature-icon svg { width: 28px; height: 28px; }
.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.feature-card p {
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.55;
}

/* ---------- Pricing cards ---------- */
.pricing-toggle {
  display: inline-flex;
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
  margin: 0 auto 48px;
  box-shadow: var(--shadow-sm);
}
.pricing-toggle button {
  padding: 10px 22px;
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 999px;
  color: var(--text-soft);
  transition: all 0.2s ease;
}
.pricing-toggle button.active {
  background: var(--grad-primary);
  color: white;
  box-shadow: var(--shadow-pink);
}
.toggle-save {
  font-size: 0.7rem;
  background: var(--pink-pale);
  color: var(--pink);
  padding: 2px 7px;
  border-radius: 999px;
  margin-left: 6px;
  font-weight: 600;
}
.pricing-toggle button.active .toggle-save { background: rgba(255,255,255,0.25); color: white; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  align-items: stretch;
}
.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 36px 28px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.25s ease;
}
.pricing-card.featured {
  border-color: var(--pink);
  box-shadow: var(--shadow-pink), 0 0 0 4px rgba(236, 72, 153, 0.06);
  transform: translateY(-8px);
}
.pricing-card .badge-pop {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: var(--grad-primary);
  color: white;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: var(--shadow-pink);
}
.pricing-card .tier-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 4px;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pricing-card .tier-tagline {
  color: var(--text-mute);
  font-size: 0.92rem;
  margin-bottom: 24px;
  font-style: italic;
}
.pricing-card .tier-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
  color: var(--text);
}
.pricing-card .tier-price .currency { font-size: 1.4rem; vertical-align: top; color: var(--text-mute); margin-right: 2px; }
.pricing-card .tier-price .period { font-size: 0.95rem; color: var(--text-mute); font-family: 'Inter', sans-serif; font-weight: 400; }
.pricing-card .tier-yearly-note {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-top: 6px;
  margin-bottom: 24px;
}
.pricing-card .feature-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  flex: 1;
}
.pricing-card .feature-list li {
  position: relative;
  padding: 7px 0 7px 28px;
  font-size: 0.94rem;
  color: var(--text-soft);
  line-height: 1.5;
}
.pricing-card .feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 16px;
  height: 16px;
  background: var(--grad-soft);
  border-radius: 50%;
}
.pricing-card .feature-list li::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 16px;
  width: 8px;
  height: 5px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
}

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial {
  padding: 32px 28px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 12px;
  left: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--pink-soft);
  line-height: 1;
  opacity: 0.4;
  font-weight: 700;
}
.testimonial blockquote {
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
}
.author-info strong { color: var(--text); display: block; font-size: 0.95rem; }
.author-info span { color: var(--text-mute); font-size: 0.82rem; }

/* ---------- CTA strip ---------- */
.cta-strip {
  margin: 0 auto;
  max-width: var(--container-max);
  padding: 64px 56px;
  background: var(--grad-primary);
  border-radius: var(--radius-xl);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-pink);
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 30%);
  pointer-events: none;
}
.cta-strip h2 {
  color: white;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 14px;
  position: relative;
}
.cta-strip p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  margin-bottom: 28px;
  position: relative;
}
.cta-strip .btn-primary {
  background: white;
  color: var(--purple);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  position: relative;
}
.cta-strip .btn-primary:hover { color: var(--pink); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--purple-deepest);
  color: rgba(255, 255, 255, 0.85);
  margin-top: 96px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 64px;
  padding: 64px 24px 48px;
}
.footer-brand .brand { color: white; }
.footer-brand .brand-text { color: white; }
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.7);
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h4 {
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  padding: 5px 0;
  transition: color 0.18s ease;
}
.footer-col a:hover { color: var(--pink-soft); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}
.heart { color: var(--pink-soft); }

/* ---------- Forms ---------- */
.form-card {
  max-width: 480px;
  margin: 64px auto;
  padding: 40px 36px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.form-card h1 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 8px;
}
.form-card p.muted {
  text-align: center;
  color: var(--text-mute);
  margin-bottom: 32px;
  font-size: 0.95rem;
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 0.98rem;
  background: var(--cream-warm);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  transition: all 0.2s ease;
  color: var(--text);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--purple-soft);
  background: white;
  box-shadow: 0 0 0 4px rgba(167, 139, 250, 0.15);
}
.form-row .hint { display: block; margin-top: 6px; font-size: 0.82rem; color: var(--text-mute); }
.form-row.error input { border-color: var(--pink); }
.form-row .error-msg { color: var(--pink); font-size: 0.85rem; margin-top: 4px; }

.alert {
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 0.92rem;
}
.alert-error {
  background: var(--pink-pale);
  color: var(--pink);
  border: 1px solid var(--pink-soft);
}
.alert-success {
  background: #dcfce7;
  color: #15803d;
  border: 1px solid #86efac;
}
.alert-info {
  background: var(--purple-pale);
  color: var(--purple);
  border: 1px solid var(--purple-soft);
}

/* ---------- Page hero (simpler than home hero) ---------- */
.page-hero {
  padding: 80px 0 40px;
  text-align: center;
  background: var(--grad-cream);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 {
  position: relative;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 14px;
}
.page-hero p {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-soft);
  font-size: 1.1rem;
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.gradient-text { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.script {
  font-family: 'Caveat', cursive;
  font-size: 1.4em;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .header-inner { gap: 16px; }
  .primary-nav { display: none; }
  .hero { padding: 64px 0 56px; }
  .section { padding: 64px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; padding: 48px 24px 32px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .pricing-card.featured { transform: none; }
  .cta-strip { padding: 48px 28px; border-radius: var(--radius); }
}
@media (max-width: 540px) {
  .nav-cta .btn-ghost { display: none; }
  .footer-links { grid-template-columns: 1fr; }
  .form-card { padding: 28px 22px; margin: 32px auto; }
}

/* ---------- 404 ---------- */
.error-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 24px;
}
.error-page h1 {
  font-size: 6rem;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.error-page p { color: var(--text-soft); font-size: 1.1rem; margin: 12px 0 28px; }

/* === Hero video (in-hero, mobile-friendly, with mute toggle) === */
.hero-video {
  width: 100%;
  margin: 28px auto 8px;
  display: flex;
  justify-content: center;
}
.hero-video-frame {
  position: relative;
  width: 100%;
  max-width: 820px;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: #0b0b12;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
}
.hero-video-el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.hero-video-mute {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.18s ease, transform 0.12s ease;
  z-index: 2;
  padding: 0;
}
.hero-video-mute:hover { background: rgba(0, 0, 0, 0.75); }
.hero-video-mute:active { transform: scale(0.96); }
.hero-video-mute .icon-unmuted { display: none; }
.hero-video-mute.is-unmuted .icon-muted { display: none; }
.hero-video-mute.is-unmuted .icon-unmuted { display: inline-block; }

@media (max-width: 768px) {
  .hero-video {
    margin: 18px auto 4px;
    padding: 0 12px;
  }
  .hero-video-frame {
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  }
  .hero-video-mute {
    right: 10px;
    bottom: 10px;
    width: 40px;
    height: 40px;
  }
}

/* === Video captions styling === */
.hero-video-el::cue {
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  padding: 0.15em 0.4em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}
@media (max-width: 768px) {
  .hero-video-el::cue {
    font-size: 0.85rem;
  }
}
