:root {
  --bg: #090b14;
  --bg-soft: #101427;
  --panel: rgba(18, 23, 42, 0.84);
  --panel-strong: rgba(12, 16, 31, 0.92);
  --panel-soft: rgba(255, 255, 255, 0.05);
  --text: #f5f7ff;
  --muted: #b2bad2;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(102, 228, 255, 0.22);
  --plasma: #9c2cff;
  --violet: #6f49ff;
  --cyan: #54e5ff;
  --ember: #ff7a18;
  --ink: #070910;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(111, 73, 255, 0.16), transparent 26%),
    radial-gradient(circle at top right, rgba(84, 229, 255, 0.08), transparent 22%),
    radial-gradient(circle at bottom center, rgba(255, 122, 24, 0.06), transparent 24%),
    linear-gradient(180deg, #070910 0%, #0b0f19 48%, #090b14 100%);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

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

code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.92em;
}

.backdrop {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(156, 44, 255, 0.14), transparent 0 22%),
    radial-gradient(circle at 82% 10%, rgba(84, 229, 255, 0.1), transparent 0 18%),
    radial-gradient(circle at 74% 78%, rgba(255, 122, 24, 0.08), transparent 0 16%);
  pointer-events: none;
  z-index: -1;
}

.site-header,
.site-footer,
.content-block,
.section-shell {
  width: min(1240px, calc(100% - 28px));
  margin-inline: auto;
}

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

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

.brand-badge {
  display: inline-flex;
  width: 72px;
  height: 72px;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at top left, rgba(255, 122, 24, 0.18), transparent 52%),
    radial-gradient(circle at bottom right, rgba(111, 73, 255, 0.2), transparent 58%),
    rgba(13, 17, 32, 0.95);
  box-shadow: var(--shadow);
}

.brand-badge img {
  width: 66px;
  height: 66px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong,
.footer-title,
h1,
h2,
h3,
summary,
.button,
.site-nav a {
  font-family: "Sora", "Manrope", sans-serif;
}

.brand-copy strong {
  font-size: 1.18rem;
  font-weight: 800;
}

.brand-copy span,
.section-heading p,
.lede,
.feature-card p,
.comparison-card p,
.step-card p,
.site-footer,
.faq-item p {
  color: var(--muted);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-nav a:hover,
.footer-nav a:hover,
.button:hover {
  transform: translateY(-1px);
}

.nav-cta,
.button-primary {
  background: linear-gradient(135deg, var(--plasma), var(--violet) 58%, #8e7dff);
  border-color: transparent;
  box-shadow: 0 18px 36px rgba(111, 73, 255, 0.24);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 28px;
  padding: 24px 0 20px;
}

.hero-copy,
.content-block,
.stage-panel,
.legal-shell {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(18, 23, 42, 0.94), rgba(10, 13, 24, 0.98));
  box-shadow: var(--shadow);
}

.hero-copy {
  border-radius: 34px;
  padding: 34px;
}

.eyebrow,
.pill,
.signal-row span,
.comparison-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow,
.pill,
.comparison-label {
  color: #dcd6ff;
}

.hero-copy h1 {
  margin: 18px 0 16px;
  font-size: clamp(3.2rem, 8vw, 6.25rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.lede {
  margin: 0;
  max-width: 38rem;
  font-size: 1.12rem;
}

.hero-actions,
.signal-row,
.footer-nav,
.comparison-grid,
.steps,
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 800;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.04);
}

.signal-row {
  margin-top: 24px;
}

.signal-row span {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
}

.hero-stage {
  position: relative;
}

.stage-panel {
  position: relative;
  min-height: 100%;
  padding: 26px;
  border-radius: 38px;
  overflow: hidden;
}

.glow {
  position: absolute;
  inset: auto;
  border-radius: 999px;
  filter: blur(56px);
  opacity: 0.54;
  z-index: 0;
}

.glow-a {
  top: 10%;
  right: 14%;
  width: 180px;
  height: 180px;
  background: rgba(111, 73, 255, 0.4);
}

.glow-b {
  bottom: 8%;
  left: 10%;
  width: 150px;
  height: 150px;
  background: rgba(84, 229, 255, 0.26);
}

.stage-copy,
.mascot,
.floating-card {
  position: relative;
  z-index: 1;
}

.stage-copy {
  max-width: 19rem;
}

.stage-copy h2 {
  margin: 16px 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.stage-copy p {
  margin: 0;
  color: var(--muted);
}

.mascot {
  width: min(580px, 100%);
  margin: -18px auto -26px;
  animation: mascotFloat 6s ease-in-out infinite;
}

.floating-card {
  position: absolute;
  padding: 14px 16px;
  max-width: 220px;
  border-radius: 20px;
  border: 1px solid var(--line-strong);
  background: rgba(10, 14, 27, 0.78);
  color: #eef4ff;
  font-weight: 700;
  backdrop-filter: blur(16px);
}

.card-top {
  top: 24px;
  right: 20px;
}

.card-bottom {
  bottom: 34px;
  left: 18px;
}

.content-block {
  margin-top: 28px;
  padding: 30px;
  border-radius: 34px;
}

.section-heading {
  max-width: 48rem;
}

.section-heading.compact {
  max-width: 42rem;
}

.section-heading h2 {
  margin: 18px 0 14px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.section-heading p:last-child {
  margin: 0;
  font-size: 1.02rem;
}

.feature-grid {
  margin-top: 24px;
}

.feature-grid > * {
  flex: 1 1 240px;
}

.feature-card,
.comparison-card,
.step-card,
.faq-item {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.feature-card,
.comparison-card {
  padding: 22px;
  border-radius: 24px;
}

.feature-card h3,
.comparison-card h3,
.step-card h3 {
  margin: 0 0 12px;
  font-size: 1.22rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.feature-card p,
.comparison-card p,
.step-card p {
  margin: 0;
}

.highlight-band {
  position: relative;
  overflow: hidden;
}

.highlight-band::before {
  content: "";
  position: absolute;
  inset: auto -8% -44% 42%;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 24, 0.18), transparent 62%);
  pointer-events: none;
}

.comparison-grid {
  margin-top: 22px;
}

.comparison-grid > * {
  flex: 1 1 280px;
}

.comparison-card.accent {
  border-color: rgba(111, 73, 255, 0.34);
  background:
    linear-gradient(180deg, rgba(111, 73, 255, 0.14), rgba(84, 229, 255, 0.06)),
    rgba(255, 255, 255, 0.04);
}

.comparison-label {
  margin-bottom: 16px;
}

.audience-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.audience-strip span {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 20px;
  align-items: start;
}

.steps {
  flex-direction: column;
}

.step-card {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 20px;
  border-radius: 26px;
}

.step-card strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--ember), var(--plasma));
  font-family: "Sora", sans-serif;
  font-size: 1.4rem;
}

.callout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.faq-block {
  margin-bottom: 26px;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.faq-item {
  padding: 18px 20px;
  border-radius: 22px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 12px 0 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 0 0 34px;
}

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

.footer-title {
  font-size: 1rem;
  font-weight: 800;
}

.footer-nav {
  justify-content: flex-end;
}

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

.legal-page .site-header,
.legal-page .site-footer {
  padding-top: 20px;
}

.legal-shell {
  width: min(900px, calc(100% - 28px));
  margin: 12px auto 28px;
  padding: 34px;
  border-radius: 34px;
}

.legal-shell h1 {
  margin: 18px 0 10px;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.legal-shell h2 {
  margin: 28px 0 10px;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
}

.legal-shell p,
.legal-shell li {
  color: var(--muted);
}

.legal-shell ul {
  padding-left: 20px;
}

@keyframes mascotFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .mascot,
  .button,
  .site-nav a,
  .footer-nav a {
    animation: none;
    transition: none;
  }
}

@media (max-width: 1080px) {
  .hero,
  .two-column,
  .audience-strip {
    grid-template-columns: 1fr;
  }

  .card-top,
  .card-bottom {
    position: static;
    max-width: none;
    margin-top: 14px;
  }

  .stage-panel {
    display: grid;
    gap: 14px;
  }
}

@media (max-width: 860px) {
  .site-header,
  .site-footer,
  .callout {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-copy,
  .content-block,
  .legal-shell {
    padding: 24px;
  }

  .brand-badge {
    width: 58px;
    height: 58px;
  }

  .brand-badge img {
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 640px) {
  .site-header,
  .site-footer,
  .content-block,
  .section-shell,
  .legal-shell {
    width: min(calc(100% - 20px), 1240px);
  }

  .hero {
    gap: 18px;
    padding-top: 8px;
  }

  .hero-copy h1,
  .legal-shell h1 {
    font-size: clamp(2.5rem, 14vw, 4rem);
  }

  .step-card {
    grid-template-columns: 1fr;
  }
}
