/* ============================================================
   Build — marketing site styles
   Dark theme, electric-blue accent. Tokens mirror constants/theme.ts.
   Shared by index.html, privacy.html, terms.html, support.html.
   ============================================================ */

:root {
  --bg: #ffffff;
  --surface: #f6f8fb;
  --surface-elevated: #ffffff;
  --surface-high: #eef1f5;
  --border: #e7eaee;
  --border-strong: #d6dae0;

  --accent: #0d7bff;
  --accent-light: #0a5fcc; /* darker so it stays legible on white */
  --accent-soft: rgba(13, 123, 255, 0.1);
  --accent-soft-strong: rgba(13, 123, 255, 0.16);

  --text-primary: #0a0c10;
  --text-secondary: #545b65;
  --text-muted: #8b919b;

  --success: #16a34a;
  --success-soft: rgba(22, 163, 74, 0.12);

  /* Soft shadows for depth on a light background */
  --shadow-card: 0 1px 2px rgba(16, 24, 40, 0.04),
    0 4px 16px -8px rgba(16, 24, 40, 0.08);
  --shadow-float: 0 12px 36px -12px rgba(16, 24, 40, 0.18);

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --maxw: 1120px;
  --gutter: 24px;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui,
    'Helvetica Neue', Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  display: block;
}

/* ---------- Layout helpers ---------- */

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: 96px 0;
  position: relative;
}

@media (max-width: 720px) {
  .section {
    padding: 64px 0;
  }
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin: 0 0 14px;
}

h1,
h2,
h3 {
  letter-spacing: -1px;
  line-height: 1.08;
  margin: 0;
}

h2 {
  font-size: clamp(28px, 4.4vw, 44px);
  font-weight: 700;
}

p {
  line-height: 1.6;
}

.lead {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-secondary);
}

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.4px;
}

.brand img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  font-size: 15px;
  color: var(--text-secondary);
  transition: color 120ms ease;
}

.nav-links a:hover {
  color: var(--text-primary);
}

@media (max-width: 720px) {
  .nav-links .nav-link {
    display: none;
  }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  border: 0;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition:
    background 140ms ease,
    transform 60ms ease,
    border-color 140ms ease;
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
}

.btn-accent:hover {
  background: var(--accent-light);
}

.btn-accent:active {
  transform: scale(0.98);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-strong);
  padding: 12px 20px;
}

.btn-ghost:hover {
  border-color: var(--text-secondary);
}

/* Hero secondary CTA: match the App Store badge height + a soft fill so it
   doesn't read as a weak outline next to the solid black badge. */
.hero .cta-row .btn-ghost {
  align-self: stretch;
  background: var(--surface);
}

.hero .cta-row .btn-ghost:hover {
  background: var(--surface-high);
  border-color: var(--border-strong);
}

.hero .cta-row .btn-ghost svg {
  flex: none;
  color: var(--accent);
}

/* App Store badge (CSS-built, no external image) */
.appstore {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #000;
  color: #fff;
  padding: 11px 20px 11px 18px;
  border-radius: var(--radius-md);
  transition: transform 60ms ease, opacity 140ms ease;
}

.appstore:hover {
  opacity: 0.9;
}

.appstore:active {
  transform: scale(0.98);
}

.appstore svg {
  width: 26px;
  height: 26px;
  flex: none;
}

.appstore .as-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
}

.appstore .as-small {
  font-size: 11px;
  font-weight: 500;
}

.appstore .as-big {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.3px;
}

/* Compact App Store badge used in the nav */
.appstore-nav {
  padding: 7px 14px 7px 12px;
  border-radius: 12px;
  gap: 9px;
  box-shadow: 0 2px 10px -2px rgba(16, 24, 40, 0.28);
}

/* Override the gray nav-link color so the badge text stays crisp white */
.nav-links a.appstore-nav,
.nav-links a.appstore-nav:hover {
  color: #fff;
}

.appstore-nav svg {
  width: 20px;
  height: 20px;
}

.appstore-nav .as-small {
  font-size: 9px;
}

.appstore-nav .as-big {
  font-size: 14px;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: 72px 0 40px;
  overflow: hidden;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 56px;
  }
  .hero .cta-row {
    justify-content: center;
  }
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.1px;
  padding: 8px 16px 8px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-card);
}

.pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pillPulse 2.2s ease-in-out infinite;
}

@keyframes pillPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(13, 123, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(13, 123, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(13, 123, 255, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pill .dot {
    animation: none;
  }
}

.hero h1 {
  font-size: clamp(40px, 7vw, 68px);
  font-weight: 800;
  letter-spacing: -2px;
  margin: 0 0 20px;
}

.hero h1 .accent {
  background: linear-gradient(90deg, var(--accent-light), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero .lead {
  max-width: 520px;
  margin: 0 0 32px;
}

@media (max-width: 900px) {
  .hero .lead {
    margin-left: auto;
    margin-right: auto;
  }
}

.trust {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.trust-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .hero .trust {
    justify-content: center;
  }
}

/* ---------- Phone mockup ---------- */

.phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone {
  position: relative;
  width: 290px;
  aspect-ratio: 9 / 19.5;
  background: #050506;
  border: 1px solid var(--border-strong);
  border-radius: 46px;
  padding: 10px;
  box-shadow:
    0 0 0 2px #1a1c20,
    0 44px 80px -28px rgba(16, 24, 40, 0.38),
    0 20px 44px -22px rgba(16, 24, 40, 0.24);
}

.phone .screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 38px;
  overflow: hidden;
  background: linear-gradient(170deg, #15171c 0%, #0c0d10 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone .screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero phone: angled perspective + soft ground shadow (straightens on hover) */
.hero .phone {
  z-index: 1;
  transform: perspective(1800px) rotateY(-7deg) rotateX(2deg);
  transform-origin: center;
  transition: transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero .phone:hover {
  transform: perspective(1600px) rotateY(0deg) rotateX(0deg);
}

@media (max-width: 900px) {
  .hero .phone {
    transform: perspective(1600px) rotateY(-9deg) rotateX(3deg);
  }
}

/* Placeholder text shown before a real screenshot is dropped in */
.screen-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 24px;
  color: var(--text-muted);
}

.screen-placeholder .ph-mark {
  width: 40px;
  height: 40px;
  opacity: 0.28;
}

.screen-placeholder span {
  font-size: 12px;
  line-height: 1.4;
}

/* Apple Watch mockup */
.watch-wrap {
  display: flex;
  justify-content: center;
}

/* Section watch: larger + deeper float so it holds the column like the phone.
   Scoped to .watch-wrap so the small hero-overlay watch is untouched. */
.watch-wrap .watch {
  width: 240px;
  border-radius: 64px;
  box-shadow:
    0 0 0 2px #1a1c20,
    0 40px 76px -26px rgba(16, 24, 40, 0.42),
    0 16px 36px -18px rgba(16, 24, 40, 0.22);
}

.watch {
  position: relative;
  width: 206px;
  aspect-ratio: 1 / 1.2;
  background: #050506;
  border: 1px solid var(--border-strong);
  border-radius: 58px;
  padding: 12px;
  box-shadow:
    0 0 0 2px #1a1c20,
    0 24px 48px -20px rgba(16, 24, 40, 0.32),
    0 8px 20px -12px rgba(16, 24, 40, 0.18);
}

.watch .screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 46px;
  overflow: hidden;
  background: linear-gradient(170deg, #15171c 0%, #0c0d10 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.watch .screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Digital crown nub + side button */
.watch .crown {
  position: absolute;
  right: -5px;
  top: 32%;
  width: 6px;
  height: 34px;
  background: linear-gradient(180deg, #3a3e46, #23262c);
  border-radius: 4px;
}

.watch .crown::after {
  content: '';
  position: absolute;
  left: 0;
  top: 44px;
  width: 6px;
  height: 26px;
  background: #2a2d33;
  border-radius: 4px;
}

.watch .screen-placeholder {
  padding: 12px;
}

.watch .screen-placeholder .ph-mark {
  width: 30px;
  height: 30px;
}

.watch .screen-placeholder span {
  font-size: 10px;
}

/* Watch overlapping the hero phone (lower-left) */
.hero-watch {
  position: absolute;
  bottom: 5%;
  left: 50%;
  z-index: 4;
  transform: translateX(-188px) scale(0.72);
  transform-origin: bottom center;
}

@media (max-width: 900px) {
  .hero-watch {
    transform: translateX(-170px) scale(0.62);
  }
}

@media (max-width: 380px) {
  .hero-watch {
    transform: translateX(-140px) scale(0.55);
  }
}

/* Dynamic-island */
.phone .island {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 24px;
  background: #050506;
  border-radius: 999px;
  z-index: 2;
}

/* Floating callout chips around the hero phone */
.chip {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border: 1px solid rgba(16, 24, 40, 0.05);
  border-radius: 16px;
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.1px;
  box-shadow:
    0 12px 32px -10px rgba(16, 24, 40, 0.22),
    0 3px 8px -3px rgba(16, 24, 40, 0.08);
  white-space: nowrap;
}

.chip .ico {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  flex: none;
}

/* Mic chip: solid blue circle + white mic, like the in-app mic button */
.chip-mic .ico {
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
}

/* Logged chip: solid green rounded-square + white check, like the set checkbox */
.chip-ok .ico {
  background: var(--success);
  color: #fff;
  border-radius: 8px;
}

.chip-1 {
  top: 16%;
  left: -36px;
}

.chip-2 {
  bottom: 18%;
  right: -28px;
}

@media (max-width: 380px) {
  .phone {
    width: 250px;
  }
  .chip-1 {
    left: -12px;
  }
  .chip-2 {
    right: -8px;
  }
}

/* ---------- Feature rows (alternating) ---------- */

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature.reverse .feature-media {
  order: 2;
}

.feature.reverse .feature-text {
  order: 1;
}

@media (max-width: 900px) {
  .feature {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .feature.reverse .feature-media,
  .feature.reverse .feature-text {
    order: 0;
  }
  .feature .cta-row {
    justify-content: center;
  }
}

/* Devices float on clean white — no panel, no hairline */
.feature-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-text h2 {
  margin-bottom: 18px;
}

.feature-text .lead {
  max-width: 460px;
}

@media (max-width: 900px) {
  .feature-text .lead {
    margin-left: auto;
    margin-right: auto;
  }
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 14px;
  max-width: 460px;
}

@media (max-width: 900px) {
  .checklist {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 16px;
}

.checklist .tick,
.plan-list .tick {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-top: 1px;
  box-shadow: 0 2px 6px -2px var(--accent-soft-strong);
}

/* ---------- Interactive feature stepper ---------- */

.stepper {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 24px;
  max-width: 480px;
}

@media (max-width: 900px) {
  .stepper {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
}

.step {
  display: block;
  width: 100%;
  text-align: left;
  font-family: inherit;
  background: transparent;
  border: 0;
  border-left: 2px solid var(--border);
  padding: 14px 0 14px 20px;
  cursor: pointer;
  transition: border-color 180ms ease;
}

.step .step-title {
  display: block;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--text-muted);
  transition: color 180ms ease;
}

.step .step-desc {
  display: none;
  margin-top: 7px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.step:hover .step-title {
  color: var(--text-secondary);
}

.step.is-active {
  border-left-color: var(--accent);
}

.step.is-active .step-title {
  color: var(--text-primary);
}

.step.is-active .step-desc {
  display: block;
}

/* Stacked phone screens that crossfade as steps change */
.step-screen {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 320ms ease, visibility 320ms ease;
}

.step-screen.is-active {
  opacity: 1;
  visibility: visible;
}

.step-screen img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Feature grid ---------- */

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-head .lead {
  margin-top: 16px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  box-shadow: var(--shadow-card);
  transition: border-color 160ms ease, transform 160ms ease,
    box-shadow 160ms ease;
}

.card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  box-shadow: var(--shadow-float);
}

.card .card-ico {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 8px 18px -8px rgba(13, 123, 255, 0.55);
}

.card .card-ico svg {
  width: 24px;
  height: 24px;
}

.card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.4px;
}

.card p {
  margin: 0;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ---------- Pricing ---------- */

.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
  align-items: start;
}

@media (max-width: 760px) {
  .pricing {
    grid-template-columns: 1fr;
  }
}

.plan {
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow-card);
}

/* Pro plan: accent outline + glow so it reads as the upgrade */
.plan-pro {
  position: relative;
  border-color: var(--accent);
  box-shadow: 0 16px 40px -16px rgba(13, 123, 255, 0.38);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  padding: 5px 12px;
  border-radius: 999px;
}

.plan-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.plan-head h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.4px;
}

.plan-price {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text-primary);
}

.plan-price span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0;
}

.plan-sub {
  margin: 0 0 20px;
  font-size: 14px;
  color: var(--text-secondary);
}

.plan-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 13px;
}

.plan-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 15px;
  color: var(--text-secondary);
}

.plan-list strong {
  color: var(--text-primary);
  font-weight: 700;
}

.plan-foot {
  margin: 20px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}

/* ---------- CTA band ---------- */

.cta-band {
  position: relative;
  text-align: center;
  padding: 16px 0;
}

.cta-band h2 {
  margin-bottom: 16px;
}

.cta-band .lead {
  max-width: 480px;
  margin: 0 auto 28px;
}

.cta-band .cta-row {
  justify-content: center;
}

/* ---------- Footer ---------- */

.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 56px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}

.footer .brand {
  font-size: 17px;
}

.footer-tag {
  margin: 14px 0 0;
  font-size: 14px;
  color: var(--text-muted);
  max-width: 280px;
}

.footer-links {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--text-muted);
  margin: 0 0 14px;
}

.footer-col a {
  display: block;
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 10px;
  transition: color 120ms ease;
}

.footer-col a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}

/* ---------- Doc pages (privacy / terms / support) ---------- */

.doc {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 0 40px;
}

.doc h1 {
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 10px;
}

.doc .updated {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0 0 40px;
}

.doc h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 44px 0 14px;
}

.doc h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 28px 0 10px;
}

.doc p,
.doc li {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
}

.doc a {
  color: var(--accent-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.doc strong {
  color: var(--text-primary);
}

.doc ul {
  padding-left: 22px;
}

.doc li {
  margin-bottom: 8px;
}

.doc table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 15px;
}

.doc th,
.doc td {
  text-align: left;
  padding: 12px 14px;
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.doc th {
  background: var(--surface);
  color: var(--text-primary);
  font-weight: 600;
}

.doc .faq-q {
  color: var(--text-primary);
  font-weight: 600;
  margin-top: 24px;
}
