/* ============================================================
   Betteryou — brand site v6
   Brand: magenta #BD12AC → violet #8B5CF6 → periwinkle #5B7FEB
   on lavender-white #FAF8FD, ink #1A1624. Editorial. No cards.
   v6: full-viewport hero (ball right of text at every width,
   signal line in the bottom fifth), deeper orb, abstract row
   visuals, body-aware section, team@ + made-with footer.
   ============================================================ */

:root {
  --bg: #FAF8FD;
  --ink: #1A1624;
  --ink-70: #3D3850;
  --ink-50: #6B6780;
  --ink-30: #9996A8;
  --hairline: rgba(26, 22, 36, 0.10);
  --hairline-soft: rgba(26, 22, 36, 0.06);
  --magenta: #BD12AC;
  --violet: #8B5CF6;
  --blue: #5B7FEB;
  --soft: #FCEFFE;
  --grad: linear-gradient(92deg, #BD12AC 0%, #8B5CF6 55%, #5B7FEB 100%);
  --grad-deep: linear-gradient(92deg, #A50F96 0%, #7C4FE0 100%);
  --deep-a: #451496;
  --deep-b: #26094e;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --serif: "Source Serif 4", Georgia, serif;
  --sans: "Instrument Sans", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --wordmark: "Poppins", var(--sans);
  --pad: clamp(22px, 5vw, 64px);
  --measure: 1180px;
  --nav-h: 76px;
  --shadow-panel: 0 1px 2px rgba(26, 22, 36, 0.04), 0 24px 70px -28px rgba(69, 20, 150, 0.28);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: rgba(189, 18, 172, 0.22); color: var(--ink); }
:focus-visible { outline: 2px solid var(--violet); outline-offset: 3px; border-radius: 2px; }

img { max-width: 100%; display: block; }
[hidden] { display: none !important; }

h1, h2, h3, .statement-text, blockquote p {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.005em;
  text-wrap: balance;
}

#approach, #aware, #contact { scroll-margin-top: 96px; }

/* ---------------- Nav ---------------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250, 248, 253, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease);
}
.nav.scrolled { border-bottom-color: var(--hairline-soft); }
.nav-inner {
  max-width: var(--measure); margin: 0 auto;
  padding: 18px var(--pad);
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand-word {
  font-family: var(--wordmark);
  font-weight: 500;
  font-size: 1.28rem;
  letter-spacing: 0.005em;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  color: var(--ink-70); text-decoration: none;
  font-size: 0.88rem; font-weight: 500; letter-spacing: 0.01em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: -7px;
  height: 1.5px; background: var(--grad);
  transition: right 0.3s var(--ease);
}
.nav-links a:not(.nav-cta):hover::after,
.nav-links a.active::after { right: 0; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.nav-cta {
  color: #fff;
  background: var(--grad);
  background-size: 130% 100%;
  padding: 7px 19px; border-radius: 99px;
  font-size: 0.88rem; font-weight: 600;
  transition: background-position 0.3s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.nav-links a.nav-cta:hover {
  background-position: 90% 0%;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -10px rgba(139, 92, 246, 0.6);
}
.nav-burger { display: none; }
.nav-scrim { display: none; }
.nav-scrim.show {
  display: block;
  position: fixed; inset: 0; z-index: 55;
  background: rgba(26, 22, 36, 0.28);
}

.nav.over-dark { background: rgba(38, 9, 78, 0.55); }
.nav.over-dark .nav-links a:not(.nav-cta) { color: rgba(247, 243, 254, 0.85); }
.nav.over-dark .nav-links a:not(.nav-cta):hover { color: #fff; }
.nav.over-dark .brand-word {
  background: linear-gradient(92deg, #F09BE6 0%, #C9B4FA 55%, #AFC3FF 100%);
  -webkit-background-clip: text; background-clip: text;
}

/* ---------------- Buttons & chips ---------------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; font-weight: 600; font-size: 0.92rem;
  letter-spacing: 0.005em;
  padding: 10px 24px; border-radius: 99px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background-position 0.3s var(--ease), border-color 0.25s;
}
.btn:active { transform: scale(0.985); }
.btn-primary {
  color: #fff;
  background: var(--grad);
  background-size: 130% 100%;
  background-position: 0% 0%;
  box-shadow: 0 10px 30px -12px rgba(139, 92, 246, 0.55);
}
.btn-primary:hover {
  background-position: 90% 0%;
  transform: translateY(-1px);
  box-shadow: 0 14px 36px -12px rgba(139, 92, 246, 0.65);
}
.btn-quiet { color: var(--ink); border: 1px solid var(--hairline); background: transparent; padding-top: 9px; padding-bottom: 9px; }
.btn-quiet:hover { border-color: var(--ink-30); }
.btn-arrow { font-weight: 400; transform: translateY(-0.5px); transition: transform 0.25s var(--ease); }
.btn-quiet:hover .btn-arrow { transform: translateX(3px); }

/* ---------------- Type helpers ---------------- */
.eyebrow {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-50);
  margin-bottom: 20px;
}
.section-head { max-width: var(--measure); margin: 0 auto; padding: 0 var(--pad); }
.section-head h2 {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  line-height: 1.08;
  color: var(--ink);
}

/* ---------------- Hero — full viewport, line in the bottom fifth ---------------- */
.hero {
  position: relative;
  height: calc(100svh - var(--nav-h));
  min-height: 540px;
  overflow: hidden;
}
.hero-inner {
  height: 100%;
  max-width: var(--measure);
  margin: 0 auto;
  padding: 0 var(--pad);
  /* reserve the bottom fifth for the signal line */
  padding-bottom: clamp(120px, 19svh, 210px);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  align-items: center;
  gap: clamp(16px, 4vw, 60px);
}
.hero-kicker {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-50);
  margin-bottom: clamp(14px, 2.4svh, 26px);
}
.hero h1 {
  font-size: clamp(2.2rem, 4.9vw, 4.9rem);
  line-height: 1.03;
  margin-bottom: clamp(16px, 2.8svh, 30px);
  max-width: 16.5ch;
}
.hero-sub {
  font-size: clamp(0.98rem, 1.15vw, 1.12rem);
  line-height: 1.62;
  color: var(--ink-70);
  max-width: 480px;
  margin-bottom: clamp(10px, 1.6svh, 16px);
}
.hero-tag {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  background: var(--grad-deep);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  width: fit-content;
  margin-bottom: clamp(20px, 3.6svh, 40px);
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* The dot — always to the right of the text, scales with viewport */
.hero-orb-wrap { display: grid; place-items: center; position: relative; z-index: 2; }
.orb {
  position: relative;
  width: clamp(120px, min(21vw, 30svh), 290px);
  aspect-ratio: 1;
  will-change: transform;
}
.orb-core {
  position: absolute; inset: 0; border-radius: 50%;
  /* all shading lives in gradients so it scales perfectly at any size */
  background:
    radial-gradient(46% 38% at 34% 26%, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0) 68%),
    radial-gradient(130% 130% at 32% 26%, rgba(38, 9, 78, 0) 52%, rgba(38, 9, 78, 0.30) 78%, rgba(26, 5, 54, 0.48) 96%),
    radial-gradient(88% 88% at 38% 32%, #E4BCF7 0%, #B36AEC 36%, #8B5CF6 62%, #5B7FEB 88%, #4A63C8 100%);
  box-shadow: 0 0 90px 22px rgba(168, 85, 232, 0.26);
  animation: orb-breathe 5.2s ease-in-out infinite;
}
.orb-sheen {
  position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(26% 18% at 32% 22%, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0) 100%);
  mix-blend-mode: screen;
  animation: orb-breathe 5.2s ease-in-out infinite;
}
.orb-halo {
  position: absolute; inset: -28%;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(168, 85, 232, 0.28), rgba(168, 85, 232, 0) 70%);
  filter: blur(4px);
  animation: orb-breathe 5.2s ease-in-out infinite;
}
@keyframes orb-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* the watch's companion orb — same breathing as the phone's */
.vw-orb {
  transform-box: fill-box;
  transform-origin: center;
  animation: orb-breathe 5.2s ease-in-out infinite;
}

/* Signal line — pinned to the bottom fifth of the viewport */
.hero-wave {
  position: absolute; left: 0; right: 0;
  bottom: clamp(44px, 8.5svh, 104px);
  height: 120px;
  z-index: 1;
  pointer-events: none;
}
.hero-wave canvas { width: 100%; height: 100%; display: block; }

.scroll-cue {
  position: absolute;
  left: var(--pad); bottom: 18px;
  width: 1px; height: 34px;
  background: linear-gradient(180deg, transparent, var(--ink-30));
  animation: cue-drift 2.2s ease-in-out infinite;
}
@keyframes cue-drift {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(7px); opacity: 0.55; }
}

/* ---------------- Approach — rows with abstract visuals ---------------- */
.approach { padding: clamp(90px, 12vh, 150px) 0 clamp(70px, 9vh, 120px); }
.approach-head { margin-bottom: clamp(24px, 4.5vh, 48px); }
.rows { max-width: var(--measure); margin: 0 auto; padding: 0 var(--pad); }
.row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr) minmax(0, 0.62fr);
  gap: clamp(20px, 3.5vw, 64px);
  padding: clamp(40px, 5.5vh, 62px) 0;
  border-top: 1px solid var(--hairline-soft);
  align-items: center;
}
.row-head { display: flex; gap: clamp(18px, 3vw, 42px); align-items: baseline; }
.row-num { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; color: var(--magenta); }
.row h3 {
  font-size: clamp(1.65rem, 2.7vw, 2.25rem);
  line-height: 1.12;
}
.row-body { display: flex; align-items: center; }
.row-body p { color: var(--ink-70); font-size: 1rem; max-width: 480px; }
.row-visual { display: grid; place-items: center; }
.row-visual svg { width: min(100%, 220px); }
.row-visual .vis-map {
  width: min(100%, 268px);
  transform: scale(1.25);
  transform-origin: center;
}

/* 01 — an in-brand wearable, pulsing, signal flowing out */
.vw-dot { animation: by-pulse 2.4s ease-in-out infinite; }
.vw-ring {
  transform-box: fill-box;
  transform-origin: center;
  animation: vw-ring 2.4s ease-out infinite;
}
@keyframes vw-ring {
  0% { transform: scale(0.5); opacity: 0.9; }
  70%, 100% { transform: scale(1.35); opacity: 0; }
}
@keyframes by-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.45; } }
.vw-sig {
  stroke-dasharray: 3 6;
  animation: sig-flow 1.4s linear infinite;
}
@keyframes sig-flow { to { stroke-dashoffset: -9; } }

/* 02 — turns arriving inside a phone, the companion top-left */
.vis-phone {
  background: var(--ink);
  border-radius: 21px;
  padding: 5px;
  width: 118px;
  box-shadow: 0 2px 4px rgba(26, 22, 36, 0.12), 0 22px 50px -22px rgba(26, 22, 36, 0.4);
}
.vp-screen {
  background: var(--bg);
  border-radius: 16px;
  min-height: 212px;
  padding: 14px 9px 16px;
  display: flex; flex-direction: column; gap: 8px;
  align-items: stretch;
}
.vp-orb {
  width: 26px; height: 26px; border-radius: 50%;
  flex-shrink: 0;
  align-self: flex-start;
  margin: 0 0 4px 2px;
  background:
    radial-gradient(46% 38% at 34% 26%, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0) 68%),
    radial-gradient(130% 130% at 32% 26%, rgba(38, 9, 78, 0) 52%, rgba(38, 9, 78, 0.28) 80%, rgba(26, 5, 54, 0.45) 98%),
    radial-gradient(88% 88% at 38% 32%, #E4BCF7 0%, #B36AEC 40%, #A21AB6 78%, #BD12AC 100%);
  box-shadow: 0 0 16px 3px rgba(189, 18, 172, 0.25);
  animation: orb-breathe 5.2s ease-in-out infinite;
}
.vp-b {
  display: block;
  height: 20px;
  border-radius: 11px;
  opacity: 0;
}
.vp-ai {
  align-self: flex-start; width: 74%;
  background: var(--soft);
  border: 1px solid rgba(189, 18, 172, 0.12);
  border-bottom-left-radius: 4px;
}
.vp-me {
  align-self: flex-end; width: 60%;
  background: #fff;
  border: 1px solid var(--hairline-soft);
  border-bottom-right-radius: 4px;
}

/* Turn cycle: bubbles arrive one after the other, hold, clear together */
.t1, .t2, .t3, .t4 { animation-duration: 9s; animation-timing-function: ease-in-out; animation-iteration-count: infinite; }
.t1 { animation-name: turn-1; }
.t2 { animation-name: turn-2; }
.t3 { animation-name: turn-3; }
.t4 { animation-name: turn-4; }
@keyframes turn-1 {
  0% { opacity: 0; transform: translateY(9px) scale(0.97); }
  4%, 86% { opacity: 1; transform: none; }
  93%, 100% { opacity: 0; transform: translateY(-4px); }
}
@keyframes turn-2 {
  0%, 14% { opacity: 0; transform: translateY(9px) scale(0.97); }
  18%, 86% { opacity: 1; transform: none; }
  93%, 100% { opacity: 0; transform: translateY(-4px); }
}
@keyframes turn-3 {
  0%, 28% { opacity: 0; transform: translateY(9px) scale(0.97); }
  32%, 86% { opacity: 1; transform: none; }
  93%, 100% { opacity: 0; transform: translateY(-4px); }
}
@keyframes turn-4 {
  0%, 42% { opacity: 0; transform: translateY(9px) scale(0.97); }
  46%, 86% { opacity: 1; transform: none; }
  93%, 100% { opacity: 0; transform: translateY(-4px); }
}

/* 03 — the map, forming: moment → link → moment, then clears as one */
.vn {
  transform-box: fill-box;
  transform-origin: center;
  opacity: 0;
  animation-duration: 7s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.ve {
  stroke-dasharray: 70;
  stroke-dashoffset: 70;
  opacity: 0;
  animation-duration: 7s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.n1 { animation-name: map-n1; } .n2 { animation-name: map-n2; } .n3 { animation-name: map-n3; }
.n4 { animation-name: map-n4; } .n5 { animation-name: map-n5; } .n6 { animation-name: map-n6; }
.e1 { animation-name: map-e1; } .e2 { animation-name: map-e2; } .e3 { animation-name: map-e3; }
.e4 { animation-name: map-e4; } .e5 { animation-name: map-e5; }

@keyframes map-n1 { 0%, 2% { opacity: 0; transform: scale(0); } 6%, 86% { opacity: 1; transform: scale(1); } 93%, 100% { opacity: 0; transform: scale(0.6); } }
@keyframes map-e1 { 0%, 9% { stroke-dashoffset: 70; opacity: 0; } 10% { opacity: 1; } 17%, 86% { stroke-dashoffset: 0; opacity: 1; } 93%, 100% { opacity: 0; stroke-dashoffset: 0; } }
@keyframes map-n2 { 0%, 15% { opacity: 0; transform: scale(0); } 19%, 86% { opacity: 1; transform: scale(1); } 93%, 100% { opacity: 0; transform: scale(0.6); } }
@keyframes map-e2 { 0%, 22% { stroke-dashoffset: 70; opacity: 0; } 23% { opacity: 1; } 30%, 86% { stroke-dashoffset: 0; opacity: 1; } 93%, 100% { opacity: 0; stroke-dashoffset: 0; } }
@keyframes map-n3 { 0%, 28% { opacity: 0; transform: scale(0); } 32%, 86% { opacity: 1; transform: scale(1); } 93%, 100% { opacity: 0; transform: scale(0.6); } }
@keyframes map-e3 { 0%, 34% { stroke-dashoffset: 70; opacity: 0; } 35% { opacity: 1; } 42%, 86% { stroke-dashoffset: 0; opacity: 1; } 93%, 100% { opacity: 0; stroke-dashoffset: 0; } }
@keyframes map-n4 { 0%, 40% { opacity: 0; transform: scale(0); } 44%, 86% { opacity: 1; transform: scale(1); } 93%, 100% { opacity: 0; transform: scale(0.6); } }
@keyframes map-e4 { 0%, 46% { stroke-dashoffset: 70; opacity: 0; } 47% { opacity: 1; } 54%, 86% { stroke-dashoffset: 0; opacity: 1; } 93%, 100% { opacity: 0; stroke-dashoffset: 0; } }
@keyframes map-n5 { 0%, 52% { opacity: 0; transform: scale(0); } 56%, 86% { opacity: 1; transform: scale(1); } 93%, 100% { opacity: 0; transform: scale(0.6); } }
@keyframes map-e5 { 0%, 58% { stroke-dashoffset: 70; opacity: 0; } 59% { opacity: 1; } 66%, 86% { stroke-dashoffset: 0; opacity: 1; } 93%, 100% { opacity: 0; stroke-dashoffset: 0; } }
@keyframes map-n6 { 0%, 64% { opacity: 0; transform: scale(0); } 68%, 86% { opacity: 1; transform: scale(1); } 93%, 100% { opacity: 0; transform: scale(0.6); } }

.vmap-ring {
  transform-box: fill-box;
  transform-origin: center;
  opacity: 0;
  animation: map-ring 7s ease-out infinite;
}
@keyframes map-ring {
  0%, 70% { opacity: 0; transform: scale(0.5); }
  74% { opacity: 0.9; }
  84%, 100% { opacity: 0; transform: scale(1.35); }
}

/* ---------------- Statement ---------------- */
.statement {
  position: relative;
  margin-top: clamp(20px, 4vh, 50px);
  min-height: 62vh;
  display: grid; place-content: center;
  padding: clamp(120px, 16vh, 190px) var(--pad);
  background:
    radial-gradient(90% 130% at 85% -10%, rgba(189, 18, 172, 0.35), rgba(189, 18, 172, 0) 55%),
    radial-gradient(80% 120% at 10% 110%, rgba(91, 127, 235, 0.28), rgba(91, 127, 235, 0) 55%),
    linear-gradient(175deg, var(--deep-a), var(--deep-b));
  text-align: center;
  overflow: hidden;
}
.statement-wave {
  position: absolute; left: 0; right: 0; top: clamp(30px, 7vh, 80px);
  height: 120px; opacity: 0.75;
}
.statement-wave canvas { width: 100%; height: 100%; display: block; }
.statement-inner { max-width: 880px; margin: 0 auto; position: relative; pointer-events: none; }
.statement-text {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 1.04;
  color: #F7F3FE;
  margin-bottom: 28px;
}
.statement-sub {
  color: rgba(247, 243, 254, 0.72);
  font-size: 1.08rem; line-height: 1.7;
  max-width: 580px; margin: 0 auto;
  text-wrap: balance;
}

/* ---------------- Body-aware AI — compact, beside the heading ---------------- */
.aware { padding: clamp(90px, 12vh, 150px) 0 clamp(90px, 12vh, 150px); }
.aware-inner {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
}
.aware-head h2 {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  line-height: 1.08;
}
.aware-sub {
  margin-top: 16px;
  color: var(--ink-50);
  font-size: 0.98rem;
  max-width: 380px;
}
.aware-scene {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.aw-wear {
  width: clamp(150px, 18vw, 210px);
  margin-right: -34px;   /* the signal runs under the phone frame */
  flex-shrink: 0;
  /* the signal line sits at the svg's vertical center; the watch is
     flex-centered on the phone, and the response bubble is anchored to
     the phone's center too — so line and bubble always meet, at any size */
}
.aw-phone {
  background: var(--ink);
  border-radius: 26px;
  padding: 6px;
  width: clamp(140px, 15vw, 172px);
  aspect-ratio: 9 / 18.4;
  box-shadow: 0 2px 4px rgba(26, 22, 36, 0.12), 0 28px 70px -26px rgba(26, 22, 36, 0.4);
  position: relative;
  z-index: 1;
}
/* same internal layout as the approach phone: top-anchored, orb top-left */
.aw-screen {
  background: var(--bg);
  border-radius: 21px;
  height: 100%;
  padding: 16px 11px;
  position: relative;
}
/* the stack fills from the top exactly down to the response bubble:
   equal-height bubbles, even spacing */
.aw-stack {
  position: absolute;
  top: 16px; left: 11px; right: 11px;
  bottom: calc(50% + 25px);   /* response top edge + one gap */
  display: flex; flex-direction: column; gap: 8px;
}
.aw-stack .awb { flex: 1; height: auto; min-height: 18px; }
.aw-orb {
  width: 28px; height: 28px; border-radius: 50%;
  flex-shrink: 0;   /* never squish into an ellipse when the stack is tight */
  align-self: flex-start;
  margin: 0 0 5px 2px;
  background:
    radial-gradient(46% 38% at 34% 26%, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0) 68%),
    radial-gradient(130% 130% at 32% 26%, rgba(38, 9, 78, 0) 52%, rgba(38, 9, 78, 0.28) 80%, rgba(26, 5, 54, 0.45) 98%),
    radial-gradient(88% 88% at 38% 32%, #E4BCF7 0%, #B36AEC 40%, #A21AB6 78%, #BD12AC 100%);
  box-shadow: 0 0 18px 3px rgba(189, 18, 172, 0.25);
  animation: orb-breathe 5.2s ease-in-out infinite;
}
.awb {
  display: block;
  height: 20px;
  border-radius: 11px;
  opacity: 0;
}
.aw-me {
  align-self: flex-end;
  background: #fff;
  border: 1px solid var(--hairline-soft);
  border-bottom-right-radius: 4px;
}
.aw-ai {
  align-self: flex-start;
  background: var(--soft);
  border: 1px solid rgba(189, 18, 172, 0.12);
  border-bottom-left-radius: 4px;
}
.awb.w60 { width: 60%; }
.awb.w75 { width: 75%; }
.awb.w45 { width: 45%; }
/* the response bubble carries the body's line onward — anchored to the
   phone's vertical center, where the wearable's line enters */
.aw-response {
  position: absolute;
  left: 11px;
  top: 50%;
  margin-top: -17px;   /* half the bubble height: line inside = incoming line */
  width: 72%;
  border-radius: 12px;
  border-bottom-left-radius: 4px;
  padding: 8px 11px;
  background: var(--soft);
  border: 1px solid rgba(189, 18, 172, 0.12);
  opacity: 0;
}
.aw-response svg { width: 58px; height: 16px; display: block; }

.product-caption {
  max-width: 46ch;
  margin: clamp(50px, 7vh, 70px) auto 0;
  padding: 0 var(--pad);
  font-family: var(--serif); font-style: italic;
  font-size: 1.18rem; color: var(--ink-50);
  text-align: center;
  text-wrap: balance;
}
.product-caption em { color: var(--ink-70); }

.demo-play {
  position: absolute; inset: 0; margin: auto;
  width: 84px; height: 84px; border-radius: 50%;
  border: none; cursor: pointer;
  background: rgba(250, 248, 253, 0.94);
  color: var(--ink);
  display: grid; place-items: center;
  box-shadow: 0 18px 50px -12px rgba(26, 22, 36, 0.45);
  transition: transform 0.25s var(--ease);
}
.demo-play:hover { transform: scale(1.06); }
.demo-play svg { width: 34px; height: 34px; margin-left: 3px; }
.aware-scene video { width: 100%; display: block; grid-column: 1 / -1; border-radius: 18px; }

/* ---------------- Seam — an organic brand wave, crisp, easing into the page ---------------- */
.seam {
  position: relative;
  height: 68px;
  overflow: hidden;
}
.seam-wave {
  display: block;
  width: 200%;              /* two periods; sliding one period loops seamlessly */
  height: 100%;
  animation: seam-slide 16s linear infinite;
}
@keyframes seam-slide { to { transform: translateX(-50%); } }
/* fade only where the wave meets the page — the band itself stays crisp */
.seam::before, .seam::after {
  content: "";
  position: absolute; left: 0; right: 0;
  height: 18px;
  pointer-events: none;
}
.seam::before { top: 0; background: linear-gradient(180deg, var(--bg), rgba(250, 248, 253, 0)); }
.seam::after { bottom: 0; background: linear-gradient(0deg, var(--bg), rgba(250, 248, 253, 0)); }

/* ---------------- Quote ---------------- */
.quote {
  padding: clamp(90px, 12vh, 150px) var(--pad);
  background: radial-gradient(60% 80% at 50% 45%, rgba(139, 92, 246, 0.07), rgba(139, 92, 246, 0) 70%);
}
.quote blockquote { max-width: 940px; margin: 0 auto; text-align: center; }
.quote p {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.18;
  color: var(--ink);
}
.quote cite {
  display: block; margin-top: 30px;
  font-style: normal; font-family: var(--sans);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-30);
}
.quote cite::before {
  content: "";
  display: block;
  width: 44px; height: 1.5px;
  background: var(--grad);
  margin: 0 auto 18px;
}

/* ---------------- Join ---------------- */
.join { padding: clamp(20px, 4vh, 50px) 0 clamp(100px, 14vh, 170px); }
.join-lede { margin-top: 18px; color: var(--ink-70); font-size: 1.05rem; }
.join-paths {
  max-width: var(--measure);
  margin: clamp(44px, 6vh, 64px) auto 0;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: stretch;
}
.join-sep { background: var(--hairline-soft); height: 100%; min-height: 180px; }
/* both CTAs land on the same baseline regardless of copy length */
.join-path { display: flex; flex-direction: column; align-items: flex-start; }
.join-path .btn { margin-top: auto; }
.join-path h3 { font-size: 1.7rem; margin-bottom: 12px; }
.join-path p { color: var(--ink-70); max-width: 400px; margin-bottom: 28px; }
.join-note {
  max-width: var(--measure);
  margin: clamp(56px, 8vh, 80px) auto 0;
  padding: 0 var(--pad);
  font-size: 0.95rem; color: var(--ink-50);
}
.join-note a { color: var(--magenta); text-decoration: none; border-bottom: 1px solid rgba(189, 18, 172, 0.3); }
.join-note a:hover { border-bottom-color: var(--magenta); }

/* ---------------- Footer ---------------- */
.footer { border-top: 1px solid var(--hairline-soft); padding: 74px var(--pad) 52px; }
.footer-inner { max-width: var(--measure); margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.footer .brand { align-self: flex-start; }
.footer .brand-word { font-size: 1.12rem; }
.footer-line { color: var(--ink-50); font-size: 0.92rem; }
/* plain inline text so the sentence wraps naturally on narrow screens */
.footer-made { color: var(--ink-50); font-size: 0.92rem; }
.heart {
  width: 14px; height: 14px;
  color: var(--magenta);
  display: inline-block;
  vertical-align: -2px;
  margin: 0 1px;
  animation: heart-beat 2.6s ease-in-out infinite;
}
@keyframes heart-beat {
  0%, 100% { transform: scale(1); }
  6% { transform: scale(1.18); }
  12% { transform: scale(1); }
  18% { transform: scale(1.12); }
  24% { transform: scale(1); }
}
.footer-meta { display: flex; gap: 26px; flex-wrap: wrap; font-size: 0.85rem; color: var(--ink-50); margin-top: 14px; }
.footer-meta a { color: var(--ink-50); text-decoration: none; }
.footer-meta a:hover { color: var(--ink); }

/* ---------------- Reveal ---------------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.18s; }
.reveal.d3 { transition-delay: 0.25s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .orb-core, .orb-halo, .orb-sheen, .scroll-cue, .vp-orb, .aw-orb,
  .vw-dot, .vw-ring, .vw-sig, .vmap-ring, .heart { animation: none; }
  .vp-b, .awb, .aw-response, .vn { animation: none; opacity: 1; transform: none; }
  .ve { animation: none; opacity: 1; stroke-dashoffset: 0; }
  .seam-wave { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------------- Responsive ---------------- */
@media (max-width: 960px) {
  .row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.55fr);
    grid-template-areas: "head visual" "body visual";
    row-gap: 14px;
  }
  .row-head { grid-area: head; }
  .row-body { grid-area: body; }
  .row-visual { grid-area: visual; }
  .join-paths { grid-template-columns: 1fr; }
  .join-sep { width: 100%; height: 1px; min-height: 0; }
  .scroll-cue { display: none; }
  .aware-inner { grid-template-columns: 1fr; }
  .aware-scene { justify-content: flex-start; }
}
@media (max-width: 720px) {
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--hairline-soft);
    flex-direction: column; align-items: flex-start;
    padding: 26px var(--pad) 30px; gap: 22px;
    z-index: 2;
  }
  .nav-links.open { display: flex; box-shadow: 0 24px 40px -28px rgba(26, 22, 36, 0.35); }
  .nav.over-dark .nav-links { background: var(--deep-b); }
  .nav-burger {
    display: flex; flex-direction: column; gap: 6px;
    background: none; border: none; cursor: pointer; padding: 6px;
  }
  .nav-burger span { width: 22px; height: 1.6px; background: var(--ink); transition: transform 0.25s var(--ease), opacity 0.25s; }
  .nav.over-dark .nav-burger span { background: #F7F3FE; }
  .nav-burger[aria-expanded="true"] span:first-child { transform: translateY(3.8px) rotate(45deg); }
  .nav-burger[aria-expanded="true"] span:last-child { transform: translateY(-3.8px) rotate(-45deg); }
  .desktop-br { display: none; }

  /* hero: ball rides beside the headline; the rest takes the full width */
  .hero { min-height: 500px; }
  .hero-copy { display: contents; }
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, auto);
    grid-template-areas:
      "kicker kicker"
      "h1     orb"
      "sub    sub"
      "tag    tag"
      "actions actions";
    align-content: center;
    align-items: center;
    gap: 0 14px;
    padding-bottom: clamp(150px, 24svh, 220px);
  }
  .hero-kicker { grid-area: kicker; }
  .hero h1 { grid-area: h1; font-size: clamp(1.9rem, 7.6vw, 2.7rem); margin-bottom: 0; }
  .hero-orb-wrap { grid-area: orb; align-self: center; justify-self: end; }
  .hero-sub { grid-area: sub; max-width: none; font-size: 0.95rem; margin: 22px 0 14px; }
  .hero-tag { grid-area: tag; margin-bottom: 30px; }
  .hero-actions { grid-area: actions; flex-wrap: nowrap; }
  .hero-wave { bottom: 26px; }
  .hero-actions .btn {
    padding: 9px clamp(12px, 4vw, 20px);
    font-size: clamp(0.76rem, 3.4vw, 0.88rem);
    white-space: nowrap;
  }
  .orb { width: clamp(88px, 26vw, 150px); }

  .row { grid-template-columns: 1fr; grid-template-areas: "head" "visual" "body"; }
  /* one shared axis: watch, phone and map centered above their copy */
  .row-visual { justify-items: center; }
  .row-visual svg, .vis-phone { margin: 4px 0; }

  .aw-wear { width: clamp(120px, 34vw, 160px); margin-right: -26px; }

  .demo-play { width: 64px; height: 64px; }
  .demo-play svg { width: 26px; height: 26px; }
  .statement { min-height: 52vh; }
  /* more air between the line and "The body often knows first." */
  .statement-wave { top: 8px; }
  .engine-stats { gap: 18px; }
}
