:root {
  --brand: #6e8f55;
  --brand-dark: #3f5f35;
  --navy: #0b1020;
  --blue: #2196f3;
  --teal: #00c2a8;
  --soft: #f5f7f6;
  --text: #20252b;
  --muted: #667085;
  --white: #ffffff;
  --container: 1120px;
  --radius: 8px;
  --shadow: 0 18px 48px rgba(11, 16, 32, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

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

.container {
  width: min(var(--container), 92vw);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(63, 95, 53, 0.12);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}

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

.site-nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-weight: 700;
}

.hero {
  padding: 86px 0;
  background: linear-gradient(135deg, #f7fbff 0%, #ffffff 48%, #eefaf8 100%);
}

.hero-grid,
.split-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 42px;
  align-items: center;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  border-radius: 999px;
  padding: 6px 14px;
  background: rgba(11, 16, 32, 0.08);
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kicker,
.section-label {
  margin: 18px 0 12px;
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-lockup {
  margin-bottom: 22px;
}

.product-lockup span,
.footer-brand span {
  display: block;
  color: var(--navy);
  font-family: "Poppins", "Inter", sans-serif;
  font-size: clamp(2.2rem, 6vw, 5.1rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
}

.product-lockup strong,
.footer-brand strong {
  display: block;
  margin-top: 6px;
  color: var(--navy);
  font-family: "Poppins", "Inter", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.7rem);
  line-height: 1;
}

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

h1,
h2,
h3 {
  font-family: "Poppins", "Inter", sans-serif;
  line-height: 1.18;
}

h1 {
  max-width: 17ch;
  font-size: clamp(2rem, 4.2vw, 3.6rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.lead,
.split-grid p,
.card p,
.cta-box p {
  color: var(--muted);
}

.lead {
  max-width: 62ch;
  font-size: 1.1rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 12px 20px;
  font-weight: 800;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
}

.btn-secondary {
  border: 1px solid rgba(63, 95, 53, 0.24);
  color: var(--brand-dark);
  background: var(--white);
}

.hero-panel,
.card,
.cta-box {
  border: 1px solid rgba(63, 95, 53, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  padding: 28px;
}

.hero-panel {
  color: var(--white);
  background: linear-gradient(145deg, var(--navy), #153d5c);
  box-shadow: var(--shadow);
}

.hero-panel img {
  width: 84px;
  height: 84px;
  margin-bottom: 22px;
}

.hero-panel p,
.hero-panel li {
  color: rgba(255, 255, 255, 0.82);
}

.hero-panel ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

.section {
  padding: 78px 0;
}

.section-soft {
  background: var(--soft);
}

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

.card {
  min-height: 188px;
}

.card h3 {
  color: var(--navy);
}

.cta-section {
  padding-top: 36px;
}

.cta-box {
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-box .actions {
  justify-content: center;
}

.site-footer {
  padding: 30px 0;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.88);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand span,
.footer-brand strong {
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0.16em;
}

.footer-brand strong {
  margin-top: 4px;
  font-size: 0.85rem;
  letter-spacing: 0;
}

.site-footer a {
  font-weight: 800;
}

@media (max-width: 860px) {
  .hero-grid,
  .split-grid,
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .nav-wrapper,
  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .site-nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 58px 0;
  }

  .btn {
    width: 100%;
  }
}
