:root {
  --bg: #faf9f5;
  --bg-elevated: #ffffff;
  --bg-muted: #f3f1ea;
  --text: #1f1e1c;
  --text-muted: #6b6963;
  --text-subtle: #908d85;
  --border: #e8e5dc;
  --border-strong: #d3cfc3;
  --accent: #484ad7;
  --accent-hover: #3536a8;
  --accent-soft: #ecedfb;
  --success: #5b8c5a;
  --warning: #b8860b;
  --danger: #b53a2b;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(31, 30, 28, 0.04);
  --shadow: 0 4px 14px rgba(31, 30, 28, 0.06);
  --shadow-lg: 0 16px 40px rgba(31, 30, 28, 0.08);
  --font-display: "Newsreader", "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --max-w: 1180px;
  --max-w-narrow: 760px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
  text-underline-offset: 3px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1.08; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.4rem); line-height: 1.15; }
h3 { font-size: 1.35rem; line-height: 1.3; }
h4 { font-size: 1.05rem; line-height: 1.4; font-family: var(--font-body); font-weight: 600; }

p { margin: 0 0 1em; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 249, 245, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.brand:hover {
  text-decoration: none;
  color: var(--text);
}
/* Brand wordmark logo (user-provided official SVG) */
img.brand-mark,
.brand-mark {
  width: 96px;
  height: auto;
  display: block;
  flex: 0 0 auto;
  border-radius: 0;
  object-fit: contain;
}
.brand-mark img {
  width: 100%;
  height: auto;
  display: block;
}
/* The wordmark already includes "AdProfex" — hide redundant text span */
.brand > span:not(.brand-mark) {
  display: none;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  color: var(--text-muted);
  font-size: 0.94rem;
  font-weight: 500;
}
.nav-links a:hover {
  color: var(--text);
  text-decoration: none;
}
.nav-cta {
  background: var(--text);
  color: var(--bg) !important;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
}
.nav-cta:hover {
  background: var(--accent);
  color: #fff !important;
}
@media (max-width: 700px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.97rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
  font-family: inherit;
}
.btn:hover { text-decoration: none; }
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-hover); color: #fff; }
.btn-dark {
  background: var(--text);
  color: var(--bg);
}
.btn-dark:hover { background: #000; color: var(--bg); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-outline:hover { background: var(--bg-muted); color: var(--text); }
.btn-lg { padding: 14px 28px; font-size: 1.02rem; }
.btn-sm { padding: 7px 14px; font-size: 0.88rem; }

/* ============ HERO ============ */
.hero {
  padding: 90px 0 80px;
  text-align: center;
}
.hero h1 { max-width: 18ch; margin-left: auto; margin-right: auto; }
.hero .lede {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 55ch;
  margin: 16px auto 32px;
  line-height: 1.55;
}
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

/* ============ SECTIONS ============ */
section { padding: 80px 0; }
.section-tight { padding: 56px 0; }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head .lede {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 56ch;
  margin: 12px auto 0;
}

/* ============ APPS GRID ============ */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.app-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.2s ease;
  color: var(--text);
}
.app-card .app-card-meta,
.app-card > .app-card-cta {
  margin-top: auto;
}
.app-card:hover {
  text-decoration: none;
  color: var(--text);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--border-strong);
}
.app-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: block;
  margin-bottom: 18px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(31, 30, 28, 0.08);
  background: var(--bg-muted);
}
/* Decorative icon (no image) — used on contact page for generic channel cards */
.app-icon.glyph {
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  box-shadow: none;
}
.app-card h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.app-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  margin: 0 0 16px;
}
.app-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-subtle);
}
.app-card-cta {
  color: var(--accent);
  font-weight: 500;
}
.badge {
  display: inline-block;
  background: var(--bg-muted);
  color: var(--text-muted);
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* ============ FEATURE LIST ============ */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.feature {
  padding: 28px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  font-size: 1.2rem;
}
.feature h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.feature p { color: var(--text-muted); margin: 0; font-size: 0.95rem; }

/* ============ PRICING ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
}
.plan {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.plan.popular {
  border-color: var(--accent);
  border-width: 2px;
}
.plan-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.plan-name { font-size: 1rem; font-weight: 600; color: var(--text-muted); margin-bottom: 14px; }
.plan-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px; }
.plan-price .amount { font-family: var(--font-display); font-size: 2.6rem; font-weight: 500; letter-spacing: -0.02em; }
.plan-price .period { color: var(--text-muted); }
.plan-sub { font-size: 0.88rem; color: var(--text-subtle); margin-bottom: 24px; }
.plan ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}
.plan ul li {
  padding: 7px 0;
  font-size: 0.93rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.plan ul li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============ FAQ ============ */
.faq {
  max-width: 760px;
  margin: 0 auto;
}
.faq details {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 500;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--text-muted);
  font-weight: 300;
  transition: transform 0.2s;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 12px 0 0; color: var(--text-muted); }

/* ============ SOCIAL PROOF ============ */
.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: center;
  color: var(--text-subtle);
  font-size: 0.92rem;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 30px 0;
}

.stat {
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
}
.stat-label { font-size: 0.88rem; color: var(--text-muted); margin-top: 6px; }
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 32px;
  max-width: 760px;
  margin: 40px auto 0;
}

/* ============ DISCLAIMER BLOCKS ============ */
.disclaimer {
  background: #fff8f0;
  border: 1px solid #f0d9b8;
  border-left: 4px solid var(--warning);
  border-radius: var(--radius);
  padding: 18px 22px;
  color: #6b5618;
  font-size: 0.92rem;
  line-height: 1.55;
}
.disclaimer strong { color: #5a4814; }

/* ============ FOOTER ============ */
.footer {
  background: #f3f1ea;
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
  margin-top: 80px;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 14px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 8px; }
.footer ul li a { color: var(--text-muted); }
.footer ul li a:hover { color: var(--accent); }
.footer-legal {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 0.86rem;
}
.footer-legal p { margin: 0 0 10px; }
.footer-legal .wellness-note {
  margin-top: 14px;
  padding: 12px 16px;
  background: #fff8f0;
  border: 1px solid #f0d9b8;
  border-radius: var(--radius-sm);
  color: #6b5618;
  font-size: 0.84rem;
}
.payments {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 14px;
}
.payments span {
  display: inline-grid;
  place-items: center;
  height: 26px;
  padding: 0 9px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 5px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ============ DOC PAGES ============ */
.doc-page {
  padding: 60px 0 80px;
}
.doc-page .container-narrow > * + * { margin-top: 1em; }
.doc-page h1 {
  font-size: 2.4rem;
  margin-bottom: 8px;
}
.doc-page .doc-meta {
  color: var(--text-subtle);
  font-size: 0.9rem;
  margin-bottom: 40px;
}
.doc-page h2 {
  margin-top: 2em;
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0;
}
.doc-page h3 {
  margin-top: 1.6em;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
}
.doc-page p, .doc-page li {
  color: var(--text);
  line-height: 1.75;
  font-size: 0.97rem;
}
.doc-page ul, .doc-page ol { padding-left: 22px; }
.doc-page li { margin-bottom: 6px; }
.doc-page strong { color: var(--text); }
.doc-page .placeholder {
  background: #fff3d4;
  padding: 0 4px;
  border-radius: 3px;
  color: #6b5618;
  font-weight: 500;
}
.doc-page .toc {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 28px 0;
  font-size: 0.92rem;
}
.doc-page .toc h4 {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 12px;
}
.doc-page .toc ol { padding-left: 18px; margin: 0; }
.doc-page .toc li { margin-bottom: 4px; }
.doc-page blockquote {
  border-left: 3px solid var(--accent);
  background: var(--accent-soft);
  margin: 1.4em 0;
  padding: 14px 20px;
  font-style: italic;
  color: #6b3a22;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ============ CHECKOUT ============ */
.checkout-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 880px) {
  .checkout-grid { grid-template-columns: 1fr; }
}
.checkout-form {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.checkbox {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  background: var(--bg-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
}
.checkbox input { margin-top: 3px; accent-color: var(--accent); }
.checkbox label { font-size: 0.88rem; color: var(--text); line-height: 1.5; cursor: pointer; }
.checkbox label a { color: var(--accent); }

.summary {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 90px;
}
.summary h3 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 18px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--text);
}
.summary-row.total {
  border-top: 1px solid var(--border);
  margin-top: 8px;
  padding-top: 16px;
  font-weight: 600;
  font-size: 1.05rem;
}

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 22px 26px;
  z-index: 100;
  font-size: 0.92rem;
  line-height: 1.55;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cookie-banner p { color: var(--text-muted); margin: 0 0 16px; }
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-actions button {
  flex: 1;
  min-width: 110px;
}

.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(31, 30, 28, 0.5);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cookie-modal-backdrop.show { display: flex; }
.cookie-modal {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  max-width: 540px;
  width: 100%;
  padding: 32px;
  max-height: 80vh;
  overflow-y: auto;
}
.cookie-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cookie-toggle:last-of-type { border-bottom: none; }
.cookie-toggle h5 { margin: 0 0 4px; font-size: 0.98rem; }
.cookie-toggle p { margin: 0; font-size: 0.85rem; color: var(--text-muted); }
.cookie-toggle .switch {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
  margin-left: 16px;
}
.cookie-toggle .switch input { opacity: 0; width: 0; height: 0; }
.cookie-toggle .switch span {
  position: absolute;
  inset: 0;
  background: var(--border-strong);
  border-radius: 999px;
  cursor: pointer;
  transition: 0.2s;
}
.cookie-toggle .switch span::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 0.2s;
}
.cookie-toggle .switch input:checked + span { background: var(--accent); }
.cookie-toggle .switch input:checked + span::before { transform: translateX(18px); }
.cookie-toggle .switch input:disabled + span { background: var(--text-subtle); cursor: not-allowed; }

/* ============ CTA Card ============ */
.cta-card {
  background: linear-gradient(135deg, #1f1e1c, #2d2b27);
  color: #faf9f5;
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  margin-top: 40px;
}
.cta-card h2 { color: #faf9f5; }
.cta-card p { color: rgba(250, 249, 245, 0.75); max-width: 50ch; margin-left: auto; margin-right: auto; }
.cta-card .btn-primary { background: var(--accent); }

/* ============ APPSTORE BUTTON ============ */
.appstore-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #000;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity 0.15s;
}
.appstore-btn:hover { opacity: 0.85; color: #fff !important; text-decoration: none; }
.appstore-btn svg { width: 28px; height: 28px; }
.appstore-btn .sm { font-size: 0.7rem; opacity: 0.9; line-height: 1; }
.appstore-btn .lg { font-size: 1.15rem; line-height: 1.1; font-weight: 600; letter-spacing: -0.01em; }

/* ============ PRODUCT MOCKUP ============ */
.phone-mockup {
  width: 280px;
  height: 580px;
  border-radius: 40px;
  background: linear-gradient(180deg, #1f1e1c, #2d2b27);
  padding: 12px;
  margin: 0 auto;
  box-shadow: 0 30px 60px rgba(31, 30, 28, 0.18);
  position: relative;
}
.phone-mockup .screen {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: linear-gradient(180deg, #ecedfb, #faf9f5 40%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 28px 22px;
}
.phone-mockup .notch {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 22px;
  background: #1f1e1c;
  border-radius: 999px;
  z-index: 2;
}
.mock-heading {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text);
  margin: 36px 0 6px;
}
.mock-sub { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 18px; }
.mock-pulse-ring {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: conic-gradient(var(--accent) 0deg 240deg, #dadbf0 240deg 360deg);
  display: grid;
  place-items: center;
  margin: 10px auto;
  position: relative;
}
.mock-pulse-ring::before {
  content: "";
  position: absolute;
  inset: 14px;
  background: #fff;
  border-radius: 50%;
}
.mock-pulse-ring .v {
  position: relative;
  z-index: 2;
  text-align: center;
}
.mock-pulse-ring .v .num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1;
}
.mock-pulse-ring .v .unit { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; }
.mock-row {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.mock-pill {
  flex: 1;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  padding: 10px 12px;
  text-align: center;
}
.mock-pill .l { font-size: 0.62rem; color: var(--text-subtle); letter-spacing: 0.08em; text-transform: uppercase; }
.mock-pill .n { font-family: var(--font-display); font-size: 1.1rem; color: var(--text); margin-top: 2px; }

/* ============ APP SCREENSHOTS (from App Store) ============ */
.app-shot {
  display: block;
  width: 100%;
  max-width: 280px;
  height: auto;
  margin: 0 auto;
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(31, 30, 28, 0.18);
}
.app-shot-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
  max-width: 920px;
  margin: 0 auto;
}
.app-shot-gallery .app-shot {
  max-width: 100%;
}
@media (max-width: 760px) {
  .app-shot-gallery { grid-template-columns: 1fr; gap: 24px; }
  .app-shot-gallery .app-shot { max-width: 280px; }
}

/* ============ HEARTLOG HERO ============ */
.product-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0 60px;
}
@media (max-width: 880px) {
  .product-hero { grid-template-columns: 1fr; text-align: center; }
  .product-hero h1 { margin-left: auto; margin-right: auto; }
}
.product-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.3rem); max-width: 14ch; }
.product-hero .lede { font-size: 1.1rem; color: var(--text-muted); margin: 18px 0 28px; max-width: 50ch; }
@media (max-width: 880px) { .product-hero .lede { margin-left: auto; margin-right: auto; } }

/* ============ MISC ============ */
.divider {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 60px 0;
}
.text-center { text-align: center; }
.muted { color: var(--text-muted); }
.small { font-size: 0.88rem; }
.no-bullets { list-style: none; padding-left: 0; }
