/* DictationNote landing — geometric sans, flat coral on navy/cream, big
   rounded cards. Built on the FightTech landing template; every colour is a
   solid tone (the brand deliberately uses no gradients). No external assets. */

:root {
  --bg: #FFFFFF;
  --bg-soft: #F5EFDF;
  --ink: #1B2336;
  --muted: #6B7280;
  --line: #E7E2D6;
  --accent: #E55846;
  --accent-deep: #B53E30;
  --accent-warm: #F26A50;
  --accent-soft: rgba(229, 88, 70, 0.12);
  --card: #FFFFFF;
  --card-shadow: 0 10px 30px -14px rgba(27, 35, 54, 0.18);
  --btn-bg: #1B2336;
  --btn-ink: #FFFFFF;
  /* Flat fills. Kept as gradient tokens so the template rules still apply,
     but both stops are the same colour — no visible gradient anywhere. */
  --grad-hero: linear-gradient(0deg, #E55846, #E55846);
  --grad-text: linear-gradient(0deg, #E55846, #E55846);
  --grad-wash: linear-gradient(0deg, #FFF7F1, #FFF7F1);
  --sans: "Inter", "Google Sans", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace;
}


@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0F1420;
    --bg-soft: #171E2E;
    --ink: #F5EFDF;
    --muted: #A0A8B8;
    --line: #262E40;
    --accent: #F26A50;
    --accent-soft: rgba(242, 106, 80, 0.14);
    --card: #171E2E;
    --card-shadow: 0 10px 30px -14px rgba(0, 0, 0, 0.7);
    --btn-bg: #F5EFDF;
    --btn-ink: #1B2336;
    --grad-text: linear-gradient(0deg, #F26A50, #F26A50);
    --grad-wash: linear-gradient(0deg, #131A28, #131A28);
  }
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

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

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: 780px; }

h1, h2, h3 {
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.5rem, 5.8vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.8rem); margin-bottom: 0.6em; }
h3 { font-size: 1.22rem; margin-bottom: 0.45em; font-weight: 600; }

em.accent, .accent {
  font-style: normal;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* handwritten squiggle under the hero accent word, saydi-style */
.hero h1 em.accent {
  position: relative;
  display: inline-block;
}
.hero h1 em.accent::after {
  content: '';
  position: absolute;
  left: 8%;
  right: 4%;
  bottom: -0.18em;
  height: 0.28em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 14' preserveAspectRatio='none'%3E%3Cpath d='M2 10 C 20 2, 38 12, 58 7 S 100 3, 118 8' fill='none' stroke='%23E55846' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
  pointer-events: none;
}

.kicker {
  font-weight: 600;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  letter-spacing: -0.01em;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
  width: fit-content;
}

a { color: inherit; }

/* ============ Mobile install banner ============ */
/* Injected by js/app-banner.js on iOS and Android only, as body's first child.
   Sticky rather than fixed so it keeps its own row in the layout — nothing
   below it needs a padding-top correction, and it stays put while scrolling.
   Icon, FREE chip, one line of title and the store button — nothing else, so
   the button stays inside the first thumb-reach on a phone. */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.app-banner {
  position: relative;
  position: sticky;
  top: 0;
  z-index: 70;
  /* One row, so the install button sits beside the promise instead of a
     thumb-length below it. The right padding is the close button's lane. */
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 9px 38px 9px 12px;
  background: var(--grad-hero);
  color: #fff;
}
.app-banner-close {
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
}
.app-banner-close:hover,
.app-banner-close:focus-visible { background: rgba(255, 255, 255, 0.18); color: #fff; }
.app-banner-cross { font-size: 1.25rem; line-height: 1; }

.app-banner-icon {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 9px;
}
/* Takes the slack, and is the only part allowed to wrap. */
.app-banner-text {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}
.app-banner-title {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
}
.app-banner-pill {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  border-radius: 999px;
  padding: 1px 7px;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.app-banner-cta {
  flex: none;
  background: #fff;
  color: var(--accent-deep);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

/* js/app-banner.js puts this class on <html>, so the token below reaches every
   rule here and scroll-padding lands on the element that actually scrolls. */
html.has-app-banner {
  --app-banner-h: 56px;
  /* Anchor links must clear the banner and the sticky header, not land behind. */
  scroll-padding-top: calc(var(--app-banner-h) + 84px);
}
/* The header is sticky at 12px; park it below the banner instead of under it. */
.has-app-banner .site-header { top: calc(var(--app-banner-h) + 8px); }

/* ============ Announcement topbar ============ */
.topbar {
  background: var(--grad-hero);
  color: #FFFFFF;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.topbar-pill {
  background: #FFFFFF;
  color: var(--accent-deep);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  border-radius: 999px;
  padding: 3px 10px;
}
/* Desktop only. Phones get the install banner instead, which carries the same
   claim plus a store call to action — two full-width bars above the fold on a
   small screen would push the hero off it. */
@media (max-width: 759px) {
  .topbar { display: none; }
}
/* A wide phone or an Android tablet clears that breakpoint but still gets the
   install banner, which repeats this claim — one bar, never two. */
.has-app-banner .topbar { display: none; }

/* ============ Header (floating rounded card) ============ */
.site-header {
  position: sticky;
  top: 12px;
  z-index: 50;
  padding: 0 12px;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 64px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 8px 28px -12px rgba(27, 35, 54, 0.18);
  padding: 0 18px 0 20px;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.wordmark-bubble { color: var(--accent); flex: none; }
.site-nav {
  display: none;
  gap: 22px;
  margin-left: 6px;
}
.site-nav a {
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.15s ease;
}
.site-nav a:hover { color: var(--ink); }
.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 760px) {
  .site-nav { display: flex; }
}

/* Language dropdown (saydi-style pill + floating menu) */
.lang-dropdown { position: relative; }
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.01em;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--ink);
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.lang-btn:hover { border-color: var(--accent); }
.lang-btn > svg { flex: none; color: var(--muted); }
.lang-btn .chev { transition: transform 0.15s ease; }
.lang-btn[aria-expanded="true"] .chev { transform: rotate(180deg); }
.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 176px;
  padding: 6px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 16px 40px -16px rgba(27, 35, 54, 0.25), var(--card-shadow);
  z-index: 60;
  /* Seven languages: on a short phone in landscape the list would run past the
     bottom of the screen, so let it scroll inside itself instead. */
  max-height: min(70vh, 340px);
  overflow-y: auto;
}
.lang-menu[hidden] { display: none; }
.lang-menu button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 9px 12px;
  border: 0;
  border-radius: 10px;
  background: none;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  white-space: nowrap;
  transition: background 0.12s ease, color 0.12s ease;
}
.lang-menu button:hover,
.lang-menu button:focus-visible { background: var(--accent-soft); }
.lang-menu button.active { color: var(--accent); font-weight: 600; }
.lang-menu .check { visibility: hidden; flex: none; color: var(--accent); }
.lang-menu button.active .check { visibility: visible; }
@media (max-width: 599px) {
  .lang-btn { padding: 7px 10px; }
  .lang-btn .lang-btn-label { display: none; }
  /* Keep the bar inside the viewport: brand + pill + CTA must fit 320px. */
  .header-inner { gap: 10px; padding: 0 12px; }
  .wordmark { font-size: 1.06rem; }
  .header-actions { gap: 8px; }
  .header-actions .btn-small { padding: 9px 14px; font-size: 0.82rem; }
}

.btn {
  display: inline-block;
  white-space: nowrap;
  text-decoration: none;
  border-radius: 999px;
  border: 0;
  padding: 12px 26px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-solid {
  background: var(--btn-bg);
  color: var(--btn-ink);
  box-shadow: 0 8px 20px -10px rgba(27, 35, 54, 0.5);
}
.btn-solid:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px -10px rgba(27, 35, 54, 0.45);
}
.btn-small { padding: 9px 18px; font-size: 0.88rem; }
.btn-band {
  background: #FFFFFF;
  color: var(--accent-deep);
  box-shadow: 0 10px 24px -12px rgba(27, 35, 54, 0.55);
}
.btn-band:hover { transform: translateY(-1px); }

/* ============ Hero (centered, peach wash) ============ */
.hero {
  padding: 72px 0 88px;
  overflow: hidden;
  position: relative;
  background: var(--grad-wash);
  margin-top: -76px;      /* wash flows behind the floating header */
  padding-top: 148px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  justify-items: center;
}
.hero-copy {
  text-align: center;
  max-width: 780px;
}
.hero-copy .kicker { margin: 0 auto 0.9rem; }
.hero-copy .lede {
  font-size: 1.14rem;
  color: var(--muted);
  max-width: 36em;
  margin: 1.4rem auto 2.2rem;
}
.hero-copy .lede strong { color: var(--accent); font-weight: 600; }

@media (min-width: 940px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    align-items: center;
    justify-items: stretch;
    gap: 40px;
  }
  .hero-copy { text-align: left; max-width: none; }
  .hero-copy .kicker { margin-left: 0; }
  .hero-copy .lede { margin-left: 0; margin-right: 0; }
  .hero-copy .store-badges { justify-content: flex-start; }
  .phone-shot { width: min(330px, 100%); }
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--btn-bg);
  color: var(--btn-ink);
  border-radius: 999px;
  padding: 10px 22px 10px 16px;
  text-decoration: none;
  box-shadow: 0 10px 24px -12px rgba(27, 35, 54, 0.5);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -12px rgba(27, 35, 54, 0.45);
}
.badge-text { display: flex; flex-direction: column; line-height: 1.25; text-align: left; }
.badge-text small {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.75;
}
.badge-text strong { font-size: 1.02rem; font-weight: 600; }
.badge-note {
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  color: var(--muted);
  margin-top: 1.2rem;
}

/* ============ Download page ============ */
.hero-download { padding-bottom: 64px; }
.badge-lg { padding: 14px 30px 14px 20px; gap: 14px; }
.badge-lg .badge-text strong { font-size: 1.18rem; }
.badge-lg .badge-text small { font-size: 0.66rem; }
.dl-stores { margin-top: 3rem; }
.dl-stores-t {
  font-weight: 600;
  font-size: 1.02rem;
  margin-bottom: 1.1rem;
}

/* ============ Hero screenshot (real iPhone capture) ============ */
.hero-shot { display: flex; justify-content: center; position: relative; }
.phone-shot {
  width: min(300px, 74vw);
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 46px;
  background: var(--card);
  box-shadow: 0 32px 70px -28px rgba(229, 88, 70, 0.28), var(--card-shadow);
  position: relative;
  z-index: 1;
}
.phone-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 38px;
  background: var(--bg-soft);
}

/* ============ Sections ============ */
.section { padding: 92px 0; }
.section-bordered { border-top: 0; }
#how { border-top: 0; }
.section-lede {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 40em;
  margin-bottom: 2.4rem;
}

/* How it works — white rounded cards */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 2.4rem;
}
@media (min-width: 760px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}
.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px 26px 34px;
  box-shadow: var(--card-shadow);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  color: var(--accent);
  background: var(--accent-soft);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
}
.step p { color: var(--muted); font-size: 0.95rem; }

/* Features — cards with squircle icon tiles */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 2.4rem;
}
@media (min-width: 640px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
}
.feature {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px 26px 32px;
  box-shadow: var(--card-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(229, 88, 70, 0.22);
}
.feat-icon {
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 16px;
  padding: 14px;
  width: 52px;
  height: 52px;
  margin-bottom: 1.1rem;
  box-sizing: border-box;
}
.feature p { color: var(--muted); font-size: 0.95rem; }

/* ============ Privacy band — flat coral CTA ============ */
.band {
  background: var(--grad-hero);
  color: #FFFFFF;
  padding: 96px 0;
  text-align: center;
  border-radius: 40px;
  max-width: 1180px;
  margin: 0 auto;
}
@media (max-width: 1220px) {
  .band { border-radius: 0; }
}
.band .kicker-band {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: rgba(255, 255, 255, 0.9);
  margin-left: auto;
  margin-right: auto;
}
.band h2 { color: #FFFFFF; }
.band-lede {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.12rem;
  max-width: 38em;
  margin: 0 auto 3rem;
}
.band-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 820px;
  margin: 0 auto;
  border-top: 0;
  padding-top: 0;
}
.stat {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 22px 18px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 24px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.stat + .stat { border-left: 1px solid rgba(255, 255, 255, 0.25); }
.stat strong {
  font-size: 2.6rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.1;
}
.stat span {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.88);
}
@media (max-width: 620px) {
  .stat { flex-basis: 100%; }
}

/* ============ Languages ============ */
.chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 860px;
}
.chips li {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 4px 12px -8px rgba(27, 35, 54, 0.12);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.chips li:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #FFFFFF;
  transform: translateY(-1px);
}
.chips .chip-more {
  border-style: dashed;
  color: var(--accent);
  background: var(--accent-soft);
  border-color: var(--accent);
  font-style: normal;
}

/* ============ FAQ ============ */
.faq-list {
  border-top: 0;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--card);
  box-shadow: var(--card-shadow);
  padding: 0 22px;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 36px 18px 0;
  font-size: 1.05rem;
  font-weight: 600;
  position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--accent);
  transition: transform 0.2s ease;
}
.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq-list details p {
  padding: 0 0 20px;
  color: var(--muted);
  max-width: 46em;
}

/* ============ Footer ============ */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 40px;
  margin-top: 40px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-start;
}
.footer-wordmark { font-size: 1.2rem; font-weight: 700; }
.footer-brand p {
  color: var(--muted);
  font-size: 0.93rem;
  margin-top: 0.6rem;
  max-width: 26em;
}
.footer-pkg {
  font-family: var(--mono);
  font-size: 0.68rem !important;
  letter-spacing: 0.08em;
  opacity: 0.75;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
}
.footer-links a {
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--muted);
}
.footer-links a:hover { color: var(--accent); }
.footer-copy {
  margin-top: 40px;
  padding-top: 20px;
}
.footer-copy p {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--muted);
}

/* ============ Scroll reveal ============ */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============ Product tour page ============ */
.hero-post { padding-bottom: 56px; }
.hero-post .hero-copy { margin: 0 auto; }
.hero-post .store-badges { margin-top: 2rem; }

.post { padding-top: 64px; }
.post-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  padding: 44px 0;
  border-top: 1px solid var(--line);
}
.post-row:first-child { border-top: 0; padding-top: 0; }
@media (min-width: 860px) {
  .post-row { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 56px; padding: 64px 0; }
  .post-row-flip .post-copy { order: 2; }
}
.post-num {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 1rem;
}
.post-copy h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin-bottom: 0.7rem; }
.post-copy p { color: var(--muted); margin-bottom: 1rem; max-width: 34em; }
.post-media {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: 20px;
  justify-items: center;
}
.post-shot { margin: 0; max-width: 260px; }
.post-media-1 .post-shot { max-width: 290px; }
.post-media-2 .post-shot { max-width: 240px; }
.post-shot .phone-shot { width: 100%; }
.post-shot figcaption {
  color: var(--muted);
  font-size: 0.86rem;
  text-align: center;
  margin-top: 12px;
}

/* ============ DictationNote additions ============ */

/* --- Pricing --- */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 2.2rem;
}
.plan {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px 24px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plan.featured { border-color: var(--accent); }
.plan-tag {
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 999px;
  padding: 4px 10px;
}
.plan h3 { margin-bottom: 0; }
.plan .plan-price {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.plan p { color: var(--muted); }
.plan ul { list-style: none; display: grid; gap: 8px; margin-top: 4px; }
.plan li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.95rem;
  padding: 9px 12px;
  border-radius: 12px;
  background: var(--bg-soft);
}
.plan li strong { font-weight: 600; }
.plan-note { color: var(--muted); font-size: 0.88rem; margin-top: 1.2rem; }

/* --- Screenshots --- */
.shot-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2rem 0 1.6rem;
}
.shot-tab {
  font: inherit;
  font-size: 0.92rem;
  cursor: pointer;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--muted);
  border-radius: 999px;
  padding: 8px 16px;
}
.shot-tab.active {
  color: var(--btn-ink);
  background: var(--btn-bg);
  border-color: var(--btn-bg);
}
.shot-panel { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.shot-panel[hidden] { display: none; }
.shot figure { margin: 0; }
.shot img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
}
.shot figcaption { color: var(--muted); font-size: 0.88rem; margin-top: 10px; }

/* --- Download page: one QR for both stores --- */
.dl-grid {
  display: grid;
  gap: 24px;
  align-items: center;
  margin: 2rem 0 2.6rem;
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--card-shadow);
}
@media (min-width: 620px) {
  .dl-grid { grid-template-columns: auto minmax(0, 1fr); gap: 30px; }
}
.dl-qr { display: flex; flex-direction: column; align-items: center; gap: 10px; }
/* The white plate is not decoration: a scanner needs the light quiet zone to
   stay light, and in dark mode the card behind it is not. */
.dl-qr img {
  width: 168px;
  height: 168px;
  padding: 10px;
  border-radius: 14px;
  background: #FFFFFF;
  border: 1px solid var(--line);
}
.dl-qr span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.dl-cta .dl-lead { margin-bottom: 1.1rem; }
.dl-cta .store-badges { justify-content: flex-start; gap: 12px; }
/* .doc a paints every link with the accent; the badge brings its own pair and
   the Apple glyph rides on currentColor, so both would turn coral without this. */
.doc .badge { color: var(--btn-ink); }
.dl-hint { font-size: 0.85rem; color: var(--muted); margin: 1.1rem 0 0; }

/* --- Legal pages --- */
.doc { padding: 72px 0 96px; }
.doc h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 0.4em; }
.doc h2 { font-size: 1.25rem; margin: 2.2rem 0 0.6rem; }
.doc h3 { font-size: 1.02rem; margin: 1.6rem 0 0.4rem; }
.doc p, .doc li { color: var(--ink); }
.doc p { margin-bottom: 1rem; }
.doc ul, .doc ol { margin: 0 0 1.2rem 1.2rem; display: grid; gap: 8px; }
.doc .note { color: var(--muted); font-size: 0.9rem; }
.doc a { color: var(--accent); }
.doc table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  font-size: 0.95rem;
}
.doc th, .doc td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.band-cta { margin-top: 26px; }
