:root {
  color-scheme: light;
  --background: #f8fafc;
  --surface: #ffffff;
  --surface-muted: #eef2ff;
  --text: #0f172a;
  --muted: #526178;
  --line: #dbe3ef;
  --primary: #4f46e5;
  --primary-dark: #3730a3;
  --accent: #ec4899;
  --shadow: 0 20px 50px rgb(15 23 42 / 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 15% 20%, rgb(236 72 153 / 0.3), transparent 32rem),
    radial-gradient(circle at 85% 70%, rgb(56 189 248 / 0.25), transparent 30rem),
    linear-gradient(135deg, #0f172a, #312e81 55%, #581c87);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  box-shadow: 0 8px 22px rgb(2 6 23 / 0.35);
}

.nav-links,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.nav-links a,
.footer-links a {
  text-decoration: none;
  opacity: 0.82;
}

.nav-links a:hover,
.footer-links a:hover {
  opacity: 1;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
  align-items: center;
  gap: 64px;
  padding-top: 90px;
  padding-bottom: 110px;
}

.hero-logo {
  width: min(100%, 360px);
  height: auto;
  border-radius: 28%;
  filter: drop-shadow(0 28px 45px rgb(2 6 23 / 0.45));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f9a8d4;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.hero-text {
  max-width: 680px;
  color: #dbeafe;
  font-size: 1.15rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgb(255 255 255 / 0.35);
  border-radius: 999px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

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

.button-primary {
  border-color: #ffffff;
  background: #ffffff;
  color: var(--primary-dark);
}

.button-secondary {
  background: rgb(255 255 255 / 0.08);
}

.launch-note {
  color: #cbd5e1;
  font-size: 0.92rem;
}

.section {
  padding-top: 90px;
  padding-bottom: 90px;
}

.section-alt {
  border-block: 1px solid var(--line);
  background: var(--surface-muted);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 38px;
}

.section-heading > p:last-child,
.two-column p,
.card p,
.footer p {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 22px;
}

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

.card,
.profile-card,
.highlight-box {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 10px 24px rgb(15 23 42 / 0.05);
}

.card {
  padding: 26px;
}

.card p {
  margin-bottom: 0;
}

.two-column {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
}

.highlight-box {
  padding: 30px;
}

.highlight-box ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
}

.profile-links {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.profile-card {
  display: grid;
  gap: 4px;
  padding: 22px;
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.profile-card:hover {
  transform: translateY(-3px);
  border-color: #a5b4fc;
  box-shadow: var(--shadow);
}

.profile-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer {
  background: #0f172a;
  color: #ffffff;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 42px;
  padding-bottom: 42px;
}

.brand-footer {
  margin-bottom: 6px;
}

.footer p {
  margin-bottom: 0;
  color: #cbd5e1;
}

@media (max-width: 820px) {
  .cards,
  .profile-links,
  .two-column {
    grid-template-columns: 1fr;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 64px;
    padding-bottom: 82px;
  }

  .hero-logo {
    grid-row: 1;
    width: min(55vw, 260px);
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }

  .nav-links {
    gap: 15px;
    font-size: 0.9rem;
  }

  .section {
    padding-top: 66px;
    padding-bottom: 66px;
  }

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

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
