/* ==========================================================================
   Quiet — Landing page styles
   Three directions toggled via data-direction on <html>:
     A "editorial"  — warm brass accent, serif display, spacious
     B "workshop"   — sage accent, sans display, denser blocks
     C "operator"   — soft steel accent, mono display, technical calm
   ========================================================================== */

:root {
  /* Common base — all directions are dark-mode native */
  --bg:           #0B0A08;
  --bg-elevated: #14110D;
  --surface:     #1A1612;
  --surface-2:   #211B15;
  --line:        rgba(243,236,225,0.08);
  --line-strong: rgba(243,236,225,0.14);
  --ink:         #F3ECE1;
  --ink-dim:     #B8B0A3;
  --ink-muted:   #786E60;
  --ink-faint:   #443C33;
  --accent:      #C5A572;
  --accent-dim:  rgba(197,165,114,0.20);
  --accent-line: rgba(197,165,114,0.34);
  --positive:    #8FB39A;

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Instrument Serif', 'Times New Roman', serif;
  --font-body:    'Inter', 'Geist', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', 'Geist Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

  /* Scale */
  --display-tight: 0.98;
  --display-spacing: 0em;
  --body-tracking: -0.005em;
  --label-tracking: 0.08em;

  /* Spacing */
  --section-y: clamp(96px, 12vw, 160px);
  --container: 1180px;
  --gutter: clamp(20px, 4vw, 40px);
}

/* ── Direction B: Workshop (sage, sans, denser) ───────────────────────── */
[data-direction="workshop"] {
  --bg:           #0C0E0B;
  --bg-elevated:  #11140F;
  --surface:      #161A14;
  --surface-2:    #1A1E18;
  --line:         rgba(232,238,228,0.08);
  --line-strong:  rgba(232,238,228,0.14);
  --ink:          #E8EEE4;
  --ink-dim:      #ABB3A6;
  --ink-muted:    #6B7268;
  --accent:       #A8C29D;
  --accent-dim:   rgba(168,194,157,0.18);
  --accent-line:  rgba(168,194,157,0.32);

  --font-display: 'Onest', ui-sans-serif, system-ui, sans-serif;
  --font-body:    'Onest', ui-sans-serif, system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  --display-tight: 1.02;
  --display-spacing: 0em;
  --section-y: clamp(80px, 9vw, 128px);
}

/* ── Direction C: Operator (steel, mono, technical) ───────────────────── */
[data-direction="operator"] {
  --bg:           #0A0C10;
  --bg-elevated:  #0F1218;
  --surface:      #14181F;
  --surface-2:    #181D26;
  --line:         rgba(220,228,240,0.07);
  --line-strong:  rgba(220,228,240,0.13);
  --ink:          #DEE5EF;
  --ink-dim:      #9AA3B2;
  --ink-muted:    #5E6675;
  --accent:       #88A8C4;
  --accent-dim:   rgba(136,168,196,0.18);
  --accent-line:  rgba(136,168,196,0.32);

  --font-display: 'Geist Mono', ui-monospace, monospace;
  --font-body:    'Public Sans', ui-sans-serif, system-ui, sans-serif;
  --font-mono:    'Geist Mono', ui-monospace, monospace;

  --display-tight: 1.05;
  --display-spacing: 0em;
  --section-y: clamp(112px, 14vw, 184px);
}

/* ── Base ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

html {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: var(--body-tracking);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.95  0 0 0 0 0.93  0 0 0 0 0.88  0 0 0 0.05 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

::selection { background: var(--accent-dim); color: var(--ink); }

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }

/* ── Layout ───────────────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section-y);
  position: relative;
}

.section + .section { border-top: 1px solid var(--line); }

/* ── Type ─────────────────────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: var(--label-tracking);
  color: var(--ink-muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-dim);
  flex-shrink: 0;
}

.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: var(--display-tight);
  letter-spacing: var(--display-spacing);
  margin: 0;
  text-wrap: balance;
}

.display-xl { font-size: clamp(48px, 8vw, 96px); }
.display-l  { font-size: clamp(40px, 5.4vw, 64px); }
.display-m  { font-size: clamp(32px, 3.6vw, 44px); }

[data-direction="workshop"] .display { font-weight: 500; }
[data-direction="operator"] .display { font-weight: 500; }

.lede {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--ink-dim);
  line-height: 1.5;
  max-width: 38ch;
  text-wrap: pretty;
}

.label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: var(--label-tracking);
  color: var(--ink-muted);
}

.kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: var(--label-tracking);
  text-transform: uppercase;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.kicker::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
  max-width: 96px;
}

/* ── Buttons ──────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding-inline: 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .12s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover { background: #fff; }

.btn-ghost {
  color: var(--ink-dim);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { color: var(--ink); border-color: var(--ink-muted); }

.btn-text {
  color: var(--ink-dim);
  height: auto;
  padding: 4px 0;
  border-radius: 0;
}
.btn-text:hover { color: var(--ink); }
.btn-text .arrow {
  display: inline-block;
  transition: transform .18s ease;
}
.btn-text:hover .arrow { transform: translateX(3px); }

[data-direction="workshop"] .btn { border-radius: 10px; }
[data-direction="operator"] .btn { border-radius: 6px; }

/* ── Nav ──────────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  background: color-mix(in oklab, var(--bg) 70%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.nav[data-scrolled="1"] {
  border-bottom-color: var(--line);
  background: color-mix(in oklab, var(--bg) 88%, transparent);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 13.5px;
  color: var(--ink-dim);
}
.nav-links a:hover { color: var(--ink); }
.nav-phone {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: var(--label-tracking);
  text-transform: uppercase;
  color: var(--accent);
}

/* ── Hero ─────────────────────────────────────────────────────────────── */
.hero-fullscreen {
  min-height: 100vh;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(ellipse 60% 50% at 50% 38%, rgba(197,165,114,0.075), transparent 70%),
    radial-gradient(ellipse 90% 70% at 50% 60%, transparent 40%, rgba(0,0,0,0.52) 100%),
    var(--bg);
}
.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 28px;
  position: relative;
  z-index: 1;
  flex: 1;
  max-width: 1180px;
  margin: 0 auto;
}
.hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
  z-index: 1;
  flex: 1;
  max-width: 760px;
  margin: 0 auto;
  padding-block: 80px;
  text-align: center;
}
.hero-center .eyebrow {
  margin-bottom: 2px;
}
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 400px);
  gap: clamp(42px, 7vw, 88px);
  align-items: center;
  position: relative;
  z-index: 1;
  flex: 1;
  width: 100%;
  padding-block: 28px;
}
.hero-copy {
  max-width: 610px;
}
.hero-copy .eyebrow {
  margin-bottom: 32px;
}
.hero-lead {
  color: var(--ink);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.48;
  max-width: 42ch;
  margin: 26px auto 0;
}
.hero-headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(58px, 7.1vw, 98px);
  line-height: 0.96;
  letter-spacing: 0;
  max-width: 13ch;
  margin: 0;
  text-wrap: balance;
}
.hero-headline-accent {
  color: var(--accent);
  font-style: italic;
  font-weight: 400;
}
.hero-subhead {
  font-size: 15.5px;
  line-height: 1.68;
  color: var(--ink-dim);
  margin: 0;
  max-width: 60ch;
  text-wrap: pretty;
}
.hero-quinn-contact {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.hero-quinn-phone {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color .18s ease;
}
.hero-quinn-phone:hover { color: var(--accent); }

/* Massive cursive "Quiet" signature flourish in the background */
/* Hand-drawn signature mark, used in hero (large) and footer */
.sig {
  width: 100%;
  height: auto;
  display: block;
  color: currentColor;
}

.hero-signature {
  position: absolute;
  right: -10%;
  bottom: 10%;
  width: 96%;
  max-width: 1240px;
  pointer-events: none;
  z-index: 0;
  color: var(--accent);
  opacity: 0.18;
  transform: rotate(-2deg);
  transform-origin: bottom right;
  user-select: none;
}
@media (max-width: 760px) {
  .hero-signature {
    right: -18%;
    bottom: 18%;
    width: 132%;
    opacity: 0.12;
  }
}

.footer-top {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.footer-mark {
  width: 60%;
  max-width: 720px;
  color: var(--ink);
  opacity: 0.95;
}
.hero-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 12px; }

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--ink-muted);
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
  z-index: 2;
  transition: color .25s ease;
}
.hero-scroll:hover { color: var(--ink); }
.hero-scroll-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: var(--label-tracking);
  text-transform: uppercase;
}
.hero-scroll svg { animation: scrollnudge 2.2s ease-in-out infinite; }
@keyframes scrollnudge {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50%      { transform: translateY(6px); opacity: 1; }
}

.hero-watch {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -54%);
  width: min(118vh, 1040px);
  max-width: 1040px;
  aspect-ratio: 1;
  pointer-events: none;
  z-index: 0;
  color: var(--accent);
  opacity: 0.16;
  mask-image: radial-gradient(circle at 50% 50%, #000 36%, transparent 74%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 36%, transparent 74%);
}
.hero-watch svg { width: 100%; height: 100%; display: block; }
[data-show-hero-mark="0"] .hero-watch { display: none; }

/* ── Large hero phone ─────────────────────────────────────────────────── */
.hero-phone-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-phone {
  width: 100%;
  max-width: 360px;
  background: linear-gradient(180deg, #100E0A 0%, #0B0A08 100%);
  border: 1px solid rgba(244,239,230,0.16);
  border-radius: 44px;
  padding: 12px 10px 10px;
  position: relative;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 40px 100px -30px rgba(0,0,0,0.8),
    0 100px 180px -50px rgba(0,0,0,0.6);
  /* outer phone bezel ring */
  outline: 8px solid rgba(20,18,14,0.95);
  outline-offset: -1px;
  transform: rotate(-2deg);
}
.hero-phone::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 52px;
  border: 1px solid rgba(244,239,230,0.05);
  pointer-events: none;
}
.hero-phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 24px;
  background: #000;
  border-radius: 14px;
  z-index: 1;
}
.hero-phone-statusbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 26px 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.hero-phone-statusbar-r { display: flex; align-items: center; gap: 5px; color: var(--ink); }

.hero-phone-head {
  display: grid;
  grid-template-columns: 26px 1fr 26px;
  align-items: center;
  padding: 6px 10px 12px;
  border-bottom: 1px solid rgba(244,239,230,0.10);
  gap: 8px;
}
.hero-phone-back, .hero-phone-info {
  color: var(--accent);
  width: 26px; height: 26px;
  display: grid; place-items: center;
}
.hero-phone-info {
  border: 1px solid var(--accent-line);
  border-radius: 50%;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 12px;
}
.hero-phone-contact {
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.hero-phone-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-dim), rgba(0,0,0,0.6));
  border: 1px solid var(--accent-line);
  color: var(--accent);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.hero-phone-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
  text-align: left;
}
.hero-phone-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}

.hero-phone-thread {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 8px 14px;
}
.hero-phone-day {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
  margin: 4px 0 10px;
}
.hero-phone-bub {
  max-width: 86%;
  padding: 9px 13px 10px;
  border-radius: 18px;
  font-size: 13.5px;
  line-height: 1.42;
  letter-spacing: -0.005em;
}
.hero-phone-bub.them {
  align-self: flex-start;
  background: #1F1D18;
  color: var(--ink);
  border-bottom-left-radius: 5px;
}
.hero-phone-bub.me {
  align-self: flex-end;
  background: var(--accent);
  color: #1a1610;
  border-bottom-right-radius: 5px;
  font-weight: 500;
}
.hero-phone-bub b { font-weight: 600; }
.hero-phone-bub-read {
  align-self: flex-end;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding: 2px 4px 4px;
}

/* ── Intro (below the hero fold) ─────────────────────────────────────── */
.intro {
  padding-top: clamp(72px, 9vw, 120px);
  padding-bottom: clamp(72px, 9vw, 120px);
}
.intro-head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: 760px;
  margin: 0 auto clamp(48px, 6vw, 80px);
}
.intro-headline {
  margin: 0;
  text-wrap: balance;
}
.intro-sub {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.55;
  color: var(--ink-dim);
  max-width: 52ch;
  margin: 0;
  text-wrap: pretty;
}
.intro-phones { display: flex; justify-content: center; }

/* ── Moments: concrete watch-dealer work ─────────────────────────────── */
.moments {
  position: relative;
  padding-block: clamp(76px, 9vw, 124px);
  overflow: clip;
}
.moments-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: start;
}
.moments-head {
  position: sticky;
  top: 92px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 560px;
}
.moments-head h2 {
  margin-top: 4px;
}
.moments-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.moment-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: clamp(18px, 3vw, 34px);
  padding: clamp(22px, 3vw, 34px) 0;
  border-bottom: 1px solid var(--line);
  transition: border-color .2s ease;
}
.moment-row:hover {
  border-bottom-color: var(--accent-line);
}
.moment-index {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: var(--label-tracking);
  color: var(--accent);
  padding-top: 5px;
  transition: color .2s ease, opacity .2s ease;
  opacity: 0.72;
}
.moment-row:hover .moment-index {
  opacity: 1;
}
.moment-copy {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.moment-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: var(--label-tracking);
  text-transform: uppercase;
  color: var(--ink-muted);
}
.moment-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.04;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.moment-copy p {
  margin: 0;
  max-width: 56ch;
  color: var(--ink-dim);
  font-size: 15.5px;
  line-height: 1.58;
  text-wrap: pretty;
}

/* ── Integration logo band ───────────────────────────────────────────── */
.integration-band {
  padding-block: clamp(34px, 5vw, 58px);
  overflow: hidden;
  background:
    linear-gradient(90deg, var(--bg) 0%, transparent 14%, transparent 86%, var(--bg) 100%),
    rgba(197,165,114,0.025);
}
.integration-band-head {
  max-width: var(--container);
  margin: 0 auto 22px;
  padding-inline: var(--gutter);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}
.integration-band-head p {
  margin: 0;
  max-width: 46ch;
  color: var(--ink-dim);
  font-size: 14px;
  line-height: 1.55;
  text-align: right;
}
.integration-marquee {
  position: relative;
  display: flex;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.integration-track {
  display: flex;
  gap: 12px;
  width: max-content;
  padding: 2px 12px;
  animation: integration-scroll 34s linear infinite;
}
.integration-list {
  display: none;
}
.integration-pill {
  flex: 0 0 auto;
  min-width: 176px;
  min-height: 76px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in oklab, var(--surface) 78%, transparent);
  color: var(--ink);
  box-shadow: 0 18px 55px -40px rgba(0,0,0,0.8);
}
.integration-mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.92);
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  font-weight: 600;
}
.integration-mark img {
  width: 72%;
  height: 72%;
  object-fit: contain;
  display: block;
}
.integration-pill > span:last-child {
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
@keyframes integration-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .integration-track { animation: none; }
}

/* ── Phone (SMS) vignette ─────────────────────────────────────────────── */
.phones {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 100%;
}
.phones-stage {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: clamp(28px, 5vw, 80px);
  width: 100%;
}
@media (max-width: 1080px) {
  .phones-stage { flex-direction: column; gap: 36px; }
  .phones-arrow svg { transform: rotate(90deg); }
}

@media (max-width: 760px) {
  .phones-stage { width: min(100%, 330px); }
}
.phones-col {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 340px;
  max-width: 100%;
  flex-shrink: 0;
}
.phones-col .phone {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.phones-col-dealer { transform: none; }
.phones-col-buyer { transform: none; }
@media (max-width: 1080px) {
  .phones-col-dealer, .phones-col-buyer { transform: none; }
}

.phones-cap {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding: 0 4px;
  line-height: 1.4;
}
.phones-cap-copy {
  max-width: 236px;
  color: var(--ink-muted);
  text-transform: none;
  letter-spacing: 0.02em;
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.35;
}
.phones-cap-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accent);
  border: 1px solid var(--accent-line);
  padding: 6px 9px;
  border-radius: 5px;
  background: var(--accent-dim);
  letter-spacing: 0.08em;
  white-space: nowrap;
  flex-shrink: 0;
}
.phones-cap-tag-alt {
  color: var(--ink-dim);
  border-color: var(--line-strong);
  background: var(--surface);
}

.phones-arrow {
  color: var(--ink-muted);
  width: 64px;
  flex-shrink: 0;
  align-self: center;
  margin-top: 232px;  /* visually align with phone bodies, not caption */
}
.phones-arrow svg {
  width: 64px;
  height: 18px;
  opacity: 0.72;
}

.phones-foot {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-align: center;
  min-height: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.phones-foot b { color: var(--ink-dim); font-weight: 500; }

.phone {
  --phone-bg: #0B0A08;
  --phone-line: rgba(244,239,230,0.10);
  --bub-them: #1F1D18;
  --bub-them-ink: var(--ink);
  --bub-me: var(--accent);
  --bub-me-ink: #1a1610;

  width: 100%;
  aspect-ratio: 340 / 704;
  background: #050403;
  border: 1px solid rgba(197,165,114,0.12);
  border-radius: 44px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow:
    0 0 0 1.5px rgba(197,165,114,0.08),
    0 2px 2px rgba(255,255,255,0.05) inset,
    0 60px 90px -50px rgba(0,0,0,0.9),
    0 30px 60px -40px rgba(0,0,0,0.8);
  position: relative;
  overflow: hidden;
  text-align: left;
}
.phone::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 50%;
  width: 86px;
  height: 24px;
  transform: translateX(-50%);
  background: #000;
  border-radius: 14px;
  z-index: 4;
}
.phone::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 35px;
  background: linear-gradient(180deg, #14100b, #0c0907);
  z-index: 0;
}
.phone > * {
  position: relative;
  z-index: 1;
}

.phone-statusbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 22px 6px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.phone-statusbar-r { display: flex; align-items: center; gap: 5px; color: var(--ink); }

.phone-thread-head {
  display: grid;
  grid-template-columns: 22px 1fr 22px;
  align-items: center;
  padding: 6px 6px 12px;
  border-bottom: 1px solid var(--phone-line);
  gap: 6px;
}
.phone-back, .phone-info {
  color: var(--accent);
  width: 22px; height: 22px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 13px;
}
.phone-info {
  border: 1px solid var(--accent-line);
  border-radius: 50%;
  font-size: 10px;
  font-style: italic;
}
.phone-contact {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
}
.phone-contact-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, #2a2620, #15130f);
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  color: var(--ink);
}
.phone-contact-avatar.is-accent {
  background: linear-gradient(135deg, var(--accent-dim), rgba(0,0,0,0.6));
  border-color: var(--accent-line);
  color: var(--accent);
}
.phone-contact-name {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 260px;
}
.phone-contact-sub {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}

.phone-thread {
  flex: 1;
  padding: 16px 6px 8px;
  min-height: 0;
  overflow: hidden;
}

.phone-thread-track {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.phone-day {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  margin: 2px 0 6px;
}

/* Empty state on buyer phone before send */
.phone-empty {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  margin: auto; padding: 28px 18px;
  color: var(--ink-muted); text-align: center;
}
.phone-empty-icon { color: var(--ink-faint); margin-bottom: 8px; opacity: 0.6; }
.phone-empty-title { font-family: var(--font-display); font-size: 17px; color: var(--ink-dim); }
.phone-empty-sub { font-size: 11.5px; font-family: var(--font-mono); letter-spacing: 0.04em; }

.pbub-row {
  display: flex;
  opacity: 1;
}
.pbub-them { justify-content: flex-start; }
.pbub-me   { justify-content: flex-end; }

.pbub {
  max-width: 84%;
  padding: 7px 11px 8px;
  border-radius: 16px;
  font-size: 12.5px;
  line-height: 1.42;
  letter-spacing: -0.005em;
  word-wrap: break-word;
  text-align: left;
}
.pbub-them .pbub {
  background: var(--bub-them);
  color: var(--bub-them-ink);
  border-bottom-left-radius: 4px;
}
.pbub-me .pbub {
  background: var(--bub-me);
  color: var(--bub-me-ink);
  border-bottom-right-radius: 4px;
  font-weight: 500;
}

.pbub b { font-weight: 600; }

.pbub-speaker {
  font-family: var(--font-mono);
  font-size: 9px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 4px;
}

.pbub-me .pbub-speaker {
  color: rgba(26,22,16,0.58);
}

.thread-indicator {
  display: flex;
  justify-content: center;
  margin: 4px 0;
}

.thread-indicator span {
  max-width: 80%;
  border: 1px solid var(--phone-line);
  border-radius: 999px;
  padding: 4px 9px;
  background: rgba(244,239,230,0.035);
  color: var(--ink-muted);
  font-family: var(--font-mono);
  font-size: 9px;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
}

.photo-preview {
  width: min(70%, 142px);
  aspect-ratio: 5 / 4;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(244,239,230,0.12);
  background: #15130f;
  box-shadow: 0 12px 28px rgba(0,0,0,0.22);
}

.photo-preview img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 44%;
}

.pbub-note {
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid rgba(244,239,230,0.08);
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 6px;
}
.pbub-note-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* Match card — Quiet's structured signal */
.pbub-card-row .pbub-card {
  width: 94%;
  max-width: 94%;
  background: var(--bub-them);
  border: 1px solid var(--accent-line);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  padding: 0;
  overflow: hidden;
}
.pbub-card-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 12px;
  background: var(--accent-dim);
  border-bottom: 1px solid var(--accent-line);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}
.pbub-card-stat {
  display: inline-flex; align-items: center; gap: 6px;
}
.pbub-card-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent-dim);
}
.pbub-card-time { color: var(--ink-muted); }
.pbub-card-row .pbub {
  width: 94%;
}
.pbub-card-rows {
  display: flex; flex-direction: column; gap: 6px;
  padding: 8px 12px 12px;
}
.pbub-card-line {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 10px;
  font-size: 11.5px;
  line-height: 1.4;
}
.pbub-card-match {
  display: flex; flex-direction: column; gap: 1px;
  padding: 7px 0;
  border-bottom: 1px dashed var(--line);
}
.pbub-card-match:last-child { border-bottom: 0; }
.pbub-card-match-name {
  font-size: 12.5px;
  color: var(--ink);
  font-weight: 500;
  font-family: var(--font-body);
}
.pbub-card-match-why {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}
.pbub-card-key {
  font-family: var(--font-mono);
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  padding-top: 1px;
}
.pbub-card-val { color: var(--ink); }

/* Draft bubble */
.pbub-draft-row .pbub-draft {
  width: 94%;
  max-width: 94%;
  padding: 0;
  background: transparent;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--accent-line);
}
.pbub-draft-head {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 11px;
  background: var(--accent-dim);
  font-family: var(--font-mono);
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  border-bottom: 1px solid var(--accent-line);
}
.pbub-draft-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent-dim);
}
.pbub-draft-body {
  padding: 9px 11px 10px;
  background: var(--bub-them);
  font-family: var(--font-display);
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink);
  text-wrap: pretty;
}

.pbub-draft-actions {
  display: flex; gap: 5px;
  padding: 0 7px 9px;
  background: var(--bub-them);
}
.pbtn {
  flex: 1;
  height: 28px;
  border-radius: 7px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  display: inline-flex; align-items: center; justify-content: center; gap: 4px;
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.pbtn-edit {
  color: var(--ink-dim);
  border: 1px solid var(--line-strong);
  background: transparent;
}
.pbtn-edit:hover { color: var(--ink); border-color: var(--ink-muted); }
.pbtn-send {
  background: var(--accent);
  color: #1a1610;
}
.pbtn-send:hover { background: color-mix(in oklab, var(--accent) 90%, white); }

.pbub-sent {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px 2px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--positive);
}
.pbub-read {
  text-align: right;
  padding: 2px 8px 2px 0;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.pbub-replay {
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
}
.pbub-replay:hover { color: var(--ink); border-color: var(--ink-muted); }

.phone-composer {
  display: flex; align-items: center; gap: 6px;
  margin-top: auto;
  padding: 6px 4px 2px;
  border-top: 1px solid var(--phone-line);
}
.phone-composer-field {
  flex: 1;
  height: 28px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  display: flex; align-items: center;
  padding: 0 12px;
  font-size: 11.5px;
  color: var(--ink-muted);
}
.phone-composer-send {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--accent);
  color: #1a1610;
  display: grid; place-items: center;
  flex-shrink: 0;
}

/* ── Mantra ───────────────────────────────────────────────────────────── */
.mantra {
  padding-block: clamp(120px, 14vw, 200px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mantra::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("images/watch-dark.jpg");
  background-size: cover;
  background-position: center;
  filter: grayscale(20%) brightness(0.55) contrast(1.05);
  z-index: 0;
}
.mantra::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(15,14,12,0.55) 0%, rgba(15,14,12,0.85) 70%, var(--bg) 100%);
  z-index: 1;
}
.mantra > .container { position: relative; z-index: 2; }
.mantra-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.mantra-rule {
  position: relative;
  width: 100%;
  max-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mantra-rule::before,
.mantra-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}
.mantra-rule-mark {
  display: inline-flex;
  align-items: center;
  margin: 0 14px;
  position: relative;
}
.mantra-rule-mark::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  position: relative;
}
.mantra-rule-mark::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent-dim);
  margin-left: -19px;
}
.mantra-line {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  max-width: 16ch;
  text-wrap: balance;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.mantra-em {
  font-style: italic;
  color: var(--accent);
}
.mantra-tail {
  display: block;
  color: var(--ink);
}

/* ── Product: managed associate, not software ───────────────────────── */
.product {
  padding-block: clamp(88px, 11vw, 150px);
  border-top: 1px solid var(--line);
}
.product-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
}
.product-copy {
  max-width: 760px;
}
.product-copy .eyebrow {
  margin-bottom: 26px;
}
.product-copy h2 {
  margin: 0 0 24px;
}
.typed-name {
  color: var(--accent);
  display: inline;
}
.typing-caret {
  display: inline-block;
  width: 1px;
  height: 0.78em;
  margin-left: 3px;
  background: var(--accent);
  vertical-align: -0.04em;
  animation: caret-blink 1s steps(2, start) infinite;
}
@keyframes caret-blink {
  50% { opacity: 0; }
}
.product-copy p {
  margin: 0;
  max-width: 62ch;
  color: var(--ink-dim);
  font-size: 17px;
  line-height: 1.65;
  text-wrap: pretty;
}
.product-copy p + p {
  margin-top: 18px;
}
.product-lede {
  color: var(--ink) !important;
  font-family: var(--font-display);
  font-size: clamp(25px, 3vw, 38px) !important;
  line-height: 1.1 !important;
  max-width: 18ch !important;
  margin-bottom: 30px !important;
}
.product-card {
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.035), transparent 46%),
    var(--surface);
  border-radius: 16px;
  padding: clamp(24px, 3vw, 34px);
  box-shadow: 0 24px 90px rgba(0,0,0,0.18);
}
.product-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}
.product-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent-dim);
  border: 1px solid var(--accent-line);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 30px;
}
.product-name {
  font-family: var(--font-display);
  color: var(--ink);
  font-size: 32px;
  line-height: 1;
}
.product-role {
  margin-top: 5px;
  color: var(--ink-muted);
  font-size: 13px;
}
.product-facts {
  margin: 0;
}
.product-facts div {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.product-facts div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.product-facts dt {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: var(--label-tracking);
  text-transform: uppercase;
  color: var(--ink-muted);
}
.product-facts dd {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
}
.product-files {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.product-files span {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.035);
  border-radius: 999px;
  padding: 5px 9px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-dim);
}

.principles {
  padding-block: clamp(72px, 9vw, 120px);
}
.principles-intro {
  display: flex; flex-direction: column; gap: 18px;
  max-width: 720px;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
@media (max-width: 820px) {
  .principles-grid { grid-template-columns: 1fr; }
}

.commit {
  background: var(--bg);
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.commit-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: var(--label-tracking);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.commit-num::before {
  content: "";
  width: 14px;
  height: 1.5px;
  background: var(--accent);
  border-radius: 1px;
}
.commit-num::after {
  content: none;
}
.commit-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 4px 0 6px;
  text-wrap: balance;
}
.commit-body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-dim);
  margin: 0;
  text-wrap: pretty;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 56px;
}
@media (max-width: 820px) { .how-grid { grid-template-columns: 1fr; } }

.how-step {
  background: var(--bg);
  padding: 32px 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 320px;
  position: relative;
}
.how-step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: var(--label-tracking);
}
.how-step-title {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 4px 0 4px;
}
[data-direction="workshop"] .how-step-title { font-size: 22px; font-weight: 500; }
[data-direction="operator"] .how-step-title { font-size: 20px; font-family: var(--font-body); font-weight: 500; }
.how-step-body { color: var(--ink-dim); font-size: 14.5px; line-height: 1.55; }

.how-step-viz {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px dashed var(--line);
  min-height: 90px;
  display: flex;
  align-items: center;
}

[data-direction="workshop"] .how-grid { border-radius: 10px; }
[data-direction="operator"] .how-grid { border-radius: 4px; }

/* ── FAQ (live text thread) ──────────────────────────────────────────── */
.faq {
  padding-block: clamp(72px, 8vw, 112px);
}
.faq-intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 640px;
  margin-bottom: clamp(34px, 4vw, 56px);
}
.faq-thread {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 640px;
  margin: 0 auto;
  padding: 20px 0 8px;
}
.faq-thread-day {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 8px;
}
.faq-thread-end {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 24px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 360ms ease, transform 360ms ease;
}
.faq-thread-end[data-sent="1"] {
  opacity: 1;
  transform: translateY(0);
}

.faq-exchange {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fbub {
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-width: 82%;
  opacity: 0;
  transform: translateY(12px) scale(0.985);
  transition:
    opacity 180ms ease,
    transform 220ms cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform;
}
.fbub[data-sent="1"] {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.fbub-me {
  align-self: flex-end;
  align-items: flex-end;
}
.fbub-them {
  align-self: flex-start;
  margin-top: 12px;
}

.fbub-body {
  padding: 12px 16px 14px;
  border-radius: 20px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.005em;
}
.fbub-me .fbub-body {
  background: var(--accent);
  color: #1a1610;
  border-bottom-right-radius: 6px;
  font-weight: 500;
}
.fbub-status {
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1;
  color: var(--ink-muted);
  padding-right: 6px;
  opacity: 0;
  transform: translateY(-2px);
  transition: opacity 160ms ease, transform 160ms ease;
}
.fbub[data-sent="1"] .fbub-status {
  opacity: 1;
  transform: translateY(0);
}
.fbub-them .fbub-body {
  background: #1F1D18;
  color: var(--ink);
  border-bottom-left-radius: 6px;
}

.fbub-meta {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding-left: 4px;
}
.fbub-meta-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-dim);
}
/* Old accordion FAQ styles — superseded by .faq-thread chat layout.
   Kept commented to avoid bleeding into the new design.
.faq-list { margin-top: 56px; }
.faq-item {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  cursor: pointer;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
}
.faq-q {
  flex: 1;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--ink);
  text-wrap: balance;
}
[data-direction="workshop"] .faq-q { font-size: 18px; font-weight: 500; }
[data-direction="operator"] .faq-q { font-size: 17px; font-family: var(--font-body); font-weight: 500; }

.faq-toggle {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--ink-muted);
  width: 24px;
  text-align: center;
  transition: transform .25s ease, color .25s ease;
}
.faq-item[data-open="1"] .faq-toggle { transform: rotate(45deg); color: var(--accent); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, margin-top .35s ease, opacity .25s ease;
  opacity: 0;
  color: var(--ink-dim);
  font-size: 16px;
  line-height: 1.6;
  max-width: 88ch;
}
.faq-item[data-open="1"] .faq-a {
  max-height: 400px;
  margin-top: 14px;
  opacity: 1;
}
*/

/* ── Waitlist (Talk to us) ───────────────────────────────────────────── */
.waitlist {
  background: var(--bg-elevated);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(72px, 8vw, 116px);
}
.talk {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.talk .eyebrow { margin-bottom: 28px; }
.talk-headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.talk-paras {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 36px 0 0;
  max-width: 52ch;
  text-align: left;
}
.talk-paras p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-dim);
  margin: 0;
  text-wrap: pretty;
}
.talk-paras em {
  font-style: italic;
  color: var(--ink);
}
.talk-channels {
  list-style: none;
  margin: 48px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  max-width: 560px;
}
.talk-channels li {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  gap: 24px;
  padding: 24px 4px;
  border-top: 1px solid var(--line);
  border-bottom: 0;
  text-align: left;
  transition: padding-left .2s ease;
}
.talk-channels li:last-child { border-bottom: 1px solid var(--line); }
.talk-channels li:hover { padding-left: 12px; }
.talk-channel-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: var(--label-tracking);
  text-transform: uppercase;
  color: var(--ink-muted);
}
.talk-channels a {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: 0.01em;
  color: var(--ink);
  text-decoration: none;
  transition: color .18s ease;
}
.talk-channels a:hover { color: var(--accent); }

.talk-sign {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  width: 100%;
  max-width: 440px;
  justify-content: flex-start;
  text-align: left;
}
.talk-sign-dash {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--accent);
  line-height: 1;
}
.talk-sign-block { display: flex; flex-direction: column; gap: 4px; }
.talk-sign-name {
  font-family: var(--font-display);
  font-size: 32px;
  font-style: italic;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.005em;
}
.talk-sign-co {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* ── Footer ───────────────────────────────────────────────────────────── */
.footer {
  padding: 40px 0 32px;
  color: var(--ink-muted);
  font-size: 13px;
}
.footer-top {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.footer-mark {
  width: min(340px, 64vw);
  opacity: 0.9;
}
.footer-mark .display {
  display: none;
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 18px;
  gap: 14px;
  text-align: center;
}
.footer-right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  min-width: max-content;
}
.footer-contact a:last-child {
  color: var(--accent);
}
.footer-links a:hover { color: var(--ink); }
.footer-contact a:hover { color: var(--ink); }

/* ── Legal pages ─────────────────────────────────────────────────────── */
.legal-page {
  background:
    radial-gradient(circle at 50% 0%, rgba(212,165,116,0.08), transparent 34%),
    var(--bg);
}
.legal-shell {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 120px) 0;
}
.legal-back {
  display: inline-flex;
  margin-bottom: clamp(56px, 8vw, 88px);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.legal-back:hover {
  color: var(--ink);
}
.legal-shell h1 {
  margin: 0 0 28px;
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 84px);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--ink);
}
.legal-shell h2 {
  margin: 44px 0 10px;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--ink);
}
.legal-shell p {
  margin: 0 0 18px;
  max-width: 66ch;
  color: var(--ink-dim);
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.7;
}
.legal-shell a:not(.legal-back) {
  color: var(--accent);
}

/* ── Logo ─────────────────────────────────────────────────────────────── */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', 'Instrument Serif', Georgia, serif;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
}
[data-direction="workshop"] .logo { font-family: var(--font-body); font-weight: 600; letter-spacing: -0.02em; font-size: 19px; }
[data-direction="operator"] .logo { font-family: var(--font-mono); font-size: 17px; font-weight: 500; letter-spacing: -0.01em; }

.logo-mark {
  width: 22px; height: 22px;
  display: grid; place-items: center;
}
.logo-mark svg { width: 100%; height: 100%; }

/* ── Reveal on scroll ─────────────────────────────────────────────────── */
.reveal {
  opacity: 1;
  transform: none;
}
.reveal[data-shown="0"] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}

/* Direction banner (subtle, top-left, while tweaks panel open) */
.dir-indicator {
  position: fixed;
  top: 76px;
  left: var(--gutter);
  z-index: 40;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--ink-muted);
  letter-spacing: var(--label-tracking);
  text-transform: uppercase;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: blur(20px);
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s ease;
}
.dir-indicator[data-on="1"] { opacity: 1; }
.dir-indicator .dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); margin-right: 8px; vertical-align: 1px;
}

/* ── Mobile polish ────────────────────────────────────────────────────── */
@media (max-width: 760px) {
  :root {
    --gutter: 18px;
    --section-y: 72px;
  }

  .section {
    padding-block: var(--section-y);
  }

  .display-l {
    font-size: clamp(34px, 10.5vw, 46px);
    line-height: 1.02;
  }

  .nav-inner {
    height: auto;
    min-height: 54px;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row;
    padding-block: 10px;
  }

  .logo {
    display: none;
  }

  .nav-links {
    width: 100%;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: flex-end;
    white-space: nowrap;
  }

  .nav-phone {
    font-size: 9.5px;
    letter-spacing: 0.12em;
  }

  .hero-fullscreen {
    min-height: 100svh;
    padding-top: 58px;
    padding-bottom: 56px;
    justify-content: flex-start;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-block: clamp(30px, 5svh, 46px) 44px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy .eyebrow {
    margin-bottom: 22px;
  }

  .hero-center {
    min-height: calc(100svh - 102px);
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    gap: 18px;
    padding-block: clamp(72px, 14svh, 116px) 72px;
  }

  .hero-headline {
    font-size: clamp(44px, 12.8vw, 56px);
    line-height: 0.96;
    letter-spacing: -0.02em;
    max-width: min(12.5ch, 100%);
  }

  .hero-lead {
    font-size: 15px;
    line-height: 1.5;
    margin: 18px 0 0;
    max-width: min(34ch, 100%);
    margin-inline: auto;
  }

  .hero-subhead {
    font-size: 14.5px;
    line-height: 1.42;
    max-width: min(37ch, 100%);
  }

  .hero-quinn-contact {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-top: 0;
  }

  .hero-quinn-phone {
    font-size: clamp(27px, 8.2vw, 36px);
  }

  .hero-actions {
    width: auto;
    max-width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
  }

  .hero-actions .btn {
    width: auto;
    max-width: calc(100vw - (var(--gutter) * 2));
    height: 46px;
    padding-inline: 20px;
  }

  .hero-signature {
    right: -34%;
    bottom: 23%;
    width: 178%;
    opacity: 0.11;
  }

  .hero-watch {
    width: 188vw;
    max-width: none;
    opacity: 0.13;
    mask-image: radial-gradient(circle at 48% 48%, #000 25%, transparent 66%);
    -webkit-mask-image: radial-gradient(circle at 48% 48%, #000 25%, transparent 66%);
  }


  .hero-scroll {
    display: none;
  }

  .intro {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .moments {
    padding-block: 72px;
  }

  .moments-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .moments-head {
    position: static;
    gap: 14px;
  }

  .moment-row {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 24px 0;
  }

  .moment-index {
    padding-top: 0;
  }

  .moment-copy h3 {
    font-size: clamp(28px, 8.8vw, 36px);
  }

  .moment-copy p {
    font-size: 14.5px;
    line-height: 1.52;
  }

  .product {
    padding-block: 72px;
  }

  .product-wrap {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .product-copy .eyebrow {
    margin-bottom: 20px;
  }

  .product-lede {
    max-width: min(34ch, 100%) !important;
  }

  .product-copy p {
    font-size: 15.5px;
    line-height: 1.58;
  }

  .product-card {
    border-radius: 12px;
    padding: 22px 20px;
  }

  .product-facts div {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 15px 0;
  }

  .intro-head {
    gap: 14px;
    margin-bottom: 40px;
    text-align: center;
    align-items: center;
  }

  .intro-sub,
  .lede,
  .talk-paras p {
    font-size: 15.5px;
    line-height: 1.55;
  }

  .phones-stage {
    gap: 28px;
    align-items: center;
  }

  .phones-col {
    width: min(100%, 330px);
  }

  .phones-arrow {
    margin-top: 0;
  }

  .phone {
    border-radius: 28px;
    padding: 10px 8px 8px;
  }

  .phone-thread {
    min-height: 0;
    padding: 12px 4px 8px;
  }

  .pbub {
    font-size: 12px;
  }

  .mantra {
    padding-block: 90px;
  }

  .mantra-line {
    font-size: clamp(34px, 11vw, 48px);
    max-width: 13ch;
  }

  .principles-intro {
    gap: 14px;
    margin-bottom: 34px;
  }

  .principles-grid {
    border-radius: 12px;
  }

  .commit {
    padding: 24px 20px 26px;
  }

  .commit-title {
    font-size: 29px;
  }

  .faq {
    padding-block: 72px;
  }

  .faq-intro {
    gap: 14px;
    margin-bottom: 30px;
  }

  .faq-thread {
    gap: 12px;
    padding-top: 16px;
  }

  .fbub {
    max-width: 92%;
  }

  .fbub-body {
    padding: 10px 13px 12px;
    border-radius: 18px;
    font-size: 14.5px;
    line-height: 1.45;
  }

  .talk {
    text-align: left;
    align-items: flex-start;
  }

  .talk .eyebrow {
    margin-bottom: 22px;
  }

  .talk-paras {
    margin-top: 28px;
  }

  .talk-channels {
    margin-top: 34px;
    max-width: 100%;
  }

  .talk-channels li {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 0;
  }
  .talk-channels li:hover { padding-left: 0; }

  .talk-channels a {
    font-size: 24px;
    overflow-wrap: anywhere;
  }

  .footer {
    padding: 36px 0 30px;
  }

  .footer-top {
    justify-content: center;
    padding-bottom: 24px;
  }

  .footer-mark {
    width: min(280px, 80vw);
  }

  .footer-bottom,
  .footer-right,
  .footer-links,
  .footer-contact {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
}

@media (max-width: 380px) {
  .nav-inner {
    min-height: 52px;
    padding-block: 9px;
  }

  .nav-links {
    gap: 8px;
  }

  .nav-phone {
    font-size: 8.8px;
    letter-spacing: 0.09em;
  }

  .hero-headline {
    font-size: clamp(40px, 12.2vw, 50px);
  }

  .hero-layout {
    gap: 10px;
    padding-block: 18px 36px;
  }

  .hero-copy .eyebrow {
    margin-bottom: 14px;
  }

  .hero-lead {
    font-size: 14px;
    line-height: 1.42;
    margin-top: 12px;
    max-width: 31ch;
  }

  .phones-col {
    width: 100%;
  }
}

/* ── Quiet luxury redesign pass, inspired by the supplied mockup ───────── */
:root {
  --bg: #0b0a08;
  --bg-elevated: #100d0a;
  --surface: #16120d;
  --surface-2: #1c1711;
  --line: rgba(243,236,225,0.10);
  --line-strong: rgba(243,236,225,0.16);
  --ink: #f3ece1;
  --ink-dim: #b3aa9b;
  --ink-muted: rgba(243,236,225,0.42);
  --ink-faint: rgba(243,236,225,0.22);
  --accent: #c8aa78;
  --accent-dim: rgba(200,170,120,0.20);
  --accent-line: rgba(200,170,120,0.34);
  --container: 1280px;
  --gutter: clamp(24px, 6vw, 96px);
  --label-tracking: 0.22em;
}

html,
body {
  background: var(--bg);
}

body {
  background:
    radial-gradient(ellipse 72% 56% at 50% 4%, rgba(200,170,120,0.07), transparent 62%),
    radial-gradient(ellipse 90% 70% at 50% 50%, transparent 34%, rgba(0,0,0,0.58) 100%),
    var(--bg);
}

body::before {
  opacity: 0.34;
}

.container {
  max-width: var(--container);
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(104px, 12vh, 168px);
}

.section + .section {
  border-top-color: rgba(243,236,225,0.055);
}

.eyebrow {
  gap: 12px;
  color: var(--ink-dim);
  font-size: 10.5px;
  letter-spacing: var(--label-tracking);
}

.eyebrow::before {
  box-shadow: 0 0 0 4px rgba(200,170,120,0.12);
}

.btn {
  height: auto;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 999px;
  letter-spacing: 0;
}

.btn-primary {
  background: var(--ink);
  color: #14110b;
}

.btn-primary:hover {
  background: #fff;
  transform: translateY(-2px);
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
}

.nav[data-scrolled="1"] {
  background: rgba(11,10,8,0.74);
  border-bottom-color: rgba(243,236,225,0.08);
  backdrop-filter: blur(14px) saturate(1.08);
  -webkit-backdrop-filter: blur(14px) saturate(1.08);
}

.nav-inner {
  height: 74px;
}

.logo {
  gap: 13px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
}

.logo-mark {
  width: 30px !important;
  height: 30px !important;
  flex: 0 0 30px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  position: relative;
}

.logo-mark::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 50%;
  width: 7px;
  height: 1px;
  background: var(--accent);
}

.logo-mark svg {
  width: 20px;
  height: 20px;
}

.nav-links {
  gap: 4px;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 15px;
  border-radius: 999px;
  color: var(--ink);
  letter-spacing: 0.18em;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.nav-link-secondary {
  color: var(--ink-dim);
}

.nav-phone:last-child {
  border: 1px solid var(--line);
}

.nav-phone:hover {
  color: var(--accent);
  border-color: var(--accent-line);
}

.hero-fullscreen {
  min-height: 100svh;
  padding-top: 128px;
  padding-bottom: 72px;
  isolation: isolate;
  background:
    radial-gradient(ellipse 60% 50% at 50% 38%, rgba(200,170,120,0.075), transparent 70%),
    radial-gradient(ellipse 90% 70% at 50% 60%, transparent 40%, rgba(0,0,0,0.55) 100%),
    var(--bg);
}

.hero-watch {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(118vh, 1040px);
  max-width: 1040px;
  opacity: 0.16;
  transform: translate(-50%, -54%);
  z-index: -1;
  mask-image: none;
  -webkit-mask-image: none;
}

.hero-center {
  max-width: 780px;
  gap: 26px;
  padding-block: 0 96px;
}

.hero-headline {
  font-size: clamp(56px, 8vw, 104px);
  max-width: 13ch;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-lead {
  color: var(--ink-dim);
  max-width: 510px;
  font-size: clamp(15.5px, 1.15vw, 17.5px);
  line-height: 1.62;
}

.hero-actions {
  margin-top: 4px;
}

.hero-signature {
  left: 50%;
  right: auto;
  bottom: 6%;
  width: min(98vw, 1120px);
  transform: translateX(-50%) rotate(-2deg);
  color: var(--accent);
  opacity: 0.10;
  z-index: -1;
}

.hero-scroll {
  bottom: 26px;
  color: rgba(243,236,225,0.40);
}

.hero-scroll svg {
  animation: none;
}

.intro {
  text-align: center;
}

.intro-head {
  max-width: 780px;
  margin-bottom: 84px;
}

.intro-headline {
  font-size: clamp(38px, 4.8vw, 66px);
}

.intro-sub {
  max-width: 560px;
  color: var(--ink-dim);
}

.phones-stage {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  justify-items: center;
  gap: clamp(28px, 5vw, 80px);
}

.phones-col {
  width: min(100%, 360px);
}

.phones-cap {
  align-items: flex-start;
  padding-inline: 0;
}

.phones-cap-tag {
  color: var(--accent);
  background: transparent;
  border-color: var(--accent-line);
  border-radius: 5px;
}

.phones-cap-copy {
  color: var(--ink-dim);
}

.phone {
  max-width: 340px;
  border-color: rgba(200,170,120,0.12);
  text-align: left;
  box-shadow:
    0 0 0 1.5px rgba(200,170,120,0.10),
    0 2px 2px rgba(255,255,255,0.05) inset,
    0 60px 90px -50px rgba(0,0,0,0.9),
    0 30px 60px -40px rgba(0,0,0,0.8);
}

.phone::after {
  background: linear-gradient(180deg, #14100b, #0c0907);
}

.pbub {
  font-size: 12.5px;
  line-height: 1.42;
  text-align: left;
}

.pbub-them .pbub {
  background: #241d15;
}

.pbub-me .pbub,
.fbub-me .fbub-body {
  background: linear-gradient(180deg, #d4b483, #c29f6f);
}

.moments {
  padding-block: clamp(108px, 12vh, 170px);
}

.moments-wrap {
  grid-template-columns: minmax(280px, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(40px, 7vw, 120px);
}

.moments-head {
  top: 120px;
}

.moments-head .display-l {
  font-size: clamp(40px, 4.4vw, 62px);
}

.moments-head .lede {
  max-width: 390px;
  margin-top: 4px;
}

.moments-list {
  border-top: 0;
}

.moment-row {
  grid-template-columns: 48px 1fr;
  gap: 22px;
  padding: 30px 0;
  border-color: rgba(243,236,225,0.075);
}

.moment-copy h3 {
  font-size: clamp(28px, 3vw, 38px);
}

.moment-copy p {
  max-width: 480px;
}

.principles {
  padding-block: clamp(96px, 11vh, 150px);
}

.principles-intro {
  margin-bottom: 64px;
}

.principles-grid {
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(200,170,120,0.035), transparent 42%),
    var(--line);
}

.commit {
  background: var(--surface);
  padding: 40px clamp(28px, 3vw, 44px) 48px;
}

.commit-title {
  font-size: 30px;
}

.mantra {
  min-height: 64vh;
  display: grid;
  place-items: center;
  padding-block: clamp(120px, 14vw, 200px);
}

.mantra::after {
  background:
    linear-gradient(90deg, rgba(8,7,5,0.86), rgba(8,7,5,0.50) 50%, rgba(8,7,5,0.86)),
    radial-gradient(ellipse 50% 60% at 50% 50%, transparent, rgba(8,7,5,0.70));
}

.mantra-line {
  max-width: 720px;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.12;
  gap: 6px;
}

.mantra-em {
  display: block;
}

.mantra-tail {
  display: block;
}

.faq-intro {
  align-items: center;
  text-align: center;
  margin-inline: auto;
}

.faq-thread {
  max-width: 560px;
  gap: 10px;
}

.fbub-body {
  border-radius: 20px;
}

.fbub-them .fbub-body {
  background: var(--surface-2);
  border: 1px solid var(--line);
}

.fbub,
.faq-thread-end {
  opacity: 1;
  transform: none;
}

.waitlist {
  background: var(--bg);
}

.talk {
  max-width: 680px;
}

.talk .display-l {
  font-size: clamp(42px, 5.2vw, 70px);
}

.talk-paras {
  text-align: center;
}

.talk-channels {
  max-width: 580px;
}

.talk-channels li {
  grid-template-columns: 80px 1fr;
  padding: 26px 4px;
}

.footer {
  padding: 64px 0 40px;
}

.footer-top {
  border-top: 1px solid var(--line);
  padding-top: 36px;
}

.footer-mark {
  width: min(440px, 70vw);
}

.footer-bottom {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .phones-stage,
  .moments-wrap {
    grid-template-columns: 1fr;
  }

  .phones-arrow {
    display: none;
  }

  .moments-head {
    position: static;
  }
}

@media (max-width: 760px) {
  :root {
    --gutter: 20px;
  }

  .nav {
    background: rgba(11,10,8,0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .nav-inner {
    min-height: 58px;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
  }

  .logo {
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 0;
    max-width: 36px;
    overflow: hidden;
  }

  .logo-mark {
    width: 30px !important;
    height: 30px !important;
  }

  .nav-links {
    width: auto;
    flex: 0 0 auto;
    gap: 4px;
    margin-left: auto;
  }

  .nav-link-secondary {
    display: none;
  }

  .nav-phone {
    font-size: 9.5px;
    padding-inline: 12px;
    white-space: nowrap;
  }

  .hero-fullscreen {
    padding-top: 96px;
    overflow: hidden;
  }

  .hero-center {
    width: 100%;
    max-width: none;
    padding-inline: 0;
  }

  .hero-center .eyebrow {
    max-width: 30ch;
    justify-content: center;
    text-align: center;
    line-height: 1.45;
    letter-spacing: 0.14em;
  }

  .hero-headline {
    width: 100%;
    max-width: min(11.8ch, 100%);
    font-size: clamp(44px, 13vw, 56px);
    overflow-wrap: normal;
  }

  .hero-lead {
    max-width: min(32ch, 100%);
    font-size: 15.5px;
  }

  .hero-watch {
    width: 164vw;
    opacity: 0.15;
  }

  .hero-signature {
    bottom: 20%;
    width: 178%;
  }

  .intro-head {
    margin-bottom: 46px;
  }

  .phones-stage {
    width: min(100%, 340px);
    margin-inline: auto;
    gap: 22px;
  }

  .phones-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 36px;
    margin: -2px 0 2px;
    color: var(--accent);
  }

  .phones-arrow svg {
    width: 64px;
    height: 18px;
    opacity: 0.78;
    transform: rotate(90deg);
  }

  .moment-row {
    grid-template-columns: 1fr;
  }

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

  .talk {
    text-align: left;
    align-items: flex-start;
  }

  .talk-paras {
    text-align: left;
  }

  .talk-channels li {
    grid-template-columns: 1fr;
  }
}
