/* ==========================================================================
   Drakaris Protect — Brand Protection & Verification Center
   drakaris-protect.space
   Official reference: https://www.drakaris.com/
   Stylesheet: obsidian dossier theme (black / crimson / gold)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  --obsidian: #07070a;
  --obsidian-2: #0b0b11;
  --obsidian-3: #101017;
  --panel: rgba(255, 255, 255, 0.022);
  --panel-strong: rgba(255, 255, 255, 0.04);

  --crimson: #c4132b;
  --crimson-bright: #e2213c;
  --crimson-deep: #7e0a1a;
  --gold: #d8b26a;
  --gold-bright: #f0d9a0;
  --gold-deep: #8a6b32;

  --ink: #f3efe8;
  --ink-soft: #c8c3bb;
  --ink-mute: #8d8880;
  --ink-faint: #625e58;

  --hair: rgba(216, 178, 106, 0.18);
  --hair-strong: rgba(216, 178, 106, 0.34);
  --hair-crimson: rgba(196, 19, 43, 0.32);

  --font-display: "Cinzel", "Trajan Pro", "Times New Roman", Georgia, serif;
  --font-body: "Sora", "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;

  --wrap: 1240px;
  --gutter: clamp(1.15rem, 4vw, 3rem);
  --radius: 3px;

  --shadow-lift: 0 26px 60px -30px rgba(0, 0, 0, 0.95);
  --shadow-gold: 0 0 0 1px var(--hair-strong), 0 30px 60px -34px rgba(216, 178, 106, 0.35);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background-color: var(--obsidian);
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 0.4vw + 0.86rem, 1.02rem);
  line-height: 1.78;
  font-weight: 300;
  letter-spacing: 0.005em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Atmospheric background: scale texture + hairline grid + ember glows */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    radial-gradient(58rem 40rem at 82% -12%, rgba(196, 19, 43, 0.16), transparent 62%),
    radial-gradient(46rem 34rem at 4% 8%, rgba(216, 178, 106, 0.075), transparent 60%),
    radial-gradient(60rem 46rem at 50% 118%, rgba(126, 10, 26, 0.16), transparent 64%),
    url("../img/pattern-scales.png");
  background-size: auto, auto, auto, 320px 320px;
  background-repeat: no-repeat, no-repeat, no-repeat, repeat;
  opacity: 0.9;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(to right, rgba(216, 178, 106, 0.045) 0 1px, transparent 1px 25%),
    repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.014) 0 1px, transparent 1px 8rem);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

a:hover,
a:focus-visible {
  color: var(--gold-bright);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

::selection {
  background: rgba(196, 19, 43, 0.5);
  color: #fff;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: 0.012em;
  margin: 0 0 0.7em;
}

h1 {
  font-size: clamp(2.05rem, 4.4vw + 0.5rem, 4rem);
  letter-spacing: 0.005em;
}

h2 {
  font-size: clamp(1.6rem, 2.1vw + 0.72rem, 2.6rem);
}

h3 {
  font-size: clamp(1.06rem, 0.6vw + 0.9rem, 1.32rem);
  letter-spacing: 0.02em;
}

h4 {
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

p {
  margin: 0 0 1.15rem;
}

p:last-child {
  margin-bottom: 0;
}

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

hr {
  border: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--hair-strong), transparent);
  margin: 3rem 0;
}

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  position: relative;
  padding-block: clamp(3.6rem, 7vw, 6.6rem);
}

.section + .section {
  border-top: 1px solid rgba(255, 255, 255, 0.045);
}

.section--tint {
  background:
    linear-gradient(180deg, rgba(196, 19, 43, 0.05), transparent 45%),
    rgba(0, 0, 0, 0.35);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--gold);
  color: #0a0a0d;
  padding: 0.7rem 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Section heading block with ledger numbering */
.sec-head {
  max-width: 68ch;
  margin-bottom: clamp(2rem, 3.6vw, 3.1rem);
}

.sec-head--center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.05rem;
}

.sec-head--center .eyebrow {
  justify-content: center;
}

.eyebrow::before {
  content: "";
  width: clamp(1.4rem, 4vw, 2.6rem);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
  flex: none;
}

.eyebrow__num {
  color: var(--crimson-bright);
}

.lede {
  font-size: clamp(1rem, 0.55vw + 0.9rem, 1.14rem);
  color: var(--ink-soft);
  max-width: 66ch;
}

.sec-head--center .lede {
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.92rem 1.6rem;
  font-family: var(--font-mono);
  font-size: 0.755rem;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  line-height: 1.2;
  border: 1px solid var(--hair-strong);
  background: var(--btn-bg);
  color: var(--ink);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  clip-path: polygon(11px 0, 100% 0, 100% calc(100% - 11px), calc(100% - 11px) 100%, 0 100%, 0 11px);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn__ico {
  width: 1em;
  height: 1em;
  flex: none;
  transition: transform 0.3s var(--ease);
}

.btn:hover .btn__ico {
  transform: translate(2px, -2px);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 45%, var(--gold-deep));
  border-color: var(--gold-bright);
  color: #100c05;
  font-weight: 600;
  box-shadow: 0 18px 38px -22px rgba(216, 178, 106, 0.7);
}

.btn--gold:hover,
.btn--gold:focus-visible {
  color: #100c05;
  box-shadow: 0 22px 46px -20px rgba(240, 217, 160, 0.8);
}

.btn--crimson {
  background: linear-gradient(135deg, var(--crimson-bright), var(--crimson) 55%, var(--crimson-deep));
  border-color: rgba(226, 33, 60, 0.85);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 18px 38px -24px rgba(196, 19, 43, 0.9);
}

.btn--crimson:hover,
.btn--crimson:focus-visible {
  color: #fff;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.02);
  color: var(--ink);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: var(--gold);
  color: var(--gold-bright);
  background: rgba(216, 178, 106, 0.07);
}

.btn--wide {
  width: 100%;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* --------------------------------------------------------------------------
   5. Header
   -------------------------------------------------------------------------- */
.masthead {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 7, 10, 0.72);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.masthead.is-stuck {
  background: rgba(5, 5, 8, 0.93);
  border-bottom-color: var(--hair);
  box-shadow: 0 18px 40px -30px #000;
}

/* Official-site announcement strip */
.official-strip {
  background: linear-gradient(90deg, rgba(126, 10, 26, 0.55), rgba(7, 7, 10, 0.2) 55%, rgba(126, 10, 26, 0.5));
  border-bottom: 1px solid var(--hair-crimson);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

.official-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.5rem 0;
  text-align: center;
  flex-wrap: wrap;
  color: var(--ink-soft);
}

.official-strip__label {
  color: var(--gold);
  text-transform: uppercase;
}

.official-strip a {
  color: #fff;
  border-bottom: 1px solid var(--hair-strong);
  padding-bottom: 1px;
  word-break: break-all;
}

.official-strip a:hover {
  color: var(--gold-bright);
  border-bottom-color: var(--gold-bright);
}

.dot-live {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(216, 178, 106, 0.75);
  animation: pulse 2.6s infinite;
  flex: none;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 9px rgba(216, 178, 106, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(216, 178, 106, 0);
  }
}

.masthead__bar {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  min-height: 74px;
  padding-block: 0.6rem;
  flex-wrap: nowrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex: none;
  color: var(--ink);
}

.brand:hover {
  color: var(--ink);
}

.brand__mark {
  width: 38px;
  height: 38px;
  flex: none;
  filter: drop-shadow(0 4px 12px rgba(196, 19, 43, 0.45));
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  background: linear-gradient(100deg, var(--gold-bright), var(--gold) 55%, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand__sub {
  font-family: var(--font-mono);
  font-size: 0.575rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 3px;
}

.nav {
  margin-left: auto;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 1.4vw, 1.5rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__link {
  position: relative;
  display: inline-block;
  padding: 0.45rem 0;
  font-size: 0.79rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(to right, var(--crimson-bright), var(--gold));
  transition: width 0.32s var(--ease);
}

.nav__link:hover,
.nav__link:focus-visible,
.nav__link.is-active {
  color: var(--ink);
}

.nav__link:hover::after,
.nav__link:focus-visible::after,
.nav__link.is-active::after {
  width: 100%;
}

.nav__link--official {
  color: var(--gold);
}

.masthead__cta {
  flex: none;
  margin-left: 1.1rem;
  padding: 0.72rem 1.05rem;
  font-size: 0.66rem;
  letter-spacing: 0.09em;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 40px;
  border: 1px solid var(--hair-strong);
  background: rgba(255, 255, 255, 0.02);
  color: var(--gold);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (max-width: 1200px) {
  .masthead__cta {
    display: none;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: 0 0 auto;
    top: var(--masthead-h, 118px);
    margin: 0;
    padding: 1.4rem var(--gutter) 2.6rem;
    background: #05050a;
    background-image: linear-gradient(180deg, rgba(140, 20, 32, 0.16), transparent 46%);
    border-bottom: 1px solid var(--hair);
    transform: translateY(-102%);
    transition: transform 0.42s var(--ease), visibility 0.42s linear;
    visibility: hidden;
    max-height: 100vh;
    overflow-y: auto;
    z-index: 60;
  }

  .nav.is-open {
    transform: translateY(0);
    visibility: visible;
    box-shadow: 0 40px 80px -40px #000;
  }

  .nav {
    max-height: calc(100vh - var(--masthead-h, 118px));
  }

  .nav-toggle {
    position: relative;
    z-index: 70;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav__list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  }

  .nav__link {
    display: block;
    padding: 1.05rem 0;
    font-size: 0.95rem;
    letter-spacing: 0.09em;
  }

  .nav__cta-mobile {
    margin-top: 1.6rem;
    display: block;
  }

  .masthead__cta {
    display: none;
  }
}

@media (min-width: 901px) {
  .nav__cta-mobile {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(3.4rem, 8vw, 7.4rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% 50%;
  opacity: 0.5;
  transform: scale(1.04);
  animation: heroDrift 26s ease-in-out infinite alternate;
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.4%, -1%, 0);
  }
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, var(--obsidian) 6%, rgba(7, 7, 10, 0.86) 42%, rgba(7, 7, 10, 0.42) 76%),
    linear-gradient(to top, var(--obsidian), transparent 46%);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(2rem, 5vw, 4.4rem);
  align-items: center;
}

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

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.42rem 0.95rem;
  border: 1px solid var(--hair-crimson);
  background: rgba(196, 19, 43, 0.1);
  font-family: var(--font-mono);
  font-size: 0.665rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  clip-path: polygon(7px 0, 100% 0, 100% calc(100% - 7px), calc(100% - 7px) 100%, 0 100%, 0 7px);
}

.hero h1 {
  margin-bottom: 1.15rem;
  text-wrap: balance;
}

.hero h1 .gold-grad {
  background: linear-gradient(104deg, var(--gold-bright), var(--gold) 42%, #a98543);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.hero__sub {
  font-size: clamp(1rem, 0.6vw + 0.9rem, 1.16rem);
  color: var(--ink-soft);
  max-width: 60ch;
  margin-bottom: 1.9rem;
}

.hero .btn-row {
  margin-bottom: 2.1rem;
}

/* Hero official URL callout */
.url-callout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem 1rem;
  padding: 1rem 1.2rem;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--hair);
  border-left: 3px solid var(--gold);
  max-width: 34rem;
}

.url-callout__label {
  font-family: var(--font-mono);
  font-size: 0.655rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  width: 100%;
}

.url-callout__link {
  font-family: var(--font-mono);
  font-size: clamp(0.85rem, 1.6vw, 1rem);
  color: var(--gold-bright);
  letter-spacing: 0.02em;
  word-break: break-all;
  border-bottom: 1px dashed var(--hair-strong);
}

.url-callout__link:hover {
  border-bottom-style: solid;
}

.url-callout__badge {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0d0b06;
  background: var(--gold);
  padding: 0.22rem 0.5rem;
  white-space: nowrap;
}

/* Hero certificate card */
.cert {
  position: relative;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  background:
    linear-gradient(150deg, rgba(196, 19, 43, 0.11), transparent 52%),
    rgba(9, 9, 13, 0.86);
  border: 1px solid var(--hair-strong);
  box-shadow: var(--shadow-lift);
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.cert::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(216, 178, 106, 0.14);
  pointer-events: none;
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}

.cert__seal {
  width: 84px;
  margin: 0 auto 1.1rem;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.7));
}

.cert__title {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.12rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.cert__title + p {
  text-align: center;
  font-size: 0.88rem;
  color: var(--ink-mute);
  margin-bottom: 1.4rem;
}

.cert__rows {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.cert__row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.4rem 1rem;
  padding: 0.72rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.cert__row dt {
  font-family: var(--font-mono);
  font-size: 0.645rem;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.cert__row dd {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--ink);
  text-align: right;
  word-break: break-all;
}

.cert__row dd a {
  color: var(--gold-bright);
}

.cert__note {
  margin-top: 1.25rem;
  font-size: 0.79rem;
  line-height: 1.65;
  color: var(--ink-mute);
  text-align: center;
}

/* Hero metric strip */
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  margin-top: clamp(2.4rem, 4vw, 3.4rem);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-metrics__item {
  background: rgba(7, 7, 10, 0.8);
  padding: 1.15rem 1.25rem;
}

.hero-metrics__k {
  font-family: var(--font-display);
  font-size: 1.28rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  display: block;
}

.hero-metrics__v {
  font-family: var(--font-mono);
  font-size: 0.63rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: block;
  margin-top: 0.3rem;
}

/* --------------------------------------------------------------------------
   7. Verification section
   -------------------------------------------------------------------------- */
.verify-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.6rem, 3.4vw, 3rem);
  align-items: start;
}

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

.official-card {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.3rem);
  background: linear-gradient(160deg, rgba(216, 178, 106, 0.09), rgba(9, 9, 13, 0.9) 46%);
  border: 1px solid var(--hair-strong);
  box-shadow: var(--shadow-gold);
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
}

.official-card__kicker {
  font-family: var(--font-mono);
  font-size: 0.655rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.official-card__url {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(1.02rem, 2.2vw, 1.5rem);
  color: var(--gold-bright);
  letter-spacing: 0.01em;
  word-break: break-all;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--hair-strong);
  margin-bottom: 1.15rem;
}

.official-card__url:hover {
  color: #fff;
}

.check-list {
  list-style: none;
  margin: 0 0 1.6rem;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.check-list li {
  position: relative;
  padding-left: 1.9rem;
  font-size: 0.92rem;
  line-height: 1.62;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}

.check-list--crimson li::before {
  border-color: var(--crimson-bright);
  transform: none;
  width: 9px;
  height: 9px;
  top: 0.5em;
  border: 0;
  background: var(--crimson-bright);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

/* Compare table */
.compare {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  background: rgba(9, 9, 13, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.compare caption {
  caption-side: top;
  text-align: left;
  font-family: var(--font-mono);
  font-size: 0.655rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 0.85rem;
}

.compare th,
.compare td {
  padding: 0.82rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
  vertical-align: top;
}

.compare thead th {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-mute);
  background: rgba(255, 255, 255, 0.025);
  font-weight: 500;
}

.compare tbody th {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--ink);
  width: 34%;
}

.compare td.is-good {
  color: var(--gold-bright);
}

.compare td.is-risk {
  color: #ef8090;
}

.compare tr:last-child th,
.compare tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 620px) {
  .compare,
  .compare tbody,
  .compare tr,
  .compare th,
  .compare td {
    display: block;
    width: 100%;
  }

  .compare thead {
    display: none;
  }

  .compare tbody th {
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 0;
  }

  .compare td::before {
    content: attr(data-label) " — ";
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-mute);
  }
}

/* --------------------------------------------------------------------------
   8. Cards & grids
   -------------------------------------------------------------------------- */
.grid {
  display: grid;
  gap: clamp(1rem, 1.8vw, 1.5rem);
}

.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr));
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17.5rem), 1fr));
}

.grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
}

.card {
  position: relative;
  padding: clamp(1.3rem, 2.2vw, 1.85rem);
  background: linear-gradient(165deg, var(--panel-strong), rgba(9, 9, 13, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.07);
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
  height: 100%;
}

.card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--crimson), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}

.card:hover,
.card:focus-within {
  transform: translateY(-5px);
  border-color: var(--hair-strong);
  background: linear-gradient(165deg, rgba(216, 178, 106, 0.075), rgba(9, 9, 13, 0.85));
}

.card:hover::after,
.card:focus-within::after {
  transform: scaleX(1);
}

.card__ico {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 1.05rem;
  border: 1px solid var(--hair-strong);
  background: rgba(196, 19, 43, 0.13);
  color: var(--gold);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.card__ico svg {
  width: 21px;
  height: 21px;
}

.card h3 {
  margin-bottom: 0.55rem;
}

.card p {
  font-size: 0.9rem;
  line-height: 1.66;
  color: var(--ink-soft);
}

.card__index {
  position: absolute;
  top: 1.1rem;
  right: 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--ink-faint);
}

/* Alert-flavoured cards for suspicious indicators */
.card--alert {
  background: linear-gradient(165deg, rgba(196, 19, 43, 0.1), rgba(9, 9, 13, 0.8));
  border-color: var(--hair-crimson);
}

.card--alert .card__ico {
  color: #ff8f9d;
  background: rgba(196, 19, 43, 0.2);
  border-color: var(--hair-crimson);
}

.card--alert:hover {
  background: linear-gradient(165deg, rgba(196, 19, 43, 0.17), rgba(9, 9, 13, 0.86));
  border-color: rgba(226, 33, 60, 0.5);
}

/* Trust badges */
.badge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.badge {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.35rem 1.4rem;
  background: rgba(8, 8, 11, 0.86);
  transition: background 0.32s var(--ease);
}

.badge:hover {
  background: rgba(216, 178, 106, 0.07);
}

.badge__ico {
  flex: none;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--hair);
  color: var(--gold);
  border-radius: 50%;
}

.badge__ico svg {
  width: 17px;
  height: 17px;
}

.badge__t {
  font-family: var(--font-display);
  font-size: 0.94rem;
  letter-spacing: 0.03em;
  color: var(--ink);
  margin: 0 0 0.22rem;
  line-height: 1.3;
}

.badge__d {
  font-size: 0.79rem;
  line-height: 1.55;
  color: var(--ink-mute);
  margin: 0;
}

/* Figure with framed image */
.figure {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px;
  background: rgba(255, 255, 255, 0.018);
}

.figure img {
  width: 100%;
  filter: saturate(0.95) contrast(1.05);
}

.figure figcaption {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 0.85rem 0.25rem 0.2rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.8rem, 4vw, 3.4rem);
  align-items: center;
}

.split--reverse .split__media {
  order: 2;
}

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

  .split--reverse .split__media {
    order: 0;
  }
}

/* --------------------------------------------------------------------------
   9. Legal document blocks
   -------------------------------------------------------------------------- */
.legal {
  padding: clamp(1.5rem, 3vw, 2.6rem);
  background: rgba(9, 9, 13, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 3px solid var(--crimson);
}

.legal__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  padding-bottom: 1.2rem;
  margin-bottom: 1.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-mono);
  font-size: 0.655rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.legal__meta span strong {
  color: var(--gold);
  font-weight: 500;
}

.clause {
  counter-increment: clause;
  padding-left: 3.1rem;
  position: relative;
  margin-bottom: 1.75rem;
}

.clause:last-child {
  margin-bottom: 0;
}

.clauses {
  counter-reset: clause;
}

.clause::before {
  content: counter(clause, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0.05em;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  border: 1px solid var(--hair);
  padding: 0.15rem 0.42rem;
}

.clause h3 {
  font-size: 1.04rem;
  margin-bottom: 0.5rem;
}

.clause p {
  font-size: 0.92rem;
  line-height: 1.72;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.tag {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.025);
  padding: 0.34rem 0.68rem;
}

.tag--gold {
  color: var(--gold);
  border-color: var(--hair-strong);
  background: rgba(216, 178, 106, 0.07);
}

/* Steps / workflow */
.steps {
  counter-reset: step;
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.07);
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  counter-increment: step;
  position: relative;
  background: rgba(8, 8, 11, 0.88);
  padding: 1.3rem 1.5rem 1.3rem 4.4rem;
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 1.4rem;
  top: 1.35rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--crimson-bright);
  letter-spacing: 0.06em;
}

.steps h3 {
  font-size: 0.98rem;
  margin-bottom: 0.35rem;
}

.steps p {
  font-size: 0.88rem;
  color: var(--ink-mute);
  margin: 0;
}

/* --------------------------------------------------------------------------
   10. Report form
   -------------------------------------------------------------------------- */
.report-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.6rem, 3.4vw, 3rem);
  align-items: start;
}

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

.form-shell {
  padding: clamp(1.4rem, 3vw, 2.3rem);
  background: linear-gradient(170deg, rgba(196, 19, 43, 0.09), rgba(9, 9, 13, 0.9) 44%);
  border: 1px solid var(--hair-strong);
  box-shadow: var(--shadow-lift);
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.form-shell__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  padding-bottom: 1.1rem;
  margin-bottom: 1.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.form-shell__head h3 {
  margin: 0;
}

.form-shell__ref {
  font-family: var(--font-mono);
  font-size: 0.645rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.field {
  margin-bottom: 1.2rem;
}

.field--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

@media (max-width: 620px) {
  .field--split {
    grid-template-columns: 1fr;
  }
}

.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.655rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 0.5rem;
}

.field .req {
  color: var(--crimson-bright);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.82rem 0.95rem;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.11);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.93rem;
  font-weight: 300;
  border-radius: 0;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  appearance: none;
}

.field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 1.15rem) 50%, calc(100% - 0.85rem) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.6rem;
  cursor: pointer;
}

.field select option {
  background: #0d0d13;
  color: var(--ink);
}

.field textarea {
  min-height: 8.5rem;
  resize: vertical;
  line-height: 1.65;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--ink-faint);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(0, 0, 0, 0.72);
  box-shadow: 0 0 0 3px rgba(216, 178, 106, 0.12);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--crimson-bright);
  box-shadow: 0 0 0 3px rgba(226, 33, 60, 0.14);
}

.field__error {
  display: block;
  min-height: 1.1rem;
  margin-top: 0.32rem;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  color: #ef8090;
}

.form-note {
  margin-top: 1.2rem;
  padding: 0.95rem 1.1rem;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 2px solid var(--gold);
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--ink-mute);
}

.form-status {
  margin-top: 1.1rem;
  padding: 0.95rem 1.1rem;
  border: 1px solid var(--hair-strong);
  background: rgba(216, 178, 106, 0.09);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: var(--gold-bright);
  display: none;
}

.form-status.is-visible {
  display: block;
  animation: fadeUp 0.5s var(--ease) both;
}

.form-status.is-error {
  border-color: var(--hair-crimson);
  background: rgba(196, 19, 43, 0.13);
  color: #ff9daa;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Aside info panel */
.info-panel {
  padding: clamp(1.3rem, 2.6vw, 1.9rem);
  background: rgba(9, 9, 13, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.info-panel + .info-panel {
  margin-top: 1.15rem;
}

.info-panel h3 {
  font-size: 1rem;
  margin-bottom: 0.7rem;
}

.info-panel p,
.info-panel li {
  font-size: 0.87rem;
  line-height: 1.66;
}

.dl-clean {
  margin: 0;
}

.dl-clean dt {
  font-family: var(--font-mono);
  font-size: 0.63rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 0.9rem;
}

.dl-clean dt:first-child {
  margin-top: 0;
}

.dl-clean dd {
  margin: 0.28rem 0 0;
  font-size: 0.9rem;
  color: var(--ink);
  word-break: break-word;
}

/* --------------------------------------------------------------------------
   11. Official website spotlight band
   -------------------------------------------------------------------------- */
.spotlight {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3rem, 6vw, 5rem);
  background:
    linear-gradient(115deg, rgba(126, 10, 26, 0.5), rgba(7, 7, 10, 0.9) 52%),
    rgba(0, 0, 0, 0.5);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}

.spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/pattern-scales.png");
  background-size: 300px;
  opacity: 0.35;
  mix-blend-mode: overlay;
}

.spotlight__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.6rem, 4vw, 3.4rem);
  align-items: center;
}

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

.spotlight h2 {
  font-size: clamp(1.44rem, 2vw + 0.7rem, 2.3rem);
  margin-bottom: 0.8rem;
}

.spotlight p {
  max-width: 60ch;
  color: var(--ink-soft);
}

.spotlight__url {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: clamp(0.94rem, 2vw, 1.24rem);
  color: var(--gold-bright);
  margin-top: 1rem;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid var(--hair-strong);
  word-break: break-all;
}

/* --------------------------------------------------------------------------
   12. Footer
   -------------------------------------------------------------------------- */
.footer {
  position: relative;
  padding-top: clamp(3rem, 5.5vw, 4.6rem);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), #05050 7);
  background-color: #050507;
  border-top: 1px solid var(--hair);
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: clamp(1.6rem, 3vw, 2.8rem);
  padding-bottom: 2.6rem;
}

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

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

.footer__brand .brand {
  margin-bottom: 1.05rem;
}

.footer__brand p {
  font-size: 0.87rem;
  line-height: 1.68;
  color: var(--ink-mute);
  max-width: 42ch;
}

.footer__official {
  margin-top: 1.2rem;
  padding: 0.95rem 1.05rem;
  border: 1px solid var(--hair);
  background: rgba(216, 178, 106, 0.055);
}

.footer__official span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.635rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 0.35rem;
}

.footer__official a {
  font-family: var(--font-mono);
  font-size: 0.92rem;
  color: var(--gold-bright);
  word-break: break-all;
}

.footer h4 {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.665rem;
  letter-spacing: 0.22em;
  margin-bottom: 1.1rem;
}

.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.62rem;
}

.footer__links a {
  font-size: 0.875rem;
  color: var(--ink-soft);
}

.footer__links a:hover {
  color: var(--gold-bright);
}

.footer__disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-block: 1.8rem;
}

.footer__disclaimer h4 {
  color: var(--ink-mute);
  margin-bottom: 0.7rem;
}

.footer__disclaimer p {
  font-size: 0.8rem;
  line-height: 1.72;
  color: var(--ink-faint);
  max-width: 100ch;
}

.footer__disclaimer p + p {
  margin-top: 0.85rem;
}

.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-block: 1.4rem 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.6rem;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.665rem;
  letter-spacing: 0.11em;
  color: var(--ink-faint);
  text-transform: uppercase;
}

.footer__bar a {
  color: var(--ink-mute);
}

.footer__bar a:hover {
  color: var(--gold);
}

/* Back to top */
.to-top {
  position: fixed;
  right: clamp(0.9rem, 2vw, 1.8rem);
  bottom: clamp(0.9rem, 2vw, 1.8rem);
  z-index: 90;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--hair-strong);
  background: rgba(9, 9, 13, 0.9);
  color: var(--gold);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  clip-path: polygon(9px 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%, 0 9px);
}

.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.to-top:hover {
  background: rgba(216, 178, 106, 0.15);
  color: var(--gold-bright);
}

.to-top svg {
  width: 17px;
  height: 17px;
}

/* --------------------------------------------------------------------------
   13. Interior page header
   -------------------------------------------------------------------------- */
.page-head {
  position: relative;
  padding-block: clamp(2.6rem, 5.5vw, 4.6rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(140deg, rgba(126, 10, 26, 0.34), rgba(7, 7, 10, 0.7) 58%);
  overflow: hidden;
}

.page-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/pattern-scales.png");
  background-size: 300px;
  opacity: 0.3;
}

.page-head__inner {
  position: relative;
}

.page-head h1 {
  font-size: clamp(1.8rem, 3.4vw + 0.5rem, 3rem);
  margin-bottom: 0.85rem;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  font-family: var(--font-mono);
  font-size: 0.655rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.crumbs li + li::before {
  content: "/";
  color: var(--gold-deep);
  margin-right: 0.5rem;
}

.crumbs a {
  color: var(--ink-mute);
}

.crumbs a:hover {
  color: var(--gold);
}

.prose {
  max-width: 76ch;
}

.prose h2 {
  margin-top: 2.6rem;
  font-size: clamp(1.3rem, 1.4vw + 0.8rem, 1.85rem);
}

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

.prose h3 {
  margin-top: 1.9rem;
}

.prose ul,
.prose ol {
  margin: 0 0 1.2rem;
  padding-left: 1.35rem;
}

.prose li {
  margin-bottom: 0.5rem;
  font-size: 0.94rem;
  line-height: 1.7;
}

.prose li::marker {
  color: var(--gold);
}

blockquote {
  margin: 1.6rem 0;
  padding: 1.1rem 1.4rem;
  border-left: 3px solid var(--gold);
  background: rgba(216, 178, 106, 0.055);
  font-size: 0.95rem;
  color: var(--ink);
}

blockquote p:last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   14. Reveal animation
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
  will-change: opacity, transform;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.reveal[data-delay="1"] {
  transition-delay: 0.09s;
}

.reveal[data-delay="2"] {
  transition-delay: 0.18s;
}

.reveal[data-delay="3"] {
  transition-delay: 0.27s;
}

.reveal[data-delay="4"] {
  transition-delay: 0.36s;
}

.reveal[data-delay="5"] {
  transition-delay: 0.45s;
}

.reveal[data-delay="6"] {
  transition-delay: 0.54s;
}

.no-js .reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   15. Utilities & print
   -------------------------------------------------------------------------- */
.mono {
  font-family: var(--font-mono);
}

.gold {
  color: var(--gold);
}

.center {
  text-align: center;
}

.mt-2 {
  margin-top: 1.4rem;
}

.mt-3 {
  margin-top: 2.2rem;
}

.mb-0 {
  margin-bottom: 0;
}

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

@media print {
  body::before,
  body::after,
  .masthead,
  .to-top,
  .hero__bg {
    display: none !important;
  }

  body {
    background: #fff;
    color: #111;
  }

  a {
    color: #111;
    text-decoration: underline;
  }

  .card,
  .legal,
  .official-card,
  .form-shell {
    border-color: #bbb;
    background: #fff;
    color: #111;
  }
}
