* {
  box-sizing: border-box;
}

:root {
  --navy: #10224d;
  --blue: #2563eb;
  --blue-soft: #dbeafe;
  --ink: #172033;
  --muted: #667085;
  --paper: #f8fafc;
  --line: #dbe1ea;
}

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

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(248, 250, 252, 0.92);
  backdrop-filter: blur(14px);
}

.wordmark {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.wordmark span:first-child {
  color: var(--navy);
}

.wordmark span:nth-child(2) {
  color: rgba(16, 34, 77, 0.65);
}

.wordmark span:last-child {
  color: var(--blue);
  font-style: italic;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 700;
  font-size: 14px;
}

.nav a {
  text-decoration: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--blue);
  color: white;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.24);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  background:
    radial-gradient(circle at 82% 12%, rgba(96, 165, 250, 0.55), transparent 34%),
    radial-gradient(circle at 12% 86%, rgba(37, 99, 235, 0.4), transparent 32%),
    linear-gradient(145deg, #10224d 0%, #111a38 70%);
  color: white;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 48px;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 112px) 24px 0;
}

.badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 800;
}

h1,
h2 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-top: 24px;
  font-size: clamp(44px, 8vw, 84px);
  line-height: 0.96;
  font-weight: 950;
}

h1 em,
h2 em {
  color: var(--blue-soft);
  font-style: italic;
}

.hero p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.55;
}

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

.portrait {
  align-self: end;
  width: min(520px, 100%);
  margin: 0 auto -32px;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.38));
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 24px;
}

.center {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.eyebrow {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h2 {
  margin-top: 12px;
  color: var(--navy);
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
  font-weight: 950;
}

.center p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

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

.card {
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 22px 50px rgba(16, 34, 77, 0.08);
}

.card strong {
  display: block;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.2;
}

.card p {
  color: var(--muted);
  line-height: 1.55;
}

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

.price-box {
  padding: 34px;
  border-radius: 8px;
  background: var(--navy);
  color: white;
}

.price {
  margin: 8px 0;
  font-size: clamp(44px, 6vw, 68px);
  font-weight: 950;
}

.price small {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
}

.checks {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.checks li {
  margin: 12px 0;
  color: rgba(255, 255, 255, 0.82);
}

.footer {
  padding: 32px 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

@media (max-width: 860px) {
  .nav a:not(.button) {
    display: none;
  }

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

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

  .portrait {
    max-width: 420px;
  }
}
