/* ══════════════════════════════════════════
   VARIABLES
══════════════════════════════════════════ */
:root {
  --bg: #04060f;
  --bg2: #080d1c;
  --bg3: #0c1225;
  --card: #0e1530;
  --border: #1a2545;
  --cyan: #00e5ff;
  --cyan2: #00b8d9;
  --lime: #a8ff3e;
  --text: #e8edf8;
  --muted: #7a8aaa;
  --accent: #ff4d6d;
  --gold: #ffc947;
  --radius: 12px;
  --radius-lg: 20px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ══════════════════════════════════════════
   BACKGROUND
══════════════════════════════════════════ */
.bg-wrapper {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.bg-glow-1 {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 229, 255, 0.17) 0%,
    transparent 70%
  );
  top: -200px;
  left: -200px;
}
.bg-glow-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 229, 255, 0.08) 0%,
    transparent 70%
  );
  bottom: 100px;
  right: -100px;
}

main {
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════════
/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  padding: 120px 24px 60px;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 22px;
}
.hero-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.hero-breadcrumb a:hover {
  color: var(--cyan);
}
.hero-breadcrumb span {
  color: rgba(255, 255, 255, 0.3);
}
.hero-breadcrumb .current {
  color: rgba(255, 255, 255, 0.6);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 100px;
  padding: 7px 20px;
  font-size: 0.75rem;
  font-family: "Poiret One", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan2);
  margin-bottom: 24px;
  animation: fadeDown 0.6s ease both;
}
.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse 1.6s ease infinite;
}

.hero h1 {
  font-family: "Poiret One", sans-serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  animation: fadeDown 0.6s 0.1s ease both;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--cyan), var(--cyan2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 18px;
  animation: fadeDown 0.6s 0.2s ease both;
}
.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--muted);
  animation: fadeDown 0.6s 0.3s ease both;
}
.hero-meta .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0.7;
}

/* ══════════════════════════════════════════
   TABLE OF CONTENTS
══════════════════════════════════════════ */
.toc-wrapper {
  padding: 0 24px 50px;
}
.toc-box {
  max-width: 860px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px 32px;
}
.toc-title {
  font-family: "Poiret One", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 8px;
}
.toc-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.84rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition:
    background 0.18s,
    color 0.18s,
    border-color 0.18s;
}
.toc-link:hover {
  background: rgba(0, 229, 255, 0.08);
  color: var(--text);
  border-color: rgba(0, 229, 255, 0.2);
}
.toc-num {
  font-family: "Poiret One", sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--cyan);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   LEGAL CONTENT
══════════════════════════════════════════ */
.legal-wrapper {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px 60px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.legal-section {
  padding: 44px 0;
  border-bottom: 1px solid rgba(0, 229, 255, 0.05);
}
.legal-section:last-child {
  border-bottom: none;
}

.section-num {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Poiret One", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 10px;
}
.section-num .n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(0, 229, 255, 0.12);
  border: 1px solid rgba(0, 229, 255, 0.25);
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--cyan);
  flex-shrink: 0;
}

.legal-section h2 {
  font-family: "Poiret One", sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text);
}

.legal-text {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  margin-bottom: 16px;
}
.legal-text:last-child {
  margin-bottom: 0;
}
.legal-text strong {
  color: var(--text);
  font-weight: 600;
}
.legal-text a {
  color: var(--cyan2);
  text-decoration: none;
}
.legal-text a:hover {
  text-decoration: underline;
}

/* Lists */
.legal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.legal-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
}
.li-check {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 7px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--cyan);
  margin-top: 1px;
}

/* Info card */
.info-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 6px;
  margin-top: 4px;
}
.info-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 12px;
  transition: background 0.18s;
}
.info-row:hover {
  background: rgba(255, 255, 255, 0.03);
}
.info-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}
.info-label {
  font-size: 0.72rem;
  font-family: "Poiret One", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.info-value {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}
.info-value a {
  color: var(--cyan2);
  text-decoration: none;
}
.info-value a:hover {
  text-decoration: underline;
}

/* Prohibited grid */
.prohib-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 12px;
  margin-top: 8px;
}
.prohib-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 87, 87, 0.04);
  border: 1px solid rgba(255, 87, 87, 0.14);
  transition:
    border-color 0.2s,
    background 0.2s;
}
.prohib-card:hover {
  border-color: rgba(255, 87, 87, 0.25);
  background: rgba(255, 87, 87, 0.07);
}
.prohib-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}
.prohib-text {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.45;
}

/* Note box */
.legal-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(0, 229, 255, 0.06);
  border: 1px solid rgba(0, 229, 255, 0.18);
  border-radius: 14px;
  padding: 16px 20px;
  margin-top: 8px;
}
.note-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.note-text {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
}
.note-text strong {
  color: var(--text);
}
.note-text a {
  color: var(--cyan2);
}

/* Warning box */
.warn-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 87, 87, 0.06);
  border: 1px solid rgba(255, 87, 87, 0.2);
  border-radius: 14px;
  padding: 16px 20px;
  margin-top: 16px;
}
.warn-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}
.warn-text {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
}
.warn-text strong {
  color: #ff8a8a;
}

/* Highlight stat */
.legal-highlight {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.25);
  border-radius: 16px;
  padding: 16px 22px;
  margin-top: 8px;
}
.hl-num {
  font-family: "Poiret One", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--cyan);
}
.hl-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
  max-width: 220px;
}

/* Acceptance box */
.acceptance-box {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  padding: 28px 32px;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}
.acceptance-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan2), var(--cyan), var(--cyan2));
}
.acceptance-box p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  margin-bottom: 22px;
}
.acceptance-box p strong {
  color: var(--text);
}
.acc-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-acc-primary {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 12px;
  font-family: "Poiret One", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0, 229, 255, 0.35);
}
.btn-acc-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 229, 255, 0.5);
}
.btn-acc-outline {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 12px;
  font-family: "Poiret One", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-decoration: none;
  transition: all 0.2s;
}
.btn-acc-outline:hover {
  background: rgba(0, 229, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--text);
}

/* ══════════════════════════════════════════
   FOOTER LEGAL
══════════════════════════════════════════ */
.legal-footer {
  max-width: 860px;
  margin: 0 auto;
  padding: 32px 24px 60px;
  border-top: 1px solid rgba(0, 229, 255, 0.05);
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
}
.legal-footer a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.legal-footer a:hover {
  color: var(--cyan2);
}

/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.75);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 680px) {
  .toc-grid {
    grid-template-columns: 1fr;
  }
  .prohib-grid {
    grid-template-columns: 1fr;
  }
  .acc-ctas {
    flex-direction: column;
  }
  .toc-box {
    padding: 22px 20px;
  }
  .acceptance-box {
    padding: 22px 20px;
  }
}
