/* ============================================================
   Compliments OS — marketing site styles
   Palette: warm ivory / soft cream / persimmon coral / apricot /
            butter yellow / fresh sage / deep espresso / muted burgundy
   ============================================================ */

:root {
  --ivory: #FFF9EF;
  --cream: #F5EBD8;
  --coral: #F26B4A;
  --apricot: #FFB36B;
  --butter: #F4D978;
  --sage: #9FB58C;
  --espresso: #302824;
  --burgundy: #7E3F46;

  --espresso-70: rgba(48, 40, 36, 0.72);
  --espresso-50: rgba(48, 40, 36, 0.55);
  --espresso-12: rgba(48, 40, 36, 0.12);
  --espresso-08: rgba(48, 40, 36, 0.08);
  --coral-soft: rgba(242, 107, 74, 0.12);
  --sage-soft: rgba(159, 181, 140, 0.22);
  --butter-soft: rgba(244, 217, 120, 0.32);
  --apricot-soft: rgba(255, 179, 107, 0.24);
  --burgundy-soft: rgba(126, 63, 70, 0.12);

  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Inter", -apple-system, "Segoe UI", sans-serif;
  --hand: "Caveat", cursive;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow-card: 0 2px 6px rgba(48, 40, 36, 0.05), 0 18px 44px -18px rgba(48, 40, 36, 0.18);
  --shadow-lift: 0 3px 8px rgba(48, 40, 36, 0.06), 0 26px 60px -20px rgba(48, 40, 36, 0.24);
  --container: 1160px;
  --ease: cubic-bezier(0.22, 0.8, 0.3, 1);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--espresso);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4, p, ul, dl { margin: 0; }
ul { padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}

/* ---------- Type ---------- */
.h2 {
  font-family: var(--serif);
  font-weight: 480;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  line-height: 1.14;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  line-height: 1.2;
}
.h4 {
  font-family: var(--serif);
  font-weight: 540;
  font-size: 1.3rem;
  line-height: 1.25;
}
.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 14px;
}
.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--espresso-70);
  margin-top: 16px;
  max-width: 56ch;
}
.body-lg { font-size: 1.05rem; color: var(--espresso-70); }
.handwritten {
  font-family: var(--hand);
  font-size: 1.5rem;
  color: var(--burgundy);
  line-height: 1.3;
}
.fineprint {
  font-size: 0.82rem;
  color: var(--espresso-50);
  line-height: 1.55;
  max-width: 62ch;
}
.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head .lede { margin-inline: 0; }

section { padding-block: clamp(72px, 9vw, 128px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background-color 0.2s;
}
.btn--lg { padding: 14px 28px; font-size: 1rem; }
.btn--primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(242, 107, 74, 0.6);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -10px rgba(242, 107, 74, 0.65); }
.btn--outline {
  border-color: var(--espresso-12);
  background: transparent;
  color: var(--espresso);
}
.btn--outline:hover { border-color: var(--espresso); transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: var(--espresso);
  padding-inline: 14px;
}
.btn--ghost:hover { color: var(--burgundy); }

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 249, 239, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--espresso-08);
}
.nav__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 14px clamp(20px, 4vw, 40px);
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav__wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--serif);
  font-weight: 560;
  font-size: 1.22rem;
  letter-spacing: 0.005em;
}
.nav__mark { width: 30px; height: 30px; flex: none; }
.nav__links {
  display: flex;
  gap: 22px;
  margin-inline: auto;
}
.nav__links a {
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--espresso-70);
  transition: color 0.15s;
  white-space: nowrap;
}
.nav__links a:hover { color: var(--espresso); }
.nav__menu-cta { display: none; }
.nav__ctas { display: flex; align-items: center; gap: 6px; }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
  margin-left: auto;
}
.nav__toggle span {
  width: 24px; height: 2px;
  background: var(--espresso);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}
.nav.is-open .nav__toggle span:first-child { transform: translateY(4px) rotate(45deg); }
.nav.is-open .nav__toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ---------- Shared bits: dots, chips, tags, badges, avatars ---------- */
.dot {
  display: inline-block;
  width: 9px; height: 9px;
  border-radius: 50%;
  flex: none;
}
.dot--coral { background: var(--coral); }
.dot--apricot { background: var(--apricot); }
.dot--butter { background: var(--butter); }
.dot--sage { background: var(--sage); }
.dot--burgundy { background: var(--burgundy); }
.dot--espresso { background: var(--espresso); }
.dot--drift { background: var(--apricot); }

.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--espresso);
  flex: none;
}
.avatar--sage { background: var(--sage-soft); border: 1.5px solid var(--sage); }
.avatar--apricot { background: var(--apricot-soft); border: 1.5px solid var(--apricot); }
.avatar--butter { background: var(--butter-soft); border: 1.5px solid var(--butter); }
.avatar--burgundy { background: var(--burgundy-soft); border: 1.5px solid var(--burgundy); color: var(--burgundy); }

.tag {
  display: inline-block;
  padding: 5px 13px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  background: var(--cream);
  border: 1px solid var(--espresso-08);
}
.tag--butter { background: var(--butter-soft); border-color: rgba(244, 217, 120, 0.8); }
.tag--sage { background: var(--sage-soft); border-color: rgba(159, 181, 140, 0.7); }
.tag--sm { font-size: 0.76rem; padding: 4px 11px; }
.tag--dark {
  background: rgba(255, 249, 239, 0.12);
  border-color: rgba(255, 249, 239, 0.25);
  color: var(--ivory);
}

.badge {
  display: inline-block;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}
.badge--warm { background: var(--butter-soft); color: var(--espresso); }
.badge--sage { background: var(--sage-soft); color: var(--espresso); }
.badge--match { background: var(--burgundy-soft); color: var(--burgundy); }

.signal {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  background: var(--ivory);
  border: 1px solid var(--espresso-08);
}
.signal i {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex: none;
}
.signal--drift { background: rgba(255, 179, 107, 0.16); }
.signal--drift i { background: var(--coral); }
.signal--info i { background: var(--sage); }
.signal--butter { background: var(--butter-soft); }
.signal--butter i { background: var(--burgundy); }
.signal--sage { background: var(--sage-soft); }
.signal--sage i { background: var(--sage); }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Hero ---------- */
.hero {
  padding-block: clamp(56px, 7vw, 104px);
  background:
    radial-gradient(56rem 30rem at 88% -10%, var(--butter-soft), transparent 60%),
    radial-gradient(44rem 26rem at -12% 30%, var(--sage-soft), transparent 55%),
    var(--ivory);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.hero__headline {
  font-family: var(--serif);
  font-weight: 460;
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.hero__accent {
  font-style: italic;
  color: var(--burgundy);
}
.hero__sub {
  margin-top: 16px;
  font-size: 1.06rem;
  color: var(--espresso-70);
  max-width: 50ch;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.hero__note {
  margin-top: 22px;
  font-size: 0.84rem;
  color: var(--espresso-50);
}

/* Hero product composition */
.hero-demo {
  position: relative;
  display: grid;
  gap: 16px;
  max-width: 460px;
  margin-inline: auto;
}
.hero-demo__sources {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 2px;
}
.src-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--espresso-08);
  border-radius: 999px;
  padding: 7px 15px;
  font-size: 0.82rem;
  font-weight: 500;
  box-shadow: var(--shadow-card);
  animation: chip-in 0.7s var(--ease) both;
}
.src-chip--1 { animation-delay: 0.15s; }
.src-chip--2 { animation-delay: 0.3s; }
.src-chip--3 { animation-delay: 0.45s; }
.src-chip--4 { animation-delay: 0.6s; }
.src-chip--5 { animation-delay: 0.75s; }
@keyframes chip-in {
  from { opacity: 0; transform: translateY(-18px) scale(0.92); }
  to { opacity: 1; transform: none; }
}

.profile-card {
  background: #fff;
  border: 1px solid var(--espresso-08);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-lift);
  animation: card-in 0.8s var(--ease) 0.85s both;
}
.profile-card--static { animation: none; box-shadow: var(--shadow-card); }
@keyframes card-in {
  from { opacity: 0; transform: translateY(22px) scale(0.97); }
  to { opacity: 1; transform: none; }
}
.profile-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.profile-card__head > div { flex: 1; min-width: 0; }
.profile-card__name {
  font-family: var(--serif);
  font-weight: 560;
  font-size: 1.18rem;
  line-height: 1.2;
}
.profile-card__meta {
  font-size: 0.83rem;
  color: var(--espresso-50);
  margin-top: 2px;
}
.profile-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.profile-card__foot { margin-top: 16px; }

.ai-card {
  background: var(--espresso);
  color: var(--ivory);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow-lift);
  animation: card-in 0.8s var(--ease) 1.7s both;
}
.ai-card__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--apricot);
}
.spark { color: var(--butter); font-style: normal; }
.ai-card__text {
  margin-top: 10px;
  font-size: 0.98rem;
  line-height: 1.55;
}
.ai-card__actions { display: flex; gap: 10px; margin-top: 16px; }
.mini-btn {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid rgba(255, 249, 239, 0.35);
  color: var(--ivory);
}
.mini-btn--fill { background: var(--coral); border-color: var(--coral); }

.compliment-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--butter-soft);
  border: 1px dashed rgba(126, 63, 70, 0.4);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.92rem;
  animation: card-in 0.8s var(--ease) 2.4s both;
}
.compliment-card__icon { font-size: 1.5rem; }

/* ---------- Trust band / logo wall ---------- */
.trust {
  background: var(--ivory);
  padding-block: clamp(36px, 4.5vw, 56px);
  border-top: 1px solid var(--espresso-08);
  border-bottom: 1px solid var(--espresso-08);
}
.trust__label {
  text-align: center;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--espresso-50);
}
.logo-wall {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px clamp(28px, 5vw, 56px);
}
.logo-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--espresso);
  opacity: 0.55;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.logo-item:hover { opacity: 1; transform: translateY(-2px); }
.logo-item__glyph {
  width: 29px;
  height: 29px;
  flex: none;
}
.logo-item__name {
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  white-space: nowrap;
}
.logo-item__name--wide { letter-spacing: 0.02em; }
.trust__note {
  margin-top: 24px;
  text-align: center;
  margin-inline: auto;
  max-width: 64ch;
  font-size: 0.78rem;
  color: var(--espresso-50);
  line-height: 1.55;
}

/* ---------- Positioning ---------- */
.positioning { background: var(--cream); }
.positioning__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.positioning__statement {
  background: var(--ivory);
  border: 1px solid var(--espresso-08);
  border-radius: 26px;
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 14px;
}
.positioning__line {
  font-family: var(--serif);
  line-height: 1.25;
  text-wrap: balance;
}
.positioning__line--plain {
  font-size: clamp(1.15rem, 1.9vw, 1.45rem);
  font-weight: 440;
  color: var(--espresso-70);
}
.positioning__line--accent {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 540;
  font-style: italic;
  color: var(--burgundy);
}

/* ---------- Who it's for ---------- */
.audience { background: var(--ivory); }
.audience__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.audience-card {
  background: #fff;
  border: 1px solid var(--espresso-08);
  border-top: 4px solid var(--sage);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 34px);
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 12px;
  align-content: start;
}
.audience-card--group { border-top-color: var(--coral); }
.audience-card__tag {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
}
.audience-card > p { font-size: 0.98rem; color: var(--espresso-70); }
.audience-card__list {
  display: grid;
  gap: 9px;
  margin-top: 6px;
}
.audience-card__list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.9rem;
  color: var(--espresso-70);
}
.audience-card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--apricot);
}
.audience__bridge {
  margin-top: clamp(26px, 3.5vw, 36px);
  text-align: center;
  font-size: 1rem;
  color: var(--espresso-70);
}
.audience__bridge a,
.partner__alt a {
  color: var(--burgundy);
  font-weight: 600;
  text-underline-offset: 3px;
}
.partner__alt {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--espresso-12);
  font-size: 0.95rem;
}

/* ---------- Product architecture ---------- */
.architecture { background: var(--ivory); }
.arch {
  display: grid;
  gap: 10px;
  max-width: 780px;
  margin-inline: auto;
  justify-items: stretch;
}
.arch__connector {
  text-align: center;
  color: var(--espresso-50);
  font-size: 1.1rem;
  line-height: 1;
}
.arch-layer {
  border-radius: var(--radius);
  padding: 24px 28px;
  border: 1px solid var(--espresso-08);
  display: grid;
  gap: 10px;
}
.arch-layer__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--burgundy);
}
.arch-layer__text { font-size: 0.98rem; color: var(--espresso-70); max-width: 56ch; }
.arch-layer__chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 4px; }
.arch-layer--action { background: #fff; box-shadow: var(--shadow-card); }
.arch-layer--intel {
  background: var(--espresso);
  border-color: var(--espresso);
  box-shadow: var(--shadow-lift);
}
.arch-layer--intel .arch-layer__label { color: var(--apricot); }
.arch-layer--intel .arch-layer__text { color: rgba(255, 249, 239, 0.85); }
.arch-layer--intel strong { color: var(--ivory); }
.arch-layer--record { background: var(--cream); }

/* ---------- Manifesto ---------- */
.manifesto { background: var(--ivory); }
.manifesto__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.manifesto .lede { margin-top: 22px; }
.manifesto .body-lg { margin-top: 18px; max-width: 54ch; }
.manifesto__art { position: relative; }
.table-art { border-radius: 28px; box-shadow: var(--shadow-card); }
.manifesto__caption {
  position: absolute;
  bottom: -14px;
  right: 8px;
  transform: rotate(-3deg);
}

/* ---------- Fragmented data ---------- */
/* ---------- Honest comparison ---------- */
/* Sits between two ivory/cream sections, so a hairline does the separating
   rather than another background switch. */
.compare {
  background: var(--ivory);
  border-top: 1px solid var(--espresso-08);
}
.compare .audience-card p + p { margin-top: 12px; }

.fragmented { background: var(--cream); }
.flow {
  display: grid;
  grid-template-columns: auto minmax(80px, 160px) minmax(0, 1fr);
  gap: 0 12px;
  align-items: center;
  max-width: 920px;
  margin-inline: auto;
}
.flow__sources {
  display: grid;
  gap: 12px;
  justify-items: start;
}
.flow-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ivory);
  border: 1px solid var(--espresso-08);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: var(--shadow-card);
}
.flow__lines { width: 100%; height: 300px; }
.flow__lines path {
  fill: none;
  stroke: var(--burgundy);
  stroke-opacity: 0.35;
  stroke-width: 1.6;
  stroke-dasharray: 6 7;
  animation: dash-flow 2.6s linear infinite;
}
@keyframes dash-flow {
  to { stroke-dashoffset: -52; }
}
.flow__result { display: grid; gap: 18px; }
.flow__outcome {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 520;
  color: var(--burgundy);
}
.flow__fineprint {
  margin-top: 28px;
  text-align: center;
  margin-inline: auto;
}

/* ---------- Guest intelligence ---------- */
.intelligence { background: var(--ivory); }
.product-panel {
  background: var(--cream);
  border: 1px solid var(--espresso-08);
  border-radius: 26px;
  padding: clamp(20px, 3vw, 36px);
}
.search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--espresso-12);
  border-radius: 999px;
  padding: 8px 10px 8px 20px;
  box-shadow: var(--shadow-card);
}
.search-bar__icon { width: 19px; height: 19px; color: var(--espresso-50); flex: none; }
.search-bar input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: none;
  font-size: 0.98rem;
  color: var(--espresso);
  padding-block: 6px;
}
.search-bar input:focus { outline: none; }
.search-bar__key {
  background: var(--espresso);
  color: var(--ivory);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 600;
}
.intel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 18px;
  margin-top: 20px;
  align-items: start;
}
.intel-card {
  background: #fff;
  border: 1px solid var(--espresso-08);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-card);
}
.intel-side { display: grid; gap: 18px; align-content: start; }
.card-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 10px;
}
.intel-summary { font-size: 0.93rem; line-height: 1.65; color: var(--espresso-70); }
.match-why {
  margin-top: 16px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--sage-soft);
  border: 1px solid rgba(159, 181, 140, 0.6);
  font-size: 0.85rem;
  color: var(--espresso-70);
}
.match-why__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--espresso);
  margin-bottom: 2px;
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 20px;
  padding: 16px 0;
  border-block: 1px solid var(--espresso-08);
}
.stat-row dt {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--espresso-50);
}
.stat-row dd {
  margin: 4px 0 0;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 560;
}
.timeline { margin-top: 20px; display: grid; gap: 12px; }
.timeline__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: baseline;
  font-size: 0.88rem;
  color: var(--espresso-70);
}
.timeline__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  top: 0;
}
.timeline__item time { font-size: 0.78rem; color: var(--espresso-50); white-space: nowrap; }
.note-list { display: grid; gap: 12px; font-size: 0.9rem; color: var(--espresso-70); }
.note-list li { padding-left: 12px; border-left: 2.5px solid var(--sage); }
.note-author {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--espresso-50);
  margin-bottom: 2px;
}
.query-list { display: grid; gap: 10px; font-size: 0.9rem; font-style: italic; color: var(--espresso-70); }
.intel-card--queries { background: var(--butter-soft); border-color: rgba(244, 217, 120, 0.9); }

/* ---------- Activation ---------- */
.actions { background: var(--cream); }
.actions__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.actions__grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.actions__note {
  margin-top: clamp(28px, 4vw, 40px);
  max-width: 62ch;
}
.action-card {
  background: #fff;
  border: 1px solid var(--espresso-08);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 12px;
  align-content: start;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.action-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.action-card__moment {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
}
.action-card p:not(.action-card__moment) { font-size: 0.92rem; color: var(--espresso-70); }
.action-card__demo { margin-top: 6px; }
.action-card__demo .signal { font-size: 0.78rem; }

/* ---------- Reviews ---------- */
.reviews { background: var(--ivory); }
.reviews__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.check-list {
  margin-top: 26px;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 32px;
  font-size: 0.98rem;
  color: var(--espresso-70);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 19px; height: 19px;
  border-radius: 50%;
  background: var(--sage-soft);
  border: 1.5px solid var(--sage);
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 5.5px; top: 8px;
  width: 8px; height: 5px;
  border-left: 2px solid var(--espresso);
  border-bottom: 2px solid var(--espresso);
  transform: rotate(-45deg);
}
.reviews .fineprint { margin-top: 22px; }
.reviews__demo { display: grid; gap: 16px; }
.review-card {
  background: #fff;
  border: 1px solid var(--espresso-08);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-lift);
}
.review-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.review-card__head > div { flex: 1; min-width: 120px; }
.review-card__name { font-weight: 600; }
.review-card__stars { font-size: 0.85rem; color: var(--espresso-50); }
.stars-on { color: var(--coral); letter-spacing: 2px; }
.stars-off { color: var(--espresso-12); letter-spacing: 2px; }
.review-card__text {
  margin-top: 16px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--espresso-70);
}
.ai-card--review { animation: none; }

/* ---------- Multi-location ---------- */
.multiloc { background: var(--cream); }
.multiloc__demo {
  background: var(--ivory);
  border: 1px solid var(--espresso-08);
  border-radius: 26px;
  padding: clamp(20px, 3vw, 36px);
  box-shadow: var(--shadow-card);
}
.concept-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.concept {
  border-radius: var(--radius-sm);
  padding: 18px;
  border: 1px solid var(--espresso-08);
}
.concept--coral { background: var(--coral-soft); border-top: 4px solid var(--coral); }
.concept--sage { background: var(--sage-soft); border-top: 4px solid var(--sage); }
.concept--burgundy { background: var(--burgundy-soft); border-top: 4px solid var(--burgundy); }
.concept--apricot { background: var(--apricot-soft); border-top: 4px solid var(--apricot); }
.concept__name { font-family: var(--serif); font-weight: 560; font-size: 1.05rem; }
.concept__type { font-size: 0.8rem; color: var(--espresso-50); margin-top: 3px; }
.multiloc__guest {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--espresso-08);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px 32px;
  margin-top: clamp(32px, 4vw, 48px);
}
.feature-list li { display: grid; gap: 4px; font-size: 0.92rem; }
.feature-list strong { font-weight: 600; }
.feature-list span { color: var(--espresso-70); }

/* ---------- Integrations ---------- */
.integrations { background: var(--cream); }
.integrations__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.int-card {
  background: var(--ivory);
  border: 1px solid var(--espresso-08);
  border-radius: var(--radius-sm);
  padding: 22px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 10px 14px;
}
.int-card__glyph {
  width: 26px;
  height: 26px;
  flex: none;
  color: var(--espresso);
  opacity: 0.6;
  grid-row: 1 / span 2;
}
.int-card__name {
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.35;
  align-self: center;
  min-height: 26px;
  display: flex;
  align-items: center;
}
.int-card__status {
  justify-self: start;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--burgundy);
  background: var(--burgundy-soft);
  border-radius: 999px;
  padding: 4px 11px;
  white-space: nowrap;
}
.integrations .fineprint { margin-top: 24px; }

/* ---------- Responsible AI ---------- */
.responsible { background: var(--ivory); }
.principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px 32px;
}
.principle {
  padding-top: 16px;
  border-top: 2.5px solid var(--sage);
}
.principle:nth-child(3n+2) { border-top-color: var(--butter); }
.principle:nth-child(3n+3) { border-top-color: var(--apricot); }
.principle h3 {
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 560;
}
.principle p { margin-top: 6px; font-size: 0.88rem; color: var(--espresso-70); }

/* ---------- Early access signup ---------- */
.partner { background: var(--ivory); }
.partner__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.partner__talk { margin-top: 22px; padding-left: 0; }
.partner-form {
  background: #fff;
  border: 1px solid var(--espresso-08);
  border-radius: 26px;
  padding: clamp(24px, 3.4vw, 40px);
  box-shadow: var(--shadow-lift);
}
.partner-form__title {
  font-family: var(--serif);
  font-weight: 540;
  font-size: 1.45rem;
  margin-bottom: 22px;
}
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { display: grid; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 0.85rem;
  font-weight: 600;
}
.label-opt { font-weight: 400; color: var(--espresso-50); }
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1.5px solid var(--espresso-12);
  border-radius: var(--radius-sm);
  background: #fff;
  padding: 11px 14px;
  font-size: 0.95rem;
  transition: border-color 0.15s;
}
.field textarea { resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px var(--coral-soft);
}
.field__error {
  display: none;
  font-size: 0.78rem;
  color: var(--burgundy);
  font-weight: 500;
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: var(--burgundy); }
.field.has-error .field__error { display: block; }
.partner-form__submit { width: 100%; margin-top: 24px; }
.partner-form .fineprint { margin-top: 14px; text-align: center; margin-inline: auto; }

.partner-success[hidden] { display: none; }
.partner-form[hidden] { display: none; }
.partner-success {
  grid-column: 2;
  background: #fff;
  border: 1px solid var(--espresso-08);
  border-radius: 26px;
  padding: clamp(32px, 4vw, 56px);
  box-shadow: var(--shadow-lift);
  text-align: center;
  display: grid;
  gap: 14px;
  justify-items: center;
}
.partner-success__icon { font-size: 2.4rem; }
.partner-success p { color: var(--espresso-70); max-width: 44ch; }

/* ---------- Final CTA ---------- */
.final-cta {
  background:
    radial-gradient(40rem 22rem at 15% 0%, var(--apricot-soft), transparent 60%),
    radial-gradient(40rem 22rem at 85% 100%, var(--sage-soft), transparent 60%),
    var(--ivory);
}
.final-cta__inner {
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 10px;
}
.final-cta .lede { margin-inline: auto; }
.final-cta .btn { margin-top: 20px; }
.final-cta__hand {
  margin-top: 14px;
  font-size: 1.7rem;
  transform: rotate(-2deg);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--espresso);
  color: var(--ivory);
  padding-block: clamp(48px, 6vw, 72px) 28px;
}
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) repeat(5, minmax(0, 0.64fr));
  gap: 32px;
}
.footer .nav__wordmark { color: var(--ivory); }
.footer__tag {
  margin-top: 12px;
  font-size: 0.88rem;
  color: rgba(255, 249, 239, 0.6);
  max-width: 30ch;
}
.footer__head {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 249, 239, 0.5);
  margin-bottom: 14px;
}
.footer__col { display: grid; gap: 10px; align-content: start; justify-items: start; }
.footer__col a {
  text-decoration: none;
  font-size: 0.92rem;
  color: rgba(255, 249, 239, 0.85);
}
.footer__col a:hover { color: var(--apricot); }
.footer__base {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 249, 239, 0.14);
  font-size: 0.82rem;
  color: rgba(255, 249, 239, 0.55);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1260px) {
  .nav__links { display: none; }
  .nav.is-open .nav__links {
    display: grid;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--ivory);
    border-bottom: 1px solid var(--espresso-08);
    padding: 20px clamp(20px, 4vw, 40px) 26px;
    gap: 16px;
  }
  .nav__toggle { display: flex; }
  .nav__ctas { margin-left: auto; }
  .nav__ctas .btn--ghost { display: none; }
}

@media (max-width: 1024px) {
  .actions__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .principles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .concept-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .hero__grid,
  .manifesto__grid,
  .reviews__grid,
  .positioning__inner,
  .audience__grid,
  .partner__grid { grid-template-columns: 1fr; }
  .partner-success { grid-column: 1; }
  .hero__visual { order: 2; }
  .manifesto__art { max-width: 420px; }
  .intel-grid { grid-template-columns: 1fr; }
  .flow {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .flow__sources {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: stretch;
  }
  .flow-chip { justify-content: flex-start; }
  .flow__lines { display: none; }
  .stat-row { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .actions__grid,
  .integrations__grid,
  .principles,
  .concept-grid,
  .feature-list,
  .field-grid,
  .flow__sources { grid-template-columns: 1fr; }
  .arch-layer { padding: 20px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .hero__ctas .btn { width: 100%; }
  .nav__ctas { display: none; }
  .nav__menu-cta {
    display: inline-block;
    color: var(--coral) !important;
    font-weight: 600;
  }
  .nav__wordmark { font-size: 1.1rem; }
  .nav__wordmark .nav__mark { width: 26px; height: 26px; }
  .btn { white-space: normal; }
  .int-card { flex-wrap: wrap; }
}

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

/* ============================================================
   Comparison pages (/vs/[slug])
   ============================================================ */
.vs-hero {
  padding-block: clamp(56px, 7vw, 92px) clamp(40px, 5vw, 64px);
  background:
    radial-gradient(50rem 26rem at 85% -10%, var(--butter-soft), transparent 60%),
    var(--ivory);
}
.vs-hero__headline {
  font-family: var(--serif);
  font-weight: 460;
  font-size: clamp(2.1rem, 4.4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.018em;
  max-width: 20ch;
  text-wrap: balance;
}
.vs-hero__lede { margin-top: 18px; max-width: 60ch; }
.vs-hero .hero__ctas { margin-top: 28px; }

/* The concession. Visually distinct so it reads as candour, not filler. */
.vs-concede { background: var(--cream); padding-block: clamp(44px, 6vw, 72px); }
.vs-concede__card {
  background: var(--ivory);
  border: 1px solid var(--espresso-08);
  border-left: 5px solid var(--sage);
  border-radius: 26px;
  padding: clamp(26px, 4vw, 44px);
  max-width: 860px;
  box-shadow: var(--shadow-card);
}
.vs-concede__card .h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.vs-concede__body { margin-top: 16px; max-width: 68ch; }

.vs-case { background: var(--ivory); padding-block: clamp(56px, 7vw, 96px); }
.vs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.vs-point {
  background: #fff;
  border: 1px solid var(--espresso-08);
  border-top: 4px solid var(--coral);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 30px);
  box-shadow: var(--shadow-card);
}
.vs-point p { margin-top: 10px; font-size: 0.95rem; color: var(--espresso-70); }

.vs-questions { background: var(--espresso); padding-block: clamp(48px, 6vw, 80px); }
.vs-questions__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.vs-questions .eyebrow { color: var(--apricot); }
.vs-questions .h2 { color: var(--ivory); }
.vs-questions .lede { color: rgba(255, 249, 239, 0.72); }
.vs-questions__list { display: grid; gap: 12px; }
.vs-questions__list li {
  color: rgba(255, 249, 239, 0.9);
  font-size: 1.02rem;
  padding: 14px 18px;
  border: 1px solid rgba(255, 249, 239, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(255, 249, 239, 0.05);
}

.vs-others { background: var(--cream); padding-block: 36px; }
.vs-others__label { margin-bottom: 12px; }
.vs-others__list { display: flex; flex-wrap: wrap; gap: 10px; }
.vs-others__list a {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--espresso-12);
  background: var(--ivory);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
}
.vs-others__list a:hover { border-color: var(--espresso); }
.vs-disclaimer {
  margin-top: 14px;
  max-width: 74ch;
  font-size: 0.76rem;
  line-height: 1.55;
  color: rgba(255, 249, 239, 0.45);
}

/* ============================================================
   Squeeze pages (/lp/[slug])
   ============================================================ */
.lp { background: var(--ivory); min-height: 100vh; }
.lp-header { padding: 22px 0; border-bottom: 1px solid var(--espresso-08); }

.lp-hero {
  padding-block: clamp(36px, 5vw, 64px);
  background:
    radial-gradient(46rem 26rem at 90% -12%, var(--butter-soft), transparent 62%),
    radial-gradient(38rem 22rem at -8% 40%, var(--sage-soft), transparent 58%),
    var(--ivory);
}
.lp-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.lp-hero__headline {
  font-family: var(--serif);
  font-weight: 460;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.09;
  letter-spacing: -0.018em;
  text-wrap: balance;
}
.lp-hero__lede {
  margin-top: 18px;
  font-size: clamp(1.02rem, 1.5vw, 1.15rem);
  color: var(--espresso-70);
  max-width: 54ch;
}
.lp-problem { margin-top: 30px; }
.lp-problem__list { margin-top: 12px; display: grid; gap: 10px; }
.lp-problem__list li {
  position: relative;
  padding-left: 26px;
  font-size: 0.97rem;
  color: var(--espresso-70);
}
.lp-problem__list li::before {
  content: "";
  position: absolute;
  left: 4px; top: 9px;
  width: 8px; height: 8px;
  border-radius: 2px;
  background: var(--coral);
  opacity: 0.75;
}

.lp-form-card {
  position: sticky;
  top: 24px;
  background: #fff;
  border: 1px solid var(--espresso-08);
  border-radius: 26px;
  padding: clamp(24px, 3vw, 34px);
  box-shadow: var(--shadow-lift);
}
.lp-form-card__heading { font-family: var(--serif); font-size: 1.5rem; font-weight: 540; }
.lp-form-card__sub { margin-top: 8px; font-size: 0.92rem; color: var(--espresso-70); }
.lp-form { margin-top: 20px; display: grid; gap: 14px; }
.lp-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lp-form__error {
  border: 1px solid rgba(126, 63, 70, 0.3);
  background: rgba(126, 63, 70, 0.06);
  color: var(--burgundy);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 500;
}
.lp-form__submit { width: 100%; margin-top: 4px; }
.lp-form__reassurance {
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--subtle, var(--espresso-50));
  text-align: center;
}
.lp-success { display: grid; gap: 12px; justify-items: center; text-align: center; padding: 20px 0; }
.lp-success__icon { font-size: 2.2rem; }
.lp-success p { color: var(--espresso-70); max-width: 40ch; }

.lp-outcome { background: var(--cream); padding-block: clamp(52px, 7vw, 88px); }
.lp-outcome__heading { max-width: 20ch; }
.lp-outcome__grid {
  margin-top: clamp(26px, 4vw, 40px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.lp-outcome__card {
  background: var(--ivory);
  border: 1px solid var(--espresso-08);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 28px);
}
.lp-outcome__card p { margin-top: 9px; font-size: 0.94rem; color: var(--espresso-70); }
.lp-outcome__cta { margin-top: clamp(30px, 4vw, 44px); display: grid; justify-items: center; gap: 6px; }
.lp-outcome__hand { font-size: 1.5rem; transform: rotate(-2deg); }

.lp-footer {
  background: var(--espresso);
  color: rgba(255, 249, 239, 0.6);
  padding-block: 28px;
  font-size: 0.82rem;
}
.lp-footer a { color: rgba(255, 249, 239, 0.85); }
.lp-footer__note { margin-top: 8px; max-width: 74ch; font-size: 0.76rem; opacity: 0.75; }

@media (max-width: 900px) {
  .vs-grid,
  .vs-questions__inner,
  .lp-hero__grid,
  .lp-outcome__grid { grid-template-columns: 1fr; }
  .lp-form-card { position: static; }
}
@media (max-width: 560px) {
  .lp-form__row { grid-template-columns: 1fr; }
}

.compare__links { margin-top: clamp(28px, 4vw, 40px); text-align: center; }
.compare__links .vs-others__list { justify-content: center; margin-top: 12px; }

/* ---------- Featured comparison callout ---------- */
/* Elevated by hierarchy, not by shouting. No banner, no modal, no sticky bar. */
.compare__featured {
  margin-top: clamp(28px, 4vw, 40px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding: clamp(20px, 3vw, 28px) clamp(22px, 3vw, 32px);
  background: var(--cream);
  border: 1px solid var(--espresso-08);
  border-left: 5px solid var(--coral);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.compare__featured-body { flex: 1 1 320px; min-width: 0; }
.compare__featured-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 6px;
}
.compare__featured-body p { margin-top: 6px; font-size: 0.94rem; color: var(--espresso-70); }
.compare__featured-cta { flex: none; }

/* ---------- Comparison hub ---------- */
.vs-featured { background: var(--cream); padding-block: clamp(40px, 5vw, 64px); }
.vs-featured__card {
  background: var(--ivory);
  border: 1px solid var(--espresso-08);
  border-left: 5px solid var(--coral);
  border-radius: 26px;
  padding: clamp(26px, 4vw, 44px);
  max-width: 780px;
  box-shadow: var(--shadow-lift);
}
.vs-featured__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 10px;
}
.vs-featured__cta { margin-top: 24px; }

.vs-index { background: var(--ivory); padding-block: clamp(56px, 7vw, 88px); }
.vs-index__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.vs-index__card {
  display: block;
  height: 100%;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--espresso-08);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 28px);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.vs-index__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.vs-index__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 8px;
}
.vs-index__concede {
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--espresso-70);
}
.vs-index__more {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--burgundy);
}

/* ---------- Footer legal strip ---------- */
.footer__legal { display: inline-flex; gap: 16px; margin-left: 16px; }
.footer__legal a {
  color: rgba(255, 249, 239, 0.7);
  text-decoration: none;
}
.footer__legal a:hover { color: var(--apricot); }

/* ---------- Legal pages ---------- */
.legal { background: var(--ivory); padding-block: clamp(44px, 6vw, 76px) clamp(56px, 7vw, 96px); }
.legal__inner { max-width: 720px; }
.legal__title {
  font-family: var(--serif);
  font-weight: 460;
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
}
.legal__updated { margin-top: 10px; font-size: 0.84rem; color: var(--espresso-50); }
.legal__intro {
  margin-top: 20px;
  font-size: 1.06rem;
  line-height: 1.65;
  color: var(--espresso-70);
}
.legal h2 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 560;
  margin-top: 38px;
}
.legal p { margin-top: 12px; line-height: 1.7; color: var(--espresso-70); }
.legal a { color: var(--burgundy); font-weight: 500; }
.legal__list { margin-top: 14px; display: grid; gap: 10px; }
.legal__list li {
  position: relative;
  padding-left: 22px;
  line-height: 1.65;
  color: var(--espresso-70);
}
.legal__list li::before {
  content: "";
  position: absolute;
  left: 2px; top: 11px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--apricot);
}
.legal__note {
  margin-top: 40px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background: var(--cream);
  border: 1px solid var(--espresso-08);
  font-size: 0.88rem;
}

@media (max-width: 900px) {
  .vs-index__grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .footer__legal { display: flex; margin-left: 0; margin-top: 8px; }
}
