/* ============================================================
   Célure AI — Liquid-glass / glassmorphism design system
   Light-pink + black editorial palette. Playfair display + Manrope.
   3D depth via layered aurora orbs, glass surfaces, tilt + float.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;1,500;1,600;1,700&family=Manrope:wght@400;500;600;700;800&display=swap');

/* ---------- Tokens ---------- */
:root {
  /* base surfaces — light pink editorial */
  --blush: #f8ecf0;
  --blush-deep: #f0dce4;
  --blush-soft: #fbf3f6;
  --cream: #fdf8fa;
  --ivory: #faf2f5;
  --sand: #f0e3e9;
  --white: #ffffff;

  /* accents — vibrant light pink + black */
  --pink: #e6699a;
  --pink-600: #d85a8c;
  --pink-700: #c24a78;
  --pink-soft: #f5b0cf;
  --rose: #de82a8;
  --clay: #c87094;
  --sage: #b586c0;

  --ink: #1a1a1a;         /* near-black for headings/text */
  --ink-2: #3d3d3d;
  --muted: #6b6b6b;
  --muted-2: #999999;

  --line: rgba(0, 0, 0, 0.10);
  --line-soft: rgba(0, 0, 0, 0.05);

  /* glass */
  --glass-bg: rgba(255, 255, 255, 0.52);
  --glass-bg-strong: rgba(255, 255, 255, 0.70);
  --glass-bg-soft: rgba(255, 255, 255, 0.38);
  --glass-border: rgba(255, 255, 255, 0.70);
  --glass-blur: 14px;
  --glass-highlight: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 0 0 1px rgba(255, 255, 255, 0.16);

  --grad-pink: linear-gradient(135deg, #f08cb5 0%, #e6699a 50%, #c24a78 100%);
  --grad-iris: linear-gradient(135deg, #e88aaa 0%, #de82a8 50%, #c87094 100%);
  --grad-blush: linear-gradient(180deg, #fdf8fa 0%, #f8ecf0 100%);

  --shadow-sm: 0 4px 18px -8px rgba(180, 70, 120, 0.18);
  --shadow: 0 20px 50px -24px rgba(160, 50, 100, 0.28);
  --shadow-lg: 0 44px 100px -44px rgba(140, 40, 85, 0.36);

  --r-sm: 14px;
  --r: 20px;
  --r-lg: 28px;
  --r-xl: 40px;

  --container: 1180px;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  background: #f5ecf0;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
::selection { background: var(--ink); color: #fff; }

/* ============================================================
   Aurora background (injected once by main.js as #aurora)
   Fixed layer of drifting colour orbs behind the glass.
   ============================================================ */
#aurora {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background:
    radial-gradient(1200px 800px at 12% -10%, #f5e5ec 0%, transparent 55%),
    radial-gradient(1000px 700px at 100% 0%, #f3e6ed 0%, transparent 50%),
    radial-gradient(1100px 900px at 50% 120%, #f5e8ee 0%, transparent 55%),
    linear-gradient(180deg, #faf2f5 0%, #f5ecf0 45%, #f7eff3 100%);
  pointer-events: none;
}
.aurora-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(56px);
  opacity: 0.4;
  will-change: transform;
  transition: transform 0.6s cubic-bezier(.2,.7,.2,1);
}
.aurora-orb.o1 { width: 44vw; height: 44vw; left: -8vw; top: -6vw; background: radial-gradient(circle at 35% 35%, #f5a8ca, #facde0 45%, transparent 70%); }
.aurora-orb.o2 { width: 38vw; height: 38vw; right: -10vw; top: 6vh; background: radial-gradient(circle at 40% 40%, #eda5c5, #f5c8da 50%, transparent 72%); }
.aurora-orb.o3 { width: 36vw; height: 36vw; left: 20vw; bottom: -14vw; background: radial-gradient(circle at 45% 45%, #f0b0cc, #f8d5e2 50%, transparent 72%); }
.aurora-orb.o4 { width: 28vw; height: 28vw; right: 14vw; bottom: 2vh; background: radial-gradient(circle at 40% 40%, #d5b8e8, #e6d2f2 50%, transparent 72%); opacity: 0.32; }
.aurora-grain {
  position: absolute; inset: 0; opacity: 0.35;
  background-image: radial-gradient(rgba(255,255,255,0.5) 0.5px, transparent 0.5px);
  background-size: 4px 4px;
}
/* Aurora orbs stay static (parallax handled by JS on desktop) to keep
   scrolling smooth — animating large blurred layers stalls the compositor. */

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.section { padding: 96px 0; position: relative; }
.section--tight { padding: 68px 0; }
/* Section bg helpers become translucent tints so aurora shows through */
.bg-blush { background: linear-gradient(180deg, rgba(248,236,240,0.5), rgba(245,236,240,0.35)); }
.bg-cream { background: linear-gradient(180deg, rgba(253,248,250,0.55), rgba(248,236,240,0.4)); }
.bg-white { background: rgba(255,255,255,0.45); }
.bg-grad { background: var(--grad-blush); }
.center { text-align: center; }

/* ---------- Type ---------- */
.serif { font-family: var(--font-serif); }
h1, h2, h3 { font-family: var(--font-serif); font-weight: 700; line-height: 1.06; letter-spacing: -0.01em; color: var(--ink); }
.display { font-size: clamp(2.7rem, 7vw, 5rem); font-weight: 800; line-height: 1.02; letter-spacing: -0.02em; }
h2.title { font-size: clamp(2rem, 4.4vw, 3.3rem); font-weight: 700; }
h3 { font-size: 1.35rem; }
em, .it { font-style: italic; color: var(--pink); }
.ink-pink { color: var(--pink); }

.eyebrow {
  display: inline-block; font-family: var(--font-sans); font-weight: 700;
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: #fff;
  background: var(--grad-pink); padding: 8px 18px; border-radius: 100px; box-shadow: var(--shadow-sm);
}
.eyebrow--ghost {
  color: var(--pink-700); background: var(--glass-bg-strong);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border: 1px solid var(--glass-border); box-shadow: var(--glass-highlight);
}
.lead { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--ink-2); line-height: 1.55; max-width: 60ch; }
.muted { color: var(--muted); }
.kicker { font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.75rem; color: var(--pink-700); }

.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-head .lead { margin: 18px auto 0; }
.section-head--left { margin-left: 0; text-align: left; }
.section-head--left .lead { margin-left: 0; }

/* ---------- Glass primitive ----------
   Real backdrop-filter is limited to a curated set of larger surfaces to keep
   scroll smooth. The many smaller elements use a semi-opaque white that still
   reads as glass over the aurora, without the compositor cost. */
.glass, .card, .form-card, .price, .faq details {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.3);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.3);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm), var(--glass-highlight);
}
.statchip, .statcard, .step, .usp, .pill, .strip {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm), var(--glass-highlight);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .glass, .card, .form-card, .price, .faq details { background: rgba(255,255,255,0.92); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 0.98rem; padding: 15px 30px; border-radius: 100px;
  transition: transform .18s cubic-bezier(.2,.7,.2,1), box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap; position: relative;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--ink); color: #fff; box-shadow: 0 12px 30px -10px rgba(0,0,0,0.35), var(--glass-highlight); }
.btn--primary:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 20px 44px -12px rgba(0,0,0,0.45); }
.btn--dark { background: rgba(26,18,32,0.88); color: #fff; -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); box-shadow: var(--shadow-sm); }
.btn--dark:hover { transform: translateY(-2px); background: #1a1220; }
.btn--ghost {
  background: var(--glass-bg-strong); color: var(--ink);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border: 1px solid var(--glass-border); box-shadow: var(--glass-highlight);
}
.btn--ghost:hover { transform: translateY(-2px); color: var(--pink-700); border-color: var(--pink-soft); }
.btn--light { background: rgba(255,255,255,0.18); color: #fff; border: 1px solid rgba(255,255,255,0.42); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.btn--light:hover { background: rgba(255,255,255,0.3); transform: translateY(-2px); }
.btn--lg { padding: 17px 36px; font-size: 1.05rem; }
.btn--block { display: flex; width: 100%; justify-content: center; }

/* ---------- Navbar (glass) ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease, -webkit-backdrop-filter .35s ease, backdrop-filter .35s ease;
}
/* Frosted glass appears only once the page is scrolled (or the mobile menu is
   open) so the bar blends seamlessly into the hero at the top. */
.nav.scrolled, .nav.open {
  background: rgba(250, 242, 246, 0.78);
  -webkit-backdrop-filter: saturate(1.5) blur(18px);
  backdrop-filter: saturate(1.5) blur(18px);
  border-bottom-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 30px -20px rgba(80, 40, 60, 0.35);
}
/* Where blur is unsupported, lean on a more opaque bar for legibility. */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .nav.scrolled, .nav.open { background: rgba(250, 242, 246, 0.96); }
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-serif); font-weight: 700; font-size: 1.72rem; color: var(--pink); letter-spacing: -0.01em; }
.brand__tag { font-size: 0.52rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--pink-600); opacity: 0.7; margin-top: 3px; font-weight: 600; }
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a { font-weight: 600; font-size: 0.95rem; color: var(--ink-2); transition: color .15s; }
.nav__links a:hover, .nav__links a.active { color: var(--pink); }
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__linkscta { display: none; }
.nav__toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 12px; color: var(--ink); flex: none; }
.nav__toggle svg { width: 26px; height: 26px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 78px 0 96px; overflow: visible; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--glass-bg-strong); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border); box-shadow: var(--glass-highlight);
  padding: 7px 16px 7px 8px; border-radius: 100px; font-size: 0.82rem; font-weight: 600; color: var(--ink-2); margin-bottom: 24px;
}
.hero__badge b { color: var(--pink-700); }
.hero__badge .dot { width: 9px; height: 9px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,.18); }

.hero h1 { margin-bottom: 20px; }
.hero .lead { margin-bottom: 30px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__note { margin-top: 18px; font-size: 0.86rem; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.hero__note svg { width: 16px; height: 16px; color: var(--pink); }
/* inclusive chip */
.for-all {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 20px;
  background: var(--glass-bg); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); border: 1px solid var(--glass-border);
  border-radius: 100px; padding: 8px 16px; font-size: 0.82rem; font-weight: 600; color: var(--ink-2); box-shadow: var(--glass-highlight);
}
.for-all svg { width: 16px; height: 16px; color: var(--rose); }

/* ============================================================
   Full-bleed video hero (Botaniva-style, pink)
   ============================================================ */
.vhero {
  position: relative;
  min-height: calc(100vh - 74px);
  min-height: calc(100svh - 74px);
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
}
.vhero__video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: 68% center;
}
/* soft veil: keeps left side readable, lets the face breathe on the right */
.vhero::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(245,236,240,0.92) 0%, rgba(245,236,240,0.72) 30%, rgba(245,236,240,0.18) 58%, rgba(240,228,234,0.10) 100%),
    linear-gradient(180deg, rgba(245,236,240,0.35) 0%, transparent 26% 62%, rgba(230,210,220,0.55) 100%);
}
.vhero__inner { position: relative; z-index: 2; width: 100%; padding: 56px 0 46px; }
.vhero h1 { font-size: clamp(2.9rem, 6.4vw, 5.4rem); line-height: 1.02; letter-spacing: -0.02em; margin: 18px 0 20px; max-width: 13ch; }
.vhero .lead { max-width: 46ch; }
.vhero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

/* Skina-style stat row */
.statsrow { display: flex; align-items: stretch; gap: 0; margin-top: 34px; }
.statsrow > div { padding: 2px 26px; border-left: 1.5px solid rgba(44,22,38,0.14); }
.statsrow > div:first-child { padding-left: 0; border-left: none; }
.statsrow b { display: block; font-family: var(--font-serif); font-weight: 800; font-size: 1.9rem; color: var(--ink); line-height: 1.1; }
.statsrow span { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.04em; color: var(--ink-2); }

/* floating glass chips over the video (Botaniva treatment-cards) */
.vhero__cards { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; margin-top: 42px; }
.vcardlet {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(16px) saturate(1.4); -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid var(--glass-border); border-radius: 20px; padding: 18px 20px;
  box-shadow: var(--shadow-sm), var(--glass-highlight);
}
.vcardlet b { font-family: var(--font-serif); font-size: 1.06rem; color: var(--ink); display: block; margin-bottom: 4px; }
.vcardlet p { font-size: 0.82rem; color: var(--ink-2); line-height: 1.45; }
.vcardlet .mini { display: inline-flex; align-items: center; gap: 6px; margin-bottom: 10px; font-size: 0.66rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pink-700); }
.vcardlet .mini i { width: 8px; height: 8px; border-radius: 50%; background: var(--grad-pink); display: inline-block; }

.hero__vbadge {
  position: absolute; top: 20px; right: 22px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.74); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border); border-radius: 100px; padding: 7px 14px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.02em; color: var(--ink); box-shadow: var(--glass-highlight);
}
.hero__vbadge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 0 4px rgba(212,132,158,.18); }

/* ============================================================
   Full-width cinemagraph band (mid-page video)
   ============================================================ */
.vband {
  position: relative; overflow: hidden;
  min-height: 66vh;
  display: flex; align-items: center; justify-content: center;
  border-radius: 0;
}
.vband__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 24%; z-index: 0; }
.vband::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(245,236,240,0.85) 0%, rgba(245,236,240,0.35) 30% 70%, rgba(245,236,240,0.88) 100%);
}
.vband__card {
  position: relative; z-index: 2; max-width: 620px; margin: 80px 24px; text-align: center;
  background: rgba(255,255,255,0.6); backdrop-filter: blur(18px) saturate(1.4); -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid var(--glass-border); border-radius: var(--r-xl); padding: 46px 44px;
  box-shadow: var(--shadow), var(--glass-highlight);
}
.vband__card h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin: 14px 0 12px; }
.vband__card p { color: var(--ink-2); font-size: 1.02rem; }
.vband__card .btn { margin-top: 24px; }

/* Stat chips */
.statchips { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.statchip { border-radius: var(--r); padding: 16px 22px; min-width: 120px; }
.statchip b { display: block; font-family: var(--font-serif); font-weight: 800; font-size: 1.7rem; color: var(--pink); line-height: 1; }
.statchip span { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

/* Old .blob kept but softened (aurora does most work) */
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.4; z-index: 0; pointer-events: none; }
.blob--1 { width: 420px; height: 420px; background: #f0a0c5; top: -120px; right: -80px; }
.blob--2 { width: 340px; height: 340px; background: #c8a8e0; bottom: -140px; left: -100px; }

/* ---------- Phone mockup (3D glass) ---------- */
.phone-wrap { display: flex; justify-content: center; position: relative; perspective: 1400px; }
.phone {
  position: relative; width: 300px; aspect-ratio: 300 / 620;
  background: linear-gradient(160deg, #221a2b, #0e0b12); border-radius: 46px; padding: 12px;
  box-shadow: var(--shadow-lg), 0 0 0 2px rgba(255,255,255,0.06), inset 0 1px 0 rgba(255,255,255,0.15);
  transform-style: preserve-3d;
  transform: rotateY(-14deg) rotateX(5deg);
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
  animation: phoneFloat 6s ease-in-out infinite;
}
.hero__media .phone:hover { transform: rotateY(-6deg) rotateX(2deg) scale(1.02); }
@keyframes phoneFloat { 0%,100% { translate: 0 0; } 50% { translate: 0 -14px; } }
.phone::before { content: ""; position: absolute; top: 16px; left: 50%; transform: translateX(-50%); width: 108px; height: 26px; background: #0e0b12; border-radius: 100px; z-index: 3; }
.phone__screen { width: 100%; height: 100%; border-radius: 34px; overflow: hidden; background: #fff8f8; position: relative; }
.phone__glow { position: absolute; inset: -40px; background: radial-gradient(circle at 50% 30%, rgba(230,105,154,0.38), transparent 62%); filter: blur(34px); z-index: -1; }
/* floating glass orbs beside the phone (pure CSS 3D spheres) */
.float-orb {
  position: absolute; border-radius: 50%; z-index: 2; pointer-events: none;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,0.9), rgba(255,255,255,0.15) 38%, transparent 60%),
    radial-gradient(circle at 70% 75%, rgba(230,105,154,0.45), transparent 60%),
    linear-gradient(150deg, rgba(240,160,198,0.65), rgba(185,140,220,0.55));
  box-shadow: 0 24px 44px -14px rgba(160,60,110,0.4), inset 0 -8px 20px rgba(120,40,90,0.3), inset 0 6px 14px rgba(255,255,255,0.6);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
}
.float-orb.fo1 { width: 84px; height: 84px; top: 6%; right: -6%; animation: phoneFloat 5s ease-in-out infinite; }
.float-orb.fo2 { width: 54px; height: 54px; bottom: 12%; left: -8%; animation: phoneFloat 7s ease-in-out infinite reverse; }
.float-orb.fo3 { width: 34px; height: 34px; top: 46%; right: -12%; animation: phoneFloat 6.5s ease-in-out infinite; }

/* App screen internals */
.appscreen { position: absolute; inset: 0; display: flex; flex-direction: column; }
.appscreen__top { padding: 40px 18px 10px; display: flex; align-items: center; justify-content: space-between; font-size: 0.7rem; font-weight: 700; color: var(--ink); }
.appscreen__live { background: var(--ink); color: #fff; padding: 3px 9px; border-radius: 100px; font-size: 0.58rem; letter-spacing: 0.1em; }
.appscreen__face { flex: 1; position: relative; background: linear-gradient(180deg,#f0e3e7,#e8d4dc); }
.appscreen__face img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.appscreen__mesh { position: absolute; inset: 0; }
.appscreen__ring {
  position: absolute; left: 16px; bottom: 96px; width: 52px; height: 52px; border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.5); border-top-color: var(--pink);
  display: flex; align-items: center; justify-content: center; font-size: 0.62rem; font-weight: 800; color: var(--pink);
  background: rgba(255,255,255,0.55); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.appscreen__caption { position: absolute; left: 76px; bottom: 96px; }
.appscreen__caption b { font-size: 0.74rem; color: var(--ink); font-family: var(--font-sans); font-weight: 700; }
.appscreen__caption span { display: block; font-size: 0.6rem; color: var(--muted); }
.appscreen__bar { padding: 12px 14px 18px; display: flex; justify-content: space-around; background: #fff; border-top: 1px solid var(--line-soft); }
.appscreen__bar i { width: 26px; height: 4px; border-radius: 100px; background: var(--blush-deep); display: block; }
.appscreen__bar i.on { background: var(--pink); }

/* ---------- Strip ---------- */
.strip { border-radius: 0; padding: 22px 0; margin: 0; border-left: none; border-right: none; }
.strip__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 28px; }
.strip__label { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-2); font-weight: 700; }
.pill { color: var(--pink-700); font-weight: 700; font-size: 0.82rem; padding: 8px 18px; border-radius: 100px; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card { border-radius: var(--r-lg); padding: 30px; transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s ease; }
.card--hover:hover { transform: translateY(-5px); box-shadow: var(--shadow), var(--glass-highlight); }
.card__icon { width: 52px; height: 52px; border-radius: 15px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.6); color: var(--pink); margin-bottom: 20px; box-shadow: var(--glass-highlight); }
.card__icon svg { width: 26px; height: 26px; }
.card__icon--solid { background: var(--grad-pink); color: #fff; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.97rem; }
.card__tag { position: absolute; top: 20px; right: 20px; background: var(--grad-iris); color: #fff; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em; padding: 4px 10px; border-radius: 100px; }
.card--rel { position: relative; }
.card__badge-derm { display: inline-block; margin-top: 14px; font-size: 0.7rem; font-weight: 700; color: var(--pink-700); background: rgba(255,255,255,0.6); border: 1px solid var(--glass-border); padding: 5px 12px; border-radius: 100px; }

/* Accent tints for the feature bento */
.card--accent-rose { background: linear-gradient(150deg, rgba(255,214,232,0.55), rgba(255,255,255,0.5)); }
.card--accent-peach { background: linear-gradient(150deg, rgba(255,224,214,0.55), rgba(255,255,255,0.5)); }
.card--accent-lavender { background: linear-gradient(150deg, rgba(238,220,248,0.55), rgba(255,255,255,0.5)); }
.card--accent-pink { background: linear-gradient(150deg, rgba(255,205,229,0.6), rgba(255,255,255,0.5)); }
.card--accent-mist { background: linear-gradient(150deg, rgba(222,226,250,0.5), rgba(255,255,255,0.5)); }

/* Feature bento layout */
.feat-bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.feat-bento > .card { grid-column: span 2; border-radius: var(--r-lg); }
.feat-bento > .card--featured-pick { grid-column: span 3; }
.feat-bento > .card--accent-mist { grid-column: span 3; }

/* Problem stat cards */
.statcard { border-radius: var(--r); padding: 24px 26px; }
.statcard b { font-family: var(--font-serif); font-weight: 800; font-size: 2.4rem; color: var(--pink); line-height: 1; display: block; margin-bottom: 6px; }
.statcard p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Flow / steps ---------- */
.flow { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.step { border-radius: var(--r); padding: 22px 18px; position: relative; text-align: center; }
.step__n { width: 34px; height: 34px; border-radius: 50%; background: var(--ink); color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 0.9rem; box-shadow: 0 8px 18px -8px rgba(0,0,0,0.4); }
.step h3 { font-size: 1.02rem; font-family: var(--font-sans); font-weight: 700; }
.step p { font-size: 0.8rem; color: var(--muted); margin-top: 4px; }
.step__arrow { position: absolute; right: -12px; top: 50%; transform: translateY(-50%); color: var(--pink-soft); z-index: 2; }
.step__arrow svg { width: 20px; height: 20px; }

/* ---------- Split / features ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split--reverse .split__media { order: 2; }
.feature-list { display: grid; gap: 18px; margin-top: 26px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .tick { flex: none; width: 26px; height: 26px; border-radius: 8px; background: rgba(255,255,255,0.6); color: var(--pink); display: flex; align-items: center; justify-content: center; margin-top: 2px; box-shadow: var(--glass-highlight); }
.feature-list .tick svg { width: 15px; height: 15px; }
.feature-list b { display: block; font-size: 1.02rem; }
.feature-list span { color: var(--muted); font-size: 0.94rem; }

.usp { border-radius: var(--r-lg); padding: 26px; }
.usp h3 { color: var(--pink-700); font-family: var(--font-serif); font-size: 1.18rem; margin-bottom: 8px; }
.usp p { color: var(--muted); font-size: 0.94rem; }

/* ---------- Big stat band (glass gradient) ---------- */
.band {
  background: var(--grad-iris); color: #fff; border-radius: var(--r-xl); padding: 56px;
  box-shadow: var(--shadow), var(--glass-highlight); position: relative; overflow: hidden;
}
.band::after { content:""; position:absolute; inset:0; background: radial-gradient(600px 300px at 20% 0%, rgba(255,255,255,0.25), transparent 60%); pointer-events:none; }
.band .grid-4 { gap: 24px; }
.band-stat b { font-family: var(--font-serif); font-weight: 800; font-size: clamp(2.4rem, 5vw, 3.4rem); line-height: 1; display: block; }
.band-stat span { opacity: 0.9; font-size: 0.86rem; font-weight: 600; letter-spacing: 0.04em; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price { border-radius: var(--r-lg); padding: 34px 30px; display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease; }
.price:hover { transform: translateY(-4px); box-shadow: var(--shadow), var(--glass-highlight); }
.price--featured {
  background: linear-gradient(160deg, rgba(240,225,232,0.75), rgba(235,228,245,0.6));
  border: 1.5px solid rgba(255,255,255,0.8);
  box-shadow: 0 30px 70px -30px rgba(100,50,75,0.35), var(--glass-highlight);
  position: relative;
}
.price--featured::before { content:""; position:absolute; inset:0; border-radius: var(--r-lg); padding:1.5px; background: var(--grad-pink); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity:0.4; pointer-events:none; }
.price__tag { align-self: flex-start; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pink); background: rgba(255,255,255,0.7); padding: 5px 12px; border-radius: 100px; margin-bottom: 16px; box-shadow: var(--glass-highlight); }
.price--featured .price__tag { color: #fff; background: var(--ink); }
.price h3 { font-family: var(--font-sans); font-weight: 700; font-size: 1.05rem; letter-spacing: 0.02em; }
.price__amt { font-family: var(--font-serif); font-weight: 800; font-size: 2.6rem; margin: 10px 0 2px; color: var(--ink); }
.price__amt small { font-size: 0.9rem; font-weight: 500; color: var(--muted); font-family: var(--font-sans); }
.price__feat { margin: 22px 0 26px; display: grid; gap: 12px; }
.price__feat li { display: flex; gap: 10px; font-size: 0.94rem; color: var(--ink-2); align-items: flex-start; }
.price__feat svg { width: 18px; height: 18px; color: var(--pink); flex: none; margin-top: 2px; }
.price .btn { margin-top: auto; }

/* ---------- Forms ---------- */
.form-card { border-radius: var(--r-xl); padding: 44px; box-shadow: var(--shadow), var(--glass-highlight); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: 0.85rem; margin-bottom: 8px; color: var(--ink-2); }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  background: rgba(255,255,255,0.55); border: 1.5px solid rgba(255,255,255,0.7); border-radius: 14px; padding: 14px 16px;
  transition: border-color .15s, background .15s, box-shadow .15s; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--pink); background: #fff; box-shadow: 0 0 0 4px rgba(212,132,158,0.15); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.seg { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.seg label { display: flex; flex-direction: column; gap: 3px; cursor: pointer; border: 1.5px solid var(--glass-border); background: rgba(255,255,255,0.4); border-radius: 14px; padding: 14px 16px; transition: all .15s; font-size: 0.85rem; position: relative; }
.seg label b { font-size: 0.98rem; font-family: var(--font-sans); }
.seg label span { color: var(--muted); font-weight: 500; }
.seg input { position: absolute; opacity: 0; pointer-events: none; }
.seg label:has(input:checked) { border-color: var(--pink); background: rgba(245,232,238,0.7); box-shadow: 0 0 0 3px rgba(212,132,158,0.15); }
.form-msg { margin-top: 14px; font-size: 0.9rem; font-weight: 600; min-height: 20px; }
.form-msg.err { color: var(--pink-700); }
.form-msg.ok { color: #16a34a; }
.form-fine { font-size: 0.78rem; color: var(--muted); margin-top: 16px; text-align: center; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(140deg, #1a1a1a 0%, #111111 60%, #0a0a0a 100%); border-radius: var(--r-xl); padding: 64px 48px; color: #f5eff2; text-align: center; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.cta-band::after { content:""; position:absolute; inset:0; background: radial-gradient(700px 320px at 25% -10%, rgba(230,105,154,0.22), transparent 62%), radial-gradient(600px 300px at 100% 110%, rgba(230,105,154,0.18), transparent 60%); pointer-events:none; }
.cta-band h2 { color: #fff; position: relative; }
.cta-band .lead { color: rgba(255,255,255,0.92); margin: 16px auto 30px; position: relative; }
.cta-band > * { position: relative; }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 0 auto; display: grid; gap: 14px; }
.faq details { border-radius: var(--r); padding: 6px 26px; }
.faq summary { list-style: none; cursor: pointer; padding: 18px 0; font-weight: 700; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { transition: transform .2s; color: var(--pink); flex: none; }
.faq details[open] summary .chev { transform: rotate(45deg); }
.faq p { color: var(--muted); padding: 0 0 20px; font-size: 0.96rem; }

/* ---------- Footer ---------- */
.footer { background: linear-gradient(180deg, #1a1a1a, #0e0e0e); color: #f0e8ec; padding: 68px 0 30px; position: relative; z-index: 1; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer .brand__name { color: #fff; }
.footer p { color: #b0a5ac; font-size: 0.94rem; margin-top: 16px; max-width: 34ch; }
.footer h4 { font-family: var(--font-sans); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: #8a8086; margin-bottom: 18px; }
.footer ul { display: grid; gap: 11px; }
.footer a { color: #d8cdd2; font-size: 0.94rem; }
.footer a:hover { color: var(--pink-soft); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: #8a8086; font-size: 0.85rem; }

/* ---------- Disclaimer ---------- */
.disclaimer { font-size: 0.8rem; color: var(--muted); max-width: 760px; margin: 28px auto 0; text-align: center; font-style: italic; }

/* ---------- Reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.js .reveal.in { opacity: 1; transform: none; }

/* ---------- Inner page hero ---------- */
.pagehero { padding: 60px 0 44px; text-align: center; }
.pagehero h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); margin: 18px 0 16px; }
.pagehero .lead { margin: 0 auto; }

/* ---------- 3D tilt helper (applied by JS on pointer:fine) ---------- */
.tilt { transform-style: preserve-3d; will-change: transform; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__media { order: -1; }
  .phone { transform: none; animation: phoneFloat 6s ease-in-out infinite; }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .split--reverse .split__media { order: 0; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .flow { grid-template-columns: repeat(3, 1fr); }
  .step__arrow { display: none; }
  .price-grid { grid-template-columns: 1fr; }
  .price--featured { transform: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .feat-bento { grid-template-columns: repeat(2, 1fr); }
  .feat-bento > .card, .feat-bento > .card--featured-pick, .feat-bento > .card--accent-mist { grid-column: span 1; }
}
@media (max-width: 940px) {
  .nav__links { display: none; }
  .nav__cta .btn { display: none; }          /* top-bar CTAs move into the menu */
  .nav__toggle { display: flex; }
  .nav.open .nav__links {
    display: flex; position: absolute; top: 74px; left: 0; right: 0; flex-direction: column; align-items: stretch;
    background: rgba(250,244,247,0.97); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
    padding: 14px 20px 22px; gap: 4px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    max-height: calc(100svh - 74px); overflow-y: auto;
  }
  .nav.open .nav__links a { padding: 13px 4px; width: 100%; border-bottom: 1px solid var(--line-soft); }
  .nav.open .nav__linkscta { display: grid; gap: 10px; width: 100%; margin-top: 14px; }
  .nav.open .nav__linkscta a { border-bottom: none; padding: 15px 24px; }
}
@media (max-width: 980px) and (min-width: 681px) {
  .vhero__cards { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .section { padding: 68px 0; }
  .vhero { min-height: calc(100svh - 74px); }
  .vhero__video { object-position: 74% center; }
  .vhero::before {
    background:
      linear-gradient(180deg, rgba(245,236,240,0.9) 0%, rgba(245,236,240,0.55) 34%, rgba(245,236,240,0.25) 60%, rgba(230,210,220,0.7) 100%);
  }
  .vhero h1 { font-size: clamp(2.5rem, 11vw, 3.2rem); }
  .vhero__cards { grid-template-columns: 1fr; gap: 10px; margin-top: 30px; }
  .vcardlet { padding: 14px 16px; }
  .vcardlet p { display: none; }
  .statsrow > div { padding: 2px 14px; }
  .statsrow b { font-size: 1.4rem; }
  .vband { min-height: 56vh; }
  .vband__card { padding: 32px 24px; margin: 56px 16px; }
  .grid-2, .grid-3, .grid-4, .flow, .feat-bento { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .band { padding: 36px 26px; }
  .band .grid-4 { grid-template-columns: 1fr 1fr; }
  .form-card { padding: 28px 22px; }
  .cta-band { padding: 44px 26px; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .hero__actions { width: 100%; }
  .hero__actions .btn { flex: 1; justify-content: center; }
  .float-orb.fo1 { width: 60px; height: 60px; }
  .aurora-orb { filter: blur(44px); }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .js .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .aurora-orb, .phone, .float-orb { animation: none !important; }
  .phone { transform: none; }
}

/* ============================================================
   Split hero & ticker — glass edition
   (layout kept from the split design, skinned in liquid glass)
   ============================================================ */
.shero {
  display: grid; grid-template-columns: 1.02fr 0.98fr;
  min-height: calc(100vh - 74px); min-height: calc(100svh - 74px);
  position: relative;
}
.shero__copy { display: flex; align-items: center; position: relative; z-index: 1; }
.shero__panel { max-width: 640px; margin-left: auto; padding: 72px 56px 72px 24px; width: 100%; }
.shero__title {
  font-family: var(--font-sans); font-weight: 800; letter-spacing: -0.03em;
  font-size: clamp(2.6rem, 4.6vw, 4.2rem); line-height: 1.02; color: var(--ink);
}
.shero__title .script {
  display: block; font-family: var(--font-serif); font-style: italic; font-weight: 700;
  color: var(--pink); letter-spacing: -0.01em;
}
.shero__panel .lead { margin: 22px 0 26px; }

.shero__media { position: relative; overflow: hidden; min-height: 480px; background: var(--blush); }
/* soft wash so the clip inherits the site's tone (no hard seam) */
.shero__media::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(245,236,240,0.65) 0%, rgba(245,236,240,0.20) 28%, transparent 50%),
    linear-gradient(180deg, rgba(245,236,240,0.35) 0%, transparent 18% 78%, rgba(235,218,228,0.40) 100%);
}
.shero__media video {
  display: block;
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
  /* scale slightly beyond bounds so overflow:hidden clips with zero sub-pixel gaps */
  transform: scale(1.03);
  transform-origin: center center;
  /* sharper rendering for high-DPI screens */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  /* feathered alpha mask: dissolves left edge into the pink panel */
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.35) 8%, rgba(0,0,0,0.75) 18%, #000 28%);
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.35) 8%, rgba(0,0,0,0.75) 18%, #000 28%);
}
.shero__mediatag {
  position: absolute; left: 18px; bottom: 18px; z-index: 2;
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,0.6); backdrop-filter: blur(14px) saturate(1.4); -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border: 1px solid var(--glass-border); box-shadow: var(--shadow-sm), var(--glass-highlight);
  border-radius: 100px; padding: 10px 16px; font-size: 0.78rem; font-weight: 700; color: var(--ink);
}
.shero__mediatag .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 0 4px rgba(212,132,158,.16); }

/* "Check the routine" link — glass pill */
.shero__routine {
  display: inline-flex; align-items: center; gap: 14px; margin-top: 30px;
  background: var(--glass-bg); backdrop-filter: blur(14px) saturate(1.4); -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border: 1px solid var(--glass-border); box-shadow: var(--shadow-sm), var(--glass-highlight);
  border-radius: 100px; padding: 12px 20px 12px 12px; max-width: 340px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.shero__routine:hover { transform: translateY(-3px); box-shadow: var(--shadow), var(--glass-highlight); }
.shero__routine:hover .shero__routine-arrow { transform: translateX(3px); }
.shero__routine-ic {
  width: 42px; height: 42px; border-radius: 50%; flex: none; display: flex; align-items: center; justify-content: center;
  background: var(--ink); color: #fff; box-shadow: 0 6px 16px -8px rgba(0,0,0,0.4);
}
.shero__routine-ic svg { width: 20px; height: 20px; }
.shero__routine b { display: block; font-size: 0.92rem; color: var(--ink); line-height: 1.25; }
.shero__routine > span span { font-size: 0.74rem; color: var(--muted); }
.shero__routine-arrow { width: 18px; height: 18px; color: var(--pink); flex: none; margin-left: auto; transition: transform .2s ease; }

/* ticker marquee — dark ribbon, evenly spaced */
.ticker { background: var(--ink); overflow: hidden; padding: 11px 0; box-shadow: var(--shadow-sm); position: relative; z-index: 1; }
.ticker__track { display: flex; width: max-content; animation: tickerScroll 45s linear infinite; }
.ticker__set { display: flex; align-items: center; }
.ticker__set > span {
  display: inline-flex; align-items: center; white-space: nowrap;
  font-family: var(--font-serif); font-style: italic; font-weight: 600;
  font-size: 0.9rem; color: #fff; letter-spacing: 0.005em;
}
/* decorative separator with even breathing room on both sides */
.ticker__set > span::after {
  content: "✦"; margin: 0 clamp(18px, 2.4vw, 28px);
  font-style: normal; font-family: var(--font-sans); font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.6); transform: translateY(-1px);
}
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 680px) {
  .ticker__set > span { font-size: 0.82rem; }
  .ticker__set > span::after { margin: 0 16px; }
}

@media (max-width: 980px) {
  .shero { grid-template-columns: 1fr; min-height: 0; }
  .shero__media { order: -1; min-height: 340px; max-height: 50vh; }
  .shero__media::before {
    background:
      linear-gradient(180deg, rgba(245,236,240,0.22) 0%, transparent 30% 65%, rgba(245,236,240,0.55) 100%),
      linear-gradient(90deg, rgba(245,236,240,0.10) 0%, transparent 14%);
  }
  .shero__media video {
    object-position: center 30%;
    -webkit-mask-image: linear-gradient(180deg, #000 0% 68%, rgba(0,0,0,0.45) 86%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0% 68%, rgba(0,0,0,0.45) 86%, transparent 100%);
  }
  .shero__panel { margin: 0; padding: 40px 24px 56px; max-width: none; }
}
@media (max-width: 680px) {
  .shero__media {
    min-height: auto; max-height: none;
    aspect-ratio: 9 / 16;
  }
  .shero__media video {
    object-fit: cover; object-position: center center;
    transform: scale(1.01);
  }
  .shero__routine { max-width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
}

/* ============================================================
   Cross-device robustness (small phones, tablets, big screens)
   ============================================================ */
/* never let anything cause horizontal scroll */
html, body { max-width: 100%; overflow-x: hidden; }
img, video { max-width: 100%; }

/* tablet band: shero stacks at <=980 but nav is still full until 940 —
   tighten the hero panel so it never feels cramped in that window */
@media (max-width: 980px) {
  .shero__panel { padding: 48px 28px 60px; }
  .shero__title { font-size: clamp(2.4rem, 6vw, 3.6rem); }
}

/* small phones */
@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .brand__name { font-size: 1.5rem; }
  .brand__tag { font-size: 0.48rem; letter-spacing: 0.22em; }
  .shero__panel { padding: 34px 18px 48px; }
  .shero__title { font-size: clamp(2.1rem, 9vw, 2.9rem); }
  .shero__panel .lead { font-size: 1.02rem; }
  .statsrow { flex-wrap: wrap; gap: 10px 0; }
  .statsrow > div { padding: 2px 12px; }
  .statsrow b { font-size: 1.35rem; }
  .eyebrow { font-size: 0.66rem; letter-spacing: 0.16em; padding: 7px 14px; }
  .section-head { margin-bottom: 40px; }
  .cta-band, .band { border-radius: 26px; }
  .form-card { border-radius: 26px; }
}
/* very small phones (<=360) */
@media (max-width: 360px) {
  .container { padding: 0 14px; }
  .hero__actions .btn, .vhero__actions .btn { padding: 14px 20px; font-size: 0.95rem; }
  .statsrow > div span { font-size: 0.68rem; }
}
/* large / ultrawide: keep the text panel from drifting too far from the video */
@media (min-width: 1600px) {
  .shero__panel { max-width: 720px; padding-right: 72px; }
}
