:root {
  color-scheme: dark;
  --bg: #05070d;
  --bg-2: #091321;
  --text: #f5f8ff;
  --muted: rgba(231, 238, 255, 0.72);
  --line: rgba(162, 211, 255, 0.18);
  --glass: rgba(11, 20, 33, 0.56);
  --glass-strong: rgba(14, 26, 43, 0.74);
  --accent: #ffb14a;
  --accent-2: #78d8ff;
  --shadow: 0 35px 100px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 177, 74, 0.16), transparent 24%),
    radial-gradient(circle at 82% 14%, rgba(120, 216, 255, 0.16), transparent 22%),
    linear-gradient(180deg, var(--bg), var(--bg-2) 42%, #04050a);
  color: var(--text);
  font-family: Manrope, "Segoe UI Variable Text", sans-serif;
}

body {
  overflow-x: hidden;
}

.backdrop {
  position: fixed;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.45;
  pointer-events: none;
}

.backdrop-a {
  top: -120px;
  left: -80px;
  width: 340px;
  height: 340px;
  background: rgba(255, 177, 74, 0.24);
}

.backdrop-b {
  right: -80px;
  top: 140px;
  width: 300px;
  height: 300px;
  background: rgba(120, 216, 255, 0.22);
}

.shell {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.glass {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)), var(--glass);
  backdrop-filter: blur(24px) saturate(145%);
  box-shadow: var(--shadow);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  border-radius: 999px;
}

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

.brand strong,
.hero h1,
.feature h2,
.cta h2 {
  font-family: Syne, Manrope, sans-serif;
}

.brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 177, 74, 0.16), rgba(120, 216, 255, 0.14));
  display: grid;
  place-items: center;
  overflow: hidden;
}

.brand-mark img,
.logo-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eyebrow {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.26em;
  color: #b5dfff;
  text-transform: uppercase;
}

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

.topnav a,
.button {
  color: inherit;
  text-decoration: none;
}

.topnav a {
  font-size: 13px;
  color: var(--muted);
}

.hero {
  margin-top: 22px;
  padding: 30px;
  border-radius: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 22px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.92;
}

.lede,
.feature p,
.cta p,
.status-card span {
  color: var(--muted);
  line-height: 1.7;
}

.actions,
.badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.button {
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.button.primary {
  background: linear-gradient(135deg, var(--accent), #ffd46f);
  color: #0d1520;
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.badges span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
}

.hero-card {
  display: grid;
  gap: 18px;
}

.logo-stage,
.status-card,
.feature,
.cta {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)), var(--glass-strong);
}

.logo-stage {
  min-height: 360px;
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 18px;
}

.logo-stage img {
  width: min(100%, 440px);
  height: auto;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.45));
}

.status-card {
  padding: 18px;
  border-radius: 24px;
  display: grid;
  gap: 6px;
}

.status-card p {
  margin: 0;
  color: #9fd8ff;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.status-card strong {
  font-size: 20px;
}

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

.feature {
  border-radius: 26px;
  padding: 22px;
}

.feature h2,
.cta h2 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.08;
}

.cta {
  margin-top: 20px;
  border-radius: 30px;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

@media (max-width: 980px) {
  .hero,
  .grid,
  .cta {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar {
    border-radius: 28px;
    flex-direction: column;
    align-items: flex-start;
  }

  .logo-stage {
    min-height: 280px;
  }
}
