:root {
  --bg: #07080f;
  --card: #101223;
  --card-soft: #13152c;
  --accent-start: #3b82f6;
  --accent-end: #1d4ed8;
  --accent: #3b82f6;
  --accent-soft: rgba(59, 130, 246, 0.35);
  --accent-strong: #1d4ed8;
  --text: #f4f5ff;
  --text-muted: rgba(244, 245, 255, 0.68);
  --shadow: rgba(7, 8, 15, 0.6);
  --border: rgba(244, 245, 255, 0.08);
  --success: #3ddc97;
  --pending: #f7b32b;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  font-family: "Chivo", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #11152b, var(--bg) 45%);
  color: var(--text);
  scroll-behavior: smooth;
}

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

.page-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  padding: 32px clamp(18px, 6vw, 64px) 0;
  background: linear-gradient(135deg, rgba(31, 38, 135, 0.25), rgba(7, 8, 15, 0.95) 55%);
  position: relative;
  overflow: hidden;
}

.site-header::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.08) 30%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  mix-blend-mode: screen;
  left: var(--mouse-x, 50%);
  top: var(--mouse-y, 50%);
  transform: translate(0, 0);
}

.site-header.cursor-active::before {
  opacity: 1;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 15%, rgba(145, 148, 255, 0.3), transparent 50%),
    radial-gradient(circle at 80% -10%, rgba(67, 217, 173, 0.35), transparent 45%);
  pointer-events: none;
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
}

.brand img {
  height: 126px;
  width: auto;
}

.footer .brand img {
  height: 284px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 24px;
  padding: 6px 12px;
  border-radius: 10px;
  cursor: pointer;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
  padding: 0;
  margin: 0;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
}

.nav-links a {
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--text);
}

.nav-actions {
  display: flex;
  gap: 12px;
}

.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
  background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
  color: var(--text);
  box-shadow: 0 16px 35px rgba(29, 78, 216, 0.35);
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(29, 78, 216, 0.45);
}

.ghost-btn {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(15, 17, 33, 0.55);
}

.ghost-btn:hover {
  border-color: rgba(59, 130, 246, 0.55);
  color: var(--accent);
}

.hero {
  position: relative;
  z-index: 2;
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding-bottom: clamp(80px, 12vw, 140px);
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.hero-copy {
  max-width: 560px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 12px;
  font-weight: 600;
  color: rgba(244, 245, 255, 0.6);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.05;
  margin: 0 0 24px;
  font-family: "Space Grotesk", sans-serif;
}

.lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 26px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(244, 245, 255, 0.55);
  font-size: 14px;
  font-weight: 500;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 22px;
}

.glow {
  position: absolute;
  inset: 15% 5% 20% 10%;
  background: radial-gradient(circle at center, rgba(111, 125, 255, 0.35), transparent 60%);
  filter: blur(45px);
  z-index: -2;
}

.status-card,
.code-card {
  background: rgba(12, 13, 24, 0.85);
  border: 1px solid rgba(111, 125, 255, 0.12);
  border-radius: 24px;
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 45px rgba(7, 8, 15, 0.45);
}

.status-card {
  padding: 26px;
}

.status-card header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.status-card .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(61, 220, 151, 0.18);
}

.status-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.status-card li {
  display: flex;
  gap: 14px;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  font-family: "Space Grotesk", sans-serif;
}

.badge-on {
  background: rgba(61, 220, 151, 0.2);
  color: var(--success);
}

.badge-pending {
  background: rgba(247, 179, 43, 0.18);
  color: var(--pending);
}

.status-card strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.status-card p {
  color: var(--text-muted);
  font-size: 13px;
  margin: 0;
}

.code-card {
  padding: 22px 24px;
  font-family: "Space Grotesk", monospace;
}

.code-toolbar {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.code-toolbar span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(244, 245, 255, 0.25);
}

pre {
  margin: 0;
  background: rgba(7, 8, 15, 0.65);
  border-radius: 16px;
  padding: 18px 22px;
  overflow: auto;
  font-size: 15px;
  line-height: 1.6;
}

main {
  padding: clamp(56px, 9vw, 100px) clamp(18px, 6vw, 96px);
  display: grid;
  gap: clamp(72px, 12vw, 120px);
  justify-items: center;
}

main > * {
  width: min(100%, 1240px);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  text-align: center;
}

.stat {
  background: var(--card);
  border-radius: 20px;
  padding: 30px 24px;
  border: 1px solid var(--border);
  box-shadow: 0 18px 35px rgba(7, 8, 15, 0.35);
}

.stat h3 {
  font-size: 36px;
  margin: 0 0 8px;
  font-family: "Space Grotesk", sans-serif;
}

.stat p {
  margin: 0;
  color: var(--text-muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.feature-grid article {
  background: var(--card);
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 45px rgba(7, 8, 15, 0.35);
  display: grid;
  gap: 14px;
}

.feature-grid .icon {
  font-size: 28px;
}

.feature-grid h2 {
  font-size: 22px;
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
}

.feature-grid p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.timeline {
  display: grid;
  gap: 32px;
}

.section-head {
  max-width: 620px;
}

.section-head h2 {
  margin: 12px 0;
  font-size: clamp(28px, 4vw, 42px);
  font-family: "Space Grotesk", sans-serif;
}

.section-head .body {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.phase {
  background: var(--card-soft);
  border-radius: 24px;
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 22px 40px rgba(7, 8, 15, 0.35);
}

.phase-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(111, 125, 255, 0.2);
  color: var(--accent);
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 16px;
}

.phase h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.phase p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.monitoring-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.monitoring .section-head {
  margin-bottom: 32px;
}

.monitoring .card {
  background: var(--card);
  border-radius: 24px;
  padding: 26px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 45px rgba(7, 8, 15, 0.35);
}

.monitoring ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--text-muted);
  line-height: 1.7;
}

.install {
  display: grid;
  gap: 28px;
}

.install-panels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.panel {
  background: var(--card);
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--border);
  display: grid;
  gap: 18px;
}

.panel h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
}

.code-block {
  position: relative;
  background: rgba(7, 8, 15, 0.7);
  border-radius: 18px;
  border: 1px solid rgba(244, 245, 255, 0.08);
  overflow: hidden;
}

.code-block button {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 10px;
  border: 1px solid rgba(244, 245, 255, 0.2);
  background: rgba(17, 22, 38, 0.9);
  color: var(--text-muted);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.code-block button:hover {
  background: rgba(57, 60, 98, 0.9);
  color: var(--text);
}

.integrations {
  display: grid;
  gap: 22px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.chips span {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(244, 245, 255, 0.1);
  background: rgba(17, 20, 35, 0.75);
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.cta {
  position: relative;
}

.cta-card {
  background: linear-gradient(135deg, rgba(111, 125, 255, 0.12), rgba(61, 220, 151, 0.12));
  border-radius: 28px;
  padding: clamp(32px, 6vw, 60px);
  border: 1px solid rgba(111, 125, 255, 0.24);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
  box-shadow: 0 28px 55px rgba(7, 8, 15, 0.45);
}

.footer {
  padding: clamp(48px, 8vw, 96px) clamp(24px, 7vw, 96px);
  background: rgba(7, 8, 15, 0.92);
  border-top: 1px solid rgba(244, 245, 255, 0.08);
}

.footer-shell {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  gap: clamp(28px, 6vw, 30px);
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 36px);
  padding: clamp(28px, 6vw, 52px);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(111, 125, 255, 0.16), rgba(61, 220, 151, 0.14));
  border: 1px solid rgba(244, 245, 255, 0.12);
  box-shadow: 0 28px 60px rgba(7, 8, 15, 0.5);
}

.footer-top-copy {
  max-width: 520px;
  display: grid;
  gap: 12px;
}

.footer-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 12px;
  font-weight: 600;
  color: rgba(244, 245, 255, 0.6);
  margin: 0;
}

.footer-top-copy h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
  font-family: "Space Grotesk", sans-serif;
}

.footer-top-copy p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(244, 245, 255, 0.08);
}

.sponsor-banner {
  padding: clamp(32px, 5vw, 48px) 0;
}

.sponsor-content {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 32px);
  padding: clamp(24px, 4vw, 40px);
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.12), rgba(168, 85, 247, 0.12));
  border: 1px solid rgba(236, 72, 153, 0.25);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.sponsor-icon {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1;
  flex-shrink: 0;
}

.sponsor-text {
  flex: 1;
  display: grid;
  gap: 8px;
}

.sponsor-text strong {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 700;
  color: var(--text);
}

.sponsor-text p {
  margin: 0;
  color: var(--text-muted);
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.6;
}

.sponsor-btn {
  padding: 14px 28px;
  background: linear-gradient(135deg, #ec4899, #a855f7);
  color: white;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
  flex-shrink: 0;
}

.sponsor-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(236, 72, 153, 0.4);
}

.footer-bottom {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: start;
  gap: clamp(32px, 5vw, 64px);
}

.footer-brand {
  display: grid;
  gap: 6px;
  align-content: start;
}

.footer-brand img {
  height: 72px;
  width: auto;
}

.footer-brand p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}

.footer-nav {
  font-weight: 600;
  color: var(--text-muted);
}

.footer-nav ul {
  list-style: none;
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  position: relative;
  padding-left: 28px;
}

.footer-nav li::before {
  content: "\2014";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(244, 245, 255, 0.4);
}

.footer-nav a {
  color: inherit;
}

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

footer p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}

.footer-meta {
  display: grid;
  gap: 4px;
  text-align: right;
  justify-self: end;
  font-size: 14px;
}

.footer-meta p {
  margin: 0;
  color: var(--text-muted);
}

.footer .margin-top-20 {
  margin-top: 20px;
}
@media (max-width: 720px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .sponsor-content {
    flex-direction: column;
    text-align: center;
  }

  .sponsor-text {
    text-align: center;
  }

  .sponsor-btn {
    width: 100%;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-meta {
    text-align: left;
    justify-self: start;
  }
}

@media (max-width: 920px) {
  .nav {
    grid-template-columns: auto auto auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 18px);
    right: 0;
    flex-direction: column;
    gap: 16px;
    background: rgba(10, 11, 22, 0.95);
    padding: 24px;
    border-radius: 18px;
    border: 1px solid var(--border);
    box-shadow: 0 18px 32px rgba(7, 8, 15, 0.45);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-actions {
    display: none;
  }
}

@media (max-width: 720px) {
  .hero {
    margin-top: 60px;
  }

  .stats {
    gap: 18px;
  }

  .cta-card {
    flex-direction: column;
    text-align: center;
  }
}
