/* ============================================================
   TalkKnow marketing site
   The page borrows the app's own design system: warm paper,
   Fraunces serif display, and the dual "you × them" color story
   (peach + sage) whose overlap is the brand mark. Real app
   screens do the talking; the layout's job is to frame them.
   ============================================================ */

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--ink-800);
  background: var(--paper-50);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ── Type roles ─────────────────────────────────────────────── */

.display {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: var(--fs-display);
  line-height: var(--lh-display);
  letter-spacing: -0.02em;
  color: var(--ink-900);
  text-wrap: balance;
}

.h1 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: var(--fs-h1);
  line-height: var(--lh-heading);
  letter-spacing: -0.02em;
  color: var(--ink-900);
  text-wrap: balance;
}

.h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: var(--fs-h2);
  line-height: var(--lh-heading);
  letter-spacing: -0.015em;
  color: var(--ink-900);
  text-wrap: balance;
}

.lead {
  font-size: var(--fs-lead);
  color: var(--ink-600);
  text-wrap: pretty;
}

.eyebrow {
  display: inline-block;
  font-size: var(--fs-tiny);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--you-600);
  margin-bottom: 14px;
}

.eyebrow--them { color: var(--them-600); }
.eyebrow--overlap { color: var(--overlap); }

/* ── Buttons ────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: var(--r-pill);
  padding: 13px 24px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--dur-fast) var(--ease-spring),
    box-shadow var(--dur-mid) var(--ease-soft);
  min-height: 48px;
}

.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--ink-900);
  color: var(--paper-0);
  box-shadow: var(--shadow-md);
}

.btn--primary:hover { box-shadow: var(--shadow-lg); }

.btn--you {
  background: var(--you-400);
  color: var(--white);
  box-shadow: var(--shadow-you);
}

.btn--ghost {
  background: transparent;
  color: var(--ink-800);
  border: 1.5px solid var(--paper-300);
}

.btn--ghost:hover { border-color: var(--ink-400); }

.btn--ink {
  background: var(--ink-800);
  color: var(--paper-0);
}

.btn--lg {
  padding: 16px 28px;
  font-size: 16px;
  min-height: 54px;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

/* ── Brand mark: the overlap ────────────────────────────────── */

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  text-decoration: none;
}

.brand__mark {
  position: relative;
  width: 38px;
  height: 24px;
  flex: none;
}

.brand__mark::before,
.brand__mark::after {
  content: '';
  position: absolute;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  mix-blend-mode: multiply;
}

.brand__mark::before { left: 0; background: var(--you-400); }
.brand__mark::after { right: 0; background: var(--them-400); }

/* ── Header ─────────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper-50) 82%, transparent);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  transition: box-shadow var(--dur-mid) var(--ease-soft);
}

.site-header.is-scrolled {
  box-shadow: 0 1px 0 var(--paper-200), var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 68px;
}

.nav__links {
  display: flex;
  gap: 4px;
  margin-left: auto;
}

.nav__link {
  display: inline-block;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-600);
  text-decoration: none;
  transition: background var(--dur-fast), color var(--dur-fast);
}

.nav__link:hover {
  background: var(--paper-100);
  color: var(--ink-900);
}

.nav__cta { padding: 10px 20px; min-height: 42px; font-size: 14px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--ink-800);
  transition: transform var(--dur-mid) var(--ease-soft), opacity var(--dur-mid);
}

.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  position: fixed;
  inset: 68px 0 0 0;
  z-index: 40;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 28px var(--gutter);
  background: var(--paper-50);
}

.nav-overlay.is-open { display: flex; }

.nav-overlay a:not(.btn) {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  text-decoration: none;
  padding: 10px 0;
}

.nav-overlay .btn { margin-top: 18px; }

body.menu-open { overflow: hidden; }

/* ── Section scaffolding ────────────────────────────────────── */

.section { padding-block: var(--section-y); }

.section__head {
  max-width: 620px;
  margin-bottom: 52px;
}

.section__head .lead { margin-top: 14px; }

/* ── Phone frame (used everywhere a real screen appears) ────── */

.phone-frame {
  position: relative;
  aspect-ratio: 390 / 844;
  border-radius: clamp(30px, 9cqw, 44px);
  background: var(--ink-900);
  padding: clamp(6px, 2cqw, 9px);
  box-shadow: var(--shadow-xl);
  container-type: inline-size;
}

.phone-frame__screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: clamp(24px, 7.4cqw, 36px);
  overflow: hidden;
  background: var(--paper-50);
}

.phone-frame__screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-frame__island {
  position: absolute;
  top: clamp(12px, 3.4cqw, 17px);
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: clamp(18px, 4.6cqw, 24px);
  border-radius: var(--r-pill);
  background: var(--ink-900);
  z-index: 2;
}

/* ── Hero ───────────────────────────────────────────────────── */

.hero {
  position: relative;
  overflow: clip;
  background: linear-gradient(168deg, var(--you-50) 0%, var(--paper-50) 46%, var(--them-50) 100%);
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  padding-block: clamp(56px, 8vw, 110px);
}

.hero__title em {
  font-style: italic;
  color: var(--you-500);
}

.hero__title .them-word {
  font-style: italic;
  color: var(--them-500);
}

.hero__lead {
  margin-top: 22px;
  max-width: 52ch;
}

.hero__ctas { margin-top: 34px; }

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  font-size: var(--fs-small);
  font-weight: 700;
  color: var(--ink-600);
}

.hero__meta .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--paper-300);
}

/* The overlap halo behind the hero phone */
.hero__phone {
  position: relative;
  max-width: 340px;
  margin-inline: auto;
  width: 100%;
}

.hero__phone::before,
.hero__phone::after {
  content: '';
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  mix-blend-mode: multiply;
  filter: blur(2px);
  z-index: 0;
  pointer-events: none;
}

.hero__phone::before {
  top: -9%;
  left: -34%;
  background: var(--you-100);
}

.hero__phone::after {
  bottom: -9%;
  right: -34%;
  background: var(--them-100);
}

.hero__phone .phone-frame {
  position: relative;
  z-index: 1;
  rotate: 1.6deg;
}

/* Floating accents pulled from the app itself */
.float-chip {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  background: var(--paper-0);
  box-shadow: var(--shadow-lg);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.float-chip--streak {
  top: 9%;
  left: -13%;
  background: linear-gradient(180deg, var(--streak-top), var(--streak-bottom));
  color: var(--you-700);
  rotate: -4deg;
}

.float-chip--match {
  bottom: 12%;
  right: -12%;
  color: var(--them-700);
  rotate: 3deg;
}

.float-chip--match .tick {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--success);
  color: var(--white);
  font-size: 11px;
}

/* Store availability — honest, no fake links */
.store-note {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px 12px 14px;
  border-radius: var(--r-md);
  background: var(--paper-0);
  box-shadow: var(--shadow-md);
}

.store-note__icon {
  width: 34px;
  height: 34px;
  color: var(--ink-900);
  flex: none;
}

.store-note__small {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--you-600);
}

.store-note__big {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--ink-900);
  line-height: 1.25;
}

/* ── The ritual (how it works) ──────────────────────────────── */

.ritual { background: var(--paper-0); }

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

.ritual-step { position: relative; }

.ritual-step__phone {
  max-width: 250px;
  margin-inline: auto;
}

.ritual-step:nth-child(1) .phone-frame { rotate: -1.4deg; }
.ritual-step:nth-child(3) .phone-frame { rotate: 1.4deg; }

.ritual-step__meta {
  margin-top: 26px;
  text-align: center;
  max-width: 320px;
  margin-inline: auto;
}

.ritual-step__who {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: var(--fs-tiny);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ritual-step__who .pip {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.ritual-step__who.you { color: var(--you-600); }
.ritual-step__who.you .pip { background: var(--you-400); }
.ritual-step__who.them { color: var(--them-600); }
.ritual-step__who.them .pip { background: var(--them-400); }
.ritual-step__who.both { color: var(--overlap); }

.ritual-step__who.both .pips {
  position: relative;
  width: 16px;
  height: 10px;
}

.ritual-step__who.both .pips::before,
.ritual-step__who.both .pips::after {
  content: '';
  position: absolute;
  top: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  mix-blend-mode: multiply;
}

.ritual-step__who.both .pips::before { left: 0; background: var(--you-400); }
.ritual-step__who.both .pips::after { right: 0; background: var(--them-400); }

.ritual-step__meta h3 {
  font-family: var(--font-serif);
  font-size: var(--fs-h3);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  margin-top: 10px;
}

.ritual-step__meta p {
  margin-top: 8px;
  font-size: 15px;
  color: var(--ink-600);
}

/* The signature moment: two answers meeting in the middle */
.merge-demo {
  margin-top: clamp(48px, 6vw, 76px);
  padding: clamp(24px, 4vw, 44px);
  border-radius: var(--r-xl);
  background: linear-gradient(120deg, var(--you-50), var(--paper-50) 50%, var(--them-50));
  box-shadow: inset 0 0 0 1px var(--paper-200);
  overflow: hidden;
}

.merge-demo__q {
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(17px, 2vw, 21px);
  color: var(--ink-600);
}

.merge-demo__stage {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.merge-card {
  flex: 0 1 300px;
  padding: 16px 18px;
  border-radius: var(--r-md);
  background: var(--paper-0);
  box-shadow: var(--shadow-md);
  transition: transform 700ms var(--ease-spring);
}

.merge-card .label-tiny {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.merge-card.you { border-top: 3px solid var(--you-400); transform: translateX(-46px); }
.merge-card.you .label-tiny { color: var(--you-600); }
.merge-card.them { border-top: 3px solid var(--them-400); transform: translateX(46px); }
.merge-card.them .label-tiny { color: var(--them-600); }

.merge-card .ans {
  margin-top: 5px;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink-900);
}

.merge-demo__badge {
  order: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: var(--r-pill);
  background: var(--success);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--success) 18%, transparent);
  opacity: 0;
  scale: 0.7;
  transition: opacity 500ms var(--ease-soft) 350ms, scale 600ms var(--ease-spring) 350ms;
}

.merge-demo.is-merged .merge-card { transform: translateX(0); }
.merge-demo.is-merged .merge-demo__badge { opacity: 1; scale: 1; }

@media (prefers-reduced-motion: reduce) {
  .merge-card,
  .merge-demo__badge {
    transition: none;
    transform: none;
    opacity: 1;
    scale: 1;
  }
}

/* ── Screen gallery: everything after the reveal ────────────── */

.gallery { overflow: clip; }

.gallery__rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(252px, 66vw);
  gap: clamp(20px, 3vw, 36px);
  overflow-x: auto;
  padding: 18px 4px 30px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.gallery__rail::-webkit-scrollbar { display: none; }

.gallery-item { scroll-snap-align: center; }

.gallery-item:nth-child(odd) { translate: 0 16px; }

.gallery-item figcaption {
  margin-top: 18px;
  text-align: center;
}

.gallery-item figcaption strong {
  display: block;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink-900);
}

.gallery-item figcaption span {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  color: var(--ink-600);
}

.gallery__hint {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: var(--fs-small);
  font-weight: 700;
  color: var(--ink-400);
}

/* ── Pricing ────────────────────────────────────────────────── */

.pricing { background: var(--paper-0); }

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

.plan {
  display: flex;
  flex-direction: column;
  padding: 30px 28px;
  border-radius: var(--r-lg);
  background: var(--paper-50);
  box-shadow: inset 0 0 0 1px var(--paper-200);
}

.plan.is-featured {
  background: var(--paper-0);
  box-shadow: 0 0 0 2px var(--you-400), var(--shadow-lg);
  position: relative;
}

.plan__chip {
  position: absolute;
  top: -13px;
  left: 28px;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  background: var(--you-400);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.plan__name {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink-600);
}

.plan__price { margin-top: 10px; }

.plan__price .num {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 40px;
  letter-spacing: -0.02em;
  color: var(--ink-900);
}

.plan__price .per {
  margin-left: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-400);
}

.plan__desc {
  margin-top: 8px;
  font-size: 14px;
  color: var(--ink-600);
}

.plan__list {
  margin-top: 18px;
  margin-bottom: 24px;
  display: grid;
  gap: 9px;
  flex: 1;
}

.plan__list li {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-800);
}

.plan__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: -1px;
  display: inline-grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--them-100);
  color: var(--them-600);
  font-size: 10px;
  font-weight: 900;
}

.pricing__note {
  margin-top: 28px;
  text-align: center;
  font-size: var(--fs-small);
  color: var(--ink-600);
}

.sub-disclosure {
  max-width: 720px;
  margin: 26px auto 0;
  padding: 16px 20px;
  border-radius: var(--r-md);
  background: var(--paper-100);
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--ink-600);
}

.sub-disclosure__links {
  margin-top: 8px;
  display: flex;
  gap: 16px;
}

.sub-disclosure__links a {
  color: var(--you-600);
  font-weight: 700;
  text-decoration: none;
}

.sub-disclosure__links a:hover { text-decoration: underline; }

/* ── FAQ ────────────────────────────────────────────────────── */

.faq__list {
  max-width: 720px;
  margin-inline: auto;
  display: grid;
  gap: 10px;
}

.faq__item {
  border-radius: var(--r-md);
  background: var(--paper-0);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-weight: 800;
  font-size: 15.5px;
  color: var(--ink-900);
  cursor: pointer;
  list-style: none;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: '+';
  flex: none;
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--paper-100);
  color: var(--ink-600);
  font-size: 16px;
  font-weight: 700;
  transition: rotate var(--dur-mid) var(--ease-soft), background var(--dur-mid);
}

.faq__item[open] summary::after {
  rotate: 45deg;
  background: var(--you-100);
  color: var(--you-600);
}

.faq__body {
  padding: 0 22px 20px;
  font-size: 15px;
  color: var(--ink-600);
}

/* ── Final CTA ──────────────────────────────────────────────── */

.final-cta {
  position: relative;
  overflow: clip;
  background: var(--ink-900);
  color: var(--paper-50);
}

.final-cta::before,
.final-cta::after {
  content: '';
  position: absolute;
  width: 420px;
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.16;
  filter: blur(4px);
  pointer-events: none;
}

.final-cta::before { left: -140px; top: -160px; background: var(--you-400); }
.final-cta::after { right: -140px; bottom: -180px; background: var(--them-400); }

.final-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  padding-block: clamp(20px, 3vw, 40px);
}

.final-cta__title { color: var(--paper-0); }

.final-cta__lead {
  color: var(--paper-300);
  margin: 18px auto 34px;
  max-width: 46ch;
}

.final-cta .btn-row { justify-content: center; }

.final-cta .store-note {
  background: color-mix(in srgb, var(--paper-0) 8%, transparent);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--paper-0) 22%, transparent);
}

.final-cta .store-note__icon { color: var(--paper-0); }
.final-cta .store-note__small { color: var(--you-300); }
.final-cta .store-note__big { color: var(--paper-0); }

/* ── Footer ─────────────────────────────────────────────────── */

.site-footer {
  background: var(--paper-100);
  padding-block: 44px 30px;
}

.footer__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 22px;
}

.footer__links a {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-600);
  text-decoration: none;
}

.footer__links a:hover { color: var(--ink-900); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--paper-200);
  font-size: var(--fs-small);
  color: var(--ink-400);
}

.flags {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.flags__label { margin-right: 4px; font-weight: 700; }

.flag {
  display: inline-grid;
  place-items: center;
  padding: 3px 8px;
  border-radius: var(--r-pill);
  background: var(--paper-0);
  font-size: 11px;
  font-weight: 800;
  color: var(--ink-600);
}

/* ── Scroll reveal ──────────────────────────────────────────── */

[data-reveal] {
  opacity: 0;
  translate: 0 22px;
  transition: opacity 600ms var(--ease-soft), translate 700ms var(--ease-soft);
}

[data-reveal].is-visible {
  opacity: 1;
  translate: 0 0;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] {
    opacity: 1;
    translate: none;
    transition: none;
  }
  .gallery-item:nth-child(odd) { translate: none; }
}

/* ── Focus visibility ───────────────────────────────────────── */

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2.5px solid var(--you-500);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ── Responsive ─────────────────────────────────────────────── */

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

  .hero__phone {
    max-width: 270px;
    margin-top: 12px;
  }

  .float-chip--streak { left: -6%; }
  .float-chip--match { right: -6%; }

  .ritual__grid { grid-template-columns: 1fr; gap: 56px; }

  .ritual-step__phone { max-width: 230px; }

  .pricing__grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }

  .plan.is-featured { order: -1; }
}

@media (max-width: 760px) {
  .nav__links, .nav__cta { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }

  :root { --section-y: 64px; }

  .merge-card.you { transform: translateX(-16px); }
  .merge-card.them { transform: translateX(16px); }
}
