/* ============================================================================
   factol · v2 stylesheet
   High-energy gradient · glass cards · glowing edges
   Tasteful motion · YouTube video hero backgrounds
   ============================================================================ */

/* ---------- Tokens ------------------------------------------------------- */
:root {
  /* Brand */
  --pink:        #C0175D;
  --pink-warm:   #E82F6E;
  --pink-deep:   #B11E53;
  --pink-soft:   #FF6B9D;
  --pink-tint:   #FDE8F0;
  --pink-tint-2: #FBD6E4;

  /* Accents for gradient richness */
  --magenta:     #9F1A6D;
  --violet:      #6B21A8;
  --rose:        #FB7185;

  /* CTA */
  --blue:        #2196F3;
  --blue-deep:   #1976D2;
  --blue-glow:   rgba(33, 150, 243, 0.45);

  /* Status */
  --green:       #15803D;
  --green-tint:  #DCFCE7;

  /* Neutrals — light theme */
  --bg:          #F5F7FA;
  --surface:     #FFFFFF;
  --dark:        #0B0B16;
  --dark-2:      #16162A;
  --dark-3:      #1F1F38;
  --muted:       #6B7280;
  --line:        rgba(11, 11, 22, 0.08);
  --line-strong: rgba(11, 11, 22, 0.14);

  /* Glass */
  --glass-bg:    rgba(255, 255, 255, 0.06);
  --glass-bg-2:  rgba(255, 255, 255, 0.10);
  --glass-line:  rgba(255, 255, 255, 0.12);
  --glass-line-2: rgba(255, 255, 255, 0.18);

  /* Spatial */
  --radius-sm:   10px;
  --radius:     14px;
  --radius-lg:  18px;
  --radius-xl:  24px;
  --radius-2xl: 32px;

  --shadow-sm: 0 1px 2px rgba(11, 11, 22, 0.05);
  --shadow:    0 4px 24px -8px rgba(11, 11, 22, 0.10), 0 1px 2px rgba(11, 11, 22, 0.04);
  --shadow-lg: 0 24px 60px -20px rgba(11, 11, 22, 0.18), 0 1px 2px rgba(11, 11, 22, 0.04);
  --shadow-pink: 0 30px 80px -20px rgba(232, 47, 110, 0.35);
  --shadow-glow: 0 0 60px rgba(232, 47, 110, 0.18);

  /* Type */
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Brand gradient — used everywhere */
  --grad-brand: linear-gradient(135deg, #FF6B9D 0%, #E82F6E 35%, #B11E53 70%, #6B21A8 100%);
  --grad-brand-2: linear-gradient(135deg, var(--pink-warm), var(--pink-deep));
  --grad-text:   linear-gradient(135deg, var(--pink-warm) 0%, var(--pink-deep) 60%, var(--violet) 100%);

  /* Motion */
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-quint: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv11', 'ss01';
  line-height: 1.55;
  font-size: 16px;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.1; letter-spacing: -0.025em; color: var(--dark); }
h1 { letter-spacing: -0.04em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--pink-warm); color: white; }

/* Accessibility: respect reduced-motion globally */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Layout helpers ---------------------------------------------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 40px; } }

.section { padding: 80px 0; }
@media (min-width: 768px) { .section { padding: 120px 0; } }

/* ---------- Text helpers ------------------------------------------------ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--pink-tint);
  color: var(--pink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.eyebrow.on-dark {
  background: rgba(255, 255, 255, 0.10);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
}

.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-muted { color: var(--muted); }
.text-pink  { color: var(--pink); }

/* ---------- NAV --------------------------------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  background: transparent;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(245, 247, 250, 0.78);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom-color: var(--line);
}
.nav.on-dark {
  background: transparent;
}
.nav.on-dark.is-scrolled {
  background: rgba(11, 11, 22, 0.65);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}
.nav.on-dark .nav-links a { color: rgba(255, 255, 255, 0.85); }
.nav.on-dark .nav-links a:hover { color: white; }
.nav.on-dark .nav-links a.active { color: white; }
.nav.on-dark .nav-links a.active::after { background: var(--pink-warm); }
.nav.on-dark .nav-logo .wordmark { filter: brightness(0) invert(1); }
.nav.on-dark.is-scrolled .nav-logo .wordmark { filter: none; }
.nav.on-dark .nav-toggle { color: white; }
.nav.on-dark.is-scrolled .nav-toggle { color: var(--dark); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  padding: 0 24px;
  max-width: 1240px;
  margin: 0 auto;
}
@media (min-width: 768px) { .nav-inner { padding: 0 40px; } }

.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo .wordmark { height: 22px; width: auto; transition: filter 0.3s; }

.nav-links {
  display: none; align-items: center; gap: 36px;
}
@media (min-width: 820px) { .nav-links { display: flex; } }
.nav-links a {
  font-size: 14.5px; font-weight: 500; color: var(--dark);
  padding: 6px 0; position: relative;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--pink); }
.nav-links a.active { color: var(--pink); font-weight: 600; }
.nav-links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--grad-brand-2);
  border-radius: 2px;
}

.nav-cta { display: none; }
@media (min-width: 820px) { .nav-cta { display: inline-flex; } }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  color: var(--dark);
  transition: background 0.15s, color 0.3s;
}
.nav-toggle:hover { background: rgba(255,255,255,0.15); }
@media (min-width: 820px) { .nav-toggle { display: none; } }
.nav-toggle svg { width: 22px; height: 22px; }

.nav-drawer {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--bg);
  padding: 16px 24px 24px;
}
.nav-drawer.open { display: block; }
.nav-drawer a {
  display: block;
  padding: 14px 0;
  font-size: 17px; font-weight: 500;
  color: var(--dark);
  border-bottom: 1px solid var(--line);
}
.nav-drawer a.active { color: var(--pink); }
.nav-drawer .btn { margin-top: 16px; width: 100%; }
@media (min-width: 820px) { .nav-drawer { display: none !important; } }

/* ---------- Mobile bottom nav: floating glass dock --------------------- */
.bottom-nav { display: none; }

@media (max-width: 819px) {
  .nav-cta, .nav-toggle { display: none !important; }

  /* Floating, detached dock */
  .bottom-nav {
    display: flex;
    position: fixed;
    left: 50%;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    transform: translateX(-50%);
    width: calc(100% - 28px);
    max-width: 430px;
    z-index: 95;
    padding: 7px 8px 9px;
    gap: 2px;
    border-radius: 24px;
    background: rgba(14, 14, 26, 0.60);
    backdrop-filter: saturate(170%) blur(26px);
    -webkit-backdrop-filter: saturate(170%) blur(26px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
      0 20px 50px -14px rgba(11, 11, 22, 0.6),
      0 30px 70px -30px rgba(232, 47, 110, 0.5);
  }
  /* gradient hairline along the top edge */
  .bottom-nav::before {
    content: '';
    position: absolute; left: 20%; right: 20%; top: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.85), transparent);
  }

  .bottom-nav a {
    flex: 1;
    position: relative;
    display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
    gap: 5px;
    padding: 9px 2px 2px;
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 10px; font-weight: 600; letter-spacing: 0.02em;
    -webkit-tap-highlight-color: transparent;
    transition: color 0.25s var(--ease), transform 0.2s var(--ease);
  }
  .bottom-nav a:active { transform: scale(0.9); }

  .bottom-nav .bn-ic {
    display: inline-flex; align-items: center; justify-content: center;
    width: 26px; height: 26px;
    transition: transform 0.3s var(--ease);
  }
  .bottom-nav .bn-ic svg { width: 22px; height: 22px; }

  /* Active tab: gradient-glow pill behind icon + bright label */
  .bottom-nav a.active { color: #fff; }
  .bottom-nav a.active::after {
    content: '';
    position: absolute;
    top: 4px; left: 50%; transform: translateX(-50%);
    width: 38px; height: 38px;
    border-radius: 13px;
    background: linear-gradient(155deg, rgba(232, 47, 110, 0.34), rgba(107, 33, 168, 0.18));
    border: 1px solid rgba(255, 107, 157, 0.30);
    box-shadow: 0 6px 18px -6px rgba(232, 47, 110, 0.55);
    z-index: 0;
  }
  .bottom-nav a.active .bn-ic { position: relative; z-index: 1; transform: translateY(-1px); }
  .bottom-nav a.active .bn-ic svg {
    color: #FF9BBE;
    filter: drop-shadow(0 0 7px rgba(232, 47, 110, 0.75));
  }

  /* WhatsApp = raised gradient FAB poking above the dock */
  .bottom-nav a.wa { color: rgba(255, 255, 255, 0.78); overflow: visible; }
  .bottom-nav a.wa::after { display: none; }
  .bottom-nav a.wa .bn-ic {
    width: 46px; height: 46px;
    margin-top: -36px;
    border-radius: 50%;
    background: var(--grad-brand);
    color: #fff;
    border: 3px solid rgba(14, 14, 26, 0.9);
    box-shadow: 0 12px 26px -6px rgba(232, 47, 110, 0.75);
    animation: wa-bob 3.2s ease-in-out infinite;
  }
  .bottom-nav a.wa .bn-ic svg { width: 22px; height: 22px; }
  @keyframes wa-bob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-3px); }
  }

  /* Room so the floating dock never covers footer content */
  body { padding-bottom: 104px; }
}

/* ---------- Buttons ----------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  height: 50px;
  padding: 0 24px;
  border-radius: 12px;
  font-size: 15px; font-weight: 600; letter-spacing: -0.01em;
  white-space: nowrap;
  position: relative;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 18px; height: 18px; }

.btn-primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 6px 24px -6px var(--blue-glow);
}
.btn-primary:hover {
  background: var(--blue-deep);
  box-shadow: 0 14px 34px -10px var(--blue-glow);
  transform: translateY(-1px);
}

.btn-gradient {
  color: white;
  background: var(--grad-brand);
  background-size: 200% 200%;
  background-position: 0% 50%;
  box-shadow: 0 10px 30px -8px rgba(232, 47, 110, 0.45);
  transition: background-position 0.6s var(--ease), transform 0.2s, box-shadow 0.2s;
}
.btn-gradient:hover {
  background-position: 100% 50%;
  box-shadow: 0 16px 40px -10px rgba(232, 47, 110, 0.55);
  transform: translateY(-1px);
}

.btn-outline-pink {
  background: transparent;
  color: var(--pink);
  border: 1.5px solid var(--pink);
}
.btn-outline-pink:hover {
  background: var(--pink);
  color: white;
  box-shadow: 0 14px 30px -10px rgba(192, 23, 93, 0.4);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.10);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.btn-glass:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.30);
  transform: translateY(-1px);
}

.btn-ghost {
  color: var(--dark);
  background: transparent;
}
.btn-ghost:hover { background: var(--line); }

.btn-sm { height: 40px; padding: 0 18px; font-size: 14px; border-radius: 10px; }
.btn-lg { height: 56px; padding: 0 28px; font-size: 16px; border-radius: 14px; }

@media (max-width: 640px) {
  .btn-block-mobile { width: 100%; }
}

/* ---------- Badges & chips --------------------------------------------- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.02em;
}
.badge-pink {
  background: var(--pink-tint);
  color: var(--pink);
}
.badge-green {
  background: var(--green-tint);
  color: var(--green);
}
.badge-glass {
  background: rgba(255,255,255,0.10);
  color: white;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
}

.badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  display: inline-block;
}
.badge-green .dot { background: var(--green); }
.badge-pink .dot { background: var(--pink); }
.badge-glass .dot { background: var(--pink-warm); }

.badge-pulse .dot {
  position: relative;
}
.badge-pulse .dot::after {
  content: ''; position: absolute; inset: -3px;
  border-radius: 50%;
  background: inherit;
  opacity: 0.5;
  animation: pulse-ring 1.8s ease-out infinite;
}
@keyframes pulse-ring {
  0%   { transform: scale(0.6); opacity: 0.7; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* ---------- Cards ------------------------------------------------------- */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--line-strong);
}

.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-line);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-radius: var(--radius-lg);
  color: white;
}

/* ---------- Forms ------------------------------------------------------- */
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 13px; font-weight: 600; color: var(--dark);
  letter-spacing: 0.01em;
}
.field input {
  height: 52px;
  padding: 0 16px;
  border: 1.5px solid var(--line-strong);
  border-radius: 12px;
  font: inherit;
  font-size: 15px;
  color: var(--dark);
  background: white;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}
.field input::placeholder { color: #9CA3AF; }
.field input:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(192, 23, 93, 0.12);
}
.field-prefixed {
  display: flex; align-items: stretch;
  border: 1.5px solid var(--line-strong);
  border-radius: 12px;
  background: white;
  overflow: hidden;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field-prefixed:focus-within {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(192, 23, 93, 0.12);
}
.field-prefixed .prefix {
  display: inline-flex; align-items: center;
  padding: 0 14px;
  background: #F8FAFC;
  border-right: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}
.field-prefixed input {
  flex: 1;
  border: none;
  box-shadow: none;
}
.field-prefixed input:focus { box-shadow: none; }

/* Dark variant for forms on glass */
.field.dark label { color: rgba(255,255,255,0.85); }
.field.dark input {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: white;
}
.field.dark input::placeholder { color: rgba(255,255,255,0.45); }
.field.dark input:focus {
  background: rgba(255,255,255,0.12);
  border-color: var(--pink-warm);
  box-shadow: 0 0 0 4px rgba(232, 47, 110, 0.20);
}
.field.dark .field-prefixed {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
}
.field.dark .field-prefixed:focus-within {
  border-color: var(--pink-warm);
  box-shadow: 0 0 0 4px rgba(232,47,110,0.20);
}
.field.dark .field-prefixed .prefix {
  background: rgba(255,255,255,0.06);
  border-right-color: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.65);
}
.field.dark .field-prefixed input {
  background: transparent;
  color: white;
}

/* ---------- Footer ------------------------------------------------------ */
.footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
  padding: 56px 0 40px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--muted);
  margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a, .footer-col span {
  font-size: 14px;
  color: var(--dark);
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--pink); }
.footer-col .tag {
  font-size: 14px; color: var(--muted); margin-top: 4px;
  line-height: 1.6;
  max-width: 280px;
}
.footer-col .wordmark { height: 22px; width: auto; margin-bottom: 14px; }

/* Social icons */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 2px;
}
.footer-social a {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--dark);
  transition: transform 0.25s var(--ease), border-color 0.25s, color 0.25s, box-shadow 0.25s, background 0.25s;
}
.footer-social a:hover {
  transform: translateY(-3px);
  color: white;
  border-color: transparent;
  background: var(--grad-brand);
  box-shadow: 0 12px 26px -8px rgba(232, 47, 110, 0.45);
}
.footer-social a svg { width: 20px; height: 20px; }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
.footer-bottom .languages { font-size: 13px; }

/* ---------- VIDEO BG HERO (shared across pages) ------------------------ */
.video-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
  color: white;
  padding-top: 88px;
  padding-bottom: 88px;
}

.video-hero .vbg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  overflow: hidden;
  background: #0B0B16;
}

/* Poster: always visible, full cover */
.video-hero .vbg-poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: blur(0px);
  transition: opacity 0.6s var(--ease);
  pointer-events: none;
}

/* YouTube iframe — 16:9 cover sizing for ANY viewport.
   Default (portrait / narrow): HEIGHT is the binding side, so the video is
   sized tall-to-fill and over-wide, with its sides cropped. */
.video-hero .vbg-iframe,
.video-hero .vbg iframe {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: 0;
  width: 177.78vh; height: 100vh;        /* 100vh tall, 16:9 wide */
  min-width: 105%; min-height: 105%;     /* 1.05× to hide YT edge UI */
  opacity: 0;
  transition: opacity 0.8s var(--ease);
  z-index: 1;
}
/* Wide / landscape screens (aspect ≥ 16:9): WIDTH is the binding side. */
@media (min-aspect-ratio: 16/9) {
  .video-hero .vbg-iframe,
  .video-hero .vbg iframe {
    width: 100vw; height: 56.25vw;       /* 100vw wide, 16:9 tall */
    min-width: 105%; min-height: 105%;
  }
}
/* Fade iframe in only after YT confirms it is PLAYING */
.video-hero .vbg.is-playing iframe { opacity: 1; }

/* Dark overlay — heavy at top/bottom, slight pink wash */
.video-hero .veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 80% at 30% 30%, rgba(232, 47, 110, 0.18), transparent 60%),
    radial-gradient(80% 70% at 80% 80%, rgba(107, 33, 168, 0.25), transparent 60%),
    linear-gradient(180deg, rgba(11,11,22,0.55) 0%, rgba(11,11,22,0.72) 50%, rgba(11,11,22,0.85) 100%);
  pointer-events: none;
}

/* Subtle noise for premium feel */
.video-hero .grain {
  position: absolute; inset: 0; z-index: 2;
  opacity: 0.06;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.4 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

.video-hero .vcontent {
  position: relative; z-index: 3;
  width: 100%;
}

/* Stop scroll-pop on iOS bounce */
.video-hero .glow-bottom {
  position: absolute; left: 0; right: 0; bottom: -1px; height: 200px;
  background: linear-gradient(180deg, transparent, var(--bg));
  z-index: 2;
  pointer-events: none;
}

/* ---------- Section divider ------------------------------------------- */
hr.rule {
  border: 0; height: 1px; background: var(--line);
  max-width: 1200px; margin: 0 auto;
}

.divider-band {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* ---------- Animated gradient orbs (decorative) ----------------------- */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.6;
  animation: orb-drift 18s ease-in-out infinite;
}
.orb.pink   { background: var(--pink-warm); }
.orb.violet { background: var(--violet); }
.orb.rose   { background: var(--rose); }

@keyframes orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(40px, -30px) scale(1.08); }
  66%      { transform: translate(-30px, 25px) scale(0.95); }
}

/* ---------- Section heading ------------------------------------------- */
.sec-head {
  text-align: center;
  margin-bottom: 56px;
}
.sec-head .eyebrow { margin-bottom: 18px; }
.sec-head h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.sec-head .lead {
  color: var(--muted);
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.6;
  max-width: 620px;
  margin-left: auto; margin-right: auto;
  text-wrap: pretty;
}
@media (min-width: 768px) {
  .sec-head .lead { font-size: 19px; }
}

/* ---------- SCROLL REVEAL ANIMATIONS ---------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out-quint), transform 0.8s var(--ease-out-quint);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }
.reveal[data-delay="6"] { transition-delay: 0.48s; }

/* ---------- Visually hidden ------------------------------------------- */
.sr {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ---------- Utility --------------------------------------------------- */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.text-center { text-align: center; }
