/* ================================================================
   RISK DISCLOSURE PAGE -- risk.css
   ================================================================ */

/* -- NAV ACTIVE STATE ------------------------------------------- */
.active-page { color: var(--neon) !important; }

/* -- HERO ------------------------------------------------------- */
.rk-hero {
  position: relative;
  padding: 110px 0 72px;
  overflow: hidden;
  text-align: center;
}
.rk-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%,   rgba(255, 71, 87, .16) 0%, transparent 55%),
    radial-gradient(ellipse 45% 40% at 15% 80%,  rgba(255, 140, 66, .10) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 85% 75%,  rgba(255, 71, 87, .08) 0%, transparent 50%);
}
.rk-hero-inner {
  position: relative; z-index: 1;
  max-width: 720px; margin: 0 auto;
}
.rk-hero-badge {
  display: inline-flex; align-items: center; gap: .55rem;
  background: rgba(255, 71, 87, .10);
  border: 1px solid rgba(255, 71, 87, .35);
  border-radius: 30px; padding: .4rem 1.1rem;
  font-size: .73rem; font-weight: 700;
  color: #ff6b7a; letter-spacing: .8px;
  text-transform: uppercase; margin-bottom: 1.5rem;
  box-shadow: 0 0 20px rgba(255, 71, 87, .12);
}
.rk-warn-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #ff4757; box-shadow: 0 0 8px #ff4757;
  animation: rk-dot-pulse 2s ease-in-out infinite;
}
@keyframes rk-dot-pulse { 0%,100%{ opacity:1; box-shadow: 0 0 8px #ff4757; } 50%{ opacity:.4; box-shadow: 0 0 3px #ff4757; } }

.rk-hero-icon {
  font-size: 3.6rem;
  color: #ff4757;
  display: block;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 20px rgba(255,71,87,.45));
  animation: rk-icon-glow 3s ease-in-out infinite;
}
@keyframes rk-icon-glow {
  0%,100%{ filter: drop-shadow(0 0 20px rgba(255,71,87,.45)); }
  50%{ filter: drop-shadow(0 0 36px rgba(255,71,87,.8)); }
}

.rk-hero-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.4px;
  margin-bottom: .85rem;
  color: #fff;
}
.rk-hero-title span {
  background: linear-gradient(135deg, #ff4757, #ff8c42);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 18px rgba(255,71,87,.3));
}
.rk-hero-sub {
  font-size: .95rem;
  color: rgba(220, 200, 200, .75);
  max-width: 560px;
  margin: 0 auto 1.6rem;
  line-height: 1.8;
}
.rk-updated-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px; padding: .35rem .9rem;
  font-size: .73rem; color: rgba(200,200,220,.6);
  font-weight: 500;
}

/* -- CRITICAL WARNING BANNER ------------------------------------ */
.rk-crit-banner {
  background: linear-gradient(135deg, rgba(255,71,87,.14) 0%, rgba(255,140,66,.10) 100%);
  border: 1.5px solid rgba(255,71,87,.45);
  border-radius: 16px;
  padding: 1.8rem 2rem;
  margin: 2.5rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(255,71,87,.14), inset 0 0 40px rgba(255,71,87,.04);
}
.rk-crit-banner::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #ff4757, #ff8c42, #ff4757);
  box-shadow: 0 0 12px rgba(255,71,87,.6);
}
.rk-crit-inner {
  display: flex; align-items: flex-start; gap: 1.2rem;
}
.rk-crit-icon {
  font-size: 2.2rem;
  color: #ff4757;
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(255,71,87,.5));
  margin-top: .1rem;
}
.rk-crit-text h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ff6b7a;
  margin-bottom: .45rem;
  letter-spacing: .3px;
  text-transform: uppercase;
}
.rk-crit-text p {
  font-size: .92rem;
  color: rgba(255,220,210,.85);
  line-height: 1.75;
  margin: 0;
}
.rk-crit-text strong {
  color: #fff;
  font-weight: 700;
}

/* -- RISK SUMMARY CARDS ----------------------------------------- */
.rk-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (max-width: 991px) {
  .rk-summary-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .rk-summary-grid { grid-template-columns: 1fr; }
}
.rk-sum-card {
  background: rgba(22, 18, 18, .7);
  border-radius: 14px;
  padding: 1.4rem 1.2rem;
  text-align: center;
  transition: transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.rk-sum-card::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  border-radius: inherit;
  opacity: .12;
}
.rk-sum-card > * { position: relative; z-index: 1; }
.rk-sum-card:hover {
  transform: translateY(-4px);
}

/* Card variants */
.rk-sum-card.red {
  border: 1px solid rgba(255, 71, 87, .35);
  box-shadow: 0 4px 24px rgba(255, 71, 87, .10);
}
.rk-sum-card.red::before { background: radial-gradient(circle at 50% 0%, #ff4757, transparent); }
.rk-sum-card.red:hover { box-shadow: 0 12px 40px rgba(255,71,87,.2); }

.rk-sum-card.amber {
  border: 1px solid rgba(255, 189, 46, .30);
  box-shadow: 0 4px 24px rgba(255, 189, 46, .08);
}
.rk-sum-card.amber::before { background: radial-gradient(circle at 50% 0%, #ffbd2e, transparent); }
.rk-sum-card.amber:hover { box-shadow: 0 12px 40px rgba(255,189,46,.18); }

.rk-sum-card.orange {
  border: 1px solid rgba(255, 140, 66, .30);
  box-shadow: 0 4px 24px rgba(255, 140, 66, .08);
}
.rk-sum-card.orange::before { background: radial-gradient(circle at 50% 0%, #ff8c42, transparent); }
.rk-sum-card.orange:hover { box-shadow: 0 12px 40px rgba(255,140,66,.18); }

.rk-sum-card.crimson {
  border: 1px solid rgba(220, 50, 90, .30);
  box-shadow: 0 4px 24px rgba(220, 50, 90, .08);
}
.rk-sum-card.crimson::before { background: radial-gradient(circle at 50% 0%, #dc3258, transparent); }
.rk-sum-card.crimson:hover { box-shadow: 0 12px 40px rgba(220,50,90,.18); }

.rk-sum-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: .7rem;
}
.rk-sum-card.red    .rk-sum-icon { color: #ff4757; filter: drop-shadow(0 0 8px rgba(255,71,87,.5)); }
.rk-sum-card.amber  .rk-sum-icon { color: #ffbd2e; filter: drop-shadow(0 0 8px rgba(255,189,46,.5)); }
.rk-sum-card.orange .rk-sum-icon { color: #ff8c42; filter: drop-shadow(0 0 8px rgba(255,140,66,.5)); }
.rk-sum-card.crimson .rk-sum-icon { color: #ff6090; filter: drop-shadow(0 0 8px rgba(220,50,90,.5)); }

.rk-sum-title {
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: .4rem;
}
.rk-sum-card.red    .rk-sum-title { color: #ff6b7a; }
.rk-sum-card.amber  .rk-sum-title { color: #ffd166; }
.rk-sum-card.orange .rk-sum-title { color: #ffaa70; }
.rk-sum-card.crimson .rk-sum-title { color: #ff7ea0; }

.rk-sum-desc {
  font-size: .78rem;
  color: rgba(200,185,185,.65);
  line-height: 1.65;
  margin: 0;
}

/* -- TWO-COLUMN LAYOUT ------------------------------------------ */
.rk-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.5rem;
  align-items: start;
  padding-bottom: 5rem;
}
@media (max-width: 991px) {
  .rk-layout { grid-template-columns: 1fr; }
  .rk-toc { display: none; }
}

/* -- TABLE OF CONTENTS ------------------------------------------ */
.rk-toc {
  position: sticky;
  top: 90px;
}
.rk-toc-card {
  background: rgba(22, 18, 18, .8);
  border: 1px solid rgba(255, 71, 87, .18);
  border-radius: 14px;
  padding: 1.3rem 1.1rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.2);
}
.rk-toc-heading {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,100,100,.7);
  margin-bottom: 1rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid rgba(255,71,87,.15);
  display: flex; align-items: center; gap: .4rem;
}
.rk-toc-list {
  list-style: none;
  padding: 0; margin: 0;
}
.rk-toc-list li {
  margin-bottom: .2rem;
}
.rk-toc-list a {
  display: flex; align-items: flex-start; gap: .45rem;
  font-size: .78rem;
  color: rgba(200,185,185,.65);
  text-decoration: none;
  padding: .38rem .55rem;
  border-radius: 8px;
  transition: all .2s;
  line-height: 1.4;
}
.rk-toc-list a:hover,
.rk-toc-list a.active {
  color: #ffaa80;
  background: rgba(255,100,70,.07);
}
.rk-toc-num {
  font-size: .65rem;
  font-weight: 700;
  color: rgba(255,71,87,.5);
  min-width: 16px;
  padding-top: .05rem;
}

/* -- CONTENT SECTIONS ------------------------------------------- */
.rk-content-col {
  min-width: 0;
}
.rk-section {
  background: rgba(20, 16, 16, .75);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  padding: 2rem 2rem;
  margin-bottom: 1.4rem;
  scroll-margin-top: 100px;
  transition: border-color .3s;
}
.rk-section:hover {
  border-color: rgba(255, 100, 70, .18);
}
.rk-section-header {
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: 1.3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.rk-section-num {
  width: 30px; height: 30px;
  background: rgba(255,71,87,.12);
  border: 1px solid rgba(255,71,87,.25);
  border-radius: 8px;
  font-size: .72rem; font-weight: 800;
  color: #ff6b7a;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  letter-spacing: .3px;
}
.rk-section-icon {
  font-size: 1.3rem;
  color: rgba(255,140,70,.7);
}
.rk-section-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.1px;
  margin: 0;
  flex: 1;
}

.rk-section p {
  font-size: .885rem;
  color: rgba(210,195,195,.78);
  line-height: 1.82;
  margin-bottom: .85rem;
}
.rk-section p:last-child { margin-bottom: 0; }

.rk-section ul, .rk-section ol {
  padding-left: 0;
  margin: .6rem 0 1rem;
  list-style: none;
}
.rk-section ul li, .rk-section ol li {
  font-size: .875rem;
  color: rgba(210,195,195,.75);
  padding: .35rem 0 .35rem 1.4rem;
  position: relative;
  line-height: 1.7;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.rk-section ul li:last-child,
.rk-section ol li:last-child { border-bottom: none; }
.rk-section ul li::before {
  content: 'b8';
  position: absolute; left: 0;
  color: rgba(255,100,70,.6);
  font-size: .7rem;
  top: .48rem;
}
.rk-section ol {
  counter-reset: rk-ol;
}
.rk-section ol li {
  counter-increment: rk-ol;
}
.rk-section ol li::before {
  content: counter(rk-ol) ".";
  position: absolute; left: 0;
  color: rgba(255,140,70,.6);
  font-size: .72rem;
  font-weight: 700;
  top: .42rem;
}

/* Inline callout boxes */
.rk-callout {
  border-radius: 10px;
  padding: 1rem 1.1rem;
  margin: 1rem 0;
  display: flex; align-items: flex-start; gap: .7rem;
  font-size: .845rem;
  line-height: 1.7;
}
.rk-callout i { font-size: 1.1rem; flex-shrink: 0; margin-top: .1rem; }
.rk-callout p { margin: 0; color: inherit; font-size: inherit; }

.rk-callout.warn {
  background: rgba(255,189,46,.08);
  border: 1px solid rgba(255,189,46,.25);
  color: rgba(255,220,140,.85);
}
.rk-callout.warn i { color: #ffbd2e; }

.rk-callout.danger {
  background: rgba(255,71,87,.08);
  border: 1px solid rgba(255,71,87,.25);
  color: rgba(255,200,200,.85);
}
.rk-callout.danger i { color: #ff4757; }

.rk-callout.info {
  background: rgba(0,212,255,.06);
  border: 1px solid rgba(0,212,255,.18);
  color: rgba(180,230,255,.8);
}
.rk-callout.info i { color: #00d4ff; }

/* Acknowledgment section */
.rk-ack-section {
  background: linear-gradient(135deg, rgba(255,71,87,.10) 0%, rgba(255,140,66,.07) 100%);
  border: 1.5px solid rgba(255,71,87,.35);
  border-radius: 16px;
  padding: 2.2rem 2rem;
  margin-bottom: 1.4rem;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 100px;
}
.rk-ack-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #ff4757, #ff8c42, #ffd166, #ff8c42, #ff4757);
  box-shadow: 0 0 10px rgba(255,71,87,.5);
}
.rk-ack-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ff6b7a;
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: .6rem;
}
.rk-ack-body {
  font-size: .875rem;
  color: rgba(220,200,200,.82);
  line-height: 1.82;
  margin-bottom: 1.2rem;
}
.rk-ack-checklist {
  list-style: none;
  padding: 0; margin: 0 0 1.4rem;
}
.rk-ack-checklist li {
  display: flex; align-items: flex-start; gap: .65rem;
  font-size: .845rem;
  color: rgba(215,195,195,.78);
  padding: .45rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  line-height: 1.65;
}
.rk-ack-checklist li:last-child { border-bottom: none; }
.rk-ack-checklist i {
  color: #ff8c42;
  flex-shrink: 0;
  margin-top: .15rem;
}
.rk-ack-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: linear-gradient(135deg, #ff4757, #ff8c42);
  color: #fff !important;
  font-weight: 700; font-size: .88rem;
  padding: .75rem 1.8rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all .3s;
  box-shadow: 0 4px 20px rgba(255,71,87,.3);
}
.rk-ack-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255,71,87,.45);
  color: #fff !important;
}

/* -- FOOTER ----------------------------------------------------- */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
  background: var(--bg);
}
.f-trust-bar {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: .4rem;
  padding: 1rem 0 1.8rem;
  margin-bottom: 1.8rem;
  border-bottom: 1px solid var(--border);
}
.f-trust-item {
  display: flex; align-items: center; gap: .4rem;
  font-size: .76rem; color: rgba(200,205,240,.55);
  font-weight: 500; letter-spacing: .2px;
}
.f-trust-item i { color: var(--neon); font-size: .85rem; }
.f-trust-sep {
  width: 1px; height: 14px;
  background: var(--border);
  margin: 0 .4rem;
}
.f-logo {
  font-size: 1.1rem; font-weight: 900;
  margin-bottom: 1rem;
  display: flex; align-items: center;
}
.f-desc {
  font-size: .8rem; color: rgba(200,205,240,.45);
  line-height: 1.75; max-width: 300px;
  margin-bottom: 0;
}
.f-heading {
  font-size: .72rem; font-weight: 800;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: rgba(200,205,240,.5); margin-bottom: .9rem;
}
.f-links {
  list-style: none; padding: 0; margin: 0;
}
.f-links li { margin-bottom: .4rem; }
.f-links a {
  font-size: .82rem; color: rgba(200,205,240,.5);
  text-decoration: none; transition: color .2s;
}
.f-links a:hover { color: var(--neon); }
.f-bottom {
  margin-top: 2.2rem; padding-top: 1.4rem;
  border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: .6rem;
}
.f-copy {
  font-size: .74rem; color: rgba(200,205,240,.35);
}
.f-address-inline {
  font-size: .74rem; color: rgba(200,205,240,.35);
  font-style: normal;
}
.f-address-inline a {
  color: rgba(200,205,240,.45); text-decoration: none;
}
.f-address-inline a:hover { color: var(--neon); }
