:root {
  --bg: #050505;
  --bg-soft: #0d0d0d;
  --text: #f5f5f5;
  --muted: #a6a6a6;
  --line: rgba(255, 255, 255, 0.08);
  --card: rgba(255, 255, 255, 0.04);
  --accent: #ffffff;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius: 24px;
  --max: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05), transparent 25%),
    linear-gradient(180deg, #070707 0%, #030303 100%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

.grid-bg {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 85%);
  -webkit-mask-image: radial-gradient(circle at center, black 35%, transparent 85%);
  pointer-events: none;
  opacity: 0.35;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(5, 5, 5, 0.55);
  border-bottom: 1px solid transparent;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
}

.brand-icon {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
}

.brand-logo {
  height: 32px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.25s ease;
}

.nav-link:hover {
  color: var(--text);
}

.hero {
  position: relative;
  padding: 90px 0 0px;
}

.hero-wrap {
  min-height: 70vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 20px;
}

.hero-card {
  width: 100%;
  max-width: 960px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 52px 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -30% auto auto 50%;
  transform: translateX(-50%);
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 60%);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 22px;
}

.hero-logo {
  width: min(460px, 76vw);
  height: auto;
  display: block;
  object-fit: contain;
}

.hero-subtitle {
  max-width: 700px;
  margin: 0 auto;
  font-size: clamp(1.05rem, 2.1vw, 1.35rem);
  line-height: 1.7;
  color: var(--muted);
}

.actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  appearance: none;
  border: none;
  outline: none;
  text-decoration: none;
  cursor: pointer;
  min-width: 190px;
  padding: 16px 24px;
  border-radius: 16px;
  font-size: 0.98rem;
  font-weight: 600;
  transition: transform 0.25s ease, opacity 0.25s ease, border-color 0.25s ease;
}

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

.btn-primary {
  background: var(--accent);
  color: #050505;
}

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

.status-row {
  margin-top: 38px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.status-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #d8d8d8;
  border-radius: 999px;
  padding: 12px 16px;
  font-size: 0.92rem;
}

.status-pill strong {
  color: #fff;
  font-weight: 600;
}

.section {
  padding: 0 0 90px;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.panel h2 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.panel p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.98rem;
}

.subscribe {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.subscribe input {
  flex: 1 1 280px;
  min-width: 0;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  outline: none;
  font-size: 0.98rem;
}

.subscribe input::placeholder {
  color: #8d8d8d;
}

.subscribe button {
  padding-inline: 22px;
}

footer {
  padding: 0 0 34px;
}

.footer-inner {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-inner p,
.footer-inner a {
  color: #8c8c8c;
  font-size: 0.9rem;
  text-decoration: none;
}

.fade-up {
  opacity: 0;
  transform: translateY(22px);
  animation: fadeUp 0.9s ease forwards;
}

.delay-1 {
  animation-delay: 0.12s;
}

.delay-2 {
  animation-delay: 0.24s;
}

.delay-3 {
  animation-delay: 0.36s;
}

.delay-4 {
  animation-delay: 0.48s;
}

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

@media (max-width: 860px) {
  .split {
    grid-template-columns: 1fr;
  }

  .hero-card {
    padding: 42px 22px;
    border-radius: 26px;
  }

  .header-inner {
    padding: 16px 0;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 24px), var(--max));
  }

  .hero {
    padding-top: 64px;
  }

  .hero-wrap {
    min-height: auto;
  }

  .btn {
    width: 100%;
  }

  .status-row {
    gap: 10px;
  }

  .status-pill {
    width: 100%;
  }
}