/* RecallQ — Apple-style rebuild */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg:           #FFFFFF;
  --bg-soft:      #F5F5F7;
  --bg-dark:      #1A1915;
  --bg-dark-soft: #2A2823;
  --border:       #E6E6EA;
  --border-dark:  rgba(255,255,255,0.12);

  --ink:          #1A1915;
  --ink-2:        #3A3833;
  --ink-3:        #6E6C66;
  --ink-4:        #A5A39C;

  --accent:       #5876C4;
  --accent-soft:  #8AA8E8;

  /* Verticals (kept, used sparingly as accents) */
  --dent:   #5C5A54;
  --physio: #7A6A5C;
  --opto:   #5A6470;

  --maxw: 1200px;
  --maxw-narrow: 880px;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  --ease: cubic-bezier(.22,1,.36,1);
}

*,*::before,*::after { box-sizing: border-box; }
html,body { margin:0; padding:0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display:block; max-width:100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* TYPE — Apple scale */
h1,h2,h3,h4 {
  font-weight: 600;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
  line-height: 1.05;
}
h1 { font-size: clamp(44px, 8vw, 104px); letter-spacing: -0.045em; font-weight: 600; }
h2 { font-size: clamp(36px, 6vw, 72px); letter-spacing: -0.04em; font-weight: 600; }
h3 { font-size: clamp(22px, 2.4vw, 30px); font-weight: 600; letter-spacing: -0.025em; line-height: 1.15; }
h4 { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }
p  { margin: 0; }

.display {
  font-size: clamp(56px, 9vw, 120px);
  letter-spacing: -0.05em;
  font-weight: 600;
  line-height: 0.98;
  text-wrap: balance;
}

.lead {
  font-size: clamp(19px, 1.6vw, 24px);
  line-height: 1.4;
  color: var(--ink-3);
  font-weight: 400;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}

.eyebrow {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.005em;
  text-transform: none;
}

.fine { font-size: 13px; color: var(--ink-4); letter-spacing: -0.005em; }

.accent { color: var(--accent); }
.muted  { color: var(--ink-3); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.container--narrow { max-width: var(--maxw-narrow); margin: 0 auto; padding: 0 32px; }
.text-center { text-align: center; }

/* MOTION */
[data-anim] { opacity: 0; will-change: opacity, transform; }
[data-anim].in { opacity: 1; transform: none; }
[data-anim="fade-up"]     { transform: translateY(36px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-anim="fade-in"]     { transition: opacity .8s var(--ease); }
[data-anim="slide-left"]  { transform: translateX(-40px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-anim="slide-right"] { transform: translateX(40px);  transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-anim="scale-up"]    { transform: scale(.94); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-stagger] > * { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-stagger].in > * { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-anim], [data-stagger] > * { transition-duration: .01s !important; transform: none !important; }
}

/* HEADER — Apple-style: thin, sticky, blurred */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: .5px solid var(--border);
  transition: opacity .4s, transform .4s;
}
.hdr-inner {
  display: flex; align-items: center;
  min-height: 48px; padding: 0;
  gap: 32px;
}
.wordmark {
  font-size: 21px; font-weight: 600; color: var(--ink);
  letter-spacing: -0.025em;
}
.wordmark .q { color: var(--accent); }
.nav { display: flex; gap: 28px; align-items: center; margin-left: auto; margin-right: 24px; }
.nav a, .nav button {
  color: var(--ink-2); font-size: 13px; font-weight: 400;
  transition: color .2s; padding: 4px 0;
}
.nav a:hover, .nav button:hover { color: var(--ink); }
.nav .nav-dd { position: relative; }
.nav-dd > button { display: flex; align-items: center; gap: 4px; }
.nav-dd .chev { width: 6px; height: 6px; border-right: 1.2px solid currentColor; border-bottom: 1.2px solid currentColor; transform: rotate(45deg); display: inline-block; margin-top: -3px; }
.nav-dd-menu {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(-4px);
  background: #fff; border: .5px solid var(--border); border-radius: 14px; padding: 10px;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.18);
  min-width: 300px; opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s;
}
.nav-dd:hover .nav-dd-menu, .nav-dd:focus-within .nav-dd-menu { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.nav-dd-menu a { display: flex; gap: 12px; padding: 10px 12px; border-radius: 10px; align-items: flex-start; }
.nav-dd-menu a:hover { background: var(--bg-soft); }
.nav-dd-menu a strong { display: block; color: var(--ink); font-weight: 500; font-size: 14px; letter-spacing: -0.01em; }
.nav-dd-menu .sub-desc { display: block; color: var(--ink-3); font-size: 12px; margin-top: 2px; font-weight: 400; }
.nav-dd-menu .dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-top: 6px; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-weight: 500; font-size: 15px; letter-spacing: -0.01em;
  padding: 11px 22px; border-radius: 980px; white-space: nowrap;
  transition: background-color .25s, color .25s, transform .25s, border-color .25s;
  cursor: pointer; line-height: 1;
}
.btn:hover { transform: scale(1.02); }
.btn:active { transform: scale(.98); }
.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { background: var(--ink-2); }
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { background: var(--accent-soft); }
.btn--ghost { background: transparent; color: var(--ink); border: .5px solid var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--link { padding: 0; background: none; color: var(--accent); font-size: 15px; }
.btn--link:hover { color: var(--accent-soft); }
.btn--lg { padding: 14px 28px; font-size: 16px; }
.btn--full { width: 100%; }
.btn--invert { background: #fff; color: var(--ink); }
.btn--invert:hover { background: rgba(255,255,255,.86); }

/* Header hamburger (mobile) */
.hamb { display: none; margin-left: auto; width: 40px; height: 40px; border-radius: 8px; align-items: center; justify-content: center; }
.hamb span { display: block; width: 20px; height: 1.5px; background: var(--ink); position: relative; }
.hamb span::before, .hamb span::after { content: ""; position: absolute; left: 0; right: 0; height: 1.5px; background: currentColor; }
.hamb span::before { top: -6px; } .hamb span::after { top: 6px; }
.mobile-menu { display: none; }

@media (max-width: 820px) {
  .nav { display: none; }
  .hamb { display: inline-flex; }
  .site-header .btn--primary { display: none; }
  .mobile-menu { display: block; background: #fff; border-bottom: .5px solid var(--border); overflow: hidden; max-height: 0; transition: max-height .3s ease; }
  .mobile-menu.open { max-height: 600px; }
  .mobile-menu ul { list-style: none; padding: 16px 32px; margin: 0; display: flex; flex-direction: column; gap: 4px; }
  .mobile-menu a, .mobile-menu button { display: block; padding: 12px 0; color: var(--ink); font-size: 16px; width: 100%; text-align: left; font-weight: 500; letter-spacing: -0.01em; }
}

/* SECTIONS — Apple-style big breathing room */
.section {
  padding: clamp(80px, 12vw, 180px) 0;
  position: relative;
}
.section--soft  { background: var(--bg-soft); }
.section--white { background: var(--bg); }
.section--dark  { background: var(--bg-dark); color: #fff; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark .lead { color: rgba(255,255,255,.7); }
.section--dark .eyebrow { color: var(--accent-soft); }
.section--dark .fine { color: rgba(255,255,255,.5); }

/* HERO — cinematic */
.hero-cine {
  position: relative;
  min-height: 100svh;
  padding: 128px 0 80px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--bg);
}
.hero-cine .eyebrow { margin-bottom: 20px; display: inline-block; }
.hero-cine h1 { max-width: 12ch; margin: 0 auto; }
.hero-cine .lead { margin: 32px auto 0; max-width: 640px; }
.hero-cine .ctas { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 48px; }
.hero-cine .inner { position: relative; z-index: 2; text-align: center; }

/* Cinematic hero animation stage */
.cine-stage {
  position: relative;
  width: 100%; max-width: 880px; margin: 80px auto 0;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--bg-soft);
  box-shadow:
    0 1px 2px rgba(0,0,0,0.04),
    0 40px 80px -30px rgba(0,0,0,0.25);
}

/* SIMPLE HERO for sub-pages */
.hero {
  padding: clamp(120px, 16vw, 200px) 0 clamp(64px, 10vw, 120px);
  text-align: center;
}
.hero .eyebrow { display: inline-block; margin-bottom: 18px; }
.hero h1 { max-width: 15ch; margin: 0 auto 28px; }
.hero .lead { margin: 0 auto 40px; max-width: 620px; }
.hero .ctas { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.breadcrumb { font-size: 13px; color: var(--ink-4); margin-bottom: 24px; letter-spacing: -0.005em; }

/* ONE-IDEA sections */
.idea {
  padding: clamp(80px, 14vw, 200px) 0;
  text-align: center;
}
.idea .display { margin: 0 auto; max-width: 14ch; }
.idea .lead { margin: 32px auto 0; max-width: 600px; }
.idea--dark { background: var(--bg-dark); color: #fff; }
.idea--dark .display { color: #fff; }
.idea--soft { background: var(--bg-soft); }

/* GRID — simpler, Apple-ish 2-up or 3-up tiles */
.tiles-2, .tiles-3, .tiles-4 { display: grid; gap: 20px; }
.tiles-2 { grid-template-columns: repeat(2, 1fr); }
.tiles-3 { grid-template-columns: repeat(3, 1fr); }
.tiles-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .tiles-2, .tiles-3, .tiles-4 { grid-template-columns: 1fr; } }

.tile {
  background: var(--bg-soft);
  border-radius: var(--r-xl);
  padding: 48px;
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform .5s var(--ease);
}
.tile:hover { transform: translateY(-6px); }
.tile--dark { background: var(--bg-dark); color: #fff; }
.tile--dark h3 { color: #fff; }
.tile--dark .tile-body { color: rgba(255,255,255,.7); }
.tile--accent { background: #EEF1FA; }
.tile .tile-eyebrow { font-size: 13px; font-weight: 500; color: var(--ink-3); margin-bottom: 10px; letter-spacing: -0.005em; }
.tile--dark .tile-eyebrow { color: rgba(255,255,255,.55); }
.tile h3 { margin-bottom: 14px; max-width: 16ch; }
.tile .tile-body { color: var(--ink-3); font-size: 16px; line-height: 1.5; max-width: 34ch; }
.tile .tile-cta { margin-top: 24px; color: var(--accent); font-size: 15px; font-weight: 500; display: inline-flex; align-items: center; gap: 4px; transition: gap .2s; }
.tile:hover .tile-cta { gap: 10px; }

/* STICKY SCROLL — pinned left, scrolling right */
.stick {
  position: relative;
  padding: clamp(60px, 10vw, 140px) 0;
}
.stick-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.stick-pin {
  position: sticky;
  top: 12vh;
  height: 80vh;
  display: flex; align-items: center; justify-content: center;
}
.stick-pin-inner {
  width: 100%;
  aspect-ratio: 3/4;
  max-width: 360px;
  border-radius: 44px;
  background: var(--bg-dark);
  border: 8px solid #1A1915;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.35);
  overflow: hidden;
  position: relative;
}
.stick-scenes { position: absolute; inset: 0; }
.stick-scene { position: absolute; inset: 0; opacity: 0; transition: opacity .6s var(--ease); padding: 40px 24px; color: #fff; display: flex; flex-direction: column; }
.stick-scene.on { opacity: 1; }

.stick-beats { display: flex; flex-direction: column; gap: clamp(40vh, 48vh, 60vh); padding: 10vh 0; }
.stick-beat h2 { font-size: clamp(32px, 4.5vw, 56px); margin-bottom: 20px; }
.stick-beat p { font-size: 20px; color: var(--ink-3); max-width: 30ch; line-height: 1.45; }
.stick-beat .num { font-size: 13px; font-weight: 500; color: var(--accent); margin-bottom: 16px; display: inline-block; }

@media (max-width: 900px) {
  .stick-row { grid-template-columns: 1fr; gap: 40px; }
  .stick-pin { position: relative; top: 0; height: auto; padding: 40px 0; }
  .stick-beats { gap: 80px; padding: 40px 0; }
}

/* ALTERNATING FULL-BLEED BLOCKS */
.block {
  padding: clamp(80px, 14vw, 180px) 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 32px; padding-right: 32px;
}
.block.rev { grid-template-columns: 1fr 1fr; }
.block.rev .block-copy { order: 2; }
.block.rev .block-vis { order: 1; }
.block-copy .eyebrow { margin-bottom: 16px; display: inline-block; }
.block-copy h2 { margin-bottom: 24px; }
.block-copy p { font-size: 19px; color: var(--ink-3); line-height: 1.5; margin-bottom: 24px; max-width: 36ch; }
.block-copy .btn { margin-top: 8px; }
.block-vis {
  border-radius: var(--r-xl);
  background: var(--bg-soft);
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
@media (max-width: 900px) {
  .block, .block.rev { grid-template-columns: 1fr; gap: 40px; }
  .block.rev .block-copy, .block.rev .block-vis { order: initial; }
}

/* KEY STATS */
.stat-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  text-align: left;
}
.stat-row .stat-n {
  font-size: clamp(60px, 8vw, 104px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.95;
  font-variant-numeric: tabular-nums;
}
.stat-row .stat-l { font-size: 15px; color: var(--ink-3); margin-top: 12px; max-width: 26ch; line-height: 1.45; }
.idea--dark .stat-row .stat-l { color: rgba(255,255,255,.6); }
@media (max-width: 820px) { .stat-row { grid-template-columns: 1fr; gap: 48px; } }

/* PRICING TEASER */
.price-teaser {
  background: var(--bg-soft);
  border-radius: var(--r-xl);
  padding: 72px 48px;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.price-teaser .amount {
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.95;
  margin: 24px 0 8px;
}
.price-teaser .per { color: var(--ink-3); font-size: 17px; margin-bottom: 32px; }
.price-teaser ul { list-style: none; padding: 0; margin: 0 0 32px; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 24px; }
.price-teaser li { font-size: 15px; color: var(--ink-2); display: flex; gap: 8px; align-items: center; letter-spacing: -0.005em; }
.price-teaser li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* COMPLIANCE PILL ROW */
.pill-row {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-top: 40px;
}
.cpill {
  padding: 8px 14px; border-radius: 980px; background: rgba(255,255,255,.08);
  border: .5px solid rgba(255,255,255,.16);
  font-size: 13px; color: rgba(255,255,255,.85); font-weight: 500; letter-spacing: -0.005em;
}
.section--white .cpill, .section--soft .cpill { background: #fff; border-color: var(--border); color: var(--ink-2); }

/* CTA BAND — simpler */
.cta-band {
  background: var(--bg-dark);
  color: #fff;
  padding: clamp(96px, 14vw, 180px) 32px;
  text-align: center;
}
.cta-band h2 { max-width: 18ch; margin: 0 auto 28px; color: #fff; }
.cta-band p { color: rgba(255,255,255,.7); max-width: 36ch; margin: 0 auto 40px; font-size: 19px; }
.cta-band .ctas { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta-band .fine { margin-top: 24px; color: rgba(255,255,255,.45); font-size: 13px; }

/* FOOTER */
.footer { background: var(--bg-soft); color: var(--ink-3); padding: 56px 0 32px; border-top: .5px solid var(--border); font-size: 13px; }
.footer .grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 820px) { .footer .grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
.footer h4 { font-size: 12px; color: var(--ink); margin-bottom: 14px; font-weight: 600; letter-spacing: -0.005em; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer a, .footer button { color: var(--ink-3); font-size: 13px; letter-spacing: -0.005em; }
.footer a:hover, .footer button:hover { color: var(--ink); }
.footer .brand-col .wordmark { color: var(--ink); font-size: 18px; }
.footer .brand-col .tag { color: var(--ink-3); font-size: 13px; margin-top: 10px; line-height: 1.5; max-width: 240px; }
.footer .compliance { border-top: .5px solid var(--border); margin-top: 48px; padding-top: 24px; color: var(--ink-4); font-size: 12px; display: flex; gap: 12px; flex-wrap: wrap; }
.footer .compliance .sep { opacity: .4; }
.footer .copy { color: var(--ink-4); font-size: 11px; margin-top: 14px; letter-spacing: 0; }

/* MODAL */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(26,25,21,0.55); backdrop-filter: blur(8px);
  z-index: 100; display: none; align-items: center; justify-content: center;
  padding: 16px; opacity: 0; transition: opacity .3s ease;
}
.modal-backdrop.open { display: flex; opacity: 1; }
.modal {
  background: #fff; border-radius: var(--r-xl); max-width: 520px; width: 100%; padding: 40px;
  max-height: 90vh; overflow-y: auto;
  transform: scale(.96) translateY(16px); opacity: 0;
  transition: transform .4s var(--ease), opacity .3s;
  position: relative;
}
.modal-backdrop.open .modal { transform: none; opacity: 1; }
.modal h2 { font-size: 28px; margin-bottom: 6px; letter-spacing: -0.03em; }
.modal .sub { font-size: 15px; color: var(--ink-3); margin-bottom: 24px; }
.modal .close {
  position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; color: var(--ink-3); background: var(--bg-soft);
}
.modal .close:hover { background: var(--border); color: var(--ink); }
.modal form { display: flex; flex-direction: column; gap: 16px; }
.modal label { font-size: 12px; color: var(--ink-3); font-weight: 500; display: block; margin-bottom: 6px; letter-spacing: -0.005em; }
.modal input, .modal select, .modal textarea {
  width: 100%; border: .5px solid var(--border); border-radius: 10px; padding: 12px 14px;
  font: inherit; font-size: 15px; background: #fff; color: var(--ink); transition: border-color .2s, box-shadow .2s;
  font-family: inherit;
}
.modal input:focus, .modal select:focus, .modal textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(88,118,196,.18);
}
.modal textarea { resize: vertical; min-height: 68px; }
.modal .vpicker { display: flex; gap: 8px; }
.modal .vpicker button {
  flex: 1; padding: 11px 8px; border-radius: 10px; background: var(--bg-soft); color: var(--ink-3);
  font-size: 13px; font-weight: 500; transition: background-color .2s, color .2s;
}
.modal .vpicker button.on { background: var(--ink); color: #fff; }
.modal .privacy-note { font-size: 11px; color: var(--ink-4); text-align: center; margin-top: 4px; }
.modal .success { text-align: center; padding: 12px 0; }
.modal .success .icon { width: 56px; height: 56px; border-radius: 50%; background: var(--accent); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.modal .success .icon svg { width: 28px; height: 28px; stroke: #fff; stroke-width: 2.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.modal .success h3 { font-size: 22px; margin-bottom: 8px; }
.modal .success p { font-size: 15px; color: var(--ink-3); margin-bottom: 20px; }

/* ======================================================
   Legacy component classes kept for sub-pages that still use them
   ====================================================== */
.card {
  background: var(--bg-soft);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: transform .3s var(--ease);
}
.card:hover { transform: translateY(-4px); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--ink-3); font-size: 15px; }

.vcard { padding: 32px; border-radius: var(--r-lg); background: var(--bg-soft); }
.vcard .accent-dot { width: 36px; height: 36px; border-radius: 50%; margin-bottom: 20px; display: block; }
.vcard h3 { font-size: 26px; font-weight: 600; letter-spacing: -0.03em; }
.vcard .tagline { color: var(--ink-3); font-size: 15px; margin: 4px 0 14px; }
.vcard .body { color: var(--ink-3); font-size: 15px; line-height: 1.5; margin-bottom: 22px; }
.vcard .stats { color: var(--ink-4); font-size: 13px; margin-bottom: 20px; padding-top: 16px; border-top: .5px solid var(--border); }
.vcard .cta-link { font-size: 15px; font-weight: 500; color: var(--accent); display: inline-flex; gap: 6px; transition: gap .2s; }
.vcard:hover .cta-link { gap: 12px; }

.ic { width: 42px; height: 42px; border-radius: 50%; background: #fff; color: var(--ink-2); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 18px; border: .5px solid var(--border); }
.ic svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px; align-items: center; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 820px) { .grid-3, .grid-2, .grid-4, .grid-6 { grid-template-columns: 1fr; gap: 16px; } }
@media (min-width: 821px) and (max-width: 1040px) { .grid-6 { grid-template-columns: repeat(2, 1fr); } }

.trust-strip { margin-top: 32px; display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; font-size: 13px; color: var(--ink-4); }
.trust-strip .sep { opacity: .5; }

.bullets { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.bullets li { display: flex; gap: 12px; font-size: 15px; color: var(--ink-2); line-height: 1.5; }
.bullets li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; margin-top: 9px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 48px; }
.steps .step .n { width: 32px; height: 32px; border-radius: 50%; background: var(--ink); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 500; margin-bottom: 18px; }
.steps .step h3 { font-size: 20px; margin-bottom: 8px; }
.steps .step p { font-size: 15px; color: var(--ink-3); line-height: 1.5; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }

/* ROI card — restyled but kept */
.roi-card {
  max-width: 640px; margin: 0 auto;
  background: var(--bg-soft); border-radius: var(--r-xl);
  padding: 40px;
}
.pills { display: flex; gap: 8px; margin-bottom: 28px; }
.pill { flex: 1; padding: 11px 12px; border-radius: 980px; background: #fff; color: var(--ink-3); font-size: 14px; font-weight: 500; text-align: center; border: .5px solid var(--border); transition: background-color .2s, color .2s, border-color .2s; }
.pill.on { background: var(--ink); color: #fff; border-color: var(--ink); }
.slider-label { font-size: 14px; color: var(--ink-3); margin-bottom: 8px; }
.slider-val { font-size: 32px; font-weight: 600; letter-spacing: -0.03em; color: var(--ink); font-variant-numeric: tabular-nums; margin-bottom: 16px; }
input[type="range"] { width: 100%; accent-color: var(--accent); }
.roi-out { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 28px; }
.roi-out .box { background: #fff; border-radius: 14px; padding: 20px; }
.roi-out .n { font-size: 28px; font-weight: 600; color: var(--accent); font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }
.roi-out .l { font-size: 11px; color: var(--ink-4); text-transform: uppercase; letter-spacing: .1em; margin-top: 6px; }

/* FAQ */
.faq { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: .5px solid var(--border); }
.faq-item summary { list-style: none; cursor: pointer; padding: 22px 0; font-size: 17px; color: var(--ink); font-weight: 500; display: flex; justify-content: space-between; align-items: center; gap: 16px; letter-spacing: -0.015em; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 24px; font-weight: 300; color: var(--ink-3); transition: transform .3s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .a { padding: 0 0 22px; color: var(--ink-3); font-size: 15px; line-height: 1.6; }

.illo-ph { aspect-ratio: 4/3; border-radius: var(--r-lg); background: var(--bg-soft); display: flex; align-items: center; justify-content: center; color: var(--ink-4); font-family: ui-monospace, monospace; font-size: 12px; }

/* Timeline (how it works) */
.timeline { max-width: 760px; margin: 0 auto; position: relative; }
.timeline::before { content:""; position: absolute; left: 20px; top: 0; bottom: 0; width: 1px; background: var(--border); }
.tstep { display: grid; grid-template-columns: 48px 1fr; gap: 24px; padding: 24px 0; position: relative; }
.tstep .n { width: 36px; height: 36px; border-radius: 50%; background: var(--ink); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 500; position: relative; z-index: 1; }
.tstep h3 { font-size: 20px; margin-bottom: 8px; }
.tstep p { font-size: 15px; color: var(--ink-3); max-width: 52ch; line-height: 1.55; }

/* Pricing cards */
.price-card { padding: 36px; border-radius: var(--r-xl); background: var(--bg-soft); }
.price-card .badge { font-size: 12px; letter-spacing: -0.005em; color: var(--ink-3); margin-bottom: 18px; display: inline-block; }
.price-card.featured { background: var(--ink); color: #fff; }
.price-card.featured h3, .price-card.featured .amount { color: #fff; }
.price-card.featured .badge { background: var(--accent); color: #fff; padding: 4px 10px; border-radius: 980px; }
.price-card.featured .per, .price-card.featured .gst, .price-card.featured li { color: rgba(255,255,255,.75); }
.price-card .amount { font-size: 48px; font-weight: 600; color: var(--ink); letter-spacing: -0.04em; line-height: 1; }
.price-card .per { font-size: 17px; color: var(--ink-3); font-weight: 400; }
.price-card .gst { font-size: 12px; color: var(--ink-4); margin-top: 4px; margin-bottom: 24px; }
.price-card ul { list-style: none; margin: 24px 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.price-card li { font-size: 14px; color: var(--ink-3); display: flex; gap: 10px; align-items: flex-start; line-height: 1.4; }
.price-card li::before { content: "✓"; color: var(--accent); font-weight: 600; flex-shrink: 0; }

/* Focus ring */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px;
}

/* Prose */
.prose { max-width: 680px; margin: 0 auto; }
.prose p { font-size: 17px; color: var(--ink-2); line-height: 1.75; margin-bottom: 20px; }
.prose h2 { margin-top: 40px; margin-bottom: 14px; font-size: 28px; }

/* Subs table */
table.subs { width: 100%; border-collapse: collapse; font-size: 14px; }
table.subs th, table.subs td { text-align: left; padding: 14px 12px; }
table.subs th { color: var(--ink); font-weight: 500; border-bottom: 1px solid var(--border); }
table.subs td { border-bottom: .5px solid var(--border); color: var(--ink-3); }

/* Integration chips */
.integ-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 24px; }
.integ-label { font-size: 12px; letter-spacing: -0.005em; color: var(--ink-4); text-align: center; margin-bottom: 14px; }
.integ-chip { padding: 8px 16px; border-radius: 980px; font-size: 13px; color: var(--ink-3); background: var(--bg-soft); border: .5px solid var(--border); }

/* Live strip (hero inline) — keep for compatibility, restyled */
.live-strip { margin: 24px auto 0; display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: center; background: var(--bg-soft); border-radius: 980px; padding: 8px 18px; font-size: 13px; color: var(--ink-3); letter-spacing: -0.005em; }
.live-strip strong { color: var(--ink); font-weight: 600; font-variant-numeric: tabular-nums; }
.live-strip .lc-dot { width: 8px; height: 8px; border-radius: 50%; background: #3FBF73; box-shadow: 0 0 0 0 rgba(63,191,115,.7); animation: lcPulse 1.8s ease-out infinite; }
.live-strip .lc-sep { opacity: .4; }
@keyframes lcPulse { 0%{box-shadow:0 0 0 0 rgba(63,191,115,.55);} 70%{box-shadow:0 0 0 10px rgba(63,191,115,0);} 100%{box-shadow:0 0 0 0 rgba(63,191,115,0);} }

/* Hero inline anim wrappers (legacy helpers) */
[data-mount]{opacity:0;transform:translateY(24px);transition:opacity .8s var(--ease),transform .8s var(--ease);}
[data-mount].in{opacity:1;transform:none;}

/* RecallQAd component (restyled, Apple-ish) */
.rqa {
  position: relative; max-width: 900px; margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: var(--bg-soft); border-radius: var(--r-xl); overflow: hidden;
  box-shadow: 0 1px 2px rgba(0,0,0,.04), 0 40px 80px -30px rgba(0,0,0,.2);
}
.rqa .act { position: absolute; inset: 0; padding: 56px; display: flex; flex-direction: column; justify-content: center; opacity: 0; transition: opacity .5s ease; }
.rqa .act.on { opacity: 1; }
.rqa .act .ey { font-size: 13px; color: var(--accent); margin-bottom: 18px; font-weight: 500; opacity: 0; transform: translateY(-6px); transition: opacity .5s, transform .5s; }
.rqa .act.on .ey { opacity: 1; transform: none; }
.rqa .act h3 { font-size: clamp(28px, 4vw, 48px); font-weight: 600; color: var(--ink); line-height: 1.05; letter-spacing: -0.035em; opacity: 0; transform: translateY(-6px); transition: opacity .5s, transform .5s; transition-delay: .1s; max-width: 18ch; }
.rqa .act.on h3 { opacity: 1; transform: none; }
.rqa .act .sub { color: var(--ink-3); font-size: 16px; margin-top: 20px; opacity: 0; transform: translateY(-6px); transition: opacity .5s, transform .5s; transition-delay: 2.8s; }
.rqa .act.on .sub { opacity: 1; transform: none; }

.rqa .grid-dots { display: grid; grid-template-columns: repeat(24, 1fr); gap: 6px; margin-top: 28px; max-width: 520px; opacity: 0; transition: opacity .5s ease; transition-delay: .4s; }
.rqa .act.on .grid-dots { opacity: 1; }
.rqa .grid-dots span { width: 100%; aspect-ratio: 1; background: var(--border); border-radius: 50%; transition: background-color .3s ease; }
.rqa .grid-dots span.hi { background: var(--accent); }

.rqa .act2-row { display: flex; gap: 32px; margin-top: 24px; align-items: flex-start; flex-wrap: wrap; }
.rqa .bubbles { flex: 1; min-width: 260px; max-width: 400px; display: flex; flex-direction: column; gap: 10px; }
.rqa .bubble { background: #fff; border-radius: 14px 14px 14px 4px; padding: 12px 16px; font-size: 14px; color: var(--ink); line-height: 1.45; border-left: 3px solid var(--accent); opacity: 0; transform: translateY(10px) scale(.98); transition: opacity .4s, transform .4s; box-shadow: 0 1px 2px rgba(0,0,0,.04); }
.rqa .bubble.on { opacity: 1; transform: none; }
.rqa .reply { align-self: flex-end; color: #fff; background: var(--accent); font-weight: 500; font-size: 13px; padding: 8px 16px; border-radius: 14px 14px 4px 14px; opacity: 0; transform: translateY(6px); transition: opacity .3s, transform .3s; }
.rqa .reply.on { opacity: 1; transform: none; }
.rqa .vtags { display: flex; flex-direction: column; gap: 14px; padding-top: 6px; }
.rqa .vtag { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-3); opacity: .3; transition: opacity .4s; }
.rqa .vtag.on { opacity: 1; }
.rqa .vtag .vdot { width: 8px; height: 8px; border-radius: 50%; }

.rqa .act3 { background: var(--bg-dark); color: #fff; align-items: center; justify-content: center; text-align: center; }
.rqa .act3 h3 { color: #fff; }
.rqa .act3 .money { font-size: clamp(72px, 10vw, 128px); font-weight: 600; color: #fff; letter-spacing: -0.05em; font-variant-numeric: tabular-nums; line-height: 1; opacity: 0; transform: translateY(-6px); transition: opacity .5s, transform .5s; transition-delay: .4s; }
.rqa .act3.on .money { opacity: 1; transform: none; }
.rqa .act3 .subline { color: rgba(255,255,255,.7); font-size: 17px; max-width: 380px; margin: 22px auto 0; opacity: 0; transform: translateY(-6px); transition: opacity .5s, transform .5s; transition-delay: 2.1s; }
.rqa .act3.on .subline { opacity: 1; transform: none; }
.rqa .act3 .closeblk { margin-top: 28px; opacity: 0; transform: translateY(-6px); transition: opacity .5s, transform .5s; transition-delay: 2.7s; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.rqa .act3.on .closeblk { opacity: 1; transform: none; }
.rqa .act3 .wm { font-size: 22px; font-weight: 600; color: #fff; letter-spacing: -0.025em; }
.rqa .act3 .wm .q { color: var(--accent-soft); }
.rqa .act3 .tag { font-size: 11px; color: rgba(255,255,255,.5); letter-spacing: 0; }
.rqa .progress { position: absolute; bottom: 0; left: 0; height: 2px; background: var(--accent); width: 0; }

@media (max-width: 700px) {
  .rqa .act { padding: 32px; }
  .rqa .grid-dots { grid-template-columns: repeat(16, 1fr); }
}
