:root {
  --bg: #f4f7f6;
  --panel: #ffffff;
  --border: rgba(11, 61, 46, 0.2);
  --accent: #1fae8a;
  --accent-strong: #0b3d2e;
  --highlight: #a3e635;
  --text: #1f2933;
  --muted: rgba(31, 41, 51, 0.75);
  --shadow: 0 20px 60px rgba(11, 61, 46, 0.12);
  --radius: 16px;
  --radius-sm: 12px;
  --max-width: 1200px;
  --grid-gap: 2.25rem;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(31, 174, 138, 0.12), transparent 35%),
    radial-gradient(circle at 80% 0%, rgba(11, 61, 46, 0.08), transparent 40%),
    var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  padding-top: 0;
}

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-sm);
}

main {
  display: flex;
  flex-direction: column;
  gap: 5.5rem;
  padding: 0 1.5rem 4rem;
}

main.main-compact {
  gap: 3.5rem;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--accent);
  color: #05261c;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  z-index: 2000;
}

.skip-link:focus {
  left: 1rem;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg, rgba(31, 174, 138, 0.18), rgba(163, 230, 53, 0.14)),
    rgba(244, 247, 246, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(11, 61, 46, 0.08);
  box-shadow: 0 8px 40px rgba(11, 61, 46, 0.12);
  overflow: hidden;
}

.topbar::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #1fae8a, #a3e635);
}

.topbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
}

.brand-mark {
  width: 160px;
  height: 160px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--border);
  color: var(--accent-strong);
  font-weight: 800;
  padding: 0.2rem;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
  display: block;
}

.brand-name {
  font-size: 2.2rem;
  line-height: 1.1;
}

.topbar .brand-mark {
  width: 180px;
  height: 180px;
  border-radius: 14px;
  padding: 0.15rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(11, 61, 46, 0.12);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  font-weight: 600;
}

.nav-links a.active {
  background: rgba(31, 174, 138, 0.16);
  color: var(--accent-strong);
  border-color: rgba(31, 174, 138, 0.4);
}

.nav-links a:focus-visible,
.nav-links a:hover {
  color: var(--accent-strong);
  background: rgba(31, 174, 138, 0.12);
  border-color: rgba(31, 174, 138, 0.35);
}

.banner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.75rem 1.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
  border-top: 1px solid rgba(11, 61, 46, 0.08);
}

.impact-strip {
  width: 100%;
  background: linear-gradient(90deg, rgba(11, 61, 46, 0.92), rgba(31, 174, 138, 0.9));
  color: #f7fff9;
  border: 1px solid rgba(11, 61, 46, 0.2);
  border-radius: 18px;
  box-shadow: var(--shadow);
  margin-top: 2rem;
}

.impact-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  text-align: center;
}

.impact-label {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: #d9ffeb;
}

.impact-proof {
  color: #ffffff;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  text-decoration-color: #ffffff;
  text-shadow: 0 1px 2px rgba(6, 35, 26, 0.45);
}

.impact-proof:hover,
.impact-proof:focus-visible {
  color: #e6fff5;
  text-decoration-color: #e6fff5;
}

.impact-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin: 0;
  padding: 0;
  font-weight: 600;
}

.impact-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.impact-list li::before {
  content: "•";
  color: var(--highlight);
  font-size: 1.2rem;
}

.badge {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(31, 174, 138, 0.16);
  color: var(--accent-strong);
  border: 1px solid var(--border);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.8rem;
}

.hero {
  max-width: 1440px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--grid-gap);
  align-items: start;
}

@media (min-width: 1000px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
  }
}

.hero-copy h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
  display: inline-block;
  padding: 0.65rem 1.2rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #0b3d2e 0%, #1fae8a 55%, #2fbf9b 100%);
  color: #f3fff9;
  box-shadow: 0 18px 45px rgba(11, 61, 46, 0.35);
  border: 1px solid rgba(11, 61, 46, 0.2);
  text-shadow: 0 6px 18px rgba(5, 38, 28, 0.35);
}

.hero-subline {
  font-weight: 500;
}

.lede {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.85rem 1.2rem;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--highlight));
  color: #05261c;
  box-shadow: var(--shadow);
}

.btn.secondary {
  background: rgba(31, 174, 138, 0.12);
  border-color: var(--border);
}

.btn.ghost {
  background: rgba(11, 61, 46, 0.04);
  border-color: rgba(11, 61, 46, 0.08);
}

.btn.text {
  padding-left: 0;
  padding-right: 0;
  border: none;
  background: transparent;
  color: var(--accent);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.hero-cards .impact-strip {
  grid-column: 1 / -1;
  margin-top: 0.5rem;
}

.hero-cards .impact-strip-inner {
  max-width: none;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 900px) {
  .hero-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.info-card {
  background: var(--panel);
  border: 1px solid rgba(11, 61, 46, 0.08);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.info-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

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

.launch-card {
  background: linear-gradient(150deg, rgba(31, 174, 138, 0.12), rgba(11, 61, 46, 0.02));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.launch-badge {
  display: inline-flex;
  padding: 0.35rem 0.65rem;
  border-radius: 10px;
  background: rgba(31, 174, 138, 0.15);
  color: var(--accent-strong);
  font-weight: 700;
  border: 1px solid var(--border);
}

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 1.5rem;
  display: grid;
  gap: 0.5rem;
  color: var(--muted);
}

.bullet-list li::before {
  content: "•";
  color: var(--accent);
  margin-right: 0.5rem;
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section.full-width {
  max-width: none;
}

.section-header {
  margin-bottom: 2.25rem;
}

.section-header h2 {
  margin: 0.2rem 0 0.25rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--accent);
  margin: 0;
}

.section-intro {
  color: var(--muted);
  margin: 0.2rem 0 0;
}

.section-cta {
  margin-top: 2rem;
}

.tile-grid {
  display: grid;
  gap: var(--grid-gap);
}

.tile-grid.three {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.tile-grid.unique-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.tile-grid.advantage-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tile-grid.two {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.tile {
  background: var(--panel);
  border: 1px solid rgba(11, 61, 46, 0.08);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tile.full {
  grid-column: 1 / -1;
}

.tile h3 {
  margin-top: 0;
}

.tile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.icon-slot {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  border: 1px solid rgba(31, 174, 138, 0.45);
  background: radial-gradient(circle at 30% 30%, rgba(31, 174, 138, 0.18), rgba(11, 61, 46, 0.04));
  display: grid;
  place-items: center;
  color: var(--accent-strong);
  box-shadow: inset 0 1px 0 rgba(11, 61, 46, 0.08);
}

.icon-slot svg {
  width: 70%;
  height: 70%;
}

.image-slot {
  margin: 1rem 0 0.5rem;
  display: grid;
  gap: 0.5rem;
  grid-template-rows: 1fr;
  aspect-ratio: 16 / 9;
}

.image-slot.hero-compact {
  margin-top: 0.25rem;
  max-width: 380px;
  aspect-ratio: 16 / 9;
  justify-self: stretch;
}

.hero-card-image {
  margin: 0;
  aspect-ratio: auto;
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-card-image .slot-image {
  border-radius: inherit;
}

.image-slot.compact {
  margin-top: 1.5rem;
}

.image-slot.wide {
  aspect-ratio: 21 / 9;
}

.slot-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(11, 61, 46, 0.16);
  box-shadow: var(--shadow);
}

.slot-image.case-study-top {
  object-position: top;
}

.image-backed {
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.5), rgba(31, 174, 138, 0.12));
}

.bullet-list.inline {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

blockquote {
  margin: 1rem 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--accent);
  background: rgba(31, 174, 138, 0.08);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-style: italic;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.kpi-card {
  background: rgba(31, 174, 138, 0.08);
  border-radius: var(--radius-sm);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact .contact-form {
  display: grid;
  gap: 0.75rem;
}

.form-group {
  display: grid;
  gap: 0.25rem;
}

label {
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(11, 61, 46, 0.12);
  background: rgba(11, 61, 46, 0.04);
  color: var(--text);
  font-size: 1rem;
}

input:focus-visible,
textarea:focus-visible,
button:focus-visible,
a:focus-visible,
details summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

textarea {
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

.accordion details {
  background: rgba(11, 61, 46, 0.03);
  border: 1px solid rgba(11, 61, 46, 0.08);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
}

.accordion details + details {
  margin-top: 0.5rem;
}

.accordion summary {
  cursor: pointer;
  font-weight: 700;
}

.footer {
  margin-top: 2rem;
  border-top: 1px solid rgba(11, 61, 46, 0.12);
  background: rgba(11, 61, 46, 0.06);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  align-items: center;
}

.footer .brand {
  gap: 1rem;
}

.footer .brand-mark {
  width: 140px;
  height: 140px;
}

.footer-text {
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer a {
  color: var(--accent);
  text-decoration: none;
}

.footer a:hover,
.footer a:focus-visible {
  text-decoration: underline;
}

@media (max-width: 720px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 1rem;
    gap: 0.4rem;
  }

  .topbar .brand-mark {
    width: 130px;
    height: 130px;
  }

  .nav-links {
    flex-wrap: wrap;
    width: 100%;
  }

  .nav-links li {
    flex: 1 1 auto;
  }

  .nav-links a {
    display: block;
    white-space: normal;
  }

  .banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .tile-grid.benefits-grid {
    grid-template-columns: 1fr;
  }

  .tile-grid.unique-grid {
    grid-template-columns: 1fr;
  }

  .tile-grid.advantage-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto;
    transition: none !important;
    animation-duration: 0.01ms !important;
  }
}
