/* ==========================================================================
   AmunBet Protect — Brand Protection & Verification Center
   amunbet-protect.store
   Stylesheet: dark obsidian / gold / emerald "security seal" system
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Surfaces */
  --ink-900: #05060a;
  --ink-850: #07090e;
  --ink-800: #0a0d13;
  --ink-750: #0e1219;
  --ink-700: #131823;
  --ink-600: #1a2130;

  /* Gold */
  --gold-100: #f7ecc4;
  --gold-200: #efdca0;
  --gold-300: #e3c778;
  --gold-400: #d4af37;
  --gold-500: #b8912a;
  --gold-600: #8a6a1c;
  --gold-line: rgba(212, 175, 55, .24);
  --gold-line-soft: rgba(212, 175, 55, .12);

  /* Emerald */
  --em-200: #8ff0c4;
  --em-300: #4fd8a0;
  --em-400: #22b981;
  --em-500: #0f9b6c;
  --em-600: #0a6f4d;
  --em-line: rgba(34, 185, 129, .28);

  /* Alert */
  --alert-400: #e0703c;

  /* Text */
  --text-100: #f4f1ea;
  --text-200: #d9d5cb;
  --text-300: #a9a49a;
  --text-400: #7d786f;
  --text-500: #5b574f;

  /* Type */
  --ff-display: "Cinzel", "Trajan Pro", "Times New Roman", Georgia, serif;
  --ff-body: "Manrope", "Segoe UI", "Helvetica Neue", Helvetica, sans-serif;
  --ff-mono: "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;

  /* Metrics */
  --wrap: 1240px;
  --gut: clamp(18px, 4vw, 40px);
  --sec-y: clamp(72px, 9vw, 132px);
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 22px;

  /* Effects */
  --sh-soft: 0 18px 44px rgba(0, 0, 0, .5);
  --sh-deep: 0 34px 90px rgba(0, 0, 0, .66);
  --sh-gold: 0 0 0 1px rgba(212, 175, 55, .3), 0 18px 46px rgba(138, 106, 28, .22);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
  overflow-x: hidden;
}

body {
  margin: 0;
  background-color: var(--ink-900);
  color: var(--text-200);
  font-family: var(--ff-body);
  font-size: clamp(15.5px, .42vw + 14.6px, 17px);
  font-weight: 400;
  line-height: 1.72;
  letter-spacing: .002em;
  overflow-x: hidden;
  background-image:
    radial-gradient(1100px 620px at 82% -8%, rgba(212, 175, 55, .10), transparent 62%),
    radial-gradient(900px 620px at 4% 22%, rgba(15, 155, 108, .085), transparent 64%),
    radial-gradient(1200px 800px at 50% 108%, rgba(212, 175, 55, .06), transparent 68%);
  background-attachment: fixed;
}

img, svg { display: block; max-width: 100%; height: auto; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: .006em;
  color: var(--text-100);
  text-wrap: balance;
}

p { margin: 0; }

a { color: var(--gold-300); text-decoration: none; }
a:hover { color: var(--gold-200); }

ul, ol { margin: 0; padding: 0; list-style: none; }

code {
  font-family: var(--ff-mono);
  font-size: .88em;
  color: var(--gold-200);
  background: rgba(212, 175, 55, .09);
  border: 1px solid var(--gold-line-soft);
  border-radius: 4px;
  padding: .08em .38em;
  word-break: break-word;
}

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

::selection { background: rgba(212, 175, 55, .3); color: #fff; }

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

.skip-link {
  position: absolute;
  left: 50%;
  top: -60px;
  transform: translateX(-50%);
  z-index: 200;
  background: var(--gold-400);
  color: #14100a;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 0 0 var(--r-md) var(--r-md);
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; color: #14100a; }

/* Film grain overlay */
.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   3. Shared components
   -------------------------------------------------------------------------- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-family: var(--ff-body);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--em-300);
}
.eyebrow--center { justify-content: center; }
.eyebrow__dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--em-400);
  box-shadow: 0 0 0 4px rgba(34, 185, 129, .16), 0 0 14px rgba(34, 185, 129, .8);
}

.btn {
  --btn-py: 14px;
  --btn-px: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--btn-py) var(--btn-px);
  font-family: var(--ff-body);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .085em;
  text-transform: uppercase;
  line-height: 1.2;
  text-align: center;
  border: 1px solid transparent;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease),
              background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease);
}
.btn--sm { --btn-py: 11px; --btn-px: 18px; font-size: 12px; }

.btn--gold {
  color: #17120a;
  background: linear-gradient(158deg, var(--gold-200) 0%, var(--gold-400) 46%, var(--gold-500) 100%);
  border-color: rgba(247, 236, 196, .5);
  box-shadow: 0 12px 30px rgba(138, 106, 28, .34), inset 0 1px 0 rgba(255, 255, 255, .45);
}
.btn--gold:hover {
  color: #17120a;
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(138, 106, 28, .48), inset 0 1px 0 rgba(255, 255, 255, .6);
}
.btn--gold:active { transform: translateY(0); }

.btn--ghost {
  color: var(--text-100);
  background: rgba(255, 255, 255, .022);
  border-color: rgba(212, 175, 55, .34);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  color: var(--gold-100);
  border-color: var(--gold-400);
  background: rgba(212, 175, 55, .10);
  transform: translateY(-2px);
}

.ilink {
  color: var(--gold-200);
  border-bottom: 1px solid var(--gold-line);
  overflow-wrap: anywhere;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.ilink:hover { color: var(--gold-100); border-bottom-color: var(--gold-400); }

/* Section shell */
.section {
  position: relative;
  z-index: 2;
  padding-block: var(--sec-y);
}
.section + .section { border-top: 1px solid rgba(212, 175, 55, .09); }

.sechead { max-width: 860px; margin-bottom: clamp(38px, 5vw, 62px); }
.sechead--center { margin-inline: auto; text-align: center; }
.sechead__title {
  font-size: clamp(28px, 3.6vw, 46px);
  margin-bottom: 20px;
}
.sechead__title::after {
  content: "";
  display: block;
  width: 84px;
  height: 2px;
  margin-top: 20px;
  background: linear-gradient(90deg, var(--gold-400), rgba(212, 175, 55, 0));
}
.sechead--center .sechead__title::after { margin-inline: auto; background: linear-gradient(90deg, rgba(212,175,55,0), var(--gold-400), rgba(212,175,55,0)); }
.sechead__lead { color: var(--text-300); font-size: 1.045em; }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
}

/* Hairline ornament (Egyptian fret) used as decorative divider */
.fret {
  height: 12px;
  background-image: repeating-linear-gradient(90deg,
    var(--gold-line) 0 1px, transparent 1px 8px);
  opacity: .5;
}

/* --------------------------------------------------------------------------
   4. Topbar + header
   -------------------------------------------------------------------------- */
.topbar {
  position: relative;
  z-index: 60;
  background: linear-gradient(90deg, #06070b, #0c1016 48%, #06070b);
  border-bottom: 1px solid var(--gold-line-soft);
  font-size: 12.5px;
}
.topbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 6px 18px;
  padding-block: 9px;
}
.topbar__text { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.topbar__label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--em-300);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.topbar__label::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--em-400);
  box-shadow: 0 0 10px rgba(34, 185, 129, .9);
  animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .32; } }
.topbar__url {
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--gold-200);
  letter-spacing: .01em;
  overflow-wrap: anywhere;
}
.topbar__url:hover { color: var(--gold-100); text-decoration: underline; text-underline-offset: 3px; }
.topbar__note { color: var(--text-400); font-size: 11.5px; letter-spacing: .03em; }

.masthead {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(6, 8, 12, .82);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(212, 175, 55, .14);
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.masthead.is-stuck {
  background: rgba(5, 6, 10, .95);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .6);
  border-bottom-color: rgba(212, 175, 55, .24);
}
.masthead__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}

.brand { display: inline-flex; align-items: center; gap: 13px; flex: 0 0 auto; }
.brand__mark {
  width: 40px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(212, 175, 55, .34));
  transition: transform .3s var(--ease);
}
.brand:hover .brand__mark { transform: translateY(-2px) scale(1.04); }
.brand__text { display: flex; flex-direction: column; gap: 2px; }
.brand__name {
  font-family: var(--ff-display);
  font-size: 18.5px;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.1;
  background: linear-gradient(96deg, var(--gold-100), var(--gold-400) 58%, var(--gold-200));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand__sub {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--text-400);
}

.nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.nav__list { display: flex; align-items: center; gap: clamp(12px, 1.7vw, 26px); }
.nav__link {
  position: relative;
  display: inline-block;
  padding-block: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .075em;
  text-transform: uppercase;
  color: var(--text-200);
  transition: color .22s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: linear-gradient(90deg, var(--gold-400), var(--em-400));
  transition: width .28s var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: var(--gold-200); }
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }

.burger {
  display: none;
  width: 46px; height: 40px;
  padding: 0;
  background: rgba(212, 175, 55, .07);
  border: 1px solid var(--gold-line);
  border-radius: var(--r-sm);
  cursor: pointer;
}
.burger span {
  display: block;
  width: 20px; height: 1.7px;
  margin: 4px auto;
  background: var(--gold-200);
  transition: transform .28s var(--ease), opacity .2s var(--ease);
}
.burger.is-open span:nth-child(1) { transform: translateY(5.7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-5.7px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   5. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding-block: clamp(58px, 8vw, 108px) clamp(64px, 9vw, 120px);
  border-bottom: 1px solid rgba(212, 175, 55, .12);
}
.hero__bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .5;
  transform: scale(1.04);
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 6, 10, .82) 0%, rgba(5, 6, 10, .6) 42%, rgba(5, 6, 10, .95) 100%),
    linear-gradient(90deg, rgba(5, 6, 10, .94) 0%, rgba(5, 6, 10, .34) 62%, rgba(5, 6, 10, .8) 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(0, .84fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
}

.hero__title {
  font-size: clamp(32px, 5.1vw, 62px);
  line-height: 1.06;
  margin-bottom: 22px;
  background: linear-gradient(102deg, #fffdf6 4%, var(--gold-200) 40%, var(--gold-400) 74%, var(--gold-300) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 18px 60px rgba(212, 175, 55, .16);
}
.hero__lead {
  max-width: 62ch;
  font-size: 1.06em;
  color: var(--text-200);
  margin-bottom: 28px;
}

.urlchip {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 9px 9px 9px 16px;
  margin-bottom: 30px;
  background: linear-gradient(120deg, rgba(14, 18, 25, .9), rgba(7, 9, 14, .82));
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05), 0 12px 30px rgba(0, 0, 0, .5);
}
.urlchip__label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--em-300);
}
.urlchip__link {
  font-family: var(--ff-mono);
  font-size: 13.5px;
  color: var(--gold-100);
  overflow-wrap: anywhere;
}
.urlchip__link:hover { text-decoration: underline; text-underline-offset: 3px; }
.urlchip__copy {
  padding: 7px 15px;
  font-family: var(--ff-body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-100);
  background: rgba(212, 175, 55, .12);
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.urlchip__copy:hover { background: rgba(212, 175, 55, .24); border-color: var(--gold-400); }
.urlchip__copy.is-done {
  color: #06130d;
  background: var(--em-300);
  border-color: var(--em-200);
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: var(--gold-line-soft);
  border: 1px solid var(--gold-line-soft);
  border-radius: var(--r-md);
  overflow: hidden;
}
.stat {
  padding: 16px 18px;
  background: rgba(8, 10, 15, .74);
}
.stat__label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--text-400);
  margin-bottom: 6px;
}
.stat__value {
  margin: 0;
  font-family: var(--ff-mono);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--gold-200);
  overflow-wrap: anywhere;
}

/* Hero seal card */
.sealcard {
  position: relative;
  padding: clamp(26px, 3vw, 38px) clamp(22px, 2.6vw, 34px) clamp(26px, 3vw, 34px);
  text-align: center;
  background:
    radial-gradient(120% 90% at 50% -12%, rgba(212, 175, 55, .16), transparent 62%),
    linear-gradient(168deg, rgba(17, 22, 30, .95), rgba(6, 8, 12, .92));
  border: 1px solid var(--gold-line);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-deep);
}
.sealcard::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid var(--gold-line-soft);
  border-radius: calc(var(--r-xl) - 8px);
  pointer-events: none;
}
.sealcard__img {
  width: clamp(126px, 15vw, 168px);
  margin: 0 auto 18px;
  filter: drop-shadow(0 14px 34px rgba(212, 175, 55, .3));
  animation: floaty 7s ease-in-out infinite;
}
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.sealcard__kicker {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--em-300);
  margin-bottom: 8px;
}
.sealcard__title {
  font-family: var(--ff-display);
  font-size: clamp(19px, 2vw, 23px);
  font-weight: 600;
  color: var(--gold-100);
  margin-bottom: 10px;
}
.sealcard__url {
  display: block;
  font-family: var(--ff-mono);
  font-size: 13px;
  color: var(--gold-200);
  padding: 9px 12px;
  margin-bottom: 18px;
  background: rgba(212, 175, 55, .07);
  border: 1px dashed var(--gold-line);
  border-radius: var(--r-sm);
  overflow-wrap: anywhere;
}
.sealcard__url:hover { background: rgba(212, 175, 55, .14); color: var(--gold-100); }
.sealcard__list { text-align: left; display: grid; gap: 9px; margin-bottom: 16px; }
.sealcard__list li {
  position: relative;
  padding-left: 26px;
  font-size: 13.5px;
  color: var(--text-300);
  line-height: 1.55;
}
.sealcard__list li::before {
  content: "";
  position: absolute;
  left: 0; top: .42em;
  width: 14px; height: 8px;
  border-left: 2px solid var(--em-300);
  border-bottom: 2px solid var(--em-300);
  transform: rotate(-45deg);
}
.sealcard__foot {
  padding-top: 14px;
  border-top: 1px solid var(--gold-line-soft);
  font-size: 12px;
  color: var(--text-400);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   6. Verification section
   -------------------------------------------------------------------------- */
.verify {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: start;
  margin-bottom: clamp(38px, 5vw, 60px);
}
.verify__plate {
  position: relative;
  padding: clamp(24px, 3vw, 34px);
  background:
    radial-gradient(110% 80% at 12% 0%, rgba(34, 185, 129, .12), transparent 58%),
    linear-gradient(165deg, rgba(16, 21, 29, .96), rgba(6, 8, 12, .94));
  border: 1px solid var(--gold-line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-soft);
}
.verify__plate::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-400), var(--em-400) 62%, transparent);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.verify__plateLabel {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--em-300);
  margin-bottom: 12px;
}
.verify__plateUrl {
  display: block;
  font-family: var(--ff-mono);
  font-size: clamp(16px, 2.1vw, 22px);
  font-weight: 600;
  color: var(--gold-100);
  letter-spacing: -.01em;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--gold-line-soft);
  overflow-wrap: anywhere;
}
.verify__plateUrl:hover { color: #fff; }
.verify__plateActions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.verify__plateFoot { font-size: 12.5px; color: var(--text-400); line-height: 1.62; }

.verify__body { display: grid; gap: 18px; }
.verify__body p { color: var(--text-300); }
.verify__body p:first-child {
  font-size: 1.06em;
  color: var(--text-200);
  padding-left: 20px;
  border-left: 2px solid var(--gold-line);
}

.checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(232px, 1fr));
  gap: 1px;
  background: var(--gold-line-soft);
  border: 1px solid var(--gold-line-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.checklist__item {
  position: relative;
  padding: clamp(20px, 2.4vw, 28px);
  background: rgba(9, 12, 17, .8);
  transition: background .28s var(--ease);
}
.checklist__item:hover { background: rgba(17, 22, 30, .92); }
.checklist__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  margin-bottom: 14px;
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-200);
  background: rgba(212, 175, 55, .09);
  border: 1px solid var(--gold-line);
  border-radius: var(--r-sm);
}
.checklist__title { font-size: 15.5px; font-weight: 600; margin-bottom: 9px; line-height: 1.3; }
.checklist__text { font-size: 13.5px; color: var(--text-300); line-height: 1.62; }

/* --------------------------------------------------------------------------
   7. Mission section
   -------------------------------------------------------------------------- */
.mission {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(30px, 4.4vw, 62px);
  align-items: start;
}
.mission__media { position: sticky; top: 108px; }

.figure { margin: 0; }
.figure img {
  width: 100%;
  border: 1px solid var(--gold-line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-deep);
}
.figure--tight img { border-radius: var(--r-md); }
.figure__cap {
  margin-top: 13px;
  font-size: 12.5px;
  color: var(--text-400);
  line-height: 1.6;
  padding-left: 13px;
  border-left: 2px solid var(--em-line);
}

.mission__list { counter-reset: m; display: grid; gap: 2px; }
.mitem {
  counter-increment: m;
  position: relative;
  padding: 20px 22px 20px 68px;
  background: linear-gradient(100deg, rgba(13, 17, 24, .8), rgba(8, 10, 15, .5));
  border: 1px solid rgba(212, 175, 55, .1);
  border-radius: var(--r-md);
  transition: border-color .28s var(--ease), transform .28s var(--ease), background .28s var(--ease);
}
.mitem::before {
  content: counter(m, decimal-leading-zero);
  position: absolute;
  left: 22px; top: 21px;
  font-family: var(--ff-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-400);
  opacity: .85;
}
.mitem:hover {
  transform: translateX(5px);
  border-color: var(--gold-line);
  background: linear-gradient(100deg, rgba(20, 26, 35, .92), rgba(10, 13, 19, .6));
}
.mitem__title { font-size: 16px; font-weight: 600; margin-bottom: 7px; line-height: 1.32; color: var(--gold-100); }
.mitem__text { font-size: 13.8px; color: var(--text-300); line-height: 1.65; }

/* --------------------------------------------------------------------------
   8. Legal section
   -------------------------------------------------------------------------- */
.section--legal {
  background:
    linear-gradient(180deg, rgba(212, 175, 55, .028), transparent 30%),
    radial-gradient(900px 500px at 88% 12%, rgba(212, 175, 55, .05), transparent 62%);
}
.legal {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(0, .68fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: start;
}
.legal__doc {
  position: relative;
  padding: clamp(26px, 3.4vw, 46px);
  background: linear-gradient(172deg, rgba(15, 19, 27, .92), rgba(6, 8, 12, .96));
  border: 1px solid var(--gold-line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-deep);
}
.legal__doc::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid var(--gold-line-soft);
  border-radius: calc(var(--r-lg) - 8px);
  pointer-events: none;
}
.legal__docHead {
  position: relative;
  padding-bottom: 22px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--gold-line);
}
.legal__docRef {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-400);
  margin-bottom: 10px;
}
.legal__docTitle { font-size: clamp(19px, 2.2vw, 25px); color: var(--gold-100); line-height: 1.24; }

.clauses { counter-reset: c; display: grid; gap: 26px; }
.clause { counter-increment: c; position: relative; padding-left: 40px; }
.clause::before {
  content: counter(c) ".";
  position: absolute;
  left: 0; top: 0;
  width: 30px;
  font-family: var(--ff-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-400);
}
.clause__title {
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-200);
  margin-bottom: 10px;
  line-height: 1.4;
}
.clause p { font-size: 14.6px; color: var(--text-300); line-height: 1.74; }
.clause__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 7px 22px;
  margin-top: 16px;
  padding: 16px 18px;
  background: rgba(212, 175, 55, .045);
  border: 1px solid var(--gold-line-soft);
  border-radius: var(--r-sm);
}
.clause__items li {
  position: relative;
  padding-left: 16px;
  font-size: 13.2px;
  color: var(--text-300);
  line-height: 1.55;
}
.clause__items li::before {
  content: "";
  position: absolute;
  left: 0; top: .62em;
  width: 6px; height: 6px;
  background: var(--gold-400);
  transform: rotate(45deg);
}

.legal__aside { display: grid; gap: 24px; position: sticky; top: 108px; }

.panel {
  padding: 24px;
  background: linear-gradient(168deg, rgba(14, 18, 26, .9), rgba(7, 9, 14, .82));
  border: 1px solid rgba(212, 175, 55, .14);
  border-radius: var(--r-md);
}
.panel--gold {
  border-color: var(--gold-line);
  background:
    radial-gradient(110% 80% at 10% 0%, rgba(212, 175, 55, .1), transparent 60%),
    linear-gradient(168deg, rgba(18, 23, 31, .94), rgba(7, 9, 14, .9));
}
.panel__title {
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--em-300);
  padding-bottom: 13px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--gold-line-soft);
}
.panel__list { display: grid; gap: 10px; }
.panel__list li {
  position: relative;
  padding-left: 18px;
  font-size: 13.4px;
  color: var(--text-300);
  line-height: 1.6;
}
.panel__list li::before {
  content: "";
  position: absolute;
  left: 0; top: .6em;
  width: 7px; height: 7px;
  border-radius: 50%;
  border: 1.6px solid var(--gold-400);
}
.panel__list li strong { color: var(--gold-200); font-weight: 600; }
.panel__list--plain li { padding-left: 0; display: grid; gap: 3px; }
.panel__list--plain li::before { display: none; }
.panel__k {
  display: block;
  font-size: 9.8px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--text-400);
}
.panel__list--plain a { font-family: var(--ff-mono); font-size: 12.8px; overflow-wrap: anywhere; }
.panel__ordered { counter-reset: p; display: grid; gap: 11px; }
.panel__ordered li {
  counter-increment: p;
  position: relative;
  padding-left: 30px;
  font-size: 13.4px;
  color: var(--text-300);
  line-height: 1.6;
}
.panel__ordered li::before {
  content: counter(p);
  position: absolute;
  left: 0; top: .06em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 600;
  color: #16110a;
  background: var(--gold-300);
  border-radius: 50%;
}

.quote {
  margin: 0;
  padding: 22px 24px;
  background: rgba(34, 185, 129, .055);
  border-left: 3px solid var(--em-400);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.quote p {
  font-family: var(--ff-display);
  font-size: 15px;
  font-style: italic;
  line-height: 1.62;
  color: var(--text-200);
}

/* --------------------------------------------------------------------------
   9. DMCA section
   -------------------------------------------------------------------------- */
.dmca__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
  gap: 16px;
  margin-bottom: clamp(34px, 4.4vw, 58px);
}
.dcard {
  position: relative;
  overflow: hidden;
  padding: 26px 24px;
  background: linear-gradient(166deg, rgba(14, 18, 26, .88), rgba(7, 9, 14, .78));
  border: 1px solid rgba(212, 175, 55, .13);
  border-radius: var(--r-md);
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.dcard::after {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold-400), var(--em-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.dcard:hover { transform: translateY(-6px); border-color: var(--gold-line); box-shadow: var(--sh-soft); }
.dcard:hover::after { transform: scaleX(1); }
.dcard__num {
  display: block;
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  color: var(--gold-500);
  margin-bottom: 14px;
}
.dcard__title { font-size: 16.5px; font-weight: 600; color: var(--gold-100); margin-bottom: 10px; line-height: 1.28; }
.dcard__text { font-size: 13.6px; color: var(--text-300); line-height: 1.66; }

.dmca__flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(26px, 3.6vw, 48px);
  align-items: center;
}
.flow { display: grid; gap: 2px; }
.flow__step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(11, 14, 20, .68);
  border: 1px solid rgba(212, 175, 55, .1);
  border-radius: var(--r-sm);
  transition: border-color .26s var(--ease), background .26s var(--ease);
}
.flow__step:hover { border-color: var(--em-line); background: rgba(34, 185, 129, .05); }
.flow__n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 30px; height: 30px;
  font-family: var(--ff-mono);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--em-200);
  background: rgba(34, 185, 129, .1);
  border: 1px solid var(--em-line);
  border-radius: 50%;
}
.flow__label { font-size: 14px; font-weight: 500; color: var(--text-200); }

/* --------------------------------------------------------------------------
   10. Signals section
   -------------------------------------------------------------------------- */
.section--signals { background: linear-gradient(180deg, transparent, rgba(224, 112, 60, .022) 55%, transparent); }
.signals {
  display: grid;
  grid-template-columns: minmax(0, .74fr) minmax(0, 1.26fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: start;
}
.signals__media { position: sticky; top: 108px; }

.ledger {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--gold-line);
  border-radius: var(--r-md);
  overflow: hidden;
  background: rgba(8, 10, 15, .7);
}
.ledger__caption {
  caption-side: top;
  text-align: left;
  padding: 15px 20px;
  font-family: var(--ff-body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--em-300);
  background: rgba(212, 175, 55, .06);
  border-bottom: 1px solid var(--gold-line);
}
.ledger thead th {
  padding: 13px 20px;
  font-family: var(--ff-body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-align: left;
  color: var(--text-400);
  background: rgba(255, 255, 255, .022);
  border-bottom: 1px solid var(--gold-line-soft);
}
.ledger tbody th {
  width: 33%;
  padding: 16px 20px;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  color: var(--gold-200);
  vertical-align: top;
  border-bottom: 1px solid rgba(212, 175, 55, .08);
}
.ledger tbody td {
  padding: 16px 20px;
  font-size: 13.6px;
  color: var(--text-300);
  line-height: 1.64;
  vertical-align: top;
  border-bottom: 1px solid rgba(212, 175, 55, .08);
}
.ledger tbody tr:last-child th,
.ledger tbody tr:last-child td { border-bottom: 0; }
.ledger tbody tr { transition: background .24s var(--ease); }
.ledger tbody tr:hover { background: rgba(212, 175, 55, .04); }

.signals__note {
  margin-top: 18px;
  padding: 16px 20px;
  font-size: 13.4px;
  color: var(--text-200);
  line-height: 1.66;
  background: rgba(224, 112, 60, .07);
  border: 1px solid rgba(224, 112, 60, .26);
  border-radius: var(--r-sm);
}

/* --------------------------------------------------------------------------
   11. Report form
   -------------------------------------------------------------------------- */
.section--report {
  background:
    radial-gradient(900px 520px at 12% 8%, rgba(34, 185, 129, .07), transparent 62%),
    linear-gradient(180deg, transparent, rgba(212, 175, 55, .022));
}
.report {
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(0, .66fr);
  gap: clamp(26px, 3.6vw, 48px);
  align-items: start;
}
.form {
  padding: clamp(24px, 3.2vw, 40px);
  background: linear-gradient(168deg, rgba(15, 19, 27, .94), rgba(6, 8, 12, .92));
  border: 1px solid var(--gold-line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-deep);
}
.form__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px 22px;
  margin-bottom: 20px;
}
.field { display: grid; gap: 7px; margin-bottom: 20px; }
.form__row .field { margin-bottom: 0; }
.field__label {
  font-size: 10.8px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-200);
}
.req { color: var(--em-300); }
.field__input {
  width: 100%;
  padding: 13px 15px;
  font-family: var(--ff-body);
  font-size: 14.5px;
  color: var(--text-100);
  background: rgba(4, 5, 8, .72);
  border: 1px solid rgba(212, 175, 55, .18);
  border-radius: var(--r-sm);
  transition: border-color .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease);
}
.field__input::placeholder { color: var(--text-500); }
.field__input:hover { border-color: rgba(212, 175, 55, .34); }
.field__input:focus {
  outline: none;
  border-color: var(--gold-400);
  background: rgba(8, 10, 15, .9);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, .14);
}
.field__input--select {
  appearance: none;
  cursor: pointer;
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%23d4af37' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}
.field__input--select option { background: #0a0d13; color: var(--text-100); }
.field__input--area { resize: vertical; min-height: 130px; line-height: 1.65; }
.field__hint { font-size: 12px; color: var(--text-400); line-height: 1.55; }
.field__error { font-size: 12.2px; font-weight: 600; color: #f0885c; }
.field.is-invalid .field__input { border-color: #d8663a; box-shadow: 0 0 0 3px rgba(216, 102, 58, .14); }

.form__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 6px;
  margin-bottom: 18px;
}
.form__status {
  font-size: 13.4px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 14px;
}
.form__status.is-ok { color: var(--em-200); }
.form__status.is-err { color: #f0885c; }
.form__note {
  padding: 16px 18px;
  font-size: 12.8px;
  color: var(--text-300);
  line-height: 1.68;
  background: rgba(212, 175, 55, .045);
  border: 1px solid var(--gold-line-soft);
  border-radius: var(--r-sm);
}
.form__note strong { color: var(--gold-200); }

.report__aside { display: grid; gap: 20px; position: sticky; top: 108px; }

/* --------------------------------------------------------------------------
   12. Trust badges + CTA band
   -------------------------------------------------------------------------- */
.badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: 16px;
  margin-bottom: clamp(38px, 5vw, 64px);
}
.badge {
  position: relative;
  padding: 28px 24px;
  text-align: left;
  background:
    radial-gradient(120% 90% at 50% -20%, rgba(212, 175, 55, .09), transparent 60%),
    linear-gradient(168deg, rgba(14, 18, 26, .9), rgba(7, 9, 14, .8));
  border: 1px solid rgba(212, 175, 55, .13);
  border-radius: var(--r-md);
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.badge:hover { transform: translateY(-6px); border-color: var(--gold-line); box-shadow: var(--sh-gold); }
.badge__glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  margin-bottom: 18px;
  color: var(--gold-300);
  background: linear-gradient(160deg, rgba(212, 175, 55, .16), rgba(34, 185, 129, .07));
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  transition: color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.badge:hover .badge__glyph { color: var(--em-200); border-color: var(--em-line); transform: rotate(-6deg) scale(1.06); }
.badge__title { font-size: 16px; font-weight: 600; color: var(--gold-100); margin-bottom: 10px; line-height: 1.3; }
.badge__text { font-size: 13.4px; color: var(--text-300); line-height: 1.64; }

.ctaband {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: clamp(22px, 3vw, 44px);
  align-items: center;
  padding: clamp(28px, 3.4vw, 44px);
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(212, 175, 55, .16), transparent 58%),
    radial-gradient(120% 140% at 100% 100%, rgba(34, 185, 129, .12), transparent 58%),
    linear-gradient(120deg, rgba(18, 23, 32, .96), rgba(6, 8, 12, .94));
  border: 1px solid var(--gold-line);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-deep);
}
.ctaband__title { font-size: clamp(21px, 2.4vw, 29px); color: var(--gold-100); margin-bottom: 12px; }
.ctaband__text { font-size: 14.6px; color: var(--text-300); max-width: 54ch; margin-bottom: 14px; }
.ctaband__url {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 14px;
  color: var(--gold-200);
  padding: 8px 14px;
  background: rgba(212, 175, 55, .08);
  border: 1px dashed var(--gold-line);
  border-radius: var(--r-sm);
  overflow-wrap: anywhere;
}
.ctaband__url:hover { background: rgba(212, 175, 55, .16); color: var(--gold-100); }
.ctaband__actions { display: grid; gap: 12px; align-content: center; }

/* --------------------------------------------------------------------------
   13. Contact + FAQ
   -------------------------------------------------------------------------- */
.contact {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(26px, 3.6vw, 50px);
  align-items: start;
}
.contact__cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); gap: 14px; }
.ccard {
  padding: 22px 20px;
  background: linear-gradient(166deg, rgba(14, 18, 26, .88), rgba(7, 9, 14, .78));
  border: 1px solid rgba(212, 175, 55, .13);
  border-radius: var(--r-md);
  transition: transform .28s var(--ease), border-color .28s var(--ease);
}
.ccard:hover { transform: translateY(-4px); border-color: var(--gold-line); }
.ccard--gold {
  border-color: var(--gold-line);
  background:
    radial-gradient(120% 100% at 100% 0%, rgba(212, 175, 55, .13), transparent 62%),
    linear-gradient(166deg, rgba(19, 24, 33, .94), rgba(7, 9, 14, .88));
}
.ccard__title {
  font-family: var(--ff-body);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--em-300);
  margin-bottom: 10px;
}
.ccard__text { font-size: 13.2px; color: var(--text-300); line-height: 1.6; margin-bottom: 14px; }
.ccard__link {
  font-family: var(--ff-mono);
  font-size: 12.8px;
  color: var(--gold-200);
  border-bottom: 1px solid var(--gold-line);
  overflow-wrap: anywhere;
}
.ccard__link:hover { color: var(--gold-100); border-bottom-color: var(--gold-400); }

.faq__title {
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--em-300);
  padding-bottom: 14px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--gold-line-soft);
}
.faq__item { border-bottom: 1px solid rgba(212, 175, 55, .1); }
.faq__q {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 40px 18px 0;
  position: relative;
  font-family: var(--ff-display);
  font-size: 15.6px;
  font-weight: 600;
  color: var(--text-100);
  line-height: 1.42;
  cursor: pointer;
  list-style: none;
  transition: color .22s var(--ease);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "";
  position: absolute;
  right: 6px; top: 26px;
  width: 11px; height: 11px;
  border-right: 2px solid var(--gold-400);
  border-bottom: 2px solid var(--gold-400);
  transform: rotate(45deg);
  transition: transform .3s var(--ease);
}
.faq__q:hover { color: var(--gold-200); }
.faq__item[open] .faq__q { color: var(--gold-200); }
.faq__item[open] .faq__q::after { transform: rotate(-135deg); }
.faq__a { padding: 0 30px 20px 0; }
.faq__a p { font-size: 14px; color: var(--text-300); line-height: 1.72; }

/* --------------------------------------------------------------------------
   14. Footer
   -------------------------------------------------------------------------- */
.footer {
  position: relative;
  z-index: 2;
  padding-top: clamp(52px, 6vw, 82px);
  background:
    radial-gradient(1000px 520px at 50% 0%, rgba(212, 175, 55, .07), transparent 62%),
    linear-gradient(180deg, #06070b, #030407);
  border-top: 1px solid var(--gold-line);
}
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, .9fr));
  gap: clamp(26px, 3.4vw, 48px);
  padding-bottom: clamp(34px, 4vw, 52px);
}
.footer__logo { width: 84px; margin-bottom: 16px; }
.footer__logo img { filter: drop-shadow(0 10px 26px rgba(212, 175, 55, .28)); }
.footer__name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .05em;
  margin-bottom: 6px;
  background: linear-gradient(96deg, var(--gold-100), var(--gold-400) 60%, var(--gold-200));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.footer__tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-400);
  margin-bottom: 20px;
}
.footer__official {
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  margin-bottom: 18px;
  background: rgba(212, 175, 55, .055);
  border: 1px solid var(--gold-line);
  border-radius: var(--r-sm);
}
.footer__officialLabel {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--em-300);
}
.footer__officialUrl {
  font-family: var(--ff-mono);
  font-size: 13px;
  color: var(--gold-100);
  overflow-wrap: anywhere;
}
.footer__officialUrl:hover { text-decoration: underline; text-underline-offset: 3px; }

.footer__colTitle {
  font-family: var(--ff-body);
  font-size: 10.8px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-200);
  padding-bottom: 13px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--gold-line-soft);
}
.footer__list { display: grid; gap: 10px; }
.footer__list a {
  font-size: 13.4px;
  color: var(--text-300);
  transition: color .2s var(--ease), padding-left .2s var(--ease);
}
.footer__list a:hover { color: var(--gold-200); padding-left: 5px; }
.footer__list--mail a { font-family: var(--ff-mono); font-size: 12.4px; overflow-wrap: anywhere; }
.footer__small {
  margin-top: 16px;
  font-size: 11.8px;
  color: var(--text-500);
  line-height: 1.6;
}

.footer__legal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(22px, 3vw, 42px);
  padding-block: clamp(28px, 3.4vw, 42px);
  border-top: 1px solid rgba(212, 175, 55, .1);
}
.footer__noticeTitle {
  font-family: var(--ff-body);
  font-size: 10.8px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--em-300);
  margin-bottom: 12px;
}
.footer__notice p { font-size: 12.6px; color: var(--text-400); line-height: 1.76; }

.footer__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  padding-block: 22px;
  border-top: 1px solid rgba(212, 175, 55, .1);
}
.footer__copy, .footer__ref, .footer__age { font-size: 12px; color: var(--text-400); }
.footer__ref a { font-family: var(--ff-mono); font-size: 11.8px; color: var(--gold-300); overflow-wrap: anywhere; }
.footer__ref a:hover { color: var(--gold-100); }
.footer__age { display: inline-flex; align-items: center; gap: 9px; }
.agebadge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  font-family: var(--ff-mono);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--gold-100);
  border: 1.4px solid var(--gold-400);
  border-radius: 50%;
}

/* Back to top */
.totop {
  position: fixed;
  right: clamp(14px, 2.4vw, 30px);
  bottom: clamp(14px, 2.4vw, 30px);
  z-index: 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  color: #17120a;
  background: linear-gradient(158deg, var(--gold-200), var(--gold-400) 62%, var(--gold-500));
  border: 1px solid rgba(247, 236, 196, .5);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .5);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.totop.is-shown { opacity: 1; transform: none; }
.totop:hover { color: #17120a; transform: translateY(-3px); }

/* --------------------------------------------------------------------------
   15. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1180px) {
  .nav__list { gap: 14px; }
  .nav__link { font-size: 12px; }
  .brand__sub { display: none; }
}

@media (max-width: 1080px) {
  .hero__grid,
  .verify,
  .mission,
  .legal,
  .signals,
  .report,
  .contact,
  .dmca__flow { grid-template-columns: minmax(0, 1fr); }

  .mission__media,
  .signals__media,
  .legal__aside,
  .report__aside { position: static; }

  .hero__seal { max-width: 520px; margin-inline: auto; width: 100%; }
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ctaband { grid-template-columns: minmax(0, 1fr); }
  .ctaband__actions { grid-auto-flow: column; justify-content: start; }
}

@media (max-width: 900px) {
  html { scroll-padding-top: 84px; }
  .burger { display: block; }
  .masthead__inner { min-height: 66px; }

  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 95;
    width: min(340px, 88vw);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 86px 26px 32px;
    background: linear-gradient(180deg, #090c12, #05060a);
    border-left: 1px solid var(--gold-line);
    box-shadow: -20px 0 60px rgba(0, 0, 0, .7);
    transform: translateX(102%);
    visibility: hidden;
    transition: transform .38s var(--ease), visibility .38s var(--ease);
    overflow-y: auto;
  }
  .nav.is-open { transform: none; visibility: visible; }
  /* keep the closed off-canvas panel from widening the document */
  .nav:not(.is-open) { transform: translateX(102%); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; margin-bottom: 24px; }
  .nav__list li { border-bottom: 1px solid rgba(212, 175, 55, .1); }
  .nav__link { display: block; padding: 15px 2px; font-size: 13.5px; }
  .nav__link::after { display: none; }
  .nav__cta { width: 100%; }

  body.is-locked { overflow: hidden; }
  .nav-scrim {
    position: fixed;
    inset: 0;
    z-index: 92;
    background: rgba(3, 4, 7, .74);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .34s var(--ease), visibility .34s var(--ease);
  }
  .nav-scrim.is-shown { opacity: 1; visibility: visible; }

  .hero__stats { grid-template-columns: minmax(0, 1fr); }
  .clause { padding-left: 32px; }
  .ledger tbody th { width: auto; }
  .ledger thead { display: none; }
  .ledger tbody th, .ledger tbody td { display: block; }
  .ledger tbody th { padding-bottom: 6px; border-bottom: 0; }
  .ledger tbody td { padding-top: 0; }
  .ledger tbody tr:not(:last-child) td { border-bottom: 1px solid rgba(212, 175, 55, .1); }
}

@media (max-width: 640px) {
  .topbar__inner { justify-content: flex-start; }
  .topbar__note { display: none; }
  .hero__title { font-size: clamp(27px, 8.4vw, 38px); }
  .urlchip { width: 100%; justify-content: flex-start; border-radius: var(--r-md); }
  .btn { width: 100%; }
  .btn--sm { width: auto; }
  .hero__actions .btn, .form__foot .btn, .ctaband__actions .btn, .verify__plateActions .btn { width: 100%; }
  .ctaband__actions { grid-auto-flow: row; }
  .footer__grid { grid-template-columns: minmax(0, 1fr); }
  .footer__bar { flex-direction: column; align-items: flex-start; }
  .form { padding: 22px 18px; }
  .legal__doc { padding: 24px 18px; }
  .legal__doc::before { inset: 6px; }
  .sealcard { padding: 24px 18px; }
  .totop { width: 42px; height: 42px; }
}

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

/* --------------------------------------------------------------------------
   16. Print
   -------------------------------------------------------------------------- */
@media print {
  .grain, .totop, .burger, .masthead, .topbar, .hero__bg, .nav-scrim { display: none !important; }
  body { background: #fff; color: #000; }
  .section { padding-block: 18px; border: 0; }
  h1, h2, h3, h4 { color: #000 !important; -webkit-text-fill-color: #000; }
  a { color: #000; text-decoration: underline; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
