/* ============================================================
   SYR — Home (marketing) · v6 system on the web
   white-first · one orchid accent · General Sans · quiet authority
   Page scale only; tokens.css carries the brand colours/radii.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text-primary);
  background: var(--bg-base);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}
::selection { background: var(--accent-tint); color: var(--accent-700); }

a { color: inherit; text-decoration: none; }

/* ── shared rhythm ── */
.wrap { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 32px; }
.section { padding: clamp(72px, 12vw, 152px) 0; }
.eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--accent-500); margin: 0 0 20px;
}
.lead {
  font-size: clamp(17px, 1.7vw, 19.5px); line-height: 1.55;
  color: var(--text-secondary); max-width: 46ch; margin: 0;
  text-wrap: pretty;
}
.lead b { color: var(--text-primary); font-weight: 600; }

h1, h2, h3 { margin: 0; letter-spacing: -0.025em; text-wrap: balance; font-weight: 700; }
h2.display { font-size: clamp(30px, 4.6vw, 50px); line-height: 1.05; }
h3.sub-display { font-size: clamp(22px, 2.6vw, 30px); line-height: 1.12; letter-spacing: -0.02em; }

/* ── buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  height: 56px; padding: 0 30px; border: none; cursor: pointer;
  border-radius: var(--radius-pill); font-family: var(--font);
  font-size: 17px; font-weight: 600; letter-spacing: -0.01em;
  background: var(--btn-gradient); color: var(--text-on-accent);
  box-shadow: 0 10px 22px -8px rgba(201,121,201,0.55), 0 2px 6px rgba(189,107,190,0.25);
  transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -10px rgba(201,121,201,0.6), 0 2px 6px rgba(189,107,190,0.25); }
.btn .chev { font-size: 19px; opacity: 0.92; margin-top: -1px; }
.btn.ghost {
  background: none; color: var(--accent-700); box-shadow: none;
  border: 1.5px solid var(--border-hairline); height: 52px;
}
.btn.ghost:hover { transform: none; border-color: var(--accent-300); box-shadow: none; }
.note { font-size: 13.5px; color: var(--text-tertiary); margin: 0; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.nav.scrolled { border-bottom-color: var(--border-hairline); }
.wordmark {
  font-size: 22px; font-weight: 700; letter-spacing: -0.04em;
  display: inline-flex; align-items: center; gap: 9px;
}
.wordmark .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--accent-500); margin-bottom: 2px; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 15px; font-weight: 600; color: var(--text-primary);
  padding: 10px 18px; border-radius: var(--radius-pill);
  border: 1.5px solid var(--border-hairline);
  transition: border-color .25s, transform .25s;
}
.nav-cta:hover { border-color: var(--accent-300); transform: translateY(-1px); }
.nav-cta .arr { color: var(--accent-500); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--bg-wash-top) 0%, #FBF3FB 34%, var(--bg-base) 70%);
  padding: clamp(56px, 9vw, 104px) 0 clamp(64px, 9vw, 112px);
  overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px); align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
  color: var(--text-secondary); margin: 0 0 26px;
  background: rgba(255,255,255,0.7); border: 1px solid var(--border-hairline);
  padding: 7px 15px 7px 12px; border-radius: var(--radius-pill);
}
.hero-eyebrow .pulse {
  width: 8px; height: 8px; border-radius: 999px; background: var(--accent-500);
  box-shadow: 0 0 0 0 rgba(201,121,201,0.5);
  animation: pulse 2.8s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(201,121,201,0.45); }
  70% { box-shadow: 0 0 0 9px rgba(201,121,201,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,121,201,0); }
}
.hero h1 {
  font-size: clamp(38px, 5.6vw, 66px); line-height: 1.02;
  letter-spacing: -0.035em; max-width: 14ch;
}
.hero h1 .soft { color: var(--text-tertiary); }
.hero .lead { margin: 26px 0 0; font-size: clamp(17.5px, 1.8vw, 20px); max-width: 38ch; }
.hero .lead .brand { color: var(--text-primary); font-weight: 600; }
.hero-actions { display: flex; flex-direction: column; gap: 14px; margin-top: 38px; align-items: flex-start; }
.hero-actions .row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

.hero-proof { display: flex; align-items: center; gap: 13px; margin-top: 40px; }
.avstack { display: flex; }
.avstack > span {
  width: 36px; height: 36px; border-radius: 999px; margin-left: -11px;
  border: 2.5px solid var(--bg-base);
  background:
    radial-gradient(120% 120% at 30% 25%, rgba(255,255,255,0.7), rgba(255,255,255,0) 55%),
    var(--seed, var(--accent-300));
}
.avstack > span:first-child { margin-left: 0; }
.hero-proof .cnt { font-size: 14px; color: var(--text-secondary); line-height: 1.35; }
.hero-proof .cnt b { color: var(--text-primary); font-weight: 700; }

.hero-stage { display: flex; justify-content: center; position: relative; }

/* ============================================================
   PHONE MOCKUP  (faithful v6 product surface)
   ============================================================ */
.phone {
  position: relative; width: 312px; flex: none;
  border-radius: 46px; padding: 11px;
  background: linear-gradient(160deg, #1a161a, #050405);
  box-shadow: 0 40px 80px -34px rgba(120,70,120,0.55), 0 8px 24px -10px rgba(10,10,10,0.28);
}
.phone-screen {
  position: relative; border-radius: 36px; overflow: hidden;
  background: var(--bg-base); height: 660px; display: flex; flex-direction: column;
}
.phone-notch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 116px; height: 26px; background: #050405;
  border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; z-index: 6;
}
.sb {
  height: 50px; flex: none; display: flex; align-items: flex-end; justify-content: space-between;
  padding: 0 24px 6px; font-size: 14px; font-weight: 600; letter-spacing: -0.01em;
}
.sb .glyphs { display: flex; gap: 5px; align-items: center; }
.sb .glyphs i { display: inline-block; width: 17px; height: 11px; border-radius: 2px; background: var(--text-primary); }
.sb .glyphs .bat { width: 23px; border: 1.5px solid var(--text-primary); background: none; position: relative; border-radius: 3px; }
.sb .glyphs .bat::after { content: ""; position: absolute; inset: 2px 5px 2px 2px; background: var(--text-primary); border-radius: 1px; }

/* product header bar inside the phone */
.pbar {
  flex: none; display: flex; align-items: center; gap: 10px;
  padding: 6px 18px 14px; border-bottom: 1px solid var(--border-hairline);
}
.pbar .eb { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-500); }
.pbar .ttl { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; }
.pbar .ttl .muted { color: var(--text-tertiary); font-weight: 500; }
.pbar .lock { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; color: var(--text-tertiary); }
.pbar .lock svg { width: 13px; height: 13px; stroke: var(--accent-500); fill: none; stroke-width: 1.8; }

.pbody { flex: 1; min-height: 0; padding: 18px 16px; display: flex; flex-direction: column; gap: 11px; overflow: hidden; }
.privacy-tag { align-self: center; font-size: 11.5px; color: var(--text-tertiary); margin: -2px 0 4px; }

/* chat bubbles — partner lands first (muted), self recedes (white + hairline) */
.bub { max-width: 80%; padding: 12px 15px; border-radius: 19px; font-size: 14.5px; line-height: 1.42; }
.bub.partner { align-self: flex-start; background: var(--surface-muted); color: var(--text-primary); border-bottom-left-radius: 6px; }
.bub.self { align-self: flex-end; background: var(--bg-base); color: var(--text-primary); border: 1px solid var(--border-hairline); border-bottom-right-radius: 6px; }
.bub .who { font-size: 11px; font-weight: 600; letter-spacing: 0.02em; color: var(--text-tertiary); margin: 0 0 4px; }

/* the SYR whisper — accent-tint card, lowercase eyebrow */
.whisper {
  align-self: stretch; background: var(--accent-tint); border: 1px solid var(--accent-300);
  border-radius: 16px; padding: 13px 15px; margin: 3px 0;
}
.whisper .eb { font-size: 11px; font-weight: 700; letter-spacing: 0.04em; color: var(--accent-500); margin: 0 0 6px; }
.whisper p { margin: 0; font-size: 14px; line-height: 1.46; color: var(--accent-700); }
.whisper .opts { display: flex; gap: 8px; margin-top: 11px; flex-wrap: wrap; }
.whisper .opt {
  font-size: 12.5px; font-weight: 600; color: var(--accent-700);
  background: var(--bg-base); border: 1px solid var(--accent-300);
  padding: 7px 13px; border-radius: var(--radius-pill);
}
.whisper .opt.solid { background: var(--accent-500); color: #fff; border-color: var(--accent-500); }

/* composer line at the bottom of a chat screen */
.composer {
  flex: none; margin: auto 0 0; display: flex; align-items: center; gap: 10px;
  padding: 11px 12px; border-top: 1px solid var(--border-hairline);
}
.composer .field {
  flex: 1; background: var(--surface-input); border-radius: var(--radius-pill);
  padding: 11px 16px; font-size: 13.5px; color: var(--text-primary); line-height: 1.3;
}
.composer .field .cursor { color: var(--text-tertiary); }
.composer .send { width: 36px; height: 36px; flex: none; border-radius: 999px; background: var(--btn-gradient); display: flex; align-items: center; justify-content: center; }
.composer .send svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

/* ── Loop Map mockup pieces ── */
.loop-hero-num { display: flex; align-items: baseline; gap: 10px; margin: 2px 0 2px; }
.loop-hero-num .n { font-size: 52px; font-weight: 700; letter-spacing: -0.03em; line-height: 1; color: var(--text-primary); }
.loop-hero-num .lbl { font-size: 13.5px; color: var(--text-secondary); line-height: 1.3; }
.heatramp { display: flex; align-items: flex-end; gap: 7px; height: 70px; margin: 6px 2px 10px; }
.heatramp i { flex: 1; border-radius: 6px 6px 3px 3px; }
.heatramp i:nth-child(1) { height: 30%; background: #ECDCEC; }
.heatramp i:nth-child(2) { height: 42%; background: #E3C4E3; }
.heatramp i:nth-child(3) { height: 54%; background: #DCA9DC; }
.heatramp i:nth-child(4) { height: 66%; background: #D08FD0; }
.heatramp i:nth-child(5) { height: 80%; background: #C979C9; }
.heatramp i:nth-child(6) {
  height: 100%;
  background: linear-gradient(180deg, #FBD79A 0%, #E89BCB 45%, #C979C9 100%);
  box-shadow: 0 6px 16px -4px rgba(201,121,201,0.6);
}
.beats { display: flex; flex-direction: column; gap: 9px; }
.beat { display: flex; gap: 10px; align-items: flex-start; }
.beat .tag { font-size: 11px; font-weight: 600; color: var(--text-tertiary); flex: none; width: 34px; padding-top: 2px; }
.beat .txt { font-size: 13.5px; line-height: 1.4; color: var(--text-primary); }
.beat.close .txt { color: var(--text-tertiary); font-style: normal; }
.loop-name {
  display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
  background: var(--accent-tint); border: 1.5px solid var(--accent-500); color: var(--accent-700);
  font-size: 13px; font-weight: 600; padding: 8px 15px; border-radius: var(--radius-pill);
}

/* ── Just Listen mockup pieces ── */
.floor-panel {
  flex: none; margin: auto 0 0; padding: 22px 16px 18px; border-top: 1px solid var(--border-hairline);
  display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center;
}
.orb {
  width: 64px; height: 64px; border-radius: 999px;
  background: radial-gradient(circle at 38% 32%, #F3DEF3, #C979C9 78%);
  box-shadow: 0 0 0 0 rgba(201,121,201,0.4);
  animation: breathe 4s ease-in-out infinite;
}
@keyframes breathe {
  0%,100% { transform: scale(0.92); box-shadow: 0 0 0 0 rgba(201,121,201,0.35); }
  50% { transform: scale(1.04); box-shadow: 0 0 0 16px rgba(201,121,201,0); }
}
.floor-panel .fl-ttl { font-size: 14.5px; font-weight: 600; color: var(--text-primary); }
.floor-panel .fl-sub { font-size: 12.5px; color: var(--text-tertiary); }

/* floating accent pills around the hero phone */
.float-pill {
  position: absolute; display: inline-flex; align-items: center; gap: 9px;
  background: var(--bg-base); border-radius: var(--radius-pill);
  padding: 10px 16px 10px 12px;
  box-shadow: 0 14px 30px -12px rgba(120,70,120,0.45), 0 2px 8px rgba(10,10,10,0.08);
  font-size: 13.5px; font-weight: 600; white-space: nowrap;
}
.float-pill .pic { width: 26px; height: 26px; flex: none; border-radius: 999px; background: var(--accent-tint); display: flex; align-items: center; justify-content: center; }
.float-pill .pic svg { width: 14px; height: 14px; stroke: var(--accent-600); fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.float-pill.one { top: 64px; left: -46px; }
.float-pill.two { bottom: 110px; right: -54px; }
@media (max-width: 1080px) { .float-pill { display: none; } }

/* ============================================================
   "no one else to call"
   ============================================================ */
.vacuum { text-align: center; }
.vacuum .wrap { max-width: 900px; }
.vacuum h2 { max-width: 18ch; margin: 0 auto; }
.vacuum .lead { margin: 22px auto 0; text-align: center; }
.closed-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  margin-top: 56px; background: var(--border-hairline);
  border: 1px solid var(--border-hairline); border-radius: var(--radius-card); overflow: hidden;
}
.closed {
  background: var(--bg-base); padding: 26px 28px; text-align: left;
  display: flex; flex-direction: column; gap: 7px;
}
.closed .name { font-size: 16px; font-weight: 600; color: var(--text-primary); }
.closed .why { font-size: 14.5px; color: var(--text-secondary); line-height: 1.45; }
.vacuum .punch {
  margin: 56px auto 0; max-width: 22ch;
  font-size: clamp(22px, 3vw, 32px); font-weight: 700; letter-spacing: -0.025em;
  line-height: 1.14; text-wrap: balance;
}
.vacuum .punch .brand { color: var(--accent-600); }

/* ============================================================
   feature blocks (alternating)
   ============================================================ */
.feature { }
.feature-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.feature.flip .feature-copy { order: 2; }
.feature.flip .feature-art { order: 1; }
.feature-art { display: flex; justify-content: center; }
.voc-quote {
  font-size: clamp(20px, 2.4vw, 27px); line-height: 1.28; font-weight: 600;
  letter-spacing: -0.02em; color: var(--text-primary); margin: 0 0 22px;
  text-wrap: balance; position: relative; padding-left: 20px;
}
.voc-quote::before { content: ""; position: absolute; left: 0; top: 5px; bottom: 5px; width: 3px; border-radius: 2px; background: var(--accent-400); }
.voc-quote .src { display: block; margin-top: 12px; font-size: 13.5px; font-weight: 500; letter-spacing: 0; color: var(--text-tertiary); }
.feature-copy h3 { margin-bottom: 14px; }
.feature-copy .lead { max-width: 42ch; }
.feature-tag { display: inline-flex; align-items: center; gap: 8px; margin-top: 24px; font-size: 14px; font-weight: 600; color: var(--accent-700); }
.feature-tag .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--accent-500); }

/* ============================================================
   painkiller grid (the long tail)
   ============================================================ */
.tail { background: var(--surface-muted); }
.tail .head { max-width: 30ch; }
.pk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; }
.pk {
  background: var(--bg-base); border: 1px solid var(--border-hairline);
  border-radius: var(--radius-card); padding: 26px 24px 28px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .25s, box-shadow .25s;
}
.pk:hover { transform: translateY(-3px); box-shadow: 0 16px 34px -20px rgba(120,70,120,0.4); }
.pk .pain { font-size: 15.5px; font-weight: 600; color: var(--text-primary); line-height: 1.35; }
.pk .pain::before { content: "\201C"; color: var(--accent-400); }
.pk .pain::after { content: "\201D"; color: var(--accent-400); }
.pk .relief { font-size: 14.5px; color: var(--text-secondary); line-height: 1.5; }
.pk .feat { margin-top: auto; font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--accent-500); }

/* ============================================================
   privacy / trust
   ============================================================ */
.trust { }
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 88px); align-items: center; }
.trust-card {
  background: var(--surface-muted); border-radius: var(--radius-card);
  padding: 40px; display: flex; flex-direction: column; gap: 18px;
}
.trust-card .row { display: flex; gap: 14px; align-items: flex-start; }
.trust-card .row .ic { width: 28px; height: 28px; flex: none; border-radius: 999px; border: 1.6px solid var(--accent-300); display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.trust-card .row .ic svg { width: 14px; height: 14px; stroke: var(--accent-500); fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.trust-card .row p { margin: 0; font-size: 15px; line-height: 1.45; color: var(--text-secondary); }
.trust-card .row p b { color: var(--text-primary); font-weight: 600; }
.trust-foot { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--text-secondary); padding-top: 4px; border-top: 1px solid var(--border-hairline); margin-top: 2px; }
.trust-foot svg { width: 15px; height: 15px; stroke: var(--accent-500); fill: none; stroke-width: 1.8; }

/* ============================================================
   the promise (three reliefs)
   ============================================================ */
.promise .head { max-width: 24ch; }
.relief-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 60px; }
.relief {
  display: flex; flex-direction: column; gap: 14px;
  padding-top: 26px; border-top: 2px solid var(--accent-300);
}
.relief .num { font-size: 14px; font-weight: 700; color: var(--accent-500); letter-spacing: 0.02em; }
.relief h3 { font-size: clamp(20px, 2.2vw, 25px); line-height: 1.18; }
.relief p { margin: 0; font-size: 14.5px; line-height: 1.5; color: var(--text-secondary); }
.relief .when { font-size: 13px; font-weight: 600; color: var(--text-tertiary); margin-top: 2px; }

/* ============================================================
   closing CTA
   ============================================================ */
.close-cta {
  background: linear-gradient(180deg, var(--bg-base) 0%, #FBF3FB 50%, var(--bg-wash-top) 100%);
  text-align: center;
}
.close-cta .wrap { max-width: 800px; }
.close-cta h2 { font-size: clamp(32px, 5vw, 58px); line-height: 1.04; letter-spacing: -0.035em; max-width: 16ch; margin: 0 auto; }
.close-cta .pricing { margin: 30px auto 0; font-size: clamp(16px, 1.8vw, 19px); color: var(--text-secondary); max-width: 40ch; }
.close-cta .pricing b { color: var(--text-primary); font-weight: 600; }
.close-cta .actions { margin-top: 40px; display: flex; flex-direction: column; align-items: center; gap: 14px; }

/* ============================================================
   footer
   ============================================================ */
.footer { padding: 56px 0 64px; border-top: 1px solid var(--border-hairline); }
.footer-grid { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer .tagline { font-size: 14.5px; color: var(--text-secondary); max-width: 30ch; margin: 14px 0 0; line-height: 1.5; }
.footer-links { display: flex; gap: 40px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-col .h { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-tertiary); margin-bottom: 3px; }
.footer-col a { font-size: 14.5px; color: var(--text-secondary); transition: color .2s; }
.footer-col a:hover { color: var(--accent-700); }
.footer .legal { margin-top: 44px; font-size: 12.5px; color: var(--text-tertiary); }

/* ============================================================
   reveal-on-scroll
   ============================================================ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .orb, .hero-eyebrow .pulse { animation: none; }
}

/* ============================================================
   responsive
   ============================================================ */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero .lead, .hero h1 { max-width: none; }
  .hero-actions { align-items: stretch; }
  .hero-actions .row { justify-content: center; }
  .feature-grid, .trust-grid { grid-template-columns: 1fr; gap: 44px; }
  .feature.flip .feature-copy { order: 1; }
  .feature.flip .feature-art { order: 2; }
  .pk-grid { grid-template-columns: 1fr 1fr; }
  .relief-row { grid-template-columns: 1fr; gap: 36px; }
  .closed-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 22px; }
  .nav { padding: 14px 22px; }
  .pk-grid { grid-template-columns: 1fr; }
  .phone { width: 286px; }
  .footer-grid { flex-direction: column; }
}

/* ============================================================
   free tools (lead magnets)
   ============================================================ */
.freebies { background: var(--surface-muted); }
.freebies .head { max-width: 26ch; }
.tool-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 56px; }
.tool-card {
  background: var(--bg-base); border: 1px solid var(--border-hairline);
  border-radius: var(--radius-card); padding: 26px 24px 28px;
  display: flex; flex-direction: column; gap: 12px;
  text-decoration: none; color: inherit;
  transition: transform .25s, box-shadow .25s;
}
.tool-card:hover { transform: translateY(-3px); box-shadow: 0 16px 34px -20px rgba(120,70,120,0.4); }
.tool-card .pain { font-size: 15.5px; font-weight: 600; color: var(--text-primary); line-height: 1.35; }
.tool-card .relief { font-size: 14.5px; color: var(--text-secondary); line-height: 1.5; }
.tool-card .feat { margin-top: auto; font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--accent-500); }
@media (max-width: 720px) { .tool-grid { grid-template-columns: 1fr; } }

/* real app screenshots inside the phone frame */
.phone-screen .shot { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.phone-screen .shot-bottom { object-position: bottom; }

/* framed store posters (own headline + bezel baked in) */
.poster { width: 400px; max-width: 100%; height: auto; display: block; flex: none; }
.hero-stage .poster { width: 420px; }
@media (max-width: 960px) { .poster, .hero-stage .poster { width: 340px; margin: 0 auto; } }
.poster { border-radius: 28px; }
.hero-stage .poster { box-shadow: 0 40px 80px -34px rgba(120,70,120,0.45), 0 8px 24px -10px rgba(10,10,10,0.15); }
