/* ==========================================================================
   VURR — landing page  ·  faithful rebuild of the XD prototype
   Type:  Panama Monospace Bold (display) · Fragment Mono (labels/quotes/subheads)
          Work Sans (body)
   ========================================================================== */

/* ----------  Fonts  ---------- */
@font-face {
  font-family: 'Panama Monospace';
  src:
    url('fonts/PanamaMonospace-Bold.woff2') format('woff2'),
    url('fonts/PanamaMonospace-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fragment Mono';
  src: url('fonts/FragmentMono-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fragment Mono';
  src: url('fonts/FragmentMono-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Work Sans';
  src: url('fonts/WorkSans-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Work Sans';
  src: url('fonts/WorkSans-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Work Sans';
  src: url('fonts/WorkSans-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Work Sans';
  src: url('fonts/WorkSans-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ----------  Tokens  ---------- */
:root {
  --paper: #f6f5f1;
  --gray1: #eae9e5;
  --gray2: #bbbab3;
  --gray4: #8a867d;
  --beige: #e6e1c5;
  --yellow: #f2f6d0;
  --lila: #a9affa;
  --violet: #6f79f7;
  --ink: #2a2b33;
  --black: #17181d;
  --white: #fff;
  --rule: rgba(42, 43, 51, 0.22); /* hairline rules */
  --rule-strong: rgba(42, 43, 51, 0.5);
  --font-display: 'Panama Monospace', 'Courier New', monospace;
  --font-mono: 'Fragment Mono', ui-monospace, monospace;
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: 2300px;
  --gutter: clamp(1.1rem, 4vw, 3rem);
  --section-y: clamp(5rem, 10vw, 10rem);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
  background: none;
  border: none;
}
ul {
  list-style: none;
  padding: 0;
}

/* ----------  Logo (mask-based, recolors via `color`)  ---------- */
.wm {
  background: currentColor;
  -webkit-mask: url('assets/logo/wordmark.svg') no-repeat center/contain;
  mask: url('assets/logo/wordmark.svg') no-repeat center/contain;
  aspect-ratio: 2200/486;
  display: block;
}
.sym {
  background: currentColor;
  -webkit-mask: url('assets/logo/symbol.svg') no-repeat center/contain;
  mask: url('assets/logo/symbol.svg') no-repeat center/contain;
  aspect-ratio: 1/1;
  display: block;
}

/* ----------  Type helpers  ---------- */
h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
}
.display {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.02;
}
.eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  color: var(--ink);
}
.eyebrow.dim {
  color: var(--gray4);
}
.lead {
  font-family: var(--font-mono);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.55;
}
.mono {
  font-family: var(--font-mono);
}
h1 {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
}
h2 {
  font-size: clamp(1.9rem, 4.2vw, 3.4rem);
}
h3 {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
}

/* ----------  Layout  ---------- */
.container {
  width: min(calc(100% - 2 * max(20px, 7.3vw)), var(--container));
  margin-inline: auto;
  padding-inline: 0;
}
.section {
  padding-block: var(--section-y);
}
.eyebrow-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.3rem;
}
.eyebrow-row::before {
  content: '—';
  color: var(--gray4);
}

/* ----------  Buttons (DOWNLOAD APP pill = lila)  ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.76rem;
  padding: 0.85rem 1.4rem;
  border-radius: 100px;
  transition:
    transform 0.25s var(--ease),
    background 0.25s var(--ease),
    color 0.25s var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn .arr {
  transition: transform 0.25s var(--ease);
}
.btn:hover .arr {
  transform: translateX(4px);
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-lila {
  background: var(--lila);
  color: var(--ink);
}
.btn-lila:hover {
  background: var(--violet);
  color: var(--white);
}
.btn-ink {
  background: var(--ink);
  color: var(--paper);
}
.btn-paper {
  background: var(--paper);
  color: var(--ink);
}

/* ==========================================================================
   NAV  (floating lila pill — VURR wordmark + DOWNLOAD APP)
   ========================================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  padding: clamp(0.6rem, 1.1vw, 0.95rem) max(20px, 7.3vw);
  transition: padding 0.3s var(--ease);
}
.nav__pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: color-mix(in srgb, var(--lila) 85%, transparent);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--ink);
  border-radius: 100px;
  padding: 0.5rem 1rem 0.5rem 1.25rem;
  box-shadow: 0 14px 32px -18px rgba(42, 43, 51, 0.5);
}
.nav__logo {
  display: flex;
  align-items: center;
  color: var(--ink);
}
.nav__logo .wm {
  height: 15px;
  width: auto;
  color: var(--ink);
}
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  color: var(--ink);
  padding: 0.45rem 0.5rem 0.45rem 0.9rem;
  transition: color 0.2s var(--ease);
}
.nav__cta .arr {
  transition: transform 0.25s var(--ease);
}
.nav__cta:hover {
  color: var(--violet);
}
.nav__cta:hover .arr {
  transform: translateX(4px);
}
@media (max-width: 560px) {
  .nav__cta {
    font-size: 0.68rem;
    letter-spacing: 0.05em;
  }
  .nav__logo .wm {
    height: 15px;
  }
  .nav__pill {
    padding: 0.65rem 0.7rem 0.65rem 1.25rem;
  }
}

/* ==========================================================================
   HERO  (single full-bleed photo, content lower-left)
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--paper);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('assets/site/hero.jpg') center 14% / cover no-repeat;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to top,
      rgba(15, 16, 20, 0.5),
      rgba(15, 16, 20, 0.1) 55%,
      rgba(15, 16, 20, 0.2)
    ),
    linear-gradient(to right, rgba(15, 16, 20, 0.6), rgba(15, 16, 20, 0) 58%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 2 * max(20px, 7.3vw)), var(--container));
  margin-inline: auto;
  padding-top: 6rem;
  padding-bottom: clamp(3rem, 8vh, 6rem);
}
.hero__content {
  max-width: 760px;
}
.hero h1 {
  font-size: clamp(2.8rem, 4.4vw, 5.2rem);
  line-height: 1.04;
}
.hero__card {
  margin-top: 1.6rem;
  max-width: 660px;
  background: color-mix(in srgb, var(--paper) 95%, transparent);
  color: var(--ink);
  border-radius: 10px;
  padding: 1.4rem 1.7rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-end;
  justify-content: space-between;
}
.hero__card p {
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 46ch;
}
.hero__card .arr {
  font-family: var(--font-mono);
  color: var(--ink);
  flex: none;
}

/* ==========================================================================
   SUB-HERO  (text + phone)
   ========================================================================== */
.subhero {
  position: relative;
  background: var(--paper);
  overflow: hidden;
}
.subhero .container {
  position: relative;
  z-index: 2;
}
.subhero__copy {
  max-width: 780px;
}
.subhero__copy h2 {
  margin: 1.1rem 0 1.4rem;
}
.subhero__copy p {
  max-width: 64ch;
  margin-bottom: 1.8rem;
}
.subhero__device {
  position: absolute;
  right: 0;
  top: clamp(5rem, 12vh, 9rem);
  width: clamp(290px, 27vw, 440px);
  height: auto;
  z-index: 1;
}
@media (max-width: 1024px) {
  .subhero__device {
    position: static;
    width: min(70vw, 340px);
    margin: 2rem 0 0 auto;
    margin-right: calc(-1 * var(--gutter));
  }
}

/* ==========================================================================
   BANDS  (full-bleed photo + centered statement)
   ========================================================================== */
.band {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  color: var(--paper);
  overflow: hidden;
  text-align: center;
}
.band__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.band__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(rgba(15, 16, 20, 0.18), rgba(15, 16, 20, 0.42));
}
.band__inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.band h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.7rem);
  letter-spacing: 0.01em;
}
.band .sep {
  color: var(--gray2);
  margin: 0 0.3em;
}

/* ==========================================================================
   THE PROBLEM  (headline left · numbered loop right)
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
}
.problem .split,
.people .split,
.notfor .split,
.faq .split {
  min-height: clamp(420px, 34vw, 640px);
}
.problem .split > :nth-child(2),
.people .split > .acc,
.notfor .split > .acc,
.faq .split > .acc {
  align-self: center;
}
@media (max-width: 880px) {
  .split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .problem .split,
  .people .split,
  .notfor .split,
  .faq .split {
    min-height: auto;
  }
  .problem .split > :nth-child(2),
  .people .split > .acc,
  .notfor .split > .acc,
  .faq .split > .acc {
    align-self: start;
  }
}
.problem h2 {
  margin-top: 0.4rem;
  font-size: clamp(1.85rem, 2.95vw, 3.15rem);
}
.problem__sub {
  font-family: var(--font-body);
  color: var(--ink);
  margin-top: 1.6rem;
  max-width: 34ch;
  font-size: 1.05rem;
}
.loop {
  border-top: 1px solid var(--rule);
}
.loop__row {
  display: grid;
  grid-template-columns: clamp(74px, 7vw, 108px) 1fr;
  gap: 1.5rem;
  padding: 2.1rem 0;
  border-bottom: 1px solid var(--rule);
  align-items: center;
}
.loop__num {
  font-family: var(--font-mono);
  color: var(--ink);
  font-size: clamp(1.8rem, 2.6vw, 2.7rem);
  line-height: 1;
}
.loop__txt {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--ink);
}
.problem__gap {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  letter-spacing: -0.01em;
  margin-top: 1.6rem;
  display: flex;
  gap: 0.5em;
}
.problem__gap::before {
  content: '—';
}

/* ==========================================================================
   DIFFERENT LIVES  (centered collage)
   ========================================================================== */
.dl {
  background: var(--paper);
  text-align: center;
}
.dl .container {
  position: relative;
  min-height: clamp(740px, 74vw, 1480px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.dl__inner {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin-inline: auto;
}
.dl__eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--gray4);
  margin-bottom: 1.2rem;
}
.dl h2 {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
}
.dl__sub {
  font-family: var(--font-body);
  color: var(--ink);
  margin: 1.2rem auto 2rem;
  max-width: 42ch;
}
.dl__circle {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  overflow: hidden;
  background: var(--gray1);
  box-shadow: 0 24px 56px -26px rgba(42, 43, 51, 0.42);
}
.dl__circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dl__sym {
  position: absolute;
  z-index: 1;
  width: 124px;
  height: 124px;
  border-radius: 50%;
  background: var(--violet);
  display: grid;
  place-items: center;
  color: var(--ink);
}
.dl__sym .sym {
  width: 56px;
}
/* scattered top-to-bottom in the side margins, behind the centered text */
.dl .c1 {
  width: 172px;
  height: 172px;
  left: 0;
  top: 36%;
}
.dl .c2 {
  width: 204px;
  height: 204px;
  right: 1%;
  top: 5%;
}
.dl .c3 {
  width: 152px;
  height: 152px;
  right: 6%;
  bottom: 7%;
}
.dl .c4 {
  width: 176px;
  height: 176px;
  left: 3%;
  bottom: 5%;
}
.dl .c5 {
  width: 142px;
  height: 142px;
  left: 14%;
  top: 7%;
}
.dl .sym1 {
  left: 13%;
  top: 40%;
}
@media (max-width: 1040px) {
  .dl .c5,
  .dl .sym1 {
    display: none;
  }
}
@media (max-width: 840px) {
  .dl .container {
    min-height: auto;
    padding-block: clamp(3rem, 8vw, 5rem);
  }
  .dl__circle,
  .dl__sym {
    display: none;
  }
}

/* ==========================================================================
   STATS  (dark photo bg · white cards · bottom statement)
   ========================================================================== */
.stats {
  position: relative;
  color: var(--paper);
  overflow: hidden;
}
.stats__bg {
  position: absolute;
  inset: 0;
  background: url('assets/site/stats.jpg') center/cover;
  z-index: 0;
}
.stats__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(15, 16, 20, 0.5), rgba(15, 16, 20, 0.66));
}
.stats__inner {
  position: relative;
  z-index: 2;
}
.stats h2 {
  color: var(--paper);
  font-size: clamp(1.8rem, 3.4vw, 3rem);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.6rem);
  margin: clamp(2.5rem, 5vw, 4rem) 0;
}
.stat {
  background: var(--paper);
  color: var(--ink);
  border: 1.5px solid var(--ink);
  border-radius: 2px;
  padding: clamp(1.5rem, 2.2vw, 2.3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: clamp(230px, 17vw, 300px);
}
.stat__num {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(2.1rem, 3.8vw, 3.1rem);
  line-height: 1;
  margin-bottom: 1.1rem;
}
.stat__label {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(42, 43, 51, 0.72);
  max-width: 34ch;
}
.stats__statement {
  font-family: var(--font-display);
  text-transform: uppercase;
  text-align: center;
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  letter-spacing: -0.01em;
  line-height: 1.15;
  max-width: 52ch;
  margin: 0 auto;
}
@media (max-width: 760px) {
  .stats__grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   HOW IT WORKS  (3-col bordered grid)
   ========================================================================== */
.moves h2 {
  margin-top: 0.3rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.moves__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--rule-strong);
}
.move {
  border-right: 1px solid var(--rule-strong);
  display: flex;
  flex-direction: column;
}
.move:last-child {
  border-right: none;
}
.move__head {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  padding: 0.8rem 1.3rem;
  border-bottom: 1px solid var(--rule-strong);
  color: var(--ink);
}
.move__body {
  padding: 1.6rem 1.3rem 1.3rem;
}
.move__title {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  line-height: 1.25;
  margin-bottom: 1rem;
  text-transform: none;
  letter-spacing: 0;
}
.move__desc {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 1.4rem;
}
.move__img {
  margin-top: auto;
  aspect-ratio: 16/11;
  border-radius: 3px;
  overflow: hidden;
  background: var(--gray1);
}
.move__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 820px) {
  .moves__grid {
    grid-template-columns: 1fr;
  }
  .move {
    border-right: none;
    border-bottom: 1px solid var(--rule-strong);
  }
  .move:last-child {
    border-bottom: none;
  }
}

/* ==========================================================================
   WHY IT GETS BETTER + MEMORY  (yellow, 2-col)
   ========================================================================== */
.why {
  background: var(--yellow);
  padding-block: clamp(4.5rem, 11vw, 11rem);
}
.why h2 {
  margin: 0.3rem 0 1.4rem;
  font-size: clamp(1.5rem, 2.3vw, 2.5rem);
}
.why__copy p {
  max-width: 46ch;
  margin-bottom: 1.8rem;
}
.why .split {
  min-height: clamp(420px, 38vw, 720px);
}
.mem {
  align-self: end;
}
.mem__item {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  padding: 1.9rem 0;
  border-bottom: 1px solid var(--rule);
}
.mem__item:first-child {
  border-top: 1px solid var(--rule);
}

/* ==========================================================================
   PULL QUOTE  (photo | text)  ·  STRATEGIST (text | photo)
   ========================================================================== */
.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 60vh;
}
.duo__media {
  background-size: cover;
  background-position: center;
  min-height: 320px;
}
.duo__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 6rem);
}
.quote__q {
  font-family: var(--font-mono);
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  line-height: 1.5;
  letter-spacing: -0.01em;
}
.quote__src {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  color: var(--gray4);
  margin-top: 1.6rem;
}
.strategist__text {
  font-family: var(--font-mono);
  font-size: clamp(1.4rem, 2.2vw, 2.1rem);
  line-height: 1.4;
  letter-spacing: -0.01em;
}
@media (max-width: 820px) {
  .duo {
    grid-template-columns: 1fr;
  }
  .duo__media {
    min-height: 320px;
    order: -1;
  }
  .strategist .duo__media {
    order: 1;
  }
}

/* ==========================================================================
   ACCORDIONS  (people · not-for-you · faq)
   ========================================================================== */
.people h2,
.notfor h2,
.faq h2 {
  margin-top: 0.3rem;
}
.people__copy p {
  max-width: 42ch;
  margin: 1.4rem 0 1.8rem;
}
.acc {
  border-top: 1px solid var(--rule);
}
.acc__item {
  border-bottom: 1px solid var(--rule);
}
.acc__head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 2rem 0;
  text-align: left;
}
.acc__icon {
  flex: none;
  width: 18px;
  height: 18px;
  position: relative;
}
.acc__icon::before,
.acc__icon::after {
  content: '';
  position: absolute;
  background: var(--ink);
  transition: transform 0.3s var(--ease);
}
.acc__icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  transform: translateY(-50%);
}
.acc__icon::after {
  left: 50%;
  top: 0;
  height: 100%;
  width: 1.5px;
  transform: translateX(-50%);
}
.acc__item.open .acc__icon::after {
  transform: translateX(-50%) scaleY(0);
}
.acc__q {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--ink);
}
.acc__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease);
}
.acc__body-inner {
  padding: 0 0 1.6rem 39px;
  max-width: 60ch;
  color: var(--gray4);
  font-size: 1rem;
  line-height: 1.65;
}
.acc__body-inner p + p {
  margin-top: 0.7rem;
}

/* ==========================================================================
   TESTIMONIALS  (white head · dark carousel)
   ========================================================================== */
.testi__head {
  margin-bottom: 0;
}
.testi__panel {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(4.5rem, 10vw, 9rem) var(--gutter);
  position: relative;
  text-align: center;
}
.testi__track {
  max-width: 620px;
  margin-inline: auto;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testi__quote {
  font-family: var(--font-mono);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.55;
}
.testi__src {
  display: block;
  margin-top: 1.4rem;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  color: var(--gray2);
}
.testi__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 1.3rem;
  color: var(--gray2);
  padding: 1rem;
  transition: color 0.2s;
}
.testi__arrow:hover {
  color: var(--paper);
}
.testi__arrow.prev {
  left: max(1rem, 4vw);
}
.testi__arrow.next {
  right: max(1rem, 4vw);
}

/* ==========================================================================
   PRICE  (bordered card: phones | details)
   ========================================================================== */
.price__card {
  border: 1px solid var(--rule-strong);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
}
.price__phones {
  grid-column: 1;
  grid-row: 1 / 3;
  border-right: 1px solid var(--rule-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  padding: clamp(2.5rem, 4vw, 4rem) clamp(1.5rem, 3vw, 2.5rem);
  background: var(--paper);
}
/* staggered phones: Execute (front) higher, Sharpen (sm) lower */
.price__phones .phone--sm {
  transform: translateY(42px);
}
.price__detail {
  grid-column: 2;
  grid-row: 1;
  padding: clamp(2rem, 3.4vw, 3.4rem);
  display: flex;
  flex-direction: column;
}
.price__detail h2 {
  margin: 0.4rem 0 0;
  font-size: clamp(1.7rem, 2.4vw, 2.5rem);
  line-height: 1.12;
}
.price__nums {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: clamp(3rem, 7vw, 6rem);
  padding-bottom: 1.8rem;
  border-bottom: 1px solid var(--rule);
  font-family: var(--font-mono);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
}
.price__nums .mo {
  text-decoration: underline;
}
.price__feats {
  display: grid;
  gap: 0.18rem;
  padding: 2rem 0;
  font-family: var(--font-mono);
  font-size: 0.92rem;
  line-height: 1.55;
}
.price__feats span {
  color: var(--violet);
}
.price__cta {
  margin-top: auto;
  align-self: flex-start;
}
.price__trial {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
  color: var(--violet);
  line-height: 1.7;
  margin-top: auto;
}
.price__founding {
  grid-column: 2;
  grid-row: 2;
  border-top: 1px solid var(--rule-strong);
  background: var(--violet);
  color: var(--white);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  text-align: center;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  transition: background 0.25s var(--ease);
}
.price__founding:hover {
  background: var(--ink);
}
.price__founding .arr {
  transition: transform 0.25s var(--ease);
}
.price__founding:hover .arr {
  transform: translateX(4px);
}
@media (max-width: 820px) {
  .price__card {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .price__phones {
    grid-column: 1;
    grid-row: auto;
    border-right: none;
    border-bottom: 1px solid var(--rule-strong);
  }
  .price__detail {
    grid-column: 1;
  }
  .price__founding {
    grid-column: 1;
    grid-row: auto;
  }
  .price__phones .phone--sm {
    transform: none;
  }
}

/* ==========================================================================
   FOUNDING MEMBERS  (yellow · email capture)
   ========================================================================== */
.founding {
  background: var(--yellow);
}
.founding__head h2 {
  margin: 0.3rem 0 1.4rem;
}
.founding__sub {
  max-width: 52ch;
  margin-bottom: 2.2rem;
}
.wl-form {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  align-items: stretch;
  max-width: 620px;
  position: relative;
  padding-bottom: 2rem;
}
.wl-form__input {
  flex: 1;
  min-width: 240px;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--rule-strong);
  border-radius: 100px;
  padding: 0.85rem 1.4rem;
  outline: none;
  transition: border-color 0.2s var(--ease);
}
.wl-form__input::placeholder {
  color: var(--gray4);
}
.wl-form__input:focus {
  border-color: var(--ink);
}
.wl-form__btn {
  flex: none;
}
.wl-form__msg {
  position: absolute;
  left: 1.4rem;
  bottom: 0;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  color: var(--ink);
}
@media (max-width: 560px) {
  .wl-form__btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   FINAL CTA  (periwinkle · box + photo card)
   ========================================================================== */
.final {
  background: var(--violet);
  color: var(--ink);
}
.final__box {
  border: 1px solid rgba(42, 43, 51, 0.35);
  max-width: 600px;
  margin-inline: auto;
  overflow: hidden;
}
.final__top {
  text-align: center;
  padding: clamp(2.8rem, 5vw, 4rem) 2rem 2.4rem;
}
.final__sym {
  width: 48px;
  color: var(--ink);
  margin: 0 auto 1.6rem;
}
.final h2 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
}
.final__sub {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(42, 43, 51, 0.7);
  margin-top: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.final__photo {
  position: relative;
  aspect-ratio: 3/4;
  background: url('assets/site/final.jpg') center 30% / cover;
}
.final__photo .btn {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  justify-content: center;
  background: rgba(23, 24, 29, 0.7);
  color: var(--paper);
  border-radius: 0;
  padding: 1rem;
}

/* ==========================================================================
   GIANT WORDMARK + FOOTER  (periwinkle)
   ========================================================================== */
.wordmark {
  background: var(--violet);
  padding: clamp(2rem, 5vw, 4rem) 0 0;
  overflow: hidden;
}
/* Stacked rows that overlap via real layout (flex + negative margin) so all
   four show as distinct bands. Top row darkest, cascading DOWN to the lightest,
   fullest row in front at the bottom — matches landari. */
.wordmark__stack {
  display: flex;
  flex-direction: column;
}
.wordmark__stack .wm {
  width: 100%;
}
.wordmark__stack .wm + .wm {
  margin-top: -12.5%;
}
.wordmark__stack .wm:nth-child(1) {
  color: var(--ink);
}
.wordmark__stack .wm:nth-child(2) {
  color: rgba(42, 43, 51, 0.6);
}
.wordmark__stack .wm:nth-child(3) {
  color: rgba(42, 43, 51, 0.4);
}
.wordmark__stack .wm:nth-child(4) {
  color: rgba(42, 43, 51, 0.25);
}
.footer {
  background: var(--violet);
  color: var(--ink);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  border-top: 1px solid rgba(42, 43, 51, 0.3);
}
.footer__col {
  padding: 1.5rem var(--gutter) 2.5rem;
  border-right: 1px solid rgba(42, 43, 51, 0.3);
}
.footer__col:first-child {
  padding-left: var(--gutter);
}
.footer__col:last-child {
  border-right: none;
}
.footer__col h4 {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 400;
  margin-bottom: 1.1rem;
}
.footer__col p {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  line-height: 1.6;
  max-width: 30ch;
}
.footer__col a {
  display: block;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.74rem;
  padding: 0.3rem 0;
  transition: opacity 0.2s;
}
.footer__col a:hover {
  opacity: 0.6;
}
.footer__base {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.1rem var(--gutter);
  border-top: 1px solid rgba(42, 43, 51, 0.3);
  color: var(--ink);
}
.footer__base .sym {
  width: 22px;
  color: var(--ink);
}
.footer__base .wm {
  height: 15px;
  color: var(--ink);
}
@media (max-width: 820px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer__col {
    border-bottom: 1px solid rgba(42, 43, 51, 0.3);
  }
  .footer__col:first-child {
    grid-column: 1/-1;
  }
}

/* ==========================================================================
   PHONE MOCKUP  (app UI: Sharpen / Execute)
   ========================================================================== */
.phone {
  width: 300px;
  max-width: 72vw;
  padding: 6px;
  border-radius: 44px;
  /* Titanium/graphite rail: diagonal sheen, light caught top-left + bottom-right */
  background: linear-gradient(
    135deg,
    #55565f 0%,
    #2b2c33 12%,
    #3c3d46 27%,
    #1b1c21 50%,
    #3c3d46 73%,
    #2b2c33 88%,
    #55565f 100%
  );
  box-shadow:
    0 50px 90px -28px rgba(20, 20, 26, 0.55),
    0 22px 44px -20px rgba(20, 20, 26, 0.45),
    0 4px 10px -4px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  position: relative;
  /* visible so the side buttons can sit on the frame edge; the screen clips itself */
  overflow: visible;
}
/* Left side buttons (volume up / down) */
.phone::after {
  content: '';
  position: absolute;
  z-index: 1;
  left: -2px;
  top: 22%;
  width: 3px;
  height: 13%;
  border-radius: 3px;
  background: linear-gradient(to bottom, #40414a 0 40%, transparent 40% 60%, #40414a 60% 100%);
}
/* Right side button (power) */
.phone::before {
  content: '';
  position: absolute;
  z-index: 1;
  right: -2px;
  top: 31%;
  width: 3px;
  height: 10%;
  border-radius: 3px;
  background: #40414a;
}
.phone--sm {
  width: 240px;
}
.price__phones .phone {
  width: 310px;
}
.price__phones .phone--sm {
  width: 252px;
}
.phone__screen {
  position: relative;
  /* Matches the cropped screenshot ratio (582 x 1260) so there is zero crop */
  aspect-ratio: 582 / 1260;
  background: #0a0a0c;
  border: 2px solid #0a0a0c;
  border-radius: 38px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  font-size: 11px;
}
/* Dynamic Island pill, floating over the screen's top safe-area padding */
.phone__screen::before {
  content: '';
  position: absolute;
  z-index: 3;
  top: 2.4%;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  max-width: 96px;
  height: 2.5%;
  min-height: 15px;
  background: #000;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}
/* Real in-app screenshot fills the device screen (exact ratio = zero crop) */
.phone__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.app__top {
  padding: 18px 16px 8px;
}
.app__sym {
  width: 26px;
  color: var(--ink);
}
.app__tabs {
  display: flex;
  margin: 2px 16px 0;
  border-bottom: 1px solid var(--gray1);
}
.app__tab {
  flex: 1;
  text-align: center;
  padding: 8px 0 7px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 8.5px;
  color: var(--gray2);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.app__tab.active {
  color: var(--ink);
  border-bottom-color: var(--ink);
}
.app__body {
  flex: 1;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}
.app__hint {
  font-family: var(--font-mono);
  color: var(--gray4);
  font-size: 8.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.app__chips {
  display: flex;
  gap: 5px;
  flex-wrap: nowrap;
  overflow: hidden;
}
.app__chip {
  font-size: 8px;
  padding: 4px 9px;
  border-radius: 100px;
  border: 1px solid var(--gray1);
  background: var(--white);
  color: var(--gray4);
  white-space: nowrap;
}
.app__chip.on {
  background: var(--lila);
  border-color: var(--lila);
  color: var(--ink);
}
.app__decision {
  margin-top: 10px;
}
.app__decision h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  text-transform: none;
}
.app__cat {
  font-family: var(--font-mono);
  font-size: 7.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray4);
}
.app__stats {
  display: flex;
  gap: 8px;
  margin-top: 2px;
}
.app__stat {
  flex: 1;
  border: 1px solid var(--gray1);
  border-radius: 10px;
  padding: 9px 11px;
}
.app__stat span {
  display: block;
  font-family: var(--font-mono);
  font-size: 7.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray4);
  margin-bottom: 4px;
}
.app__stat b {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
}
.app__task {
  border: 1px solid var(--gray1);
  border-radius: 8px;
  padding: 8px 11px;
  font-size: 9.5px;
  color: var(--ink);
}
.app__task.done {
  color: var(--gray2);
  text-decoration: line-through;
}
.app__actions {
  margin-top: auto;
  display: grid;
  gap: 6px;
}
.app__btn {
  text-align: center;
  background: var(--ink);
  color: var(--paper);
  border-radius: 100px;
  padding: 9px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 8.5px;
}
.app__btn--ghost {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--gray1);
}
.app__bubble {
  display: flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  background: var(--paper);
  border: 1px solid var(--gray1);
  border-radius: 12px;
  padding: 8px 11px;
  font-size: 9.5px;
  color: var(--ink);
  margin-top: 6px;
}
.app__bubble i {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gray1);
  flex: none;
}
.app__inputrow {
  margin-top: auto;
  display: flex;
  gap: 6px;
  align-items: center;
}
.app__input {
  flex: 1;
  background: var(--paper);
  border: 1px solid var(--gray1);
  border-radius: 100px;
  padding: 8px 12px;
  color: var(--gray4);
  font-size: 9.5px;
}
.app__lock {
  background: var(--ink);
  color: var(--paper);
  border-radius: 100px;
  padding: 8px 14px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 8.5px;
}
.app__nav {
  display: flex;
  justify-content: space-around;
  padding: 8px 0 12px;
  border-top: 1px solid var(--gray1);
}
.app__nav span {
  font-family: var(--font-mono);
  font-size: 7.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.app__nav span i {
  font-style: normal;
  font-size: 9px;
  line-height: 1;
}
.app__nav span.on {
  color: var(--ink);
}
/* phone home-screen (sub-hero) */
.subhero__phone {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  overflow: visible;
}
.subhero__phone .phone {
  width: clamp(280px, 21vw, 360px);
  transform: translateX(14%);
}
@media (max-width: 860px) {
  .subhero__phone {
    justify-content: center;
  }
  .subhero__phone .phone {
    transform: none;
  }
}
.home {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 30px 14px 14px;
  background: linear-gradient(160deg, #403a59, #2a2b33 70%);
}
.home__status {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  color: #fff;
  opacity: 0.92;
  padding: 0 6px;
}
.home__notif {
  display: flex;
  gap: 9px;
  align-items: center;
  background: rgba(255, 255, 255, 0.18);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-radius: 15px;
  padding: 10px 11px;
}
.home__nicon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--violet);
  flex: none;
  display: grid;
  place-items: center;
}
.home__nicon .sym {
  width: 16px;
  color: var(--ink);
}
.home__ntext {
  font-size: 9.5px;
  line-height: 1.4;
  color: #fff;
}
.home__ntext b {
  font-weight: 600;
}
.home__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px 8px;
  margin-top: 6px;
}
.home__app {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-size: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-mono);
}
.home__ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
}
.home__ic.ic-vurr {
  background: var(--violet);
  display: grid;
  place-items: center;
}
.home__ic.ic-vurr .sym {
  width: 25px;
  color: var(--ink);
}
.home__dock {
  margin-top: auto;
  display: flex;
  justify-content: space-around;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  padding: 9px 8px;
}
.home__dock .home__ic {
  width: 42px;
  height: 42px;
}

/* ----------  Reveal  ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================================================
   MOBILE OVERFLOW FIXES (≤560px) — keep everything within the viewport
   ========================================================================== */
@media (max-width: 560px) {
  /* Price card: two phones must fit side-by-side without pushing the page wide */
  .price__phones {
    gap: 0.55rem;
    padding: 1.6rem 0.7rem;
  }
  .price__phones .phone {
    width: 46vw;
    max-width: 46vw;
    /* fixed 44px reads too round once the phone is only ~46vw wide — square it up */
    border-radius: 20px;
    padding: 4px;
  }
  .price__phones .phone--sm {
    width: 39vw;
    max-width: 39vw;
  }
  .price__phones .phone__screen {
    border-radius: 15px;
  }
  /* Price detail: let the two price numbers wrap instead of forcing width */
  .price__nums {
    flex-direction: column;
    gap: 0.4rem;
  }
  /* Sub-hero device image bled off the right via a negative margin */
  .subhero__device {
    margin-right: 0;
    width: min(64vw, 300px);
  }
  /* Problem loop column was pinned to 50% width + right-aligned (inline style) */
  .problem .container > .reveal:nth-child(2) {
    max-width: 100% !important;
    margin-left: 0 !important;
  }
  /* Nav: tighten side padding so the pill + CTA never overflow */
  .nav {
    padding-left: 12px;
    padding-right: 12px;
  }
  .nav__cta {
    white-space: nowrap;
  }
}
