:root {
  color-scheme: light;
  --ink: #10282d;
  --muted: #587073;
  --line: rgba(16, 40, 45, 0.14);
  --paper: #f6f7f2;
  --card: #ffffff;
  --green: #0d6b4d;
  --mint: #3ac18b;
  --teal: #0d5664;
  --amber: #ef9d33;
  --shadow: 0 24px 70px rgba(13, 51, 47, 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;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(58, 193, 139, 0.20), transparent 36rem),
    linear-gradient(180deg, #fbfcf7 0%, var(--paper) 42%, #eef3ec 100%);
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem clamp(1.25rem, 4vw, 4rem);
  background: rgba(246, 247, 242, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--green), var(--teal));
  border-radius: 0.7rem;
  box-shadow: 0 12px 24px rgba(13, 107, 77, 0.22);
}

nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.95rem;
  color: var(--muted);
}

nav a {
  text-decoration: none;
}

nav a:hover {
  color: var(--green);
}

.nav-pill {
  padding: 0.58rem 0.9rem;
  color: var(--green);
  border: 1px solid rgba(13, 107, 77, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
}

.hero,
.section {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(330px, 0.98fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(4rem, 8vw, 7.5rem) 0 3rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 11ch;
  margin-bottom: 1.3rem;
  font-size: clamp(3.5rem, 9vw, 7.6rem);
  line-height: 0.87;
  letter-spacing: -0.08em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 0.6rem;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-lede {
  max-width: 43rem;
  font-size: clamp(1.08rem, 1.9vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0 1.25rem;
  font-weight: 800;
  text-decoration: none;
  border-radius: 999px;
}

.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--green), var(--teal));
  box-shadow: 0 18px 36px rgba(13, 107, 77, 0.24);
}

.button.secondary {
  color: var(--green);
  background: white;
  border: 1px solid var(--line);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.trust-row span {
  padding: 0.5rem 0.75rem;
  color: #315255;
  font-size: 0.88rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.hero-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 2rem;
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.hero-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
}

.hero-card-footer span {
  color: var(--muted);
  font-size: 0.92rem;
  text-align: right;
}

.section {
  padding: 5rem 0;
}

.intro-grid,
.report-grid,
.screens {
  display: grid;
  gap: 1rem;
}

.intro-grid {
  grid-template-columns: repeat(3, 1fr);
  padding-top: 2rem;
}

.intro-card,
.report-grid article,
.truth-list div,
.feature-band,
.cta {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  box-shadow: 0 16px 48px rgba(13, 51, 47, 0.08);
}

.intro-card {
  padding: 1.35rem;
}

.icon {
  display: grid;
  width: 2.3rem;
  height: 2.3rem;
  margin-bottom: 1.2rem;
  place-items: center;
  color: white;
  background: var(--green);
  border-radius: 50%;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2rem;
}

.report-grid {
  grid-template-columns: repeat(3, 1fr);
}

.report-grid article {
  padding: 1.4rem;
}

.screen-section {
  width: min(1320px, calc(100% - 2rem));
}

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

figure {
  overflow: hidden;
  margin: 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
}

figure img {
  width: 100%;
  aspect-ratio: 2784 / 1864;
  object-fit: cover;
  object-position: top left;
}

figcaption {
  padding: 1rem 1.1rem 1.1rem;
  color: #315255;
  font-size: 0.94rem;
  line-height: 1.5;
}

.truth {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.truth-list {
  display: grid;
  gap: 0.85rem;
}

.truth-list div {
  padding: 1.1rem;
}

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

.truth-list span {
  margin-top: 0.25rem;
  color: var(--muted);
  line-height: 1.5;
}

.feature-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  background: linear-gradient(135deg, #0d312d, #0a5462);
}

.feature-band h2,
.feature-band p,
.feature-band li {
  color: white;
}

.feature-band p {
  opacity: 0.78;
}

.feature-band ul {
  margin: 0;
  padding-left: 1.1rem;
  line-height: 1.9;
}

.cta {
  padding: clamp(2rem, 5vw, 4rem);
  text-align: center;
}

.cta p {
  max-width: 720px;
  margin-inline: auto;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 3rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  .site-header,
  .site-footer,
  .hero-card-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    flex-wrap: wrap;
  }

  .hero,
  .truth,
  .feature-band {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .report-grid,
  .screens {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 9ch;
  }
}

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

  h1 {
    font-size: 4rem;
  }

  .section {
    padding: 3.5rem 0;
  }
}
