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

:root {
  --rose:      #e8476a;
  --rose-dark: #c73057;
  --rose-soft: #ffd6e0;
  --rose-pale: #fff0f4;
  --ink:       #2d1a23;
  --ink-soft:  #7a5a66;
  --border:    #e8d0d8;
  --bg:        #fff8fa;
  --white:     #ffffff;
  --radius:    14px;
  --shadow:    0 4px 24px rgba(232,71,106,.12);
}

body {
  font-family: 'Poppins', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px 60px;
}

#app {
  width: 100%;
  max-width: 560px;
  flex: 1;
}

footer {
  width: 100%;
  max-width: 560px;
  text-align: center;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
  margin-top: 24px;
}

@media (min-width: 600px) {
  body {
    padding-top: 16px;
    padding-bottom: 24px;
  }
}

/* ── Ad sidebars (desktop only) ─────────────────────────────── */
.ad-sidebar {
  display: none;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 160px;
}
.ad-sidebar-left  { left: 16px; }
.ad-sidebar-right { right: 16px; }

@media (min-width: 960px) {
  .ad-sidebar { display: block; }
}

/* ── Steps ──────────────────────────────────────────────────── */
.step { display: none; }
.step.active { display: block; }

/* ── Hero header (step 1) ───────────────────────────────────── */
.hero-header {
  text-align: center;
  padding: 40px 0 28px;
}
.hero-icon {
  font-size: 52px;
  line-height: 1;
  color: var(--rose);
  animation: heartbeat .9s ease-in-out infinite;
  display: inline-block;
  margin-bottom: 12px;
}
@keyframes heartbeat {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.18); }
}
h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.5px;
}
.tagline {
  color: var(--ink-soft);
  margin-top: 8px;
  font-size: .95rem;
}

/* ── Step headers ───────────────────────────────────────────── */
.step-header {
  padding: 32px 0 20px;
}
.step-header h2 {
  font-size: 1.4rem;
  font-weight: 700;
}
.step-header p {
  color: var(--ink-soft);
  margin-top: 6px;
  font-size: .9rem;
  line-height: 1.5;
}

/* ── Card ───────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.card.center { text-align: center; }

/* ── Form elements ──────────────────────────────────────────── */
.field-label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 8px;
}
input[type="text"] {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Roboto Mono', monospace;
  font-size: 1.1rem;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border-color .2s;
}
input[type="text"]:focus {
  border-color: var(--rose);
}
.hint {
  font-size: .8rem;
  color: var(--ink-soft);
  margin-top: 8px;
}

/* ── Sequence preview ───────────────────────────────────────── */
.seq-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
  min-height: 28px;
}
.seq-char {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--rose-soft);
  color: var(--rose-dark);
  font-family: 'Roboto Mono', monospace;
  font-size: .85rem;
  font-weight: 700;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn-primary, .btn-secondary {
  padding: 11px 24px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background .18s, transform .1s, opacity .2s;
}
.btn-primary {
  background: var(--rose);
  color: #fff;
}
.btn-primary:hover { background: var(--rose-dark); }
.btn-primary:active { transform: scale(.97); }
.btn-primary:disabled {
  opacity: .45;
  cursor: not-allowed;
}
.btn-secondary {
  background: #f5f0f2;
  color: var(--ink);
}
.btn-secondary:hover { background: #ede5e9; }
.btn-primary:not(:disabled) { margin-top: 20px; }
.btn-secondary { margin-top: 20px; }

.btn-row {
  display: flex;
  gap: 10px;
  align-items: center;
}
.btn-row.center { justify-content: center; }
.btn-row .btn-primary,
.btn-row .btn-secondary { margin-top: 0; }
.btn-row { margin-top: 20px; }

/* ── Make Puzzle button ─────────────────────────────────────── */
.btn-make-puzzle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 14px 24px;
}
.btn-main-text {
  font-size: .95rem;
  font-weight: 600;
}
.btn-sub-text {
  font-size: .72rem;
  font-weight: 400;
  opacity: .85;
}

/* ── Symbols step ───────────────────────────────────────────── */
.symbols-display {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 6px;
  margin-bottom: 16px;
}
.symbol-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.sym-btn {
  width: 100%;
  aspect-ratio: 1;
  min-width: 0;
  border: 2px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  font-family: 'Roboto Mono', monospace;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  transition: border-color .18s, background .18s;
  padding: 0;
}
.sym-btn.from-input {
  border-color: var(--rose);
  background: var(--rose-pale);
  color: var(--rose-dark);
}
.sym-btn:hover { border-color: var(--rose-dark); background: var(--rose-soft); }
.sym-label {
  font-size: .6rem;
  color: var(--ink-soft);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.warning-box {
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: .85rem;
  color: #7a5c00;
  margin-bottom: 10px;
}
.warning-box.hidden { display: none; }

/* ── Paths step ─────────────────────────────────────────────── */
.paths-display {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}
.path-card {
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 10px 8px 8px;
  cursor: pointer;
  text-align: center;
  transition: border-color .18s, background .18s;
}
.path-card:hover { border-color: var(--rose); background: var(--rose-pale); }
.path-card.selected {
  border-color: var(--rose);
  background: var(--rose-pale);
  box-shadow: 0 0 0 2px var(--rose-soft);
}
.mini-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 1px;
  background: #ddd;
  border: 1px solid #ccc;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 6px;
}
.mini-cell {
  background: #f9f9f9;
  aspect-ratio: 1;
}
.mini-cell.path-cell { background: var(--rose); }
.mini-cell.thick-right  { border-right: 2px solid #aaa; }
.mini-cell.thick-bottom { border-bottom: 2px solid #aaa; }

.path-name {
  font-size: .78rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.path-card.selected .path-name { color: var(--rose-dark); }

.path-hint {
  font-size: .82rem;
  color: var(--ink-soft);
  margin-bottom: 4px;
}

.dir-toggle-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0 4px;
}
.dir-label {
  font-size: .82rem;
  color: var(--ink-soft);
  white-space: nowrap;
}
.dir-toggle {
  display: flex;
  gap: 6px;
}
.dir-btn {
  padding: 5px 14px;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  background: transparent;
  font-size: .82rem;
  cursor: pointer;
  color: var(--ink);
  transition: border-color .15s, background .15s, color .15s;
}
.dir-btn:hover    { border-color: var(--rose); color: var(--rose); }
.dir-btn.active   { background: var(--rose); border-color: var(--rose); color: #fff; }

/* ── Generating step ────────────────────────────────────────── */
.heart-pulse {
  font-size: 56px;
  color: var(--rose);
  animation: heartbeat .9s ease-in-out infinite;
  display: inline-block;
  margin-bottom: 16px;
}
.card.center h2 { font-size: 1.3rem; margin-bottom: 10px; }
.gen-msg {
  font-size: .9rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
  min-height: 1.4em;
}
.progress-track {
  height: 8px;
  background: var(--rose-soft);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 10px;
}
.progress-fill {
  height: 100%;
  background: var(--rose);
  border-radius: 99px;
  width: 0%;
  transition: width .3s ease;
}
.gen-sub {
  font-size: .78rem;
  color: var(--ink-soft);
  min-height: 1.2em;
}

/* ── Button grid (result / puzzle pages) ───────────────────── */
.btn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0 0 12px;
}
.btn-grid .btn-primary,
.btn-grid .btn-secondary { margin-top: 0; width: 100%; }
/* 5-button layout: two rows of 2, then full-width CTA */
.btn-grid > :nth-child(1) { grid-column: 1; }
.btn-grid > :nth-child(2) { grid-column: 2; }
.btn-grid > :nth-child(3) { grid-column: 1; }
.btn-grid > :nth-child(4) { grid-column: 2; }
.btn-grid > :nth-child(5) { grid-column: 1 / -1; }

/* ── Result ─────────────────────────────────────────────────── */
.result-banner {
  text-align: center;
  padding: 28px 0 16px;
}
.result-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rose);
}
.site-title {
  cursor: pointer;
  display: inline-block;
}
.site-title:hover { opacity: 0.8; }
.title-heart {
  display: inline-block;
  transform: scaleY(0.85);
  transform-origin: center;
}
.result-meta {
  font-size: .85rem;
  color: var(--ink-soft);
  margin-top: 4px;
}

.sudoku-wrap {
  display: flex;
  justify-content: center;
  margin: 0 0 16px;
}
.sudoku-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  border: 3px solid var(--ink);
  border-radius: 4px;
  overflow: hidden;
  width: min(100%, 450px);
}

/* Desktop result layout: grid + buttons side by side */
@media (min-width: 820px) {
  #step-result {
    max-width: 820px;
    margin: 0 auto;
  }
  #step-result .result-banner {
    padding: 16px 0 12px;
  }
  .result-body {
    display: flex;
    align-items: flex-start;
    gap: 28px;
  }
  .result-body .sudoku-wrap {
    flex: 0 0 auto;
    margin: 0;
  }
  .result-body .sudoku-grid {
    width: 400px;
  }
  .result-sidebar {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .result-sidebar .btn-grid {
    grid-template-columns: 1fr 1fr;
    padding: 0;
  }
  .result-sidebar .btn-grid > :nth-child(5) {
    grid-column: 1 / -1;
  }
  .result-sidebar .symbol-legend {
    margin-bottom: 10px;
  }
}
.sudoku-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto Mono', monospace;
  font-size: clamp(.6rem, 2.5vw, 1rem);
  font-weight: 500;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  background: var(--white);
  color: var(--ink);
  transition: background .2s;
}
/* 3×3 box separators */
.sudoku-cell.box-right  { border-right:  2.5px solid #555; }
.sudoku-cell.box-bottom { border-bottom: 2.5px solid #555; }

/* Path cells */
.sudoku-cell.cell-path {
  background: var(--rose-soft);
  color: var(--rose-dark);
}
/* Pre-filled sequence cells (user's own chars) */
.sudoku-cell.cell-prefilled {
  background: var(--rose);
  color: #fff;
  font-weight: 700;
}

/* ── Puzzle toolbar ─────────────────────────────────────────── */
.puzzle-grid-sizer {
  width: min(100%, 450px);
  margin: 0 auto;
}
.puzzle-grid-sizer .sudoku-grid {
  width: 100%;
}
.puzzle-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 10px;
  flex-wrap: wrap;
  gap: 8px;
}
.diff-group {
  display: flex;
  gap: 6px;
}
.diff-btn {
  padding: 6px 14px;
  border-radius: 99px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .18s;
}
.diff-btn:hover    { border-color: var(--rose); color: var(--rose); }
.diff-btn.active   { background: var(--rose); border-color: var(--rose); color: #fff; }
.puzzle-progress {
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink-soft);
}

/* ── Puzzle grid cells ──────────────────────────────────────── */
.sudoku-grid.puzzle-mode .sudoku-cell.cell-blank {
  background: #f5f5f5;
  cursor: pointer;
  transition: background .15s;
}
.sudoku-grid.puzzle-mode .sudoku-cell.cell-blank:hover {
  background: var(--rose-soft);
}
.sudoku-grid.puzzle-mode .sudoku-cell.cell-path {
  cursor: pointer;
}
.sudoku-grid.puzzle-mode .sudoku-cell.cell-selected {
  outline: 3px solid var(--rose);
  outline-offset: -3px;
  position: relative;
  z-index: 1;
}
.sudoku-grid.puzzle-mode .sudoku-cell.cell-user {
  font-weight: 700;
  color: var(--rose-dark);
  cursor: pointer;
}
.sudoku-grid.puzzle-mode .sudoku-cell.cell-wrong {
  outline: 2.5px solid #d63031;
  outline-offset: -2.5px;
  color: #d63031;
}

/* ── Symbol picker (puzzle step) ────────────────────────────── */
.symbol-picker {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 8px;
  padding: 8px 4px 12px;
}
.sym-pick-rows {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.sym-pick-row {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.sym-pick-btn {
  width: 42px;
  height: 42px;
  border: 2px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  font-family: 'Roboto Mono', monospace;
  font-size: .95rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .15s, background .15s;
  padding: 0;
}
.sym-pick-btn:hover { border-color: var(--rose); background: var(--rose-pale); }
.sym-erase-btn {
  height: auto;
  min-height: 42px;
  width: 50px;
  align-self: stretch;
  font-size: 1.2rem;
  color: var(--ink-soft);
}
.sym-erase-btn:hover { border-color: #c0392b; background: #fff5f5; color: #c0392b; }

/* ── 2×2 button grid (puzzle step) ──────────────────────────── */
.btn-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0 0 12px;
}
.btn-grid-2x2 .btn-primary,
.btn-grid-2x2 .btn-secondary { margin-top: 0; width: 100%; }

/* ── Symbol legend ──────────────────────────────────────────── */
.symbol-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: 14px;
  margin-bottom: 18px;
  padding: 0 8px;
}
.legend-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 99px;
  font-size: .75rem;
  font-family: 'Roboto Mono', monospace;
  font-weight: 600;
  border: 1.5px solid var(--border);
}
.legend-chip.from-seq {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose);
}

/* ── Modal ──────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(45,26,35,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
.modal-overlay.hidden { display: none; }
.modal-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  width: min(90%, 320px);
  box-shadow: 0 8px 40px rgba(0,0,0,.18);
}
.modal-title {
  font-weight: 600;
  margin-bottom: 12px;
}
.modal-input {
  font-family: 'Roboto Mono', monospace;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  width: 100%;
  padding: 10px;
  border: 2px solid var(--rose);
  border-radius: 8px;
  outline: none;
  color: var(--rose-dark);
  letter-spacing: .1em;
  margin-bottom: 8px;
}
.modal-error {
  font-size: .8rem;
  color: #c0392b;
  margin-bottom: 8px;
  min-height: 1.2em;
}
.modal-error.hidden { visibility: hidden; }

/* ── Congratulations modal ─────────────────────────────────── */
.congrats-box {
  text-align: center;
}
.congrats-heart {
  font-size: 64px;
  color: var(--rose);
  animation: heartbeat .9s ease-in-out infinite;
  display: inline-block;
  margin-bottom: 12px;
}
.congrats-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--rose);
  margin-bottom: 8px;
}
.congrats-text {
  color: var(--ink-soft);
  font-size: .95rem;
  margin-bottom: 20px;
}

/* ── Print ──────────────────────────────────────────────────── */
@media print {
  body { background: white; padding: 0; }
  .print-hide { display: none !important; }
  .result-banner { padding-top: 10px; }
  .sudoku-wrap { justify-content: flex-start; }
  .sudoku-grid { width: 90vmin; }
  .sudoku-cell { font-size: 3vmin; }
  /* Puzzle blanks and user-filled cells print cleanly */
  .sudoku-grid.puzzle-mode .sudoku-cell.cell-blank { background: white; }
  .sudoku-grid.puzzle-mode .sudoku-cell.cell-wrong { outline: none; color: var(--ink); }
}

/* ── Puzzle layout (responsive) ─────────────────────────────── */
.puzzle-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.puzzle-grid-area {
  width: 100%;
}

@media (min-width: 820px) {
  #app {
    max-width: 820px;
  }
  #step-puzzle {
    max-width: 820px;
    margin: 0 auto;
  }
  .puzzle-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
  }
  .puzzle-grid-area {
    flex: 1;
    min-width: 0;
  }
  .puzzle-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 180px;
    padding-top: 50px;
  }
  .puzzle-sidebar .symbol-picker {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0;
  }
  .puzzle-sidebar .symbol-picker .sym-pick-rows {
    flex-direction: column;
    gap: 5px;
  }
  .puzzle-sidebar .symbol-picker .sym-pick-row {
    justify-content: center;
  }
  .puzzle-sidebar .symbol-picker .sym-erase-btn {
    width: 42px;
    height: 42px;
    min-height: auto;
    align-self: center;
  }
  .puzzle-sidebar .btn-grid-2x2 {
    padding: 0;
  }
}

/* ── Desktop tweaks — keep steps visible without scrolling ─── */
@media (min-width: 600px) {
  .hero-header {
    padding: 20px 0 16px;
  }
  .hero-icon {
    font-size: 40px;
    margin-bottom: 8px;
  }
  .step-header {
    padding: 20px 0 14px;
  }
  .card {
    padding: 22px 24px;
  }
  .paths-display {
    grid-template-columns: repeat(4, 1fr);
  }
  .result-banner {
    padding: 16px 0 12px;
  }
}

/* ── Mobile tweaks ──────────────────────────────────────────── */
@media (max-width: 420px) {
  .paths-display { grid-template-columns: repeat(2, 1fr); }
  .symbols-display { gap: 4px; }
  .sym-btn { font-size: .95rem; }
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 20px;
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--ink); }

.footer-copy {
  font-size: 0.75rem;
  color: var(--ink-soft);
  opacity: 0.5;
}

/* ── ToccaTech bar ───────────────────────────────────────────── */
.toccatech-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  text-align: center;
  padding: 6px 16px;
  font-size: 0.72rem;
  color: var(--ink-soft);
  background: rgba(255, 248, 250, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
  pointer-events: none;
}

.toccatech-bar a {
  color: var(--rose);
  text-decoration: none;
  font-weight: 700;
  pointer-events: auto;
  transition: color 0.2s;
}

.toccatech-bar a:hover { color: var(--rose-dark); }

/* ── Legal pages ─────────────────────────────────────────────── */
.legal-wrap {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 48px 24px 100px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 40px;
  transition: color 0.2s;
}

.legal-back::before { content: '←'; }
.legal-back:hover { color: var(--ink); }

.legal-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--rose);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.legal-updated {
  font-size: 0.8rem;
  color: var(--ink-soft);
  opacity: 0.6;
  margin-bottom: 40px;
}

.legal-body h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin: 32px 0 10px;
}

.legal-body h2:first-child { margin-top: 0; }

.legal-body p,
.legal-body li {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 10px;
}

.legal-body ul,
.legal-body ol {
  padding-left: 20px;
  margin-bottom: 10px;
}

.legal-body a {
  color: var(--rose);
  text-decoration: none;
}

.legal-body a:hover { text-decoration: underline; }

.legal-body strong { color: var(--ink); font-weight: 600; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-list { margin-top: 32px; }

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

.faq-item:last-child { border-bottom: none; }

.faq-q {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.4;
}

.faq-a {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.75;
}
