:root {
  --bg: #030a10;
  --bg-2: #07131c;
  --panel: rgba(10, 26, 38, 0.78);
  --panel-solid: #0a1a26;
  --panel-soft: rgba(18, 47, 65, 0.72);
  --text: #eef8ff;
  --muted: #abc1cf;
  --muted-2: #7390a0;
  --cyan: #00f0ff;
  --mint: #48ff9d;
  --red: #ff2f4f;
  --amber: #ffca73;
  --line: rgba(151, 235, 255, 0.16);
  --line-strong: rgba(72, 255, 157, 0.38);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 12%, rgba(0, 240, 255, 0.14), transparent 28rem),
    radial-gradient(circle at 84% 10%, rgba(255, 47, 79, 0.16), transparent 25rem),
    radial-gradient(circle at 55% 62%, rgba(72, 255, 157, 0.08), transparent 30rem),
    linear-gradient(135deg, #02080d 0%, #07131c 46%, #031219 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 82%);
  z-index: -1;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p {
  color: var(--muted);
  line-height: 1.78;
  font-size: 1.02rem;
}

h1,
h2,
h3 {
  color: var(--text);
  margin: 0 0 18px;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(2.55rem, 7vw, 6.7rem);
  max-width: 980px;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 3.8rem);
}

h3 {
  font-size: clamp(1.22rem, 2.2vw, 1.9rem);
  letter-spacing: -0.02em;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-150%);
  background: var(--mint);
  color: #001014;
  padding: 12px 16px;
  border-radius: 999px;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.vault-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(3, 10, 16, 0.62);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.vault-header.is-scrolled {
  background: rgba(3, 10, 16, 0.88);
  border-color: var(--line);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.34);
}

.vault-header__inner {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 82px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-mark img {
  width: 170px;
  height: auto;
}

.vault-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}

.vault-nav a {
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.92rem;
  transition: color 0.2s ease, background 0.2s ease;
}

.vault-nav a:hover,
.vault-nav a:focus-visible {
  color: var(--text);
  background: rgba(0, 240, 255, 0.12);
  outline: none;
}

.header-cta,
.primary-action,
.ghost-action,
.text-link,
.floating-cta,
.cookie-note button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  font: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.header-cta,
.primary-action {
  color: #001016;
  background: linear-gradient(135deg, var(--cyan), var(--mint));
  padding: 13px 20px;
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(0, 240, 255, 0.24);
}

.header-cta:hover,
.primary-action:hover,
.cookie-note button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(72, 255, 157, 0.24);
}

.ghost-action {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  padding: 13px 20px;
  border-radius: 999px;
}

.ghost-action:hover {
  border-color: var(--red);
  background: rgba(255, 47, 79, 0.12);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  padding: 11px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--text);
}

.hero-vault {
  position: relative;
  padding: 96px 0 54px;
  overflow: hidden;
}

.hero-vault__inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
  align-items: center;
  gap: 42px;
}

.hero-vault__glow {
  position: absolute;
  pointer-events: none;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  filter: blur(30px);
  opacity: 0.28;
}

.hero-vault__glow--cyan {
  left: -120px;
  top: 120px;
  background: var(--cyan);
}

.hero-vault__glow--red {
  right: -160px;
  top: 40px;
  background: var(--red);
}

.eyebrow,
.section-kicker,
.ribbon-label {
  margin: 0 0 16px;
  color: var(--mint);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  line-height: 1.4;
}

.hero-lead {
  font-size: clamp(1.12rem, 2vw, 1.32rem);
  color: #d9f6ff;
  max-width: 760px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.audit-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.audit-chips span {
  color: #dffaff;
  border: 1px solid rgba(0, 240, 255, 0.25);
  background: rgba(0, 240, 255, 0.07);
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 0.86rem;
}

.hero-media {
  position: relative;
  margin: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(72, 255, 157, 0.22);
  background: var(--panel-solid);
  box-shadow: var(--shadow), 0 0 0 9px rgba(255, 255, 255, 0.025);
  transform: rotate(1.5deg);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(0, 240, 255, 0.12), transparent 34%, rgba(255, 47, 79, 0.18));
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.hero-media figcaption,
.media-frame figcaption {
  position: relative;
  z-index: 2;
  color: var(--muted);
  padding: 16px 18px;
  background: rgba(3, 10, 16, 0.82);
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  line-height: 1.55;
}

.legal-ribbon,
.route-map,
.signal-dock,
.metric-band,
.closing-cta,
.vault-footer {
  width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

.legal-ribbon {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(255, 202, 115, 0.22);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 202, 115, 0.1), transparent 48%),
    rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
}

.legal-ribbon p:last-child {
  margin-bottom: 0;
}

.text-link {
  color: var(--amber);
  border-bottom: 1px solid rgba(255, 202, 115, 0.45);
  padding-bottom: 3px;
  white-space: nowrap;
}

.text-link:hover {
  color: var(--text);
}

.route-map {
  margin-top: 72px;
  padding: 28px 0;
}

.route-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 8px 0 14px;
  scrollbar-width: thin;
}

.route-scroll a {
  flex: 0 0 auto;
  color: #dffaff;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  padding: 13px 16px;
  border-radius: 16px;
}

.route-scroll a:hover {
  border-color: var(--line-strong);
  background: rgba(72, 255, 157, 0.08);
}

.signal-dock {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: stretch;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(0, 240, 255, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
}

.signal-dock__intro p:last-child {
  margin-bottom: 0;
}

.tab-console {
  border: 1px solid rgba(0, 240, 255, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(3, 10, 16, 0.64);
  padding: 16px;
}

.tab-console__buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.tab-button {
  appearance: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  border-radius: 14px;
  padding: 12px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.tab-button.is-active,
.tab-button:hover {
  color: #001016;
  background: linear-gradient(135deg, var(--cyan), var(--mint));
  border-color: transparent;
}

.tab-panel {
  min-height: 132px;
  padding: 22px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 14%, rgba(72, 255, 157, 0.18), transparent 14rem),
    #071722;
}

.tab-panel p {
  margin: 0;
  color: #dffaff;
}

.metric-band {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.metric {
  padding: 28px;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
}

.metric:last-child {
  border-right: 0;
}

.metric__value {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 1;
  color: var(--mint);
  letter-spacing: -0.08em;
}

.metric__label {
  color: var(--muted);
  margin-top: 9px;
}

.article-flow {
  width: var(--container);
  margin: 70px auto 0;
}

.vault-section {
  position: relative;
  padding: clamp(32px, 5vw, 58px);
  margin: 26px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.018)),
    var(--panel);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.vault-section::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--cyan), var(--mint), var(--red));
  opacity: 0.72;
}

.vault-section > * {
  position: relative;
  z-index: 1;
}

.vault-section p:last-child,
.vault-section ul:last-child,
.vault-section ol:last-child {
  margin-bottom: 0;
}

.table-shell {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(3, 10, 16, 0.56);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th,
td {
  padding: 18px 20px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.62;
}

th {
  color: var(--text);
  background: rgba(0, 240, 255, 0.08);
  letter-spacing: 0.02em;
}

tr:last-child td {
  border-bottom: 0;
}

td:first-child {
  color: #e9fbff;
  width: 220px;
}

.split-chapter {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: 34px;
  align-items: center;
}

.media-frame {
  margin: 0;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(0, 240, 255, 0.2);
  background: rgba(3, 10, 16, 0.9);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
}

.media-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.media-frame--svg img {
  object-fit: cover;
}

.step-grid {
  list-style: none;
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 24px 0 0;
}

.step-grid li,
.step-list li {
  position: relative;
  color: var(--muted);
  line-height: 1.62;
}

.step-grid li {
  counter-increment: step;
  padding: 18px 18px 18px 60px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.step-grid li::before {
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 16px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #001016;
  background: linear-gradient(135deg, var(--cyan), var(--mint));
}

.editorial-stripe {
  background:
    linear-gradient(90deg, rgba(0, 240, 255, 0.12), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.018)),
    var(--panel);
}

.warning-block {
  border-color: rgba(255, 47, 79, 0.3);
  background:
    linear-gradient(135deg, rgba(255, 47, 79, 0.12), transparent 44%),
    rgba(42, 11, 19, 0.56);
}

.check-lattice,
.risk-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.check-lattice li,
.risk-list li {
  position: relative;
  color: var(--muted);
  line-height: 1.6;
  padding: 15px 16px 15px 42px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.036);
  border: 1px solid var(--line);
}

.check-lattice li::before,
.risk-list li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 20px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
}

.check-lattice li::before {
  background: var(--mint);
  box-shadow: 0 0 18px rgba(72, 255, 157, 0.6);
}

.risk-list li::before {
  background: var(--red);
  box-shadow: 0 0 18px rgba(255, 47, 79, 0.5);
}

.check-lattice--compact {
  grid-template-columns: 1fr;
}

.two-list,
.payment-rail,
.tri-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.step-list {
  margin: 22px 0 0;
  padding-left: 1.2rem;
}

.step-list li {
  margin: 10px 0;
  padding-left: 6px;
}

.step-list li::marker {
  color: var(--mint);
}

.payment-rail {
  margin-top: 28px;
}

.payment-rail > div,
.two-list > div,
.tri-column > div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(3, 10, 16, 0.42);
}

.responsible-panel {
  border-color: rgba(255, 202, 115, 0.32);
  background:
    radial-gradient(circle at 95% 12%, rgba(255, 202, 115, 0.16), transparent 18rem),
    rgba(28, 22, 9, 0.54);
}

.final-verdict {
  background:
    radial-gradient(circle at 12% 16%, rgba(72, 255, 157, 0.14), transparent 20rem),
    rgba(6, 24, 21, 0.62);
}

.faq-zone {
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(3, 10, 16, 0.48);
  overflow: hidden;
}

.faq-question {
  appearance: none;
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 20px 58px 20px 22px;
  cursor: pointer;
  font: inherit;
  font-size: 1.04rem;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--mint);
  font-size: 1.6rem;
  transition: transform 0.2s ease;
}

.faq-question[aria-expanded="true"]::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  padding: 0 22px 22px;
}

.faq-answer p {
  margin: 0;
}

.closing-cta {
  margin-top: 34px;
  margin-bottom: 54px;
  padding: clamp(30px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(72, 255, 157, 0.3);
  background:
    radial-gradient(circle at 92% 10%, rgba(0, 240, 255, 0.16), transparent 18rem),
    linear-gradient(135deg, rgba(72, 255, 157, 0.12), rgba(255, 47, 79, 0.08));
  box-shadow: var(--shadow);
}

.closing-cta h2 {
  margin-bottom: 0;
  max-width: 840px;
}

.floating-cta {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 70;
  color: #001016;
  background: linear-gradient(135deg, var(--red), var(--amber));
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: 0 16px 45px rgba(255, 47, 79, 0.34);
}

.floating-cta:hover {
  transform: translateY(-3px);
}

.cookie-note {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 75;
  width: min(420px, calc(100vw - 44px));
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(3, 10, 16, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.cookie-note p {
  margin: 0 0 14px;
  font-size: 0.92rem;
}

.cookie-note button {
  color: #001016;
  background: linear-gradient(135deg, var(--cyan), var(--mint));
  padding: 10px 16px;
  border-radius: 999px;
}

.vault-footer {
  padding: 34px 0 40px;
  border-top: 1px solid var(--line);
}

.vault-footer__top,
.vault-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.vault-footer__top p {
  max-width: 680px;
  margin: 0;
  text-align: right;
}

.vault-footer__bottom {
  margin-top: 24px;
  color: var(--muted-2);
  font-size: 0.92rem;
}

.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

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

@media (max-width: 1080px) {
  .vault-header__inner {
    min-height: 74px;
  }

  .nav-toggle {
    display: block;
  }

  .vault-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 24px;
    padding: 12px;
    background: rgba(3, 10, 16, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
  }

  .vault-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .header-cta {
    display: none;
  }

  .hero-vault__inner,
  .split-chapter,
  .signal-dock,
  .closing-cta {
    grid-template-columns: 1fr;
  }

  .hero-media {
    transform: none;
  }

  .metric-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric:nth-child(2) {
    border-right: 0;
  }

  .metric:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100vw - 28px, 1180px);
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 4.2rem);
  }

  h2 {
    font-size: clamp(1.7rem, 8vw, 2.65rem);
  }

  p {
    font-size: 0.98rem;
  }

  .brand-mark img {
    width: 146px;
  }

  .hero-vault {
    padding-top: 54px;
  }

  .hero-actions,
  .audit-chips {
    align-items: stretch;
  }

  .primary-action,
  .ghost-action {
    width: 100%;
  }

  .legal-ribbon,
  .metric-band,
  .two-list,
  .payment-rail,
  .tri-column,
  .check-lattice,
  .step-grid {
    grid-template-columns: 1fr;
  }

  .legal-ribbon {
    padding: 22px;
  }

  .signal-dock,
  .vault-section,
  .closing-cta {
    padding: 24px;
    border-radius: 24px;
  }

  .tab-console__buttons {
    grid-template-columns: 1fr;
  }

  .metric {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    min-height: 112px;
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .payment-rail > div,
  .two-list > div,
  .tri-column > div {
    padding: 18px;
  }

  .floating-cta {
    right: 14px;
    bottom: 14px;
    padding: 12px 14px;
    font-size: 0.9rem;
  }

  .cookie-note {
    left: 14px;
    bottom: 72px;
    width: calc(100vw - 28px);
  }

  .vault-footer__top,
  .vault-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .vault-footer__top p {
    text-align: left;
  }
}
