/* ============================================================================
   Presence — site stylesheet
   Palette and type are lifted from the Android app so the site and the product
   read as one thing:
     ui/theme/Color.kt  — dark-first tokens, accent flips amber -> teal in light
     ui/theme/Font.kt   — Manrope for UI, Instrument Serif Italic for the wordmark
   Fonts are self-hosted in assets/fonts so the page makes zero external requests.
   ========================================================================== */

@font-face {
  font-family: 'Manrope';
  src: url('/assets/fonts/manrope-var.woff2') format('woff2');
  font-weight: 200 800;
  font-display: swap;
}
@font-face {
  font-family: 'Instrument Serif';
  src: url('/assets/fonts/instrument-serif-italic.woff2') format('woff2');
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

/* ---------- tokens: dark is the default, matching the app ---------------- */
:root {
  --bg:        #080C0F;
  --surface:   #12181C;
  --elev:      #1E252A;
  --line:      #2D3438;
  --line-soft: rgba(45, 52, 56, .55);

  --fg:        #EFF2F4;
  --fg2:       #DCDEE0;
  --fg3:       #8A949A;
  --fg4:       #636A6F;

  --accent:     #FFB67A;   /* decorative: rules, glows, dots  */
  --accent-ink: #FFB67A;   /* accent used as text            */
  --btn-bg:     #FFB67A;
  --btn-fg:     #060A0D;
  --gold:       #E8C468;

  --glow: radial-gradient(60% 50% at 50% 0%, rgba(255, 182, 122, .10), transparent 70%);
  --shadow: 0 1px 2px rgba(0,0,0,.4), 0 12px 40px -12px rgba(0,0,0,.7);

  --wrap: 1080px;
  --r: 16px;
}

@media (prefers-color-scheme: light) {
  :root {
    --bg:        #F7F9FA;
    --surface:   #FFFFFF;
    --elev:      #EDF0F2;
    --line:      #DCE1E4;
    --line-soft: rgba(202, 206, 209, .8);

    --fg:        #12171A;
    --fg2:       #2B3236;
    --fg3:       #5A6266;
    --fg4:       #767D81;

    --accent:     #2A9D8F;
    --accent-ink: #14706A;   /* darkened for 4.5:1 on light backgrounds */
    --btn-bg:     #1F7A70;
    --btn-fg:     #FFFFFF;
    --gold:       #8A6D16;

    --glow: radial-gradient(60% 50% at 50% 0%, rgba(42, 157, 143, .09), transparent 70%);
    --shadow: 0 1px 2px rgba(16,23,26,.06), 0 12px 32px -14px rgba(16,23,26,.18);
  }
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: 'Manrope', ui-sans-serif, system-ui, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; height: auto; display: block; }

a { color: var(--accent-ink); text-decoration-color: color-mix(in srgb, var(--accent-ink) 40%, transparent); text-underline-offset: 3px; }
a:hover { text-decoration-color: currentColor; }

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

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

.section { padding: 96px 0; }
.section + .section { padding-top: 0; }

.skip {
  position: absolute; left: -9999px; top: 0; background: var(--surface);
  padding: 10px 16px; border-radius: 0 0 8px 0; z-index: 100;
}
.skip:focus { left: 0; }

/* ---------- shared type --------------------------------------------------- */
.serif {
  font-family: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
}

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin: 0 0 14px;
}

h2.h {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  letter-spacing: -.02em;
  font-weight: 700;
  margin: 0 0 14px;
}

.lede {
  font-size: 18px;
  color: var(--fg3);
  max-width: 62ch;
  margin: 0;
}

.section-head { margin-bottom: 48px; }

/* ---------- buttons ------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px;
  border-radius: 14px;
  border: 1px solid transparent;
  font: inherit; font-weight: 700; font-size: 15px; letter-spacing: .01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--btn-bg); color: var(--btn-fg); }
.btn-primary:hover { background: color-mix(in srgb, var(--btn-bg) 88%, #fff); }

.btn-ghost {
  background: transparent; color: var(--fg); border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--fg4); background: color-mix(in srgb, var(--fg) 4%, transparent); }

.btn .sub { display: block; font-size: 11px; font-weight: 600; opacity: .7; letter-spacing: .04em; }

.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  color: var(--fg3);
  text-decoration: none;
  white-space: nowrap;
}

/* ---------- nav ----------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease;
}
.nav.stuck { border-bottom-color: var(--line-soft); }

.nav-in {
  display: flex; align-items: center; gap: 24px;
  height: 66px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--fg);
  margin-right: auto;
}
.brand svg, .brand img { width: 30px; height: 25px; }
.brand span { font-size: 24px; line-height: 1; }

.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  color: var(--fg3); text-decoration: none; font-size: 14px; font-weight: 600;
}
.nav-links a:hover { color: var(--fg); }

@media (max-width: 760px) {
  .nav-links a:not(.chip) { display: none; }
}

/* ---------- hero ---------------------------------------------------------- */
.hero {
  position: relative;
  padding: 92px 0 72px;
  text-align: center;
  background: var(--glow);
}

.mark {
  width: 116px; margin: 0 auto 28px;
  animation: breathe 5.4s ease-in-out infinite;
  transform-origin: 50% 50%;
}
@keyframes breathe {
  0%, 100% { transform: scale(.96); opacity: .92; }
  50%      { transform: scale(1.04); opacity: 1; }
}

.wordmark {
  font-size: clamp(56px, 12vw, 104px);
  line-height: 1;
  margin: 0 0 20px;
  letter-spacing: -.01em;
}

.tagline {
  font-size: clamp(12px, 2.4vw, 15px);
  font-weight: 800;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin: 0 0 26px;
}

.hero p.sub {
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--fg2);
  max-width: 34ch;
  margin: 0 auto 36px;
  line-height: 1.5;
}
.hero p.sub b { color: var(--fg); font-weight: 700; }

.cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.hero-note {
  margin: 26px 0 0;
  font-size: 13px;
  color: var(--fg4);
}

/* ---------- notification proof strip -------------------------------------- */
/* The app's own login screen makes its pitch as arriving notifications rather
   than marketing cards — "demonstrates the product instead of describing it".
   Same idea, same copy, same odd-hour timestamps. */
.notifs {
  display: grid;
  gap: 12px;
  max-width: 560px;
  margin: 0 auto;
}

.notif {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: var(--shadow);
  text-align: left;
}
.notif-ico {
  flex: none; width: 26px; height: 26px; margin-top: 2px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F0D4A0, #43B6A7);
}
.notif-body { min-width: 0; }
.notif-meta {
  display: flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--fg4);
  margin-bottom: 3px;
}
.notif-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: currentColor; }
.notif-text { font-size: 17px; line-height: 1.4; color: var(--fg); margin: 0; }

/* ---------- feature grid --------------------------------------------------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(272px, 1fr));
  gap: 16px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  padding: 26px;
  transition: border-color .25s ease, transform .25s ease;
}
.card:hover { border-color: color-mix(in srgb, var(--accent) 45%, var(--line)); transform: translateY(-2px); }

.card h3 {
  font-size: 18px; font-weight: 700; letter-spacing: -.01em;
  margin: 0 0 8px;
}
.card p { margin: 0; color: var(--fg3); font-size: 15px; line-height: 1.6; }
.card .glyph {
  width: 36px; height: 36px; margin-bottom: 16px;
  display: grid; place-items: center;
  border-radius: 11px;
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  color: var(--accent-ink);
}
.card .glyph svg { width: 19px; height: 19px; }

@media (min-width: 900px) {
  .grid-7 { grid-template-columns: repeat(6, 1fr); }
  .grid-7 > .card:nth-child(1),
  .grid-7 > .card:nth-child(2) { grid-column: span 3; }
  .grid-7 > .card:nth-child(3),
  .grid-7 > .card:nth-child(4),
  .grid-7 > .card:nth-child(5) { grid-column: span 2; }
  .grid-7 > .card:nth-child(6),
  .grid-7 > .card:nth-child(7) { grid-column: span 3; }
}

/* ---------- device / chat demo --------------------------------------------- */
.demo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) {
  .demo { grid-template-columns: 1fr; gap: 40px; justify-items: center; }
  .demo .demo-copy { order: 2; }
}

.demo-copy ul { list-style: none; padding: 0; margin: 26px 0 0; }
.demo-copy li {
  position: relative; padding-left: 22px; margin-bottom: 14px;
  color: var(--fg3); font-size: 15px;
}
.demo-copy li::before {
  content: ''; position: absolute; left: 0; top: .62em;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
}
.demo-copy li b { color: var(--fg); font-weight: 700; }

.phone {
  flex: none;
  width: 306px;
  border-radius: 40px;
  padding: 10px;
  background: var(--elev);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.screen {
  border-radius: 31px;
  overflow: hidden;
  background: #0B141A;
  color: #E9EBEE;
}
.screen-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px;
  background: #12181C;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.screen-bar .av {
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(140deg, #F0D4A0, #43B6A7);
}
.screen-bar .who { font-size: 14px; font-weight: 700; line-height: 1.2; }
.screen-bar .st { font-size: 11px; color: #76DECF; letter-spacing: .04em; }

.thread {
  padding: 16px 14px 18px;
  display: flex; flex-direction: column; gap: 7px;
  min-height: 400px;
}

.msg {
  max-width: 82%;
  padding: 8px 12px 7px;
  border-radius: 15px;
  font-size: 14.5px;
  line-height: 1.45;
  position: relative;
}
.msg.them {
  align-self: flex-start;
  background: #1E252A;
  border-bottom-left-radius: 5px;
}
.msg.me {
  align-self: flex-end;
  background: #2F4A45;
  border-bottom-right-radius: 5px;
}
.msg .t {
  display: block;
  font-size: 10px;
  color: rgba(233,235,238,.42);
  text-align: right;
  margin-top: 2px;
  letter-spacing: .03em;
}
.msg.tight { border-bottom-left-radius: 15px; }

.photo {
  align-self: flex-start;
  max-width: 82%;
  padding: 4px;
  background: #1E252A;
  border-radius: 15px;
  border-bottom-left-radius: 5px;
}
.photo .frame {
  height: 132px;
  border-radius: 12px;
  background:
    radial-gradient(90% 70% at 22% 8%, rgba(255,204,168,.5), transparent 60%),
    radial-gradient(80% 70% at 84% 26%, rgba(118,222,207,.34), transparent 62%),
    linear-gradient(178deg, #1b2a3a 0%, #24304a 44%, #3a3350 78%, #4a3a48 100%);
  position: relative;
  overflow: hidden;
}
.photo .frame::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(1.6px 1.6px at 18% 22%, rgba(255,255,255,.75), transparent),
    radial-gradient(1.4px 1.4px at 62% 14%, rgba(255,255,255,.6), transparent),
    radial-gradient(1.2px 1.2px at 78% 40%, rgba(255,255,255,.5), transparent),
    radial-gradient(1.5px 1.5px at 34% 52%, rgba(255,255,255,.45), transparent),
    radial-gradient(1.2px 1.2px at 88% 66%, rgba(255,255,255,.4), transparent);
}
.photo .cap {
  font-size: 10.5px; color: rgba(233,235,238,.45);
  padding: 5px 8px 3px; letter-spacing: .04em;
}

.typing {
  align-self: flex-start;
  display: inline-flex; gap: 4px; align-items: center;
  background: #1E252A;
  padding: 11px 14px;
  border-radius: 15px; border-bottom-left-radius: 5px;
}
.typing i {
  width: 6px; height: 6px; border-radius: 50%;
  background: #8A949A;
  animation: blink 1.3s infinite ease-in-out;
}
.typing i:nth-child(2) { animation-delay: .18s; }
.typing i:nth-child(3) { animation-delay: .36s; }
@keyframes blink {
  0%, 60%, 100% { opacity: .3; transform: translateY(0); }
  30%           { opacity: 1;  transform: translateY(-2px); }
}

.stamp {
  align-self: center;
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(233,235,238,.35);
  margin: 4px 0 6px;
}

/* ---------- steps ---------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 32px; }
.step .n {
  font-family: 'Instrument Serif', Georgia, serif; font-style: italic;
  font-size: 40px; line-height: 1; color: var(--accent-ink);
  margin-bottom: 10px;
}
.step h3 { font-size: 17px; margin: 0 0 6px; font-weight: 700; }
.step p { margin: 0; color: var(--fg3); font-size: 15px; }

/* ---------- honesty panel --------------------------------------------------- */
.panel {
  border: 1px solid var(--line-soft);
  border-left: 3px solid var(--accent);
  border-radius: 0 20px 20px 0;
  background: var(--surface);
  padding: 36px clamp(24px, 4vw, 44px);
}
.panel h2 { margin-top: 0; }
.panel .cols {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px 36px; margin-top: 26px;
}
.panel .cols h4 {
  font-size: 14px; margin: 0 0 6px; font-weight: 700; letter-spacing: .01em;
}
.panel .cols p { margin: 0; font-size: 14.5px; color: var(--fg3); line-height: 1.6; }

/* ---------- access --------------------------------------------------------- */
.access {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.access .card .price {
  font-family: 'Instrument Serif', Georgia, serif; font-style: italic;
  font-size: 34px; line-height: 1; margin: 0 0 4px;
}
.access .card .price small { font-size: 15px; font-style: normal; color: var(--fg3); font-family: inherit; }
.access .card.soon { border-style: dashed; }
.access .card.soon .glyph { background: color-mix(in srgb, var(--gold) 16%, transparent); color: var(--gold); }
.access ul { margin: 16px 0 0; padding-left: 18px; color: var(--fg3); font-size: 14.5px; }
.access li { margin: 5px 0; }

/* ---------- FAQ ------------------------------------------------------------ */
.faq { border-top: 1px solid var(--line-soft); }
.faq details {
  border-bottom: 1px solid var(--line-soft);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 40px 20px 0;
  font-size: 16.5px; font-weight: 600;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '';
  position: absolute; right: 8px; top: 50%;
  width: 9px; height: 9px;
  border-right: 2px solid var(--fg4); border-bottom: 2px solid var(--fg4);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: translateY(-20%) rotate(-135deg); }
.faq details p { margin: 0 0 20px; color: var(--fg3); max-width: 72ch; font-size: 15px; }

/* ---------- footer --------------------------------------------------------- */
.footer {
  border-top: 1px solid var(--line-soft);
  margin-top: 96px;
  padding: 48px 0 64px;
  font-size: 14px;
  color: var(--fg4);
}
.footer-top {
  display: flex; flex-wrap: wrap; gap: 28px 40px; align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 36px;
}
.footer nav { display: flex; flex-wrap: wrap; gap: 8px 24px; }
.footer nav a { color: var(--fg3); text-decoration: none; font-weight: 600; }
.footer nav a:hover { color: var(--fg); }
.footer .fine { max-width: 68ch; line-height: 1.7; }
.footer .fine + .fine { margin-top: 12px; }
.placeholder {
  color: var(--fg3);
  background: color-mix(in srgb, var(--fg) 7%, transparent);
  padding: 0 5px; border-radius: 4px; font-size: .92em;
}

/* ---------- document pages (support, delete-account) ----------------------- */
.doc { max-width: 760px; margin: 0 auto; padding: 56px 24px 40px; }
.doc h1 { font-size: clamp(30px, 5vw, 38px); letter-spacing: -.02em; margin: 0 0 6px; }
.doc .meta { color: var(--fg4); font-size: 14px; margin: 0 0 36px; }
.doc h2 { font-size: 20px; margin: 44px 0 10px; letter-spacing: -.01em; }
.doc h3 { font-size: 16px; margin: 26px 0 6px; }
.doc p, .doc li { color: var(--fg2); }
.doc ul, .doc ol { padding-left: 22px; }
.doc li { margin: 7px 0; }
.doc hr { border: 0; border-top: 1px solid var(--line-soft); margin: 40px 0; }
.doc .note {
  border-left: 3px solid var(--accent);
  background: color-mix(in srgb, var(--accent) 8%, transparent);
  padding: 14px 18px; margin: 22px 0; border-radius: 0 10px 10px 0;
}
.doc .note strong { color: var(--fg); }
.doc table { border-collapse: collapse; width: 100%; margin: 16px 0; font-size: 15px; }
.doc th, .doc td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; vertical-align: top; }
.doc th { background: color-mix(in srgb, var(--line) 40%, transparent); font-weight: 700; }
.doc-scroll { overflow-x: auto; }

/* ---------- reveal on scroll ----------------------------------------------- */
.reveal { opacity: 0; transform: translateY(16px); }
.reveal.in {
  opacity: 1; transform: none;
  transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .mark { animation: none; }
  .typing i { animation: none; opacity: .55; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .card:hover { transform: none; }
}

/* ---------- small screens --------------------------------------------------- */
@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .wrap { padding: 0 20px; }
  .phone { width: 100%; max-width: 306px; }
  .footer-top { flex-direction: column; }
}

/* ═══════════════════════════════════════════════════════════════════════════════════════
   Image-led landing components.

   The page previously carried no product imagery at all — four <img> tags, every one of them
   the logo — which meant an emotional, visual product was being sold in prose. Everything
   below exists to put screenshots on the page and build the layout around them.
   ═══════════════════════════════════════════════════════════════════════════════════════ */

/* Device frame. Aspect ratio matches a real 20:9 Android screenshot, so a dropped-in PNG needs
   no cropping and the placeholder occupies exactly the space the real thing will. */
.phone {
  position: relative;
  aspect-ratio: 9 / 19.5;
  border-radius: 34px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  isolation: isolate;
}
.phone img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Shown until a real screenshot replaces it. Deliberately looks unfinished rather than
   decorative — a placeholder that blends in is one that ships. */
.phone--empty {
  display: grid;
  place-items: center;
  background:
    repeating-linear-gradient(45deg, var(--elev) 0 12px, transparent 12px 24px),
    var(--surface);
}
.phone--empty span {
  font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--fg4); text-align: center; padding: 0 20px; line-height: 1.7;
}

/* Hero: headline and device side by side, stacking under 860px. */
/* Left-aligned button row. The existing .cta centres itself, which suited the old centred
   hero but fights the two-column layout below — it re-centres only once the columns stack. */
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin: 0 0 22px; }

.hero2 { position: relative; padding: 76px 0 84px; background: var(--glow); }
.hero2-in {
  display: grid; gap: clamp(32px, 6vw, 72px); align-items: center;
  grid-template-columns: 1.05fr .95fr;
}
.hero2-copy { max-width: 30ch; }
.hero2 .phone { max-width: 300px; margin-inline: auto; }

.eyebrow-line {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 800; letter-spacing: .28em; text-transform: uppercase;
  color: var(--accent-ink); margin: 0 0 22px;
}
.eyebrow-line::before {
  content: ""; width: 22px; height: 1px; background: var(--accent); flex: none;
}
.pulse {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex: none;
  animation: pulse 2.8s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: .35; } 50% { opacity: 1; } }

.headline {
  font-size: clamp(40px, 7vw, 68px); line-height: 1.02; letter-spacing: -.03em;
  margin: 0 0 20px; text-wrap: balance;
}
.headline em { font-style: italic; color: var(--accent-ink); }

.lede { font-size: clamp(16px, 2.2vw, 18.5px); color: var(--fg2); margin: 0 0 32px; line-height: 1.6; }

/* Alternating feature rows — the rhythm the old page lacked, where every section was a
   centered heading above centered prose. */
.showcase { display: grid; gap: clamp(30px, 6vw, 68px); align-items: center; grid-template-columns: 1fr 1fr; }
.showcase + .showcase { margin-top: clamp(64px, 9vw, 104px); }
.showcase .phone { max-width: 272px; margin-inline: auto; }
.showcase--flip .showcase-copy { order: 2; }
.showcase-copy h2 { font-size: clamp(26px, 3.6vw, 34px); line-height: 1.12; letter-spacing: -.02em; margin: 0 0 14px; text-wrap: balance; }
.showcase-copy p { color: var(--fg2); margin: 0; font-size: 16.5px; line-height: 1.62; }
.showcase-tag {
  display: inline-block; font-size: 11.5px; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent-ink); margin: 0 0 12px;
}

/* Pricing */
.plans { display: grid; gap: 18px; grid-template-columns: repeat(3, 1fr); align-items: start; }
.plan {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  padding: 26px 24px; display: flex; flex-direction: column; gap: 4px;
}
.plan--best { border-color: var(--gold); }
.plan-name { font-size: 13px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--fg3); }
.plan--best .plan-name { color: var(--gold); }
.plan-price { font-size: 32px; font-weight: 800; letter-spacing: -.02em; margin: 6px 0 2px; font-variant-numeric: tabular-nums; }
.plan-price small { font-size: 14px; font-weight: 600; color: var(--fg3); letter-spacing: 0; }
.plan-note { font-size: 13px; color: var(--fg4); margin: 0 0 16px; }
.plan ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.plan li { font-size: 14.5px; color: var(--fg2); display: grid; grid-template-columns: 16px 1fr; gap: 9px; }
.plan li::before { content: "→"; color: var(--accent-ink); font-weight: 700; }

@media (max-width: 860px) {
  .hero2-in, .showcase { grid-template-columns: 1fr; }
  .hero2-copy { max-width: none; text-align: center; }
  .cta-row { justify-content: center; }
  .eyebrow-line { justify-content: center; }
  .showcase--flip .showcase-copy { order: 0; }
  .hero2 .phone, .showcase .phone { max-width: 260px; }
  .plans { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .pulse { animation: none; opacity: .8; }
}
