:root {
  --ink: #111514;
  --navy: #192a38;
  --lime: #96d44a;
  --paper: #f8f8f3;
  --white: #ffffff;
  --muted: #5f6864;
  --line: #dfe5dc;
  --pink: #e04a9d;
  --radius: 8px;
  --shadow: 0 18px 48px rgba(17, 21, 20, 0.12);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.62;
}

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

a {
  color: inherit;
}

.shell {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.topbar {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 30;
  width: min(calc(100% - 32px), 1180px);
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(17, 21, 20, 0.82);
  color: var(--white);
  box-shadow: 0 18px 48px rgba(17, 21, 20, 0.22);
  backdrop-filter: blur(14px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
}

.brand img {
  width: 118px;
  height: auto;
}

.brand span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
}

.nav a {
  padding: 10px 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.nav a:hover,
.nav a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 19px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease;
}

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

.button.primary {
  background: var(--lime);
  color: var(--ink);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.66);
  color: var(--white);
}

.button.dark {
  background: var(--ink);
  color: var(--white);
}

.button.outline {
  border-color: var(--ink);
  color: var(--ink);
}

section {
  padding: 92px 0;
}

.eyebrow,
.panel-kicker {
  margin: 0 0 12px;
  color: var(--lime);
  font-family: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

h1,
h2 {
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.98;
  font-weight: 900;
}

h2 {
  max-width: 800px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.08;
  font-weight: 900;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.22rem;
  line-height: 1.25;
  font-weight: 900;
}

.lead {
  max-width: 740px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  padding: 160px 0 84px;
  background: var(--navy);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(17, 21, 20, 0.88), rgba(17, 21, 20, 0.56) 50%, rgba(17, 21, 20, 0.16)),
    var(--hero-image, none) center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 130px;
  background: linear-gradient(180deg, rgba(248, 248, 243, 0), var(--paper));
}

.hero .lead {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
}

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

.section-head {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 36px;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.photo {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

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

.card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 36px rgba(17, 21, 20, 0.06);
}

.card p,
.list-panel p {
  color: var(--muted);
}

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

.list li {
  position: relative;
  padding-left: 32px;
  color: var(--ink);
  font-weight: 750;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: var(--lime);
}

.dark-band {
  background: var(--ink);
  color: var(--white);
}

.dark-band h2,
.dark-band h3 {
  color: var(--white);
}

.dark-band .lead,
.dark-band p {
  color: rgba(255, 255, 255, 0.76);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
}

.step {
  min-height: 250px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.number {
  display: block;
  margin-bottom: 42px;
  color: var(--lime);
  font-family: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  font-size: 3rem;
  line-height: 0.9;
}

.cta-band {
  background: var(--navy);
  color: var(--white);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.cta-band h2,
.cta-band .lead {
  color: var(--white);
}

footer {
  padding: 48px 0;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.footer-brand img {
  width: 140px;
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 960px) {
  .nav {
    display: none;
  }

  .section-head,
  .split,
  .cta-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 24px, var(--max));
  }

  .topbar {
    top: 10px;
    min-height: 62px;
    width: calc(100% - 18px);
  }

  .brand img {
    width: 96px;
  }

  .topbar > .button {
    min-height: 42px;
    padding: 11px 13px;
    font-size: 0.88rem;
  }

  section {
    padding: 68px 0;
  }

  .hero {
    min-height: 680px;
    padding: 130px 0 74px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(17, 21, 20, 0.34), rgba(17, 21, 20, 0.9) 58%, rgba(17, 21, 20, 0.96)),
      var(--hero-image, none) 58% center / cover no-repeat;
  }

  h1 {
    font-size: clamp(2.55rem, 11vw, 4rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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