/* ──────────────────────────────────────────────────────────────────
   Inspiration — marketing site v1
   No framework. Plain HTML + CSS + JS.
   Brand palette pulled from the logo swirl:
   magenta #e63a7a · orange #ff8540 · yellow #f5b14c · teal #4cb97b ·
   cyan #3fab9d · blue #3d7cbf · purple #7b43c4 · co-green #1f8c2f
   ────────────────────────────────────────────────────────────────── */

/* ───────────────────────────── reset / base ──────────────────────── */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

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

/* ───────────────────────────── tokens ────────────────────────────── */

:root {
  /* ── dark-first palette ── */
  --bg:           #0c0a13;     /* default — dark */
  --bg-2:         #16121f;
  --bg-card:      #181421;     /* card on dark */
  --bg-dark:      var(--bg);   /* legacy alias */
  --bg-dark-2:    var(--bg-2); /* legacy alias */

  --bg-light:     #fbf6ee;     /* warm cream — for the punctuating light sections */
  --bg-light-2:   #ffffff;

  /* text on dark */
  --ink:          #f4ecd8;
  --ink-2:        #d2c8b0;
  --ink-mute:     #948c7d;
  --ink-faint:    #5b574c;

  /* text on light (used in stack + standfor sections) */
  --ink-on-light:       #14131c;
  --ink-2-on-light:     #2a2735;
  --ink-mute-on-light:  #6a6675;
  --ink-faint-on-light: #9a96a4;

  /* lines */
  --line:         rgba(255,255,255,0.10);
  --line-strong:  rgba(255,255,255,0.20);
  --line-light:        rgba(20,19,28,0.10);
  --line-light-strong: rgba(20,19,28,0.18);

  /* ── logo palette (eyeballed from the rainbow swirl) ── */
  --magenta:     #e63a7a;
  --orange:      #ff8540;
  --yellow:      #f5b14c;
  --teal:        #4cb97b;
  --cyan:        #3fab9d;
  --blue:        #3d7cbf;
  --purple:      #7b43c4;
  --co-green:    #1f8c2f;   /* the ".co" suffix accent */

  /* legacy aliases (so old --pink / --orange / --blue references still resolve) */
  --pink:        var(--magenta);

  /* rainbow brand gradient — mirrors the swirl */
  --grad: linear-gradient(135deg,
    #e63a7a 0%,
    #ff8540 18%,
    #f5b14c 34%,
    #4cb97b 52%,
    #3fab9d 66%,
    #3d7cbf 82%,
    #7b43c4 100%);

  --grad-soft: linear-gradient(135deg,
    rgba(230, 58, 122, 0.20) 0%,
    rgba(255, 133,  64, 0.20) 25%,
    rgba(76, 185, 123, 0.20) 50%,
    rgba(61, 124, 191, 0.20) 75%,
    rgba(123, 67, 196, 0.20) 100%);

  /* keyword emphasis — always two adjacent logo colors, never rainbow.
     swap to a different adjacent pair from the logo palette if a section needs variety. */
  --grad-em: linear-gradient(135deg, #e63a7a 0%, #7b43c4 100%);  /* magenta → purple */

  /* type */
  --display: 'Manrope', 'Inter', system-ui, sans-serif;
  --body:    'Inter', system-ui, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, monospace;

  /* layout */
  --container: 1240px;
  --gutter:    clamp(20px, 4vw, 48px);

  /* motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ───────────────────────────── primitives ────────────────────────── */

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 12px 16px;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 24px;
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 0 0 rgba(230, 58, 122, 0.6);
  animation: pulse 2.4s var(--ease) infinite;
}
.eyebrow--dark { color: var(--ink); }
.eyebrow--light { color: rgba(255,255,255,0.7); }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(230, 58, 122, 0.6); }
  50%      { box-shadow: 0 0 0 10px rgba(230, 58, 122, 0); }
}

/* type primitives */
.display, .h-display {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 0;
  color: var(--ink);
}
.display     { font-size: clamp(2.6rem, 6.2vw, 5.2rem); }
.h-display   { font-size: clamp(2rem, 4.4vw, 3.5rem); line-height: 1.05; }
.h-display em, .display em {
  font-style: normal;
  background: var(--grad-em);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.h-display--light { color: #fff; }
.h-display--light em {
  background: var(--grad-em);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.grad-text {
  background: var(--grad-em);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
  color: var(--ink-2);
  max-width: 38ch;
  margin: 24px 0 36px;
  line-height: 1.5;
}

.section-head {
  max-width: 56ch;
  margin: 0 0 56px;
}
.section-lede {
  font-size: clamp(1.05rem, 1.2vw, 1.18rem);
  color: var(--ink-mute);
  margin: 20px 0 0;
  line-height: 1.55;
}
.section-lede--light { color: rgba(255,255,255,0.7); }

/* split section-head: title on the left, lede paragraph on the right */
.section-head--split {
  max-width: none;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
}
.section-head--split .section-head__main { min-width: 0; }
.section-head--split .section-head__aside { min-width: 0; max-width: 52ch; }
.section-head--split .section-lede {
  margin: 0;
  max-width: none;
}

@media (max-width: 900px) {
  .section-head--split {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
  }
  .section-head--split .section-head__aside { max-width: none; }
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  padding: 14px 22px;
  border-radius: 999px;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), background 200ms var(--ease), color 200ms var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn--sm  { padding: 10px 16px; font-size: 14px; }
.btn--lg  { padding: 17px 28px; font-size: 16px; }
.btn--xl  { padding: 22px 36px; font-size: 18px; }

.btn--primary {
  color: #fff;
  background: var(--magenta);
  position: relative;
  isolation: isolate;
  border-color: var(--magenta);
}
.btn--primary:hover {
  background: #fff;
  color: var(--magenta);
  border-color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 36px -10px rgba(230, 58, 122, 0.55);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--ink-on-light);
  border-color: var(--ink);
  transform: translateY(-1px);
}

.link--muted {
  color: var(--ink-mute);
  font-weight: 500;
  font-size: 14px;
}
.link--muted:hover { color: var(--ink); }

/* ───────────────────────────── nav ───────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 10, 19, 0.72);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms var(--ease), background 200ms var(--ease);
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
}

.nav__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 16px clamp(12px, 2vw, 24px);
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}
.nav__mark {
  display: block;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.nav__wordmark {
  font-family: 'Alegreya Sans', 'Manrope', system-ui, sans-serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}
.nav__tld {
  color: var(--co-green);
  font-weight: 700;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  margin-right: 8px;
}
.nav__links > a,
.nav__item-trigger {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
  transition: background 160ms var(--ease), color 160ms var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.nav__links > a:hover,
.nav__item-trigger:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
}

/* ─── desktop dropdown (Create) ─── */

.nav__item--has-dropdown {
  position: relative;
}

.nav__caret {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 1px;
  opacity: 0.75;
  transition: transform 220ms var(--ease), opacity 200ms var(--ease);
}
.nav__item--has-dropdown:hover .nav__caret,
.nav__item--has-dropdown:focus-within .nav__caret {
  transform: rotate(180deg);
  opacity: 1;
}

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 8px);
  margin-top: 8px;
  min-width: 360px;
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  padding: 10px;
  box-shadow:
    0 32px 60px -20px rgba(0, 0, 0, 0.55),
    0 12px 28px -10px rgba(123, 67, 196, 0.25);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 180ms var(--ease),
    transform 220ms var(--ease),
    visibility 0ms linear 220ms;
  z-index: 60;
}
.nav__dropdown::before {
  /* invisible hover-bridge so the cursor can travel from trigger → menu without dropping the hover */
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.nav__item--has-dropdown:hover .nav__dropdown,
.nav__item--has-dropdown:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
  transition:
    opacity 180ms var(--ease),
    transform 220ms var(--ease),
    visibility 0ms linear 0ms;
}

.nav__dropdown a {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 160ms var(--ease);
}
.nav__dropdown a:hover {
  background: rgba(255, 255, 255, 0.06);
}
.nav__dropdown a strong {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin-bottom: 2px;
}
.nav__dropdown a span {
  display: block;
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.4;
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav__toggle {
  display: none;
  width: 40px; height: 40px;
  border: 0;
  border-radius: 10px;
  background: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.nav__toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--ink);
  transition: transform 200ms var(--ease), opacity 200ms var(--ease);
}
.nav__toggle:hover { background: none; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px clamp(12px, 2vw, 24px) 24px;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}
.nav__mobile a {
  padding: 12px 8px;
  font-size: 16px;
  color: var(--ink);
}
.nav__mobile hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 8px 0;
}
.nav__mobile .btn { margin-top: 8px; align-self: flex-start; }

@media (max-width: 880px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; margin-left: auto; }
  .nav__mobile:not([hidden]) { display: flex; }
}

/* ───────────────────────────── hero ──────────────────────────────── */

.hero {
  position: relative;
  padding: clamp(48px, 8vw, 96px) 0 clamp(64px, 9vw, 120px);
  overflow: hidden;
}

/* welcome variant — large centered brand lockup with tagline tucked under the wordmark */
.hero--welcome { padding: clamp(64px, 12vw, 160px) 0 clamp(72px, 13vw, 180px); }

.welcome-block {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1120px;
}

.welcome-eyebrow {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1rem, 2vw, 1.55rem);
  letter-spacing: 0.02em;
  color: var(--ink-mute);
  margin: 0 0 clamp(10px, 1.6vw, 20px);
}

.welcome-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: clamp(36px, 6vw, 64px);
}

.welcome-wordmark {
  font-family: 'Alegreya Sans', 'Manrope', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(2.6rem, 8.5vw, 6.6rem);
  letter-spacing: -0.035em;
  line-height: 0.85;
  color: var(--ink);
  display: block;
  /* trim the empty leading above the cap-line so the gap to "welcome to" reads as designed */
  margin-top: -0.08em;
}

.welcome-tagline {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(0.95rem, 2.3vw, 1.75rem);
  letter-spacing: -0.005em;
  color: #948c7d;
  margin: clamp(18px, 2vw, 32px) 0 0;
  line-height: 1.25;
  text-align: center;
}

.welcome-rotator {
  display: inline-block;
  white-space: nowrap;
}

.welcome-rotator__caret {
  display: inline-block;
  width: 0.08em;
  height: 0.95em;
  background: var(--co-green);
  margin-left: 0.06em;
  vertical-align: -0.08em;
  animation: blink 1.05s steps(1) infinite;
}

.welcome-ctas {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

@media (max-width: 640px) {
  .welcome-rotator { white-space: normal; }
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero__gradient {
  position: absolute;
  inset: -20% -10% -4% -10%;
  background:
    radial-gradient(56% 44% at 14% 18%, rgba(230, 58, 122, 0.34), transparent 65%),
    radial-gradient(48% 42% at 78% 26%, rgba(255, 133, 64, 0.26), transparent 65%),
    radial-gradient(62% 58% at 88% 82%, rgba(123, 67, 196, 0.44), transparent 72%),
    radial-gradient(72% 62% at 20% 100%, rgba(61, 124, 191, 0.44), transparent 74%),
    radial-gradient(66% 54% at 58% 106%, rgba(76, 185, 123, 0.32), transparent 74%);
  filter: blur(2px);
}
.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.10;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.5 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.hero__copy { max-width: 620px; }
.hero__copy h1 { margin-top: 8px; }

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero__fork {
  margin: 28px 0 0;
  font-size: 14px;
  color: var(--ink-mute);
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}
.hero__fork a {
  color: var(--ink);
  font-weight: 600;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 1px;
}
.hero__fork a:hover { border-bottom-color: var(--magenta); color: var(--magenta); }

/* hero visual — rotating destinations + floating phone */

.hero__visual {
  position: relative;
  min-height: 480px;
}

.destination-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  max-width: 560px;
  margin-left: auto;
  border-radius: 18px;
  box-shadow:
    0 40px 100px -30px rgba(230, 58, 122, 0.28),
    0 20px 50px -20px rgba(123, 67, 196, 0.25),
    0 8px 24px -10px rgba(0, 0, 0, 0.5);
  transform: rotate(-1.4deg);
  transition: transform 600ms var(--ease);
}
.destination-stage:hover { transform: rotate(-0.4deg) translateY(-4px); }

.destination-card {
  position: absolute;
  inset: 0;
  background: #fff;
  color: var(--ink-on-light);
  border-radius: 18px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px) scale(0.985);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
  display: flex;
  flex-direction: column;
}
.destination-card.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  z-index: 2;
}

.dc__chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #f5f1ea;
  border-bottom: 1px solid var(--line-light);
}
.dc__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #d6cfc0;
}
.dc__dot:nth-child(1) { background: #ff6b6b; }
.dc__dot:nth-child(2) { background: #ffc34a; }
.dc__dot:nth-child(3) { background: #65c97a; }
.dc__url {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-mute-on-light);
  margin-left: 10px;
}

.dc__body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--accent) 6%, #fff) 0%, #fff 50%);
}

.dc__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.dc__logo {
  width: 38px; height: 38px;
  border-radius: 12px;
  display: grid; place-items: center;
  font-family: var(--display);
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  font-size: 18px;
}
.dc__name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink-on-light);
  line-height: 1.1;
}
.dc__by {
  font-size: 12px;
  color: var(--ink-mute-on-light);
  margin-top: 2px;
}
.dc__sub {
  margin-left: auto;
  background: #14131c;
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.dc__hero h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.1rem, 1.7vw, 1.55rem);
  line-height: 1.15;
  color: var(--ink-on-light);
  letter-spacing: -0.015em;
}
.dc__hero p {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--ink-mute-on-light);
}

.dc__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: auto;
}
.dc__tile {
  background: rgba(20, 19, 28, 0.04);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 76px;
}
.dc__tag {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
}
.dc__tile strong {
  font-size: 12px;
  color: var(--ink-on-light);
  line-height: 1.25;
  font-weight: 600;
}

.destination-stage__dots {
  position: absolute;
  left: 50%;
  bottom: -28px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.destination-stage__dots button {
  width: 28px; height: 4px;
  background: rgba(255, 255, 255, 0.20);
  border-radius: 999px;
  transition: background 240ms var(--ease), width 240ms var(--ease);
}
.destination-stage__dots button.is-active {
  background: var(--magenta);
  width: 40px;
}

/* phone card overlay */
.phone-card {
  position: absolute;
  bottom: -10px;
  left: -10px;
  width: 188px;
  background: #fff;
  color: var(--ink-on-light);
  border-radius: 28px;
  padding: 10px;
  box-shadow:
    0 24px 60px -20px rgba(0, 0, 0, 0.55),
    0 8px 20px -10px rgba(123, 67, 196, 0.30);
  transform: rotate(4deg);
  z-index: 3;
  transition: transform 600ms var(--ease);
}
.phone-card:hover { transform: rotate(2deg) translateY(-4px); }
.phone-card__notch {
  width: 50px; height: 6px;
  background: #14131c;
  border-radius: 999px;
  margin: 4px auto 10px;
}
.phone-card__inner {
  background: linear-gradient(180deg, #fff5e8 0%, #fff 60%);
  border-radius: 18px;
  padding: 14px 14px 18px;
}
.phone-card__header strong {
  font-family: var(--display);
  font-size: 14px;
  display: block;
}
.phone-card__header span {
  font-size: 11px;
  color: var(--ink-mute-on-light);
}
.phone-card__feed {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.phone-card__post {
  display: flex;
  gap: 8px;
  background: rgba(20, 19, 28, 0.05);
  border-radius: 10px;
  padding: 8px;
  align-items: center;
  color: var(--ink-on-light);
}
.phone-card__avatar {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: grid; place-items: center;
  background: var(--grad);
  color: #fff;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}
.phone-card__post strong {
  font-size: 11px; display: block; line-height: 1.2;
  color: var(--ink-on-light);
}
.phone-card__post span {
  font-size: 10px; color: var(--ink-mute-on-light); line-height: 1.2;
}

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { min-height: 380px; }
  .destination-stage { transform: rotate(-1deg); max-width: 460px; margin-inline: auto; }
  .phone-card { left: 0; bottom: -20px; }
}
@media (max-width: 520px) {
  .phone-card { display: none; }
  .destination-stage { transform: none; }
}

/* ─────────────────────────── positioning ─────────────────────────── */

/* positioning — LIGHT punctuation section directly under the hero */
.positioning {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg-light);
  color: var(--ink-on-light);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.positioning .h-display { color: var(--ink-on-light); }
.positioning .eyebrow { color: var(--ink-mute-on-light); }
.positioning .section-lede { color: var(--ink-2-on-light); }
.positioning .section-head { max-width: 60ch; margin-bottom: 48px; }

.caps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
}
.cap {
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
  gap: 8px;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  font-weight: 500;
  color: var(--ink-2-on-light);
  background: var(--bg-light-2);
  border: 1px solid var(--line-light);
  border-radius: 999px;
  padding: 12px 20px;
  transition: transform 300ms var(--ease), border-color 300ms var(--ease);
}
.cap:hover {
  transform: translateY(-2px);
  border-color: var(--line-light-strong);
}
.cap__verb {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.01em;
  background: var(--grad-em);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* below ~1152px the single row overflows — let the pills wrap again */
@media (max-width: 1152px) {
  .caps { flex-wrap: wrap; }
}

/* ─────────────────────────── stack section ───────────────────────── */

/* stack — LIGHT punctuation section */
.stack {
  padding: clamp(40px, 4vw, 60px) 0;
  background: var(--bg-light);
  color: var(--ink-on-light);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stack .h-display { color: var(--ink-on-light); }
.stack .eyebrow { color: var(--ink-mute-on-light); }
.stack .eyebrow--dark { color: var(--ink-on-light); }

/* ── problem block: the fragmented "today" stack ── */
/* dialled down from the hero h-display scale so the section reads as one compact unit */
.stack .stack__problem-h {
  color: var(--ink-on-light);
  margin: 0;
  max-width: 760px;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.08;
}
.stack__sub {
  margin: 12px 0 0;
  max-width: 52ch;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  color: var(--ink-mute-on-light);
}

/* the chip row spans the full width so all the tools sit on a single line */
.stack__scatter {
  display: flex;
  flex-wrap: nowrap;
  gap: 9px;
  margin-top: 16px;
}
/* the "today" tools sit in a calm, even row — deliberately understated so the
   destination card below is the thing that draws the eye */
.stack__scatter .chip {
  background: var(--bg-light-2);
  color: var(--ink-mute-on-light);
  box-shadow: 0 1px 4px rgba(20,19,28,0.04);
  flex: 0 0 auto;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
/* subtle lift on hover — a little life without competing with the answer block */
.stack__scatter .chip:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(20,19,28,0.10);
}

/* ── the turn: a clean "or" divider between chaos and the answer ── */
.stack__turn {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: clamp(16px, 1.8vw, 22px) 0;
}
.stack__turn-line {
  flex: 1;
  height: 1px;
  background: var(--line-light-strong);
}
.stack__or {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--ink-on-light);
  letter-spacing: -0.02em;
  padding: 0 4px;
}

/* ── answer block: one branded, all-in-one destination ── */
.stack__answer {
  background: #14131c;
  border-radius: clamp(18px, 2vw, 24px);
  padding: clamp(22px, 2.4vw, 30px);
  color: #fff;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.stack__answer-copy { min-width: 0; }
.stack__answer-brand { display: inline-flex; align-items: center; gap: 6px; }
.stack__answer-brand .nav__wordmark { color: #fff; font-size: 28px; }
/* a soft brand glow so the unified solution feels premium, not just dark */
.stack__answer::before {
  content: "";
  position: absolute;
  inset: -40% 40% auto -10%;
  height: 360px;
  background: var(--grad);
  filter: blur(120px);
  opacity: 0.22;
  pointer-events: none;
}
.stack__answer > * { position: relative; }
.stack .stack__answer-h {
  color: #fff;
  margin: 12px 0 0;
  max-width: 30ch;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  line-height: 1.14;
}
.stack__answer-foot {
  margin: 12px 0 0;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: rgba(255,255,255,0.62);
}

.stack__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  color: var(--ink-2-on-light);
}
.chip--ghost {
  background: transparent;
  color: var(--ink-faint-on-light);
  border-style: dashed;
}
.chip--brand {
  background: #fff;
  color: var(--ink-on-light);
  border: none;
  font-size: 17px;
  font-weight: 600;
  padding: 14px 22px;
  font-family: var(--display);
  letter-spacing: -0.01em;
}
.chip__dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--grad);
}

/* ─── inspiration-side feature pills (animated) ─── */

.stack__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip--feature {
  font-size: 13px;
  font-weight: 500;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  /* start hidden — entrance animation fires when section is revealed */
  opacity: 0;
  transform: scale(0.7);
  transform-origin: center;
  will-change: transform, opacity;
}

/* the stack section's chip column gets .reveal already.
   when its parent .stack__grid receives .is-visible, fire entrance + continuous wave */
.is-visible .chip--feature {
  animation:
    feature-pop 0.55s cubic-bezier(0.34, 1.6, 0.64, 1) calc(0.5s + var(--i) * 0.14s) forwards,
    feature-wave 8s ease-in-out calc(4s + var(--i) * 0.14s) infinite;
}

@keyframes feature-pop {
  0%   { opacity: 0; transform: scale(0.55) translateY(6px); }
  60%  { opacity: 1; transform: scale(1.10) translateY(0); }
  100% { opacity: 1; transform: scale(1)    translateY(0); }
}

@keyframes feature-wave {
  0%, 100% { transform: scale(1); }
  45%      { transform: scale(1.08); }
  55%      { transform: scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  .chip--feature {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}

@media (max-width: 820px) {
  .stack__turn { margin: 28px 0; }
  .stack__scatter { flex-wrap: wrap; }
  .stack__answer {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .stack__features { margin-top: 4px; }
}

/* ─────────────────────────── destinations showcase ──────────────── */

.destinations {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg);
}

.showcase__note {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-mute);
  margin-bottom: 24px;
}

.showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 24px;
}

.showcase__card {
  background: transparent;
  border: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 300ms var(--ease);
}
.showcase__card:hover {
  transform: translateY(-4px);
}

/* ─── iPhone device frame ─── */

.device {
  --device-radius: 38px;
  --device-bezel:  9px;
  --notch-w: 88px;
  --notch-h: 22px;

  position: relative;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 9 / 19;
  background: linear-gradient(180deg, #1a1820 0%, #0e0c14 100%);
  border-radius: var(--device-radius);
  padding: var(--device-bezel);
  box-shadow:
    0 40px 80px -30px rgba(0, 0, 0, 0.7),
    0 16px 32px -16px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  margin-bottom: 24px;
}
.showcase__card:hover .device {
  box-shadow:
    0 50px 100px -30px rgba(123, 67, 196, 0.35),
    0 20px 40px -16px rgba(0, 0, 0, 0.55),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.device__notch {
  position: absolute;
  top: calc(var(--device-bezel) + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: var(--notch-w);
  height: var(--notch-h);
  background: #000;
  border-radius: 999px;
  z-index: 3;
}

.device__screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: calc(var(--device-radius) - var(--device-bezel));
  overflow: hidden;
  background: #fff;
}

.device__screen img {
  display: block;
  width: 100%;
  height: auto;
  /* image is taller than the screen — overflow on parent clips the bottom */
}

/* placeholder content for cards without a real screenshot yet */
.device--placeholder .device__screen {
  background: linear-gradient(160deg, var(--c1, #e63a7a), var(--c2, #7b43c4));
}
.device__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.device__placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 18%, rgba(255,255,255,0.30), transparent 50%),
    radial-gradient(circle at 18% 82%, rgba(0,0,0,0.25), transparent 55%);
}
.device__placeholder-mark {
  position: relative;
  font-family: var(--display);
  font-weight: 500;
  font-size: 96px;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: -0.04em;
  line-height: 1;
}

/* ─── card meta below the phone ─── */

.showcase__meta {
  padding: 0 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 340px;
}
.showcase__cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.showcase__meta h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 6px 0 8px;
  color: var(--ink);
  line-height: 1.2;
}
.showcase__meta p {
  font-size: 14.5px;
  color: var(--ink-mute);
  margin: 0 0 14px;
  line-height: 1.5;
}
.showcase__by {
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 500;
  font-family: var(--mono);
}

@media (max-width: 900px) { .showcase { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; } }
@media (max-width: 560px) { .showcase { grid-template-columns: 1fr; gap: 48px; } }

.destinations__cta {
  margin-top: clamp(48px, 7vw, 80px);
  display: flex;
  justify-content: center;
}

/* ─────────────────────────── inside (3-up) ──────────────────────── */

.inside {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}

.inside__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.inside__card {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 350ms var(--ease), border-color 350ms var(--ease), box-shadow 350ms var(--ease);
}
.inside__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--magenta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 450ms var(--ease);
}
.inside__card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 26px 55px -22px rgba(230, 58, 122, 0.38);
}
.inside__card:hover::before {
  transform: scaleX(1);
}

.inside__num {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--magenta);
  letter-spacing: 0.08em;
}
.inside__card h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 28px;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
}
.inside__card p {
  margin: 0;
  color: var(--ink-mute);
  font-size: 15px;
  line-height: 1.55;
}
.inside__list {
  margin: auto 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.inside__list li {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) { .inside__grid { grid-template-columns: 1fr; } }
.persona-hero .display { font-size: clamp(2.1rem, 4.6vw, 3.5rem); }

/* top-aligned split (heading block + body/list of unequal height) */
.section-head--split.section-head--top { align-items: start; }

/* checklist of supporting points */
.ticks { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 13px; }
.ticks li { position: relative; padding-left: 34px; color: var(--ink-2); line-height: 1.5; }
.ticks li::before {
  content: '';
  position: absolute; left: 0; top: 1px;
  width: 22px; height: 22px;
  background: url('/images/logo/windmill-gradient-v2.svg') center / contain no-repeat;
  transition: transform 0.5s ease;
}
.ticks li:hover::before { transform: rotate(180deg); }
.persona-section--light .ticks li { color: var(--ink-2-on-light); }
.ticks li strong { color: var(--ink); font-weight: 600; }
.persona-section--light .ticks li strong { color: var(--ink-on-light); }
.ticks--feature { max-width: 66ch; margin-top: 28px; gap: 16px; }

/* copy + visual feature row (platform sections) */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.feature-split__copy { min-width: 0; max-width: 56ch; }
.feature-split__visual { min-width: 0; }
@media (max-width: 900px) {
  .feature-split { grid-template-columns: 1fr; gap: 36px; }
}

/* cross-link to a deeper page */
.feature-link { margin-top: 26px; }
.feature-link a { color: var(--magenta); font-weight: 600; text-decoration: none; }
.feature-link a:hover { text-decoration: underline; }
.inside__grid--two { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 760px) { .inside__grid--two { grid-template-columns: 1fr; } }

/* ─────────────────────────── AI section (dark) ──────────────────── */

.ai {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg);
  color: #fff;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.ai::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 40% at 10% 10%, rgba(255, 133, 64, 0.16), transparent 60%),
    radial-gradient(50% 40% at 90% 30%, rgba(230, 58, 122, 0.18), transparent 60%),
    radial-gradient(50% 40% at 50% 90%, rgba(123, 67, 196, 0.18), transparent 60%),
    radial-gradient(45% 35% at 30% 70%, rgba(61, 124, 191, 0.14), transparent 60%);
  pointer-events: none;
}
.ai .container { position: relative; }

.ai .section-head { max-width: 56ch; }

/* AI header: the section heading on the left, the statement copy alongside it on the right */
.ai .section-head--ai {
  max-width: none;
  grid-template-columns: 1.05fr 1fr;
  align-items: start;
}
.ai .section-head--ai .h-display { font-size: clamp(1.6rem, 2.8vw, 2.4rem); line-height: 1.15; margin-top: 14px; }
@media (max-width: 900px) {
  .ai .section-head--ai {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.vibedemo {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 24px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  margin-top: 24px;
}

/* stacked variant — typing prompt above a smaller phone (compact hero visual) */
.vibedemo--stack {
  grid-template-columns: 1fr;
  margin-top: 0;
  width: 100%;
  max-width: 440px;
  padding: 24px;
  gap: 20px;
}
.vibedemo--stack .device--vibedemo {
  max-width: 240px;
  margin: 0 auto;
}
.vibedemo--stack .vibedemo__input { font-size: clamp(0.85rem, 1.5vw, 0.95rem); min-height: 1.8em; }

.vibedemo__label {
  font-family: var(--mono);
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
  letter-spacing: 0.01em;
  line-height: 1.4;
}
.vibedemo__label strong {
  color: #fff;
  font-weight: 600;
  margin-right: 4px;
}

.vibedemo__input {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  min-height: 2.4em;
  color: #fff;
  /* natural inline flow so the caret sits flush against the period */
}
.vibedemo__text { display: inline; }
.vibedemo__caret {
  display: inline-block;
  width: 3px;
  height: 1em;
  background: var(--magenta);
  margin-top: 0.15em;
  animation: blink 1.1s steps(1) infinite;
}
@keyframes blink { 0%, 50% { opacity: 1; } 50.01%, 100% { opacity: 0; } }

.vibedemo__chips {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.vibedemo__chips button {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 9px 14px;
  border-radius: 999px;
  transition: background 180ms var(--ease), border-color 180ms var(--ease), transform 180ms var(--ease);
}
.vibedemo__chips button:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-1px);
}
.vibedemo__chips button.is-picked {
  background: var(--magenta);
  border-color: var(--magenta);
  color: #fff;
}

/* phone-shaped output for the vibedemo */
.vibedemo__device-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}
.device--vibedemo {
  max-width: 320px;
  width: 100%;
  margin: 0;
}
.device--vibedemo .device__screen {
  background: var(--bg-light);
  color: var(--ink-on-light);
  padding: 56px 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vibedemo__empty {
  margin: auto 0;
  color: var(--ink-faint-on-light);
  font-size: 13px;
  font-family: var(--mono);
  text-align: center;
}

.vibedemo__shipping {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(251, 246, 238, 0.94);
  backdrop-filter: blur(4px);
  z-index: 5;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-2-on-light);
  text-align: center;
  padding: 0 24px;
  line-height: 1.4;
}
.vibedemo__pulse {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--magenta);
  animation: pulse-fast 1s infinite;
}
@keyframes pulse-fast {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(1.4); }
}

/* ═══════════════════════════ vibedemo widgets ═══════════════════════════
   Each widget is a full-bleed phone-screen mockup with its own visual
   language. They share the rise-in animation and font sizing baseline.
   ───────────────────────────────────────────────────────────────────── */

.widget {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 13px;
  animation: rise 400ms var(--ease);
  flex: 1;
}
/* explicit hide override — beats my .widget display:flex when JS sets hidden attr */
.widget[hidden],
.vibedemo__shipping[hidden] { display: none; }

@keyframes rise {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* shared header chrome (used by meals + travel widgets) */
.widget__app-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.widget__app-date {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #5a8869;
  margin: 0;
}
.widget__app-title {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink-on-light);
  margin: 2px 0 0;
}
.widget__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffb47a, #e63a7a);
  color: #fff;
  font-family: var(--display);
  font-weight: 600;
  font-size: 13px;
  display: grid;
  place-items: center;
}
.widget__section-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--ink-mute-on-light);
  margin: 4px 0 -4px;
}

/* ─────────────────  Meal Planner  ───────────────── */

.meals {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.meal {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 12px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: 12px;
}
.meal__img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  background: linear-gradient(135deg, #ffe6c4, #fdc1a0);
}
.meal__body { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.meal__type {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #e07b3a;
  margin: 0;
}
.meal__name {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-on-light);
  margin: 1px 0 0;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.meal__meta {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-mute-on-light);
  margin: 3px 0 0;
}

.programs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.program {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-on-light);
  text-align: left;
  justify-content: flex-start;
}
.program__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.program--veg     .program__dot { background: #4cb97b; }
.program--low     .program__dot { background: #ff8540; }
.program--keto    .program__dot { background: #7b43c4; }
.program--protein .program__dot { background: #e63a7a; }

/* ─────────────────  Travel Itinerary  ───────────────── */

.widget--travel {
  background: linear-gradient(180deg, #fff6e8 0%, #ffeaf2 100%);
  margin: -56px -16px -22px;
  padding: 56px 16px 22px;
}
.widget--travel .widget__app-date--travel { color: #d6457a; }
.widget--travel .widget__app-title { color: #2b1939; }
.widget--travel .widget__section-label { color: #8b6f80; }

.travel__inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.travel__input {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: #fff;
  border: 1px solid rgba(214, 69, 122, 0.18);
  border-radius: 10px;
  padding: 8px 10px;
}
.travel__input span {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #b07390;
}
.travel__input strong {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #2b1939;
}

.interests {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.interest {
  background: #fff;
  border: 1px solid rgba(214, 69, 122, 0.18);
  color: #6b4a5c;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 10.5px;
  font-weight: 600;
  transition: background 160ms var(--ease), color 160ms var(--ease), border-color 160ms var(--ease);
}
.interest.is-on {
  background: linear-gradient(135deg, #ff8540, #e63a7a);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 12px -4px rgba(230, 58, 122, 0.4);
}

.trips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.trip {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(214, 69, 122, 0.16);
}
.trip__day {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #d6457a;
}
.trip__title {
  font-size: 12px;
  font-weight: 600;
  color: #2b1939;
  line-height: 1.25;
}

/* ─────────────────  Compound Interest Calculator (luxury dark green)  ───────────────── */

.widget--calculator {
  /* expand the widget to fill the screen edge-to-edge for full luxury treatment */
  margin: -56px -16px -22px;
  padding: 0;
  background: linear-gradient(180deg, #0c2e1f 0%, #08231a 100%);
  color: #e8e1cf;
  border-radius: 0;
  flex: 1;
}
.calc {
  font-family: Georgia, 'Times New Roman', serif;
  padding: 60px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}
.calc__eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #a3d9b1;
  margin: 0;
}
.calc__title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
  color: #f3ecd9;
  margin: -2px 0 4px;
  line-height: 1.15;
}
.calc__rows {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(232, 225, 207, 0.10);
}
.calc__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(232, 225, 207, 0.10);
}
.calc__row span {
  font-size: 11.5px;
  color: rgba(232, 225, 207, 0.6);
  letter-spacing: 0.01em;
}
.calc__row strong {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 14px;
  font-weight: 500;
  color: #f3ecd9;
  letter-spacing: 0.01em;
}
.calc__graph {
  width: 100%;
  height: 56px;
  margin: 4px 0;
}
.calc__result {
  margin-top: auto;
  padding: 14px 16px;
  border: 1px solid rgba(163, 217, 177, 0.30);
  border-radius: 10px;
  background: rgba(163, 217, 177, 0.06);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.calc__result span {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #a3d9b1;
}
.calc__result strong {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 30px;
  font-weight: 500;
  color: #f3ecd9;
  letter-spacing: -0.01em;
}

/* ─────────────────  Life Coach — New Client Questionnaire (soft lavender, friendly)  ───────────────── */

.widget--coach {
  margin: -56px -16px -22px;
  padding: 56px 16px 22px;
  background: linear-gradient(180deg, #f6f1fc 0%, #ece3fb 100%);
  gap: 12px;
}

.coach__cover {
  display: flex;
  align-items: center;
  gap: 11px;
}
.coach__badge {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 19px;
  background: linear-gradient(135deg, #b58cf0, #7b43c4);
  box-shadow: 0 6px 16px -6px rgba(123, 67, 196, 0.55);
}
.coach__kicker {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: #8a63c8;
  margin: 0;
}
.coach__title {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #2c1b45;
  margin: 1px 0 0;
}

.qform {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.qcard {
  background: #fff;
  border: 1px solid rgba(123, 67, 196, 0.14);
  border-radius: 12px;
  padding: 11px 12px;
  box-shadow: 0 2px 8px -4px rgba(44, 27, 69, 0.08);
}
.qcard__q {
  font-family: var(--display);
  font-size: 12.5px;
  font-weight: 600;
  color: #2c1b45;
  margin: 0 0 8px;
  line-height: 1.25;
}
.qfield {
  font-size: 12px;
  color: #4a3a63;
  background: #f7f3fd;
  border: 1px solid rgba(123, 67, 196, 0.14);
  border-radius: 8px;
  padding: 8px 10px;
}

.qchoices {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.qchoices--inline {
  flex-direction: row;
  flex-wrap: wrap;
}
.qchoice {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  color: #5a4a72;
  background: #faf7fe;
  border: 1px solid rgba(123, 67, 196, 0.12);
  border-radius: 9px;
  padding: 7px 10px;
  transition: background 160ms var(--ease), border-color 160ms var(--ease), color 160ms var(--ease);
}
.qchoices--inline .qchoice { flex: 1 1 auto; }
.qradio {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1.5px solid rgba(123, 67, 196, 0.35);
  position: relative;
}
.qchoice.is-on {
  background: linear-gradient(135deg, rgba(230, 58, 122, 0.10), rgba(123, 67, 196, 0.12));
  border-color: rgba(123, 67, 196, 0.45);
  color: #2c1b45;
}
.qchoice.is-on .qradio {
  border-color: transparent;
  background: var(--grad-em);
}
.qchoice.is-on .qradio::after {
  content: "";
  position: absolute;
  inset: 3.5px;
  border-radius: 50%;
  background: #fff;
}

.qsubmit {
  margin-top: 2px;
  width: 100%;
  border: none;
  border-radius: 10px;
  padding: 11px 14px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
  background: var(--grad-em);
  box-shadow: 0 8px 20px -8px rgba(123, 67, 196, 0.55);
  cursor: pointer;
}

.ai__foot {
  margin: 36px 0 0;
  text-align: center;
  font-family: var(--display);
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 56ch;
  margin-inline: auto;
}

@media (max-width: 820px) {
  .vibedemo { grid-template-columns: 1fr; }
  .widget__rows { grid-template-columns: 1fr; }
}

/* ─────────────────────────── network ────────────────────────────── */

.network {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.network__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.network__card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 300ms var(--ease), border-color 300ms var(--ease);
}
.network__card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
}
.network__num {
  font-family: var(--display);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--grad-em);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.network__card h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.network__card p {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-mute);
  line-height: 1.55;
}

@media (max-width: 1000px) { .network__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .network__grid { grid-template-columns: 1fr; } }

/* ─────────────────────────── stand for / creed ──────────────────── */

/* standfor — LIGHT punctuation section */
.standfor {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg-light);
  color: var(--ink-on-light);
  border-top: 1px solid var(--line);
}
.standfor .h-display { color: var(--ink-on-light); }
.standfor .eyebrow { color: var(--ink-mute-on-light); }

.creed {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.creed li {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.creed li:nth-child(odd) { padding-right: 24px; border-right: 1px solid var(--line); }
.creed li:nth-child(even) { padding-left: 24px; }

/* default: light text on dark backgrounds (most contexts) */
.creed strong {
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.creed span {
  font-size: 15px;
  color: var(--ink-mute);
  line-height: 1.5;
}

/* dark text override for the light "What we stand for" section */
.standfor .creed {
  border-top-color: var(--line-light);
}
.standfor .creed li {
  border-bottom-color: var(--line-light);
}
.standfor .creed li:nth-child(odd) {
  border-right-color: var(--line-light);
}
.standfor .creed strong { color: var(--ink-on-light); }
.standfor .creed span  { color: var(--ink-mute-on-light); }

@media (max-width: 820px) {
  .creed { grid-template-columns: 1fr; }
  .creed li, .creed li:nth-child(odd), .creed li:nth-child(even) {
    grid-template-columns: 1fr;
    padding: 24px 0;
    border-right: none;
  }
}

/* ─────────────────────────── proof ──────────────────────────────── */

.proof {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.proof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.proof__quote {
  margin: 0;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.proof__quote p {
  margin: 0;
  font-family: var(--display);
  font-size: 19px;
  line-height: 1.4;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.proof__quote footer {
  font-size: 13px;
  color: var(--ink-mute);
  font-weight: 500;
}
@media (max-width: 900px) { .proof__grid { grid-template-columns: 1fr; } }

/* ─────────────────────────── final cta ──────────────────────────── */

.final-cta {
  position: relative;
  padding: clamp(100px, 12vw, 180px) 0;
  overflow: hidden;
  background: var(--bg);
  color: #fff;
  text-align: center;
  border-top: 1px solid var(--line);
}
.final-cta__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 60% at 30% 30%, rgba(230, 58, 122, 0.28), transparent 60%),
    radial-gradient(50% 60% at 70% 70%, rgba(255, 133, 64, 0.22), transparent 60%),
    radial-gradient(50% 60% at 80% 20%, rgba(123, 67, 196, 0.24), transparent 60%),
    radial-gradient(50% 60% at 20% 80%, rgba(61, 124, 191, 0.20), transparent 60%);
  pointer-events: none;
}
.final-cta__inner {
  position: relative;
  max-width: 800px;
  margin-inline: auto;
}
.final-cta h2 { color: #fff; margin-bottom: 40px; }
.final-cta__small {
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.final-cta__lede {
  color: rgba(255,255,255,0.74);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.55;
  max-width: 54ch;
  margin: -20px auto 34px;
}
.final-cta__links {
  margin-top: 22px;
  font-size: 0.98rem;
  color: rgba(255,255,255,0.55);
}
.final-cta__links a { color: rgba(255,255,255,0.85); text-decoration: none; }
.final-cta__links a:hover { color: #fff; text-decoration: underline; }

.final-cta .btn--primary {
  background: #fff;
  color: var(--ink-on-light);
}
.final-cta .btn--primary:hover {
  background: var(--magenta);
  color: #fff;
  border-color: var(--magenta);
}

/* ─────────────────────────── footer ─────────────────────────────── */

.footer {
  background: #08070d;
  color: rgba(255,255,255,0.7);
  padding: 80px 0 32px;
  border-top: 1px solid var(--line);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 3fr;
  gap: 56px;
  padding-bottom: 56px;
}
.footer__brand {
  max-width: 280px;
}
.footer__brand .nav__wordmark { color: #fff; }
.footer__brand p {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.5);
}
.footer__social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.12);
  transition: color 160ms var(--ease), border-color 160ms var(--ease), background 160ms var(--ease), transform 160ms var(--ease);
}
.footer__social a:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.footer__nav h4 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin: 0 0 14px;
}
.footer__nav a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  padding: 4px 0;
  transition: color 160ms var(--ease);
}
.footer__nav a:hover { color: #fff; }

.footer__legal {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.footer__legal nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__legal a { color: rgba(255,255,255,0.55); }
.footer__legal a:hover { color: #fff; }

@media (max-width: 1000px) {
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__nav { grid-template-columns: repeat(3, 1fr); gap: 32px 24px; }
}
@media (max-width: 560px) {
  .footer__nav { grid-template-columns: repeat(2, 1fr); }
}

/* ─────────────────────────── reveal animations ──────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ─────────────────────────── persona pages (shared) ─────────────── */

.persona-hero {
  position: relative;
  padding: clamp(72px, 10vw, 120px) 0 clamp(56px, 8vw, 80px);
  overflow: hidden;
  background: var(--bg);
}

/* split variant — copy on the left, phone-mock visual on the right */
.persona-hero--split .persona-hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  position: relative;
}
.persona-hero--split .persona-hero__copy {
  max-width: 56ch;
  min-width: 0;
}
.persona-hero--split .persona-hero__visual {
  display: flex;
  justify-content: center;
  min-width: 0;
}
.persona-hero--split .device {
  max-width: 260px;
}
.device__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* laptop / desktop mock (design editor) */
.laptop { width: 100%; max-width: 460px; margin: 0 auto; }
.laptop__lid {
  background: linear-gradient(180deg, #1a1820 0%, #0e0c14 100%);
  border-radius: 14px;
  padding: 11px;
  box-shadow:
    0 40px 80px -30px rgba(0, 0, 0, 0.7),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.laptop__screen {
  aspect-ratio: 16 / 10;
  border-radius: 6px;
  overflow: hidden;
  /* tasteful blank state — a powered-on, brand-tinted screen */
  background:
    radial-gradient(120% 120% at 25% 18%, rgba(123, 67, 196, 0.30), transparent 60%),
    radial-gradient(120% 120% at 82% 85%, rgba(230, 58, 122, 0.22), transparent 60%),
    #14131c;
}
.laptop__screen img,
.laptop__screen video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.laptop__base {
  position: relative;
  width: 104%;
  margin: 0 -2%;
  height: 15px;
  background: linear-gradient(180deg, #2a2832 0%, #14121a 100%);
  border-radius: 0 0 13px 13px;
  box-shadow: 0 22px 30px -18px rgba(0, 0, 0, 0.6);
}
.laptop__base::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 6px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 0 0 8px 8px;
}

/* ── platform sticky stage: one bigger laptop pinned across hero + destinations ── */
.platform-stage {
  overflow: visible;
  padding-top: clamp(36px, 5vw, 60px);
}
.platform-stage__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  column-gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.platform-stage__panel {
  grid-column: 1;
  min-height: 82vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.platform-stage__panel--a { grid-row: 1; }
.platform-stage__panel--b { grid-row: 2; }
.platform-stage__visual {
  grid-column: 2;
  grid-row: 1 / span 2;
  position: sticky;
  top: 76px;
  height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.laptop--stage {
  max-width: min(640px, 100%);
  transition: transform 200ms var(--ease);
}

@media (max-width: 900px) {
  .platform-stage__grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .platform-stage__panel { min-height: 0; }
  .platform-stage__visual {
    position: static;
    height: auto;
  }
  .laptop--stage { max-width: 460px; }
}

@media (max-width: 880px) {
  .persona-hero--split .persona-hero__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .persona-hero--split .persona-hero__visual { order: 2; }
}
.persona-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 50% at 20% 20%, var(--persona-c1, rgba(230, 58, 122, 0.22)), transparent 60%),
    radial-gradient(50% 50% at 80% 40%, var(--persona-c2, rgba(123, 67, 196, 0.22)), transparent 60%);
  pointer-events: none;
}
.persona-hero .container { position: relative; }
.persona-hero .display { max-width: 18ch; }
.persona-hero .lede { max-width: 56ch; color: var(--ink-2); }

.persona-section {
  padding: clamp(56px, 8vw, 96px) 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
  overflow-x: clip;
}
.persona-section--alt { background: var(--bg-2); }

/* warm cream variant — matches the light punctuation sections on the home page */
.persona-section--light {
  background: var(--bg-light);
  color: var(--ink-on-light);
}
.persona-section--light .h-display { color: var(--ink-on-light); }
.persona-section--light .eyebrow { color: var(--ink-mute-on-light); }
.persona-section--light .section-lede { color: var(--ink-2-on-light); }
.persona-section--light .persona-card {
  background: var(--bg-light-2);
  border-color: var(--line-light);
}
.persona-section--light .persona-card:hover { border-color: var(--line-light-strong); }
.persona-section--light .persona-card h3 { color: var(--ink-on-light); }
.persona-section--light .persona-card p { color: var(--ink-mute-on-light); }

.persona-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.persona-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  transition: transform 300ms var(--ease), border-color 300ms var(--ease);
}
.persona-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
}
.persona-card h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.persona-card p {
  margin: 0;
  color: var(--ink-mute);
  font-size: 15px;
  line-height: 1.55;
}
@media (max-width: 900px) { .persona-cards { grid-template-columns: 1fr; } }

/* ─────────────────────────── pricing tiers ──────────────────────── */

.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.tier {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform 300ms var(--ease), border-color 300ms var(--ease);
}
.tier:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
}

.tier--featured {
  border-color: var(--magenta);
  box-shadow: 0 24px 60px -25px rgba(230, 58, 122, 0.40);
}

.tier__flag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-em);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.tier__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tier__name {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0;
}
.tier__price {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.tier__amount {
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.8vw, 2.8rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}
.tier__period {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-mute);
}
.tier__lede {
  margin: 2px 0 0;
  font-size: 14px;
  color: var(--ink-mute);
  line-height: 1.5;
}

.tier__features {
  list-style: none;
  margin: 0;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.tier__features li {
  font-size: 15px;
  color: var(--ink-2);
  display: flex;
  align-items: baseline;
  gap: 10px;
  line-height: 1.4;
}
.tier__features li::before {
  content: '✓';
  flex-shrink: 0;
  width: 14px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--teal);
  text-align: center;
}
.tier__features li.tier__feature--no {
  color: var(--ink-faint);
  text-decoration: line-through;
  text-decoration-color: var(--ink-faint);
}
.tier__features li.tier__feature--no::before {
  content: '✕';
  color: var(--ink-faint);
  text-decoration: none;
}
.tier__features li.tier__feature--no strong {
  color: var(--ink-faint);
}
.tier__features strong {
  color: var(--ink);
  font-weight: 600;
}

.tier .btn { width: 100%; justify-content: center; }

.tiers__foot {
  margin: 48px auto 0;
  text-align: center;
  max-width: 64ch;
  font-size: 15px;
  color: var(--ink-mute);
  line-height: 1.6;
}

.tier__feature-note {
  color: var(--ink-mute);
  font-size: 0.92em;
}

.tier__feature-col {
  display: flex;
  flex-direction: column;
}
.tier__feature-col .tier__feature-note {
  display: block;
}

.mini-blocks {
  margin: 80px auto 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.mini-block {
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--line);
}
.mini-block--blue {
  background: linear-gradient(160deg, rgba(61,124,191,0.16), rgba(61,124,191,0.04));
  border-color: rgba(61,124,191,0.30);
}
.mini-block--purple {
  background: linear-gradient(160deg, rgba(123,67,196,0.16), rgba(123,67,196,0.04));
  border-color: rgba(123,67,196,0.30);
}
.mini-block--teal {
  background: linear-gradient(160deg, rgba(76,185,123,0.16), rgba(76,185,123,0.04));
  border-color: rgba(76,185,123,0.30);
}
.mini-block--blue .mini-block__title { color: #8fb8e0; }
.mini-block--purple .mini-block__title { color: #b394e6; }
.mini-block--teal .mini-block__title { color: #8fd9af; }
.mini-block__head {
  max-width: 60ch;
  margin: 0 auto 28px;
  text-align: center;
}
.mini-block__title {
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 8px;
}
.mini-block__intro {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-mute);
  margin: 0;
}
.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mini-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.mini-card {
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  background: rgba(10,9,16,0.28);
}
.mini-card__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 6px;
}
.mini-card__desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-mute);
  margin: 0;
}

@media (max-width: 760px) {
  .mini-block { padding: 28px 20px; }
  .mini-grid,
  .mini-grid--4 {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 980px) {
  .tiers { grid-template-columns: 1fr; gap: 24px; max-width: 480px; margin-inline: auto; }
  .tier--featured { transform: none; }
}

.stub-note {
  background: linear-gradient(135deg, rgba(230, 58, 122, 0.12), rgba(123, 67, 196, 0.12));
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  padding: 22px 26px;
  font-size: 15px;
  color: var(--ink-2);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  max-width: 720px;
}
.stub-note strong {
  font-family: var(--display);
  font-weight: 600;
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
}
.stub-note a {
  color: var(--ink);
  border-bottom: 1px solid var(--line-strong);
}
.stub-note a:hover { border-bottom-color: var(--magenta); color: var(--magenta); }

/* ─────────────────────────── community / monetization ───────────── */

.community {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.monetization {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}

/* brand-deal leverage callout — Nick's "engaged niche audience commands higher rates" point */
.brand-leverage {
  margin-top: clamp(28px, 4vw, 44px);
  background: linear-gradient(135deg, rgba(230, 58, 122, 0.10), rgba(123, 67, 196, 0.10));
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  padding: clamp(24px, 3vw, 36px);
}
.brand-leverage__label {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--magenta);
  margin: 0 0 12px;
}
.brand-leverage__copy {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink-2);
  max-width: 62ch;
}
.brand-leverage__copy strong {
  color: var(--ink);
  font-weight: 600;
  display: block;
  margin-top: 8px;
}

/* founder note (about page) */
.founder-note {
  margin: 0;
  max-width: 70ch;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 48px);
}
.founder-note blockquote { margin: 0; }
.founder-note blockquote p {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--ink-2);
  margin: 0 0 20px;
}
.founder-note blockquote p:last-child { margin-bottom: 0; }
.founder-note figcaption {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.founder-note__name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
}
.founder-note__role {
  font-size: 13px;
  color: var(--ink-mute);
}

/* ─────────────────────────────────────────────  docs pages  ─────────────────────────────────────── */

.docs-body { background: var(--bg); }

.docs-body .nav__links a.is-current {
  color: var(--ink);
  background: rgba(255,255,255,0.08);
}

.docs-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  max-width: 1280px;
  margin-inline: auto;
  padding: 32px var(--gutter) 80px;
  gap: 0;
}

.docs-sidebar {
  position: sticky;
  top: 90px;
  align-self: start;
  max-height: calc(100vh - 110px);
  overflow-y: auto;
  padding-right: 24px;
  border-right: 1px solid var(--line);
  font-size: 14px;
}
.docs-sidebar__brand {
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.docs-sidebar__version {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  margin: 0 0 28px;
  letter-spacing: 0.02em;
}
.docs-sidebar h4 {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 24px 0 6px;
}
.docs-sidebar h4:first-of-type { margin-top: 0; }
.docs-sidebar a {
  display: block;
  padding: 6px 0 6px 14px;
  margin-left: -2px;
  color: var(--ink-2);
  border-left: 2px solid transparent;
  font-size: 13.5px;
  line-height: 1.4;
  transition: color 140ms var(--ease), border-color 140ms var(--ease);
}
.docs-sidebar a:hover { color: var(--ink); }
.docs-sidebar a.is-active {
  color: var(--magenta);
  border-left-color: var(--magenta);
}

.docs-main {
  padding: 0 0 0 56px;
  max-width: 880px;
  min-width: 0;
}

.docs-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--magenta);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 12px;
}
.docs-h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.2rem, 4vw, 3rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 20px;
  color: var(--ink);
}
.docs-lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 32px;
  max-width: 64ch;
}

.docs-h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 64px 0 16px;
  color: var(--ink);
  padding-top: 16px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 90px;
}
.docs-h2:first-of-type { border-top: none; padding-top: 0; margin-top: 32px; }

.docs-h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 36px 0 12px;
  color: var(--ink);
  scroll-margin-top: 90px;
}
.docs-h4 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.005em;
  margin: 24px 0 10px;
  color: var(--ink);
  scroll-margin-top: 90px;
}

.docs-main p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 12px 0;
}
.docs-main strong { color: var(--ink); font-weight: 600; }
.docs-main em { color: var(--ink); font-style: italic; background: none; -webkit-background-clip: unset; background-clip: unset; }
.docs-main a {
  color: var(--ink);
  border-bottom: 1px solid var(--line-strong);
  transition: color 140ms var(--ease), border-color 140ms var(--ease);
}
.docs-main a:hover {
  color: var(--magenta);
  border-bottom-color: var(--magenta);
}

/* inline code */
.docs-main code {
  font-family: var(--mono);
  font-size: 0.87em;
  background: rgba(255, 255, 255, 0.06);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--ink);
  border: 1px solid var(--line);
  overflow-wrap: anywhere;
}
.docs-main a code { color: inherit; }

/* code blocks */
.docs-code {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px 20px;
  margin: 18px 0;
  overflow-x: auto;
  font-family: var(--mono);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink);
}
.docs-code code {
  background: transparent;
  border: none;
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre;
}

/* lists */
.docs-list {
  margin: 14px 0 14px 22px;
  padding: 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-2);
}
.docs-list li { margin: 8px 0; }
.docs-list--ordered { list-style: decimal; }

/* tables */
.docs-table-wrap {
  overflow-x: auto;
  margin: 18px 0;
  -webkit-overflow-scrolling: touch;
}
.docs-table-wrap .docs-table { margin: 0; min-width: 460px; }
.docs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  font-size: 14.5px;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.docs-table thead {
  background: var(--bg-2);
}
.docs-table th {
  text-align: left;
  font-family: var(--display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
}
.docs-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  color: var(--ink-2);
  line-height: 1.5;
}
.docs-table tr:last-child td { border-bottom: none; }
.docs-table tbody tr:hover { background: rgba(255,255,255,0.02); }
.docs-table code {
  font-size: 0.82em;
}

/* callout */
.docs-callout {
  background: linear-gradient(135deg, rgba(230, 58, 122, 0.10), rgba(123, 67, 196, 0.10));
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 18px 22px;
  margin: 24px 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
}
.docs-callout strong {
  color: var(--ink);
  font-family: var(--display);
  font-weight: 600;
}
.docs-callout--warn {
  background: linear-gradient(135deg, rgba(255, 133, 64, 0.10), rgba(230, 58, 122, 0.10));
}

.docs-footnav {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.docs-footnav a {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 500;
  color: var(--magenta);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.docs-footnav a:hover { color: var(--ink); }

/* responsive */
@media (max-width: 980px) {
  .docs-shell { grid-template-columns: 1fr; padding-inline: var(--gutter); }
  .docs-sidebar {
    position: static;
    max-height: none;
    overflow-y: visible;
    padding: 0 0 24px;
    margin-bottom: 24px;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .docs-sidebar h4 { margin-top: 16px; }
  .docs-main { padding: 24px 0 0; }
}
