/* ────────────────────────────────────────────
   DAD-BOT LANDING — OLIVE / KHAKI
   Palette: deep olive, warm sand, cream
   Type: Barlow Condensed display, IBM Plex Sans body
   ──────────────────────────────────────────── */

:root {
  --bg: #2e3026;
  --bg-elevated: #363830;
  --bg-card: #393b31;
  --bg-dark: #232519;
  --bg-warm: #3a3828;
  --text: rgba(240, 232, 212, 0.74);
  --text-strong: #f0e8d4;
  --text-muted: rgba(240, 232, 212, 0.48);
  --text-faint: rgba(240, 232, 212, 0.28);
  --accent: #c9b87a;
  --accent-dim: rgba(201, 184, 122, 0.2);
  --line: rgba(240, 232, 212, 0.08);
  --line-strong: rgba(240, 232, 212, 0.14);
  --ios-blue: #0a84ff;
  --ios-blue-strong: #0071eb;
  --ios-gray: #e9e9eb;
  --ios-sheet: #f5f5f7;
  --ios-text: #111114;
  --max-width: 1240px;
  --gutter: 24px;
  --header-offset: 108px;
  --display-font: "Barlow Condensed", sans-serif;
  --body-font: "IBM Plex Sans", sans-serif;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

section[id] {
  scroll-margin-top: var(--header-offset);
}

section[id]:target::before {
  content: "";
  display: block;
  height: var(--header-offset);
  margin-top: calc(var(--header-offset) * -1);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  overflow-x: hidden;
  font-family: var(--body-font);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(to right, transparent 0, transparent calc(50% - 620px), rgba(240, 232, 212, 0.04) calc(50% - 620px), rgba(240, 232, 212, 0.04) calc(50% - 619px), transparent calc(50% - 619px)),
    linear-gradient(to right, transparent 0, transparent calc(50% + 619px), rgba(240, 232, 212, 0.04) calc(50% + 619px), rgba(240, 232, 212, 0.04) calc(50% + 620px), transparent calc(50% + 620px));
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ─── GRID SHELL ─── */

.site-shell {
  width: min(var(--max-width), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
}

/* ─── HEADER ─── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(46, 48, 38, 0.9);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  align-items: center;
  min-height: 88px;
}

.brand {
  grid-column: 1 / span 3;
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: min(172px, 100%);
  height: auto;
  filter: invert(1) brightness(0.88) sepia(0.18) saturate(0.6);
}

.site-nav {
  grid-column: 4 / span 6;
  display: flex;
  justify-content: center;
  gap: 18px;
}

.site-nav a,
.kicker,
.step__number,
.message__sender,
.night-card__eyebrow,
.signal-card__eyebrow,
.signal-card__caption,
.process-poster__label,
.boundary-card__icon {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav a {
  color: var(--text-faint);
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: var(--text-strong);
}

.site-header .button {
  grid-column: 11 / span 2;
  justify-self: end;
}

/* ─── BUTTONS ─── */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid var(--line-strong);
  font-family: var(--body-font);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 100ms ease;
  cursor: pointer;
}

.button:hover { transform: translateY(-1px); }

.button--solid {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg-dark);
}

.button--solid:hover {
  background: #d4c48a;
  border-color: #d4c48a;
}

.button--outline {
  background: transparent;
  color: var(--text-strong);
  border-color: var(--line-strong);
}

.button--outline:hover {
  background: rgba(240, 232, 212, 0.04);
  border-color: rgba(240, 232, 212, 0.2);
}

.button--ghost {
  background: transparent;
  color: var(--text-strong);
  border-color: var(--line-strong);
}

.button--ghost:hover {
  background: rgba(240, 232, 212, 0.04);
  border-color: rgba(240, 232, 212, 0.2);
}

.button--large {
  min-height: 58px;
  padding: 0 36px;
  font-size: 0.82rem;
}

/* ─── TYPOGRAPHY ─── */

h1, h2, h3 {
  margin: 0;
  font-family: var(--display-font);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.9;
  text-transform: none;
}

h1 {
  font-size: clamp(3.8rem, 7.2vw, 7.4rem);
  color: var(--text-strong);
}

h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  color: var(--text-strong);
  text-wrap: pretty;
}

h3 {
  font-size: 1.8rem;
  color: var(--text-strong);
  text-transform: none;
}

.locked-lines .line {
  display: block;
}

.kicker {
  margin: 0 0 18px;
  color: var(--accent);
}

.lede {
  max-width: 46ch;
  margin: 28px 0 0;
  color: var(--text);
  font-size: 1.06rem;
  line-height: 1.72;
}

/* ─── HERO ─── */

.hero {
  border-bottom: 1px solid var(--line);
}

.hero__grid {
  align-items: center;
  padding: 80px 0 92px;
}

.hero__copy {
  grid-column: 1 / span 6;
  padding-right: 12px;
}

.hero__device {
  grid-column: 8 / span 5;
}

.hero__device-stage {
  position: relative;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
}

.hero__device-stage::before {
  content: "";
  position: absolute;
  inset: 7% 4% 11% 24%;
  border-radius: 48px;
  background:
    radial-gradient(circle at 35% 28%, rgba(201, 184, 122, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(240, 232, 212, 0.06), rgba(240, 232, 212, 0.01));
  filter: blur(28px);
  z-index: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

/* ─── SIGNAL CARDS ─── */

.hero__signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 42px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
}

.signal-card {
  display: grid;
  gap: 10px;
  min-height: 140px;
  padding: 18px 18px 20px;
  border: 1px solid var(--line);
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
}

.signal-card::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 14px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dim));
  transform-origin: left center;
}

.signal-card > * { position: relative; z-index: 1; }

.signal-card__eyebrow,
.signal-card__caption,
.signal-card__token { display: block; }

.signal-card__eyebrow { color: var(--text-faint); }

.signal-card__token {
  margin-top: auto;
  font-family: var(--display-font);
  font-size: clamp(1.8rem, 2.2vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.88;
  color: var(--text-strong);
  text-transform: uppercase;
}

.signal-card__caption {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* ─── PHONE ─── */

.phone {
  position: relative;
  width: min(100%, 380px);
  margin-left: auto;
  padding: 11px;
  border: 1px solid rgba(240, 232, 212, 0.06);
  border-radius: 42px;
  background:
    radial-gradient(circle at 22% 10%, rgba(240, 232, 212, 0.14), transparent 18%),
    linear-gradient(145deg, #4a4d3e 0%, #2e3128 28%, #1a1c14 64%, #3e4136 100%);
  box-shadow:
    0 34px 82px rgba(0, 0, 0, 0.5),
    0 10px 26px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(240, 232, 212, 0.12),
    inset 0 -14px 24px rgba(0, 0, 0, 0.3);
  transform: perspective(1400px) rotateY(-11deg) rotateX(5deg) rotateZ(-1deg);
  transform-origin: 65% 50%;
  z-index: 1;
}

.phone::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 46px;
  padding: 1px;
  background:
    linear-gradient(180deg, rgba(240, 232, 212, 0.2), rgba(240, 232, 212, 0.02)),
    linear-gradient(90deg, rgba(240, 232, 212, 0.1), transparent 32%, transparent 72%, rgba(240, 232, 212, 0.08));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.phone__button {
  position: absolute;
  left: -3px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #585b4a 0%, #282a20 100%);
  box-shadow: inset 0 1px 0 rgba(240, 232, 212, 0.12);
}

.phone__button--mute { top: 102px; height: 26px; }
.phone__button--volume-up { top: 144px; height: 56px; }
.phone__button--volume-down { top: 212px; height: 56px; }
.phone__button--power { left: auto; right: -3px; top: 164px; height: 84px; }

.phone__screen {
  position: relative;
  overflow: hidden;
  border-radius: 31px;
  background: var(--ios-sheet);
  border: 1px solid rgba(240, 232, 212, 0.28);
  box-shadow:
    inset 0 0 0 1px rgba(17, 17, 20, 0.05),
    inset 0 -16px 36px rgba(17, 17, 20, 0.05);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", sans-serif;
}

.phone__notch {
  position: absolute;
  top: 13px;
  left: 50%;
  width: 124px;
  height: 28px;
  border-radius: 0 0 20px 20px;
  background: #0a0c08;
  transform: translateX(-50%);
  z-index: 3;
  box-shadow: inset 0 -1px 0 rgba(240, 232, 212, 0.05);
}

.phone__home-indicator {
  width: 128px;
  height: 5px;
  margin: 6px auto 8px;
  border-radius: 999px;
  background: rgba(17, 17, 20, 0.22);
}

/* ─── iOS CHROME ─── */

.ios-statusbar,
.chat-header,
.chat-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ios-statusbar {
  padding: 16px 18px 8px;
  color: rgba(17, 17, 20, 0.66);
  font-size: 0.78rem;
  font-weight: 700;
}

.ios-statusbar__time { letter-spacing: -0.01em; }
.ios-statusbar__icons { display: flex; align-items: center; gap: 7px; }

.ios-icon { display: inline-block; position: relative; }

.ios-icon--signal {
  width: 15px; height: 11px;
  background:
    linear-gradient(to top, rgba(17,17,20,.72) 0 100%) left bottom / 2px 5px no-repeat,
    linear-gradient(to top, rgba(17,17,20,.72) 0 100%) 4px bottom / 2px 7px no-repeat,
    linear-gradient(to top, rgba(17,17,20,.72) 0 100%) 8px bottom / 2px 9px no-repeat,
    linear-gradient(to top, rgba(17,17,20,.72) 0 100%) 12px bottom / 2px 11px no-repeat;
}

.ios-icon--wifi {
  width: 13px; height: 10px;
  border-top: 2px solid rgba(17,17,20,.72);
  border-left: 2px solid transparent;
  border-right: 2px solid transparent;
  border-radius: 50%;
}

.ios-icon--wifi::after {
  content: "";
  position: absolute;
  inset: 4px 3px 0;
  border-top: 2px solid rgba(17,17,20,.72);
  border-left: 2px solid transparent;
  border-right: 2px solid transparent;
  border-radius: 50%;
}

.ios-icon--battery {
  width: 24px; height: 12px;
  border: 1.6px solid rgba(17,17,20,.72);
  border-radius: 4px;
}

.ios-icon--battery::before {
  content: "";
  position: absolute;
  top: 2px; left: 2px;
  width: 15px; height: 6px;
  border-radius: 2px;
  background: rgba(17,17,20,.72);
}

.ios-icon--battery::after {
  content: "";
  position: absolute;
  top: 3px; right: -3px;
  width: 2px; height: 4px;
  border-radius: 0 2px 2px 0;
  background: rgba(17,17,20,.72);
}

/* ─── CHAT ─── */

.chat-header {
  gap: 14px;
  padding: 8px 18px 14px;
  border-bottom: 1px solid rgba(17,17,20,.08);
}

.chat-header__back {
  width: 11px; height: 11px;
  border-left: 2px solid rgba(10,132,255,.82);
  border-bottom: 2px solid rgba(10,132,255,.82);
  transform: rotate(45deg);
}

.chat-header__avatar {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(17,17,20,.08);
  box-shadow: 0 8px 18px rgba(17,17,20,.08);
}

.chat-header__avatar img { width: 18px; height: 18px; }
.chat-header__meta { flex: 1; min-width: 0; }
.chat-header__meta strong { display: block; color: var(--ios-text); font-size: 1rem; line-height: 1.15; }
.chat-header__meta span { display: block; margin-top: 2px; color: rgba(17,17,20,.54); font-size: .82rem; }
.chat-header__actions { display: flex; gap: 8px; }

.chat-header__action {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(10,132,255,.22);
  background: linear-gradient(180deg, rgba(10,132,255,.16), rgba(10,132,255,.08));
}

.chat-header__action--info { position: relative; }
.chat-header__action--info::before {
  content: "i";
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: rgba(10,132,255,.78);
  font-size: .78rem; font-weight: 700;
}

.chat-thread {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 7px;
  min-height: 420px;
  padding: 16px 14px 22px;
  overflow: hidden auto;
  scrollbar-width: none;
  background: linear-gradient(180deg, #ffffff 0%, #f4f5f8 100%);
}

.chat-thread::-webkit-scrollbar { display: none; }

.chat-system,
.message {
  width: fit-content;
  max-width: 84%;
  opacity: 1;
  transform: none;
}

.chat-thread.is-animating .chat-system,
.chat-thread.is-animating .message {
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  transition:
    opacity 520ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.chat-thread.is-animating .chat-system.is-visible,
.chat-thread.is-animating .message.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .chat-thread.is-animating .chat-system,
  .chat-thread.is-animating .message,
  .chat-thread.is-animating .chat-system.is-visible,
  .chat-thread.is-animating .message.is-visible {
    opacity: 1; transform: none; transition: none;
  }
}

.message p { margin: 0; }

.chat-system {
  align-self: center;
  max-width: 70%;
  padding: 7px 12px;
  border-radius: 999px;
  color: rgba(17,17,20,.52);
  background: rgba(17,17,20,.055);
  font-size: .75rem;
  font-weight: 600;
}

.message__sender {
  display: block;
  margin: 0 0 5px 6px;
  color: rgba(17,17,20,.42);
}

.message__sender--bot { color: rgba(10,132,255,.72); }

.message p {
  padding: 11px 14px;
  border-radius: 21px;
  font-size: .88rem;
  line-height: 1.32;
  box-shadow: 0 1px 0 rgba(17,17,20,.04);
}

.message--incoming { align-self: flex-start; }
.message--incoming p {
  color: var(--ios-text);
  background: var(--ios-gray);
  border-bottom-left-radius: 8px;
}

.message--outgoing { align-self: flex-end; }
.message--outgoing p {
  color: #fff;
  background: linear-gradient(180deg, var(--ios-blue), var(--ios-blue-strong));
  border-bottom-right-radius: 8px;
  box-shadow: 0 10px 16px rgba(10,132,255,.18);
}

.message--bot { align-self: flex-start; }
.message--bot p {
  color: var(--ios-text);
  background: #eef5ff;
  border: 1px solid rgba(10,132,255,.14);
  border-bottom-left-radius: 8px;
}

.chat-input {
  padding: 10px 14px;
  border-top: 1px solid rgba(17,17,20,.06);
  background: #fcfcfd;
}

.chat-input__plus {
  display: grid; place-items: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(17,17,20,.06);
  color: rgba(17,17,20,.44);
  font-size: 1.2rem;
}

.chat-input__field {
  flex: 1;
  padding: 6px 12px;
  margin: 0 8px;
  border: 1px solid rgba(17,17,20,.1);
  border-radius: 18px;
  color: rgba(17,17,20,.32);
  font-size: .84rem;
}

.chat-input__mic {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(17,17,20,.08);
}

/* ─── VALUE PROPS (replaces nights) ─── */

.value-props {
  padding: 0;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--line);
}

.value-props__grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 100%;
  max-width: none;
  margin: 0;
}

.value-prop {
  padding: 56px 40px;
  border-right: 1px solid var(--line);
}

.value-prop:last-child { border-right: none; }

.value-prop__number {
  display: block;
  font-family: var(--display-font);
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.86;
  color: var(--accent);
  margin-bottom: 20px;
}

.value-prop__title {
  font-family: var(--display-font);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-strong);
  margin-bottom: 12px;
}

.value-prop p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.64;
  color: var(--text-muted);
}

/* ─── PHOTO BREAK ─── */

.photo-break {
  padding: 0;
  line-height: 0;
  border-bottom: 1px solid var(--line);
}

.photo-break figure {
  margin: 0;
  max-height: 480px;
  overflow: hidden;
}

.photo-break--short figure { max-height: 360px; }

.photo-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

/* ─── SECTIONS ─── */

.section {
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
}

.section--dark {
  background: var(--bg-dark);
}

.section__header {
  padding-bottom: 48px;
}

.section__title {
  grid-column: 1 / span 5;
}

.section__intro {
  grid-column: 7 / span 5;
  display: flex;
  align-items: flex-end;
}

.section__intro p {
  font-size: 1rem;
  line-height: 1.72;
  color: var(--text-muted);
}

/* ─── PITCH ─── */

.pitch__body {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.pitch__text {
  grid-column: 1 / span 6;
}

.pitch__text p {
  font-size: 1.06rem;
  line-height: 1.72;
  color: var(--text);
  margin: 0 0 18px;
  max-width: 52ch;
}

.pitch__photo {
  grid-column: 8 / span 5;
  margin: 0;
  border: 1px solid var(--line);
  overflow: hidden;
}

.pitch__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── PROCESS / HOW IT WORKS ─── */

.process-band {
  margin-bottom: 48px;
}

.process-poster {
  grid-column: 1 / -1;
  display: flex;
  align-items: stretch;
}

.process-poster__panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 32px 20px;
  border: 1px solid var(--line);
  background: var(--bg-card);
  text-align: center;
}

.process-poster__index {
  font-family: var(--display-font);
  font-size: 3.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.86;
  color: var(--accent);
}

.process-poster__panel strong {
  font-family: var(--display-font);
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 0.92;
  color: var(--text-strong);
  text-transform: uppercase;
}

.process-poster__label {
  color: var(--text-faint);
  margin-top: auto;
}

.process-poster__beam {
  width: 40px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
}

.process-poster__beam::before {
  content: "";
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dim));
}

/* ─── STEPS ─── */

.steps {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.step {
  grid-column: span 4;
  display: flex;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--bg-card);
}

.step__number {
  flex-shrink: 0;
  color: var(--accent);
  font-size: .7rem;
  padding-top: 4px;
}

.step h3 {
  font-size: 1.2rem;
  line-height: 1.08;
  margin-bottom: 6px;
  text-transform: none;
}

.step p {
  margin: 0;
  font-size: .92rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ─── QUOTE / TESTIMONIAL ─── */

.quote-section {
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
}

.quote-grid {
  align-items: start;
}

.quote-grid blockquote {
  grid-column: 1 / span 9;
  margin: 0;
  padding: 0;
  border: none;
}

.quote-grid blockquote p {
  font-family: var(--display-font);
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.02em;
  color: var(--text-strong);
  text-transform: uppercase;
  margin: 0;
}

.quote-grid cite {
  display: block;
  margin-top: 28px;
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ─── BOUNDARY GRID ─── */

.boundary-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.boundary-card {
  grid-column: span 3;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--bg-card);
}

.boundary-card__icon {
  display: block;
  color: var(--accent);
  margin-bottom: 14px;
}

.boundary-card p {
  margin: 0;
  font-size: .94rem;
  line-height: 1.56;
  color: var(--text);
}

/* ─── CTA ─── */

.section--cta {
  background:
    linear-gradient(180deg, var(--bg) 0%, rgba(201, 184, 122, 0.06) 100%);
  border-bottom: none;
  padding: 112px 0;
}

.cta-center {
  grid-column: 1 / -1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-center h2 {
  max-width: 14ch;
}

.cta-center .lede {
  text-align: center;
  margin: 24px auto 0;
}

.cta-center .button {
  margin-top: 36px;
}

.cta-center .cta-note {
  display: block;
  margin-top: 16px;
  font-size: .84rem;
  color: var(--text-faint);
}

/* ─── FOOTER ─── */

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

.footer__inner {
  align-items: center;
}

.footer__brand {
  grid-column: 1 / span 3;
}

.footer__logo {
  width: 100px;
  height: auto;
  filter: invert(1) brightness(0.5);
}

.footer__tagline {
  grid-column: 10 / span 3;
  justify-self: end;
  font-size: .78rem;
  color: var(--text-faint);
}

/* ─── WHITE-LAYOUT HYBRID OVERRIDES ─── */

h1 {
  max-width: 8.4ch;
  font-size: clamp(4rem, 7vw, 6.6rem);
  text-wrap: nowrap;
}

h2 {
  max-width: 12.2ch;
  font-size: clamp(3rem, 4.8vw, 4.8rem);
}

.hero__grid {
  padding: 72px 0 82px;
}

.hero__device-stage::after {
  content: "";
  position: absolute;
  left: 24%;
  right: 6%;
  bottom: -4%;
  height: 44px;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.42), transparent 72%);
  filter: blur(16px);
  z-index: 0;
}

.signal-card {
  min-height: 156px;
}

.signal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(201, 184, 122, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(240, 232, 212, 0.03), transparent 62%);
  pointer-events: none;
}

.nights {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--text);
}

.nights__header {
  align-items: start;
  padding: 54px 0 20px;
}

.nights__title {
  grid-column: 1 / span 7;
}

.nights__intro {
  grid-column: 9 / span 4;
  padding-top: 20px;
}

.nights__intro p {
  max-width: 27ch;
  margin: 0;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.nights__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 0 24px;
}

.nights__tag {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: var(--bg-card);
  color: var(--text-faint);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nights__grid {
  align-items: stretch;
  row-gap: 20px;
  padding-bottom: 54px;
}

.night-card {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--bg-card);
  overflow: hidden;
}

.night-card--copy {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 232px;
  padding: 24px 22px 26px;
  background:
    linear-gradient(180deg, rgba(240, 232, 212, 0.03), rgba(240, 232, 212, 0)),
    var(--bg-card);
}

.night-card--copy p {
  max-width: 26ch;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.72;
}

.night-card__eyebrow,
.night-card figcaption {
  color: var(--text-faint);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.night-card h3 {
  max-width: 11ch;
  font-size: clamp(2rem, 2.5vw, 3.05rem);
  line-height: 0.93;
}

.night-card--lead {
  grid-column: 1 / span 4;
}

.night-card--hero-photo {
  grid-column: 5 / span 8;
}

.night-card--photo-left {
  grid-column: 1 / span 4;
}

.night-card--context {
  grid-column: 5 / span 4;
}

.night-card--photo-right {
  grid-column: 9 / span 4;
}

.night-card--photo-wide {
  grid-column: 1 / span 7;
}

.night-card--closing {
  grid-column: 8 / span 5;
}

.night-card img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}

.night-card--hero-photo img {
  aspect-ratio: 16 / 10;
  object-position: 50% 40%;
}

.night-card--photo-left img,
.night-card--photo-right img,
.night-card--photo-wide img {
  aspect-ratio: 16 / 10;
}

.night-card--photo-left img {
  object-position: 50% 42%;
}

.night-card--photo-right img {
  object-position: 50% 48%;
}

.night-card figcaption {
  border-top: 1px solid var(--line);
  padding: 14px 16px 16px;
}

.section {
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: none;
}

.section__header {
  padding: 72px 0 28px;
}

.section__title {
  grid-column: 1 / span 7;
}

.section__intro {
  grid-column: 9 / span 4;
  padding-top: 42px;
  display: block;
}

.section__intro p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.74;
}

.principle-grid,
.fit-grid,
.success-grid,
.closing,
.flow-grid,
.flow-support {
  padding-bottom: 72px;
}

.principle {
  padding: 24px 18px 0 0;
  border-top: 1px solid var(--line);
}

.principle:nth-child(1) {
  grid-column: 1 / span 5;
}

.principle:nth-child(2) {
  grid-column: 6 / span 4;
}

.principle:nth-child(3) {
  grid-column: 10 / span 3;
}

.index,
.step__number {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent);
}

.principle p,
.fit-panel li,
.closing__copy p {
  margin: 14px 0 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.74;
}

.section--recipe {
  background: transparent;
}

.flow-grid {
  row-gap: 20px;
}

.flow-card,
.flow-support__copy {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(240, 232, 212, 0.03), rgba(240, 232, 212, 0)),
    var(--bg-card);
}

.flow-card {
  grid-column: span 4;
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 320px;
  padding: 26px 24px 28px;
}

.flow-card__index,
.flow-card__eyebrow,
.flow-support__eyebrow {
  display: block;
}

.flow-card__index {
  color: var(--accent);
}

.flow-card__eyebrow,
.flow-support__eyebrow {
  color: var(--text-faint);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.flow-card h3,
.flow-support__copy h3 {
  font-size: clamp(2rem, 2.55vw, 3rem);
  line-height: 0.93;
}

.flow-card h3 {
  max-width: none;
}

.flow-card p,
.flow-support__copy p,
.flow-support__list li {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.72;
}

.flow-card p,
.flow-support__copy p {
  margin: 0;
}

.flow-card__sample {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  background: rgba(240, 232, 212, 0.04);
  color: var(--text-strong);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.45;
}

.flow-support {
  align-items: stretch;
  row-gap: 20px;
}

.flow-support__image {
  grid-column: 1 / span 5;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--bg-card);
  overflow: hidden;
}

.flow-support__image img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  background: #080808;
}

.flow-support__image figcaption {
  padding: 14px 16px 16px;
  border-top: 1px solid var(--line);
  color: var(--text-faint);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.flow-support__copy {
  grid-column: 6 / span 7;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 26px 24px 28px;
}

.flow-support__copy h3 {
  max-width: 11ch;
}

.flow-support__list {
  display: grid;
  gap: 10px;
  margin: 2px 0 0;
  padding-left: 1.15rem;
}

.fit-panel {
  grid-column: span 6;
  padding: 26px 24px 28px;
  border: 1px solid var(--line);
  background: var(--bg-card);
}

.fit-panel__label {
  margin: 0 0 20px;
  color: var(--text-faint);
}

.fit-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 1.1rem;
}

.success-stat {
  grid-column: span 3;
  min-height: 148px;
  padding-top: 22px;
  padding-right: 18px;
  border-top: 1px solid var(--line);
}

.success-stat span {
  display: block;
  color: var(--text-faint);
  text-transform: none;
  letter-spacing: 0.03em;
}

.success-stat strong {
  display: block;
  max-width: 13ch;
  margin-top: 12px;
  font-family: var(--display-font);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.03em;
  color: var(--text-strong);
}

.closing {
  align-items: center;
  padding-top: 8px;
}

.closing__copy {
  grid-column: 1 / span 7;
}

.closing__copy p {
  max-width: 48ch;
  margin: 0;
}

.closing__actions {
  grid-column: 9 / span 4;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.section--dark {
  background: var(--bg-dark);
  color: rgba(240, 232, 212, 0.88);
}

.section--dark .section__intro p,
.section--dark .success-stat span,
.section--dark .closing__copy p {
  color: rgba(240, 232, 212, 0.62);
}

.section--dark .button--solid {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg-dark);
}

.section--dark .button--ghost {
  border-color: rgba(240, 232, 212, 0.24);
  color: var(--text-strong);
}

.section--dark .button--ghost:hover {
  background: rgba(240, 232, 212, 0.08);
}

/* ─── RESPONSIVE ─── */

@media (max-width: 1100px) {
  .site-shell {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .brand,
  .hero__copy,
  .nights__title,
  .section__title,
  .closing__copy {
    grid-column: 1 / span 6;
  }

  .site-nav {
    grid-column: 2 / span 4;
    gap: 14px;
  }

  .site-header .button,
  .hero__device,
  .nights__intro,
  .section__intro,
  .closing__actions {
    grid-column: 1 / span 6;
  }

  .hero__device,
  .nights__intro,
  .section__intro,
  .closing__actions {
    padding-top: 22px;
  }

  .nights__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .night-card--lead,
  .night-card--photo-left,
  .night-card--context,
  .night-card--photo-right,
  .night-card--photo-wide,
  .night-card--closing,
  .principle,
  .fit-panel,
  .success-stat {
    grid-column: span 3;
  }

  .night-card--hero-photo {
    grid-column: 1 / span 6;
  }

  .flow-card {
    grid-column: span 2;
    min-height: 300px;
  }

  .flow-support__image,
  .flow-support__copy {
    grid-column: span 3;
  }

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

  .signal-card {
    min-height: auto;
    padding: 0 0 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .signal-card:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .principle:nth-child(1),
  .principle:nth-child(2),
  .principle:nth-child(3) {
    grid-column: span 2;
  }

  .closing__actions {
    justify-content: flex-start;
  }

  .phone {
    margin-left: 0;
    transform: perspective(1200px) rotateY(-8deg) rotateX(4deg) rotateZ(-0.8deg);
  }

  .night-card--hero-photo img,
  .night-card--photo-left img,
  .night-card--photo-right img,
  .night-card--photo-wide img {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 760px) {
  :root {
    --gutter: 16px;
    --header-offset: 92px;
  }

  .site-shell {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .site-header__inner {
    min-height: auto;
    padding: 16px 0;
  }

  .brand,
  .site-nav { display: none; }
  .site-header .button,
  .hero__copy,
  .hero__device,
  .nights__title,
  .nights__intro,
  .nights__tags,
  .night-card--lead,
  .night-card--hero-photo,
  .night-card--photo-left,
  .night-card--context,
  .night-card--photo-right,
  .night-card--photo-wide,
  .night-card--closing,
  .section__title,
  .section__intro,
  .principle,
  .flow-card,
  .flow-support__image,
  .flow-support__copy,
  .fit-panel,
  .success-stat,
  .closing__copy,
  .closing__actions {
    grid-column: 1;
  }

  .brand img {
    width: 176px;
  }

  .hero__grid {
    padding: 40px 0 48px;
  }

  h1 {
    font-size: clamp(3.6rem, 17vw, 5.4rem);
    text-wrap: pretty;
  }

  h2 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .section__header {
    padding: 52px 0 14px;
  }

  .section__intro {
    padding-top: 8px;
  }

  .principle-grid,
  .fit-grid,
  .success-grid,
  .closing,
  .flow-grid,
  .flow-support {
    padding-bottom: 48px;
  }

  .principle,
  .fit-panel,
  .success-stat {
    padding-right: 0;
  }

  .phone {
    width: 100%;
    max-width: 360px;
    transform: none;
  }

  .chat-thread {
    min-height: 404px;
  }

  .success-stat {
    min-height: auto;
  }

  .nights__header {
    padding: 44px 0 12px;
  }

  .nights__intro {
    padding-top: 0;
  }

  .nights__tags {
    gap: 8px;
    padding-bottom: 18px;
  }

  .nights__tag {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.66rem;
  }

  .nights__grid {
    padding-bottom: 48px;
  }

  .night-card--copy {
    min-height: auto;
  }

  .night-card--copy p {
    max-width: none;
  }

  .night-card h3 {
    max-width: none;
    font-size: clamp(2.05rem, 10.4vw, 3.1rem);
  }

  .flow-card,
  .flow-support__copy {
    min-height: auto;
    padding: 24px 18px;
  }

  .flow-card h3,
  .flow-support__copy h3 {
    max-width: none;
    font-size: clamp(1.95rem, 9.8vw, 2.95rem);
  }

  .flow-card__sample {
    width: 100%;
  }

  .flow-support__image img,
  .night-card--hero-photo img,
  .night-card--photo-left img,
  .night-card--photo-right img,
  .night-card--photo-wide img {
    aspect-ratio: 16 / 10;
  }
}
