:root {
  --brand-blue: #0052cc;
  --brand-green: #2e7d32;
  --text: #16324f;
  --muted: #5a6b7f;
  --line: rgba(0, 82, 204, 0.14);
  --surface: rgba(255, 255, 255, 0.92);
  --background-top: #eef5ff;
  --background-bottom: #f5fbf6;
  --shadow: 0 24px 60px rgba(0, 59, 128, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(0, 82, 204, 0.16), transparent 30%),
    radial-gradient(circle at bottom right, rgba(46, 125, 50, 0.14), transparent 28%),
    linear-gradient(180deg, var(--background-top) 0%, var(--background-bottom) 100%);
}

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

.page-shell {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 40px;
}

.hero,
.card,
.offer-section,
.verification-note,
.footer {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.hero {
  padding: 44px 28px;
  border-radius: 28px;
}

.brand-pill,
.eyebrow {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-weight: 700;
}

.brand-pill {
  padding: 10px 16px;
  background: rgba(0, 82, 204, 0.1);
  color: var(--brand-blue);
}

.eyebrow {
  margin: 18px 0 0;
  padding: 8px 14px;
  background: rgba(46, 125, 50, 0.1);
  color: var(--brand-green);
  font-size: 0.88rem;
}

.hero h1,
.section-heading h2,
.card h2,
.feature-item h3 {
  margin: 0;
}

.hero h1 {
  max-width: 760px;
  margin-top: 18px;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.lead {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

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

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

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

.button-primary {
  background: var(--brand-blue);
  color: #fff;
}

.button-secondary {
  border-color: rgba(0, 82, 204, 0.22);
  background: #fff;
  color: var(--brand-blue);
}

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

.card,
.offer-section,
.verification-note,
.footer {
  border-radius: 24px;
}

.card {
  padding: 24px;
}

.card h2,
.section-heading h2 {
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  letter-spacing: -0.04em;
}

.card p,
.feature-item p,
.verification-note p,
.footer a,
.footer p {
  color: var(--muted);
  line-height: 1.7;
}

.offer-section {
  margin-top: 18px;
  padding: 28px;
}

.section-heading {
  max-width: 620px;
}

.feature-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.feature-item {
  display: flex;
  gap: 14px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 82, 204, 0.1);
}

.feature-dot {
  width: 12px;
  height: 12px;
  margin-top: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-green));
  flex-shrink: 0;
}

.feature-item h3 {
  font-size: 1.05rem;
}

.feature-item p {
  margin: 6px 0 0;
}

.verification-note {
  margin-top: 18px;
  padding: 22px 24px;
}

.verification-note p {
  margin: 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 18px 24px;
}

.footer p {
  margin: 0;
  color: var(--text);
  font-weight: 800;
}

.footer a {
  font-weight: 700;
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 20px, 1080px);
    padding-top: 10px;
  }

  .hero,
  .offer-section,
  .card,
  .verification-note,
  .footer {
    border-radius: 20px;
  }

  .hero {
    padding: 28px 18px;
  }

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

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