:root {
  --bg: #050505;
  --bg-soft: #0e0e0e;
  --surface: rgba(21, 21, 21, 0.78);
  --surface-strong: #121212;
  --text: #f3f3f3;
  --muted: #b5b5b5;
  --primary: #ff2a2a;
  --primary-strong: #b30000;
  --border: rgba(255, 255, 255, 0.2);
  --ok: #ff7a7a;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: radial-gradient(circle at 10% 0%, #1a1a1a 0%, var(--bg) 50%);
  color: var(--text);
  line-height: 1.5;
  scroll-behavior: smooth;
}

body {
  position: relative;
  overflow-x: hidden;
}

main,
.site-footer {
  position: relative;
  z-index: 2;
}

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

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(75px);
  pointer-events: none;
  z-index: -3;
}

.orb-1 {
  width: 320px;
  height: 320px;
  background: rgba(255, 42, 42, 0.27);
  top: -70px;
  left: -60px;
}

.orb-2 {
  width: 420px;
  height: 420px;
  background: rgba(179, 0, 0, 0.24);
  right: -120px;
  top: 260px;
}

.orb-3 {
  width: 260px;
  height: 260px;
  background: rgba(255, 255, 255, 0.08);
  left: 35%;
  bottom: -120px;
}

.grid-noise {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at center, #000 18%, transparent 92%);
  opacity: 0.3;
  pointer-events: none;
  z-index: -2;
}

.film-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.09;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.45) 0.7px, transparent 1px);
  background-size: 3px 3px;
  animation: grainShift 7s steps(8) infinite;
}

.page-loader {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 5, 0.96);
  z-index: 80;
  display: grid;
  place-items: center;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-line {
  width: min(440px, 72vw);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #ff2a2a, #ffffff, #ff2a2a, transparent);
  background-size: 220% 100%;
  animation: loaderSweep 0.8s ease forwards;
}

.ley-scroll-progress {
  position: fixed;
  right: 18px;
  top: 92px;
  width: 4px;
  height: calc(100vh - 126px);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  z-index: 35;
  overflow: hidden;
}

.ley-scroll-progress > span {
  display: block;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, #ff2a2a, #ffffff);
  transition: height 0.2s ease;
}

.network-bg {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  opacity: 0.55;
  z-index: 1;
}

.container {
  width: min(1140px, 92%);
  margin-inline: auto;
}

.glass {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(8px);
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 30;
}

.webinar-banner {
  position: relative;
  z-index: 32;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(
    90deg,
    rgba(11, 20, 32, 0.98) 0%,
    rgba(19, 34, 54, 0.96) 54%,
    rgba(8, 16, 25, 0.98) 100%
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.webinar-banner__inner {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.webinar-banner__copy {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.webinar-banner__title {
  margin: 0;
  color: #f7f9fd;
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.webinar-banner__actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}

.webinar-banner__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.62rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #ffffff;
  color: #0d1320;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.webinar-banner__cta:hover {
  transform: translateY(-1px);
  background: #f5f7fb;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.24);
}

.webinar-banner__close {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.02);
  color: #f2f4f8;
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.webinar-banner__close:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

.webinar-banner.is-hidden {
  display: none;
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
}

.brand-mark {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.7rem;
  display: inline-grid;
  place-items: center;
  font-size: 0.8rem;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), #ffffff);
}

.nav-links {
  display: flex;
  order: 2;
  gap: 0.6rem;
  color: var(--muted);
  margin-left: 1.1rem;
  margin-right: auto;
  flex: 0 1 auto;
  min-width: 0;
  justify-content: flex-start;
}

.nav-links a {
  position: relative;
  padding: 0.2rem 0;
  font-size: 0.88rem;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.1rem;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), #ffffff);
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-button {
  display: none;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 0.7rem;
  padding: 0.5rem 0.8rem;
}

.nav-cta-group {
  order: 3;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-left: 0.35rem;
  flex-shrink: 0;
}

.nav-cta {
  font-size: 0.8rem;
  padding: 0.48rem 0.72rem;
  white-space: nowrap;
  box-shadow: none;
  border-radius: 0.7rem;
}

.nav-link-featured {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.28rem 0.68rem;
  border: 1px solid rgba(255, 62, 62, 0.26);
  border-radius: 999px;
  background: rgba(255, 42, 42, 0.08);
  color: #fff0f0;
}

.nav-link-featured:hover {
  border-color: rgba(255, 62, 62, 0.52);
  background: rgba(255, 42, 42, 0.14);
}

.nav-link-featured::after {
  display: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid rgba(255, 42, 42, 0.65);
  outline-offset: 2px;
}

.hero {
  padding: 5.5rem 0 3.2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.1rem;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  font-size: 0.77rem;
  letter-spacing: 0.11em;
  color: #ff9e9e;
}

.hero-title {
  margin: 0.7rem 0 1rem;
  font-size: clamp(2.1rem, 4vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.35);
  text-shadow: 0 0 14px rgba(255, 42, 42, 0.12);
}

.hero-title::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: transparent;
  pointer-events: none;
  background: linear-gradient(110deg, #ffffff 0%, #ff2a2a 45%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-mask-image: radial-gradient(
    circle 125px at var(--spot-x, 50%) var(--spot-y, 50%),
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.96) 35%,
    rgba(0, 0, 0, 0) 75%
  );
  mask-image: radial-gradient(
    circle 125px at var(--spot-x, 50%) var(--spot-y, 50%),
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.96) 35%,
    rgba(0, 0, 0, 0) 75%
  );
  filter: drop-shadow(0 0 12px rgba(255, 42, 42, 0.28));
}

.hero-copy {
  color: var(--muted);
  max-width: 66ch;
}

.hero-cta {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  border-radius: 0.8rem;
  border: 1px solid transparent;
  padding: 0.72rem 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #fff;
  box-shadow: 0 12px 26px rgba(179, 0, 0, 0.45);
}

.btn-secondary {
  border-color: var(--border);
  background: #111111;
  color: var(--text);
}

.btn-governance {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.btn-governance:hover {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.1);
}

.hero-cta .btn {
  min-height: 44px;
}

.pulse {
  animation: pulseGlow 2.4s infinite;
}

.hero-trust {
  margin-top: 1.35rem;
}

.hero-trust > span {
  color: #ffd5d5;
  font-size: 0.9rem;
}

.chip-row {
  margin-top: 0.55rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip {
  font-size: 0.8rem;
  color: #f3f3f3;
  padding: 0.3rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(31, 10, 10, 0.72);
}

.animated-badge {
  animation: badgeFloat 4.2s ease-in-out infinite;
}

.animated-badge:nth-child(2) {
  animation-delay: 0.3s;
}

.animated-badge:nth-child(3) {
  animation-delay: 0.6s;
}

.animated-badge:nth-child(4) {
  animation-delay: 0.9s;
}

.animated-badge:nth-child(5) {
  animation-delay: 1.2s;
}

.data-stream {
  margin: 0.7rem 0 0.15rem;
  height: 34px;
  display: flex;
  align-items: flex-end;
  gap: 0.22rem;
  opacity: 0.75;
}

.data-stream span {
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 42, 42, 0.2), rgba(255, 255, 255, 0.85));
  height: 6px;
  animation: streamPulse 2s ease-in-out infinite;
}

.data-stream span:nth-child(2) { animation-delay: 0.2s; height: 12px; }
.data-stream span:nth-child(3) { animation-delay: 0.4s; height: 18px; }
.data-stream span:nth-child(4) { animation-delay: 0.6s; height: 10px; }
.data-stream span:nth-child(5) { animation-delay: 0.8s; height: 22px; }
.data-stream span:nth-child(6) { animation-delay: 1s; height: 14px; }

.hero-card {
  border-radius: 1rem;
  padding: 1.2rem;
}

.hero-card h2 {
  margin: 0.1rem 0 0.55rem;
}

.hero-card ul {
  margin: 0;
  color: var(--muted);
  padding-left: 1.15rem;
}

.flow-list {
  list-style: none;
  padding: 0;
  margin: 0.3rem 0 0;
  counter-reset: flow-step;
  position: relative;
}

.flow-list::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(255, 78, 96, 0.65),
    rgba(255, 78, 96, 0.25) 55%,
    rgba(255, 255, 255, 0.22)
  );
}

.flow-list li {
  counter-increment: flow-step;
  position: relative;
  margin: 0 0 0.6rem;
  padding: 0.62rem 0.65rem 0.62rem 2.55rem;
  border-radius: 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(16, 16, 16, 0.58);
  color: #e4e4e4;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.flow-list li::before {
  content: counter(flow-step);
  position: absolute;
  left: 0.35rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.18rem;
  height: 1.18rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #ff2a2a, #b30000);
  box-shadow: 0 0 0 2px rgba(255, 42, 42, 0.25);
}

.flow-list li:last-child {
  margin-bottom: 0;
}

.flow-list li:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 78, 96, 0.5);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.timeline-preview {
  margin-top: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(12, 12, 12, 0.72);
  border-radius: 0.8rem;
  padding: 0.7rem;
}

.timeline-kicker {
  margin: 0;
  color: #ffb6b6;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.timeline-preview h3 {
  margin: 0.26rem 0 0.25rem;
  font-size: 1rem;
}

.timeline-preview p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-card-note {
  margin: 0.75rem 0 0;
  color: #d8b7b7;
  font-size: 0.8rem;
}

.metric-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.metric {
  border-radius: 0.8rem;
  border: 1px solid var(--border);
  padding: 0.7rem;
  background: rgba(25, 8, 8, 0.72);
}

.metric-value {
  display: block;
  font-weight: 900;
  font-size: 1.5rem;
  line-height: 1;
}

.metric-label {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  margin-top: 0.25rem;
}

.section {
  padding: 3.2rem 0;
}

.section h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
}

.section-lead {
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
}

.cards {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  border-radius: 1rem;
  padding: 1rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 42, 42, 0.5);
}

.card::after,
.regulatory-card::after,
.sector-card::after,
.use-case::after,
.impact-card::after,
.phase-card::after,
.advantage-card::after,
.testimonial-card::after {
  content: "";
  position: absolute;
  left: -120%;
  top: 0;
  width: 120%;
  height: 100%;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transition: left 0.55s ease;
}

.card:hover::after,
.regulatory-card:hover::after,
.sector-card:hover::after,
.use-case:hover::after,
.impact-card:hover::after,
.phase-card:hover::after,
.advantage-card:hover::after,
.testimonial-card:hover::after {
  left: 120%;
}

.card h3 {
  margin: 0 0 0.4rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.alt {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(11, 11, 11, 0.75);
}

.steps {
  margin-top: 1rem;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.steps article {
  border-radius: 1rem;
  padding: 0.95rem;
}

.steps span {
  width: 1.85rem;
  height: 1.85rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 42, 42, 0.24);
  color: #ffe3e3;
  font-weight: 800;
}

.steps h3 {
  margin: 0.6rem 0 0.35rem;
}

.steps p {
  margin: 0;
  color: var(--muted);
}

.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.impact-grid p {
  margin: 0;
  color: var(--muted);
}

.impact-cards {
  display: grid;
  gap: 0.75rem;
}

.impact-card {
  border-radius: 1rem;
  padding: 0.9rem;
  position: relative;
  overflow: hidden;
}

.impact-card h3 {
  margin: 0 0 0.3rem;
}

.impact-card p {
  margin: 0;
}

.sector-grid {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.sector-card {
  border-radius: 1rem;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

.sector-card h3 {
  margin: 0 0 0.35rem;
}

.sector-card p {
  margin: 0;
  color: var(--muted);
}

.use-cases {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.use-case {
  border-radius: 1rem;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

.use-case-tag {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  border: 1px solid rgba(255, 42, 42, 0.55);
  color: #ffd8d8;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  margin-bottom: 0.55rem;
  background: rgba(60, 8, 8, 0.55);
}

.use-case h3 {
  margin: 0 0 0.35rem;
}

.use-case p {
  margin: 0;
  color: var(--muted);
}

.faq-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.7rem;
}

.faq-item {
  border-radius: 0.95rem;
  overflow: clip;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 0.9rem 1rem;
  color: var(--text);
  background: rgba(14, 14, 14, 0.92);
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  float: right;
  color: #ffb7b7;
  transition: transform 0.22s ease;
}

.faq-question[aria-expanded="true"]::after {
  content: "-";
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  color: var(--muted);
  padding: 0 1rem;
  overflow: hidden;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-answer p {
  padding: 0.85rem 1rem 1rem;
}

.final-cta {
  padding-top: 2.4rem;
}

.cta-block {
  border-radius: 1rem;
  padding: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cta-block h2 {
  margin: 0 0 0.35rem;
}

.cta-block p {
  margin: 0;
  color: var(--muted);
  max-width: 65ch;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.nav-link-active {
  color: #ffffff;
}

.regulatory-grid {
  margin-top: 1.15rem;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.regulatory-card {
  border-radius: 0.95rem;
  padding: 0.95rem;
  position: relative;
  overflow: hidden;
}

/* Reusable card block for regulatory readiness content. */
.regulatory-readiness-card {
  border-left: 2px solid rgba(255, 42, 42, 0.42);
}

.regulatory-card h3 {
  margin: 0 0 0.35rem;
}

.regulatory-card p {
  margin: 0;
  color: var(--muted);
}

.risk-note {
  margin-top: 0.95rem;
  color: #ffd0d0;
}

.sanctions-hero {
  padding: 1.1rem 1.15rem;
  border-radius: 1rem;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.9fr);
  gap: 1rem;
  align-items: end;
  border: 1px solid rgba(255, 58, 58, 0.24);
  background:
    radial-gradient(circle at top left, rgba(255, 48, 48, 0.14), transparent 36%),
    linear-gradient(180deg, rgba(24, 13, 15, 0.94), rgba(10, 10, 14, 0.98));
}

.sanctions-hero .section-lead {
  margin-top: 0.4rem;
}

.sanctions-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
}

.sanctions-badge {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 96, 96, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #fff0f0;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
}

.sanctions-grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sanction-card {
  border-radius: 1rem;
  padding: 1rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 86, 86, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, rgba(29, 12, 15, 0.92), rgba(10, 10, 14, 0.98));
}

.sanction-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
}

.sanction-card-low::before {
  background: linear-gradient(90deg, #ffb347, #ff7a18);
}

.sanction-card-medium::before {
  background: linear-gradient(90deg, #ff7b7b, #ff4343);
}

.sanction-card-high::before {
  background: linear-gradient(90deg, #ff4d4d, #ff1f1f);
}

.sanction-card-high {
  box-shadow: 0 0 0 1px rgba(255, 42, 42, 0.14), 0 16px 32px rgba(120, 0, 0, 0.2);
}

.sanction-label {
  display: inline-flex;
  margin-bottom: 0.7rem;
  padding: 0.28rem 0.58rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffd8d8;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sanction-range {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.2rem, 2.3vw, 1.6rem);
  font-weight: 800;
  line-height: 1.05;
}

.sanction-approx {
  margin: 0.45rem 0 0;
  color: #ffcece;
  font-size: 0.95rem;
  font-weight: 600;
}

.sanction-summary {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.exposure-layout {
  margin-top: 1rem;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: minmax(0, 1.2fr) minmax(290px, 0.85fr);
}

.exposure-panel,
.trigger-panel {
  border-radius: 1rem;
  padding: 1.05rem;
  border: 1px solid rgba(255, 66, 66, 0.2);
}

.exposure-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, rgba(14, 14, 18, 0.96), rgba(10, 10, 14, 0.98));
}

.trigger-panel {
  background:
    radial-gradient(circle at top left, rgba(255, 46, 46, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(35, 10, 14, 0.96), rgba(12, 9, 12, 0.98));
  box-shadow: 0 0 0 1px rgba(255, 42, 42, 0.12), 0 18px 34px rgba(70, 0, 0, 0.18);
}

.exposure-panel-head {
  margin-bottom: 0.9rem;
}

.exposure-kicker {
  display: inline-block;
  margin-bottom: 0.28rem;
  color: #ff9b9b;
  font-size: 0.79rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.exposure-panel h3,
.trigger-panel h3 {
  margin: 0;
}

.exposure-list {
  display: grid;
  gap: 0.75rem;
}

.exposure-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  border-radius: 0.95rem;
  padding: 0.85rem 0.9rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 88, 88, 0.14);
}

.exposure-index {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(255, 52, 52, 0.14);
  border: 1px solid rgba(255, 92, 92, 0.32);
  color: #ffe8e8;
  font-size: 0.78rem;
  font-weight: 800;
}

.exposure-row h4 {
  margin: 0 0 0.3rem;
  color: #fff4f4;
}

.exposure-row p {
  margin: 0;
  color: var(--muted);
}

.trigger-panel ul {
  margin: 0.9rem 0 0;
  padding-left: 1.1rem;
  color: #ffe1e1;
}

.trigger-panel li + li {
  margin-top: 0.55rem;
}

.trigger-footnote {
  margin: 0.9rem 0 0;
  color: #ffbaba;
  font-size: 0.9rem;
}

.smart-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.metric-card {
  border-radius: 0.9rem;
  padding: 0.85rem;
}

.heatmap {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem 0.9rem;
  align-items: center;
}

.heatmap-axis {
  color: #f3cccc;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.heatmap-axis.y {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.heatmap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

.heat-cell {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.7rem;
  background: rgba(16, 16, 16, 0.76);
  color: #e7e7e7;
  padding: 0.55rem;
  font-size: 0.78rem;
  text-align: left;
  animation: heatPulse 3.8s ease-in-out infinite;
}

.heat-active { border-color: rgba(255, 120, 120, 0.56); }
.heat-alert { border-color: rgba(255, 80, 80, 0.62); box-shadow: 0 0 0 1px rgba(255, 80, 80, 0.22); }
.heat-critical { border-color: rgba(255, 42, 42, 0.8); box-shadow: 0 0 0 1px rgba(255, 42, 42, 0.3), 0 0 18px rgba(255, 42, 42, 0.22); }

.before-after-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.compare-card {
  border-radius: 0.95rem;
  padding: 0.95rem;
}

.compare-card.before { border-left: 2px solid rgba(255, 160, 160, 0.38); }
.compare-card.after { border-left: 2px solid rgba(255, 42, 42, 0.7); }

.compare-card h3 {
  margin: 0 0 0.5rem;
}

.compare-card ul {
  margin: 0;
  color: var(--muted);
  padding-left: 1.05rem;
}

.sector-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.9rem;
}

.sector-tab {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(20, 20, 20, 0.72);
  color: #f6f6f6;
  border-radius: 999px;
  padding: 0.38rem 0.74rem;
}

.sector-tab.active {
  border-color: rgba(255, 42, 42, 0.66);
  background: rgba(85, 16, 16, 0.62);
}

.sector-tab-panels {
  margin-top: 0.75rem;
}

.sector-tab-panel {
  border-radius: 0.95rem;
  padding: 0.95rem;
  display: none;
}

.sector-tab-panel.active {
  display: block;
}

.sector-tab-panel h3 {
  margin: 0 0 0.35rem;
}

.sector-tab-panel p,
.sector-tab-panel li {
  color: var(--muted);
}

.playbook-terminal {
  margin-top: 1rem;
  border-radius: 1rem;
  overflow: hidden;
}

.terminal-head {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.7rem;
  background: rgba(7, 7, 7, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.terminal-head span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: #ff5959;
}

.terminal-head span:nth-child(2) { background: #ffbb55; }
.terminal-head span:nth-child(3) { background: #7de37d; }

.terminal-head p {
  margin: 0 0 0 0.4rem;
  color: #dbdbdb;
  font-size: 0.8rem;
}

.terminal-accordion {
  padding: 0.7rem;
}

.testimonial-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.testimonial-card {
  border-radius: 0.95rem;
  padding: 0.95rem;
  position: relative;
  overflow: hidden;
}

.testimonial-card p {
  margin: 0 0 0.45rem;
  color: #ececec;
}

.testimonial-card span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
}

.testimonial-card small {
  display: inline-block;
  margin-top: 0.45rem;
  color: #9f9f9f;
  letter-spacing: 0.08em;
}

.cursor-glow-block {
  position: relative;
  overflow: hidden;
}

.cursor-glow-block::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at var(--gx, 50%) var(--gy, 50%), rgba(255, 42, 42, 0.12), transparent 35%);
  pointer-events: none;
}

.sticky-context-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 38;
  background: linear-gradient(135deg, #ff2a2a, #b30000);
  color: #fff;
  border-radius: 999px;
  padding: 0.55rem 0.82rem;
  font-size: 0.84rem;
  box-shadow: 0 10px 22px rgba(179, 0, 0, 0.36);
}

.faq-item.open {
  border-color: rgba(255, 42, 42, 0.45);
  box-shadow: 0 0 0 1px rgba(255, 42, 42, 0.22);
}

.checklist-grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.check-item {
  border-radius: 0.9rem;
  padding: 0.8rem 0.9rem;
  display: flex;
  gap: 0.65rem;
  align-items: center;
  color: #eaeaea;
}

.check-item input {
  accent-color: #ff2a2a;
}

.readiness-panel {
  margin-top: 0.95rem;
  border-radius: 0.95rem;
  padding: 0.95rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.readiness-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
  flex-wrap: wrap;
}

.readiness-count {
  margin: 0;
  color: #f3f3f3;
  font-size: 0.94rem;
}

.readiness-level {
  font-size: 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 0.25rem 0.55rem;
  color: #ffd9d9;
  background: rgba(38, 10, 10, 0.45);
}

.readiness-meter {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  margin-top: 0.65rem;
  overflow: hidden;
}

.readiness-meter > span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #ff2a2a, #ffffff);
  transition: width 0.28s ease;
}

.readiness-note {
  margin: 0.72rem 0 0;
  color: #ffdede;
}

.readiness-summary {
  margin-top: 0.65rem;
}

.readiness-summary-title {
  margin: 0 0 0.4rem;
  font-size: 0.82rem;
  color: #ffc8c8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.readiness-summary-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.readiness-summary-list li {
  border: 1px solid rgba(255, 42, 42, 0.45);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  font-size: 0.77rem;
  color: #ffeaea;
  background: rgba(65, 12, 12, 0.52);
}

.readiness-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.72rem;
}

.readiness-cta {
  opacity: 0.5;
  pointer-events: none;
}

.readiness-cta.is-active {
  opacity: 1;
  pointer-events: auto;
}

.readiness-cta-secondary {
  opacity: 0.9;
}

.readiness-panel.level-low {
  border-color: rgba(255, 255, 255, 0.2);
}

.readiness-panel.level-medium {
  border-color: rgba(255, 42, 42, 0.45);
}

.readiness-panel.level-high {
  border-color: rgba(255, 42, 42, 0.68);
  box-shadow: 0 0 0 1px rgba(255, 42, 42, 0.24), 0 10px 28px rgba(179, 0, 0, 0.24);
}

.program-phases {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.phase-card {
  border-radius: 0.95rem;
  padding: 0.95rem;
  position: relative;
  overflow: hidden;
}

.phase-card span {
  display: inline-block;
  font-size: 0.78rem;
  color: #ffb0b0;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.4rem;
}

.phase-card h3 {
  margin: 0 0 0.45rem;
}

.phase-card ul {
  margin: 0;
  color: var(--muted);
  padding-left: 1.1rem;
}

.advantage-grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.advantage-card {
  border-radius: 0.95rem;
  padding: 0.95rem;
  position: relative;
  overflow: hidden;
}

.advantage-card h3 {
  margin: 0 0 0.3rem;
}

.advantage-card p {
  margin: 0;
  color: var(--muted);
}

.standards-track {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.standard-pill {
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  font-weight: 600;
}

.standard-link {
  color: #ff9f9f;
  font-weight: 700;
}

.standard-highlight {
  border-color: rgba(255, 42, 42, 0.7);
}

.source-note {
  margin-top: 0.8rem;
  color: var(--muted);
}

.source-note a {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 42, 42, 0.8);
}

.law-form {
  max-width: 760px;
}

.law-form select {
  border: 1px solid var(--border);
  background: rgba(15, 15, 15, 0.92);
  color: var(--text);
  border-radius: 0.65rem;
  padding: 0.67rem 0.8rem;
}

.disclaimer {
  margin: 0;
  color: #d9b4b4;
  font-size: 0.86rem;
}

.contact-form {
  margin-top: 1rem;
  max-width: 600px;
  border-radius: 1rem;
  padding: 1rem;
  display: grid;
  gap: 0.55rem;
}

.contact-form label {
  color: #f4d6d6;
  font-size: 0.92rem;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid var(--border);
  background: rgba(15, 15, 15, 0.92);
  color: var(--text);
  border-radius: 0.65rem;
  padding: 0.67rem 0.8rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(255, 42, 42, 0.45);
  outline-offset: 1px;
}

.form-feedback {
  margin: 0.35rem 0 0;
  min-height: 1.2rem;
  color: var(--ok);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.4rem 0 2rem;
}

.footer-content {
  color: #d9d9d9;
  font-size: 0.94rem;
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 10px 22px rgba(179, 0, 0, 0.38);
  }
  50% {
    box-shadow: 0 15px 28px rgba(255, 42, 42, 0.6);
  }
}

@keyframes streamPulse {
  0%, 100% { transform: scaleY(0.65); opacity: 0.55; }
  50% { transform: scaleY(1.15); opacity: 0.95; }
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

@keyframes grainShift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-1%, 0.5%); }
  50% { transform: translate(0.5%, -0.8%); }
  75% { transform: translate(-0.7%, 0.3%); }
  100% { transform: translate(0, 0); }
}

@keyframes loaderSweep {
  from { background-position: 200% 0; opacity: 0.6; }
  to { background-position: 0 0; opacity: 1; }
}

@keyframes heatPulse {
  0%, 100% { box-shadow: inset 0 0 0 0 rgba(255, 42, 42, 0); }
  50% { box-shadow: inset 0 0 0 1px rgba(255, 42, 42, 0.22); }
}

@media (max-width: 950px) {
  .hero-grid,
  .impact-grid {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps,
  .use-cases,
  .regulatory-grid,
  .sanctions-grid,
  .advantage-grid,
  .smart-metrics,
  .before-after-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .program-phases {
    grid-template-columns: 1fr;
  }

  .sanctions-hero,
  .exposure-layout {
    grid-template-columns: 1fr;
  }

  .cta-block {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 1180px) {
  .webinar-banner__inner {
    flex-wrap: wrap;
    padding: 0.75rem 0;
  }

  .menu-button {
    display: inline-flex;
    margin-left: auto;
    order: 2;
  }

  .nav {
    flex-wrap: wrap;
    padding: 0.6rem 0;
  }

  .nav-cta-group {
    order: 3;
    width: 100%;
    margin-left: 0;
  }

  .nav-links {
    display: none;
    width: 100%;
    order: 4;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.55rem;
    background: #121212;
    border: 1px solid var(--border);
    border-radius: 0.7rem;
    padding: 0.65rem;
    margin-left: 0;
  }

  .nav-links.open {
    display: flex;
  }
}

@media (max-width: 700px) {
  .webinar-banner__copy {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }

  .webinar-banner__title {
    white-space: normal;
  }

  .webinar-banner__actions {
    width: 100%;
    justify-content: space-between;
  }

  .webinar-banner__cta {
    flex: 1 1 auto;
  }

  .menu-button {
    display: inline-flex;
  }

  .nav-cta-group {
    display: none;
  }

  .nav {
    flex-wrap: wrap;
    padding: 0.6rem 0;
  }

  .nav-links {
    padding: 0.6rem;
    margin-left: 0;
    order: initial;
  }

  .nav-links.open {
    display: flex;
  }

  .cards,
  .steps,
  .sector-grid,
  .use-cases,
  .regulatory-grid,
  .sanctions-grid,
  .checklist-grid,
  .advantage-grid,
  .smart-metrics,
  .before-after-grid,
  .testimonial-grid,
  .heatmap-grid {
    grid-template-columns: 1fr;
  }

  .readiness-actions .btn {
    width: 100%;
  }

  .sanctions-badges {
    justify-content: flex-start;
  }

  .ley-scroll-progress {
    display: none;
  }

  .sticky-context-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }

  .heatmap {
    grid-template-columns: 1fr;
  }

  .heatmap-axis.y {
    writing-mode: horizontal-tb;
    transform: none;
  }
}
