:root {
  --cyan: #00add3;
  --cyan-dark: #0090b0;
  --black: #080808;
  --dark: #0f0f0f;
  --card: #111;
  --border: #1c1c1c;
  --white: #f4f4f1;
  --muted: #666;
  --muted-light: #888;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 3rem;
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 173, 211, 0.1);
}
.nav-logo {
  height: 34px;
  display: block;
}
.nav-back {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-back:hover {
  color: var(--cyan);
}
.nav-back svg {
  width: 14px;
  height: 14px;
}

/* ── HERO HEADER ── */
.page-header {
  padding: 9rem 3rem 5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-header-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at 20% 50%,
    rgba(0, 173, 211, 0.08) 0%,
    transparent 60%
  );
  z-index: 0;
}
/* Animated horizontal line */
.page-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}
.page-header-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.page-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid rgba(0, 173, 211, 0.3);
  padding: 0.25rem 0.8rem;
  border-radius: 2px;
  margin-bottom: 1.2rem;
}
.page-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  letter-spacing: 0.04em;
  line-height: 0.95;
  margin-bottom: 1.2rem;
}
.page-title span {
  color: var(--cyan);
}
.page-meta {
  color: var(--muted);
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.page-meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border);
}

/* ── LAYOUT ── */
.content-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 4rem 3rem 6rem;
}

/* ── INTRO BOX ── */
.intro-box {
  background: var(--dark);
  border: 1px solid var(--border);
  border-left: 3px solid var(--cyan);
  border-radius: 4px;
  padding: 1.5rem 1.8rem;
  margin-bottom: 3.5rem;
  color: var(--muted-light);
  font-size: 0.95rem;
  line-height: 1.75;
}
.intro-box b {
  color: var(--white);
  font-weight: 500;
}

/* ── SECTIONS ── */
.policy-section {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.policy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.section-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--cyan);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.section-num::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.section-heading {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 1.2rem;
  line-height: 1.1;
}

.section-body {
  color: var(--muted-light);
  font-size: 0.93rem;
  line-height: 1.8;
}
.section-body p {
  margin-bottom: 1rem;
}
.section-body p:last-child {
  margin-bottom: 0;
}
.section-body b {
  color: var(--white);
  font-weight: 500;
}

/* ── LIST ── */
.policy-list {
  list-style: none;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.policy-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: var(--muted-light);
  font-size: 0.93rem;
  line-height: 1.7;
}
.policy-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
  margin-top: 0.55em;
}

/* ── HIGHLIGHT CARD ── */
.highlight-card {
  background: rgba(0, 173, 211, 0.05);
  border: 1px solid rgba(0, 173, 211, 0.2);
  border-radius: 6px;
  padding: 1.5rem 1.8rem;
  margin-top: 1.2rem;
  font-size: 0.9rem;
  color: var(--muted-light);
  line-height: 1.75;
}
.highlight-card b {
  color: var(--white);
  font-weight: 500;
}

/* ── WARNING BOX ── */
.warning-box {
  background: rgba(255, 180, 0, 0.04);
  border: 1px solid rgba(255, 180, 0, 0.2);
  border-left: 3px solid #d4a847;
  border-radius: 4px;
  padding: 1.2rem 1.5rem;
  margin-top: 1.2rem;
  font-size: 0.88rem;
  color: #a88c40;
  line-height: 1.75;
}
.warning-box b {
  color: #c9aa52;
  font-weight: 600;
}

/* ── CONTACT ── */
.contact-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 173, 211, 0.1);
  border: 1px solid rgba(0, 173, 211, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-label {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.contact-link {
  color: var(--cyan);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s;
}
.contact-link:hover {
  color: var(--cyan-dark);
  text-decoration: underline;
}

/* ── FOOTER ── */
.page-footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.page-footer img {
  height: 24px;
  opacity: 0.7;
}
.page-footer p {
  color: #333;
  font-size: 0.78rem;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  color: #444;
  font-size: 0.78rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--muted);
}

@media (max-width: 640px) {
  nav {
    padding: 1rem 1.5rem;
  }
  .page-header {
    padding: 8rem 1.5rem 4rem;
  }
  .content-wrap {
    padding: 3rem 1.5rem 5rem;
  }
  .page-footer {
    padding: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-card {
    flex-direction: column;
    align-items: flex-start;
  }
}
