/* ==========================================================================
   Buddy Recall — buddyrecall.app
   Palette and marks follow the Concept 3 brand board.
   Typographic rule: anything recalled from a game — handles, realms, years —
   is set in mono. Marketing prose is not. The past is monospaced.
   ========================================================================== */

@font-face {
  font-family: 'Outfit';
  src: url('fonts/Outfit-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Outfit';
  src: url('fonts/Outfit-800.woff2') format('woff2');
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Sans';
  src: url('fonts/IBMPlexSans-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Sans';
  src: url('fonts/IBMPlexSans-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: url('fonts/JetBrainsMono-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: url('fonts/JetBrainsMono-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}

:root {
  --bg:        #120C24;
  --surface:   #1A1330;
  --surface-2: #241C3D;
  --line:      #2B2540;

  --purple:    #7B4DFF;
  --pink:      #FF3ED1;
  --teal:      #18E0C4;
  --yellow:    #FFD23F;
  --lavender:  #9B8FFF;
  --mist:      #EDEBFF;

  --text:      #EDEBFF;
  --muted:     #9B8FFF;
  --dim:       #6F6790;

  --display: 'Outfit', system-ui, sans-serif;
  --body: 'IBM Plex Sans', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --wrap: 1080px;
  --radius: 16px;
  --radius-lg: 24px;

  color-scheme: dark;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; }

a { color: var(--lavender); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--pink); }

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

.skip {
  position: absolute; left: -9999px;
  background: var(--pink); color: #fff;
  padding: .6rem 1rem; border-radius: 0 0 8px 0; z-index: 100;
}
.skip:focus { left: 0; top: 0; }

/* ---------- layout ---------- */

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 1.5rem; }

.band { padding-block: clamp(4rem, 10vw, 7rem); }
.band--tight { padding-block: clamp(3rem, 7vw, 4.5rem); }
.band--edge { border-top: 1px solid var(--line); }

/* ---------- type ---------- */

.eyebrow {
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1rem;
}

h1, h2, h3 { font-family: var(--display); font-weight: 800; letter-spacing: -.02em; line-height: 1.08; margin: 0; }

.h-hero { font-size: clamp(2.3rem, 6.4vw, 4.1rem); }
.h-sect { font-size: clamp(1.9rem, 4.2vw, 2.9rem); margin-bottom: 1rem; }
.h-card { font-size: 1.15rem; font-weight: 600; letter-spacing: -.01em; }

.lede {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--muted);
  max-width: 46ch;
  margin: 1.25rem 0 0;
}
.lede--center { margin-inline: auto; text-align: center; }

.prose { max-width: 68ch; }
.prose p { color: var(--muted); }
.prose h2 { margin-top: 2.75rem; margin-bottom: .75rem; font-size: 1.5rem; }
.prose h3 { margin-top: 1.75rem; margin-bottom: .4rem; font-size: 1.1rem; font-weight: 600; color: var(--text); }
.prose ul { color: var(--muted); padding-left: 1.15rem; }
.prose li { margin-bottom: .4rem; }
.prose li::marker { color: var(--purple); }

/* the signature type rule: recalled game data is mono */
.mono { font-family: var(--mono); font-size: .93em; }
.mono--strong { font-weight: 700; }

/* ---------- header ---------- */

.masthead {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.masthead__in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-block: .85rem;
}
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--text); }
.brand:hover { color: var(--text); }
.brand__mark { width: 34px; height: 34px; flex: none; }
.brand__name { font-family: var(--display); font-weight: 800; font-size: 1.12rem; letter-spacing: -.02em; }
.brand__name em { font-style: normal; color: var(--pink); }

.nav { display: flex; align-items: center; gap: 1.4rem; }
.nav a {
  font-size: .92rem; color: var(--muted); text-decoration: none;
  font-family: var(--display); font-weight: 600;
}
.nav a:hover { color: var(--text); }
@media (max-width: 640px) { .nav a.nav--opt { display: none; } }

/* ---------- hero ---------- */

.hero { position: relative; overflow: hidden; padding-block: clamp(3.5rem, 9vw, 6.5rem) clamp(3rem, 8vw, 5rem); }
.hero::before {
  content: ''; position: absolute; inset: -30% 20% auto -10%; height: 70vh;
  background: radial-gradient(circle at 30% 30%, rgba(123,77,255,.30), transparent 62%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; inset: -10% -20% auto 40%; height: 60vh;
  background: radial-gradient(circle at 60% 40%, rgba(255,62,209,.17), transparent 60%);
  pointer-events: none;
}
.hero__in { position: relative; display: grid; gap: clamp(2.5rem, 6vw, 4rem); align-items: center; }
@media (min-width: 900px) { .hero__in { grid-template-columns: 1.05fr .95fr; } }

.status {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--mono); font-size: .74rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--teal);
  border: 1px solid color-mix(in srgb, var(--teal) 35%, transparent);
  background: color-mix(in srgb, var(--teal) 9%, transparent);
  padding: .35rem .8rem; border-radius: 999px; margin-bottom: 1.6rem;
}
.status__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); flex: none; }

.hero h1 em { font-style: normal; color: var(--pink); }
.hero__tag {
  margin-top: 2rem; font-family: var(--mono); font-size: .8rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--dim);
}

/* Store buttons. Deliberately NOT the official Apple/Google badge artwork and
   deliberately not links: both stores require their badge to point at a live
   listing. Swap these for the real badges when there is something to link to. */
.stores { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.6rem; }
.store {
  display: inline-flex; align-items: center; gap: .75rem;
  padding: .6rem 1.15rem;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 12px; cursor: default;
}
.store svg { width: 21px; height: 21px; fill: var(--lavender); flex: none; }
.store__txt { display: flex; flex-direction: column; line-height: 1.18; }
.store__txt small {
  font-family: var(--mono); font-size: .55rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase; color: var(--muted);
}
.store__txt b {
  font-family: var(--display); font-weight: 600; font-size: 1rem;
  color: var(--text); letter-spacing: -.01em;
}

/* pixel dust — echoes the brand board's mark treatment */
.dust { position: absolute; inset: 0; pointer-events: none; }
.dust i { position: absolute; display: block; background: var(--purple); opacity: .5; }
.dust i:nth-child(1) { width: 6px; height: 6px; top: 12%; left: 61%; }
.dust i:nth-child(2) { width: 4px; height: 4px; top: 20%; left: 71%; background: var(--pink); }
.dust i:nth-child(3) { width: 8px; height: 8px; top: 31%; left: 66%; opacity: .3; }
.dust i:nth-child(4) { width: 4px; height: 4px; top: 8%; left: 79%; background: var(--pink); opacity: .35; }
.dust i:nth-child(5) { width: 5px; height: 5px; top: 44%; left: 76%; opacity: .25; }
@media (max-width: 900px) { .dust { display: none; } }

/* ---------- match card (the signature) ---------- */

.match {
  position: relative;
  background: linear-gradient(168deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: 0 28px 70px -30px rgba(123,77,255,.75), 0 2px 0 rgba(255,255,255,.03) inset;
}
.match__dir {
  display: inline-flex; align-items: center; gap: .5rem;
  background: color-mix(in srgb, var(--purple) 22%, transparent);
  border: 1px solid color-mix(in srgb, var(--purple) 40%, transparent);
  color: var(--mist);
  font-size: .82rem; font-weight: 500;
  padding: .3rem .7rem; border-radius: 999px;
}
.match__who { font-family: var(--mono); font-weight: 700; font-size: clamp(1.6rem, 4vw, 2.1rem); margin: 1rem 0 .2rem; letter-spacing: -.02em; }
.match__meta { color: var(--muted); font-size: .9rem; margin: 0 0 1.15rem; }
.match__meta .sig { color: var(--teal); font-family: var(--mono); font-weight: 700; }

.pills { display: flex; flex-wrap: wrap; gap: .5rem; margin: 0; padding: 0; list-style: none; }
.pill {
  font-family: var(--mono); font-size: .8rem;
  padding: .35rem .7rem; border-radius: 8px;
  border: 1px solid transparent; white-space: nowrap;
}
.pill--yes {
  color: var(--teal);
  background: color-mix(in srgb, var(--teal) 12%, transparent);
  border-color: color-mix(in srgb, var(--teal) 32%, transparent);
}
.pill--approx {
  color: var(--yellow);
  background: color-mix(in srgb, var(--yellow) 12%, transparent);
  border-color: color-mix(in srgb, var(--yellow) 32%, transparent);
}
.match__verdict {
  margin: 1.15rem 0 0; padding-top: 1.15rem;
  border-top: 1px solid var(--line);
  font-size: .95rem; color: var(--muted);
}
.match__verdict b { color: var(--text); font-weight: 500; }

/* pill stamp-in — the one orchestrated moment on the page */
.match .pill, .match__verdict { animation: stamp .42s cubic-bezier(.2,.9,.3,1.3) backwards; }
.match .pill:nth-child(1) { animation-delay: .10s; }
.match .pill:nth-child(2) { animation-delay: .20s; }
.match .pill:nth-child(3) { animation-delay: .30s; }
.match .pill:nth-child(4) { animation-delay: .40s; }
.match__verdict { animation-delay: .55s; animation-timing-function: ease-out; }
@keyframes stamp {
  from { opacity: 0; transform: scale(.9) translateY(4px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .match .pill, .match__verdict { animation: none; }
}

/* ---------- generic cards / grids ---------- */

.grid { display: grid; gap: 1.1rem; }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.card p { color: var(--muted); margin: .5rem 0 0; font-size: .96rem; }

/* ---------- steps (a genuine ordered sequence) ---------- */

.steps { counter-reset: s; display: grid; gap: 1.6rem; margin: 0; padding: 0; list-style: none; }
@media (min-width: 820px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

/* min-width:0 — grid items default to min-width:auto, which lets the mono
   example strings below force each track wider than its share and shove the
   third step off the page. */
.step { position: relative; padding-top: 2.9rem; min-width: 0; }
.step::before {
  counter-increment: s; content: counter(s, decimal-leading-zero);
  position: absolute; top: 0; left: 0;
  font-family: var(--mono); font-weight: 700; font-size: .8rem;
  color: var(--purple); letter-spacing: .1em;
}
.step::after {
  content: ''; position: absolute; top: 1.85rem; left: 0; width: 2.2rem; height: 2px;
  background: linear-gradient(90deg, var(--purple), transparent);
}
.step h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: .5rem; }
.step p { color: var(--muted); margin: 0; font-size: .96rem; }
.step__eg {
  display: block; margin-top: .9rem; padding: .7rem .85rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: 10px;
  font-family: var(--mono); font-size: .78rem; color: var(--lavender);
  line-height: 1.7; overflow-wrap: anywhere;
}

/* ---------- direction pair ---------- */

.dirs { display: grid; gap: 1.1rem; }
@media (min-width: 760px) { .dirs { grid-template-columns: 1fr 1fr; } }
.dir { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; }
.dir__label {
  font-family: var(--mono); font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; margin: 0 0 .7rem;
}
.dir--seek { border-top: 2px solid var(--purple); }
.dir--seek .dir__label { color: var(--purple); }
.dir--found { border-top: 2px solid var(--pink); }
.dir--found .dir__label { color: var(--pink); }
.dir p { margin: 0; color: var(--muted); font-size: .96rem; }
.dir p + p { margin-top: .6rem; }

/* ---------- trust ---------- */

.trust { display: grid; gap: 1.1rem; margin: 2.5rem 0 0; padding: 0; list-style: none; }
@media (min-width: 760px) { .trust { grid-template-columns: 1fr 1fr; gap: 1.1rem 2.4rem; } }
.trust li {
  display: grid; grid-template-columns: auto 1fr; gap: .85rem;
  align-items: start; padding-bottom: 1.1rem; border-bottom: 1px solid var(--line);
}
.trust .no {
  font-family: var(--mono); font-weight: 700; font-size: .95rem;
  color: var(--pink); line-height: 1.5;
}
.trust b { display: block; font-weight: 500; color: var(--text); font-family: var(--display); font-size: 1.02rem; }
.trust span.t { color: var(--muted); font-size: .93rem; }

/* ---------- device mockups ---------- */

.devices {
  display: flex; gap: 1.75rem; justify-content: center; align-items: flex-start;
  flex-wrap: wrap; margin-top: 3rem;
}
.device {
  width: 268px; min-height: 620px; flex: none;
  background: var(--surface);
  border: 8px solid #2A2342;
  border-radius: 36px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 30px 60px -28px rgba(0,0,0,.9);
}
.device__bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: .7rem 1.1rem .3rem;
  font-family: var(--mono); font-size: .68rem; color: var(--dim);
}
.device__body { padding: .6rem 1rem 1.4rem; }
.device__eyebrow {
  font-family: var(--mono); font-size: .6rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--dim); margin: .5rem 0 .2rem;
}
.device__user { font-family: var(--display); font-weight: 800; font-size: 1.25rem; color: var(--purple); margin: 0 0 .15rem; }
.device__sub { font-size: .72rem; color: var(--muted); margin: 0 0 1rem; line-height: 1.45; }

.mini {
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: 14px; padding: .8rem;
}
.mini__dir {
  display: inline-block; font-size: .62rem; color: var(--mist);
  background: color-mix(in srgb, var(--purple) 25%, transparent);
  border-radius: 999px; padding: .2rem .5rem; margin-bottom: .55rem;
}
.mini__who { font-family: var(--mono); font-weight: 700; font-size: 1.05rem; margin: 0; }
.mini__meta { font-size: .68rem; color: var(--muted); margin: .1rem 0 .6rem; }
.mini .pill { font-size: .6rem; padding: .2rem .4rem; border-radius: 6px; }
.mini__act {
  display: flex; justify-content: space-between; margin-top: .9rem;
  font-size: .66rem; color: var(--dim);
}

.tl { margin: 1.1rem 0 0; padding: 0 0 0 .9rem; list-style: none; border-left: 2px solid var(--purple); }
.tl li { position: relative; margin-bottom: .7rem; }
.tl li::before {
  content: ''; position: absolute; left: -1.28rem; top: .45rem;
  width: 8px; height: 8px; border-radius: 50%; background: var(--pink);
}
.tl__yrs { font-family: var(--mono); font-size: .62rem; color: var(--muted); }
.tl__box { background: var(--surface-2); border: 1px solid var(--line); border-radius: 10px; padding: .5rem .6rem; margin-top: .25rem; }
.tl__kind { font-family: var(--mono); font-size: .55rem; font-weight: 700; letter-spacing: .1em; color: var(--purple); }
.tl__name { font-family: var(--mono); font-weight: 700; font-size: .88rem; margin: .1rem 0 .15rem; }
.tl__where { font-size: .64rem; color: var(--muted); }

.field { margin-bottom: .7rem; }
.field__lbl {
  font-family: var(--mono); font-size: .58rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
  display: block; margin-bottom: .25rem;
}
.field__lbl .req { color: var(--pink); }
.field__in {
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: 9px; padding: .5rem .6rem;
  font-family: var(--mono); font-size: .76rem; color: var(--text);
}
.field__in.is-empty { color: var(--dim); }
.chips { display: flex; gap: .4rem; }
.chip {
  font-size: .68rem; padding: .3rem .7rem; border-radius: 999px;
  border: 1px solid var(--line); color: var(--muted);
}
.chip.is-on { background: var(--pink); border-color: var(--pink); color: #fff; font-weight: 500; }

.msgs { display: flex; flex-direction: column; gap: .4rem; align-items: flex-end; margin-top: .9rem; }
.msg {
  font-size: .74rem; padding: .4rem .7rem; border-radius: 13px;
  max-width: 82%;
}
.msg--them { align-self: flex-start; background: var(--surface-2); border: 1px solid var(--line); color: var(--mist); }
.msg--me { background: var(--pink); color: #fff; }

.handles { display: flex; flex-wrap: wrap; gap: .3rem; margin: .5rem 0 0; }
.handles span {
  font-family: var(--mono); font-size: .6rem; color: var(--muted);
  background: var(--surface-2); border: 1px solid var(--line);
  padding: .18rem .45rem; border-radius: 6px;
}

.device__cap {
  text-align: center; font-family: var(--mono); font-size: .72rem;
  color: var(--dim); margin-top: .9rem; letter-spacing: .04em;
}
.device-wrap { display: flex; flex-direction: column; align-items: center; }

/* ---------- faq ---------- */

.faq { margin-top: 2.5rem; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none;
  padding: 1.15rem 2.5rem 1.15rem 0; position: relative;
  font-family: var(--display); font-weight: 600; font-size: 1.05rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; position: absolute; right: .3rem; top: 50%; transform: translateY(-50%);
  font-family: var(--mono); color: var(--purple); font-size: 1.3rem;
}
.faq details[open] summary::after { content: '\2013'; }
.faq details[open] summary { color: var(--pink); }
.faq__a { padding: 0 0 1.3rem; color: var(--muted); max-width: 62ch; }
.faq__a p { margin: 0 0 .7rem; }
.faq__a p:last-child { margin-bottom: 0; }

/* ---------- changelog ---------- */

.log { list-style: none; margin: 2.5rem 0 0; padding: 0; }
.log li { display: grid; gap: .35rem 1.6rem; padding-bottom: 2rem; border-bottom: 1px solid var(--line); margin-bottom: 2rem; }
@media (min-width: 720px) { .log li { grid-template-columns: 9rem 1fr; } }
.log__date { font-family: var(--mono); font-size: .8rem; color: var(--purple); font-weight: 700; }
.log__body h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: .4rem; }
.log__body p, .log__body ul { color: var(--muted); font-size: .96rem; margin: 0; }
.log__body ul { padding-left: 1.1rem; margin-top: .5rem; }

/* ---------- closer ---------- */

.closer { text-align: center; }
.closer__line {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.3rem, 3.6vw, 2.2rem);
  letter-spacing: -.01em; line-height: 1.3;
}
.closer__line em { font-style: normal; color: var(--pink); }

/* ---------- footer ---------- */

.foot { border-top: 1px solid var(--line); padding-block: 3rem 4rem; }
.foot__in { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: space-between; align-items: flex-start; }
.foot__links { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.foot a { font-size: .9rem; color: var(--muted); text-decoration: none; }
.foot a:hover { color: var(--pink); }
.foot__note { font-size: .8rem; color: var(--dim); margin: 1.5rem 0 0; max-width: 52ch; line-height: 1.6; }
.foot__mark { display: flex; align-items: center; gap: .55rem; }
.foot__mark svg { width: 26px; height: 26px; }
.foot__mark span { font-family: var(--display); font-weight: 800; font-size: 1rem; }

/* ---------- notice (legal drafts) ---------- */

.notice {
  border: 1px solid color-mix(in srgb, var(--yellow) 40%, transparent);
  background: color-mix(in srgb, var(--yellow) 8%, transparent);
  border-radius: var(--radius); padding: 1.1rem 1.25rem;
  font-size: .92rem; color: var(--mist); margin-bottom: 2.5rem;
}
.notice b { color: var(--yellow); }

/* ---------- confirm (email confirmation terminus) ---------- */

/* Panels are all present in the markup; confirm.js shows exactly one by toggling
   the `hidden` attribute. Visibility deliberately does NOT live in this file —
   a stale cached copy of this stylesheet would otherwise stack all four panels
   on top of each other, and this page has to be correct on first load or it is
   worse than useless. With JS off, `neutral` shows; it reads true either way. */
.confirm { max-width: 34rem; margin-inline: auto; text-align: center; }
.confirm [hidden] { display: none !important; }

.confirm__stamp {
  display: grid; place-items: center;
  width: 66px; height: 66px; margin: 0 auto 1.75rem;
  border-radius: 50%; font-size: 1.7rem; line-height: 1;
  color: var(--muted);
  background: var(--surface); border: 1px solid var(--line);
  /* same stamp-in as the match card pills — the one motion this site has */
  animation: stamp .42s cubic-bezier(.2,.9,.3,1.3) backwards;
  animation-delay: .08s;
}
.confirm__stamp--ok {
  color: var(--teal);
  border-color: color-mix(in srgb, var(--teal) 45%, transparent);
  background: color-mix(in srgb, var(--teal) 10%, transparent);
}
.confirm__stamp--warn {
  color: var(--yellow);
  border-color: color-mix(in srgb, var(--yellow) 45%, transparent);
  background: color-mix(in srgb, var(--yellow) 10%, transparent);
}
.confirm__stamp--bad {
  color: var(--pink); font-weight: 800;
  border-color: color-mix(in srgb, var(--pink) 45%, transparent);
  background: color-mix(in srgb, var(--pink) 10%, transparent);
}
@media (prefers-reduced-motion: reduce) { .confirm__stamp { animation: none; } }

.confirm__h { margin-bottom: .9rem; }
.confirm .lede { margin-inline: auto; }

.confirm__hint {
  margin: 1.5rem auto 0; max-width: 44ch;
  font-size: .88rem; line-height: 1.65; color: var(--dim);
}
.confirm__hint a { color: var(--muted); }
.confirm__hint a:hover { color: var(--pink); }

.confirm__detail {
  margin: 1.25rem auto 0; max-width: 44ch;
  padding: .7rem .9rem; font-size: .8rem; text-align: left;
  color: var(--mist); word-break: break-word;
  background: var(--surface-2); border: 1px solid var(--line); border-radius: 10px;
}

.confirm__acts { margin-top: 2.25rem; }
.confirm__btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .8rem 1.75rem; border-radius: 12px;
  font-family: var(--display); font-weight: 600; font-size: 1rem;
  letter-spacing: -.01em; text-decoration: none;
  color: #fff; background: var(--purple);
  border: 1px solid color-mix(in srgb, var(--purple) 70%, #fff);
  transition: background .16s ease, transform .16s ease;
}
.confirm__btn:hover { background: color-mix(in srgb, var(--purple) 82%, #fff); color: #fff; }
.confirm__btn:active { transform: translateY(1px); }
