
/* =========================
   ROOT VARIABLES
========================= */
:root {
  --bg: #03050f;
  --surface: #080d1e;
  --surface2: #0d1530;
  --grad1: #7b2ff7;
  --grad2: #2f7cf7;
  --grad3: #00d4c8;
  --text: #e8eaf6;
  --muted: #7a82a8;
  --border: rgba(120,140,255,0.12);
}

/* =========================
   RESET
========================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* =========================
   GLOBAL UTILITIES
========================= */
.grad-text {
  background: linear-gradient(135deg, var(--grad1) 0%, var(--grad2) 50%, var(--grad3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
}

section {
  padding: 100px 24px;
}

/* =========================
   NAVIGATION
========================= */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: rgba(3,5,15,0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

nav img {
  height: 38px;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.35)) drop-shadow(0 0 2px rgba(255,255,255,0.6));
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-family: 'Comfortaa', cursive;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--grad3);
}

.nav-cta {
  background: linear-gradient(135deg, var(--grad1), var(--grad3));
  color: #fff;
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 50px;
  font-family: 'Comfortaa', cursive;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: opacity 0.2s, transform 0.2s;
}

.nav-cta:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* =========================
   PAGE HERO
========================= */
.page-hero {
  padding: 150px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(0,212,200,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.page-label,
.section-label {
  font-family: 'Comfortaa', cursive;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grad3);
  margin-bottom: 16px;
}

.page-hero h1 {
  font-family: 'Comfortaa', cursive;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.02em;
  max-width: 760px;
  margin: 0 auto;
}

.page-hero p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 22px auto 0;
}

.privacy-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  border: 1px solid rgba(0,212,200,0.35);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--grad3);
  font-family: 'Comfortaa', cursive;
}

/* =========================
   FORM SECTION
========================= */
.form-section {
  padding: 20px 24px 100px;
}

.form-outer {
  max-width: 640px;
  margin: 0 auto;
}

.form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.form-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--grad1), var(--grad2), var(--grad3));
}

.form-title {
  font-family: 'Comfortaa', cursive;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.form-sub {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-family: 'Comfortaa', cursive;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #c8ccde;
}

.form-group input,
.form-group select {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.97rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-group input::placeholder {
  color: rgba(122,130,168,0.5);
}

.form-group input:focus,
.form-group select:focus {
  border-color: rgba(0,212,200,0.5);
  box-shadow: 0 0 0 3px rgba(0,212,200,0.08);
}

.form-hint {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: -12px;
  margin-bottom: 20px;
}

.pill-group {
  display: flex;
  gap: 10px;
}

.pill-option {
  flex: 1;
  text-align: center;
  cursor: pointer;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 13px 10px;
  font-size: 0.92rem;
  color: var(--muted);
  transition: border-color 0.2s, color 0.2s;
}

.pill-option input {
  display: none;
}

.pill-option.active {
  border-color: rgba(0,212,200,0.6);
  color: var(--text);
  background: rgba(0,212,200,0.06);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--muted);
  margin: 8px 0 24px;
}

.consent input {
  margin-top: 3px;
  accent-color: #00d4c8;
}

.consent a {
  color: var(--grad3);
  text-decoration: none;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--grad1), var(--grad3));
  color: #fff !important;
  border: none;
  border-radius: 12px;
  font-family: 'Comfortaa', cursive;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
  box-shadow: 0 0 32px rgba(123,47,247,0.3);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0,212,200,0.45);
}

.btn-submit:disabled {
  cursor: default;
  transform: none;
  opacity: 0.75;
}

.form-note {
  color: var(--muted);
  font-size: 0.8rem;
  text-align: center;
  margin-top: 14px;
}

.error-msg {
  display: none;
  text-align: center;
  padding: 16px;
  margin-top: 16px;
  background: rgba(255,80,80,0.08);
  border: 1px solid rgba(255,80,80,0.25);
  border-radius: 12px;
  color: #ff6b6b;
  font-family: 'Comfortaa', cursive;
  font-weight: 600;
  font-size: 0.9rem;
}

/* =========================
   THANK YOU STATE
========================= */
.thankyou {
  display: none;
  text-align: center;
  padding: 30px 10px 10px;
}

.thankyou .check {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  margin: 0 auto 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  background: rgba(0,212,200,0.12);
  border: 1px solid rgba(0,212,200,0.5);
  color: var(--grad3);
}

.thankyou h1 {
  font-family: 'Comfortaa', cursive;
  font-weight: 700;
  font-size: clamp(1.7rem, 4.2vw, 2.6rem);
  line-height: 1.35;
  letter-spacing: -0.01em;
  max-width: 480px;
  margin: 0 auto 18px;
}

.thankyou p {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 440px;
  margin: 0 auto;
}

.thankyou a.back {
  display: inline-block;
  margin-top: 30px;
  color: var(--grad3);
  text-decoration: none;
  font-family: 'Comfortaa', cursive;
  font-size: 0.85rem;
}

/* =========================
   LEGAL SECTION
========================= */
.updated {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 14px;
}

.legal-section {
  padding: 20px 24px 100px;
}

.legal-outer {
  max-width: 760px;
  margin: 0 auto;
}

.notice {
  background: rgba(0,212,200,0.06);
  border: 1px solid rgba(0,212,200,0.3);
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 44px;
  font-size: 0.88rem;
  color: #c8ccde;
}

.notice strong {
  color: var(--grad3);
  font-family: 'Comfortaa', cursive;
}

.toc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 26px;
  margin-bottom: 44px;
}

.toc h4 {
  font-family: 'Comfortaa', cursive;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grad3);
  margin-bottom: 12px;
}

.toc ol {
  padding-left: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 20px;
}

.toc a {
  color: #c2c6dc;
  text-decoration: none;
  font-size: 0.88rem;
}

.toc a:hover {
  color: var(--grad3);
}

.legal-block {
  margin-bottom: 38px;
}

.legal-block h2 {
  font-family: 'Comfortaa', cursive;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text);
}

.legal-block h3 {
  font-family: 'Comfortaa', cursive;
  font-size: 0.95rem;
  font-weight: 700;
  margin: 18px 0 8px;
  color: var(--grad3);
}

.legal-block p,
.legal-block li {
  color: #c2c6dc;
  font-size: 0.96rem;
  margin-bottom: 12px;
}

.legal-block ul {
  padding-left: 22px;
  margin-bottom: 12px;
}

.legal-block a {
  color: var(--grad3);
  text-decoration: none;
}

.legal-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 20px;
  font-size: 0.88rem;
}

.legal-block th,
.legal-block td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  color: #c2c6dc;
  vertical-align: top;
}

.legal-block th {
  font-family: 'Comfortaa', cursive;
  color: var(--grad3);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* =========================
   MAIN HERO SECTION
========================= */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(123,47,247,0.22) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(0,212,200,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 50% 100%, rgba(47,124,247,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0,212,200,0.35);
  border-radius: 50px;
  padding: 6px 18px;
  margin-bottom: 32px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grad3);
  animation: fadeUp 0.8s ease both;
}

.hero-badge span {
  width: 6px;
  height: 6px;
  background: var(--grad3);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-family: 'Comfortaa', cursive;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  max-width: 900px;
  animation: fadeUp 0.8s 0.15s ease both;
}

.hero p {
  max-width: 600px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 1.1rem;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-btns {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.8s 0.45s ease both;
}

.btn-primary {
  background: linear-gradient(135deg, var(--grad1), var(--grad3));
  color: #fff;
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: 'Comfortaa', cursive;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 32px rgba(123,47,247,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 48px rgba(0,212,200,0.4);
}

.btn-ghost {
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: 'Comfortaa', cursive;
  font-weight: 600;
  font-size: 0.95rem;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
  border-color: var(--grad3);
  color: var(--grad3);
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 72px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.8s 0.6s ease both;
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: 'Comfortaa', cursive;
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--grad2), var(--grad3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* =========================
   TICKER
========================= */
.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  background: var(--surface);
}

.ticker {
  display: flex;
  gap: 0;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  font-family: 'Comfortaa', cursive;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.ticker-dot {
  width: 4px;
  height: 4px;
  background: var(--grad3);
  border-radius: 50%;
  flex-shrink: 0;
}

/* =========================
   CONTENT SECTIONS
========================= */
.section-title {
  font-family: 'Comfortaa', cursive;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.pillars {
  padding: 100px 24px;
  background: var(--surface);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.pillar-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--grad1), var(--grad3));
  opacity: 0;
  transition: opacity 0.3s;
}

.pillar-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,212,200,0.25);
}

.pillar-card:hover::before {
  opacity: 1;
}

.pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: linear-gradient(135deg, rgba(123,47,247,0.2), rgba(0,212,200,0.15));
  border: 1px solid rgba(0,212,200,0.2);
}

.pillar-card h3 {
  font-family: 'Comfortaa', cursive;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.pillar-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* =========================
   MISSION SECTION
========================= */
.mission {
  padding: 100px 24px;
  background: linear-gradient(135deg, rgba(123,47,247,0.12) 0%, rgba(0,212,200,0.08) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.mission blockquote {
  font-family: 'Comfortaa', cursive;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.3;
  max-width: 860px;
  margin: 0 auto;
  letter-spacing: -0.01em;
}

.mission cite {
  display: block;
  margin-top: 24px;
  color: var(--muted);
  font-style: normal;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

/* =========================
   CTA SECTION
========================= */
.cta-band {
  padding: 100px 24px;
  text-align: center;
  background: var(--surface);
}

.cta-band h2 {
  font-family: 'Comfortaa', cursive;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-band p {
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 36px;
}

/* =========================
   FOOTER
========================= */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 60px 24px 40px;
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
}

.footer-brand img {
  height: 34px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.35)) drop-shadow(0 0 2px rgba(255,255,255,0.6));
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 300px;
}

.footer-col h4 {
  font-family: 'Comfortaa', cursive;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grad3);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: var(--text);
}

.social-row {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  font-size: 1rem;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.social-btn:hover {
  border-color: var(--grad3);
  color: var(--grad3);
  background: rgba(0,212,200,0.08);
}

.footer-bottom {
  max-width: 1140px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: var(--muted);
  font-size: 0.83rem;
}

/* =========================
   ANIMATIONS
========================= */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  nav {
    padding: 16px 20px;
  }

  .nav-links {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-wrap {
    padding: 32px 22px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 28px;
  }

  .toc ol {
    grid-template-columns: 1fr;
  }
}
