:root {
  color-scheme: light;
  --navy: #0d2b4c;
  --deep-blue: #0a3a68;
  --blue: #0a7bd9;
  --orange: #f28c28;
  --gold: #fdb454;
  --slate: #475569;
  --light: #f5f7fb;
  --border: rgba(13, 43, 76, 0.12);
  --shadow: 0 18px 60px rgba(15, 40, 70, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: #ffffff;
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
  word-break: break-word;
}

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

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 18px 0;
  gap: 24px;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-weight: 500;
  color: var(--slate);
  margin-left: auto;
}

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

.logo img {
  width: 220px;
  height: auto;
}

.button {
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.button.primary {
  background: linear-gradient(120deg, var(--blue), #1256b3);
  color: #fff;
  box-shadow: 0 12px 24px rgba(10, 123, 217, 0.2);
}

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

.button.ghost {
  border-color: var(--border);
  color: var(--navy);
  background: #fff;
}

.hero {
  padding: 80px 0 64px;
  background: radial-gradient(circle at top left, rgba(10, 123, 217, 0.14), transparent 50%),
    radial-gradient(circle at top right, rgba(242, 140, 40, 0.12), transparent 48%);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-logo img {
  height: auto;
  width: 260px;
}

.hero-logo {
  max-width: 420px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero p {
  color: var(--slate);
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.hero .supporting {
  font-weight: 600;
  color: var(--deep-blue);
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.hero-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.hero-card li {
  display: flex;
  gap: 10px;
  color: var(--slate);
  font-weight: 500;
}

.hero-card li span {
  color: var(--orange);
  font-weight: 700;
}

section {
  padding: 80px 0;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--slate);
  max-width: 720px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.card {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(13, 43, 76, 0.08);
}

.card h4 {
  margin-bottom: 12px;
}

.card ul {
  list-style: none;
  color: var(--slate);
  display: grid;
  gap: 10px;
}

.steps {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 18px;
  background: var(--light);
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(10, 123, 217, 0.12);
  color: var(--deep-blue);
  font-weight: 600;
  margin-bottom: 16px;
}

.highlight {
  background: linear-gradient(120deg, rgba(10, 123, 217, 0.08), rgba(242, 140, 40, 0.08));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  display: grid;
  gap: 20px;
}

.highlight ul {
  list-style: none;
  display: grid;
  gap: 12px;
  color: var(--slate);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 32px;
}

.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  color: var(--slate);
  text-align: center;
}

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

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 16px;
  justify-content: center;
}

.waitlist {
  background: var(--navy);
  color: #fff;
  border-radius: 28px;
  padding: 36px;
  display: grid;
  gap: 20px;
}

.waitlist p {
  color: rgba(255, 255, 255, 0.78);
}

.waitlist .button.primary {
  box-shadow: none;
}

.form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.form input {
  flex: 1 1 220px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(13, 43, 76, 0.12);
  box-sizing: border-box;
  max-width: 100%;
  background: #fff;
  color: var(--navy);
  height: 52px;
  line-height: 52px;
  -webkit-text-size-adjust: 100%;
}

.form input:focus {
  outline: 2px solid rgba(10, 123, 217, 0.4);
}

.contact-card {
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  background: #fff;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.contact-details {
  display: grid;
  gap: 6px;
  color: var(--slate);
  font-weight: 500;
}

.contact-details a {
  color: var(--deep-blue);
  font-weight: 600;
}

@media (max-width: 720px) {
  body {
    background: linear-gradient(180deg, rgba(10, 123, 217, 0.08) 0%, #ffffff 35%);
  }

  .container {
    width: min(1120px, 94vw);
  }

  .nav-inner {
    padding: 12px 0;
    gap: 12px;
    flex-direction: column;
    align-items: center;
  }

  .nav-links {
    display: none;
  }

  .logo img {
    width: 170px;
  }

  .button {
    padding: 10px 18px;
    font-size: 0.9rem;
  }

  .nav-inner .button.primary {
    width: 100%;
    max-width: 280px;
  }

  .hero {
    padding: 48px 0 32px;
    position: relative;
  }

  .hero-grid {
    gap: 28px;
  }

  .badge {
    font-size: 0.85rem;
    letter-spacing: 0.01em;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 5vw, 2.3rem);
    letter-spacing: -0.01em;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-card {
    order: -1;
    padding: 20px;
    background: linear-gradient(160deg, #ffffff 0%, #eef6ff 100%);
    border-color: rgba(10, 123, 217, 0.2);
    box-shadow: 0 18px 40px rgba(15, 40, 70, 0.16);
  }

  .cta-group {
    flex-direction: column;
  }

  .cta-group .button {
    width: 100%;
    justify-content: center;
  }

  section {
    padding: 48px 0;
  }

  .section-title {
    font-size: clamp(1.5rem, 4vw, 1.8rem);
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .grid-3 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .card {
    padding: 18px;
    border-radius: 18px;
    box-shadow: 0 12px 24px rgba(13, 43, 76, 0.1);
  }

  .step {
    padding: 16px 18px;
    gap: 12px;
  }

  .step-number {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .highlight {
    padding: 24px 18px;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .waitlist {
    padding: 24px 18px;
    gap: 16px;
  }

  .waitlist .section-title {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
  }

  .form {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    max-width: 100%;
  }

  .form input {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    padding: 0 14px;
    font-size: 16px;
    height: 48px;
    line-height: 48px;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 12px;
  }

  .form button {
    width: 100%;
    max-width: 100%;
    padding: 14px 24px;
    box-sizing: border-box;
  }

  .footer {
    padding: 32px 0;
  }

  .footer-links {
    justify-content: center;
  }
}
