:root {
  color-scheme: light;
  --background: #decbb5;
  --shadow: #cdbca3;
  --green: #17341a;
  --select: #225247;
  --prompt: #3c503fb0;
  --muted: #3c503f;
  --accent: #531818;
  --accent-hover: #732b33;
  --highlight: #39516a;
  --highlight-hover: #476277;
  --surface: #decbb5;
  --line: rgba(23, 52, 26, 0.2);
  --focus-ring: color-mix(in srgb, var(--select) 45%, transparent);
  --radius: 6px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--green) var(--shadow);
  background: var(--shadow);
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--shadow);
  color: var(--green);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.page {
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--background);
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background-color: var(--highlight);
  color: var(--background);
}

::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background-color: var(--green);
}

::-webkit-scrollbar-track {
  border-radius: var(--radius);
  background: var(--shadow);
}

.scrollbar-thin-green {
  scrollbar-width: thin;
  scrollbar-color: var(--green) var(--shadow);
}

.scrollbar-thin-green::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

.scrollbar-thin-green::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background-color: var(--green);
}

.scrollbar-thin-green::-webkit-scrollbar-track {
  border-radius: var(--radius);
  background: var(--shadow);
}

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

a,
button {
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

a:focus-visible,
button:focus-visible,
button:hover {
  outline: 2px solid var(--focus-ring);
  color: var(--background);
  outline-offset: 2px;  
  text-decoration: none;
}

.page {
  min-height: 100vh;
}

.shell,
.site-footer {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(23, 52, 26, 0.12);
  background: var(--shadow);
  backdrop-filter: blur(14px);
}

.nav-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 10px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 150px;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--prompt);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  white-space: nowrap;
}

.nav-links a:not(.button):hover,
.nav-links a:not(.button):focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--select);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nav-links a:not(.button):active,
.text-link:active {
  color: var(--highlight);
}

.nav-links a.button {
  color: var(--background);
  text-decoration: none;
}

.nav-links a.button:hover,
.nav-links a.button:focus-visible {
  background: var(--select);
  color: var(--background);
  text-decoration: none;
}

.nav-links a.button:active {
  background: var(--highlight);
  color: var(--background);
  text-decoration: none;
}

.mobile-menu-toggle,
.mobile-menu-panel {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  padding: 0 18px;
  background: var(--green);
  color: var(--background);
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 10px 18px rgba(23, 52, 26, 0.18);
}

.button:hover,
.button:focus-visible {
  background: var(--select);
}

.button:active {
  background: var(--highlight);
}

.button.secondary {
  border-color: var(--green);
  background: var(--shadow);
  color: var(--green);
  box-shadow: none;
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: var(--background);
}

.button.secondary:active {
  border-color: var(--select);
  color: var(--select);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: center;
  gap: 56px;
  padding: 56px 0 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
}

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

h1 {
  max-width: 780px;
  margin: 18px 0 20px;
  color: var(--green);
  font-size: clamp(3rem, 7vw, 5.7rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  color: var(--prompt);
  font-size: 1.12rem;
  line-height: 1.7;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--shadow);
  padding: 7px 12px;
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 750;
}

.product-card,
.panel,
.feature-card,
.workflow-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--shadow);
  color: var(--green);
  box-shadow: 0 10px 18px rgba(23, 52, 26, 0.14);
}

.product-card {
  overflow: hidden;
}

.product-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  background: var(--green);
  padding: 16px 18px;
  color: var(--background);
}

.product-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
}

.product-title img {
  width: 28px;
  height: 42px;
  object-fit: contain;
}

.status {
  border-radius: 999px;
  background: var(--highlight);
  padding: 5px 10px;
  font-size: 0.8rem;
  font-weight: 850;
}

.product-body {
  padding: 18px;
}

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

.metric {
  border: 1px solid rgba(23, 52, 26, 0.16);
  border-radius: var(--radius);
  background: var(--background);
  padding: 12px;
}

.metric-label {
  color: var(--prompt);
  font-size: 0.78rem;
  font-weight: 750;
}

.metric-value {
  margin-top: 4px;
  font-size: 1.35rem;
  font-weight: 900;
}

.leaderboard {
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid rgba(23, 52, 26, 0.16);
  border-radius: var(--radius);
  background: var(--background);
}

.leader-row {
  display: grid;
  grid-template-columns: 44px 1fr 84px;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(23, 52, 26, 0.13);
}

.leader-row:last-child {
  border-bottom: 0;
}

.rank,
.points {
  font-weight: 900;
}

.name {
  font-weight: 850;
}

.meta {
  color: var(--prompt);
  font-size: 0.86rem;
}

.points {
  justify-self: end;
  color: var(--highlight);
}

.section {
  padding: 44px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-heading h2 {
  margin-bottom: 10px;
  color: var(--green);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.04;
}

.section-heading p {
  color: var(--prompt);
  font-size: 1.05rem;
  line-height: 1.65;
}

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

.feature-card {
  min-height: 190px;
  padding: 18px;
  color: var(--green);
}

.feature-card h3 {
  margin-bottom: 9px;
  font-size: 1.08rem;
}

.feature-card p {
  color: var(--prompt);
  line-height: 1.58;
}

.feature-tag {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--green);
  padding: 5px 9px;
  color: var(--background);
  font-size: 0.75rem;
  font-weight: 850;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: stretch;
}

.panel {
  padding: 22px;
}

.panel h2 {
  margin-bottom: 10px;
  font-size: 1.55rem;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  color: var(--prompt);
  line-height: 1.5;
}

.check-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 999px;
  background: var(--highlight);
}

.workflow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.workflow-card {
  padding: 16px;
}

.workflow-number {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: var(--radius);
  background: var(--highlight);
  color: var(--background);
  font-weight: 900;
}

.workflow-card h3 {
  margin-bottom: 8px;
}

.workflow-card p {
  color: var(--prompt);
  line-height: 1.52;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.faq-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--shadow);
  padding: 18px;
  box-shadow: 0 10px 18px rgba(23, 52, 26, 0.12);
}

.faq-card h3 {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 1.05rem;
}

.faq-card p {
  margin-bottom: 0;
  color: var(--prompt);
  line-height: 1.58;
}

.cta {
  margin: 36px 0 58px;
  border-radius: var(--radius);
  background: var(--green);
  color: var(--background);
  padding: 30px;
  box-shadow: 0 18px 44px rgba(23, 52, 26, 0.18);
}

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

.cta h2 {
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.cta p {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(222, 203, 181, 0.86);
  line-height: 1.6;
}

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

.cta .button:hover,
.cta .button:focus-visible {
  background: var(--shadow);
  color: var(--green);
}

.cta .button:active {
  color: var(--select);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding: 26px 0 38px;
  color: var(--prompt);
  font-size: 0.95rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
}

.footer-brand img {
  width: 24px;
  height: 42px;
  object-fit: contain;
}

@media (max-width: 980px) {
  .nav-inner {
    gap: 18px;
    padding: 10px 0;
  }

  .brand {
    width: 132px;
  }

  .nav-links {
    gap: 14px;
    font-size: 0.86rem;
  }

  .nav-links .button {
    min-height: 38px;
    padding: 0 13px;
    font-size: 0.88rem;
  }

  .hero,
  .split,
  .workflow {
    grid-template-columns: 1fr;
  }

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

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .nav-inner {
    min-height: 64px;
    align-items: center;
    padding: 10px 0;
    gap: 16px;
  }

  .brand {
    width: 126px;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 42px;
    border: 1px solid var(--green);
    border-radius: var(--radius);
    background: var(--shadow);
    color: var(--green);
    padding: 0 14px;
    font: inherit;
    font-size: 0.95rem;
    font-weight: 850;
    cursor: pointer;
  }

  .mobile-menu-toggle:hover,
  .mobile-menu-toggle:focus-visible,
  .mobile-menu-toggle[aria-expanded="true"] {
    background: var(--background);
  }

  .mobile-menu-toggle:active {
    background: var(--shadow);
    border-color: var(--select);
    color: var(--select);
  }

  .menu-icon {
    display: grid;
    gap: 4px;
  }

  .menu-icon span {
    display: block;
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .mobile-menu-panel {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow-x: hidden;
    overflow-y: auto;
    background: var(--background);
    color: var(--green);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 180ms ease,
      transform 220ms ease,
      visibility 180ms ease;
  }

  .mobile-menu-panel.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu-header {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    border-bottom: 1px solid var(--line);
    padding: 10px 20px;
    background: var(--shadow);
  }

  .mobile-menu-brand {
    display: inline-flex;
    align-items: center;
    width: 138px;
    max-width: 45vw;
    height: 48px;
    padding: 0;
  }

  .mobile-menu-brand img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 48px;
    object-fit: contain;
    object-position: left center;
  }

  .mobile-menu-close {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--green);
    border-radius: var(--radius);
    background: transparent;
    color: var(--green);
    font: inherit;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
  }

  .mobile-menu-close:hover,
  .mobile-menu-close:focus-visible {
    background: var(--green);
    color: var(--background);
  }

  .mobile-menu-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    width: min(100%, 520px);
    margin: 0 auto;
    padding: 30px 24px max(24px, env(safe-area-inset-bottom));
  }

  .mobile-menu-intro {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
  }

  .mobile-menu-links {
    display: grid;
    margin-top: 10px;
  }

  .mobile-menu-links a {
    display: flex;
    align-items: center;
    min-height: 62px;
    border-bottom: 1px solid rgba(23, 52, 26, 0.14);
    color: var(--green);
    font-size: 1.2rem;
    font-weight: 850;
  }

  .mobile-menu-links a:hover,
  .mobile-menu-links a:focus-visible {
    color: var(--select);
  }

  .mobile-menu-footer {
    margin-top: auto;
    padding-top: 32px;
  }

  .mobile-menu-cta {
    width: 100%;
    min-height: 52px;
  }

  .hero {
    gap: 30px;
    padding: 30px 0;
  }

  .feature-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .leader-row {
    grid-template-columns: 34px 1fr 64px;
    padding: 0 10px;
  }

  .cta {
    padding: 24px;
  }

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

.nav-links a:not(.button)[aria-current="page"],
.mobile-menu-links a[aria-current="page"] {
  color: var(--highlight);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.page-hero {
  max-width: 820px;
  padding: 64px 0 20px;
}

.page-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 6vw, 5rem);
}

.page-hero .hero-copy {
  margin-bottom: 0;
}

.back-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--select);
  font-weight: 800;
}

.back-link:hover,
.back-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}
