@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --background: #0a1021;
  --background-soft: #101932;
  --card: rgba(18, 26, 47, 0.84);
  --card-strong: rgba(20, 29, 53, 0.96);
  --foreground: #f4f7fd;
  --muted: #99a6c0;
  --muted-strong: #c5d0e4;
  --primary: #37d7ff;
  --primary-strong: #75f0ff;
  --secondary: #7c5cff;
  --accent: #00d7a2;
  --border: rgba(124, 157, 209, 0.18);
  --border-strong: rgba(124, 157, 209, 0.28);
  --shadow: 0 24px 80px rgba(3, 8, 22, 0.45);
  --radius: 28px;
  --radius-sm: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--foreground);
  background:
    radial-gradient(760px circle at 12% 18%, rgba(0, 209, 255, 0.16), transparent 55%),
    radial-gradient(880px circle at 88% 14%, rgba(124, 92, 255, 0.18), transparent 58%),
    radial-gradient(720px circle at 52% 94%, rgba(0, 215, 162, 0.08), transparent 52%),
    linear-gradient(180deg, #090f20 0%, #0b1123 44%, #09111f 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before,
body::after {
  content: '';
  position: fixed;
  inset: auto;
  width: 28rem;
  height: 28rem;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}

body::before {
  top: -8rem;
  right: -8rem;
  background: rgba(124, 92, 255, 0.32);
}

body::after {
  bottom: -12rem;
  left: -8rem;
  background: rgba(55, 215, 255, 0.2);
}

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

img,
svg {
  display: block;
}

.page-shell {
  position: relative;
  z-index: 1;
}

.container {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(124, 157, 209, 0.12);
  background: rgba(9, 15, 31, 0.72);
  backdrop-filter: blur(22px);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
  padding: 0.75rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(124, 157, 209, 0.22);
  border-radius: 0.9rem;
  background: rgba(18, 26, 47, 0.9);
  color: var(--foreground);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.logo-wordmark {
  font-size: 1rem;
}

.logo-wordmark span:last-child {
  color: var(--primary);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem 1rem;
}

.nav-link {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  color: var(--foreground);
}

.section {
  padding: 5rem 0;
}

.section-tight {
  padding-top: 1rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: rgba(55, 215, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.section-heading h1,
.section-heading h2 {
  margin: 0;
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.section-heading h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
}

.section-heading h2 {
  font-size: clamp(2rem, 5vw, 3.25rem);
}

.section-heading p,
.hero-body,
.supporting-copy,
.meta-grid p,
.feature-card p,
.platform-note,
.footer-copy,
.legal-prose p,
.legal-prose li {
  color: var(--muted);
  line-height: 1.75;
}

.hero {
  padding: 3rem 0 5rem;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}

.hero-copy {
  min-width: 0;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.8rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}

.badge-primary {
  background: rgba(55, 215, 255, 0.14);
  color: var(--primary-strong);
}

.badge-secondary {
  background: rgba(124, 92, 255, 0.14);
  color: #bcaeff;
}

.badge-outline {
  border-color: var(--border);
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.02);
}

.hero-body {
  max-width: 43rem;
  margin: 1.5rem 0 0;
  font-size: 1.08rem;
}

.promise-grid {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.promise-card,
.feature-card,
.platform-card,
.meta-card,
.spotlight-card,
.callout-card,
.cta-band {
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.promise-card {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem 1.05rem;
  border-radius: 1.35rem;
}

.promise-card p {
  margin: 0;
  color: var(--foreground);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.6;
}

.promise-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: rgba(55, 215, 255, 0.12);
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 700;
  flex: 0 0 auto;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 0.9rem;
  font-size: 0.96rem;
  font-weight: 600;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--primary);
  color: #06111d;
}

.button-outline {
  background: rgba(255, 255, 255, 0.01);
  border-color: var(--border-strong);
  color: var(--foreground);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  color: var(--muted-strong);
  font-size: 0.95rem;
  font-weight: 500;
}

.text-link:hover,
.text-link:focus-visible,
.legal-prose a:hover,
.legal-prose a:focus-visible {
  color: var(--foreground);
}

.hero-panel {
  min-width: 0;
}

.spotlight-card {
  overflow: hidden;
  border-radius: 2rem;
  background: var(--card-strong);
}

.spotlight-head {
  padding: 1.75rem 1.9rem;
  border-bottom: 1px solid var(--border);
}

.spotlight-head h2 {
  margin: 0.85rem 0 0;
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.spotlight-head p {
  margin: 0.9rem 0 0;
}

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

.split-panel {
  padding: 1.35rem 1.9rem 1.55rem;
}

.split-panel:first-child {
  border-right: 1px solid var(--border);
}

.split-panel h3 {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.split-panel p {
  margin: 0.75rem 0 0;
  color: var(--foreground);
  font-weight: 500;
  line-height: 1.7;
}

.callout-card {
  margin-top: 1rem;
  padding: 1.35rem 1.45rem;
  border-radius: 1.5rem;
  background: rgba(55, 215, 255, 0.08);
}

.callout-card h3 {
  margin: 0;
  color: var(--primary-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.callout-card p {
  margin: 0.8rem 0 0;
}

.feature-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  padding: 1.45rem;
  border-radius: 1.6rem;
}

.feature-card h3 {
  margin: 0 0 0.7rem;
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.platform-card,
.cta-band,
.meta-card {
  border-radius: 2rem;
}

.platform-card {
  padding: 1.85rem;
}

.platform-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.platform-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--foreground);
  font-weight: 600;
}

.platform-note {
  max-width: 42rem;
  margin: 1.15rem 0 0;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.85rem;
}

.footer {
  border-top: 1px solid rgba(124, 157, 209, 0.12);
  padding: 1.5rem 0 2.5rem;
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1rem;
}

.footer-copy {
  max-width: 28rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--foreground);
}

.footnote {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  margin-top: 1.25rem;
  border-top: 1px solid rgba(124, 157, 209, 0.12);
  color: var(--muted);
  font-size: 0.83rem;
}

.legal-section {
  padding-top: 3rem;
}

.legal-shell {
  max-width: 58rem;
}

.meta-card {
  margin-top: 2rem;
  padding: 1.4rem 1.5rem;
}

.meta-grid {
  display: grid;
  gap: 0.8rem 1.4rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.meta-grid p {
  margin: 0;
  font-size: 0.95rem;
}

.meta-grid strong {
  color: var(--foreground);
}

.legal-prose {
  margin-top: 2.2rem;
}

.legal-prose h2 {
  margin: 2.25rem 0 0.85rem;
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.legal-prose h3 {
  margin: 1.65rem 0 0.7rem;
  font-size: 1.02rem;
}

.legal-prose p,
.legal-prose ul,
.legal-prose ol {
  margin: 0.9rem 0 0;
}

.legal-prose ul,
.legal-prose ol {
  padding-left: 1.2rem;
}

.legal-prose li + li {
  margin-top: 0.45rem;
}

.legal-prose strong {
  color: var(--foreground);
}

.legal-prose a {
  color: var(--primary-strong);
  text-decoration: underline;
  text-decoration-color: rgba(117, 240, 255, 0.4);
  text-underline-offset: 0.2em;
}

@media (max-width: 960px) {
  .hero-grid,
  .feature-grid,
  .split-card,
  .cta-band,
  .footer-grid,
  .footnote {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

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

  .cta-band {
    align-items: flex-start;
  }

  .spotlight-card,
  .platform-card,
  .cta-band,
  .meta-card {
    border-radius: 1.5rem;
  }

  .split-panel:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 720px) {
  .section {
    padding: 4rem 0;
  }

  .hero {
    padding-top: 2rem;
  }

  .promise-grid,
  .meta-grid {
    grid-template-columns: 1fr;
  }

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

  .site-nav {
    justify-content: flex-start;
  }

  .button,
  .hero-actions .button,
  .cta-actions .button {
    width: 100%;
  }

  .hero-actions,
  .cta-actions {
    width: 100%;
  }

  .platform-pill {
    width: 100%;
    justify-content: center;
  }
}
