/* ═══════════════════════════════════════════════════════════
   howtorecordaudio.com
   Palette: warm paper + ink, one accent (record red).
   Type:    Newsreader (display) / IBM Plex Sans (UI) / Plex Mono (data)
   ═══════════════════════════════════════════════════════════ */

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

:root {
  --ink:        #1A1917;
  --ink-2:      #3D3B36;
  --muted:      #77746C;
  --muted-2:    #9B978D;
  --line:       #E3DFD6;
  --line-2:     #EFECE4;
  --paper:      #FAF8F4;
  --paper-2:    #F4F1EA;
  --white:      #FFFFFF;

  --accent:     #C4462A;
  --accent-dk:  #A2371F;
  --accent-lt:  #FBF0EC;
  --good:       #3F6B4E;

  --shadow:     0 1px 2px rgba(26,25,23,.04), 0 6px 18px rgba(26,25,23,.05);
  --shadow-lg:  0 2px 4px rgba(26,25,23,.05), 0 14px 40px rgba(26,25,23,.09);

  --r:          10px;
  --r-sm:       6px;
  --r-xs:       4px;

  --sans: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --serif: 'Newsreader', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --mono: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink-2);
  background: var(--white);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.011em;
}
h1 { font-size: clamp(2.25rem, 5.2vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.3rem); }
h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: .35rem; }
p  { color: var(--ink-2); }

a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; text-decoration-color: var(--line); transition: text-decoration-color .15s, color .15s; }
a:hover { text-decoration-color: var(--accent); color: var(--accent); }

ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; }
img, svg { max-width: 100%; }
img { display: block; }

::selection { background: #F5DED7; color: var(--ink); }

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hidden { display: none !important; }

.ico { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; display: block; }

/* ─── Header ────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.18rem;
  letter-spacing: -.015em;
  color: var(--ink);
  text-decoration: none;
  flex-shrink: 0;
}
.logo:hover { color: var(--ink); text-decoration: none; }
.logo-mark {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  flex-shrink: 0;
}
.logo .lo-thin { color: var(--muted-2); font-weight: 400; }

.site-nav { display: flex; align-items: center; gap: 1.6rem; }
.site-nav a {
  font-size: .875rem;
  font-weight: 450;
  color: var(--ink-2);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  padding: .2rem 0;
}
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}
.site-nav a:hover { color: var(--ink); }
.site-nav a:hover::after { transform: scaleX(1); }

.site-nav a.nav-cta {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--r-sm);
  padding: .42rem .95rem;
  font-weight: 500;
}
.site-nav a.nav-cta::after { display: none; }
.site-nav a.nav-cta:hover { background: var(--accent); }

/* ─── Hero ──────────────────────────────────────────────────── */
.hero-section {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 68px 0 72px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .92fr);
  align-items: start;
  gap: 56px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--mono);
  font-size: .69rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.4rem;
}
.hero-badge::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--accent);
}

.hero-text { padding-top: .5rem; }
.hero-text h1 { margin-bottom: 1.1rem; }
.hero-text h1 em { font-style: italic; color: var(--accent); }

.hero-desc {
  font-size: 1.075rem;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 1.75rem;
  max-width: 44ch;
}

.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-bottom: 1.9rem;
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
  max-width: 44ch;
}
.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .92rem;
  color: var(--ink-2);
}
.hero-bullets .ico { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; margin-top: .3rem; stroke-width: 2; }

.hero-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem .8rem;
  font-size: .875rem;
}
.hero-links a { color: var(--ink); text-decoration-color: var(--muted-2); }
.hero-links .sep { color: var(--line); }

/* ─── Recorder card ─────────────────────────────────────────── */
.recorder-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.recorder-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding: 1.75rem;
  min-height: 340px;
  display: flex;
  align-items: stretch;
}

.rec-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 1rem;
}

/* ── Ready ── */
.mic-row {
  display: flex;
  align-items: center;
  gap: .55rem;
  width: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: .5rem .7rem;
}
.mic-sm { color: var(--muted-2); flex-shrink: 0; }
.mic-select {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: .85rem;
  color: var(--ink);
  outline: none;
  cursor: pointer;
}
.mic-refresh {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: none;
  color: var(--muted-2);
  padding: 0;
  border-radius: 50%;
  transition: color .18s;
}
.mic-refresh:hover { color: var(--ink); }
.mic-refresh.spinning svg { animation: spin .6s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.record-btn {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.1rem 0 .3rem;
  position: relative;
  transition: background .18s;
}
.record-btn::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid var(--line);
  transition: border-color .2s, inset .2s;
}
.record-btn:hover { background: var(--accent-dk); }
.record-btn:hover::after { border-color: #E2C4BB; }
.record-btn:active { transform: scale(.98); }

.rec-hint { font-family: var(--serif); font-size: 1.2rem; color: var(--ink); }
.rec-sub   { font-size: .82rem; color: var(--muted); text-align: center; margin-top: -.4rem; }
.rec-terms {
  font-size: .72rem;
  color: var(--muted-2);
  text-align: center;
  line-height: 1.55;
  margin-top: auto;
  padding-top: .9rem;
  border-top: 1px solid var(--line-2);
  width: 100%;
}
.rec-terms a { color: var(--muted); }

/* ── Recording ── */
.rec-toprow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.rec-badge {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
}
.rec-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: .25; } }

.timer {
  font-family: var(--mono);
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}

.wave-canvas {
  width: 100%;
  border-radius: var(--r-sm);
  background: var(--paper);
  border: 1px solid var(--line-2);
}

.rec-controls {
  display: flex;
  gap: .6rem;
  width: 100%;
  margin-top: auto;
}
.ctrl-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .7rem 1rem;
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: .9rem;
  font-weight: 500;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  transition: background .18s, border-color .18s;
}
.ctrl-btn:hover { background: var(--paper-2); border-color: var(--muted-2); }
.ctrl-btn.stop {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.ctrl-btn.stop:hover { background: #000; }

/* ── Playback ── */
.pb-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.pb-done {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--good);
}
.pb-dur {
  font-family: var(--mono);
  font-size: .8rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.wave-section {
  display: flex;
  align-items: center;
  gap: .75rem;
  width: 100%;
}
.wave-player-wrap {
  flex: 1;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
}
.static-wave {
  width: 100%;
  border-radius: var(--r-sm);
  background: var(--paper);
  border: 1px solid var(--line-2);
  display: block;
  touch-action: none;
}
.wave-prog {
  position: absolute;
  top: 4px; bottom: 4px;
  left: 0%;
  width: 1px;
  background: var(--accent);
  pointer-events: none;
  display: none;
}

.trim-info {
  font-family: var(--mono);
  font-size: .72rem;
  color: var(--muted);
  text-align: center;
  min-height: 1.2em;
}
.trim-info strong { color: var(--ink); font-weight: 500; }

.silence-row {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  padding: .7rem .85rem;
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  width: 100%;
}
.silence-controls {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.cut-silence-btn {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .38rem .7rem;
  border-radius: var(--r-xs);
  font-family: inherit;
  font-size: .82rem;
  font-weight: 500;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  transition: border-color .18s, color .18s;
  white-space: nowrap;
}
.cut-silence-btn:hover:not(:disabled) { border-color: var(--ink); }
.cut-silence-btn:disabled { opacity: .5; cursor: not-allowed; }

.silence-select {
  font-family: inherit;
  font-size: .8rem;
  color: var(--ink-2);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xs);
  padding: .38rem .5rem;
  cursor: pointer;
  outline: none;
}

.silence-feedback {
  display: flex;
  align-items: center;
  gap: .6rem;
  min-height: 1.1em;
}
.cut-info { font-size: .78rem; color: var(--good); }
.cut-info.warn { color: var(--muted); }

.undo-cut-btn {
  font-family: inherit;
  font-size: .75rem;
  color: var(--muted);
  background: none;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.undo-cut-btn:hover { color: var(--ink); }

.play-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .18s;
}
.play-btn:hover { background: var(--accent); }

.time-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-family: var(--mono);
  font-size: .72rem;
  color: var(--muted-2);
  font-variant-numeric: tabular-nums;
  padding-left: 56px;
}

/* ── Download ── */
.dl-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  border-top: 1px solid var(--line-2);
  padding-top: 1rem;
  margin-top: auto;
}
.fmt-row {
  display: flex;
  align-items: center;
  gap: .8rem;
}
.fmt-lbl {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.fmt-btns { display: flex; }
.fmt-btn {
  padding: .32rem .8rem;
  font-family: var(--mono);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .03em;
  background: var(--white);
  color: var(--muted);
  border: 1px solid var(--line);
  margin-left: -1px;
  transition: all .15s;
}
.fmt-btn:first-child { border-radius: var(--r-xs) 0 0 var(--r-xs); margin-left: 0; }
.fmt-btn:last-child  { border-radius: 0 var(--r-xs) var(--r-xs) 0; }
.fmt-btn:hover { color: var(--ink); }
.fmt-btn.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
  position: relative;
  z-index: 1;
}

.dl-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  width: 100%;
  padding: .85rem;
  border-radius: var(--r-sm);
  background: var(--ink);
  color: #fff;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 500;
  transition: background .18s;
}
.dl-btn:hover { background: var(--accent); }
.dl-btn:disabled { opacity: .55; cursor: not-allowed; background: var(--ink); }

.again-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  width: 100%;
  padding: .55rem;
  border-radius: var(--r-sm);
  background: transparent;
  color: var(--muted);
  font-family: inherit;
  font-size: .85rem;
  border: 1px solid var(--line);
  transition: all .18s;
}
.again-btn:hover { border-color: var(--ink); color: var(--ink); }

/* ── Under-card note ── */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .3rem .9rem;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.trust-row span { white-space: nowrap; }

/* ─── Section scaffolding ───────────────────────────────────── */
section { border-top: 1px solid var(--line); }
.hero-section { border-top: none; }

.section-head {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 0 1.5rem;
  margin-bottom: 3rem;
  align-items: start;
}
.section-index {
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: .06em;
  padding-top: .55rem;
}
.section-head h2 { margin-bottom: .6rem; max-width: 20ch; }
.section-head .section-sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 58ch;
}

.section-foot {
  margin-top: 2.25rem;
  padding-left: 76px;
  font-size: .92rem;
  color: var(--muted);
}

/* ─── Steps ─────────────────────────────────────────────────── */
.steps-section { padding: 84px 0; background: var(--white); }

.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
}
.step-card {
  padding: 1.6rem 1.5rem 0 0;
  border-right: 1px solid var(--line);
}
.step-card:last-child { border-right: none; padding-right: 0; }
.steps-row .step-card + .step-card { padding-left: 1.5rem; }
.step-num {
  font-family: var(--mono);
  font-size: .72rem;
  color: var(--accent);
  letter-spacing: .06em;
  display: block;
  margin-bottom: .8rem;
}
.step-card h3 { font-family: var(--serif); font-size: 1.22rem; font-weight: 500; margin-bottom: .5rem; }
.step-card p  { font-size: .9rem; color: var(--muted); line-height: 1.65; }
.step-card strong { color: var(--ink-2); font-weight: 500; }

/* ─── Features ──────────────────────────────────────────────── */
.features-section { padding: 84px 0; background: var(--paper); }

.feat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.feat-card {
  background: var(--white);
  padding: 1.6rem 1.4rem;
  transition: background .18s;
}
.feat-card:hover { background: #FFFDFB; }
.feat-icon { color: var(--ink); margin-bottom: 1rem; }
.feat-icon .ico { width: 21px; height: 21px; }
.feat-card h3 { font-family: var(--sans); font-size: .875rem; font-weight: 600; color: var(--ink); letter-spacing: 0; }
.feat-card p  { font-size: .845rem; color: var(--muted); line-height: 1.6; margin-top: .35rem; }
.feat-card strong { color: var(--ink-2); font-weight: 500; }

/* ─── Software types ────────────────────────────────────────── */
.types-section { padding: 84px 0; background: var(--white); }

.types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem 2rem;
}
.type-card { border-top: 1px solid var(--ink); padding-top: 1.1rem; }
.type-tag {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .1em;
  color: var(--muted-2);
  display: block;
  margin-bottom: .55rem;
}
.type-card h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 500; margin-bottom: .5rem; }
.type-card p { font-size: .89rem; color: var(--muted); line-height: 1.65; margin-bottom: .85rem; }
.type-card ul { display: flex; flex-wrap: wrap; gap: .3rem .5rem; }
.type-card ul li {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
}
.type-card ul li + li::before { content: '·'; margin-right: .5rem; color: var(--line); }

/* ─── Reviews ───────────────────────────────────────────────── */
.reviews-section { padding: 84px 0; background: var(--paper); }

.rev-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.rev-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.5rem;
  transition: border-color .18s, box-shadow .18s;
}
.rev-card:hover { border-color: var(--muted-2); box-shadow: var(--shadow); }
.rev-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .45rem;
}
.rev-name { font-family: var(--serif); font-size: 1.35rem; font-weight: 500; margin: 0; }
.rev-name a { color: var(--ink); text-decoration: none; }
.rev-name a:hover { color: var(--accent); }
.rev-score {
  flex-shrink: 0;
  font-family: var(--mono);
  font-size: .8rem;
  font-weight: 500;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.rev-score span { color: var(--muted-2); }
.rev-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .3rem .55rem;
  margin-bottom: .8rem;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.rev-meta span.price-free { color: var(--good); }
.rev-meta span.price-paid { color: var(--accent); }
.rev-meta i { font-style: normal; color: var(--line); }
.rev-card p { font-size: .875rem; color: var(--muted); line-height: 1.65; margin-bottom: 1.1rem; }
.rev-link {
  margin-top: auto;
  font-size: .85rem;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1px;
  align-self: flex-start;
  transition: border-color .18s;
}
.rev-link:hover { border-color: var(--accent); color: var(--accent); }

/* ─── Use cases ─────────────────────────────────────────────── */
.usecases-section { padding: 84px 0; background: var(--white); }

.uc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem 2rem;
}
.uc-card { display: flex; gap: .85rem; align-items: flex-start; }
.uc-icon { color: var(--muted-2); flex-shrink: 0; margin-top: .15rem; }
.uc-icon .ico { width: 18px; height: 18px; }
.uc-card h3 { font-family: var(--sans); font-size: .9rem; font-weight: 600; color: var(--ink); margin-bottom: .25rem; }
.uc-card p  { font-size: .855rem; color: var(--muted); line-height: 1.6; }

/* ─── Tables ────────────────────────────────────────────────── */
.formats-section { padding: 84px 0; background: var(--paper); }

.fmt-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.fmt-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: .89rem;
  background: var(--white);
}
.fmt-table th {
  padding: .7rem 1rem .7rem 0;
  text-align: left;
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--ink);
  white-space: nowrap;
}
.fmt-table td {
  padding: .95rem 1rem .95rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
  vertical-align: top;
  line-height: 1.55;
}
.fmt-table th:last-child, .fmt-table td:last-child { padding-right: 0; }
.fmt-table tbody tr:last-child td { border-bottom: 1px solid var(--line); }
.fmt-table tbody tr:hover td { background: #FFFDFB; }
.fmt-table strong { font-weight: 600; color: var(--ink); }

.fmt-tip {
  margin-top: 1.5rem;
  font-size: .9rem;
  color: var(--muted);
  padding-left: 1rem;
  border-left: 2px solid var(--accent);
}

/* ─── FAQ ───────────────────────────────────────────────────── */
.faq-section { padding: 84px 0; background: var(--white); }

.faq-list { border-top: 1px solid var(--ink); }

.faq-item { border-bottom: 1px solid var(--line); }

.faq-q {
  width: 100%;
  text-align: left;
  padding: 1.15rem 2.5rem 1.15rem 0;
  background: transparent;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  display: block;
  position: relative;
  transition: color .15s;
}
.faq-q::after {
  content: '';
  position: absolute;
  right: .35rem;
  top: 50%;
  width: 11px;
  height: 1px;
  background: var(--ink);
  transition: transform .25s ease;
}
.faq-q::before {
  content: '';
  position: absolute;
  right: .35rem;
  top: 50%;
  width: 11px;
  height: 1px;
  background: var(--ink);
  transform: rotate(90deg);
  transition: transform .25s ease, opacity .25s;
}
.faq-q[aria-expanded="true"]::before { transform: rotate(0deg); opacity: 0; }
.faq-q:hover { color: var(--accent); }
.faq-q:hover::before, .faq-q:hover::after { background: var(--accent); }

.faq-a {
  padding: 0 4rem 1.5rem 0;
  font-size: .93rem;
  line-height: 1.75;
  color: var(--ink-2);
  max-width: 68ch;
}
.faq-a p + p { margin-top: .75rem; }
.faq-a ul, .faq-a ol { padding-left: 1.1rem; list-style: disc; margin-top: .6rem; }
.faq-a li { margin-bottom: .4rem; }
.faq-a strong { font-weight: 600; color: var(--ink); }

/* ─── CTA ───────────────────────────────────────────────────── */
.cta-strip {
  background: var(--ink);
  padding: 76px 0;
}
.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2.5rem;
}
.cta-strip h2 { color: #fff; margin-bottom: .7rem; max-width: 18ch; }
.cta-strip p { color: rgba(255,255,255,.62); font-size: .98rem; max-width: 52ch; }
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--white);
  color: var(--ink);
  font-size: .93rem;
  font-weight: 500;
  padding: .85rem 1.6rem;
  border-radius: var(--r-sm);
  text-decoration: none;
  white-space: nowrap;
  transition: background .18s, color .18s;
}
.cta-btn:hover { background: var(--accent); color: #fff; text-decoration: none; }

/* ─── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 60px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.5rem;
}

.footer-brand .logo { margin-bottom: .8rem; }
.footer-brand p { font-size: .875rem; color: var(--muted); max-width: 32ch; line-height: 1.65; }

.footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: .55rem; }
.footer-links h4 {
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted-2);
  margin-bottom: .5rem;
}
.footer-links a {
  font-size: .875rem;
  color: var(--ink-2);
  text-decoration: none;
}
.footer-links a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .4rem 1.5rem;
  font-size: .78rem;
  color: var(--muted-2);
}

/* ─── Inner pages ───────────────────────────────────────────── */
.inner-hero {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 60px 0 64px;
}
.inner-hero h1 { font-size: clamp(2rem, 4.4vw, 3rem); margin-bottom: .75rem; max-width: 20ch; }
.inner-hero .sub { color: var(--muted); font-size: 1.05rem; line-height: 1.65; max-width: 58ch; }

.breadcrumb {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 1.6rem;
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { margin: 0 .5rem; color: var(--line); }

.inner-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 2rem 76px;
}
.inner-body > p:first-of-type {
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--ink);
}
.inner-body h2 {
  font-size: 1.7rem;
  margin: 2.75rem 0 .9rem;
  color: var(--ink);
}
.inner-body h3 {
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 2rem 0 .6rem;
}
.inner-body p  { margin-bottom: 1.1rem; font-size: 1rem; line-height: 1.78; }
.inner-body ul, .inner-body ol { list-style: none; margin-bottom: 1.25rem; padding-left: 0; }
.inner-body ul li, .inner-body ol li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: .55rem;
  font-size: .98rem;
  line-height: 1.7;
}
.inner-body ul li::before {
  content: '';
  position: absolute;
  left: 0; top: .72em;
  width: 6px; height: 1px;
  background: var(--accent);
}
.inner-body ol { counter-reset: n; }
.inner-body ol li::before {
  counter-increment: n;
  content: counter(n, decimal-leading-zero);
  position: absolute;
  left: 0; top: 0;
  font-family: var(--mono);
  font-size: .72rem;
  color: var(--accent);
  line-height: 2.3;
}
.inner-body strong { font-weight: 600; color: var(--ink); }
.inner-body em { font-style: italic; }
.inner-body code {
  font-family: var(--mono);
  font-size: .86em;
  background: var(--paper-2);
  padding: .1em .35em;
  border-radius: var(--r-xs);
}
.inner-body .fmt-table-wrap { margin: 1.75rem 0 2rem; }
.inner-body .fmt-table { font-size: .87rem; }

/* Review furniture */
.spec-box {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 2rem;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
  padding: 1.4rem 0;
  margin: 2rem 0 2.5rem;
}
.inner-body > .spec-box:first-of-type { margin-top: 0; }
.spec-box .k {
  display: block;
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: .2rem;
}
.spec-box .v { font-size: .92rem; color: var(--ink); }

.verdict-box {
  border-top: 1px solid var(--ink);
  padding-top: 1.35rem;
  margin: 2.75rem 0 2rem;
}
.verdict-box h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -.01em;
  text-transform: none;
  color: var(--ink);
  margin: 0 0 .7rem;
}
.verdict-box p:last-child { margin-bottom: 0; }

.proscons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin: 2rem 0 2.5rem;
}
.pc-col h3 {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 .85rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--line);
}
.pc-col.pros h3 { color: var(--good); border-color: var(--good); }
.pc-col.cons h3 { color: var(--accent); border-color: var(--accent); }
.pc-col ul, .inner-body .pc-col ul { list-style: none; padding-left: 0; margin: 0; }
.inner-body .pc-col li {
  position: relative;
  padding-left: 1.15rem;
  font-size: .89rem;
  line-height: 1.6;
  margin-bottom: .6rem;
  color: var(--ink-2);
}
.inner-body .pc-col li::before {
  position: absolute;
  left: 0;
  top: 0;
  width: auto;
  height: auto;
  background: none;
  font-family: var(--mono);
  font-size: .85em;
  line-height: 1.9;
}
.inner-body .pc-col.pros li::before { content: '+'; color: var(--good); }
.inner-body .pc-col.cons li::before { content: '−'; color: var(--accent); }

.callout {
  background: var(--paper);
  border-left: 2px solid var(--accent);
  padding: 1.1rem 1.35rem;
  margin: 1.85rem 0;
  font-size: .93rem;
  line-height: 1.7;
}
.callout strong { color: var(--ink); }

.next-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.4rem;
  margin-top: 3rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}
.next-nav a {
  font-size: .855rem;
  color: var(--ink-2);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1px;
}
.next-nav a:hover { color: var(--accent); border-color: var(--accent); }

/* Contact page */
.contact-card {
  border-top: 1px solid var(--line);
  padding-top: 1.15rem;
  margin-bottom: 1.75rem;
}
.contact-card h3 {
  font-family: var(--sans);
  font-size: .82rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 .5rem;
}
.contact-card p:last-child { margin-bottom: 0; }

.contact-form { display: flex; flex-direction: column; gap: 1.1rem; margin-top: 1.75rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input, .form-group textarea {
  padding: .75rem .9rem;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: .95rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color .18s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--ink); }
.form-group textarea { resize: vertical; min-height: 150px; line-height: 1.6; }
.form-submit {
  padding: .8rem 1.7rem;
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: .93rem;
  font-weight: 500;
  align-self: flex-start;
  transition: background .18s;
}
.form-submit:hover { background: var(--accent); }
.form-note { margin-top: .75rem; font-size: .9rem; }

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .feat-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 980px) {
  .container { padding: 0 1.5rem; }
  .hero-section { padding: 48px 0 56px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-text { padding-top: 0; }
  .hero-desc, .hero-bullets { max-width: none; }
  .recorder-wrap { max-width: 620px; }
  .steps-row { grid-template-columns: repeat(2, 1fr); }
  .step-card { padding-bottom: 1.6rem; border-bottom: 1px solid var(--line); }
  .step-card:nth-child(2n) { border-right: none; padding-right: 0; }
  .steps-row .step-card + .step-card { padding-left: 0; }
  .steps-row .step-card:nth-child(2n) { padding-left: 1.5rem; }
  .types-grid { grid-template-columns: repeat(2, 1fr); }
  .uc-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .site-nav { gap: 1.1rem; }
  .site-nav a { font-size: .84rem; }
}

@media (max-width: 620px) {
  .header-inner {
    height: auto;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: .5rem;
    padding-top: .7rem;
    padding-bottom: .7rem;
  }
  .logo { font-size: 1.05rem; }
  .site-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: .5rem .9rem;
  }
  .site-nav a { font-size: .8rem; }
  .site-nav a.nav-cta { padding: .34rem .8rem; }
  /* trimmed on small screens; still reachable from the footer */
  .site-nav a[href="/about"] { display: none; }
}

@media (max-width: 680px) {
  .steps-section, .features-section, .types-section,
  .reviews-section, .usecases-section, .formats-section,
  .faq-section { padding: 56px 0; }
  .cta-strip { padding: 56px 0; }

  .section-head { grid-template-columns: 1fr; gap: .5rem; margin-bottom: 2rem; }
  .section-index { padding-top: 0; }
  .section-head h2 { max-width: none; }
  .section-foot { padding-left: 0; }

  .feat-grid  { grid-template-columns: 1fr; }
  .steps-row  { grid-template-columns: 1fr; }
  .step-card, .steps-row .step-card:nth-child(2n) { padding-left: 0; padding-right: 0; border-right: none; }
  .types-grid { grid-template-columns: 1fr; }
  .uc-grid    { grid-template-columns: 1fr; }
  .rev-grid   { grid-template-columns: 1fr; }
  .proscons   { grid-template-columns: 1fr; gap: 1.75rem; }
  .spec-box   { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }

  .recorder-card { padding: 1.25rem; }
  .inner-hero { padding: 44px 0 48px; }
  .inner-body { padding: 44px 1.5rem 56px; }
  .inner-body h2 { font-size: 1.45rem; }
  .faq-a { padding-right: 1rem; }
  .faq-q { font-size: 1.05rem; }
}
