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

:root {
  --deep:  #0a1628;
  --mid:   #0d1f3c;
  --cyan:  #4bbfd9;
  --cyan2: #7dd4e8;
  --cyan3: #b8eaf5;
  --dark:  #1a2d4a;
  --white: #ffffff;
  --muted: rgba(125,212,232,0.5);
  --text:  rgba(188,220,235,0.75);
}

html { scroll-behavior: smooth; }

body {
  background: var(--deep);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  min-height: 100vh;
  overflow-x: hidden;
}

/* grid background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(75,191,217,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(75,191,217,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* radial glow */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 50% 35%, rgba(75,191,217,0.1) 0%, transparent 60%),
    radial-gradient(circle at 85% 80%, rgba(75,191,217,0.06) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

/* scattered dots */
.dots {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.dot {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(75,191,217,0.4);
  animation: blink 4s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity: 0.3; }
  50%      { opacity: 1; }
}

/* ── nav ── */
nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 52px;
  border-bottom: 1px solid rgba(75,191,217,0.15);
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-icon { width: 44px; height: 44px; flex-shrink: 0; border-radius: 10px; }

.logo-text-wrap { line-height: 1; }

.logo-name {
  display: block;
  font-family: 'Rethink Sans', 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
}

.logo-sub {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  color: var(--cyan);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ── hero ── */
.hero {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  min-height: calc(100vh - 101px);
}

/* coming pill */
.coming-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(75,191,217,0.45);
  border-radius: 99px;
  padding: 8px 22px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--cyan);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 56px;
  animation: fadeUp 0.6s ease both;
}

.coming-pill .pulse-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.65); }
}

/* central logo block */
.hero-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  animation: fadeUp 0.65s 0.05s ease both;
}

.hero-logo-img {
  height: clamp(72px, 10vw, 110px);
  width: auto;
  border-radius: 14px;
}

/* divider */
.divider {
  width: 48px;
  height: 1px;
  background: var(--cyan);
  margin: 0 auto 36px;
  opacity: 0.6;
  animation: fadeUp 0.65s 0.1s ease both;
}

.subhead {
  font-family: 'Space Mono', monospace;
  font-size: clamp(13px, 1.8vw, 16px);
  font-weight: 400;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 56px;
  animation: fadeUp 0.65s 0.15s ease both;
  letter-spacing: 0.02em;
}

/* email form */
.notify-row {
  display: flex;
  gap: 12px;
  max-width: 560px;
  width: 100%;
  margin-bottom: 20px;
  animation: fadeUp 0.65s 0.2s ease both;
}

.notify-row input {
  flex: 1;
  background: rgba(10,22,40,0.8);
  border: 1px solid rgba(75,191,217,0.35);
  border-radius: 8px;
  outline: none;
  padding: 16px 22px;
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  color: var(--white);
  transition: border-color 0.2s;
}

.notify-row input::placeholder { color: rgba(75,191,217,0.3); }
.notify-row input:focus         { border-color: var(--cyan); }

.notify-row button {
  background: var(--cyan);
  border: none;
  border-radius: 8px;
  padding: 16px 32px;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  color: var(--deep);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.notify-row button:hover  { background: var(--cyan2); }
.notify-row button:active { transform: scale(0.97); }

.form-note {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: rgba(75,191,217,0.35);
  letter-spacing: 0.05em;
  animation: fadeUp 0.65s 0.25s ease both;
  margin-bottom: 80px;
}

.form-note a {
  color: rgba(75,191,217,0.55);
  text-decoration: underline;
  cursor: pointer;
}

/* thank-you state */
#notify-thanks {
  max-width: 560px;
  width: 100%;
  margin-bottom: 80px;
  animation: fadeUp 0.5s ease both;
}

.thanks-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: rgba(29,158,117,0.08);
  border: 1px solid rgba(29,158,117,0.35);
  border-radius: 14px;
  padding: 32px 28px;
  text-align: center;
}

.thanks-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(29,158,117,0.15);
  border: 2px solid rgba(29,158,117,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #1D9E75;
  line-height: 1;
}

.thanks-title {
  font-family: 'Rethink Sans', 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1D9E75;
  margin: 0;
}

.thanks-sub {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: rgba(188,220,235,0.6);
  line-height: 1.8;
  letter-spacing: 0.02em;
  margin: 0;
  max-width: 380px;
}

/* pillars */
.pillars {
  display: flex;
  gap: 52px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.65s 0.3s ease both;
}

.pillar { text-align: center; }

.pillar h3 {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.pillar p {
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
}

/* ── footer ── */
footer {
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(75,191,217,0.12);
  padding: 26px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: rgba(75,191,217,0.25);
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-links a {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: rgba(75,191,217,0.4);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
  cursor: pointer;
}

.footer-links a:hover { color: var(--cyan); }

/* ── modals ── */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6,12,24,0.9);
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-backdrop.open { display: flex; }

.modal {
  background: #0d1f38;
  border: 1px solid rgba(75,191,217,0.25);
  border-radius: 14px;
  padding: 40px;
  max-width: 620px;
  width: 100%;
  max-height: 82vh;
  overflow-y: auto;
  position: relative;
}

.modal h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}

.modal .updated {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-bottom: 24px;
  display: block;
}

.modal h3 {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 22px 0 8px;
}

.modal p, .modal li {
  font-size: 14px;
  color: rgba(188,220,235,0.7);
  line-height: 1.85;
  margin-bottom: 10px;
}

.modal li  { margin-left: 20px; margin-bottom: 5px; }
.modal a   { color: var(--cyan); }

.modal-close {
  position: absolute;
  top: 18px; right: 22px;
  background: none;
  border: none;
  color: rgba(75,191,217,0.4);
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.modal-close:hover { color: var(--cyan); }

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

@media (max-width: 600px) {
  nav     { padding: 20px 24px; }
  footer  { padding: 22px 24px; flex-direction: column; align-items: flex-start; }
  .notify-row   { flex-direction: column; }
  .hero-logo-img { height: 72px; }
  .pillars { gap: 32px; }
}

/* ── legal pages ── */
.legal-page {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 64px 40px 80px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: rgba(75,191,217,0.5);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 48px;
  transition: color 0.2s;
}
.legal-back:hover { color: var(--cyan); }
.legal-back svg   { width: 14px; height: 14px; }

.legal-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(75,191,217,0.15);
}

.legal-header .legal-category {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--cyan);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.legal-header h1 {
  font-family: 'Rethink Sans', 'DM Sans', sans-serif;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.legal-header .legal-meta {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: rgba(75,191,217,0.4);
  letter-spacing: 0.06em;
}

.legal-body h2 {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 44px 0 14px;
}

.legal-body h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--cyan2);
  margin: 28px 0 10px;
}

.legal-body p {
  font-size: 14px;
  color: rgba(188,220,235,0.75);
  line-height: 1.9;
  margin-bottom: 14px;
}

.legal-body ul, .legal-body ol {
  margin: 10px 0 14px 24px;
}

.legal-body li {
  font-size: 14px;
  color: rgba(188,220,235,0.75);
  line-height: 1.85;
  margin-bottom: 6px;
}

.legal-body a {
  color: var(--cyan);
  text-decoration: underline;
  transition: opacity 0.2s;
}
.legal-body a:hover { opacity: 0.8; }

.legal-notice {
  background: rgba(75,191,217,0.06);
  border: 1px solid rgba(75,191,217,0.2);
  border-left: 3px solid var(--cyan);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 20px 0;
}

.legal-notice p {
  margin-bottom: 8px;
  font-size: 13px;
}
.legal-notice p:last-child { margin-bottom: 0; }

.legal-warning {
  background: rgba(255,180,0,0.05);
  border: 1px solid rgba(255,180,0,0.2);
  border-left: 3px solid #ffb400;
  border-radius: 8px;
  padding: 16px 20px;
  margin: 20px 0;
}

.legal-warning p {
  color: rgba(255,220,120,0.85);
  margin-bottom: 8px;
  font-size: 13px;
}
.legal-warning p:last-child { margin-bottom: 0; }

.legal-warning strong { color: #ffb400; }

/* rights / data table */
.legal-table-wrap { overflow-x: auto; margin: 20px 0; }

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.legal-table th {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(75,191,217,0.07);
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(75,191,217,0.2);
}

.legal-table td {
  padding: 10px 14px;
  color: rgba(188,220,235,0.75);
  border-bottom: 1px solid rgba(75,191,217,0.08);
  vertical-align: top;
  line-height: 1.6;
}

.legal-table tr:last-child td { border-bottom: none; }

.legal-contact-block {
  background: rgba(10,22,40,0.6);
  border: 1px solid rgba(75,191,217,0.18);
  border-radius: 10px;
  padding: 24px 28px;
  margin: 28px 0;
}

.legal-contact-block p {
  margin-bottom: 5px;
  font-size: 13px;
}

.legal-related {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(75,191,217,0.12);
}

.legal-related p {
  font-size: 13px;
  color: rgba(188,220,235,0.5);
  margin-bottom: 8px;
}

.legal-related a {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: rgba(75,191,217,0.5);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
  margin-right: 20px;
}
.legal-related a:hover { color: var(--cyan); }

@media (max-width: 600px) {
  .legal-page   { padding: 40px 20px 60px; }
  .legal-table  { font-size: 12px; }
}
