/* =========================================
   LullaLink — Midnight Nursery
   Dreamy · warm · 3D · atmospheric
   ========================================= */

:root {
  /* warm palette */
  --cream:        #FBF7F2;
  --cream-deep:   #F3EDE4;
  --paper:        #FFFFFF;

  /* accents */
  --rose:         #F4B8B0;
  --rose-soft:    #FCE4DE;
  --rose-deep:    #E39990;
  --peach:        #F9D5A7;
  --peach-soft:   #FDEAD2;
  --sage:         #B8D4C8;
  --sage-soft:    #DCE9E2;
  --moon:         #C8C5E3;
  --moon-soft:    #E3E1F1;
  --gold:         #E8C69A;

  /* text */
  --ink:          #2A2330;
  --ink-soft:     #5A4F5E;
  --ink-mute:     #9A8FA0;

  /* dark */
  --plum:         #1A1420;
  --plum-deep:    #12101A;
  --plum-raised:  #241C2E;
  --plum-line:    rgba(244, 184, 176, .18);

  /* status */
  --safe:         #8FBF9F;
  --warn:         #F4B577;
  --alert:        #E38B88;

  /* shape */
  --r-lg:         28px;
  --r-md:         20px;
  --r-sm:         14px;
  --r-pill:       999px;

  /* shadow */
  --sh-soft:      0 10px 30px -12px rgba(62, 40, 50, .18);
  --sh-lift:      0 28px 60px -20px rgba(62, 40, 50, .28);
  --sh-glow-rose: 0 20px 50px -14px rgba(244, 184, 176, .55);
  --sh-glow-moon: 0 20px 50px -14px rgba(200, 197, 227, .55);
  --sh-inset:     inset 0 1px 0 rgba(255,255,255,.8), inset 0 0 0 1px rgba(42,35,48,.04);

  /* type */
  --font-display: 'Nunito', -apple-system, system-ui, sans-serif;
  --font-body:    'Nunito', -apple-system, system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;
}

/* ---------- RESET ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--rose); color: var(--ink); }

html { scroll-behavior: smooth; }

html, body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  background:
    radial-gradient(1100px 600px at 85% -10%, var(--rose-soft) 0%, transparent 55%),
    radial-gradient(900px 500px at -10% 30%, var(--moon-soft) 0%, transparent 55%),
    radial-gradient(700px 400px at 50% 110%, var(--peach-soft) 0%, transparent 60%),
    var(--cream);
  background-attachment: fixed;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
img, svg { display: block; max-width: 100%; }
ul, ol { list-style: none; }

/* ---------- GRAIN OVERLAY ---------- */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  mix-blend-mode: multiply;
  opacity: .28;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'><filter id='n'><feTurbulence baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 .2  0 0 0 0 .15  0 0 0 0 .2  0 0 0 .28 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ---------- CURSOR AURA ---------- */
.aura {
  position: fixed;
  top: 0; left: 0;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,184,176,.35) 0%, rgba(200,197,227,.2) 40%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%,-50%);
  mix-blend-mode: multiply;
  transition: opacity .4s;
  opacity: 0;
  filter: blur(30px);
}
@media (hover: hover) { .aura { opacity: 1; } }

/* ---------- TYPE ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.022em;
  color: var(--ink);
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
}
.display em {
  font-style: normal;
  font-weight: 800;
  color: var(--rose-deep);
  background: linear-gradient(120deg, var(--rose-deep) 0%, #B58CC8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}
.display em::after {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: -.05em;
  height: .12em;
  background: var(--rose);
  border-radius: 999px;
  opacity: .35;
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineGrow 1.4s cubic-bezier(.2,.8,.2,1) forwards;
  animation-delay: 1.2s;
}
@keyframes underlineGrow { to { transform: scaleX(1); } }
.display.light { color: var(--cream); }
.display.light em { -webkit-text-fill-color: var(--rose); background: none; color: var(--rose); }
.display.xl { font-size: clamp(2.8rem, 6.8vw, 5.4rem); }

h2.display, h3.display {
  font-size: clamp(1.85rem, 3.8vw, 2.85rem);
}

p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  font-weight: 400;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(42,35,48,.08);
  backdrop-filter: blur(8px);
  padding: .5rem .9rem .5rem .75rem;
  border-radius: var(--r-pill);
  margin-bottom: 1.4rem;
  box-shadow: var(--sh-soft);
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--safe);
  box-shadow: 0 0 0 0 rgba(143,191,159,.6);
  animation: pulse 2.4s infinite ease-out;
}
.eyebrow-dark { background: rgba(36,28,46,.08); border-color: rgba(42,35,48,.1); }
.eyebrow-on-dark {
  background: rgba(251,247,242,.08);
  border-color: rgba(251,247,242,.14);
  color: var(--cream);
}
.eyebrow-on-dark .eyebrow-dot { background: var(--rose); }

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(143,191,159,.6); }
  70%  { box-shadow: 0 0 0 10px rgba(143,191,159,0); }
  100% { box-shadow: 0 0 0 0 rgba(143,191,159,0); }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .78rem 1.3rem;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, background .25s, color .25s;
  white-space: nowrap;
  will-change: transform;
}
.btn-lg { padding: 1rem 1.7rem; font-size: 1rem; }
.btn-primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: var(--sh-soft);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -12px rgba(42,35,48,.35), 0 0 0 6px rgba(244,184,176,.25);
}
.btn-ghost {
  background: rgba(255,255,255,.7);
  color: var(--ink);
  border: 1px solid rgba(42,35,48,.1);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: #fff; transform: translateY(-2px); box-shadow: var(--sh-soft); }
.btn .play-ic {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--rose-soft);
  color: var(--rose-deep);
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1.2rem, 4vw, 3rem);
  background: rgba(251,247,242,.55);
  backdrop-filter: saturate(160%) blur(20px);
  -webkit-backdrop-filter: saturate(160%) blur(20px);
  border-bottom: 1px solid rgba(42,35,48,.05);
  animation: slideDown .8s cubic-bezier(.2,.8,.2,1);
}
@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
}
.logo {
  display: inline-block;
  width: 40px; height: 40px;
  position: relative;
  filter: drop-shadow(0 6px 14px rgba(244,184,176,.4));
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.brand:hover .logo { transform: rotate(-12deg) scale(1.08); }
.wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -.02em;
  color: var(--ink);
}
.nav-links {
  display: flex;
  gap: 2rem;
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.nav-links a {
  position: relative;
  transition: color .25s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 1.5px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }

@media (max-width: 780px) { .nav-links { display: none; } }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  padding: clamp(2rem, 6vw, 5rem) clamp(1.2rem, 4vw, 3rem) clamp(3rem, 6vw, 6rem);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* floating cosmos */
.cosmos { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: .8;
  will-change: transform;
}
.orb-1 {
  width: 340px; height: 340px;
  background: radial-gradient(circle, var(--rose) 0%, transparent 70%);
  top: 8%; right: 5%;
  animation: drift 18s ease-in-out infinite;
}
.orb-2 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, var(--moon) 0%, transparent 70%);
  bottom: 10%; left: 3%;
  animation: drift 22s ease-in-out infinite reverse;
}
.orb-3 {
  width: 220px; height: 220px;
  background: radial-gradient(circle, var(--peach) 0%, transparent 70%);
  top: 50%; left: 40%;
  animation: drift 28s ease-in-out infinite;
  opacity: .6;
}
@keyframes drift {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(30px,-40px) scale(1.1); }
  66%      { transform: translate(-40px,20px) scale(.95); }
}
.star {
  position: absolute;
  color: var(--gold);
  font-size: 16px;
  animation: twinkle 3s ease-in-out infinite;
  filter: drop-shadow(0 0 6px rgba(232,198,154,.6));
}
.star-1 { top: 18%; left: 48%; animation-delay: 0s; }
.star-2 { top: 35%; right: 12%; font-size: 12px; animation-delay: .8s; }
.star-3 { bottom: 28%; left: 38%; font-size: 18px; animation-delay: 1.5s; }
.star-4 { top: 70%; right: 42%; font-size: 14px; animation-delay: 2.2s; }
@keyframes twinkle {
  0%, 100% { opacity: .35; transform: scale(.85); }
  50%      { opacity: 1;   transform: scale(1.15); }
}
.cloud { position: absolute; opacity: .5; }
.cloud-1 { top: 8%; left: 10%; animation: floatY 10s ease-in-out infinite; }
.cloud-2 { bottom: 15%; right: 38%; animation: floatY 13s ease-in-out infinite reverse; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

/* hero copy */
.hero-copy {
  position: relative;
  z-index: 3;
}
.hero-copy .display .line {
  display: block;
  overflow: hidden;
}
.hero-copy .display .line > span,
.hero-copy .display .line > em {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  animation: riseWord 1s cubic-bezier(.2,.8,.2,1) forwards;
}
.hero-copy .display .line:nth-child(1) > span:nth-child(1) { animation-delay: .3s; }
.hero-copy .display .line:nth-child(1) > span:nth-child(2) { animation-delay: .4s; }
.hero-copy .display .line:nth-child(2) > em               { animation-delay: .5s; }
.hero-copy .display .line:nth-child(2) > span:nth-child(2){ animation-delay: .6s; }
.hero-copy .display .line:nth-child(3) > span             { animation-delay: .7s; }
@keyframes riseWord {
  to { transform: translateY(0); opacity: 1; }
}

.lede {
  max-width: 32rem;
  font-size: 1.08rem;
  margin: 1.5rem 0 0;
  line-height: 1.62;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin: 1.8rem 0 1.8rem;
}
.trust {
  display: flex;
  align-items: center;
  gap: .9rem;
  color: var(--ink-soft);
  font-size: .92rem;
}
.stars-mini { color: var(--gold); letter-spacing: 2px; font-size: 1.05rem; }
.trust b { color: var(--ink); font-weight: 700; }

.pair-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1rem;
}
.pair-chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem .75rem;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(42,35,48,.08);
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--ink-soft);
  backdrop-filter: blur(6px);
  transition: transform .25s, background .25s, color .25s, border-color .25s;
}
.pair-chip:hover {
  transform: translateY(-2px);
  background: var(--paper);
  color: var(--ink);
  border-color: rgba(244,184,176,.45);
}
.pair-chip svg { color: var(--rose-deep); }
.pair-chips.reveal { animation-delay: 1.5s; }

.reveal {
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp .9s cubic-bezier(.2,.8,.2,1) forwards;
  animation-delay: .15s;
}
.cta-row.reveal { animation-delay: 1.1s; }
.trust.reveal   { animation-delay: 1.3s; }
.lede.reveal    { animation-delay: .9s; }
.eyebrow.reveal { animation-delay: .1s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ---------- HERO STAGE (3D PHONES) ---------- */
.hero-stage {
  position: relative;
  perspective: 1600px;
  transform-style: preserve-3d;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 1.1s cubic-bezier(.2,.8,.2,1) forwards;
  animation-delay: 1s;
}
.stage-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.halo {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
}
.halo-a {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(244,184,176,.45) 0%, transparent 70%);
  top: -40px; left: -20px;
  animation: haloShift 10s ease-in-out infinite;
}
.halo-b {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(200,197,227,.5) 0%, transparent 70%);
  bottom: -20px; right: -30px;
  animation: haloShift 14s ease-in-out infinite reverse;
}
@keyframes haloShift {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(20px, -15px) scale(1.05); }
}

.phone {
  position: relative;
  width: 220px;
  height: 440px;
  border-radius: 42px;
  background: linear-gradient(145deg, #2A2330, #14101C);
  padding: 12px;
  box-shadow:
    0 50px 100px -30px rgba(42,35,48,.45),
    0 0 0 1.5px rgba(255,255,255,.07),
    inset 0 0 0 1px rgba(255,255,255,.03);
  transform-style: preserve-3d;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}
.phone-notch {
  position: absolute;
  top: 16px; left: 50%;
  width: 88px; height: 18px;
  background: #0A0810;
  border-radius: 999px;
  transform: translateX(-50%);
  z-index: 2;
}
.phone-screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 32px;
  padding: 32px 18px 18px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.phone-baby {
  position: absolute;
  top: 40px; left: 4%;
  transform: rotate(-8deg);
  z-index: 2;
}
.phone-parent {
  position: absolute;
  top: 0; right: 4%;
  transform: rotate(6deg) translateY(30px);
  z-index: 3;
}

.screen-baby {
  background:
    radial-gradient(400px 200px at 50% 30%, #352A42 0%, transparent 70%),
    linear-gradient(180deg, #241C2E, #14101C);
  color: #F0E8E5;
  align-items: center;
  text-align: center;
}
.baby-pulse {
  position: absolute;
  top: 40%; left: 50%;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,184,176,.35) 0%, transparent 60%);
  transform: translate(-50%,-50%);
  animation: babyPulse 3.5s ease-in-out infinite;
}
@keyframes babyPulse {
  0%, 100% { transform: translate(-50%,-50%) scale(.9); opacity: .5; }
  50%      { transform: translate(-50%,-50%) scale(1.1); opacity: .9; }
}
.baby-head {
  display: flex;
  align-items: center;
  gap: .45rem;
  margin-top: 1rem;
  z-index: 1;
}
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--safe);
  box-shadow: 0 0 8px var(--safe), 0 0 0 0 rgba(143,191,159,.6);
  animation: pulse 2.4s infinite ease-out;
}
.status-text {
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .24em;
  color: #A89FA8;
}
.waveform {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 56px;
  margin: auto 0;
  z-index: 1;
}
.waveform span {
  width: 4px;
  background: linear-gradient(180deg, var(--rose), var(--moon));
  border-radius: 2px;
  opacity: .9;
  animation: wave 1.3s ease-in-out infinite;
}
.waveform span:nth-child(1)  { height: 35%; animation-delay: .0s; }
.waveform span:nth-child(2)  { height: 65%; animation-delay: .08s; }
.waveform span:nth-child(3)  { height: 48%; animation-delay: .16s; }
.waveform span:nth-child(4)  { height: 80%; animation-delay: .24s; }
.waveform span:nth-child(5)  { height: 60%; animation-delay: .32s; }
.waveform span:nth-child(6)  { height: 90%; animation-delay: .40s; }
.waveform span:nth-child(7)  { height: 50%; animation-delay: .48s; }
.waveform span:nth-child(8)  { height: 72%; animation-delay: .56s; }
.waveform span:nth-child(9)  { height: 40%; animation-delay: .64s; }
.waveform span:nth-child(10) { height: 62%; animation-delay: .72s; }
.waveform span:nth-child(11) { height: 50%; animation-delay: .80s; }
.waveform span:nth-child(12) { height: 75%; animation-delay: .88s; }
.waveform span:nth-child(13) { height: 42%; animation-delay: .96s; }
@keyframes wave {
  0%, 100% { transform: scaleY(.5); }
  50%      { transform: scaleY(1); }
}

.baby-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px 6px;
  width: 100%;
  border-top: 1px solid rgba(240,232,229,.1);
  padding-top: 10px;
  margin-top: auto;
  z-index: 1;
}
.mini-k {
  font-family: var(--font-mono);
  font-size: .56rem;
  letter-spacing: .16em;
  color: #6B6370;
  grid-row: 1;
  text-align: center;
}
.mini-v {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: #F0E8E5;
  grid-row: 2;
  text-align: center;
}
.phone-tag {
  font-family: var(--font-mono);
  font-size: .56rem;
  letter-spacing: .22em;
  color: #6B6370;
  margin-top: 6px;
}

/* parent screen */
.screen-parent {
  background: var(--cream);
  padding: 28px 10px 14px;
  color: var(--ink);
  gap: 10px;
}
.video-tile {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(160deg, #9A95C4 0%, #7A74A6 100%);
}
.video-scene {
  position: absolute; inset: 0;
  background:
    radial-gradient(180px 140px at 60% 50%, rgba(252,228,222,.4) 0%, transparent 70%),
    radial-gradient(100px 80px at 30% 70%, rgba(200,197,227,.6) 0%, transparent 70%);
}
.video-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 55%, #F0DCCD 0%, transparent 18%),
    radial-gradient(circle at 48% 45%, #3D3440 0%, transparent 5%),
    radial-gradient(circle at 54% 45%, #3D3440 0%, transparent 5%);
  opacity: .35;
  filter: blur(2px);
}
.video-noise {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, rgba(0,0,0,.03) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
  pointer-events: none;
}
.state-pill {
  position: absolute;
  bottom: 10px; right: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(26,20,32,.7);
  color: #F0E8E5;
  font-family: var(--font-mono);
  font-size: .55rem;
  letter-spacing: .14em;
  padding: 4px 8px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  text-transform: uppercase;
}
.sp-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--safe);
  animation: pulse 2s infinite;
}
.video-stats {
  position: absolute;
  top: 8px; left: 8px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.stat-line {
  font-family: var(--font-mono);
  font-size: .52rem;
  color: #F0E8E5;
  background: rgba(26,20,32,.6);
  padding: 2px 6px;
  border-radius: 6px;
  display: inline-flex; align-items: center; gap: 4px;
  backdrop-filter: blur(4px);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.sl-k { color: var(--rose); }
.breath {
  position: absolute;
  bottom: 10px; left: 10px;
  display: flex; align-items: center; gap: 8px;
}
.breath-ring, .breath-ring-2 {
  width: 16px; height: 16px;
  border: 1.5px solid var(--sage);
  border-radius: 50%;
}
.breath-ring   { animation: breathe 3.2s ease-in-out infinite; }
.breath-ring-2 {
  position: absolute; left: 0;
  animation: breathe 3.2s ease-in-out infinite .6s;
  opacity: .5;
}
@keyframes breathe {
  0%, 100% { transform: scale(.85); opacity: .85; }
  50%      { transform: scale(1.35); opacity: .3; }
}
.bpm {
  font-family: var(--font-mono);
  font-size: .58rem;
  background: rgba(26,20,32,.7);
  color: #F0E8E5;
  padding: 2px 6px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}
.controls {
  display: flex;
  justify-content: space-around;
  padding: 10px 4px;
  background: rgba(255,255,255,.8);
  border-radius: 14px;
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 1px 3px rgba(62,40,50,.06);
}
.ctrl {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  transition: transform .3s;
}
.ctrl:hover { transform: translateY(-2px) scale(1.05); }
.coral { background: var(--rose-soft); color: var(--rose-deep); }
.peach { background: var(--peach-soft); color: #B5782A; }
.moon  { background: var(--moon-soft); color: #5B568B; }
.sage  { background: var(--sage-soft); color: #4F7D65; }

.screen-parent .phone-tag {
  color: var(--ink-mute);
  text-align: center;
}

/* floating info chips */
.float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .55rem;
  background: rgba(255,255,255,.9);
  padding: .6rem .85rem;
  border-radius: 14px;
  box-shadow: var(--sh-lift);
  backdrop-filter: blur(10px);
  font-size: .8rem;
  border: 1px solid rgba(255,255,255,.8);
  will-change: transform;
  animation: floatY 5s ease-in-out infinite;
  z-index: 10;
}
.float-chip strong {
  display: block;
  color: var(--ink);
  font-weight: 700;
  font-size: .85rem;
}
.float-chip span {
  color: var(--ink-mute);
  font-size: .72rem;
}
.chip-breath {
  top: 10%; left: -6%;
  animation-delay: 1s;
}
.chip-detect {
  bottom: 14%; right: -4%;
  animation-delay: 2s;
}
.fc-ic {
  font-size: 1.3rem;
  background: var(--sage-soft);
  width: 34px; height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center; justify-content: center;
}
.fc-ring {
  width: 10px; height: 10px;
  border: 2px solid var(--safe);
  border-radius: 50%;
  animation: breathe 2s ease-in-out infinite;
}
.connect-line {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
}
.connect-path {
  animation: dashFlow 4s linear infinite;
}
.connect-path-2 {
  animation: dashFlow 5s linear infinite reverse;
}
@keyframes dashFlow {
  to { stroke-dashoffset: -28; }
}

/* ---------- IP CAMERA ---------- */
.camera {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  filter: drop-shadow(0 22px 30px rgba(42,35,48,.28));
  animation: camFloat 6s ease-in-out infinite;
}
.camera .cam-art {
  transform-origin: 50% 50%;
  transition: transform .8s cubic-bezier(.2,.8,.2,1);
}
.camera:hover .cam-art {
  transform: scale(1.06) rotate(2deg);
}
.cam-led {
  transform-origin: 96px 51px;
  animation: camPulse 2.2s ease-in-out infinite;
}
.cam-wifi path {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: camWifi 2.4s ease-out infinite;
}
.cam-wifi path:nth-child(3) { animation-delay: .3s; }
.cam-wifi path:nth-child(4) { animation-delay: .6s; }
.cam-tag {
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: rgba(255,255,255,.82);
  padding: .35rem .65rem;
  border-radius: 999px;
  border: 1px solid rgba(42,35,48,.06);
  backdrop-filter: blur(6px);
  white-space: nowrap;
  font-weight: 500;
}
@keyframes camFloat {
  0%, 100% { transform: translateX(-50%) translateY(0) rotate(-3deg); }
  50%      { transform: translateX(-50%) translateY(-8px) rotate(-2deg); }
}
@keyframes camPulse {
  0%, 100% { opacity: .45; }
  50%      { opacity: 1; }
}
@keyframes camWifi {
  0%   { stroke-dashoffset: 40; opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 0; }
}

/* ---------- FEATURE · CAMERA BRANDS ---------- */
.cam-brands {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}
.cb {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .08em;
  font-weight: 500;
  color: var(--ink);
  background: rgba(255,255,255,.75);
  padding: .35rem .7rem;
  border-radius: 999px;
  border: 1px solid rgba(42,35,48,.08);
  transition: background .25s, transform .25s;
}
.cb:hover { background: var(--paper); transform: translateY(-1px); }
.cb-plus {
  background: var(--rose-soft);
  color: var(--rose-deep);
  border-color: transparent;
  font-weight: 600;
}

/* scroll indicator */
.scroll-ind {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 22px; height: 36px;
  border: 1.5px solid var(--ink-mute);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  z-index: 5;
}
.scroll-ind span {
  width: 3px; height: 8px;
  background: var(--ink);
  border-radius: 999px;
  margin-top: 6px;
  animation: scrollDown 1.6s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { transform: translateY(0); opacity: 1; }
  80%  { transform: translateY(8px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-stage { min-height: 440px; }
  .phone-baby { left: 10%; }
  .phone-parent { right: 10%; }
}

/* ---------- STATS ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(42,35,48,.08);
  border-radius: var(--r-lg);
  margin: 0 clamp(1.2rem, 4vw, 3rem);
  overflow: hidden;
  box-shadow: var(--sh-soft);
  position: relative;
  z-index: 3;
}
.stat-card {
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  padding: 2rem 1.4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  align-items: center;
  transition: background .4s, transform .4s;
}
.stat-card:hover {
  background: #fff;
  transform: translateY(-2px);
}
.stat-val {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: .15rem;
}
.stat-val em {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink-mute);
  letter-spacing: .04em;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--ink-mute);
}
@media (max-width: 820px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- SECTION HEAD ---------- */
.section-head {
  text-align: center;
  max-width: 46rem;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}
.section-head .eyebrow { margin: 0 auto 1.2rem; }

/* ---------- FEATURES ---------- */
.features {
  padding: clamp(5rem, 10vw, 8rem) clamp(1.2rem, 4vw, 3rem);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1300px;
  margin: 0 auto;
}
.feature {
  position: relative;
  background: var(--paper);
  padding: 2rem 1.5rem 1.7rem;
  border-radius: var(--r-md);
  border: 1px solid rgba(42,35,48,.05);
  box-shadow: var(--sh-soft);
  transform-style: preserve-3d;
  transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .4s;
  overflow: hidden;
  min-height: 230px;
  will-change: transform;
}
.feature.wide { grid-column: span 2; }
.feature:hover {
  box-shadow: var(--sh-lift);
}
.feature::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(244,184,176,.3) 0%, transparent 40%);
  transition: opacity .4s;
  pointer-events: none;
}
.feature:hover::before { opacity: 1; }
.feat-num {
  position: absolute;
  top: 1rem; right: 1.2rem;
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .2em;
  color: var(--ink-mute);
}
.feat-corner {
  position: absolute;
  bottom: 1rem; right: 1.2rem;
  color: var(--ink-mute);
  font-size: .9rem;
  opacity: .5;
}
.feat-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  color: var(--rose-deep);
  transition: transform .4s;
}
.feature:hover .feat-icon { transform: rotate(-6deg) scale(1.08); }
.feature-rose  .feat-icon { background: linear-gradient(145deg, var(--rose-soft), var(--rose) 140%); }
.feature-peach .feat-icon { background: linear-gradient(145deg, var(--peach-soft), var(--peach) 140%); color: #A5661E; }
.feature-sage  .feat-icon { background: linear-gradient(145deg, var(--sage-soft), var(--sage) 140%); color: #4F7D65; }
.feature-moon  .feat-icon { background: linear-gradient(145deg, var(--moon-soft), var(--moon) 140%); color: #5B568B; }

.feature h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -.015em;
  color: var(--ink);
  margin-bottom: .4rem;
}
.feature p {
  font-size: .92rem;
  line-height: 1.5;
}
.feat-chart {
  margin-top: 1rem;
  padding: .7rem .9rem;
  background: var(--sage-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: .8rem;
}
.feat-chart svg { flex: 1; height: 30px; }
.feat-chart span {
  font-family: var(--font-mono);
  font-size: .68rem;
  color: #4F7D65;
  letter-spacing: .08em;
}
.avatar-stack {
  display: flex;
  margin-top: 1.1rem;
}
.av {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: .62rem;
  font-weight: 700;
  color: #fff;
  border: 2px solid #fff;
  margin-left: -10px;
}
.av:first-child { margin-left: 0; }
.av-1 { background: #D68F87; }
.av-2 { background: #9A95C4; }
.av-3 { background: #7CA89A; }
.av-4 { background: #E8A876; }
.av-plus {
  background: var(--ink);
  color: var(--cream);
  margin-left: -10px;
}

@media (max-width: 1100px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .feature-grid { grid-template-columns: 1fr; } .feature.wide { grid-column: auto; } }

/* reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1);
}
[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- HOW ---------- */
.how {
  padding: clamp(5rem, 10vw, 8rem) clamp(1.2rem, 4vw, 3rem);
  position: relative;
  background: var(--cream-deep);
  overflow: hidden;
}
.how-aura {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 20% 30%, rgba(244,184,176,.3), transparent 60%),
    radial-gradient(600px 400px at 80% 70%, rgba(200,197,227,.3), transparent 60%);
  pointer-events: none;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  max-width: 1100px;
  margin: 0 auto clamp(3rem, 5vw, 5rem);
  position: relative;
  z-index: 2;
}
.steps li {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 2rem;
  position: relative;
  box-shadow: var(--sh-soft);
  transition: transform .5s;
}
.steps li:hover { transform: translateY(-4px); box-shadow: var(--sh-lift); }
.step-art {
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.step-num {
  font-family: var(--font-mono);
  font-size: .75rem;
  letter-spacing: .22em;
  color: var(--rose-deep);
  margin-bottom: .6rem;
}
.steps h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: .4rem;
}
.steps p { font-size: .94rem; }

.transport {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: clamp(2rem, 4vw, 3rem);
  position: relative;
  z-index: 2;
  box-shadow: var(--sh-soft);
  border: 1px solid rgba(42,35,48,.04);
}
.transport-head {
  text-align: center;
  margin-bottom: 2.2rem;
}
.transport-head .display { font-size: clamp(1.6rem, 3vw, 2.4rem); }
.transport-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.transport-card {
  padding: 1.4rem;
  border-radius: var(--r-md);
  background: var(--cream);
  position: relative;
  overflow: hidden;
  transition: transform .4s, box-shadow .4s;
}
.transport-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-soft);
}
.tc-tag {
  font-family: var(--font-mono);
  font-size: .64rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .3rem .7rem;
  border-radius: var(--r-pill);
  display: inline-block;
  margin-bottom: .9rem;
  font-weight: 600;
}
.tc-sage { background: var(--sage-soft); color: #4F7D65; }
.tc-warm { background: var(--peach-soft); color: #A5661E; }
.tc-moon { background: var(--moon-soft); color: #5B568B; }
.transport-card h4 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: .3rem;
}
.transport-card p { font-size: .88rem; margin-bottom: 1rem; }
.tc-line {
  height: 1px;
  background: linear-gradient(90deg, var(--rose), transparent);
}
@media (max-width: 820px) {
  .steps, .transport-grid { grid-template-columns: 1fr; }
}

/* ---------- PRIVACY (dark) ---------- */
.privacy {
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) clamp(1.2rem, 4vw, 3rem);
  background: var(--plum);
  color: var(--cream);
  overflow: hidden;
  border-radius: 40px 40px 0 0;
  margin-top: 2rem;
}
.priv-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.priv-glow-a {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(244,184,176,.4), transparent 70%);
  top: -100px; right: -80px;
}
.priv-glow-b {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,197,227,.35), transparent 70%);
  bottom: -80px; left: -60px;
}
.priv-stars {
  position: absolute; inset: 0;
  pointer-events: none;
}
.priv-stars span {
  position: absolute;
  color: var(--gold);
  font-size: 12px;
  opacity: .5;
  animation: twinkle 4s ease-in-out infinite;
}
.priv-stars span:nth-child(1) { top: 12%; left: 8%; animation-delay: 0s; }
.priv-stars span:nth-child(2) { top: 24%; right: 15%; font-size: 16px; animation-delay: .5s; }
.priv-stars span:nth-child(3) { bottom: 20%; left: 18%; animation-delay: 1s; }
.priv-stars span:nth-child(4) { top: 48%; right: 8%; font-size: 14px; animation-delay: 1.5s; }
.priv-stars span:nth-child(5) { bottom: 12%; right: 30%; animation-delay: 2s; }
.priv-stars span:nth-child(6) { top: 30%; left: 48%; animation-delay: 2.5s; }
.priv-stars span:nth-child(7) { bottom: 35%; right: 45%; animation-delay: 3s; }
.priv-stars span:nth-child(8) { top: 70%; left: 60%; font-size: 14px; animation-delay: 3.5s; }

.priv-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.priv-copy h2 { margin-bottom: 1.4rem; }
.priv-copy p { color: rgba(251,247,242,.75); font-size: 1.05rem; max-width: 34rem; }

.check-list {
  margin-top: 2rem;
  display: grid;
  gap: .8rem;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: .8rem;
  color: var(--cream);
  font-weight: 500;
}
.check-list li span {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--plum);
  display: inline-flex;
  align-items: center; justify-content: center;
  font-weight: 800;
  font-size: .82rem;
}

.priv-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2rem;
}
.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.4rem;
  border-radius: var(--r-pill);
  background: rgba(251,247,242,.08);
  color: var(--cream);
  border: 1px solid rgba(251,247,242,.2);
  font-weight: 700;
  font-size: .95rem;
  transition: background .25s, border-color .25s, transform .25s;
}
.btn-ghost-dark:hover {
  background: rgba(251,247,242,.14);
  border-color: rgba(251,247,242,.35);
  transform: translateY(-2px);
}
.priv-link {
  color: rgba(251,247,242,.65);
  font-size: .92rem;
  font-weight: 600;
  border-bottom: 1px dashed rgba(251,247,242,.25);
  padding-bottom: 2px;
  transition: color .25s, border-color .25s;
}
.priv-link:hover { color: var(--rose); border-bottom-color: var(--rose); }

.priv-card {
  background: linear-gradient(145deg, rgba(244,184,176,.12), rgba(200,197,227,.08));
  border: 1px solid rgba(244,184,176,.2);
  border-radius: var(--r-lg);
  padding: 1.8rem;
  position: relative;
  backdrop-filter: blur(10px);
}
.priv-card-head {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-bottom: 1rem;
}
.priv-card-ic {
  width: 44px; height: 44px;
  background: var(--rose);
  color: var(--plum);
  border-radius: 12px;
  display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
}
.priv-card h3 {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--cream);
}
.priv-card p {
  color: rgba(251,247,242,.75);
  font-size: .94rem;
  margin-bottom: 1rem;
}
.priv-card-sig {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .12em;
  color: var(--rose);
}

@media (max-width: 900px) { .priv-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq {
  padding: clamp(5rem, 10vw, 8rem) clamp(1.2rem, 4vw, 3rem);
  background: var(--cream);
}
.faq-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: .7rem;
}
.faq-grid details {
  background: var(--paper);
  border-radius: var(--r-md);
  border: 1px solid rgba(42,35,48,.06);
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}
.faq-grid details[open] {
  border-color: var(--rose);
  box-shadow: var(--sh-soft);
}
.faq-grid summary {
  cursor: pointer;
  list-style: none;
  padding: 1.3rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
}
.faq-grid summary::-webkit-details-marker { display: none; }
.q-n {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .18em;
  color: var(--rose-deep);
  font-weight: 500;
  flex-shrink: 0;
  width: 2rem;
}
.q-ic {
  margin-left: auto;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--cream);
  position: relative;
  transition: background .3s, transform .3s;
  flex-shrink: 0;
}
.q-ic::before, .q-ic::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: var(--ink);
  transition: transform .3s;
}
.q-ic::before { width: 10px; height: 1.5px; transform: translate(-50%,-50%); }
.q-ic::after  { width: 1.5px; height: 10px; transform: translate(-50%,-50%); }
.faq-grid details[open] .q-ic { background: var(--rose); transform: rotate(180deg); }
.faq-grid details[open] .q-ic::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-grid details > div {
  padding: 0 1.6rem 1.4rem;
}
.faq-grid details p {
  font-size: .96rem;
  padding-left: calc(2rem + 1.2rem);
}

/* ---------- PRICING ---------- */
.pricing {
  padding: clamp(5rem, 10vw, 8rem) clamp(1.2rem, 4vw, 3rem);
  position: relative;
}
.section-head .section-sub {
  margin-top: 1rem;
  color: var(--ink-soft);
  font-size: 1.04rem;
}
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1180px;
  margin: 0 auto;
  align-items: stretch;
}
.plan {
  position: relative;
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem 1.75rem;
  box-shadow: var(--sh-soft);
  border: 1px solid rgba(42,35,48,.05);
  display: flex;
  flex-direction: column;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s;
}
.plan:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lift);
}
.plan-featured {
  background:
    radial-gradient(500px 220px at 50% 0%, rgba(244,184,176,.25), transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, #FDF7F4 100%);
  border: 1.5px solid transparent;
  background-clip: padding-box, padding-box;
  box-shadow: var(--sh-lift), 0 0 0 1.5px rgba(244,184,176,.4);
  transform: translateY(-12px);
  z-index: 2;
}
.plan-featured:hover {
  transform: translateY(-16px);
}
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(95deg, var(--rose-deep), var(--moon));
  color: var(--paper);
  padding: .45rem 1rem;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 8px 20px -8px rgba(227,153,144,.6);
}
.plan-head h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--ink);
  letter-spacing: -.01em;
  margin-bottom: .3rem;
}
.plan-tag {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.plan-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 1.5rem 0 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px dashed rgba(42,35,48,.1);
}
.plan .price-val {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3rem;
  color: var(--ink);
  letter-spacing: -.03em;
  line-height: 1;
}
.plan-featured .price-val {
  background: linear-gradient(120deg, var(--rose-deep), var(--moon));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.plan .price-per {
  font-family: var(--font-mono);
  font-size: .88rem;
  color: var(--ink-mute);
  font-weight: 500;
}
.plan .price-was {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink-mute);
  text-decoration: line-through;
  text-decoration-color: var(--alert);
  text-decoration-thickness: 2px;
  margin-right: .1rem;
  font-weight: 700;
}
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  flex: 1;
}
.plan-features li {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  color: var(--ink-soft);
  font-size: .94rem;
  line-height: 1.45;
}
.plan-features li strong { color: var(--ink); font-weight: 700; }
.pf-ic {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--paper);
  font-size: .7rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.pf-ic.muted {
  background: var(--cream-deep);
  color: var(--ink-mute);
}
.plan-cta {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}
.plan-fine {
  margin-top: .75rem;
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .06em;
  color: var(--ink-mute);
  text-align: center;
  line-height: 1.5;
}
.plan-foot {
  max-width: 1180px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 1.5rem clamp(1.2rem, 3vw, 2rem);
  border-top: 1px solid rgba(42,35,48,.06);
}
.pf-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--ink-soft);
  font-size: .88rem;
}
.pf-item svg { color: var(--rose-deep); flex-shrink: 0; }

@media (max-width: 960px) {
  .plan-grid { grid-template-columns: 1fr; max-width: 460px; }
  .plan-featured { transform: none; }
  .plan-featured:hover { transform: translateY(-4px); }
  .plan-foot { grid-template-columns: 1fr; gap: 1rem; }
}

/* ---------- DOWNLOAD ---------- */
.download {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.2rem, 4vw, 3rem);
}
.dl-card {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
  background:
    radial-gradient(600px 300px at 20% 0%, rgba(244,184,176,.35), transparent 60%),
    radial-gradient(500px 300px at 100% 100%, rgba(200,197,227,.3), transparent 60%),
    linear-gradient(160deg, #1A1420 0%, #0E0A14 100%);
  border-radius: var(--r-lg);
  color: var(--cream);
  text-align: center;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(42,35,48,.5);
}
.dl-halo {
  position: absolute;
  top: 50%; left: 50%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(244,184,176,.12), transparent 60%);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  animation: haloShift 14s ease-in-out infinite;
  pointer-events: none;
}
.dl-stars span {
  position: absolute;
  color: var(--gold);
  animation: twinkle 3s ease-in-out infinite;
}
.dl-stars span:nth-child(1) { top: 10%; left: 10%; font-size: 14px; animation-delay: 0s; }
.dl-stars span:nth-child(2) { top: 20%; right: 15%; font-size: 18px; animation-delay: .8s; }
.dl-stars span:nth-child(3) { bottom: 25%; left: 20%; font-size: 12px; animation-delay: 1.5s; }
.dl-stars span:nth-child(4) { top: 60%; right: 12%; animation-delay: 2s; }
.dl-stars span:nth-child(5) { bottom: 15%; right: 30%; font-size: 16px; animation-delay: 2.5s; }

.dl-moon {
  position: absolute;
  top: 10%; right: 8%;
  opacity: .3;
  filter: blur(2px);
  animation: floatY 8s ease-in-out infinite;
}

.dl-card .eyebrow { margin: 0 auto 1.4rem; }
.dl-card h2 {
  max-width: 22ch;
  margin: 0 auto 1rem;
}
.dl-card > p {
  color: rgba(251,247,242,.7);
  max-width: 30rem;
  margin: 0 auto 2rem;
  font-size: 1.02rem;
  position: relative;
  z-index: 1;
}
.store-row {
  display: flex;
  justify-content: center;
  gap: .9rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.store {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  background: var(--cream);
  color: var(--plum);
  padding: .85rem 1.4rem;
  border-radius: 16px;
  text-align: left;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
  min-width: 180px;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,.4);
}
.store:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -15px rgba(244,184,176,.5), 0 0 0 1px rgba(244,184,176,.3);
}
.store-s { display: block; font-size: .68rem; color: var(--ink-mute); letter-spacing: .04em; }
.store-b { display: block; font-size: 1.05rem; font-weight: 800; font-family: var(--font-display); }
.dl-fine {
  margin-top: 1.6rem;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .16em;
  color: rgba(251,247,242,.4);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

/* ---------- FOOTER ---------- */
.foot {
  padding: 3rem clamp(1.2rem, 4vw, 3rem) 2rem;
  background: var(--cream);
  border-top: 1px solid rgba(42,35,48,.06);
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.foot-brand-col .brand { margin-bottom: 1rem; }
.foot-brand-col p { color: var(--ink-mute); font-size: .9rem; max-width: 22rem; }
.foot-col h4 {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1rem;
  font-weight: 500;
}
.foot-col a {
  display: block;
  padding: .35rem 0;
  color: var(--ink-soft);
  font-size: .95rem;
  font-weight: 500;
  transition: color .25s, transform .25s;
}
.foot-col a:hover { color: var(--ink); transform: translateX(3px); }

.foot-bottom {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(42,35,48,.06);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .6rem;
  color: var(--ink-mute);
  font-size: .84rem;
}
.foot-med {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .14em;
  color: var(--rose-deep);
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .foot-grid { grid-template-columns: 1fr; gap: 1.6rem; }
}

/* ---------- LEGAL / PROSE PAGES ---------- */
.page-hero {
  padding: 7.5rem clamp(1.2rem, 4vw, 3rem) 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse at center, var(--rose-soft) 0%, transparent 65%);
  opacity: .6;
  pointer-events: none;
  z-index: 0;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero .eyebrow { margin: 0 auto 1.25rem; }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--ink);
  max-width: 780px;
  margin: 0 auto;
}
.page-hero h1 em {
  font-style: italic;
  background: linear-gradient(120deg, var(--rose-deep), var(--moon));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-hero .updated {
  margin-top: 1.25rem;
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.prose {
  max-width: 760px;
  margin: 0 auto;
  padding: 1rem clamp(1.2rem, 4vw, 2rem) 5rem;
  color: var(--ink-soft);
  line-height: 1.75;
  font-size: 1.02rem;
  font-weight: 500;
}
.prose h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.01em;
  margin: 3rem 0 1rem;
  scroll-margin-top: 6rem;
}
.prose h2:first-of-type { margin-top: 1rem; }
.prose h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--ink);
  margin: 2rem 0 .6rem;
}
.prose p { margin: 0 0 1.1rem; }
.prose a {
  color: var(--rose-deep);
  border-bottom: 1px dashed rgba(227,153,144,.55);
  transition: border-color .2s, color .2s;
}
.prose a:hover { color: var(--ink); border-bottom-color: var(--ink); }
.prose ul, .prose ol {
  margin: .3rem 0 1.25rem 1.4rem;
  padding: 0;
}
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: .4rem; }
.prose li::marker { color: var(--rose-deep); }
.prose strong { color: var(--ink); font-weight: 700; }
.prose code {
  font-family: var(--font-mono);
  background: var(--cream-deep);
  padding: .12rem .45rem;
  border-radius: 6px;
  font-size: .88em;
  color: var(--ink);
}
.prose hr {
  border: 0;
  height: 1px;
  background: rgba(42,35,48,.08);
  margin: 2.5rem 0;
}

.tl-dr {
  margin: 0 auto 2.5rem;
  max-width: 760px;
  padding: 1.5rem 1.75rem;
  background: linear-gradient(135deg, var(--moon-soft) 0%, var(--rose-soft) 100%);
  border-radius: var(--r-lg);
  border: 1px solid rgba(244,184,176,.25);
  box-shadow: var(--sh-soft);
}
.tl-dr h4 {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: .85rem;
}
.tl-dr ul { list-style: none; margin: 0; padding: 0; }
.tl-dr li {
  padding: .35rem 0 .35rem 1.75rem;
  position: relative;
  color: var(--ink);
  font-weight: 500;
}
.tl-dr li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: .35rem;
  width: 1.2rem;
  height: 1.2rem;
  background: var(--sage);
  color: var(--paper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 800;
}

.callout {
  margin: 1.75rem 0;
  padding: 1.15rem 1.4rem;
  background: var(--paper);
  border-left: 3px solid var(--rose);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  box-shadow: var(--sh-soft);
}
.callout strong { display: block; margin-bottom: .25rem; color: var(--ink); }
.callout.warn { border-left-color: var(--warn); background: #fff8f0; }
.callout.alert { border-left-color: var(--alert); background: #fff5f4; }

.contact-card {
  margin: 2.5rem auto;
  max-width: 640px;
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--sh-lift);
  text-align: center;
  border: 1px solid rgba(42,35,48,.04);
}
.contact-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--ink);
  margin-bottom: .6rem;
  letter-spacing: -.01em;
}
.contact-card p { color: var(--ink-soft); margin-bottom: 1.25rem; }
.contact-card .email-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.5rem;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: .95rem;
  border: 0;
  transition: transform .25s, background .25s;
}
.contact-card .email-btn:hover {
  background: var(--rose-deep);
  color: var(--cream);
  transform: translateY(-2px);
  border-bottom: 0;
}

.toc {
  max-width: 760px;
  margin: 0 auto 2rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(42,35,48,.06);
  border-radius: var(--r-md);
  backdrop-filter: blur(6px);
}
.toc h4 {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: .6rem;
  font-weight: 500;
}
.toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .35rem .75rem;
  counter-reset: toc;
}
.toc ol li {
  counter-increment: toc;
  margin: 0;
}
.toc ol li a {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  color: var(--ink-soft);
  font-size: .9rem;
  padding: .2rem 0;
  transition: color .2s;
}
.toc ol li a::before {
  content: counter(toc, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: .72rem;
  color: var(--rose-deep);
  font-weight: 600;
  min-width: 1.4rem;
}
.toc ol li a:hover { color: var(--ink); }
@media (max-width: 600px) { .toc ol { grid-template-columns: 1fr; } }

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.75rem;
  font-size: .92rem;
  background: var(--paper);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-soft);
}
.data-table thead {
  background: var(--cream-deep);
}
.data-table th, .data-table td {
  padding: .75rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(42,35,48,.06);
  vertical-align: top;
}
.data-table th {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
}
.data-table tr:last-child td { border-bottom: 0; }
.data-table td strong { color: var(--ink); }
.data-table .pill {
  display: inline-block;
  padding: .15rem .55rem;
  border-radius: var(--r-pill);
  font-size: .72rem;
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.pill.local { background: var(--sage-soft); color: #3d6b58; }
.pill.cloud { background: var(--moon-soft); color: #4a4773; }
.pill.none  { background: var(--cream-deep); color: var(--ink-soft); }
.pill.opt   { background: var(--peach-soft); color: #8a5a1e; }

.page-nav {
  padding: 1.25rem clamp(1.2rem, 4vw, 3rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.page-nav .back {
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: color .25s, transform .25s;
}
.page-nav .back:hover { color: var(--ink); transform: translateX(-3px); }

.steps-inline {
  counter-reset: step;
  margin: 1.5rem 0 2rem;
  padding: 0;
  list-style: none;
}
.steps-inline li {
  counter-increment: step;
  position: relative;
  padding: 1rem 1.25rem 1rem 3.5rem;
  background: var(--paper);
  border-radius: var(--r-md);
  margin-bottom: .75rem;
  box-shadow: var(--sh-soft);
}
.steps-inline li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 1.25rem;
  top: 1rem;
  font-family: var(--font-mono);
  font-size: .8rem;
  color: var(--rose-deep);
  font-weight: 700;
  background: var(--rose-soft);
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.steps-inline li strong { display: block; color: var(--ink); margin-bottom: .2rem; }

/* ================================================================
   MOBILE POLISH — consolidated overrides for phone-sized viewports
   Added 2026-04-23 after reviewing the live site on an S25 Ultra.
   ================================================================ */

/* Horizontal overflow guard — trumps any stray off-screen elements. */
html, body { overflow-x: hidden; }

/* Anchor-scroll offset so jumps don't land under the sticky nav. */
section[id], main[id] { scroll-margin-top: 80px; }

@media (max-width: 820px) {
  /* ---- Nav ---- */
  .nav {
    padding: .75rem 1rem;
    gap: .5rem;
  }
  .nav .brand { font-size: .95rem; }
  .nav .brand .logo svg { width: 32px; height: 32px; }
  .nav-cta { padding: .55rem .9rem; font-size: .85rem; }
  .nav-cta span { letter-spacing: 0; }

  /* ---- Hero ---- */
  .hero { padding: 1.5rem 0 2rem; }
  .hero-inner {
    gap: 1.25rem;
    padding: 0 1.1rem;
  }
  .hero-copy .eyebrow { font-size: .7rem; }
  .hero-copy .display {
    font-size: clamp(2.2rem, 9vw, 3rem);
    line-height: 1.05;
  }
  .hero-copy .sub,
  .hero-copy p {
    font-size: 1rem;
    line-height: 1.55;
  }
  .hero-cta-row,
  .hero-meta-row,
  .cta-row { gap: .7rem; flex-wrap: wrap; }
  .btn-lg { padding: .85rem 1.1rem; font-size: .95rem; }

  .hero-stage {
    min-height: 360px;
    transform: scale(.85);
    transform-origin: top center;
    margin-top: -.5rem;
  }
  .float-chip { font-size: .7rem; padding: .35rem .55rem; }

  .scroll-ind { bottom: .5rem; font-size: .65rem; }

  /* ---- Section titles / copy ---- */
  section h2,
  .section-title {
    font-size: clamp(1.8rem, 6vw, 2.4rem) !important;
    line-height: 1.15;
  }
  section .lead,
  section .section-sub {
    font-size: 1rem;
    line-height: 1.55;
  }

  /* ---- Padding reductions ---- */
  section {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  /* ---- Stats ---- */
  .stats { margin: 0 1rem; grid-template-columns: repeat(2, 1fr); }
  .stat-card { padding: 1.25rem .85rem; }
  .stat-val { font-size: 1.5rem; }

  /* ---- Feature grid ---- */
  .feature-grid { gap: 1rem; }
  .feature { padding: 1.25rem; }
  .feature h3 { font-size: 1.15rem; }
  .feature p { font-size: .95rem; line-height: 1.5; }
  .feature .feature-icon { width: 44px; height: 44px; }

  /* ---- How it works ---- */
  .steps-inline,
  .how-steps {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }
  .how-steps li,
  .steps-inline li { padding: 1rem 1.1rem; }

  /* ---- Pricing cards ---- */
  .plans,
  .pricing-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  .plan { padding: 1.5rem 1.25rem; }
  .plan-price { font-size: 2.3rem; }

  /* ---- FAQ ---- */
  .faq details { padding: 1rem 1.1rem; }
  .faq details summary { font-size: .98rem; padding-right: 2rem; }
  .faq details p { font-size: .95rem; line-height: 1.55; }

  /* ---- Privacy strip ---- */
  .priv-copy p { font-size: .95rem; }

  /* ---- Store badges ---- */
  .store-row { flex-wrap: wrap; gap: .75rem; justify-content: center; }
  .store { min-width: 140px; }

  /* ---- Footer ---- */
  footer,
  .site-footer {
    padding: 2rem 1rem 3rem;
    gap: 1.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 1.5rem;
  }
  .footer-bottom { flex-direction: column; gap: .75rem; text-align: center; }
}

@media (max-width: 480px) {
  /* Tighter at phone-portrait */
  .hero-cta-row,
  .cta-row { flex-direction: column; align-items: stretch; }
  .hero-cta-row .btn,
  .cta-row .btn { width: 100%; justify-content: center; }

  .stats { grid-template-columns: 1fr; }

  .hero-stage { transform: scale(.72); min-height: 300px; }

  .footer-grid { grid-template-columns: 1fr !important; }

  /* Larger tap targets everywhere */
  .btn, .nav-cta, .store { min-height: 44px; }
}

/* Kill any stray horizontal bleed on the IP-camera hero illustration, which
   is the widest element on narrow screens. */
@media (max-width: 820px) {
  .cam-illustration,
  .ip-cam-visual {
    max-width: 100%;
    transform: scale(.9);
    transform-origin: center;
  }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero-copy .display .line > span,
  .hero-copy .display .line > em {
    transform: none; opacity: 1;
  }
}
