/* ───── Couple game — screen styles ───── */

/* page header */
.page-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  margin-bottom: 24px;
}
.page-head__title {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 800; letter-spacing: -0.025em;
}
.page-head__sub { color: var(--text-3); font-size: 14px; margin-top: 4px; }
.page-head__actions { display: flex; gap: 8px; }

/* Today: question of the day card */
.today-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
}
@media (max-width: 1100px) { .today-grid { grid-template-columns: 1fr; } }

.qcard {
  position: relative;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(120% 80% at 100% 0%, oklch(0.55 0.2 var(--hue-primary) / 0.18), transparent 60%),
    radial-gradient(80% 60% at 0% 100%, oklch(0.55 0.18 var(--hue-secondary) / 0.1), transparent 60%),
    var(--ink-1);
  border: 1px solid oklch(0.55 0.2 var(--hue-primary) / 0.22);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.qcard__inner { padding: 28px; display: flex; flex-direction: column; gap: 20px; }
.qcard__head {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.qcard__num {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.18em;
  color: var(--text-3); text-transform: uppercase;
}
.qcard__num b { color: var(--brand-hi); font-weight: 700; }
.qcard__cat {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  background: oklch(0.55 0.2 var(--hue-primary) / 0.14);
  border: 1px solid oklch(0.55 0.2 var(--hue-primary) / 0.22);
  color: var(--brand-hi);
  border-radius: 999px;
  font-size: 12px; font-weight: 600;
}
.qcard__text {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.6vw, 38px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text-1);
  text-wrap: pretty;
}
.qcard__followup {
  font-size: 14px; color: var(--text-3); font-style: italic;
  padding-left: 14px;
  border-left: 2px solid oklch(0.55 0.2 var(--hue-primary) / 0.4);
}
.qcard__partner-note {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: oklch(0.55 0.18 var(--hue-cool) / 0.14);
  border: 1px solid oklch(0.55 0.18 var(--hue-cool) / 0.22);
  border-radius: 12px;
  font-size: 13px;
  color: var(--cool);
}
.qcard__partner-note .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cool); box-shadow: 0 0 10px var(--cool-glow); animation: pulse 1.6s infinite; }

/* answer composer */
.composer {
  display: flex; flex-direction: column;
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
  border-radius: 16px;
  overflow: hidden;
}
.composer__head {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--ink-3);
  font-size: 13px; color: var(--text-3);
}
.composer__head .me-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--you); box-shadow: 0 0 10px var(--brand-glow); }
.composer textarea {
  width: 100%;
  min-height: 140px;
  padding: 16px;
  background: transparent;
  border: none;
  resize: vertical;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-1);
}
.composer textarea::placeholder { color: var(--text-4); }
.composer__foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px;
  border-top: 1px solid var(--ink-3);
  background: oklch(0 0 0 / 0.15);
}
.composer__count { font-size: 12px; color: var(--text-3); font-variant-numeric: tabular-nums; }
.composer__actions { display: flex; gap: 8px; }

.answer-saved {
  background: oklch(0.55 0.16 150 / 0.1);
  border: 1px solid oklch(0.55 0.16 150 / 0.25);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex; gap: 14px; align-items: flex-start;
}
.answer-saved__icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--ok); color: var(--ink-0);
  display: grid; place-items: center;
  flex-shrink: 0; font-weight: 800;
}
.answer-saved__body { flex: 1; min-width: 0; }
.answer-saved__title { font-weight: 700; margin-bottom: 4px; }
.answer-saved__text { color: var(--text-2); font-size: 14px; padding: 12px 14px; background: var(--ink-2); border-radius: 10px; margin-top: 10px; line-height: 1.5; white-space: pre-wrap; }
.answer-saved__waiting { font-size: 13px; color: var(--text-3); margin-top: 10px; display: flex; align-items: center; gap: 8px; }
.answer-saved__waiting .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--text-3); animation: pulse 1.4s infinite; }

/* sidebar on Today: pair status */
.side-stack { display: flex; flex-direction: column; gap: 16px; }

.stat-card {
  background: var(--ink-1);
  border: 1px solid var(--ink-3);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
}
.stat-card__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.stat-card__title { font-size: 13px; color: var(--text-3); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.stat-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px dashed oklch(1 0 0 / 0.06); font-size: 14px; }
.stat-row:last-child { border-bottom: none; }
.stat-row__label { color: var(--text-3); display: flex; align-items: center; gap: 8px; }
.stat-row__value { font-weight: 700; font-variant-numeric: tabular-nums; }
.stat-row__value--warm { color: var(--warm); }
.stat-row__value--brand { color: var(--brand-hi); }

/* streak ring */
.streak-card {
  background: linear-gradient(160deg, oklch(0.55 0.2 var(--hue-secondary) / 0.16), oklch(0.55 0.2 var(--hue-primary) / 0.08));
  border: 1px solid oklch(0.55 0.2 var(--hue-secondary) / 0.25);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex; align-items: center; gap: 18px;
}
.streak-ring {
  --p: 80;
  width: 76px; height: 76px;
  border-radius: 50%;
  background:
    conic-gradient(var(--warm) calc(var(--p) * 1%), oklch(1 0 0 / 0.06) 0);
  display: grid; place-items: center;
  flex-shrink: 0;
  position: relative;
}
.streak-ring::before {
  content: ''; position: absolute; inset: 6px;
  background: var(--ink-1); border-radius: 50%;
}
.streak-ring__inner {
  position: relative; z-index: 1;
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800;
  display: flex; flex-direction: column; align-items: center;
  line-height: 1;
}
.streak-ring__inner small { font-size: 9px; color: var(--text-3); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px; }
.streak-card__body { flex: 1; min-width: 0; }
.streak-card__title { font-size: 13px; color: var(--text-3); }
.streak-card__big { font-family: var(--font-display); font-size: 24px; font-weight: 800; letter-spacing: -0.02em; margin-top: 2px; }
.streak-card__big .em { color: var(--warm); }

/* Reveal screen */
.reveal {
  background:
    radial-gradient(60% 50% at 30% 0%, oklch(0.55 0.2 var(--hue-primary) / 0.18), transparent 60%),
    radial-gradient(50% 40% at 80% 100%, oklch(0.55 0.18 var(--hue-cool) / 0.12), transparent 60%),
    var(--ink-1);
  border: 1px solid var(--ink-3);
  border-radius: var(--radius-xl);
  padding: 32px;
  margin-bottom: 20px;
  text-align: center;
}
.reveal__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--brand-hi);
  display: inline-flex; align-items: center; gap: 8px;
}
.reveal__eyebrow .heart { animation: heart-beat 1.6s infinite; }
.reveal__q {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3.2vw, 34px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 14px auto 8px;
  max-width: 720px;
  text-wrap: balance;
}
.reveal__meta { display: inline-flex; gap: 10px; align-items: center; margin-top: 8px; font-size: 13px; color: var(--text-3); }

.answers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 880px) { .answers { grid-template-columns: 1fr; } }
.answer {
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-3);
  background: var(--ink-1);
  overflow: hidden;
  display: flex; flex-direction: column;
  position: relative;
}
.answer--you {
  border-color: oklch(0.55 0.2 var(--hue-primary) / 0.3);
  background:
    linear-gradient(160deg, oklch(0.55 0.2 var(--hue-primary) / 0.08), transparent 50%),
    var(--ink-1);
}
.answer--partner {
  border-color: oklch(0.55 0.18 var(--hue-cool) / 0.3);
  background:
    linear-gradient(160deg, oklch(0.55 0.18 var(--hue-cool) / 0.08), transparent 50%),
    var(--ink-1);
}
.answer__head {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--ink-3);
}
.answer__avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700; color: white;
}
.answer--you .answer__avatar { background: linear-gradient(135deg, oklch(0.65 0.2 340), oklch(0.7 0.18 320)); }
.answer--partner .answer__avatar { background: linear-gradient(135deg, oklch(0.6 0.16 210), oklch(0.7 0.14 230)); }
.answer__name { font-weight: 700; font-size: 14px; }
.answer__time { font-size: 12px; color: var(--text-3); margin-top: 1px; }
.answer__role { margin-left: auto; font-size: 11px; color: var(--text-3); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.answer__body {
  padding: 20px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--text-1);
  flex: 1;
  white-space: pre-wrap;
}
.answer__foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  border-top: 1px solid var(--ink-3);
  background: oklch(0 0 0 / 0.15);
}
.reactions { display: inline-flex; gap: 4px; }
.reactions button {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 16px;
  background: oklch(1 0 0 / 0.04);
  transition: transform .12s var(--tap), background .15s;
}
.reactions button:hover { background: oklch(1 0 0 / 0.1); transform: translateY(-2px); }
.reactions button.on { background: oklch(0.55 0.2 var(--hue-primary) / 0.2); }
.answer__react-shown {
  display: inline-flex; gap: 6px; align-items: center;
  font-size: 13px; color: var(--text-3);
}
.answer__react-shown .pill {
  display: inline-flex; align-items: center; gap: 4px;
  background: oklch(1 0 0 / 0.06); border-radius: 999px;
  padding: 4px 10px; font-weight: 600; color: var(--text-1);
}

.reveal-actions { display: flex; gap: 10px; justify-content: center; margin-top: 20px; flex-wrap: wrap; }

/* History list */
.archive-toolbar {
  display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
  margin-bottom: 18px;
}
.archive-toolbar input {
  flex: 1; min-width: 200px;
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14px;
}
.cat-filters { display: flex; gap: 6px; flex-wrap: wrap; }
.cat-filter {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 12px;
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
  border-radius: 999px;
  font-size: 12.5px; font-weight: 600;
  color: var(--text-2);
  transition: background .12s, border-color .12s, color .12s;
}
.cat-filter.on {
  background: oklch(0.55 0.2 var(--hue-primary) / 0.18);
  border-color: oklch(0.55 0.2 var(--hue-primary) / 0.35);
  color: var(--brand-hi);
}
.cat-filter:hover { background: oklch(1 0 0 / 0.08); }

.timeline { display: flex; flex-direction: column; gap: 14px; }
.entry {
  background: var(--ink-1);
  border: 1px solid var(--ink-3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .15s, transform .12s var(--tap);
  cursor: pointer;
}
.entry:hover { border-color: oklch(0.55 0.2 var(--hue-primary) / 0.3); transform: translateY(-1px); }
.entry__head {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--ink-3);
}
.entry__num {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.14em;
  color: var(--text-3); text-transform: uppercase;
}
.entry__cat {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px; font-weight: 700;
}
.entry__date { margin-left: auto; font-size: 12px; color: var(--text-3); }
.entry__q {
  padding: 14px 18px 4px;
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.35;
}
.entry__answers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--ink-3);
  margin-top: 10px;
}
@media (max-width: 700px) { .entry__answers { grid-template-columns: 1fr; } }
.entry__a {
  background: var(--ink-1);
  padding: 14px 18px;
  display: flex; flex-direction: column; gap: 6px;
}
.entry__a-head { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-3); }
.entry__a-dot { width: 8px; height: 8px; border-radius: 50%; }
.entry__a-dot--you { background: var(--you); }
.entry__a-dot--partner { background: var(--partner); }
.entry__a-text { font-size: 13.5px; line-height: 1.5; color: var(--text-2); }
.entry__a .reaction { margin-left: auto; }

/* Stats / Capsule */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.metric {
  background: var(--ink-1);
  border: 1px solid var(--ink-3);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  position: relative;
  overflow: hidden;
}
.metric__label { font-size: 12px; color: var(--text-3); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.metric__value {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 800; letter-spacing: -0.03em;
  margin-top: 8px;
  line-height: 1;
}
.metric__sub { font-size: 12px; color: var(--text-3); margin-top: 6px; }
.metric--warm .metric__value { color: var(--warm); }
.metric--brand .metric__value { color: var(--brand-hi); }
.metric--cool .metric__value { color: var(--cool); }

.metric__spark {
  margin-top: 12px; display: flex; gap: 3px; align-items: flex-end; height: 28px;
}
.metric__spark span { flex: 1; background: var(--brand); opacity: .6; border-radius: 2px; }

/* Activity heatmap */
.heatmap {
  display: grid;
  grid-template-columns: repeat(14, 1fr);
  gap: 4px;
}
.heatmap__cell {
  aspect-ratio: 1;
  border-radius: 4px;
  background: oklch(1 0 0 / 0.04);
  transition: transform .12s;
}
.heatmap__cell:hover { transform: scale(1.4); z-index: 2; position: relative; }
.heatmap__cell--1 { background: oklch(0.55 0.2 var(--hue-primary) / 0.25); }
.heatmap__cell--2 { background: oklch(0.6 0.2 var(--hue-primary) / 0.5); }
.heatmap__cell--3 { background: oklch(0.65 0.2 var(--hue-primary) / 0.75); }
.heatmap__cell--4 { background: oklch(0.7 0.22 var(--hue-primary)); }

/* category breakdown bar */
.cat-bars { display: flex; flex-direction: column; gap: 10px; }
.cat-bar { display: flex; align-items: center; gap: 12px; font-size: 13px; }
.cat-bar__name { width: 130px; color: var(--text-2); font-weight: 500; }
.cat-bar__track { flex: 1; height: 8px; border-radius: 999px; background: oklch(1 0 0 / 0.05); overflow: hidden; }
.cat-bar__fill { height: 100%; border-radius: 999px; }
.cat-bar__count { width: 30px; text-align: right; color: var(--text-3); font-variant-numeric: tabular-nums; font-weight: 600; }

/* Settings */
.setting {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid oklch(1 0 0 / 0.06);
}
.setting:last-child { border-bottom: none; }
.setting__label { flex: 1; }
.setting__title { font-size: 14.5px; font-weight: 600; }
.setting__desc { font-size: 13px; color: var(--text-3); margin-top: 4px; max-width: 460px; line-height: 1.45; }
.setting__control { flex-shrink: 0; }
.toggle {
  width: 44px; height: 26px;
  border-radius: 999px;
  background: var(--ink-3);
  position: relative;
  transition: background .15s;
  cursor: pointer;
}
.toggle::after {
  content: ''; position: absolute;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: white;
  top: 3px; left: 3px;
  transition: left .15s var(--tap);
}
.toggle.on { background: var(--brand); }
.toggle.on::after { left: 21px; }

.time-input, .select-input {
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 14px;
  color: var(--text-1);
  font-family: var(--font-mono);
}

/* Onboarding */
.ob-wrap {
  max-width: 720px;
  margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 24px;
  padding-top: 20px;
}
.ob-hero {
  text-align: center; padding: 40px 20px 30px;
  background:
    radial-gradient(60% 50% at 50% 0%, oklch(0.55 0.2 var(--hue-primary) / 0.2), transparent 60%),
    var(--ink-1);
  border: 1px solid var(--ink-3);
  border-radius: var(--radius-xl);
}
.ob-hero__heart {
  width: 72px; height: 72px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--brand-lo), var(--brand-hi));
  border-radius: 22px;
  display: grid; place-items: center;
  font-size: 32px;
  box-shadow: 0 16px 40px -10px var(--brand-glow);
}
.ob-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
  text-wrap: balance;
}
.ob-hero__sub { color: var(--text-2); font-size: 16px; max-width: 480px; margin: 0 auto; line-height: 1.5; }

.ob-paths { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 700px) { .ob-paths { grid-template-columns: 1fr; } }
.ob-path {
  padding: 24px;
  border: 1px solid var(--ink-3);
  background: var(--ink-1);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  gap: 12px;
  transition: border-color .15s, transform .12s var(--tap);
  cursor: pointer;
  text-align: left;
  align-items: stretch;
}
.ob-path:hover { border-color: oklch(0.55 0.2 var(--hue-primary) / 0.4); transform: translateY(-2px); }
.ob-path__icon { width: 40px; height: 40px; border-radius: 12px; background: oklch(0.55 0.2 var(--hue-primary) / 0.15); display: grid; place-items: center; color: var(--brand-hi); }
.ob-path__title { font-weight: 700; font-size: 16px; font-family: var(--font-display); }
.ob-path__desc { color: var(--text-3); font-size: 13px; line-height: 1.45; }
.ob-path__cta { margin-top: auto; color: var(--brand-hi); font-size: 13px; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; }

.ob-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}
.ob-feat {
  padding: 16px;
  background: var(--ink-1);
  border: 1px solid var(--ink-3);
  border-radius: 14px;
}
.ob-feat__icon { font-size: 22px; margin-bottom: 8px; }
.ob-feat__title { font-weight: 700; font-size: 13.5px; margin-bottom: 4px; }
.ob-feat__desc { color: var(--text-3); font-size: 12.5px; line-height: 1.4; }

.code-card {
  text-align: center;
  padding: 28px;
  background: linear-gradient(160deg, oklch(0.55 0.2 var(--hue-primary) / 0.16), transparent 60%), var(--ink-1);
  border: 1px solid oklch(0.55 0.2 var(--hue-primary) / 0.3);
  border-radius: var(--radius-xl);
}
.code-card__label { font-size: 12px; color: var(--text-3); letter-spacing: 0.08em; text-transform: uppercase; }
.code-card__code {
  font-family: var(--font-mono);
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  letter-spacing: 0.18em;
  margin: 14px 0;
  background: linear-gradient(120deg, var(--brand-hi), var(--warm));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.code-card__hint { color: var(--text-3); font-size: 13px; max-width: 380px; margin: 6px auto 16px; line-height: 1.5; }
.code-card__actions { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }

.code-input {
  width: 100%;
  background: var(--ink-2);
  border: 1.5px solid var(--ink-3);
  border-radius: 14px;
  padding: 16px 20px;
  font-family: var(--font-mono);
  font-size: 24px;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
  color: var(--text-1);
  transition: border-color .15s;
}
.code-input:focus { border-color: var(--brand); }

/* Landing (logged out preview) */
.landing-hero {
  text-align: center;
  padding: 60px 24px 50px;
  position: relative;
  overflow: hidden;
}
.landing-hero__eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; color: var(--brand-hi); text-transform: uppercase; }
.landing-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 16px auto 18px;
  max-width: 14ch;
  text-wrap: balance;
}
.landing-hero__sub { color: var(--text-2); font-size: 17px; max-width: 540px; margin: 0 auto 28px; line-height: 1.5; }
.landing-hero__ctas { display: inline-flex; gap: 10px; flex-wrap: wrap; justify-content: center; }

.preview-card {
  max-width: 640px; margin: 30px auto 0;
  padding: 24px;
  background: var(--ink-1);
  border: 1px solid var(--ink-3);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  text-align: left;
}
.preview-card .qcard__text { font-size: 22px; }
.preview-card .preview-divider { margin: 16px 0; height: 1px; background: var(--ink-3); }
.preview-card .preview-mini-answers { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.preview-card .preview-mini { background: var(--ink-2); padding: 10px 12px; border-radius: 10px; font-size: 12px; color: var(--text-2); }
.preview-card .preview-mini b { display: block; color: var(--text-1); font-size: 12px; margin-bottom: 4px; }

.section { margin-top: 56px; }
.section__title { font-family: var(--font-display); font-size: 28px; font-weight: 800; letter-spacing: -0.02em; text-align: center; margin-bottom: 8px; }
.section__sub { color: var(--text-3); text-align: center; max-width: 520px; margin: 0 auto 28px; }

.howit { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 800px) { .howit { grid-template-columns: 1fr 1fr; } }
.step {
  background: var(--ink-1);
  border: 1px solid var(--ink-3);
  border-radius: var(--radius-lg);
  padding: 20px;
  position: relative;
}
.step__n {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 800;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: oklch(0.55 0.2 var(--hue-primary) / 0.15);
  color: var(--brand-hi);
  display: grid; place-items: center;
  margin-bottom: 12px;
}
.step__title { font-weight: 700; font-size: 14px; margin-bottom: 6px; }
.step__desc { color: var(--text-3); font-size: 12.5px; line-height: 1.5; }

/* mobile tweaks for screens */
@media (max-width: 880px) {
  .qcard__inner { padding: 22px 18px; }
  .qcard__text { font-size: 22px; }
  .page-head__title { font-size: 22px; }
  .reveal { padding: 22px 16px; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .metric__value { font-size: 28px; }
  .ob-hero { padding: 30px 16px 24px; }
}

