:root {
  --bg: #09090b;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.1);
  --text: #f4f4f5;
  --muted: #a1a1aa;
  --cyan: #67e8f9;
  --sky: #7dd3fc;
  --blue: #60a5fa;
  --amber: #fbbf24;
  --green: #86efac;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top center, rgba(8, 145, 178, 0.08), transparent 32%),
    linear-gradient(180deg, #09090b 0%, #0b1020 100%);
  color: var(--text);
  position: relative;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(72px);
  pointer-events: none;
  z-index: -1;
}

.orb-1 {
  width: 34rem;
  height: 34rem;
  left: 50%;
  top: -8rem;
  transform: translateX(-50%);
  background: rgba(6, 182, 212, 0.12);
}

.orb-2 {
  width: 26rem;
  height: 26rem;
  right: -5rem;
  bottom: -3rem;
  background: rgba(59, 130, 246, 0.12);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 8px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: white;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(6, 182, 212, 0.08);
}

.brand-mark svg {
  width: 20px;
  height: 20px;
}

.eyebrow {
  margin: 0 0 2px;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #a5f3fc;
  font-weight: 600;
}

.brand-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: white;
}

.pill,
.status-pill,
.tag {
  border-radius: 999px;
  border: 1px solid var(--border);
}

.pill {
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.05);
  color: #d4d4d8;
  font-size: 0.92rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 48px;
  padding: 56px 0 96px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(34, 211, 238, 0.1);
  border-color: rgba(34, 211, 238, 0.2);
  color: #cffafe;
  backdrop-filter: blur(12px);
  font-size: 0.92rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(103, 232, 249, 0.08);
}

.hero-copy h1 {
  margin: 22px 0 0;
  max-width: 14ch;
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.hero-copy h1 span {
  display: block;
  background: linear-gradient(90deg, var(--cyan), var(--sky), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  margin: 24px 0 0;
  max-width: 42rem;
  font-size: 1.12rem;
  line-height: 1.8;
  color: #d4d4d8;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 18px;
  font-weight: 700;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: white;
  color: #0a0a0a;
  box-shadow: 0 12px 28px rgba(255, 255, 255, 0.08);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: white;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.feature-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 22px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.feature-card h3 {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
  color: white;
}

.feature-card p {
  margin: 10px 0 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #d4d4d8;
}

.policy-shell {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 16px;
  box-shadow: 0 28px 80px rgba(8, 145, 178, 0.12);
  backdrop-filter: blur(18px);
}

.policy-window {
  background: rgba(9, 9, 11, 0.85);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 22px;
}

.window-dots {
  display: flex;
  gap: 8px;
}

.window-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.window-dots span:nth-child(1) { background: rgba(248, 113, 113, 0.9); }
.window-dots span:nth-child(2) { background: rgba(251, 191, 36, 0.9); }
.window-dots span:nth-child(3) { background: rgba(74, 222, 128, 0.9); }

.policy-highlight {
  margin-top: 22px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.2);
}

.policy-label,
.notice-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  font-weight: 700;
}

.policy-label {
  color: #bae6fd;
}

.policy-highlight h2 {
  margin: 10px 0 0;
  font-size: 2rem;
  line-height: 1.1;
  color: white;
}

.policy-highlight p:last-child {
  margin: 12px 0 0;
  color: rgba(236, 254, 255, 0.88);
  line-height: 1.8;
  font-size: 0.98rem;
}

.policy-list {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.policy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.policy-row span:first-child {
  color: #e4e4e7;
  font-size: 0.95rem;
}

.tag {
  padding: 6px 10px;
  background: rgba(74, 222, 128, 0.1);
  border-color: rgba(74, 222, 128, 0.18);
  color: #86efac;
  font-size: 0.76rem;
  font-weight: 700;
}

.notice {
  padding-bottom: 28px;
}

.notice-card {
  border-radius: 32px;
  padding: 24px;
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.18);
  box-shadow: 0 16px 40px rgba(120, 53, 15, 0.12);
}

.notice-label {
  color: #fde68a;
}

.notice-text {
  margin: 12px 0 0;
  max-width: 72rem;
  line-height: 1.8;
  color: rgba(255, 251, 235, 0.9);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0 34px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 34px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .desktop-only {
    display: none;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 32px, 1120px);
  }

  .site-header {
    padding-top: 20px;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .policy-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .policy-highlight h2 {
    font-size: 1.7rem;
  }
}
