* {
  box-sizing: border-box;
}

:root {
  --ink: #15232d;
  --muted: #536a76;
  --green: #19a86b;
  --green-dark: #0d7049;
  --blue: #1677c7;
  --yellow: #f7c843;
  --paper: #ffffff;
  --soft: #f1faf7;
  --line: rgba(21, 35, 45, 0.14);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.site-header > * {
  min-width: 0;
}

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

.brand-mark {
  width: 40px;
  height: 40px;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 4vw, 34px);
}

.site-header nav a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.site-header nav a:hover {
  color: var(--blue);
}

.hero {
  min-height: 82vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(26px, 5vw, 72px);
  padding: clamp(36px, 6vw, 82px) clamp(18px, 6vw, 82px);
  overflow: hidden;
  background:
    linear-gradient(135deg, #f7fff6 0%, #edf8ff 50%, #fff8d7 100%);
}

.hero-copy {
  min-width: 0;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(54px, 9vw, 104px);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(21px, 3vw, 30px);
  font-weight: 800;
  line-height: 1.18;
  overflow-wrap: break-word;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 50px;
  padding: 13px 20px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 3px 0 var(--ink);
}

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

.button-secondary {
  color: var(--ink);
  background: var(--yellow);
}

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

.support-line {
  max-width: 430px;
  margin: 22px 0 0;
  color: var(--green-dark);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.25;
}

.hero-visual {
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 420px;
}

.can-hero {
  width: min(100%, 440px);
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 0 rgba(21, 35, 45, 0.12));
}

.info-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.info-item {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 26px clamp(18px, 4vw, 48px);
  background: #fff;
}

.info-item strong {
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.05;
}

.info-item span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.section {
  padding: clamp(60px, 9vw, 104px) clamp(18px, 6vw, 82px);
  background: #fff;
}

.section-heading {
  max-width: 980px;
  margin: 0 auto 34px;
  text-align: center;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto;
}

.step {
  min-height: 230px;
  padding: 26px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.step span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.step h3 {
  margin: 20px 0 10px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.05;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
  gap: 28px;
  align-items: center;
  padding: clamp(54px, 8vw, 92px) clamp(18px, 6vw, 82px);
  background: var(--ink);
  color: #fff;
}

.contact-section .eyebrow {
  color: var(--yellow);
}

.contact-copy {
  max-width: 720px;
}

.contact-copy h2 {
  color: #fff;
}

.contact-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 18px 0 0;
  color: #dff7ec;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.35;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-actions a {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 16px 18px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
  min-width: 0;
  overflow-wrap: anywhere;
}

.contact-actions a:hover {
  border-color: var(--yellow);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 6vw, 82px);
  color: var(--muted);
  background: #fff;
  font-size: 13px;
  font-weight: 800;
}

.site-footer span {
  min-width: 0;
  overflow-wrap: anywhere;
}

@media (max-width: 860px) {
  .site-header {
    position: static;
  }

  .hero,
  .contact-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 260px;
  }

  .can-hero {
    width: min(86vw, 340px);
  }

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

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

  .site-header nav {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    justify-content: flex-start;
  }

  .hero,
  .section,
  .contact-section {
    max-width: 100vw;
  }

  .hero {
    padding-right: 30px;
    padding-left: 30px;
  }

  .hero-copy,
  .actions {
    width: 100%;
    max-width: 330px;
  }

  h1 {
    font-size: 45px;
  }

  .button {
    width: 100%;
  }

  .contact-actions a {
    font-size: 16px;
  }

  .site-footer {
    display: grid;
  }
}
