:root {
  color-scheme: light;
  --bg: #f7f7f2;
  --ink: #151515;
  --muted: #5c625f;
  --line: #dcded6;
  --panel: #ffffff;
  --green: #b9f235;
  --red: #e8112d;
  --blue: #315aa8;
  --shadow: 0 22px 70px rgba(21, 21, 21, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(135deg, rgba(185, 242, 53, 0.18), transparent 30%),
    linear-gradient(315deg, rgba(232, 17, 45, 0.12), transparent 28%),
    var(--bg);
  color: var(--ink);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(21, 21, 21, 0.08);
  background: rgba(247, 247, 242, 0.88);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 850;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
}

.nav-links {
  gap: clamp(12px, 3vw, 28px);
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(310px, 0.86fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: calc(100svh - 74px);
  padding: clamp(34px, 7vw, 92px) clamp(18px, 4vw, 56px) clamp(30px, 5vw, 64px);
}

.hero-copy,
.section-heading,
.security > div:first-child,
.final-cta > div {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #2e5a12;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(46px, 7vw, 76px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

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

.lead {
  max-width: 660px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 21px);
  line-height: 1.45;
}

.cta-zone {
  display: grid;
  gap: 14px;
  max-width: 650px;
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.logo-strip img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border: 3px solid #fff;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(21, 21, 21, 0.16);
}

.primary-cta,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  border: 0;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  box-shadow: 0 18px 38px rgba(232, 17, 45, 0.34);
  font-size: clamp(20px, 2.3vw, 28px);
  font-weight: 950;
  line-height: 1.1;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-cta {
  width: min(100%, 520px);
  padding: 20px 28px;
}

.primary-cta:hover,
.secondary-cta:hover {
  transform: translateY(-2px);
  background: #c90020;
  box-shadow: 0 24px 44px rgba(232, 17, 45, 0.42);
}

.cta-note {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.hero-panel {
  position: relative;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(21, 21, 21, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.status-pill {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 9px 12px;
  border-radius: 8px;
  background: var(--green);
  color: #111;
  font-size: 13px;
  font-weight: 900;
}

.benefit-list {
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.benefit-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.benefit-list strong,
.benefit-list span {
  display: block;
}

.benefit-list strong {
  margin-bottom: 7px;
  font-size: 20px;
}

.benefit-list span {
  color: var(--muted);
  line-height: 1.5;
}

.info-band,
.security,
.final-cta {
  padding: clamp(46px, 8vw, 90px) clamp(18px, 4vw, 56px);
}

.info-band {
  background: #fff;
}

.section-heading {
  margin-bottom: 28px;
}

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

.steps article,
.security-grid p {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.steps article {
  padding: 24px;
}

.steps span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--red);
  font-size: 15px;
  font-weight: 950;
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.security {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  background: var(--ink);
  color: #fff;
}

.security .eyebrow {
  color: var(--green);
}

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

.security-grid p {
  padding: 20px;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--green);
}

.final-cta .eyebrow {
  color: #243000;
}

.secondary-cta {
  min-width: min(100%, 310px);
  padding: 18px 24px;
}

.site-footer {
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 4vw, 56px);
  border-top: 1px solid rgba(21, 21, 21, 0.08);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 880px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

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

  .hero {
    min-height: auto;
  }

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

  .final-cta,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  h1 {
    font-size: 48px;
  }

  .primary-cta,
  .secondary-cta {
    width: 100%;
    min-height: 64px;
  }

  .logo-strip img {
    width: 52px;
    height: 52px;
  }

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