/* ═══════════════════════════════════════════════════════════
   atSpark — Playful Edition
   Warm cream surfaces · coral / violet / lime accents
   Fraunces display · Plus Jakarta Sans body · Instrument Serif italic moments
   ═══════════════════════════════════════════════════════════ */

:root {
  /* Surfaces */
  --cream:        #FBF8F3;
  --cream-2:      #F4EFE6;
  --paper:        #FFFFFF;
  --night:        #1A0B2E;
  --night-2:      #261236;

  /* Brand (logo) */
  --brand:        #3898F8;       /* Original logo blue — decorative use */
  --brand-strong: #1A5CB3;       /* WCAG AA on cream + on brand-soft (5.5:1) */
  --brand-2:      #20C8C8;
  --brand-soft:   #DDEEFF;
  --brand-sparkle:#50D2E6;

  /* Accents */
  --coral:        #FF5B49;       /* decorative */
  --coral-strong: #C2310E;       /* WCAG AA on cream + on coral-soft */
  --coral-soft:   #FFE5DF;
  --violet:       #7C3AED;       /* decorative */
  --violet-strong:#6D28D9;       /* WCAG AA on cream + on violet-soft */
  --violet-soft:  #EADBFF;
  --lime:         #D8F36B;
  --lime-2:       #BEF264;
  --peach:        #FFD7A8;
  --sky:          #C5E4FF;
  --bubblegum:    #FFB6D9;

  /* Ink */
  --ink:          #14111F;
  --ink-soft:     #4B4358;
  --ink-faint:    #8A8294;
  --line:         rgba(20, 17, 31, 0.08);
  --line-2:       rgba(20, 17, 31, 0.16);

  /* Fonts */
  --f-display:    'Fraunces', 'Times New Roman', serif;
  --f-body:       'Plus Jakarta Sans', system-ui, sans-serif;
  --f-serif:      'Instrument Serif', 'Times New Roman', serif;
  --f-mono:       'JetBrains Mono', ui-monospace, monospace;

  /* Easing */
  --ease:         cubic-bezier(.2,.7,.2,1);
  --ease-bounce:  cubic-bezier(.34,1.56,.64,1);

  /* Radius */
  --r-sm:         10px;
  --r-md:         18px;
  --r-lg:         28px;
  --r-xl:         40px;
  --r-pill:       999px;

  /* Shadow — clay/soft */
  --shadow-sm:    0 2px 6px rgba(20, 17, 31, 0.06), 0 1px 2px rgba(20, 17, 31, 0.04);
  --shadow-md:    0 8px 24px rgba(20, 17, 31, 0.08), 0 2px 6px rgba(20, 17, 31, 0.05);
  --shadow-lg:    0 24px 48px -12px rgba(20, 17, 31, 0.18), 0 8px 16px rgba(20, 17, 31, 0.06);
  --shadow-pop:   0 14px 0 -4px rgba(124, 58, 237, 0.18), 0 16px 36px -8px rgba(20, 17, 31, 0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--violet); color: var(--cream); }

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; }
em, .it { font-family: var(--f-serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em; }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; position: relative; }
@media (max-width: 760px) { .wrap { padding: 0 20px; } }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ── Background ornament — soft gradient blobs ──────────────── */
.blob-bg {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
}
.blob {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.55;
  animation: blobFloat 18s ease-in-out infinite alternate;
}
.blob.b1 { top: -160px; left: -100px; width: 520px; height: 520px;
  background: radial-gradient(closest-side, var(--coral), transparent 70%); opacity: 0.38; }
.blob.b2 { top: 30vh; right: -180px; width: 600px; height: 600px;
  background: radial-gradient(closest-side, var(--violet), transparent 70%); opacity: 0.28;
  animation-delay: -6s; }
.blob.b3 { bottom: -200px; left: 30vw; width: 700px; height: 700px;
  background: radial-gradient(closest-side, var(--lime), transparent 70%); opacity: 0.22;
  animation-delay: -10s; }

@keyframes blobFloat {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(40px, -30px) scale(1.06); }
  100% { transform: translate(-30px, 40px) scale(0.96); }
}

/* ══════ NAV ═══════════════════════════════════════════════ */
.nav {
  position: fixed; top: 14px; left: 14px; right: 14px; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 22px;
  background: rgba(251, 248, 243, 0.94);
  backdrop-filter: blur(18px) saturate(140%); -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1.5px solid var(--line-2);
  border-radius: var(--r-pill);
  box-shadow: 0 2px 8px rgba(20, 17, 31, 0.04);
  transition: box-shadow .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
}
.nav-scrolled {
  background: rgba(251, 248, 243, 0.98);
  border-color: var(--ink);
  box-shadow: 0 10px 28px -8px rgba(20, 17, 31, 0.22), 0 2px 6px rgba(20, 17, 31, 0.08);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  color: var(--ink);
  padding: 4px 8px 4px 4px;
  border-radius: var(--r-pill);
  transition: background .25s var(--ease);
  cursor: pointer;
}
.nav-logo:hover { background: var(--brand-soft); }
.logo-mark { display: block; transition: transform .4s var(--ease-bounce); }
.nav-logo:hover .logo-mark { transform: rotate(-12deg) scale(1.1); }
.logo-word { font-family: var(--f-display); font-weight: 700; font-size: 24px; letter-spacing: -0.04em; line-height: 1;
  font-variation-settings: "SOFT" 100, "WONK" 1; }

.nav-links { display: flex; gap: 26px; }
.nav-links a {
  font-size: 14.5px; font-weight: 500; color: var(--ink-soft);
  padding: 8px 4px; position: relative; transition: color .25s var(--ease);
}
.nav-links a:hover { color: var(--coral); }
.nav-links a::after {
  content: ""; position: absolute; left: 4px; right: 4px; bottom: 4px; height: 2px;
  background: var(--coral); border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: var(--cream);
  padding: 11px 20px; border-radius: var(--r-pill);
  font-weight: 600; font-size: 14.5px;
  transition: transform .25s var(--ease-bounce), background .25s var(--ease);
}
.nav-cta:hover { background: var(--brand-strong); transform: translateY(-2px); }

.nav-menu {
  display: none; background: none; border: 0; padding: 8px;
  position: relative; z-index: 2; cursor: pointer;
}
.nav-menu span {
  display: block; width: 22px; height: 2px; background: var(--ink); margin: 4px 0; border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}

@media (max-width: 920px) {
  .nav-menu { display: block; }

  /* The pill becomes an expanding panel: logo + hamburger on row 1,
     links and CTA wrap onto full-width rows when open. */
  .nav {
    flex-wrap: wrap;
    row-gap: 0;
    transition: border-radius .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
  }

  /* Collapsed: hide links + CTA entirely */
  .nav-links,
  .nav-cta { display: none; }

  /* Open: expand the pill into a card and reveal a stacked menu */
  body.menu-open .nav {
    border-radius: 22px;
    background: rgba(251, 248, 243, 0.99);
    box-shadow: 0 18px 44px -12px rgba(20, 17, 31, 0.30);
    padding-bottom: 16px;
  }
  body.menu-open .nav-links {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    width: 100%;
    gap: 4px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1.5px solid var(--line-2);
    animation: drawerIn .28s var(--ease) both;
  }
  body.menu-open .nav-cta {
    display: inline-flex;
    flex-basis: 100%;
    width: 100%;
    justify-content: center;
    margin-top: 10px;
    padding: 15px 20px;
    font-size: 16px;
    animation: drawerIn .28s var(--ease) .04s both;
  }
  @keyframes drawerIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* Big, obvious tap rows with chevrons */
  .nav-links a {
    display: flex; align-items: center; justify-content: space-between;
    font-size: 17px; font-weight: 600; color: var(--ink);
    padding: 15px 16px; border-radius: 14px;
    min-height: 52px;
    border: 1.5px solid transparent;
  }
  .nav-links a::after {
    content: "›";
    position: static; transform: none; background: none;
    font-family: var(--f-display); font-size: 22px; line-height: 1;
    color: var(--ink-faint); font-weight: 400;
    opacity: 0.6;
  }
  .nav-links a:hover,
  .nav-links a:active,
  .nav-links a[aria-current="page"] {
    background: var(--brand-soft);
    color: var(--brand-strong);
    border-color: var(--line-2);
  }
  .nav-links a:hover::after,
  .nav-links a:active::after { color: var(--brand-strong); opacity: 1; }

  /* Hamburger → X */
  body.menu-open .nav-menu span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  body.menu-open .nav-menu span:nth-child(2) { opacity: 0; }
  body.menu-open .nav-menu span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  body.menu-open { overflow: hidden; }
}

/* ══════ BUTTONS ═══════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: var(--r-pill);
  font-weight: 600; font-size: 15.5px; letter-spacing: -0.005em;
  border: 2px solid transparent;
  transition: transform .25s var(--ease-bounce), background .25s var(--ease), box-shadow .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--brand-strong); color: var(--cream); box-shadow: 0 6px 0 -2px var(--ink); }
.btn-primary:hover { transform: translate(-2px, -3px); box-shadow: 0 10px 0 -2px var(--ink); }
.btn-primary:active { transform: translate(0, 0); box-shadow: 0 3px 0 -1px var(--ink); }

.btn-dark { background: var(--ink); color: var(--cream); box-shadow: 0 6px 0 -2px var(--brand-strong); }
.btn-dark:hover { transform: translate(-2px, -3px); box-shadow: 0 10px 0 -2px var(--brand-strong); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); transform: translateY(-2px); }

.btn-xl { padding: 18px 32px; font-size: 17px; }

/* ══════ STICKER CHIP ══════════════════════════════════════ */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: var(--r-pill);
  font-size: 13px; font-weight: 600; letter-spacing: -0.005em;
  background: var(--paper); color: var(--ink);
  border: 1.5px solid var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
}
.chip-violet { background: var(--violet-soft); }
.chip-coral  { background: var(--coral-soft); }
.chip-lime   { background: var(--lime); }
.chip-peach  { background: var(--peach); }
.chip-sky    { background: var(--sky); }
.chip-bubble { background: var(--bubblegum); }
.chip .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--coral); display: inline-block;
}
.chip-coral .dot  { background: var(--coral); }
.chip-violet .dot { background: var(--violet); }
.chip-lime .dot   { background: #5C7A1A; }

/* ══════ HERO ══════════════════════════════════════════════ */
.hero { position: relative; padding: 140px 0 80px; }
@media (max-width: 760px) { .hero { padding: 120px 0 60px; } }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--brand-strong);
  background: var(--brand-soft);
  padding: 8px 16px; border-radius: var(--r-pill);
  margin-bottom: 28px;
}
.hero-eyebrow .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--brand-strong);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: 0.55; transform: scale(1.4); }
}

.hero-title {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(40px, 6.4vw, 84px); line-height: 1.02; letter-spacing: -0.035em;
  font-variation-settings: "SOFT" 100, "WONK" 0;
  margin-bottom: 28px;
  max-width: 18ch;
  text-wrap: balance;
}
.hero-title .row { display: block; }
.hero-title .row em {
  font-variation-settings: "SOFT" 100, "WONK" 0;
  font-style: italic;
  color: var(--brand-strong);
  white-space: nowrap;
}
.hero-title .marker {
  position: relative; display: inline-block;
}
.hero-title .marker::before {
  content: ""; position: absolute; inset: 0.06em -0.08em 0.04em -0.08em;
  background: var(--lime);
  z-index: -1; border-radius: 8px;
  transform: rotate(-1.5deg);
}
.hero-title .squiggle {
  display: block; margin-top: 4px; color: var(--coral); max-width: 360px;
}

.hero-body {
  max-width: 560px; font-size: 19px; line-height: 1.55; color: var(--ink-soft);
  margin-bottom: 36px;
}
.hero-body strong { color: var(--ink); font-weight: 700; }

.hero-cta-row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-bottom: 48px; }

.hero-meta {
  display: flex; gap: 18px; flex-wrap: wrap; align-items: center;
  font-size: 13.5px; color: var(--ink-soft); font-weight: 500;
}
.hero-meta .mdot { width: 4px; height: 4px; border-radius: 50%; background: var(--ink-faint); display: inline-block; }
.hero-meta .check { color: var(--violet); font-weight: 700; }

.hero-layout {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 60px; align-items: center;
}
@media (max-width: 1020px) {
  .hero-layout { grid-template-columns: 1fr; gap: 40px; }
}

/* HERO STICKER FLOATERS */
.sticker-float {
  position: absolute; z-index: 2;
  animation: floatY 6s ease-in-out infinite;
}
.sticker-float.sf1 { top: 14%; right: 4%; animation-delay: -1s; }
.sticker-float.sf2 { top: 36%; left: 2%; animation-delay: -3s; }
.sticker-float.sf3 { bottom: 6%; right: 28%; animation-delay: -2s; }
@keyframes floatY {
  0%,100% { transform: translateY(0) rotate(-3deg); }
  50%     { transform: translateY(-12px) rotate(2deg); }
}

/* ══════ HERO STAGE — Platform USP visual ══════════════════ */
.hero-stage {
  display: flex; flex-direction: column; align-items: stretch;
  gap: 0; max-width: 520px; margin-left: auto; position: relative;
}

/* Sources card (top) */
.src-card {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--r-lg);
  padding: 18px 20px;
  box-shadow: -10px -10px 0 -2px var(--lime), -10px -10px 0 0 var(--ink);
  transform: rotate(-2deg);
  margin-right: 8%;
  position: relative; z-index: 1;
}
.src-card-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 12px;
}
.src-label {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-soft);
}
.src-pulse {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 600; color: var(--violet);
  letter-spacing: 0.04em;
}
.src-pulse .pulse {
  width: 7px; height: 7px; border-radius: 50%; background: var(--violet);
  animation: pulse 1.8s ease-in-out infinite;
}
.src-row {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.src-logo {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--cream-2); border: 1.5px solid var(--ink);
  display: grid; place-items: center; padding: 7px;
  box-shadow: 2px 2px 0 var(--ink);
}
.src-logo img { width: 100%; height: 100%; object-fit: contain; }
.src-more {
  font-size: 12px; font-weight: 500; color: var(--ink-faint);
  margin-left: 4px;
}

/* Flow arrow between sources and chat */
.flow-arrow {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  margin: 18px 0 14px;
  position: relative; z-index: 2;
}
.flow-arrow .flow-label {
  font-family: var(--f-serif); font-style: italic;
  font-size: 18px; color: var(--violet);
  letter-spacing: -0.01em;
  transform: rotate(-3deg);
}

/* ══════ HERO CHAT DEMO CARD ═══════════════════════════════ */
.chat-card {
  position: relative;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--r-lg);
  padding: 22px;
  box-shadow: 14px 14px 0 -2px var(--violet), 14px 14px 0 0 var(--ink);
  transform: rotate(1.5deg);
  margin-left: 6%;
  z-index: 3;
}
.chat-card-head {
  display: flex; align-items: center; gap: 10px; margin-bottom: 18px;
  padding-bottom: 14px; border-bottom: 1.5px dashed var(--line-2);
}
.chat-dots { display: inline-flex; gap: 5px; }
.chat-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--ink-faint); }
.chat-dot.d1 { background: #FF5F57; }
.chat-dot.d2 { background: #FEBC2E; }
.chat-dot.d3 { background: #28C840; }
.chat-title { font-size: 13px; font-weight: 600; color: var(--ink-soft); letter-spacing: 0.02em; }
.chat-spark { margin-left: auto; color: var(--violet); }

.chat-msg-row { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-end; }
.chat-msg-row.me { justify-content: flex-end; }
.chat-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  display: grid; place-items: center; color: var(--cream); font-weight: 700; font-size: 13px;
  flex-shrink: 0;
}
.chat-avatar.you { background: var(--violet); }
.chat-avatar.ai  { background: var(--coral); }
.chat-bubble {
  background: var(--cream-2);
  padding: 12px 16px; border-radius: 18px;
  font-size: 15px; line-height: 1.45;
  max-width: 360px;
}
.chat-msg-row.me .chat-bubble {
  background: var(--violet); color: var(--cream);
  border-bottom-right-radius: 6px;
}
.chat-msg-row.ai .chat-bubble { border-bottom-left-radius: 6px; }
.chat-bubble strong { font-weight: 700; }
.chat-bubble .typing { display: inline-block; }
.chat-bubble .typing span {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--violet); margin: 0 1px;
  animation: typingBounce 1.2s ease-in-out infinite;
}
.chat-bubble .typing span:nth-child(2) { animation-delay: 0.15s; }
.chat-bubble .typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typingBounce {
  0%,80%,100% { transform: translateY(0); opacity: 0.4; }
  40%         { transform: translateY(-4px); opacity: 1; }
}

.chat-mini-chart {
  margin-top: 6px; padding: 14px; background: var(--cream); border-radius: 14px;
  border: 1.5px solid var(--line);
}
.chat-mini-chart-head {
  display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px;
}
.chat-mini-chart-head .ttl { font-weight: 600; font-size: 13px; color: var(--ink-soft); }
.chat-mini-chart-head .val { font-family: var(--f-display); font-weight: 600; font-size: 22px; color: var(--ink); letter-spacing: -0.02em; }
.chat-mini-chart-head .delta { font-size: 12.5px; font-weight: 700; color: #16A34A; }
.chat-mini-chart svg { width: 100%; height: 70px; }

.chat-followups {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; padding-top: 14px;
  border-top: 1.5px dashed var(--line-2);
}
.chat-followup {
  font-size: 12.5px; padding: 6px 12px; border-radius: var(--r-pill);
  background: var(--cream-2); color: var(--ink-soft); border: 1.5px solid var(--line-2);
  cursor: pointer; transition: all .2s var(--ease);
}
.chat-followup:hover {
  background: var(--coral); color: var(--cream); border-color: var(--coral);
  transform: translateY(-2px);
}

.chat-input-row {
  display: flex; gap: 10px; align-items: center;
  margin-top: 14px; padding: 10px 14px;
  background: var(--cream-2); border-radius: var(--r-pill);
}
.chat-input-row .pen { color: var(--ink-faint); }
.chat-input-row .placeholder { font-size: 14px; color: var(--ink-faint); flex: 1; }
.chat-input-row .placeholder b { color: var(--ink); }
.chat-input-row .placeholder .caret {
  display: inline-block; width: 1.5px; height: 14px;
  background: var(--ink); vertical-align: middle; margin-left: 1px;
  animation: caretBlink 1s steps(2) infinite;
}
@keyframes caretBlink { 50% { opacity: 0; } }
.chat-input-row .send {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--coral); color: var(--cream);
  display: grid; place-items: center; border: 0;
}

/* ══════ MARQUEE QUESTIONS ════════════════════════════════ */
.marquee {
  border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  background: var(--ink); color: var(--cream);
  overflow: hidden; padding: 18px 0;
  transform: rotate(-1deg); margin: 40px -20px;
}
.marquee-track {
  display: flex; gap: 36px; width: max-content;
  animation: marqueeSlide 35s linear infinite;
  font-family: var(--f-display); font-weight: 500; font-size: 26px;
  letter-spacing: -0.02em;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 18px; white-space: nowrap; }
.marquee-track .star { color: var(--lime); font-size: 22px; }
.marquee-track em { color: var(--coral); }
@keyframes marqueeSlide {
  to { transform: translateX(-50%); }
}

/* ══════ AI DEMO SECTION ══════════════════════════════════ */
.ai-demo {
  background: var(--night);
  color: var(--cream);
  padding: 120px 0;
  position: relative; overflow: hidden;
}
.ai-demo::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(600px 400px at 10% 20%, rgba(255, 91, 73, 0.25), transparent 60%),
    radial-gradient(700px 500px at 90% 80%, rgba(124, 58, 237, 0.35), transparent 60%);
  pointer-events: none;
}
.ai-demo .wrap { position: relative; z-index: 2; }

.ai-demo-head {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 40px; align-items: end; margin-bottom: 56px;
}
@media (max-width: 860px) { .ai-demo-head { grid-template-columns: 1fr; gap: 20px; } }

.ai-demo .eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(216, 243, 107, 0.15);
  color: var(--lime); padding: 8px 14px; border-radius: var(--r-pill);
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 24px;
}
.ai-demo h2 {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(44px, 6.5vw, 84px); line-height: 0.98; letter-spacing: -0.035em;
  font-variation-settings: "SOFT" 100;
}
.ai-demo h2 em { color: var(--lime); font-variation-settings: "SOFT" 100, "WONK" 1; }

.ai-demo .lede {
  font-size: 18px; color: rgba(251, 248, 243, 0.7); line-height: 1.55;
}

.ai-demo-stage {
  background: rgba(251, 248, 243, 0.04);
  border: 1.5px solid rgba(251, 248, 243, 0.1);
  border-radius: var(--r-lg);
  padding: 36px;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 40px; align-items: center;
  backdrop-filter: blur(8px);
}
@media (max-width: 960px) { .ai-demo-stage { grid-template-columns: 1fr; gap: 30px; padding: 24px; } }

.ai-prompt-strip {
  display: flex; flex-direction: column; gap: 14px;
}
.ai-prompt-bubble {
  background: rgba(251, 248, 243, 0.08);
  border: 1.5px solid rgba(251, 248, 243, 0.12);
  border-radius: 16px;
  padding: 14px 18px;
  font-size: 15.5px; color: rgba(251, 248, 243, 0.85);
  display: flex; align-items: center; gap: 12px;
  transition: all .35s var(--ease);
}
.ai-prompt-bubble.active {
  background: var(--coral); color: var(--cream); border-color: var(--coral);
  transform: translateX(8px);
  box-shadow: 0 8px 20px -4px rgba(255, 91, 73, 0.5);
}
.ai-prompt-bubble .qmark {
  width: 24px; height: 24px; border-radius: 50%;
  display: grid; place-items: center; background: rgba(216, 243, 107, 0.2); color: var(--lime);
  flex-shrink: 0; font-weight: 700; font-size: 12px;
}
.ai-prompt-bubble.active .qmark { background: var(--cream); color: var(--coral); }

.ai-answer-card {
  background: var(--paper); color: var(--ink);
  border-radius: var(--r-md);
  padding: 24px;
  box-shadow: 0 24px 48px -12px rgba(0,0,0,0.35);
  border: 2px solid var(--ink);
}
.ai-answer-head { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.ai-answer-head .icon {
  width: 30px; height: 30px; border-radius: 8px; background: var(--violet); color: var(--cream);
  display: grid; place-items: center;
}
.ai-answer-head .label { font-size: 12px; font-weight: 600; color: var(--ink-faint); letter-spacing: 0.08em; text-transform: uppercase; }
.ai-answer-title { font-family: var(--f-display); font-weight: 600; font-size: 28px; letter-spacing: -0.02em; margin-bottom: 4px; line-height: 1.1; }
.ai-answer-meta { font-size: 13px; color: var(--ink-soft); margin-bottom: 18px; }
.ai-answer-meta strong { color: var(--coral); font-weight: 700; }

.ai-answer-chart {
  background: linear-gradient(180deg, var(--cream), var(--paper));
  border: 1.5px solid var(--line);
  border-radius: 14px; padding: 18px;
  position: relative;
  min-height: 176px;
}
.ai-answer-chart .chart-svg {
  width: 100%; height: 140px;
  display: none;
  opacity: 0;
  transition: opacity .25s var(--ease);
}
.ai-answer-chart .chart-svg.active { display: block; opacity: 1; }

.ai-followups {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px;
}
.ai-followup {
  font-size: 12.5px; padding: 7px 12px; border-radius: var(--r-pill);
  background: var(--cream-2); border: 1.5px solid var(--line-2); color: var(--ink-soft);
  cursor: pointer;
}
.ai-followup:hover { background: var(--violet-soft); color: var(--violet); border-color: var(--violet); }

/* ══════ SECTION HEAD ═════════════════════════════════════ */
.sect {
  padding: 120px 0;
  position: relative;
}
@media (max-width: 760px) { .sect { padding: 80px 0; } }

.sect-head { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.sect-head.left { text-align: left; margin-left: 0; }

.sect-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 7px 14px; border-radius: var(--r-pill);
  background: var(--lime); color: var(--ink);
  margin-bottom: 22px;
}
.sect-eyebrow.violet { background: var(--violet-soft); color: var(--violet-strong); }
.sect-eyebrow.coral { background: var(--coral-soft); color: var(--coral-strong); }
.sect-eyebrow.peach { background: var(--peach); color: #8A4500; }
.sect-eyebrow.sky { background: var(--sky); color: #1E3A8A; }

.sect-title {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(36px, 5.5vw, 64px); line-height: 1.02; letter-spacing: -0.03em;
  font-variation-settings: "SOFT" 100;
  margin-bottom: 18px;
}
.sect-title em { color: var(--violet); font-variation-settings: "SOFT" 100, "WONK" 1; }
.sect-title .marker { position: relative; display: inline-block; }
.sect-title .marker::before {
  content: ""; position: absolute; inset: 0.08em -0.06em 0.05em -0.06em;
  background: var(--lime); z-index: -1; border-radius: 6px; transform: rotate(-1deg);
}

.sect-body {
  font-size: 18px; color: var(--ink-soft); line-height: 1.55; max-width: 600px;
  margin: 0 auto;
}
.sect-head.left .sect-body { margin: 0; }

/* ══════ BENTO — WHAT YOU GET ═════════════════════════════ */
.bento {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px;
}
@media (max-width: 900px) { .bento { grid-template-columns: 1fr; } }

.tile {
  position: relative;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: 8px 8px 0 var(--ink);
  transition: transform .3s var(--ease-bounce);
  overflow: hidden;
}
.tile:hover { transform: translate(-3px, -3px); box-shadow: 12px 12px 0 var(--ink); }
.tile h3 {
  font-family: var(--f-display); font-weight: 600;
  font-size: 30px; letter-spacing: -0.02em; line-height: 1.05;
  margin-bottom: 12px;
}
.tile p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.5; }

.tile.t-lg     { grid-column: span 3; }
.tile.t-md     { grid-column: span 3; }
.tile.t-sm     { grid-column: span 2; }
.tile.t-wide   { grid-column: span 4; }
@media (max-width: 900px) {
  .tile.t-lg, .tile.t-md, .tile.t-sm, .tile.t-wide { grid-column: span 1; }
}

.tile.bg-coral  { background: var(--coral-soft); }
.tile.bg-violet { background: var(--violet-soft); }
.tile.bg-lime   { background: var(--lime); }
.tile.bg-peach  { background: var(--peach); }
.tile.bg-sky    { background: var(--sky); }
.tile.bg-bubble { background: var(--bubblegum); }
.tile.bg-night  { background: var(--night); color: var(--cream); }
.tile.bg-night p { color: rgba(251, 248, 243, 0.7); }

.tile .badge {
  display: inline-block; font-size: 12px; font-weight: 700;
  padding: 5px 11px; border-radius: var(--r-pill);
  background: var(--ink); color: var(--cream); margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.tile.bg-night .badge { background: var(--coral); }

.tile .illus { margin-bottom: 18px; }

/* ══════ HOW IT WORKS — Big numbered steps ════════════════ */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }

.step {
  position: relative;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  box-shadow: 8px 8px 0 var(--violet);
  transition: transform .3s var(--ease-bounce);
}
.step:nth-child(2) { box-shadow: 8px 8px 0 var(--coral); transform: translateY(20px); }
.step:nth-child(3) { box-shadow: 8px 8px 0 var(--lime-2); }
.step:hover { transform: translate(-3px, -5px); }
.step:nth-child(2):hover { transform: translate(-3px, 15px); }

.step-num {
  font-family: var(--f-display); font-weight: 700;
  font-size: 96px; line-height: 1; letter-spacing: -0.06em;
  color: var(--ink);
  font-variation-settings: "SOFT" 100, "WONK" 1;
  margin-bottom: 16px;
  display: block;
}
.step:nth-child(1) .step-num { color: var(--violet); }
.step:nth-child(2) .step-num { color: var(--coral); }
.step:nth-child(3) .step-num { color: var(--lime-2); -webkit-text-stroke: 2px var(--ink); }

.step h3 {
  font-family: var(--f-display); font-weight: 600;
  font-size: 26px; letter-spacing: -0.02em; line-height: 1.1;
  margin-bottom: 10px;
}
.step p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.5; }

/* ══════ WHO USES IT ══════════════════════════════════════ */
.who-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
@media (max-width: 860px) { .who-grid { grid-template-columns: 1fr; } }

.who-card {
  border-radius: var(--r-lg); padding: 32px;
  border: 2px solid var(--ink);
  background: var(--paper);
  transition: transform .3s var(--ease-bounce);
  position: relative;
}
.who-card:hover { transform: translateY(-6px) rotate(-1deg); }
.who-card.c1 { background: var(--peach); }
.who-card.c2 { background: var(--sky); }
.who-card.c3 { background: var(--bubblegum); }

.who-card .who-emoji {
  width: 60px; height: 60px; border-radius: 18px;
  background: var(--paper); border: 2px solid var(--ink);
  display: grid; place-items: center;
  font-size: 30px;
  margin-bottom: 20px;
  box-shadow: 3px 3px 0 var(--ink);
}
.who-card h3 {
  font-family: var(--f-display); font-weight: 600;
  font-size: 28px; letter-spacing: -0.02em; line-height: 1.05;
  margin-bottom: 12px;
}
.who-card p { color: var(--ink); font-size: 15.5px; line-height: 1.5; }
.who-card .quotes {
  margin-top: 18px; padding-top: 18px; border-top: 2px dashed var(--ink);
  font-family: var(--f-serif); font-style: italic; font-size: 16px; line-height: 1.4;
}
.who-card-cta {
  display: inline-block;
  margin-top: 18px;
  font-size: 13.5px; font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.005em;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 1px;
}
a.who-card { display: block; color: inherit; }
a.who-card:hover .who-card-cta { color: var(--coral); border-bottom-color: var(--coral); }

/* ══════ COMPARE STRIP — homepage teaser for /vs/ pages ════ */
.cmp-strip {
  padding: 40px 0 60px;
  position: relative;
}
@media (max-width: 760px) { .cmp-strip { padding: 32px 0 40px; } }

.cmp-strip-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media (max-width: 860px) { .cmp-strip-grid { grid-template-columns: 1fr; } }

.cmp-strip-card {
  display: block;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--r-md);
  padding: 24px;
  box-shadow: 5px 5px 0 var(--violet);
  transition: transform .3s var(--ease-bounce), box-shadow .3s var(--ease-bounce);
}
.cmp-strip-card:nth-child(2) { box-shadow: 5px 5px 0 var(--coral); }
.cmp-strip-card:nth-child(3) { box-shadow: 5px 5px 0 var(--lime-2); }
.cmp-strip-card:hover { transform: translate(-3px, -3px); box-shadow: 8px 8px 0 var(--violet); }
.cmp-strip-card:nth-child(2):hover { box-shadow: 8px 8px 0 var(--coral); }
.cmp-strip-card:nth-child(3):hover { box-shadow: 8px 8px 0 var(--lime-2); }

.cmp-strip-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--r-pill);
  background: var(--violet-soft); color: var(--violet-strong);
  border: 1.5px solid var(--ink);
  margin-bottom: 14px;
}
.cmp-strip-card:nth-child(2) .cmp-strip-tag { background: var(--coral-soft); color: var(--coral-strong); }
.cmp-strip-card:nth-child(3) .cmp-strip-tag { background: var(--lime); color: #3D5210; }

.cmp-strip-card h3 {
  font-family: var(--f-display); font-weight: 600;
  font-size: 22px; letter-spacing: -0.025em; line-height: 1.1;
  margin-bottom: 10px; color: var(--ink);
}
.cmp-strip-card p {
  color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; margin-bottom: 16px;
}
.cmp-strip-read { font-size: 13px; font-weight: 700; color: var(--violet-strong); }
.cmp-strip-card:nth-child(2) .cmp-strip-read { color: var(--coral-strong); }
.cmp-strip-card:nth-child(3) .cmp-strip-read { color: #3D5210; }

/* ══════ FAT FOOTER ═══════════════════════════════════════ */
.footer-fat {
  background: var(--ink);
  color: var(--cream);
  padding: 56px 0 30px;
}
.footer-fat-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 32px; margin-bottom: 40px;
}
@media (max-width: 960px) { .footer-fat-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 540px) { .footer-fat-grid { grid-template-columns: 1fr; gap: 24px; } }

.footer-fat-brand .logo-mark { filter: brightness(1.1); margin-bottom: 14px; }
.footer-fat-brand .footer-brand-word {
  font-family: var(--f-display); font-weight: 700; font-size: 26px; letter-spacing: -0.04em;
  display: block; color: var(--cream); margin-bottom: 12px;
}
.footer-fat-brand p {
  color: rgba(251, 248, 243, 0.65); font-size: 14px; line-height: 1.55;
  max-width: 280px;
}

.footer-fat-col h3 {
  font-family: var(--f-body); font-weight: 700; font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(251, 248, 243, 0.55);
  margin-bottom: 16px;
}
.footer-fat-col ul { list-style: none; }
.footer-fat-col li { margin-bottom: 10px; }
.footer-fat-col a {
  color: rgba(251, 248, 243, 0.85); font-size: 14.5px;
  transition: color .2s var(--ease);
}
.footer-fat-col a:hover { color: var(--coral); }

.footer-fat-bottom {
  border-top: 1px solid rgba(251, 248, 243, 0.12);
  padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
  font-size: 13px; color: rgba(251, 248, 243, 0.5);
}
.footer-fat-bottom .legal-mini { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-fat-bottom .legal-mini a {
  color: rgba(251, 248, 243, 0.5);
  transition: color .2s var(--ease);
}
.footer-fat-bottom .legal-mini a:hover { color: var(--cream); }

/* ══════ INTEGRATIONS BENTO ═══════════════════════════════ */
.int-grid {
  display: grid; grid-template-columns: repeat(8, 1fr); gap: 18px;
}
@media (max-width: 900px) { .int-grid { grid-template-columns: repeat(2, 1fr); } }

.int-cell {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--r-md);
  padding: 22px;
  display: grid; place-items: center; gap: 10px;
  text-align: center;
  font-weight: 600; font-size: 14px;
  min-height: 110px;
  transition: transform .25s var(--ease-bounce), background .25s var(--ease);
  box-shadow: 4px 4px 0 var(--ink);
}
.int-cell:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.int-cell.span2 { grid-column: span 2; }
.int-cell.span3 { grid-column: span 3; min-height: 130px; }
.int-cell.b-coral  { background: var(--coral-soft); }
.int-cell.b-violet { background: var(--violet-soft); }
.int-cell.b-lime   { background: var(--lime); }
.int-cell.b-peach  { background: var(--peach); }
.int-cell.b-sky    { background: var(--sky); }
.int-cell.b-bubble { background: var(--bubblegum); }
.int-cell .int-logo { width: 38px; height: 38px; object-fit: contain; }
.int-cell h3 {
  font-family: var(--f-display); font-weight: 600;
  font-size: 22px; letter-spacing: -0.02em; line-height: 1; margin-bottom: 4px;
}
.int-cell .sub { font-size: 12.5px; color: var(--ink-soft); font-weight: 500; }
@media (max-width: 900px) {
  .int-cell.span2, .int-cell.span3 { grid-column: span 2; }
}

/* ══════ DASHBOARDS PREVIEW ═══════════════════════════════ */
.dash-section {
  background: var(--cream-2);
}
.dash-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
@media (max-width: 900px) { .dash-grid { grid-template-columns: 1fr; } }

.dash-card {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform .3s var(--ease-bounce);
  cursor: default;
  position: relative;
}
.dash-card:hover { transform: translate(-3px, -3px); box-shadow: 10px 10px 0 var(--ink); }

.dash-card-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.dash-tag {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--r-pill); border: 1.5px solid var(--ink);
}
.dash-tag.t-coral { background: var(--coral-soft); }
.dash-tag.t-violet { background: var(--violet-soft); }
.dash-tag.t-lime { background: var(--lime); }
.dash-tag.t-peach { background: var(--peach); }
.dash-tag.t-sky { background: var(--sky); }
.dash-tag.t-bubble { background: var(--bubblegum); }
.dash-card h3 {
  font-family: var(--f-display); font-weight: 600;
  font-size: 24px; letter-spacing: -0.02em; line-height: 1.05; margin-bottom: 8px;
}
.dash-card p { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 18px; line-height: 1.45; }

.dash-mini {
  background: var(--cream-2);
  border-radius: 14px; padding: 14px;
  border: 1.5px solid var(--line);
}
.dash-mini svg { width: 100%; height: 100px; }

.dash-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 16px; font-size: 13px;
}
.dash-foot .stat { font-family: var(--f-display); font-weight: 600; font-size: 20px; letter-spacing: -0.02em; }
.dash-foot .delta-up { color: #16A34A; font-weight: 700; }
.dash-foot .delta-dn { color: var(--coral); font-weight: 700; }

/* ══════ EMBED TILE — aside link to Embed Portal ═══════════ */
.tile-aside-link {
  display: flex; justify-content: space-between; align-items: center;
  gap: 14px; flex-wrap: wrap;
  margin-top: 22px; padding-top: 18px;
  border-top: 1px dashed rgba(251, 248, 243, 0.22);
  color: var(--cream);
  transition: opacity .2s var(--ease);
}
.tile-aside-link:hover { opacity: 0.92; }
.tile-aside-link .aside-label {
  font-size: 13px; color: rgba(251, 248, 243, 0.65); font-weight: 500;
}
.tile-aside-link .aside-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-display); font-weight: 600;
  font-size: 17px; letter-spacing: -0.01em;
  font-variation-settings: "SOFT" 100;
  color: var(--brand-sparkle);
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: border-color .25s var(--ease);
}
.tile-aside-link:hover .aside-cta { border-bottom-color: var(--brand-sparkle); }

/* ══════ SISTER PRODUCT STRIP — Embed Portal ═══════════════ */
.sister-strip { padding: 80px 0; position: relative; }
@media (max-width: 760px) { .sister-strip { padding: 56px 0; } }

.sister-card {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--r-xl);
  padding: 56px;
  box-shadow: 10px 10px 0 var(--lime-2), 10px 10px 0 0 var(--ink);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 56px; align-items: center;
  position: relative; overflow: hidden;
}
.sister-card::before {
  content: ""; position: absolute;
  width: 500px; height: 500px; right: -180px; top: -180px;
  background: radial-gradient(closest-side, rgba(197, 228, 255, 0.5), transparent 70%);
  pointer-events: none; z-index: 0;
}
.sister-card > * { position: relative; z-index: 1; }
@media (max-width: 960px) {
  .sister-card { grid-template-columns: 1fr; gap: 40px; padding: 40px 32px; }
}
@media (max-width: 480px) {
  .sister-card { padding: 32px 22px; border-radius: 28px; box-shadow: 6px 6px 0 var(--lime-2), 6px 6px 0 0 var(--ink); }
}

.sister-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 7px 14px; border-radius: var(--r-pill);
  background: var(--sky); color: #1E3A8A;
  border: 1.5px solid var(--ink);
  margin-bottom: 22px;
}
.sister-eyebrow .asterisk {
  color: #1E3A8A; font-size: 14px; animation: spin 12s linear infinite;
}
.sister-title {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(34px, 4.5vw, 52px); line-height: 1.0; letter-spacing: -0.03em;
  font-variation-settings: "SOFT" 100;
  margin-bottom: 18px;
}
.sister-title em { color: var(--violet); font-variation-settings: "SOFT" 100, "WONK" 1; }
.sister-body {
  font-size: 17px; color: var(--ink-soft); line-height: 1.55;
  margin-bottom: 22px;
}
.sister-body strong { color: var(--ink); font-weight: 700; }
.sister-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.sister-cta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.sister-cta .sister-tagline {
  font-family: var(--f-serif); font-style: italic;
  font-size: 18px; color: var(--ink-soft);
  letter-spacing: -0.01em;
}

/* Portal preview card (visual) */
.sister-visual { display: flex; justify-content: center; }
.portal-card {
  width: 100%; max-width: 460px;
  background: var(--cream-2);
  border: 2px solid var(--ink);
  border-radius: var(--r-md);
  box-shadow: 8px 8px 0 var(--violet), 8px 8px 0 0 var(--ink);
  overflow: hidden;
  transform: rotate(1deg);
}
.portal-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px; background: var(--ink); color: var(--cream);
}
.portal-brand { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; letter-spacing: 0.01em; }
.portal-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); }
.portal-user {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--coral); color: var(--cream);
  display: grid; place-items: center;
  font-size: 11px; font-weight: 700;
}
.portal-tabs {
  display: flex; gap: 4px;
  padding: 10px 14px 0; background: var(--paper);
  border-bottom: 1.5px solid var(--line);
  overflow-x: auto;
}
.portal-tab {
  padding: 7px 12px; border-radius: 8px 8px 0 0;
  font-size: 12px; font-weight: 600; color: var(--ink-soft);
  white-space: nowrap;
  border: 1.5px solid transparent; border-bottom: 0;
}
.portal-tab.active {
  background: var(--violet-soft); color: var(--violet);
  border-color: var(--ink);
}
.portal-body { background: var(--paper); padding: 18px; }
.portal-row { display: flex; gap: 14px; margin-bottom: 14px; }
.portal-kpi {
  flex: 1; padding: 10px 12px;
  background: var(--cream-2); border-radius: 10px;
  border: 1px solid var(--line);
}
.portal-kpi-label { display: block; font-size: 11px; color: var(--ink-faint); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 4px; }
.portal-kpi-val { display: block; font-family: var(--f-display); font-weight: 600; font-size: 22px; letter-spacing: -0.02em; color: var(--ink); }
.portal-chart { width: 100%; height: 90px; }
.portal-foot {
  padding: 10px 18px; background: var(--cream-2);
  border-top: 1.5px solid var(--line);
  font-size: 11.5px; color: var(--ink-soft); font-weight: 500;
}

@media (max-width: 760px) {
  .sister-title { font-size: clamp(30px, 7.5vw, 44px); }
  .sister-body { font-size: 15.5px; }
  .sister-cta { gap: 12px; }
  .sister-cta .sister-tagline { font-size: 15.5px; }
  .portal-card { transform: none; box-shadow: 5px 5px 0 var(--violet), 5px 5px 0 0 var(--ink); }
  .portal-row { gap: 8px; }
  .portal-kpi-val { font-size: 18px; }
}

/* ══════ TRUST STRIP ══════════════════════════════════════ */
.trust-row {
  background: var(--ink);
  color: var(--cream);
  padding: 56px 0;
}
.trust-row .wrap {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); gap: 40px; align-items: center;
}
@media (max-width: 860px) { .trust-row .wrap { grid-template-columns: 1fr; gap: 24px; } }
.trust-lede {
  font-family: var(--f-display); font-weight: 600;
  font-size: 30px; line-height: 1.1; letter-spacing: -0.02em;
}
.trust-lede em { color: var(--lime); }
.trust-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600;
  padding: 8px 14px; border-radius: var(--r-pill);
  background: rgba(251, 248, 243, 0.08);
  border: 1.5px solid rgba(251, 248, 243, 0.18);
}
.trust-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); }

/* ══════ CTA ══════════════════════════════════════════════ */
.cta-section { padding: 80px 0 100px; }
.cta-card {
  background: var(--night);
  color: var(--cream);
  border-radius: var(--r-xl);
  padding: 80px 56px;
  position: relative; overflow: hidden;
  border: 2px solid var(--ink);
  box-shadow: 14px 14px 0 var(--ink);
  text-align: center;
}
.cta-card::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(600px 400px at 0% 0%, rgba(56, 152, 248, 0.35), transparent 60%),
    radial-gradient(500px 400px at 100% 100%, rgba(32, 200, 200, 0.35), transparent 60%);
  pointer-events: none;
}
.cta-card > * { position: relative; z-index: 2; }
.cta-stamp {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 7px 16px; border-radius: var(--r-pill);
  background: var(--brand); color: var(--cream);
  margin-bottom: 28px;
}
.cta-title {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(40px, 6vw, 76px); line-height: 1.0; letter-spacing: -0.035em;
  font-variation-settings: "SOFT" 100;
  margin-bottom: 20px;
}
.cta-title em { color: var(--brand-sparkle); font-variation-settings: "SOFT" 100, "WONK" 1; }
.cta-body { font-size: 19px; max-width: 540px; margin: 0 auto 36px; opacity: 0.92; line-height: 1.5; }
.cta-actions { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.cta-card .btn-primary { background: var(--brand); color: var(--cream); box-shadow: 0 6px 0 -2px var(--brand-2); }
.cta-card .btn-primary:hover { box-shadow: 0 10px 0 -2px var(--brand-2); }
.cta-card .btn-ghost { color: var(--cream); border-color: rgba(251, 248, 243, 0.4); }
.cta-card .btn-ghost:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.cta-foot {
  margin-top: 30px; display: inline-flex; gap: 16px; flex-wrap: wrap; justify-content: center;
  font-size: 13.5px; opacity: 0.88; font-weight: 500;
}
.cta-foot .mdot { width: 4px; height: 4px; border-radius: 50%; background: currentColor; display: inline-block; opacity: 0.4; align-self: center; }

/* ══════ FOOTER ═══════════════════════════════════════════ */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 40px 0 30px;
}
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  font-size: 13.5px; color: rgba(251, 248, 243, 0.6);
}
.foot-legal { display: flex; gap: 24px; }
.foot-legal a { transition: color .2s var(--ease); }
.foot-legal a:hover { color: var(--coral); }

/* Hand-drawn squiggle utility */
.squig {
  display: block; color: var(--coral); margin-top: 8px; height: 14px;
}

/* Decorative asterisk burst */
.asterisk {
  display: inline-block; color: var(--coral); font-family: var(--f-display); font-weight: 700; font-size: 1.2em;
  animation: spin 12s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ══════ AI DEMO FEATURE CARDS (3-up row) ═════════════════ */
.ai-features-row {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px; margin-top: 48px;
}
.ai-feature-card {
  background: rgba(251, 248, 243, 0.06);
  border: 1.5px solid rgba(251, 248, 243, 0.12);
  border-radius: 18px; padding: 24px;
}
.ai-feature-icon {
  display: inline-flex; width: 44px; height: 44px; border-radius: 12px;
  align-items: center; justify-content: center; color: var(--cream);
  margin-bottom: 16px;
}
.ai-feature-card h3 {
  font-family: var(--f-display); font-weight: 600;
  font-size: 22px; letter-spacing: -0.02em; margin-bottom: 8px;
}
.ai-feature-card p {
  font-size: 14.5px; color: rgba(251, 248, 243, 0.65); line-height: 1.5;
}
@media (max-width: 860px) {
  .ai-features-row { grid-template-columns: 1fr; gap: 14px; margin-top: 32px; }
}

/* ══════ RESPONSIVE FIXES — small breakpoints ═════════════ */
@media (max-width: 760px) {
  /* Floating sticker chips clutter the hero on phones — hide them */
  .sticker-float { display: none !important; }

  /* Tighten hero spacing on phones */
  .hero { padding: 110px 0 40px; }
  .hero-eyebrow { font-size: 11.5px; padding: 6px 12px; margin-bottom: 20px; }
  .hero-title { font-size: clamp(40px, 13vw, 72px) !important; line-height: 0.96; }
  .hero-body { font-size: 17px; margin-bottom: 28px; }
  .hero-cta-row { gap: 10px; margin-bottom: 36px; }
  .btn { padding: 12px 20px; font-size: 14.5px; }
  .btn-xl { padding: 14px 24px; font-size: 15.5px; }
  .hero-meta { font-size: 12.5px; gap: 10px; }

  /* Sources card + chat card scale */
  .hero-stage { max-width: 100%; }
  .src-card { margin-right: 0; transform: rotate(-1.5deg); padding: 16px; }
  .src-logo { width: 36px; height: 36px; padding: 6px; }
  .src-more { display: none; }
  .chat-card {
    margin-left: 0; transform: rotate(1deg);
    box-shadow: 8px 8px 0 -2px var(--violet), 8px 8px 0 0 var(--ink);
    padding: 18px;
  }
  .chat-bubble { max-width: 100%; font-size: 14px; }
  .chat-msg-row { gap: 8px; }

  /* Marquee: kill the rotation + negative margin so it can't cause horizontal scroll */
  .marquee {
    margin: 32px 0; transform: none; padding: 14px 0;
  }
  .marquee-track { font-size: 20px; gap: 24px; }

  /* AI demo prompts/answer panel — reduce padding */
  .ai-demo { padding: 80px 0; }
  .ai-demo-stage { padding: 18px; gap: 20px; }
  .ai-prompt-bubble { font-size: 14px; padding: 12px 14px; }
  .ai-answer-card { padding: 18px; }
  .ai-answer-title { font-size: 22px; }
  .ai-answer-chart { padding: 14px; }
  .ai-answer-chart .chart-svg { height: 110px; }
  .ai-demo h2 { font-size: clamp(36px, 9vw, 56px); }

  /* Section heads + padding */
  .sect { padding: 64px 0; }
  .sect-title { font-size: clamp(32px, 8vw, 48px); }
  .sect-body { font-size: 16px; }

  /* Bento tiles — extra padding trim */
  .tile { padding: 24px; box-shadow: 5px 5px 0 var(--ink); }
  .tile:hover { transform: none; box-shadow: 5px 5px 0 var(--ink); }
  .tile h3 { font-size: 24px; }

  /* Steps — disable the middle-step offset on phones */
  .step { padding: 24px; box-shadow: 5px 5px 0 var(--violet); }
  .step:nth-child(2) { transform: none; box-shadow: 5px 5px 0 var(--coral); }
  .step:nth-child(3) { box-shadow: 5px 5px 0 var(--lime-2); }
  .step:hover, .step:nth-child(2):hover { transform: none; }
  .step-num { font-size: 72px; }
  .step h3 { font-size: 22px; }

  /* Who cards */
  .who-card { padding: 24px; }
  .who-card h3 { font-size: 24px; }

  /* Integrations cells */
  .int-cell { min-height: 96px; padding: 16px; box-shadow: 3px 3px 0 var(--ink); }
  .int-cell h4 { font-size: 18px; }

  /* Dashboard cards */
  .dash-card { padding: 20px; box-shadow: 4px 4px 0 var(--ink); }
  .dash-card:hover { transform: none; box-shadow: 4px 4px 0 var(--ink); }
  .dash-card h3 { font-size: 21px; }

  /* Trust strip — let pills wrap nicely */
  .trust-row { padding: 40px 0; }
  .trust-lede { font-size: 24px; }
  .trust-pill { font-size: 12px; padding: 7px 12px; }

  /* CTA card */
  .cta-section { padding: 56px 0 72px; }
  .cta-card { padding: 48px 24px; border-radius: 28px; box-shadow: 8px 8px 0 var(--ink); }
  .cta-title { font-size: clamp(34px, 9vw, 52px); }
  .cta-body { font-size: 16px; margin-bottom: 28px; }
  .cta-actions { flex-direction: column; align-items: stretch; gap: 10px; width: 100%; }
  .cta-actions .btn { justify-content: center; width: 100%; }

  /* Footer */
  .foot-bottom { font-size: 12.5px; gap: 12px; flex-direction: column; align-items: flex-start; }
  .foot-legal { flex-wrap: wrap; gap: 14px; }

  /* Nav: keep logo + hamburger only, condense padding */
  .nav { padding: 10px 16px; top: 10px; left: 10px; right: 10px; }
  .logo-word { font-size: 22px; }
}

/* Extra-narrow phones */
@media (max-width: 380px) {
  .wrap { padding: 0 16px; }
  .hero { padding: 100px 0 32px; }
  .hero-cta-row .btn { width: 100%; justify-content: center; }
  .src-row { gap: 8px; }
  .src-logo { width: 32px; height: 32px; }
}

/* Touch devices: disable hover-lift transforms so taps don't get stuck in hover state */
@media (hover: none) {
  .tile:hover, .step:hover, .who-card:hover, .int-cell:hover, .dash-card:hover,
  .chat-followup:hover, .ai-followup:hover { transform: none; }
}

/* ══════ BLOG STRIP — homepage teaser ═════════════════════ */
.blog-strip {
  padding: 80px 0 100px;
  position: relative;
}
@media (max-width: 760px) { .blog-strip { padding: 56px 0 64px; } }

.blog-strip-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.blog-strip-head .sect-title { margin-bottom: 0; }
.blog-strip-all {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 600; color: var(--ink-soft);
  padding: 10px 18px; border-radius: var(--r-pill);
  border: 1.5px solid var(--line-2);
  transition: all .25s var(--ease-bounce);
}
.blog-strip-all:hover {
  background: var(--ink); color: var(--cream); border-color: var(--ink);
  transform: translateY(-2px);
}

.blog-strip-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
}
@media (max-width: 860px) { .blog-strip-grid { grid-template-columns: 1fr; } }

.blog-strip-card {
  display: block;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: 6px 6px 0 var(--violet);
  transition: transform .3s var(--ease-bounce), box-shadow .3s var(--ease-bounce);
  position: relative;
}
.blog-strip-card:nth-child(2) { box-shadow: 6px 6px 0 var(--coral); }
.blog-strip-card:hover { transform: translate(-3px, -3px); box-shadow: 10px 10px 0 var(--violet); }
.blog-strip-card:nth-child(2):hover { box-shadow: 10px 10px 0 var(--coral); }

.blog-strip-tag {
  display: inline-block;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 11px; border-radius: var(--r-pill);
  background: var(--violet-soft); color: var(--violet-strong);
  border: 1.5px solid var(--ink);
  margin-bottom: 18px;
}
.blog-strip-card:nth-child(2) .blog-strip-tag { background: var(--coral-soft); color: var(--coral-strong); }

.blog-strip-card h3 {
  font-family: var(--f-display); font-weight: 600;
  font-size: 26px; letter-spacing: -0.025em; line-height: 1.1;
  margin-bottom: 12px;
  color: var(--ink);
}
.blog-strip-card p {
  color: var(--ink-soft); font-size: 15px; line-height: 1.55;
  margin-bottom: 22px;
}
.blog-strip-meta {
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
  font-size: 13px; color: var(--ink-soft);
}
.blog-strip-meta .meta-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--ink-faint); display: inline-block; }
.blog-strip-read { color: var(--violet-strong); font-weight: 700; margin-left: auto; }
.blog-strip-card:nth-child(2) .blog-strip-read { color: var(--coral-strong); }

@media (max-width: 760px) {
  .blog-strip-card { padding: 24px; box-shadow: 4px 4px 0 var(--violet); }
  .blog-strip-card:nth-child(2) { box-shadow: 4px 4px 0 var(--coral); }
  .blog-strip-card h3 { font-size: 22px; }
}

/* ══════ READ NEXT — bottom of each blog post ══════════════ */
.read-next {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 2px dashed var(--line-2);
}
.read-next-label {
  display: inline-block;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 14px;
}
.read-next-card {
  display: block;
  background: var(--cream-2);
  border: 2px solid var(--ink);
  border-radius: var(--r-md);
  padding: 24px 28px;
  box-shadow: 5px 5px 0 var(--coral);
  transition: transform .25s var(--ease-bounce), box-shadow .25s var(--ease-bounce);
}
.read-next-card:hover { transform: translate(-3px, -3px); box-shadow: 8px 8px 0 var(--coral); }
.read-next-tag {
  display: inline-block;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--r-pill);
  background: var(--coral-soft); color: var(--coral);
  border: 1.5px solid var(--ink);
  margin-bottom: 14px;
}
.read-next-card h3 {
  font-family: var(--f-display); font-weight: 600;
  font-size: 24px; letter-spacing: -0.025em; line-height: 1.1;
  margin-bottom: 10px; color: var(--ink);
}
.read-next-card p {
  color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; margin-bottom: 14px;
}
.read-next-cta {
  font-size: 13.5px; font-weight: 700; color: var(--coral);
  letter-spacing: -0.005em;
}
@media (max-width: 760px) {
  .read-next-card { padding: 20px; box-shadow: 4px 4px 0 var(--coral); }
  .read-next-card h3 { font-size: 20px; }
}

/* ══════ COMPARISON TABLE (vs pages) ═══════════════════════ */
.cmp-table {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: 6px 6px 0 var(--violet);
  margin: 32px 0 48px;
  overflow-x: auto;
}
.cmp-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 560px;
}
.cmp-table thead th {
  text-align: left;
  font-family: var(--f-display); font-weight: 600;
  font-size: 18px; letter-spacing: -0.02em;
  padding: 14px 16px;
  border-bottom: 2px solid var(--ink);
  background: var(--cream-2);
}
.cmp-table thead th:first-child { border-top-left-radius: 12px; }
.cmp-table thead th:last-child  { border-top-right-radius: 12px; }
.cmp-table thead th.col-us  { color: var(--violet); }
.cmp-table thead th.col-them { color: var(--ink-soft); }
.cmp-table tbody td {
  padding: 14px 16px;
  font-size: 15px; line-height: 1.5;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.cmp-table tbody td:first-child {
  font-weight: 700; color: var(--ink); width: 28%;
}
.cmp-table tbody tr:last-child td { border-bottom: 0; }
.cmp-yes { color: #16A34A; font-weight: 700; }
.cmp-no  { color: var(--ink-faint); }
.cmp-meh { color: var(--ink-faint); font-style: italic; }

.cmp-verdict {
  background: var(--lime);
  border: 2px solid var(--ink);
  border-radius: var(--r-md);
  padding: 22px 26px;
  margin: 32px 0;
  box-shadow: 5px 5px 0 var(--ink);
  font-family: var(--f-serif); font-style: italic;
  font-size: 20px; line-height: 1.45;
  color: var(--ink);
}
.cmp-verdict strong {
  font-family: var(--f-display); font-weight: 600; font-style: normal;
  display: block; font-size: 14px; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3D5210;
  margin-bottom: 8px;
}

.cmp-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
  margin: 32px 0;
}
@media (max-width: 760px) { .cmp-split { grid-template-columns: 1fr; } }
.cmp-split-card {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--r-md);
  padding: 26px;
  box-shadow: 5px 5px 0 var(--ink);
}
.cmp-split-card.win { box-shadow: 5px 5px 0 var(--violet); }
.cmp-split-card h3 {
  font-family: var(--f-display); font-weight: 600;
  font-size: 22px; letter-spacing: -0.02em; line-height: 1.1;
  margin-bottom: 14px;
}
.cmp-split-card.win h3 { color: var(--violet); }
.cmp-split-card ul { margin: 0; }
.cmp-split-card li {
  position: relative; padding-left: 22px; margin-bottom: 10px;
  font-size: 15px; line-height: 1.55; color: var(--ink-soft);
}
.cmp-split-card li::before {
  content: "✦"; position: absolute; left: 0; top: 0;
  color: var(--violet); font-size: 12px; line-height: 1.6;
}
.cmp-split-card.them li::before { color: var(--ink-faint); }

/* ══════ PRICING PAGE ═══════════════════════════════════════ */
.pricing-card {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--r-xl);
  padding: 48px;
  box-shadow: 10px 10px 0 var(--coral), 10px 10px 0 0 var(--ink);
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
  position: relative;
}
@media (max-width: 760px) {
  .pricing-card { padding: 32px 24px; box-shadow: 6px 6px 0 var(--coral), 6px 6px 0 0 var(--ink); }
}
.pricing-stamp {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 7px 14px; border-radius: var(--r-pill);
  background: var(--violet-soft); color: var(--violet);
  border: 1.5px solid var(--ink);
  margin-bottom: 24px;
}
.pricing-price {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(48px, 8vw, 80px); letter-spacing: -0.04em; line-height: 1;
  margin-bottom: 8px;
}
.pricing-price em { color: var(--coral); font-variation-settings: "SOFT" 100, "WONK" 1; }
.pricing-sub {
  font-size: 17px; color: var(--ink-soft); max-width: 480px; margin: 0 auto 24px;
}
.pricing-includes {
  text-align: left; max-width: 480px; margin: 28px auto 32px;
  background: var(--cream-2);
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 22px 26px;
}
.pricing-includes-title {
  display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-faint); margin-bottom: 12px;
}
.pricing-includes ul { list-style: none; }
.pricing-includes li {
  position: relative; padding-left: 26px; margin-bottom: 8px;
  font-size: 15px; line-height: 1.5; color: var(--ink);
}
.pricing-includes li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: #16A34A; font-weight: 800;
}

/* ══════ FREE TOOLS / CALCULATORS ══════════════════════════ */
.tool-card {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: 8px 8px 0 var(--violet);
  max-width: 760px;
  margin: 32px auto;
}
.tool-card h2 {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(28px, 4vw, 36px); letter-spacing: -0.02em; line-height: 1.1;
  margin-bottom: 12px;
}
.tool-card .lede {
  color: var(--ink-soft); font-size: 16px; line-height: 1.55; margin-bottom: 24px;
}

.tool-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  align-items: start; margin-bottom: 24px;
}
@media (max-width: 720px) { .tool-grid { grid-template-columns: 1fr; gap: 16px; } }

.tool-input-group { display: flex; flex-direction: column; gap: 16px; }
.tool-field { display: flex; flex-direction: column; gap: 6px; }
.tool-field label {
  font-size: 13px; font-weight: 600; color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.tool-field .hint { font-size: 12px; color: var(--ink-faint); font-weight: 500; }
.tool-input-wrap {
  position: relative; display: flex; align-items: stretch;
}
.tool-input-wrap .prefix {
  background: var(--cream-2);
  border: 1.5px solid var(--ink);
  border-right: 0;
  border-radius: 10px 0 0 10px;
  padding: 12px 14px;
  font-weight: 700; font-size: 16px; color: var(--ink-faint);
}
.tool-input-wrap input {
  flex: 1;
  font-family: var(--f-body);
  font-size: 17px; font-weight: 600; color: var(--ink);
  padding: 12px 14px;
  border: 1.5px solid var(--ink);
  border-radius: 0 10px 10px 0;
  background: var(--paper);
  outline: none;
  min-width: 0;
}
.tool-input-wrap.no-prefix input { border-radius: 10px; }
.tool-input-wrap input:focus { box-shadow: 0 0 0 3px var(--violet-soft); }
.tool-input-wrap .suffix {
  background: var(--cream-2);
  border: 1.5px solid var(--ink);
  border-left: 0;
  border-radius: 0 10px 10px 0;
  padding: 12px 14px;
  font-weight: 700; font-size: 16px; color: var(--ink-faint);
}
.tool-input-wrap.suffix-only input { border-radius: 10px 0 0 10px; }

.tool-result {
  background: var(--night);
  color: var(--cream);
  border-radius: var(--r-md);
  padding: 28px 30px;
  position: relative; overflow: hidden;
}
.tool-result::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(400px 300px at 90% 0%, rgba(124,58,237,0.4), transparent 60%);
  pointer-events: none;
}
.tool-result > * { position: relative; z-index: 1; }
.tool-result-label {
  display: block;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--lime);
  margin-bottom: 8px;
}
.tool-result-value {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(36px, 6vw, 52px); letter-spacing: -0.03em; line-height: 1;
  margin-bottom: 8px;
}
.tool-result-sub { font-size: 14.5px; color: rgba(251,248,243,0.7); line-height: 1.5; }

.tool-formula {
  background: var(--cream-2);
  border: 1.5px dashed var(--line-2);
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 24px;
  font-family: var(--f-mono);
  font-size: 13.5px;
  color: var(--ink-soft);
}
.tool-formula b { color: var(--ink); }

.tool-cta {
  margin-top: 28px; padding-top: 24px;
  border-top: 1px dashed var(--line-2);
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  font-size: 15px; color: var(--ink-soft);
}
.tool-cta .tool-cta-line { flex: 1; }
.tool-cta strong { color: var(--ink); }

.tools-list-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  max-width: 980px; margin: 40px auto 0;
}
@media (max-width: 860px) { .tools-list-grid { grid-template-columns: 1fr; } }
.tools-list-card {
  display: block;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: 6px 6px 0 var(--violet);
  transition: transform .3s var(--ease-bounce), box-shadow .3s var(--ease-bounce);
}
.tools-list-card:nth-child(2) { box-shadow: 6px 6px 0 var(--coral); }
.tools-list-card:nth-child(3) { box-shadow: 6px 6px 0 var(--lime-2); }
.tools-list-card:hover { transform: translate(-3px, -3px); box-shadow: 10px 10px 0 var(--violet); }
.tools-list-card:nth-child(2):hover { box-shadow: 10px 10px 0 var(--coral); }
.tools-list-card:nth-child(3):hover { box-shadow: 10px 10px 0 var(--lime-2); }
.tools-list-card .badge {
  display: inline-block;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 11px; border-radius: var(--r-pill);
  background: var(--violet-soft); color: var(--violet);
  border: 1.5px solid var(--ink);
  margin-bottom: 16px;
}
.tools-list-card:nth-child(2) .badge { background: var(--coral-soft); color: var(--coral); }
.tools-list-card:nth-child(3) .badge { background: var(--lime); color: #3D5210; }
.tools-list-card h3 {
  font-family: var(--f-display); font-weight: 600;
  font-size: 24px; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 10px; color: var(--ink);
}
.tools-list-card p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; margin-bottom: 16px; }
.tools-list-card .open { font-size: 13.5px; font-weight: 700; color: var(--violet); }
.tools-list-card:nth-child(2) .open { color: var(--coral); }
.tools-list-card:nth-child(3) .open { color: #3D5210; }

/* ══════ GLOSSARY ═════════════════════════════════════════ */
.gloss-aka {
  font-size: 14px; color: var(--ink-faint); font-style: italic;
  margin-top: 10px;
}
.gloss-cat { margin-bottom: 48px; }
.gloss-cat-title {
  font-family: var(--f-display); font-weight: 600;
  font-size: 26px; letter-spacing: -0.02em;
  margin-bottom: 20px; padding-bottom: 10px;
  border-bottom: 2px solid var(--ink);
}
.gloss-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media (max-width: 860px) { .gloss-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .gloss-grid { grid-template-columns: 1fr; } }
.gloss-card {
  display: flex; flex-direction: column; gap: 8px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--r-md);
  padding: 20px;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform .25s var(--ease-bounce), box-shadow .25s var(--ease-bounce);
}
.gloss-card:hover { transform: translate(-3px, -3px); box-shadow: 7px 7px 0 var(--brand-strong); }
.gloss-card-term {
  font-family: var(--f-display); font-weight: 600;
  font-size: 18px; letter-spacing: -0.015em; color: var(--ink); line-height: 1.15;
}
.gloss-card-def { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; }

.gloss-formula {
  background: var(--night); color: var(--cream);
  border-radius: var(--r-md); padding: 22px 26px;
  font-size: 17px; line-height: 1.7; letter-spacing: -0.005em;
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--brand-strong);
}
.gloss-formula b { color: var(--brand-sparkle); font-weight: 700; }

.gloss-related-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 8px;
}
@media (max-width: 600px) { .gloss-related-grid { grid-template-columns: 1fr; } }
.gloss-related-card {
  display: flex; flex-direction: column; gap: 5px;
  background: var(--cream-2);
  border: 1.5px solid var(--line-2);
  border-radius: 14px; padding: 16px 18px;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.gloss-related-card:hover { border-color: var(--brand-strong); transform: translateY(-2px); }
.gloss-related-term { font-family: var(--f-display); font-weight: 600; font-size: 16px; letter-spacing: -0.01em; color: var(--ink); }
.gloss-related-def { font-size: 13px; color: var(--ink-soft); line-height: 1.45; }

.gloss-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
  background: var(--brand-soft);
  border: 2px solid var(--ink);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  margin: 40px 0 8px;
  box-shadow: 6px 6px 0 var(--ink);
}
.gloss-cta h2 {
  font-family: var(--f-display); font-weight: 600;
  font-size: 24px; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 6px;
  border: 0; padding: 0;
}
.gloss-cta p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.5; max-width: 540px; }
.gloss-cta .btn { flex-shrink: 0; }
@media (max-width: 600px) { .gloss-cta { padding: 24px; box-shadow: 4px 4px 0 var(--ink); } .gloss-cta .btn { width: 100%; justify-content: center; } }

/* ══════ LEGAL PAGES (Privacy, Terms) ═════════════════════ */
.legal {
  padding: 140px 0 80px;
  position: relative;
}
.legal-head {
  max-width: 900px;
  margin: 0 auto 56px;
  text-align: center;
}
.legal-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 7px 14px; border-radius: var(--r-pill);
  background: var(--violet-soft); color: var(--violet);
  margin-bottom: 22px;
}
.legal-title {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(44px, 7vw, 88px); line-height: 1.0; letter-spacing: -0.035em;
  font-variation-settings: "SOFT" 100;
  margin-bottom: 22px;
}
.legal-title em { color: var(--coral); font-variation-settings: "SOFT" 100, "WONK" 1; }
.legal-meta {
  display: inline-flex; align-items: center; gap: 12px; flex-wrap: wrap;
  font-size: 13.5px; color: var(--ink-soft); font-weight: 500;
}
.legal-meta .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--violet);
  display: inline-block; margin-right: 6px;
  animation: pulse 1.8s ease-in-out infinite;
}
.legal-meta .meta-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--ink-faint); display: inline-block; }

.legal-layout {
  display: grid; grid-template-columns: 260px minmax(0, 1fr);
  gap: 56px; align-items: start;
}
@media (max-width: 920px) {
  .legal-layout { grid-template-columns: 1fr; gap: 30px; }
}

.legal-toc {
  position: sticky; top: 110px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--r-md);
  padding: 22px;
  box-shadow: 6px 6px 0 var(--violet);
}
@media (max-width: 920px) {
  .legal-toc { position: static; box-shadow: 4px 4px 0 var(--violet); }
}
.legal-toc .toc-title {
  display: block; font-size: 11.5px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-faint);
  margin-bottom: 14px;
}
.legal-toc ol { list-style: none; counter-reset: none; }
.legal-toc li { margin: 2px 0; }
.legal-toc a {
  display: flex; align-items: baseline; gap: 10px;
  font-size: 13.5px; font-weight: 500; color: var(--ink-soft);
  padding: 7px 10px; border-radius: 10px;
  transition: all .2s var(--ease);
  line-height: 1.35;
}
.legal-toc a span {
  font-family: var(--f-mono); font-size: 11px; color: var(--ink-faint); flex-shrink: 0;
}
.legal-toc a:hover { background: var(--cream-2); color: var(--ink); }
.legal-toc a.active {
  background: var(--coral); color: var(--cream);
}
.legal-toc a.active span { color: var(--cream); opacity: 0.8; }

.legal-body {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--r-lg);
  padding: 48px 44px;
  box-shadow: 8px 8px 0 var(--ink);
}
@media (max-width: 760px) { .legal-body { padding: 30px 24px; } }

.legal-lede {
  font-family: var(--f-serif); font-style: italic;
  font-size: 22px; line-height: 1.45; color: var(--ink);
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 2px dashed var(--line-2);
  letter-spacing: -0.005em;
}

.legal-sect { margin-bottom: 44px; scroll-margin-top: 120px; }
.legal-sect-head {
  display: flex; align-items: baseline; gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1.5px solid var(--line);
}
.legal-sect-head span {
  font-family: var(--f-display); font-weight: 700;
  font-size: 28px; letter-spacing: -0.02em; color: var(--coral);
  font-variation-settings: "SOFT" 100, "WONK" 1;
  flex-shrink: 0;
}
.legal-sect-head h2 {
  font-family: var(--f-display); font-weight: 600;
  font-size: 28px; letter-spacing: -0.02em; line-height: 1.1;
  font-variation-settings: "SOFT" 100;
}
.legal-sect h3 {
  font-family: var(--f-display); font-weight: 600;
  font-size: 19px; letter-spacing: -0.01em;
  margin-top: 22px; margin-bottom: 10px;
  color: var(--ink);
}
.legal-sect p {
  font-size: 16px; line-height: 1.65; color: var(--ink-soft);
  margin-bottom: 12px;
}
.legal-sect p strong, .legal-sect li strong { color: var(--ink); font-weight: 700; }
.legal-sect ul, .legal-sect ol {
  margin: 8px 0 16px 0;
  list-style: none;
  padding-left: 0;
}
.legal-sect li {
  position: relative; padding-left: 24px; margin-bottom: 8px;
  font-size: 15.5px; line-height: 1.6; color: var(--ink-soft);
}
.legal-sect li::before {
  content: "✦"; position: absolute; left: 0; top: 0;
  color: var(--violet); font-size: 12px; line-height: 1.6;
}
.legal-sect a {
  color: var(--coral); font-weight: 600;
  border-bottom: 1.5px solid var(--coral-soft);
  transition: border-color .2s var(--ease);
}
.legal-sect a:hover { border-bottom-color: var(--coral); }

.legal-foot {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px dashed var(--line-2);
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  font-size: 13.5px; color: var(--ink-faint); font-weight: 500;
  letter-spacing: 0.04em;
}
.legal-foot .legal-dot { color: var(--coral); }
.legal-foot a {
  color: var(--violet); font-weight: 600;
  margin-left: auto;
  transition: color .2s var(--ease);
}
.legal-foot a:hover { color: var(--coral); }

/* Blog */
.legal-body-single {
  max-width: 820px;
  margin: 0 auto;
}
.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 26px;
  max-width: 1040px;
  margin: 0 auto;
}
.blog-card {
  display: block;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--r-lg);
  padding: 28px 28px 22px;
  box-shadow: 6px 6px 0 var(--ink);
  color: var(--ink);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.blog-card:hover {
  transform: translate(-3px, -4px);
  box-shadow: 10px 10px 0 var(--violet);
}
.blog-card-tag {
  display: inline-block;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 11px; border-radius: var(--r-pill);
  background: var(--violet-soft); color: var(--violet);
  margin-bottom: 16px;
}
.blog-card h2 {
  font-family: var(--f-display); font-weight: 600;
  font-size: 24px; line-height: 1.15; letter-spacing: -0.02em;
  font-variation-settings: "SOFT" 100;
  margin-bottom: 12px;
  color: var(--ink);
}
.blog-card p {
  font-size: 15px; line-height: 1.55; color: var(--ink-soft);
  margin-bottom: 18px;
}
.blog-card-meta {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  font-size: 12.5px; color: var(--ink-faint); font-weight: 500;
  letter-spacing: 0.02em;
  padding-top: 14px;
  border-top: 1.5px dashed var(--line-2);
}
.blog-card-meta .meta-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-faint); display: inline-block; }
.blog-card:hover .blog-card-meta { color: var(--coral); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ════════════════════════════════════════════════════════════════════
   Blog post — native Gutenberg markup inside .legal-body
   Extends the existing .legal-sect typography rules so native <p>, <h2>,
   <ul>, <blockquote> get the same look without needing a <section>
   wrapper around each chunk. Scoped via .legal-blog-post to avoid
   collisions with the glossary / marketing-page renderers (which already
   wrap their content in .legal-sect themselves).
   ════════════════════════════════════════════════════════════════════ */

.legal-blog-post > p {
  font-size: 17px; line-height: 1.7; color: var(--ink-soft);
  margin-bottom: 16px;
}
.legal-blog-post > p:first-of-type {
  font-family: var(--f-serif); font-style: italic;
  font-size: 22px; line-height: 1.45; color: var(--ink);
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 2px dashed var(--line-2);
  letter-spacing: -0.005em;
}
.legal-blog-post > p strong { color: var(--ink); font-weight: 700; }

.legal-blog-post > h2 {
  font-family: var(--f-display); font-weight: 600;
  font-size: 28px; letter-spacing: -0.02em; line-height: 1.2;
  font-variation-settings: "SOFT" 100;
  color: var(--ink);
  margin-top: 44px; margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1.5px solid var(--line);
  scroll-margin-top: 120px;
}
.legal-blog-post > h2 em {
  font-family: var(--f-serif); color: var(--coral);
  font-variation-settings: "SOFT" 100, "WONK" 1;
}

.legal-blog-post > h3 {
  font-family: var(--f-display); font-weight: 600;
  font-size: 20px; letter-spacing: -0.01em;
  margin-top: 28px; margin-bottom: 12px;
  color: var(--ink);
}

.legal-blog-post > ul,
.legal-blog-post > ol {
  margin: 12px 0 20px 0;
  list-style: none;
  padding-left: 0;
}
.legal-blog-post > ul li,
.legal-blog-post > ol li {
  position: relative; padding-left: 24px; margin-bottom: 10px;
  font-size: 16px; line-height: 1.65; color: var(--ink-soft);
}
.legal-blog-post > ul li::before {
  content: "✦"; position: absolute; left: 0; top: 0;
  color: var(--violet); font-size: 12px; line-height: 1.7;
}
.legal-blog-post > ol {
  counter-reset: blog-ol;
}
.legal-blog-post > ol li {
  counter-increment: blog-ol;
}
.legal-blog-post > ol li::before {
  content: counter(blog-ol) ".";
  position: absolute; left: 0; top: 0;
  font-family: var(--f-display); color: var(--coral); font-weight: 700;
  font-size: 14px;
}
.legal-blog-post li strong { color: var(--ink); font-weight: 700; }

.legal-blog-post > blockquote {
  border-left: 4px solid var(--coral);
  background: var(--coral-soft);
  margin: 24px 0;
  padding: 18px 22px;
  border-radius: var(--r-sm);
}
.legal-blog-post > blockquote p {
  font-family: var(--f-serif); font-style: italic;
  font-size: 18px; line-height: 1.55; color: var(--ink);
  margin: 0;
}
.legal-blog-post > blockquote p + p { margin-top: 10px; }

.legal-blog-post a {
  color: var(--coral-strong); font-weight: 600;
  border-bottom: 1.5px solid var(--coral-soft);
  transition: border-color .2s var(--ease);
}
.legal-blog-post a:hover { border-bottom-color: var(--coral-strong); }
.legal-blog-post a strong { color: inherit; }

.legal-blog-post > hr {
  border: none;
  height: 1px;
  background: var(--line-2);
  margin: 32px 0;
}

.legal-blog-post > pre,
.legal-blog-post > .wp-block-code {
  background: var(--ink); color: var(--cream);
  padding: 18px 22px;
  border-radius: var(--r-sm);
  font-family: var(--f-mono); font-size: 14px;
  overflow-x: auto;
  margin: 20px 0;
}

@media (max-width: 760px) {
  .legal-blog-post > h2 { font-size: 24px; margin-top: 32px; }
  .legal-blog-post > p:first-of-type { font-size: 19px; }
}

/* ════════════════════════════════════════════════════════════════════
   Contact page — form + side info
   ════════════════════════════════════════════════════════════════════ */

.contact-page { padding: 60px 0 80px; }

.contact-banner {
  margin: 28px 0;
  padding: 16px 22px;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 15.5px;
  line-height: 1.5;
}
.contact-banner-success {
  background: var(--lime); color: var(--ink);
  border: 2px solid var(--ink); box-shadow: 6px 6px 0 var(--ink);
}
.contact-banner-error {
  background: var(--coral-soft); color: var(--coral-strong);
  border: 2px solid var(--coral-strong);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 32px;
  margin-top: 32px;
}
@media (max-width: 880px) {
  .contact-layout { grid-template-columns: 1fr; }
}

.contact-form {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  box-shadow: 8px 8px 0 var(--ink);
  display: flex; flex-direction: column; gap: 20px;
}
@media (max-width: 760px) { .contact-form { padding: 24px 20px; } }

.contact-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
@media (max-width: 600px) {
  .contact-row { grid-template-columns: 1fr; }
}

.contact-field { display: flex; flex-direction: column; gap: 8px; }

.contact-label {
  font-family: var(--f-body); font-weight: 600;
  font-size: 14px; color: var(--ink);
  letter-spacing: 0.01em;
}
.contact-req { color: var(--coral-strong); margin-left: 2px; }

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
  font-family: var(--f-body); font-size: 16px; line-height: 1.5;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--line-2);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  width: 100%; box-sizing: border-box;
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brand-strong);
  box-shadow: 0 0 0 3px var(--brand-soft);
}
.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%2314111F' stroke-width='1.6' stroke-linecap='round' d='M1 1.5l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.contact-form textarea { resize: vertical; min-height: 140px; }

.contact-submit-row {
  display: flex; align-items: center; gap: 18px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.contact-fine {
  font-size: 13px; color: var(--ink-faint); line-height: 1.5;
}
.contact-fine a { color: var(--brand-strong); border-bottom: 1px solid var(--brand-soft); }

.contact-side {
  background: var(--violet-soft);
  border: 2px solid var(--ink);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  box-shadow: 8px 8px 0 var(--ink);
  align-self: start;
}
.contact-side h3 {
  font-family: var(--f-display); font-weight: 600;
  font-size: 20px; color: var(--ink);
  margin-bottom: 18px;
}
.contact-direct {
  list-style: none; padding: 0; margin: 0 0 22px 0;
  display: flex; flex-direction: column; gap: 14px;
}
.contact-direct li {
  font-size: 14.5px; color: var(--ink-soft); line-height: 1.5;
}
.contact-direct li strong { color: var(--ink); font-weight: 700; display: block; margin-bottom: 2px; }
.contact-direct a {
  color: var(--violet-strong); font-weight: 600;
  border-bottom: 1.5px solid rgba(124, 58, 237, 0.3);
}
.contact-direct a:hover { border-bottom-color: var(--violet-strong); }

.contact-callout {
  border-top: 1.5px dashed var(--line-2);
  padding-top: 18px;
  display: flex; gap: 10px;
  align-items: flex-start;
}
.contact-callout p {
  font-size: 14px; color: var(--ink-soft); line-height: 1.5; margin: 0;
}
.contact-callout a { color: var(--coral-strong); font-weight: 600; }
