:root {
  --green: #149d4b;
  --green-deep: #0d6b34;
  --orange: #e45c00;
  --red: #c41e3a;
  --black: #0a0a0a;
  --ink: #121815;
  --muted: #5a655e;
  --paper: #ffffff;
  --tint: #f6f8f6;
  --line: #e2e7e3;
  --line-on-green: rgba(255, 255, 255, 0.3);
  --shadow: 0 10px 30px rgba(18, 24, 21, 0.07);
  --font-display: "Newsreader", Georgia, "Times New Roman", serif;
  --font-body: "IBM Plex Sans", ui-sans-serif, system-ui, sans-serif;
  --max: 72rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.015em;
}

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.brand-bar {
  display: flex;
  height: 4px;
}

.brand-bar span:nth-child(1) {
  flex: 1.4;
  background: var(--green);
}

.brand-bar span:nth-child(2) {
  flex: 1;
  background: var(--orange);
}

.brand-bar span:nth-child(3) {
  width: 3rem;
  flex-shrink: 0;
  background: var(--red);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-tile {
  display: flex;
  width: 2.3rem;
  height: 2.3rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: var(--black);
}

.brand-tile img {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
}

.brand-text span {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 1.05rem;
  height: 1.5px;
  margin: 0 auto;
  background: var(--ink);
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -5px;
}

.nav-toggle span::after {
  top: 5px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.site-nav a:not(.btn) {
  position: relative;
  padding: 0.3rem 0;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--muted);
}

.site-nav a:not(.btn):hover {
  color: var(--ink);
}

.site-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.18s ease;
}

.site-nav a:not(.btn):hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  min-height: 2.9rem;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border: 1.5px solid transparent;
  border-radius: 9px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.15s, color 0.15s, border-color 0.15s, transform 0.15s;
}

.btn:active {
  transform: translateY(1px);
}

.btn-solid {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.btn-solid:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
}

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

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-white {
  background: #fff;
  border-color: #fff;
  color: var(--green-deep);
}

.btn-white:hover {
  background: var(--black);
  border-color: var(--black);
  color: #fff;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.25rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
}

.eyebrow::before {
  content: "";
  width: 1.6rem;
  height: 2px;
  background: var(--orange);
}

.hero {
  padding: 4rem 0 4.5rem;
}

@media (min-width: 960px) {
  .hero {
    padding: 5.5rem 0 6rem;
  }
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 5rem;
  }
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.15rem, 5vw, 3.4rem);
  line-height: 1.08;
}

.hero h1 em {
  font-style: normal;
  color: var(--green);
}

.hero-lede {
  margin: 1.5rem 0 0;
  max-width: 34rem;
  font-size: 1.1rem;
  color: var(--muted);
}

.hero-meta {
  margin: 2.5rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--muted);
}

.panel {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  background: var(--green);
  color: #fff;
}

.panel-head strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
}

.panel-head span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.panel ul {
  margin: 0;
  padding: 0.5rem 1.5rem 1.25rem;
  list-style: none;
}

.panel li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.panel li:last-child {
  border-bottom: 0;
}

.panel .dot {
  width: 0.55rem;
  height: 0.55rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--green);
}

.panel .dot-orange {
  background: var(--orange);
}

.panel .dot-soft {
  background: transparent;
  border: 2px solid var(--line);
}

.panel .name {
  font-weight: 600;
}

.panel .state {
  margin-left: auto;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.section {
  padding: 4.5rem 0;
}

@media (min-width: 960px) {
  .section {
    padding: 6rem 0;
  }
}

.section-tint {
  background: var(--tint);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  max-width: 36rem;
}

.section h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3.2vw, 2.25rem);
  line-height: 1.2;
}

.section-head p {
  margin: 1rem 0 0;
  font-size: 1.05rem;
  color: var(--muted);
}

.cards {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

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

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

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.85rem 1.6rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  transition: box-shadow 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.6rem;
  right: 1.6rem;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: var(--green);
}

.card.accent-orange::before {
  background: var(--orange);
}

.card:hover {
  transform: translateY(-2px);
  border-color: #d3dad5;
  box-shadow: var(--shadow);
}

.card .tag {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.card h3 {
  margin: 0.6rem 0 0;
  font-size: 1.3rem;
}

.card p {
  margin: 0.7rem 0 1.5rem;
  color: var(--muted);
  font-size: 0.97rem;
}

.card .link {
  margin-top: auto;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--green);
}

.card.accent-orange .link {
  color: var(--orange);
}

.card .link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.feature {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 960px) {
  .feature {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 4.5rem;
  }
}

.feature-lists {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .feature-lists {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
  }
}

.feature-lists h3 {
  margin: 0 0 0.9rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--orange);
  font-size: 1.05rem;
}

.ticks {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ticks li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.4rem;
  color: var(--muted);
  font-size: 0.97rem;
}

.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--green);
}

.numbered {
  display: grid;
  gap: 2.25rem;
  margin-top: 3rem;
}

@media (min-width: 800px) {
  .numbered {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3rem;
  }
}

.numbered .num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--orange);
}

.numbered h3 {
  margin: 0.5rem 0 0.5rem;
  font-size: 1.2rem;
}

.numbered p {
  margin: 0;
  color: var(--muted);
  font-size: 0.97rem;
}

.faq {
  margin-top: 2.5rem;
  max-width: 48rem;
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  color: var(--orange);
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "-";
}

.faq details p {
  margin: 0 0 1.25rem;
  color: var(--muted);
}

.cta {
  background: var(--green);
  color: #fff;
}

.cta .eyebrow {
  color: #fff;
}

.cta .eyebrow::before {
  background: #fff;
}

.cta h2 {
  margin: 0;
  max-width: 32rem;
  font-size: clamp(1.65rem, 3.2vw, 2.25rem);
  line-height: 1.2;
}

.cta-rows {
  display: grid;
  gap: 1.75rem;
  margin: 2.75rem 0 0;
  padding-top: 2rem;
  border-top: 1px solid var(--line-on-green);
}

@media (min-width: 700px) {
  .cta-rows {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.cta-rows .label {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.cta-rows a {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.cta-rows a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer {
  background: var(--black);
  color: #fff;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 3rem 0;
}

@media (min-width: 700px) {
  .footer-inner {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.footer-wordmark {
  display: block;
  height: 2rem;
  width: auto;
  margin-bottom: 1rem;
  object-fit: contain;
  object-position: left center;
}

.footer-note {
  margin: 0;
  max-width: 24rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.94rem;
}

@media (min-width: 700px) {
  .footer-links {
    align-items: flex-end;
  }
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-links a:hover {
  color: #fff;
}

.legal {
  margin: 0.5rem 0 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

.not-found {
  padding: 6rem 0;
}

.not-found h1 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
}

.not-found p {
  margin: 1rem 0 0;
  color: var(--muted);
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-bottom: 0.75rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a:not(.btn) {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .btn {
    margin-top: 0.9rem;
    width: 100%;
  }
}
