/* COLDSHIELD — private vault aesthetic */
:root {
  --bg: #070b0a;
  --bg-2: #0c1210;
  --surface: rgba(18, 28, 24, 0.72);
  --surface-solid: #121c18;
  --line: rgba(212, 184, 130, 0.16);
  --line-strong: rgba(212, 184, 130, 0.32);
  --text: #f2efe6;
  --muted: #9aa59c;
  --accent: #3aa882;
  --accent-dim: #1e6b52;
  --brass: #d4b882;
  --brass-bright: #ecd9a8;
  --brass-deep: #8f7340;
  --danger: #c96a58;
  --ok: #45c48a;
  --warn: #d4a84f;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --radius: 0;
  --shell: min(1140px, calc(100% - 3rem));
  --nav-h: 4.5rem;
  --ease: cubic-bezier(0.22, 0.8, 0.24, 1);
  --metal: linear-gradient(135deg, #f0dfb4 0%, #d4b882 35%, #a8864a 55%, #e8d4a0 78%, #c9a86c 100%);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.rtl { direction: rtl; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; color: inherit; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.shell { width: var(--shell); margin-inline: auto; }

/* Ambient atmosphere */
.ambiance {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.ambiance__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.ambiance__orb--a {
  width: 48vw;
  height: 48vw;
  top: -18vw;
  left: -12vw;
  background: radial-gradient(circle, rgba(58,168,130,.35), transparent 68%);
  animation: orbFloat 18s ease-in-out infinite alternate;
}
.ambiance__orb--b {
  width: 36vw;
  height: 36vw;
  right: -8vw;
  top: 30vh;
  background: radial-gradient(circle, rgba(212,184,130,.22), transparent 70%);
  animation: orbFloat 22s ease-in-out infinite alternate-reverse;
}
@keyframes orbFloat {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(4%, 6%, 0) scale(1.08); }
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

main, .nav, .footer, .dwell, .locale-banner, .mobile-nav, .unlock-toast, .session-bar, .ticker {
  position: relative;
  z-index: 1;
}
.nav { z-index: 30; }
.session-bar { z-index: 35; }
.dwell, .unlock-toast, .locale-banner { z-index: 45; }
.gate { z-index: 90; }
.grain { z-index: 95; }

/* —— Vault gate —— */
body.is-gated {
  overflow: hidden;
}
body.is-gated .dwell,
body.is-gated .session-bar {
  visibility: hidden;
}
.gate {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  transition: opacity .65s var(--ease), visibility .65s;
}
.gate.is-exit {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.gate__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(212,184,130,.1), transparent 60%),
    linear-gradient(180deg, #050807 0%, #0a100e 50%, #070b0a 100%);
}
.gate__panel {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  padding: 2.5rem 2rem 2.15rem;
  background:
    linear-gradient(165deg, rgba(28,38,34,.92), rgba(10,14,12,.88));
  border: 1px solid var(--line-strong);
  box-shadow:
    0 40px 100px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.05);
  backdrop-filter: blur(22px) saturate(1.2);
  text-align: center;
  animation: gateIn .7s var(--ease) both;
}
@keyframes gateIn {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.gate.is-asking .gate__panel {
  width: min(520px, 100%);
  text-align: start;
}
.gate__seal {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 1.35rem;
}
.gate__ring {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.gate__ring-track {
  fill: none;
  stroke: rgba(255,255,255,.06);
  stroke-width: 1.5;
}
.gate__ring-prog {
  fill: none;
  stroke: var(--brass);
  stroke-width: 1.5;
  stroke-linecap: round;
  transition: stroke-dashoffset .05s linear;
  filter: drop-shadow(0 0 6px rgba(212,184,130,.35));
}
.gate__lock {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.gate__lock-body {
  width: 28px;
  height: 24px;
  margin-top: 10px;
  border: 1.5px solid var(--brass);
  background: linear-gradient(180deg, rgba(212,184,130,.15), transparent);
  box-shadow: 0 0 20px rgba(58,168,130,.15);
}
.gate__lock-shackle {
  position: absolute;
  top: 38px;
  width: 18px;
  height: 16px;
  border: 1.5px solid var(--brass);
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  animation: shacklePulse 2.4s ease-in-out infinite;
}
@keyframes shacklePulse {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(-2px); opacity: 0.75; }
}
.gate__brand {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: linear-gradient(118deg, #fff1cc, #d4b882 45%, #e8d4a0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gate__kicker {
  margin: 0 0 1.5rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.gate__status {
  margin: 0 0 1.15rem;
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--brass-bright);
  min-height: 1.4em;
  letter-spacing: 0.02em;
}
.gate__bar {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.gate__bar i {
  display: block;
  height: 100%;
  width: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  background: var(--metal);
  box-shadow: 0 0 10px rgba(212,184,130,.4);
}
body.rtl .gate__bar i { transform-origin: right center; }
.gate__checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  text-align: start;
}
.gate__checks li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(154,165,156,.45);
  transition: color .35s;
}
body.rtl .gate__checks li { padding: 0.35rem 1.5rem 0.35rem 0; }
.gate__checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(212,184,130,.3);
  transform: translateY(-50%);
  transition: background .35s, border-color .35s, box-shadow .35s;
}
body.rtl .gate__checks li::before { left: auto; right: 0; }
.gate__checks li.is-on {
  color: var(--brass);
}
.gate__checks li.is-on::before {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 10px rgba(58,168,130,.45);
}
.gate__ask-eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
}
.gate__ask-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 550;
  font-size: clamp(1.55rem, 3.5vw, 1.95rem);
  line-height: 1.2;
}
.gate__ask-lead {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.55;
}
.gate__choices {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1.25rem;
}
.gate__choice {
  position: relative;
  display: grid;
  gap: 0.3rem;
  text-align: start;
  padding: 1.1rem 1.15rem;
  background: rgba(7,11,10,.45);
  border: 1px solid rgba(255,255,255,.08);
  cursor: pointer;
  transition: border-color .3s, background .3s, transform .25s, box-shadow .3s;
}
.gate__choice:hover {
  border-color: rgba(212,184,130,.45);
  background: rgba(212,184,130,.06);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,.25);
}
.gate__choice strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  font-style: normal;
}
.gate__choice em {
  font-style: normal;
  font-size: 0.86rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.4;
}
.gate__choice-tag {
  position: absolute;
  top: 0.85rem;
  right: 0.9rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
body.rtl .gate__choice-tag { right: auto; left: 0.9rem; }
.gate__choice--ghost {
  border-style: dashed;
  border-color: rgba(255,255,255,.1);
}
.gate__ask-safe {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1.45;
}

/* Session bar */
.session-bar {
  position: sticky;
  top: 0;
  z-index: 35;
  background: rgba(8, 14, 12, 0.92);
  border-bottom: 1px solid rgba(58,168,130,.28);
  backdrop-filter: blur(14px);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform .45s var(--ease), opacity .45s;
}
.session-bar.is-show {
  transform: translateY(0);
  opacity: 1;
}
.session-bar__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem 0.65rem;
  padding: 0.55rem 0;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.session-bar__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(58,168,130,.7);
  animation: sessionPulse 2s ease-in-out infinite;
}
@keyframes sessionPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}
.session-bar__label {
  color: var(--accent);
  font-weight: 500;
}
.session-bar__sep { opacity: 0.4; }
.session-bar__meta {
  color: var(--brass);
  font-variant-numeric: tabular-nums;
}
.session-bar__note { color: var(--muted); }
.session-bar__close {
  margin-inline-start: auto;
  background: none;
  border: 0;
  color: var(--muted);
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.15rem 0.35rem;
}
.session-bar__close:hover { color: var(--text); }

body.is-entering .hero__content {
  animation: riseIn 1s .15s var(--ease) both;
}

@media (max-width: 560px) {
  .gate__panel { padding: 1.85rem 1.25rem 1.6rem; }
  .gate__choice-tag { position: static; display: inline-block; margin-bottom: 0.25rem; }
  .session-bar__note { display: none; }
}

/* Locale banner */
.locale-banner {
  background: rgba(12, 18, 16, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px) saturate(1.2);
}
.locale-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.locale-banner__inner p { margin: 0; color: var(--brass-bright); }
.locale-banner__close {
  background: transparent;
  border: 0;
  color: var(--muted);
  font-size: 1.35rem;
  cursor: pointer;
  line-height: 1;
}

/* Dwell */
.dwell {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  max-width: min(290px, calc(100vw - 2rem));
  padding: 0.7rem 0.95rem;
  background: rgba(8, 12, 11, 0.78);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px) saturate(1.3);
  box-shadow:
    0 20px 50px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.04);
  transition: border-color .4s var(--ease), box-shadow .4s;
}
body.rtl .dwell { right: auto; left: 1.25rem; }
.dwell.is-done {
  border-color: rgba(58,168,130,.4);
  box-shadow: 0 20px 50px rgba(0,0,0,.45), 0 0 30px rgba(58,168,130,.12);
}
.dwell__ring {
  position: relative;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.dwell__ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.dwell__track {
  fill: none;
  stroke: rgba(255,255,255,.07);
  stroke-width: 2.5;
}
.dwell__prog {
  fill: none;
  stroke: url(#none);
  stroke: var(--brass);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 97.4;
  stroke-dashoffset: 97.4;
  transition: stroke-dashoffset .2s linear, stroke .3s;
}
.dwell.is-done .dwell__prog { stroke: var(--accent); }
.dwell__sec {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  color: var(--brass);
}
.dwell.is-done .dwell__sec { color: var(--accent); }
.dwell__text {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 400;
  line-height: 1.35;
  color: var(--muted);
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--nav-h);
  padding: 0 calc((100% - var(--shell)) / 2);
  background: rgba(7, 11, 10, 0.55);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(20px) saturate(1.25);
  transition: border-color .4s, background .4s;
}
.nav.is-solid {
  background: rgba(7, 11, 10, 0.88);
  border-bottom-color: var(--line);
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}
.nav__mark {
  width: 1.2rem;
  height: 1.2rem;
  border: 1px solid var(--brass);
  background:
    radial-gradient(circle at 50% 42%, transparent 30%, var(--accent) 31% 40%, transparent 41%),
    linear-gradient(var(--accent-dim), var(--accent-dim));
  background-size: 100% 100%, 0.16rem 0.3rem;
  background-position: center, center 70%;
  background-repeat: no-repeat;
  box-shadow: 0 0 12px rgba(58,168,130,.25);
}
.nav__name {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.22em;
  font-size: 0.92rem;
  text-transform: uppercase;
  color: var(--text);
}
.nav__links {
  display: flex;
  gap: 1.75rem;
  font-size: 0.78rem;
  font-weight: 450;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav__links a {
  position: relative;
  padding: 0.25rem 0;
  transition: color .25s;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
body.rtl .nav__links a::after { transform-origin: right; }
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__end {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.lang-select {
  appearance: none;
  background-color: rgba(18, 28, 24, 0.65);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.45rem 1.9rem 0.45rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 450;
  letter-spacing: 0.04em;
  color: var(--text);
  background-image:
    linear-gradient(45deg, transparent 50%, var(--brass) 50%),
    linear-gradient(135deg, var(--brass) 50%, transparent 50%);
  background-position: calc(100% - 12px) 55%, calc(100% - 7px) 55%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: border-color .25s, color .25s;
}
.lang-select:hover { border-color: var(--line-strong); color: var(--text); }
body.rtl .lang-select {
  padding: 0.45rem 0.75rem 0.45rem 1.9rem;
  background-position: 12px 55%, 7px 55%;
}
.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.05rem;
  background: transparent;
  color: var(--brass-bright);
  border: 1px solid var(--line-strong);
  font-weight: 500;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background .3s, color .3s, border-color .3s, box-shadow .3s;
}
.nav__cta:hover {
  background: rgba(212,184,130,.1);
  border-color: var(--brass);
  box-shadow: 0 0 24px rgba(212,184,130,.12);
}
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  padding: 0.35rem;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--text);
}
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.5rem 1.5rem 1.4rem;
  background: rgba(7,11,10,.96);
  border-bottom: 1px solid var(--line);
}
.mobile-nav a {
  padding: 0.85rem 0.35rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.mobile-nav:not([hidden]) { display: flex; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.95rem 1.45rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 500;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s, border-color .3s, transform .25s, box-shadow .3s, color .3s;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--metal);
  color: #1a1408;
  box-shadow:
    0 10px 30px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.35);
}
.btn--primary:hover {
  box-shadow:
    0 14px 36px rgba(212,184,130,.22),
    inset 0 1px 0 rgba(255,255,255,.4);
  filter: brightness(1.05);
}
.btn--ghost {
  background: rgba(255,255,255,.03);
  border-color: rgba(242,239,230,.22);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  border-color: var(--brass);
  color: var(--brass-bright);
  background: rgba(212,184,130,.06);
}
.btn--block { width: 100%; }

/* Hero */
.hero {
  position: relative;
  min-height: min(94vh, 920px);
  display: flex;
  align-items: flex-end;
  padding: 0 0 6.5rem;
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  filter: saturate(0.55) contrast(1.12) brightness(0.72);
  transform: scale(1.05);
  animation: heroDrift 32s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.05) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-1.8%, -1.2%, 0); }
}
.hero__shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 72% 38%, rgba(212,184,130,.16), transparent 55%),
    linear-gradient(180deg, rgba(7,11,10,.15) 0%, rgba(7,11,10,.35) 28%, rgba(7,11,10,.78) 62%, rgba(7,11,10,.96) 82%, var(--bg) 100%),
    linear-gradient(105deg, rgba(7,11,10,.82) 0%, rgba(7,11,10,.28) 52%, rgba(7,11,10,.62) 100%);
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,184,130,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,184,130,.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 20%, transparent 75%);
  opacity: 0.55;
  animation: gridPulse 10s ease-in-out infinite alternate;
}
@keyframes gridPulse {
  from { opacity: 0.35; }
  to { opacity: 0.6; }
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 40rem;
}
.hero__brand {
  margin: 0 0 1.1rem;
  animation: riseIn 1s var(--ease) both;
}
.hero__brand-text {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.8rem, 8vw, 5rem);
  letter-spacing: 0.14em;
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--brass-bright);
  background: linear-gradient(118deg, #fff1cc 0%, #ecd9a8 18%, #d4b882 42%, #f5e6c0 58%, #b8924e 78%, #e8d4a0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 10px 36px rgba(0,0,0,.55));
}
@supports not (background-clip: text) {
  .hero__brand-text {
    color: var(--brass-bright);
    -webkit-text-fill-color: currentColor;
    background: none;
  }
}
.hero__rule {
  display: block;
  width: 4.5rem;
  height: 1px;
  margin-bottom: 1.35rem;
  background: linear-gradient(90deg, var(--brass), transparent);
  animation: riseIn 1s .12s var(--ease) both;
}
.hero__title {
  margin: 0 0 1.15rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.65rem, 3.6vw, 2.45rem);
  line-height: 1.2;
  letter-spacing: 0.01em;
  max-width: 16ch;
  color: var(--text);
  animation: riseIn 1s .18s var(--ease) both;
}
.hero__lead {
  margin: 0 0 2rem;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.65;
  max-width: 38ch;
  animation: riseIn 1s .26s var(--ease) both;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  animation: riseIn 1s .34s var(--ease) both;
}
@keyframes riseIn {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}

/* Ticker */
.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(18,28,24,.9), rgba(12,18,16,.75));
  padding: 0.85rem 0;
  position: relative;
  z-index: 2;
}
.ticker::before,
.ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 1;
  pointer-events: none;
}
.ticker::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}
.ticker::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg), transparent);
}
.ticker__track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: tick 48s linear infinite;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.ticker__item strong {
  color: var(--brass);
  font-weight: 500;
}
.ticker__item .tag-danger { color: #e08a78; font-weight: 400; }
@keyframes tick {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
body.rtl .ticker__track { animation-direction: reverse; }

/* Sections */
.section {
  padding: 6.5rem 0;
  position: relative;
  z-index: 2;
}
.section--band {
  background:
    linear-gradient(180deg, rgba(18,28,24,.45), rgba(7,11,10,.15));
  border-block: 1px solid rgba(212,184,130,.08);
}
.section__head {
  max-width: 42rem;
  margin-bottom: 3rem;
}
.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
}
.section__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  letter-spacing: 0.01em;
}
.section__lead {
  margin: 0;
  color: var(--muted);
  font-weight: 300;
  font-size: 1.05rem;
  max-width: 46ch;
  line-height: 1.65;
}

/* Threats */
.threat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
.threat {
  position: relative;
  padding: 1.85rem 1.55rem 1.55rem;
  background: linear-gradient(165deg, rgba(22,32,28,.85), rgba(10,14,12,.4));
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  transition: border-color .35s, transform .4s var(--ease), box-shadow .4s;
}
.threat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--brass), transparent 70%);
  opacity: 0.55;
}
.threat:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(0,0,0,.35);
}
.threat__n {
  display: block;
  margin-bottom: 1.15rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--brass-deep);
  letter-spacing: 0.14em;
}
.threat h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.01em;
}
.threat p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.6;
}
.threat__more {
  margin-top: 1.25rem;
  padding: 0;
  background: none;
  border: 0;
  color: var(--brass);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .25s;
}
.threat__more:hover { color: var(--brass-bright); }
.threat__detail {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.06);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.6;
  animation: riseIn .4s var(--ease) both;
}

/* Risk check */
.check {
  max-width: 620px;
  padding: 2.1rem;
  background:
    linear-gradient(160deg, rgba(24,34,30,.9), rgba(12,18,16,.75));
  border: 1px solid var(--line);
  box-shadow:
    0 30px 60px rgba(0,0,0,.3),
    inset 0 1px 0 rgba(255,255,255,.04);
  backdrop-filter: blur(14px);
}
.check__progress {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.check__bar {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.08);
  position: relative;
  overflow: visible;
}
.check__bar::after {
  content: "";
  position: absolute;
  inset: -1px auto -1px 0;
  width: var(--p, 20%);
  background: var(--metal);
  transition: width .45s var(--ease);
  box-shadow: 0 0 12px rgba(212,184,130,.35);
}
.check__step {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.check__q {
  margin: 0 0 1.35rem;
  font-family: var(--font-display);
  font-weight: 550;
  font-size: 1.45rem;
  line-height: 1.3;
}
.check__opts { display: grid; gap: 0.7rem; }
.check__opt {
  text-align: start;
  padding: 1.05rem 1.15rem;
  background: rgba(7,11,10,.45);
  border: 1px solid rgba(255,255,255,.07);
  cursor: pointer;
  font-weight: 400;
  font-size: 0.95rem;
  transition: border-color .3s, background .3s, transform .25s, box-shadow .3s;
}
.check__opt:hover {
  border-color: rgba(212,184,130,.45);
  background: rgba(212,184,130,.06);
  transform: translateX(4px);
  box-shadow: -4px 0 0 var(--brass);
}
body.rtl .check__opt:hover {
  transform: translateX(-4px);
  box-shadow: 4px 0 0 var(--brass);
}
.check__safe {
  margin: 1.75rem 0 0;
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--accent);
}
.check__result {
  text-align: center;
  animation: riseIn .5s var(--ease) both;
}
.score {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.4rem;
  border-radius: 50%;
  border: 1px solid var(--brass);
  display: grid;
  place-content: center;
  background:
    radial-gradient(circle at 40% 30%, rgba(58,168,130,.18), transparent 60%),
    rgba(7,11,10,.5);
  box-shadow: 0 0 40px rgba(212,184,130,.1);
}
.score__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  background: var(--metal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.score__label {
  font-size: 0.65rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
}
.check__result h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
}
.check__result > p {
  color: var(--muted);
  margin: 0 0 1.15rem;
  font-weight: 300;
}
.score__tips {
  text-align: start;
  margin: 0 auto 1.6rem;
  padding: 0 0 0 1.1rem;
  max-width: 28rem;
  color: var(--text);
  font-weight: 300;
}
.score__tips li { margin-bottom: 0.45rem; }
.check__result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}
.score[data-level="high"] { border-color: var(--danger); }
.score[data-level="mid"] { border-color: var(--warn); }
.score[data-level="low"] { border-color: var(--ok); }

/* Rules */
.rules {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.rules__item {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1.25rem;
  padding: 1.65rem 0;
  border-bottom: 1px solid var(--line);
  transition: background .3s;
}
.rules__item:hover {
  background: linear-gradient(90deg, rgba(212,184,130,.04), transparent 60%);
}
.rules__n {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--brass);
  line-height: 1;
  letter-spacing: 0.04em;
}
.rules__item h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
}
.rules__item p {
  margin: 0;
  color: var(--muted);
  font-weight: 300;
}

/* Scenario */
.scenario {
  max-width: 620px;
  padding: 2.1rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(24,34,30,.85), rgba(12,18,16,.6));
  box-shadow: 0 24px 50px rgba(0,0,0,.25);
  backdrop-filter: blur(12px);
}
.scenario__prompt {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 550;
  line-height: 1.35;
}
.scenario__opts { display: grid; gap: 0.7rem; }
.scenario__opt {
  text-align: start;
  padding: 1.05rem 1.15rem;
  background: rgba(7,11,10,.4);
  border: 1px solid rgba(255,255,255,.08);
  cursor: pointer;
  font-weight: 400;
  transition: border-color .3s, background .3s, transform .25s;
}
.scenario__opt:hover {
  border-color: var(--brass);
  transform: translateX(3px);
}
.scenario__opt.is-picked { opacity: 0.5; pointer-events: none; }
.scenario__opt.is-correct {
  border-color: var(--ok);
  opacity: 1;
  background: rgba(69,196,138,.08);
}
.scenario__opt.is-wrong {
  border-color: var(--danger);
  opacity: 1;
  background: rgba(201,106,88,.08);
}
.scenario__feedback {
  margin-top: 1.15rem;
  padding: 1.1rem 1.15rem;
  font-size: 0.95rem;
  font-weight: 300;
  border-left: 1px solid var(--accent);
  background: rgba(58,168,130,.07);
  animation: riseIn .4s var(--ease) both;
}
body.rtl .scenario__feedback {
  border-left: 0;
  border-right: 1px solid var(--accent);
}
.scenario__feedback[data-kind="bad"] {
  border-color: var(--danger);
  background: rgba(201,106,88,.08);
}
.scenario__feedback[data-kind="mid"] {
  border-color: var(--warn);
  background: rgba(212,168,79,.08);
}

/* Kit */
.kit {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}
.kit__list {
  margin: 1.75rem 0;
  padding: 0;
  list-style: none;
}
.kit__list li {
  position: relative;
  padding: 0.7rem 0 0.7rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
  color: var(--muted);
  font-weight: 300;
}
body.rtl .kit__list li { padding: 0.7rem 1.5rem 0.7rem 0; }
.kit__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 0.5rem;
  height: 1px;
  background: var(--brass);
}
body.rtl .kit__list li::before { left: auto; right: 0; }
.kit__price {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}
.kit__amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 550;
  background: var(--metal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.kit__note {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.04em;
}
.kit__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.kit__visual {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 1.5rem 0;
}
.kit__glow {
  position: absolute;
  width: 70%;
  height: 70%;
  top: 15%;
  left: 15%;
  background: radial-gradient(circle, rgba(212,184,130,.2), transparent 65%);
  filter: blur(30px);
  animation: glowPulse 5s ease-in-out infinite alternate;
}
@keyframes glowPulse {
  from { opacity: 0.5; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1.08); }
}
.kit__card {
  position: relative;
  width: min(100%, 340px);
  padding: 1.75rem;
  background:
    linear-gradient(155deg, rgba(212,184,130,.14), transparent 42%),
    linear-gradient(180deg, #1a2621 0%, #0e1412 100%);
  border: 1px solid var(--line-strong);
  box-shadow:
    0 40px 80px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.06);
  animation: floatCard 7s ease-in-out infinite;
}
.kit__card-edge {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(212,184,130,.12);
  pointer-events: none;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0) rotate(-0.4deg); }
  50% { transform: translateY(-10px) rotate(0.4deg); }
}
.kit__card-top {
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--brass);
  margin-bottom: 1.6rem;
  font-weight: 500;
}
.kit__plate {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  padding: 1.15rem;
  background:
    linear-gradient(180deg, #2c3631, #1a221e);
  border: 1px solid rgba(212,184,130,.3);
  margin-bottom: 1.25rem;
  box-shadow: inset 0 2px 8px rgba(0,0,0,.35);
}
.kit__plate span {
  aspect-ratio: 1.55;
  background:
    linear-gradient(160deg, #4a5550, #2a332e 55%, #1e2622);
  border: 1px solid rgba(212,184,130,.18);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 1px 2px rgba(0,0,0,.3);
}
.kit__seal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}
.kit__seal i {
  width: 28px;
  height: 28px;
  border: 1px solid var(--brass);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%, transparent 28%, var(--accent) 29% 38%, transparent 39%);
  box-shadow: 0 0 16px rgba(58,168,130,.25);
}
.kit__seal p,
.kit__card p {
  margin: 0;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}

/* Multisig */
.ms-why {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  margin-bottom: 2.75rem;
}
.ms-why__item {
  padding: 1.5rem 1.35rem;
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(22,32,28,.8), rgba(10,14,12,.35));
}
.ms-why__n {
  display: block;
  margin-bottom: 0.85rem;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--brass-deep);
}
.ms-why__item h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
}
.ms-why__item p {
  margin: 0;
  color: var(--muted);
  font-weight: 300;
  font-size: 0.94rem;
  line-height: 1.55;
}
.ms-picker__label {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
}
.ms-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.ms-tab {
  padding: 0.65rem 1rem;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color .25s, color .25s, background .25s;
}
.ms-tab:hover {
  border-color: var(--line-strong);
  color: var(--text);
}
.ms-tab.is-on {
  border-color: var(--brass);
  color: var(--brass-bright);
  background: rgba(212,184,130,.08);
}
.ms-panel {
  padding: 1.85rem 1.65rem;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(160deg, rgba(24,34,30,.9), rgba(12,18,16,.7));
  box-shadow: 0 24px 50px rgba(0,0,0,.28);
  animation: riseIn .4s var(--ease) both;
}
.ms-panel__badge {
  margin: 0 0 0.55rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.ms-panel__head h3 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-weight: 550;
  font-size: clamp(1.4rem, 2.8vw, 1.85rem);
}
.ms-panel__desc {
  margin: 0 0 1.35rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
  max-width: 62ch;
}
.ms-steps {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
  counter-reset: ms;
}
.ms-steps li {
  position: relative;
  padding: 0.85rem 1rem 0.85rem 3.1rem;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(7,11,10,.35);
  color: var(--text);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.5;
  counter-increment: ms;
}
body.rtl .ms-steps li { padding: 0.85rem 3.1rem 0.85rem 1rem; }
.ms-steps li::before {
  content: counter(ms, decimal-leading-zero);
  position: absolute;
  left: 0.9rem;
  top: 0.9rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--brass);
  letter-spacing: 0.04em;
}
body.rtl .ms-steps li::before { left: auto; right: 0.9rem; }
.ms-panel__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.ms-panel__foot p {
  margin: 0;
  flex: 1;
  min-width: 16rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 300;
}
.ms-note {
  margin-top: 1.75rem;
  padding: 1.15rem 1.35rem;
  border-left: 1px solid var(--brass);
  background: rgba(212,184,130,.05);
}
body.rtl .ms-note { border-left: 0; border-right: 1px solid var(--brass); }
.ms-note strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--brass-bright);
}
.ms-note p {
  margin: 0;
  color: var(--muted);
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.55;
  max-width: 64ch;
}

/* Form */
.consult { max-width: 540px; }
.form {
  display: grid;
  gap: 1rem;
  margin-top: 0.75rem;
}
.form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.form input,
.form select {
  padding: 0.95rem 1rem;
  background: rgba(12,18,16,.8);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: none;
  transition: border-color .3s, box-shadow .3s;
}
.form input:focus,
.form select:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(212,184,130,.1);
}
.form__ok {
  margin: 0;
  color: var(--ok);
  font-size: 0.9rem;
  font-weight: 300;
}
.wa-link {
  display: inline-block;
  margin-top: 1.15rem;
  color: var(--brass);
  font-weight: 500;
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-bottom: 1px solid rgba(212,184,130,.35);
  padding-bottom: 2px;
  transition: color .25s, border-color .25s;
}
.wa-link:hover {
  color: var(--brass-bright);
  border-color: var(--brass-bright);
}

/* Footer */
.footer {
  padding: 3.5rem 0 6rem;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 2;
}
.footer__inner { display: grid; gap: 1.15rem; }
.footer__brand {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
}
.footer__brand strong {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.18em;
  font-size: 0.95rem;
}
.footer__brand p {
  width: 100%;
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 300;
}
.footer__warn {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.6;
}
.footer__copy {
  margin: 0.5rem 0 0;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: rgba(154,165,156,.55);
}

/* Unlock toast */
.unlock-toast {
  position: fixed;
  left: 50%;
  bottom: 5.8rem;
  transform: translateX(-50%) translateY(14px);
  width: min(360px, calc(100vw - 2rem));
  padding: 1.15rem 1.25rem;
  background: rgba(12,18,16,.92);
  border: 1px solid rgba(58,168,130,.4);
  box-shadow: 0 20px 55px rgba(0,0,0,.45);
  backdrop-filter: blur(16px);
  display: grid;
  gap: 0.4rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s, transform .4s var(--ease);
  z-index: 46;
}
.unlock-toast.is-show {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.unlock-toast strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
}
.unlock-toast span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 300;
}
.unlock-toast a {
  margin-top: 0.4rem;
  color: var(--brass);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 900px) {
  .threat-grid { grid-template-columns: 1fr; }
  .ms-why { grid-template-columns: 1fr; }
  .kit { grid-template-columns: 1fr; gap: 2.5rem; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .menu-toggle { display: flex; }
  .hero { min-height: 90vh; padding-bottom: 4.5rem; }
  .dwell__text { display: none; }
  .dwell {
    padding: 0.5rem;
    border-radius: 50%;
    max-width: none;
  }
  .hero__brand-text { letter-spacing: 0.1em; }
}

@media (max-width: 560px) {
  :root { --shell: min(1140px, calc(100% - 1.5rem)); }
  .section { padding: 4.5rem 0; }
  .check, .scenario { padding: 1.4rem; }
  .hero__actions .btn { width: 100%; }
  .kit__amount { font-size: 2.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero__media img,
  .kit__card,
  .ambiance__orb { transform: none !important; animation: none !important; }
}
