:root {
  color-scheme: dark;
  --bg-0: #050a12;
  --bg-1: #0a1321;
  --bg-2: #0f1f33;
  --ink-0: #e7f4ff;
  --ink-1: #b9d8f5;
  --ink-2: #86a7c8;
  --a-0: #2bf2ff;
  --a-1: #1b90ff;
  --a-2: #0e5bff;
  --ring: rgba(39, 158, 255, 0.35);
  --glow: 0 0 30px rgba(26, 160, 255, 0.5);
  --shadow: 0 30px 80px rgba(3, 10, 20, 0.65);
  font-family: "Sora", "Space Grotesk", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(1200px 700px at 70% 10%, rgba(40, 130, 255, 0.18), transparent 60%),
    radial-gradient(900px 600px at 20% 20%, rgba(0, 220, 255, 0.12), transparent 55%),
    linear-gradient(140deg, var(--bg-0), var(--bg-1) 45%, var(--bg-2));
  color: var(--ink-0);
}

#root {
  min-height: 100vh;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 56px 20px 72px;
  position: relative;
  overflow: hidden;
  gap: 48px;
}


.page::before,
.page::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page::before {
  background:
    radial-gradient(240px 240px at 15% 80%, rgba(44, 167, 255, 0.18), transparent 65%),
    radial-gradient(420px 420px at 85% 70%, rgba(0, 255, 209, 0.12), transparent 60%);
  mix-blend-mode: screen;
  opacity: 0.8;
}

.page::after {
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%231a2d45' stroke-width='1'%3E%3Cpath d='M0 60H120M60 0V120'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.08;
}

.frame {
  width: min(1080px, 100%);
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

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

.logo-wrap {
  position: relative;
  width: 110px;
  height: 110px;
  min-width: 110px;
  min-height: 110px;
  aspect-ratio: 1;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 40% 35%, rgba(75, 190, 255, 0.35), transparent 60%),
    linear-gradient(145deg, rgba(9, 25, 45, 0.8), rgba(10, 20, 35, 0.9));
  box-shadow: var(--shadow);
}

.logo-wrap::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid var(--ring);
  box-shadow: 0 0 30px rgba(31, 140, 255, 0.35);
  opacity: 0.9;
}

.logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(64, 198, 255, 0.6));
  animation: pulse 5s ease-in-out infinite;
}

.brand-text {
  display: grid;
  gap: 6px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 11px;
  color: var(--ink-2);
}

.title {
  font-family: "Space Grotesk", "Sora", sans-serif;
  font-size: clamp(2.2rem, 3.6vw, 3.2rem);
  margin: 0;
  line-height: 1.05;
}

.title span {
  color: var(--a-0);
}

.tagline {
  font-size: 1.1rem;
  color: var(--ink-1);
  margin: 4px 0 0;
  letter-spacing: 0.02em;
}

.tagline span {
  color: var(--a-0);
  font-weight: 600;
}

.copy {
  font-size: 1.05rem;
  color: var(--ink-1);
  line-height: 1.7;
  margin: 18px 0 0;
  max-width: 520px;
}

.copy strong {
  color: var(--ink-0);
  font-weight: 600;
}

.panel {
  padding: 26px 28px;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(15, 35, 60, 0.85), rgba(8, 18, 32, 0.9));
  border: 1px solid rgba(58, 120, 180, 0.25);
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}

.panel h2 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--ink-0);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail {
  color: var(--ink-1);
  font-size: 0.98rem;
  line-height: 1.6;
}

.cta-wrap {
  display: flex;
  justify-content: center;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  border: 1px solid rgba(100, 210, 255, 0.4);
  background: linear-gradient(120deg, rgba(40, 200, 255, 0.2), rgba(18, 110, 255, 0.45));
  color: var(--ink-0);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: 0.04em;
  box-shadow: var(--glow);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.cta::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 200%;
  left: -110%;
  top: -50%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: rotate(25deg);
  transition: transform 0.8s ease, left 0.8s ease;
}

.cta:hover {
  transform: translateY(-2px) scale(1.01);
  border-color: rgba(100, 235, 255, 0.8);
  box-shadow: 0 0 45px rgba(39, 182, 255, 0.6);
}

.cta:hover::after {
  left: 120%;
}

.stats {
  display: grid;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--ink-2);
}

.stats span {
  color: var(--ink-0);
  font-weight: 600;
}

.footer {
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--ink-2);
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.04);
  }
}

@media (max-width: 720px) {
  .frame {
    gap: 24px;
  }

  .panel {
    order: 2;
  }

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

  .logo-wrap {
    width: 92px;
    height: 92px;
    min-width: 92px;
    min-height: 92px;
  }
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink-2);
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--ink-0);
  border-color: var(--ink-1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-icon svg {
  width: 20px;
  height: 20px;
}