:root {
  --bf-blue-700: #154a6e;
  --bf-blue-600: #164f6d;
  --bf-teal-700: #1e7669;
  --bf-teal-600: #208168;
  --bf-green-600: #249665;
  --bf-white: #ffffff;
  --ink: #123447;
  --muted: rgba(18, 52, 71, 0.72);
  --line: rgba(21, 74, 110, 0.14);
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --shadow: 0 22px 60px rgba(15, 40, 55, 0.12);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --maxw: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(30, 118, 105, 0.14), transparent 26%),
    radial-gradient(circle at right top, rgba(20, 74, 110, 0.16), transparent 28%),
    linear-gradient(180deg, #f6fbfc 0%, #eef6f8 46%, #f8fbfc 100%);
}

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

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

.page-shell {
  position: relative;
  overflow: clip;
}

.bg-blob {
  position: absolute;
  inset: auto;
  border-radius: 999px;
  filter: blur(18px);
  pointer-events: none;
  opacity: 0.85;
}

.bg-blob-a {
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(36, 150, 101, 0.22), rgba(36, 150, 101, 0));
  top: -6rem;
  right: -7rem;
}

.bg-blob-b {
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(21, 74, 110, 0.2), rgba(21, 74, 110, 0));
  left: -9rem;
  top: 34rem;
}

.site-header,
.section,
.site-footer {
  width: min(calc(100% - 2rem), var(--maxw));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  position: relative;
  z-index: 2;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand-logo {
  width: 2.8rem;
  height: 2.8rem;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 0.12rem;
}

.brand-name {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.88rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(21, 74, 110, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(21, 74, 110, 0.06);
}

.site-nav a {
  font-size: 0.94rem;
  font-weight: 700;
  color: rgba(18, 52, 71, 0.8);
}

.section {
  position: relative;
  z-index: 1;
  padding: 2.2rem 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 1.5rem;
  align-items: center;
  min-height: calc(100vh - 6.5rem);
  padding-top: 1rem;
}

.eyebrow,
.panel-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bf-teal-700);
}

.hero-copy h1,
.section-heading h2,
.cta-card h2 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  letter-spacing: -0.03em;
  line-height: 0.96;
  margin: 0;
}

.hero-copy h1 {
  font-size: clamp(3rem, 6vw, 5.7rem);
  max-width: 11ch;
  margin-top: 0.75rem;
}

.lead,
.section-heading p,
.hero-panel p,
.card p,
.timeline-step p,
.cta-card p,
.site-footer p,
.trust-item span {
  color: var(--muted);
  line-height: 1.65;
}

.lead {
  font-size: 1.08rem;
  max-width: 56ch;
  margin: 1.25rem 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.25rem;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
  cursor: pointer;
  white-space: nowrap;
}

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

.btn-primary {
  color: var(--bf-white);
  background: linear-gradient(135deg, var(--bf-blue-700), var(--bf-teal-700));
  box-shadow: 0 18px 40px rgba(21, 74, 110, 0.22);
}

.btn-secondary {
  color: var(--bf-blue-700);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(21, 74, 110, 0.14);
}

.btn-ghost {
  color: var(--bf-blue-700);
  background: transparent;
  border-color: rgba(21, 74, 110, 0.16);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.point,
.card,
.panel-card,
.cta-card,
.trust-item {
  border: 1px solid rgba(21, 74, 110, 0.1);
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.point {
  border-radius: var(--radius-md);
  padding: 1rem;
}

.point strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.98rem;
}

.point span {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}

.hero-panel {
  display: grid;
  gap: 1rem;
}

.panel-card {
  border-radius: var(--radius-xl);
  padding: 1.5rem;
}

.panel-card-main {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(242, 249, 251, 0.86)),
    rgba(255, 255, 255, 0.8);
}

.panel-card h2 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  letter-spacing: -0.03em;
  margin: 0.4rem 0 1rem;
  line-height: 1.02;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.checklist li {
  position: relative;
  padding-left: 1.55rem;
  line-height: 1.5;
  color: rgba(18, 52, 71, 0.86);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.36rem;
  width: 0.92rem;
  height: 0.92rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--bf-green-600), var(--bf-teal-700));
  box-shadow: 0 0 0 4px rgba(36, 150, 101, 0.08);
}

.panel-card-note {
  background: linear-gradient(135deg, rgba(21, 74, 110, 0.95), rgba(30, 118, 105, 0.92));
  color: var(--bf-white);
}

.panel-card-note p {
  color: rgba(255, 255, 255, 0.86);
  margin: 0.45rem 0 0;
}

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

.trust-item {
  border-radius: var(--radius-lg);
  padding: 1.15rem;
}

.trust-item span {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.88rem;
}

.trust-item strong {
  font-size: 1.02rem;
  line-height: 1.5;
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 1.35rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-top: 0.5rem;
}

.section-heading p {
  margin: 0.9rem 0 0;
  font-size: 1.03rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

.card {
  border-radius: var(--radius-xl);
  padding: 1.35rem;
}

.card-icon {
  width: 2.85rem;
  height: 2.85rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(21, 74, 110, 0.12), rgba(36, 150, 101, 0.12));
  color: var(--bf-blue-700);
  font-weight: 900;
}

.benefit-card h3,
.timeline-step h3,
.product-card h3 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  letter-spacing: -0.02em;
  margin: 0.85rem 0 0.55rem;
  line-height: 1.1;
}

.benefit-card p,
.product-card p {
  margin: 0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.timeline-step {
  border-radius: var(--radius-xl);
  padding: 1.35rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(244, 250, 251, 0.9));
  border: 1px solid rgba(21, 74, 110, 0.1);
  box-shadow: var(--shadow);
}

.step-index {
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--bf-blue-700), var(--bf-teal-700));
  color: var(--bf-white);
  font-weight: 900;
}

.timeline-step h3 {
  margin-top: 0.95rem;
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.product-card {
  min-height: 100%;
}

.product-card-accent {
  background: linear-gradient(180deg, rgba(21, 74, 110, 0.96), rgba(30, 118, 105, 0.92));
  color: var(--bf-white);
}

.product-card-accent .panel-kicker,
.product-card-accent p,
.product-card-accent li {
  color: rgba(255, 255, 255, 0.88);
}

.mini-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.55rem;
}

.mini-list li {
  position: relative;
  padding-left: 1.2rem;
}

.mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56rem;
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 999px;
  background: currentColor;
}

.cta-section {
  padding-bottom: 4rem;
}

.cta-card {
  border-radius: 34px;
  padding: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  background:
    linear-gradient(135deg, rgba(21, 74, 110, 0.94), rgba(30, 118, 105, 0.9)),
    rgba(255, 255, 255, 0.9);
  color: var(--bf-white);
}

.cta-card h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-top: 0.55rem;
}

.cta-card p {
  margin: 0.9rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  max-width: 55ch;
}

.cta-card .btn {
  flex: none;
  background: var(--bf-white);
  color: var(--bf-blue-700);
}

.site-footer {
  padding: 0 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 800;
  color: var(--bf-blue-700);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero,
  .trust,
  .benefits-grid,
  .timeline,
  .split-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: auto;
    padding-top: 2rem;
  }
}

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

  .site-nav {
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
    padding-inline: 0.85rem;
  }

  .header-cta {
    width: 100%;
  }

  .hero,
  .trust,
  .benefits-grid,
  .timeline,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 12ch;
  }

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

  .cta-card {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-card .btn {
    width: 100%;
  }

  .section {
    padding: 1.55rem 0;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
