:root {
  --bg: #100820;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.14);
  --text: #fbf8ff;
  --muted: #c9bde6;
  --purple: #9b5cff;
  --pink: #ff6bd5;
  --blue: #64d7ff;
  --line: rgba(255, 255, 255, 0.16);
  --white: #ffffff;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 70% 4%, rgba(155, 92, 255, 0.34), transparent 34%),
    radial-gradient(circle at 8% 72%, rgba(100, 215, 255, 0.16), transparent 32%),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 76px);
  background: rgba(16, 8, 32, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #15051f;
  background: linear-gradient(135deg, var(--blue), var(--pink));
  border-radius: 8px;
  box-shadow: 0 0 28px rgba(255, 107, 213, 0.38);
}

.nav {
  display: flex;
  gap: clamp(14px, 2.4vw, 30px);
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 720;
}

.nav a {
  transition: color 180ms ease;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 1.06fr);
  align-items: center;
  gap: clamp(36px, 6vw, 88px);
  min-height: 780px;
  padding: 76px clamp(20px, 5vw, 76px) 92px;
  overflow: hidden;
}

.hero-copy {
  animation: riseIn 760ms ease both;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  color: var(--white);
  font-size: clamp(2.5rem, 6vw, 5.35rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  margin-bottom: 22px;
}

.lead,
.section p {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #15051f;
  background: linear-gradient(135deg, var(--blue), var(--pink));
  box-shadow: 0 18px 38px rgba(255, 107, 213, 0.24);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 620px;
  animation: imagePop 880ms ease both;
}

.hero-visual::before {
  position: absolute;
  width: min(620px, 88vw);
  aspect-ratio: 1;
  content: "";
  background: radial-gradient(circle, rgba(255, 107, 213, 0.24), transparent 66%);
  filter: blur(6px);
  animation: pulseGlow 4s ease-in-out infinite;
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: min(600px, 88vw);
  filter: drop-shadow(0 36px 60px rgba(0, 0, 0, 0.36));
}

.status-card {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 2px;
  min-width: 150px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  animation: floatCard 4.8s ease-in-out infinite;
}

.status-card span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status-card strong {
  color: var(--white);
}

.card-one {
  top: 15%;
  left: 2%;
}

.card-two {
  right: 4%;
  bottom: 18%;
  animation-delay: 0.8s;
}

.section {
  padding: 88px clamp(20px, 5vw, 76px);
}

.intro-section,
.experience-section,
.support-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.intro-section,
.feature-section {
  background: rgba(255, 255, 255, 0.035);
  border-block: 1px solid var(--line);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.05;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.feature-grid article,
.panel-copy,
.flow-list div,
.support-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.feature-grid article {
  min-height: 280px;
  padding: 22px;
  transition: transform 190ms ease, border-color 190ms ease, background 190ms ease;
}

.feature-grid article:hover {
  background: var(--panel-strong);
  border-color: rgba(100, 215, 255, 0.48);
  transform: translateY(-6px);
}

.feature-grid span,
.flow-list span {
  color: var(--pink);
  font-weight: 950;
}

.feature-grid h3 {
  margin: 24px 0 10px;
  color: var(--white);
  font-size: 1.24rem;
}

.feature-grid p {
  margin-bottom: 0;
  font-size: 0.98rem;
}

.panel-copy,
.support-card {
  padding: 30px;
}

.flow-list {
  display: grid;
  gap: 14px;
}

.flow-list div {
  padding: 20px;
  transition: transform 190ms ease, border-color 190ms ease;
}

.flow-list div:hover {
  border-color: rgba(255, 107, 213, 0.5);
  transform: translateX(6px);
}

.flow-list strong {
  display: block;
  margin-top: 4px;
  color: var(--white);
}

.support-card {
  display: grid;
  gap: 10px;
  font-style: normal;
}

.support-card strong {
  color: var(--white);
  font-size: 1.28rem;
}

.support-card a {
  color: var(--blue);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.support-card span {
  color: var(--muted);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 30px clamp(20px, 5vw, 76px);
  color: var(--muted);
  background: rgba(0, 0, 0, 0.22);
  border-top: 1px solid var(--line);
}

.site-footer strong {
  color: var(--white);
}

.site-footer a {
  color: var(--blue);
  font-weight: 850;
}

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

.legal-page {
  padding: 54px clamp(16px, 5vw, 34px) 72px;
}

.legal-hero,
.legal-content {
  width: min(860px, 100%);
  margin: 0 auto;
}

.legal-hero {
  padding: 28px 0 22px;
}

.legal-hero h1 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(2rem, 9vw, 3.6rem);
  line-height: 1.05;
}

.legal-hero p {
  color: var(--muted);
}

.legal-content {
  padding: clamp(20px, 5vw, 34px);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.legal-content h2 {
  margin: 28px 0 8px;
  color: var(--white);
  font-size: 1.16rem;
  line-height: 1.25;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  font-size: 1rem;
}

.legal-content a {
  color: var(--blue);
  font-weight: 800;
  overflow-wrap: anywhere;
}

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

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes imagePop {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(16px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.52;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.92;
    transform: scale(1.04);
  }
}

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

@media (max-width: 980px) {
  .site-header,
  .hero,
  .intro-section,
  .experience-section,
  .support-section {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-header {
    display: grid;
  }

  .hero,
  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }

  .hero-visual {
    min-height: 470px;
  }

  .status-card {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .legal-page {
    padding-top: 28px;
  }

  .legal-content {
    padding: 18px;
  }

  .footer-links {
    display: grid;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
