:root {
  --brand-black: #111111;
  --brand-burgundy: #6E001B;
  --brand-gold: #FFC06E;
  --brand-white: #FFFFFF;

  --burgundy-deep: #4A0012;
  --burgundy-soft: #8E2038;
  --burgundy-tint: #F7EDEF;
  --gold-deep: #E39B35;
  --gold-tint: #FFF6E9;

  --ink: var(--brand-black);
  --ink-soft: #4A4649;
  --ink-muted: #7C7679;
  --surface: var(--brand-white);
  --surface-alt: #FAF8F8;
  --surface-sunk: #F2EEEF;
  --line: #E6E0E1;
  --line-strong: #D3CACC;

  --state-good: #0E7C57;
  --state-good-tint: #E8F5EF;
  --state-warn: #A96A00;
  --state-warn-tint: var(--gold-tint);
  --state-bad: var(--brand-burgundy);
  --state-bad-tint: var(--burgundy-tint);
  --state-idle: var(--ink-muted);

  --font: "Raleway", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 34px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(17, 17, 17, .05), 0 4px 12px rgba(17, 17, 17, .04);
  --shadow-md: 0 2px 6px rgba(17, 17, 17, .06), 0 18px 40px -18px rgba(74, 0, 18, .28);
  --shadow-lg: 0 4px 10px rgba(17, 17, 17, .05), 0 40px 80px -32px rgba(74, 0, 18, .38);

  --gutter: clamp(1.15rem, 5vw, 2.5rem);
  --shell: 1180px;
  --ease: cubic-bezier(.22, .68, .3, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; }

[hidden] { display: none !important; }

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: -.022em;
  font-weight: 800;
}

p { margin: 0; }

a { color: var(--brand-burgundy); }

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

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.mark {
  width: 1.65rem;
  height: auto;
  flex: none;
}
.mark path { fill: currentColor; }

.logo {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--brand-burgundy);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -.045em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(1.6) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header[data-stuck="true"] {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -24px rgba(17, 17, 17, .5);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
}
.site-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}
.site-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 600;
  font-size: .93rem;
  position: relative;
  padding-block: .35rem;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--brand-gold);
  transition: right .32s var(--ease);
}
.site-nav a:hover { color: var(--ink); }
.site-nav a:hover::after { right: 0; }

.btn {
  --btn-bg: var(--brand-burgundy);
  --btn-fg: var(--brand-white);
  --btn-line: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .85rem 1.5rem;
  border: 1.5px solid var(--btn-line);
  border-radius: var(--r-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: -.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), background-color .2s var(--ease), color .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 26px -14px rgba(74, 0, 18, .7); }
.btn:active { transform: translateY(0); }
.btn[disabled] { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--brand-burgundy); --btn-line: var(--line-strong); }
.btn--ghost:hover { --btn-line: var(--brand-burgundy); box-shadow: none; }
.btn--gold { --btn-bg: var(--brand-gold); --btn-fg: var(--brand-black); }
.btn--gold:hover { box-shadow: 0 14px 26px -14px rgba(227, 155, 53, .9); }
.btn--dark { --btn-bg: var(--brand-black); --btn-fg: var(--brand-white); }
.btn--sm { padding: .6rem 1.05rem; font-size: .85rem; }
.btn--block { width: 100%; }
.btn--lg { padding: 1.05rem 2rem; font-size: 1.05rem; }

.hero {
  position: relative;
  padding-block: clamp(2.5rem, 7vw, 4.5rem) clamp(3rem, 9vw, 6rem);
  background:
    radial-gradient(1100px 520px at 82% -8%, var(--gold-tint), transparent 62%),
    radial-gradient(760px 460px at 6% 4%, var(--burgundy-tint), transparent 66%);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem .9rem .4rem .5rem;
  border-radius: var(--r-pill);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hero__eyebrow .dot {
  width: .5rem; height: .5rem;
  border-radius: 50%;
  background: var(--state-good);
  box-shadow: 0 0 0 4px var(--state-good-tint);
}

.hero__head { max-width: 44ch; margin-inline: auto; text-align: center; }
.hero__title {
  position: relative;
  z-index: 0;
  margin-top: 1.15rem;
  font-size: clamp(2.15rem, 7.2vw, 3.65rem);
  letter-spacing: -.038em;
}
.hero__title em {
  font-style: normal;
  position: relative;
  color: var(--brand-burgundy);
  white-space: nowrap;
}
.hero__title em::after {
  content: "";
  position: absolute;
  left: -.04em; right: -.04em;
  bottom: .04em;
  height: .28em;
  background: var(--brand-gold);
  border-radius: 3px;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  animation: swipe .8s .35s var(--ease) forwards;
}
@keyframes swipe { to { transform: scaleX(1); } }

.hero__lead {
  margin: 1.1rem auto 0;
  font-size: clamp(1rem, 2.4vw, 1.14rem);
  color: var(--ink-soft);
  max-width: 52ch;
}

.hero__grid {
  margin-top: clamp(2rem, 5vw, 3rem);
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  padding: clamp(1.15rem, 3.4vw, 1.75rem);
}

.panel[hidden] { display: none; }

.tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .3rem;
  padding: .3rem;
  background: var(--surface-sunk);
  border-radius: var(--r-pill);
  margin-bottom: 1.25rem;
}
.tab {
  border: 0;
  background: transparent;
  border-radius: var(--r-pill);
  padding: .65rem .5rem;
  font-weight: 700;
  font-size: .9rem;
  color: var(--ink-muted);
  cursor: pointer;
  transition: background-color .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
}
.tab[aria-selected="true"] {
  background: var(--surface);
  color: var(--brand-burgundy);
  box-shadow: var(--shadow-sm);
}

.dropzone {
  position: relative;
  display: grid;
  place-items: center;
  gap: .35rem;
  min-height: 15.5rem;
  padding: 1.75rem 1.25rem;
  text-align: center;
  border-radius: var(--r-lg);
  border: 2px dashed var(--line-strong);
  background: var(--surface-alt);
  cursor: pointer;
  transition: border-color .25s var(--ease), background-color .25s var(--ease), transform .25s var(--ease);
}
.dropzone:hover { border-color: var(--burgundy-soft); background: var(--burgundy-tint); }
.dropzone[data-drag="true"] {
  border-color: var(--brand-burgundy);
  background: var(--burgundy-tint);
  transform: scale(1.012);
}
.dropzone__icon {
  width: 3.1rem; height: 3.1rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--brand-burgundy);
  color: var(--brand-white);
  margin-bottom: .35rem;
  transition: transform .3s var(--ease);
}
.dropzone:hover .dropzone__icon { transform: translateY(-3px) scale(1.05); }
.dropzone__title { font-size: 1.16rem; font-weight: 800; letter-spacing: -.02em; }
.dropzone__title span { color: var(--brand-burgundy); text-decoration: underline; text-underline-offset: 3px; }
.dropzone__hint { font-size: .82rem; color: var(--ink-muted); }
.dropzone__badges {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: .35rem .9rem;
  margin-top: .55rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.dropzone__badges span { display: inline-flex; align-items: center; gap: .3rem; }
.dropzone__badges svg { color: var(--state-good); }

.thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(84px, 1fr));
  gap: .6rem;
  margin-top: 1.1rem;
}
.thumb {
  position: relative;
  aspect-ratio: 3 / 4;
  border: 0;
  padding: 0;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--surface-sunk);
  cursor: zoom-in;
  box-shadow: var(--shadow-sm);
  animation: pop .32s var(--ease) both;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17, 17, 17, .42), transparent 52%);
  opacity: 0;
  transition: opacity .25s var(--ease);
}
.thumb:hover::after { opacity: 1; }
@keyframes pop { from { opacity: 0; transform: scale(.9) translateY(6px); } }

.stack-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1rem;
  align-items: center;
}
.stack-count { font-size: .84rem; color: var(--ink-muted); font-weight: 600; margin-right: auto; }

.field { margin-block: .25rem 1rem; }
.field label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: .45rem;
}
.field input {
  width: 100%;
  padding: 1rem 1.1rem;
  border-radius: var(--r-md);
  border: 1.5px solid var(--line-strong);
  background: var(--surface-alt);
  font: inherit;
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: .09em;
  font-variant-numeric: tabular-nums;
  transition: border-color .2s var(--ease), background-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus {
  outline: none;
  border-color: var(--brand-burgundy);
  background: var(--surface);
  box-shadow: 0 0 0 4px var(--burgundy-tint);
}
.field__help { margin-top: .5rem; font-size: .82rem; color: var(--ink-muted); }
.field__help code {
  font-family: inherit;
  font-weight: 800;
  color: var(--brand-burgundy);
  letter-spacing: .04em;
}

.notice {
  display: none;
  gap: .6rem;
  align-items: flex-start;
  margin-top: 1rem;
  padding: .85rem 1rem;
  border-radius: var(--r-md);
  font-size: .88rem;
  font-weight: 600;
  background: var(--state-bad-tint);
  color: var(--burgundy-deep);
  border: 1px solid rgba(110, 0, 27, .18);
}
.notice[data-visible="true"] { display: flex; animation: pop .3s var(--ease) both; }
.notice svg { flex: none; margin-top: .1rem; }
.notice[data-tone="info"] {
  background: var(--gold-tint);
  color: #6B4408;
  border-color: rgba(227, 155, 53, .38);
}

.consent {
  margin-top: 1rem;
  font-size: .76rem;
  color: var(--ink-muted);
  text-align: center;
}

.showcase {
  position: relative;
  display: none;
  align-content: center;
  gap: 1rem;
}
.phone {
  position: relative;
  width: min(268px, 76%);
  margin-inline: auto;
  aspect-ratio: 9 / 18.5;
  border-radius: 2.6rem;
  padding: .6rem;
  background: linear-gradient(155deg, #2A2426, var(--brand-black));
  box-shadow: var(--shadow-lg);
  animation: float 7s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1.6deg); }
  50% { transform: translateY(-14px) rotate(-.4deg); }
}
.phone__screen {
  height: 100%;
  border-radius: 2.1rem;
  background: var(--surface-alt);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.phone__bar {
  height: 1.9rem;
  flex: none;
  display: grid;
  place-items: center;
}
.phone__bar i {
  width: 4.2rem; height: .5rem;
  border-radius: var(--r-pill);
  background: var(--brand-black);
  display: block;
}
.phone__title {
  padding: .2rem 1rem .55rem;
  font-size: .95rem;
  font-weight: 800;
}
.phone__rows { padding: 0 .7rem; display: grid; gap: .3rem; }
.phone__row {
  display: flex;
  justify-content: space-between;
  gap: .5rem;
  padding: .5rem .65rem;
  background: var(--surface);
  border-radius: .6rem;
  font-size: .72rem;
  font-weight: 600;
  color: var(--ink-muted);
}
.phone__row b { color: var(--ink); font-weight: 700; font-variant-numeric: tabular-nums; }
.phone__row[data-glow="true"] {
  box-shadow: 0 0 0 2px var(--brand-gold);
  animation: glow 2.6s var(--ease) infinite;
}
@keyframes glow {
  0%, 100% { box-shadow: 0 0 0 2px var(--brand-gold); }
  50% { box-shadow: 0 0 0 5px rgba(255, 192, 110, .35); }
}
.phone__stamp {
  margin-top: auto;
  margin-inline: .7rem 0;
  margin-bottom: 1rem;
  padding: .7rem .8rem;
  border-radius: .85rem;
  background: var(--state-good-tint);
  border: 1px solid rgba(14, 124, 87, .25);
  display: flex;
  align-items: center;
  gap: .5rem;
  width: calc(100% - 1.4rem);
}
.phone__stamp svg { color: var(--state-good); flex: none; }
.phone__stamp span { font-size: .74rem; font-weight: 800; color: var(--state-good); line-height: 1.25; }

.showcase__caption {
  text-align: center;
  font-size: .84rem;
  font-weight: 600;
  color: var(--ink-muted);
  max-width: 30ch;
  margin-inline: auto;
}

.progress { text-align: center; padding-block: 1.5rem; }
.spinner {
  width: 5.2rem; height: 5.2rem;
  margin-inline: auto;
  position: relative;
}
.spinner svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.spinner circle { fill: none; stroke-width: 6; stroke-linecap: round; }
.spinner .track { stroke: var(--surface-sunk); }
.spinner .arc {
  stroke: var(--brand-burgundy);
  stroke-dasharray: 64 220;
  transform-origin: center;
  animation: spin 1.15s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.spinner .mark {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 1.5rem;
  color: var(--brand-burgundy);
  animation: pulse 1.8s var(--ease) infinite;
}
@keyframes pulse { 0%, 100% { opacity: .35; transform: scale(.94); } 50% { opacity: 1; transform: scale(1); } }

.progress__title { margin-top: 1.25rem; font-size: 1.3rem; }
.progress__sub { margin-top: .4rem; color: var(--ink-muted); font-size: .9rem; }

.steps {
  list-style: none;
  margin: 1.75rem auto 0;
  padding: 0;
  display: grid;
  gap: .5rem;
  max-width: 24rem;
  text-align: left;
}
.steps li {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .7rem .9rem;
  border-radius: var(--r-md);
  background: var(--surface-alt);
  border: 1px solid transparent;
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink-muted);
  transition: all .3s var(--ease);
}
.steps li .bullet {
  width: 1.35rem; height: 1.35rem;
  flex: none;
  border-radius: 50%;
  border: 2px solid var(--line-strong);
  display: grid;
  place-items: center;
  transition: all .3s var(--ease);
}
.steps li .bullet svg { width: .8rem; opacity: 0; transition: opacity .2s var(--ease); }
.steps li[data-state="active"] {
  background: var(--burgundy-tint);
  border-color: rgba(110, 0, 27, .18);
  color: var(--burgundy-deep);
}
.steps li[data-state="active"] .bullet {
  border-color: var(--brand-burgundy);
  border-right-color: transparent;
  animation: spin .8s linear infinite;
}
.steps li[data-state="done"] { color: var(--state-good); background: var(--state-good-tint); }
.steps li[data-state="done"] .bullet {
  background: var(--state-good);
  border-color: var(--state-good);
  color: var(--brand-white);
}
.steps li[data-state="done"] .bullet svg { opacity: 1; }

.report-section {
  --tone: var(--state-idle);
  --tone-tint: var(--surface-alt);
  padding-block: clamp(2.5rem, 7vw, 4.5rem);
  background:
    radial-gradient(900px 420px at 50% -10%, var(--tone-tint), transparent 70%),
    var(--surface);
  border-top: 1px solid var(--line);
  scroll-margin-top: 5rem;
}
.report-section[data-verdict="vouched"] { --tone: var(--state-good); --tone-tint: var(--state-good-tint); }
.report-section[data-verdict="caution"] { --tone: var(--state-warn); --tone-tint: var(--state-warn-tint); }
.report-section[data-verdict="not_vouched"] { --tone: var(--state-bad); --tone-tint: var(--state-bad-tint); }

.verdict {
  text-align: center;
  animation: rise .5s var(--ease) both;
}
.verdict .mark {
  width: clamp(3.6rem, 11vw, 5.4rem);
  margin-inline: auto;
  color: var(--tone);
  animation: stamp .6s .1s var(--ease) both;
}
@keyframes stamp {
  from { opacity: 0; transform: scale(.5) rotate(-12deg); }
  60% { transform: scale(1.12) rotate(3deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}
@keyframes rise { from { opacity: 0; transform: translateY(16px); } }

.verdict__headline {
  margin-top: 1rem;
  font-size: clamp(1.75rem, 6.4vw, 2.85rem);
  color: var(--ink);
  letter-spacing: -.035em;
}
.verdict__headline u {
  text-decoration-color: var(--tone);
  text-decoration-thickness: .085em;
  text-underline-offset: .14em;
}
.verdict__statement {
  margin: .9rem auto 0;
  max-width: 58ch;
  font-size: clamp(.95rem, 2.3vw, 1.05rem);
  color: var(--ink-soft);
  font-weight: 500;
}
.verdict__device {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .4rem .8rem;
  margin-top: 1.15rem;
  padding: .6rem 1.2rem;
  border-radius: var(--r-pill);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-size: .88rem;
  font-weight: 800;
}
.verdict__device span { color: var(--ink-muted); font-weight: 600; font-variant-numeric: tabular-nums; }

.report-card {
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
  background: var(--surface);
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.report-card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem clamp(1rem, 3vw, 1.6rem);
  background: var(--surface-alt);
  border-bottom: 1px solid var(--line);
}
.report-card__head h3 {
  font-size: .8rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 800;
}
.report-card__head span { font-size: .78rem; font-weight: 600; color: var(--ink-muted); }

.summary { padding: .4rem clamp(1rem, 3vw, 1.6rem) 1.1rem; }

.summary__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .35rem .9rem;
  padding: 1rem 0;
  border-bottom: 1px dashed var(--line);
  animation: rise .45s var(--ease) both;
}
.summary__row:last-child { border-bottom: 0; }
.summary__label {
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: .55rem;
}
.summary__label svg { flex: none; }
.summary__row[data-state="pass"] .summary__label svg { color: var(--state-good); }
.summary__row[data-state="warn"] .summary__label svg { color: var(--state-warn); }
.summary__row[data-state="fail"] .summary__label svg { color: var(--state-bad); }
.summary__row[data-state="unknown"] .summary__label svg { color: var(--ink-muted); }

.summary__value {
  justify-self: end;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .07em;
  padding: .3rem .75rem;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.summary__row[data-state="pass"] .summary__value { background: var(--state-good-tint); color: var(--state-good); }
.summary__row[data-state="warn"] .summary__value { background: var(--state-warn-tint); color: var(--state-warn); }
.summary__row[data-state="fail"] .summary__value { background: var(--state-bad-tint); color: var(--state-bad); }
.summary__row[data-state="unknown"] .summary__value { background: var(--surface-sunk); color: var(--ink-muted); }

.summary__plain {
  grid-column: 1 / -1;
  margin-top: .2rem;
  font-size: .9rem;
  color: var(--ink-soft);
  max-width: 62ch;
}

.details__table { display: grid; }
.details__row {
  display: grid;
  grid-template-columns: minmax(8rem, 38%) 1fr;
  gap: .4rem 1rem;
  padding: .8rem clamp(1rem, 3vw, 1.6rem);
  border-top: 1px solid var(--line);
  font-size: .9rem;
}
.details__row:nth-child(odd) { background: var(--surface-alt); }
.details__row dt { color: var(--ink-muted); font-weight: 600; margin: 0; }
.details__row dd {
  margin: 0;
  font-weight: 700;
  overflow-wrap: anywhere;
  font-variant-numeric: tabular-nums;
}

.report__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: clamp(1.5rem, 3.5vw, 2rem);
}
.report__actions .btn { flex: 1 1 9rem; }
.report__foot {
  margin-top: 1rem;
  font-size: .78rem;
  color: var(--ink-muted);
  text-align: center;
}

.band {
  position: relative;
  margin-top: clamp(3rem, 8vw, 5rem);
  padding-block: clamp(3rem, 9vw, 5.5rem);
  background: linear-gradient(128deg, var(--burgundy-deep) 0%, var(--brand-burgundy) 46%, #9B3B1F 78%, var(--gold-deep) 100%);
  color: var(--brand-white);
  clip-path: polygon(0 2.6rem, 100% 0, 100% 100%, 0 calc(100% - 2.6rem));
}
.band h2 { font-size: clamp(1.75rem, 5.4vw, 2.6rem); text-align: center; }
.band p.band__lead {
  margin: .9rem auto 0;
  max-width: 52ch;
  text-align: center;
  color: rgba(255, 255, 255, .82);
  font-weight: 500;
}
.cards {
  margin-top: clamp(1.75rem, 4vw, 2.75rem);
  display: grid;
  gap: 1rem;
}
.card {
  background: var(--surface);
  color: var(--ink);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--brand-gold);
}
.card__num {
  display: inline-grid;
  place-items: center;
  width: 2.4rem; height: 2.4rem;
  border-radius: 50%;
  background: var(--burgundy-tint);
  color: var(--brand-burgundy);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: .9rem;
}
.card h3 { font-size: 1.12rem; }
.card p { margin-top: .5rem; font-size: .92rem; color: var(--ink-soft); }

.section { padding-block: clamp(3rem, 9vw, 5.5rem); }
.section--alt { background: var(--surface-alt); }
.section__head { max-width: 44ch; }
.section__kicker {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-burgundy);
}
.section__head h2 { margin-top: .7rem; font-size: clamp(1.65rem, 5vw, 2.4rem); }
.section__head p { margin-top: .85rem; color: var(--ink-soft); }

.checks { margin-top: 2rem; display: grid; gap: 1rem; }
.check {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.35rem;
}
.check__icon {
  width: 2.6rem; height: 2.6rem;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  background: var(--burgundy-tint);
  color: var(--brand-burgundy);
  margin-bottom: .85rem;
}
.check h3 { font-size: 1.05rem; }
.check p { margin-top: .45rem; font-size: .9rem; color: var(--ink-soft); }

.faq { margin-top: 2rem; display: grid; gap: .6rem; }
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--surface);
  overflow: hidden;
}
.faq summary {
  padding: 1rem 1.15rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: .96rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--brand-burgundy);
  line-height: 1;
  transition: transform .25s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { padding: 0 1.15rem 1.15rem; font-size: .92rem; color: var(--ink-soft); }

.site-footer {
  background: var(--brand-black);
  color: rgba(255, 255, 255, .68);
  padding-block: clamp(2.5rem, 6vw, 3.5rem);
}
.site-footer .logo { color: var(--brand-white); }
.site-footer__grid { display: grid; gap: 1.75rem; }
.site-footer p { font-size: .88rem; max-width: 38ch; margin-top: .9rem; }
.site-footer nav { display: grid; gap: .5rem; }
.site-footer nav a { color: rgba(255, 255, 255, .78); text-decoration: none; font-size: .9rem; font-weight: 600; }
.site-footer nav a:hover { color: var(--brand-gold); }
.site-footer__bar {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .78rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.25rem;
  justify-content: space-between;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(17, 17, 17, .84);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s var(--ease), visibility .28s var(--ease);
}
.lightbox[data-open="true"] { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: min(92vw, 720px);
  max-height: 82vh;
  width: auto;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  transform: scale(.94);
  transition: transform .28s var(--ease);
}
.lightbox[data-open="true"] img { transform: scale(1); }
.lightbox__close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 2.75rem; height: 2.75rem;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, .16);
  color: var(--brand-white);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background-color .2s var(--ease);
}
.lightbox__close:hover { background: rgba(255, 255, 255, .3); }
.lightbox__caption {
  position: absolute;
  bottom: 1.25rem;
  left: 0; right: 0;
  text-align: center;
  color: rgba(255, 255, 255, .75);
  font-size: .82rem;
  font-weight: 600;
}

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal[data-shown="true"] { opacity: 1; transform: none; }

@media (min-width: 700px) {
  .site-nav { display: flex; }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .checks { grid-template-columns: repeat(2, 1fr); }
  .thumbs { grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); }
  .site-footer__grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .report__actions .btn { flex: 0 1 auto; }
}

@media (min-width: 1040px) {
  .hero__grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); align-items: start; }
  .showcase { display: grid; }
  .checks { grid-template-columns: repeat(4, 1fr); }
  .summary__row { grid-template-columns: 13rem auto 1fr; align-items: center; }
  .summary__plain { grid-column: 3; margin-top: 0; }
  .report__actions { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
