:root {
  --ink: #12231b;
  --ink-2: #24382d;
  --muted: #637167;
  --paper: #fbfaf4;
  --paper-strong: #ffffff;
  --cream: #f3eee2;
  --line: rgba(18, 35, 27, 0.14);
  --green: #1d6c4b;
  --green-dark: #10271d;
  --green-soft: #dfeee4;
  --sun: #f3b33d;
  --sun-soft: #fff1c9;
  --blue: #315c72;
  --clay: #b75f48;
  --shadow: 0 24px 70px rgba(18, 35, 27, 0.13);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background:
    linear-gradient(180deg, rgba(223, 238, 228, 0.5), transparent 540px),
    var(--paper);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(18, 35, 27, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 35, 27, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 72%);
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
p,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1,
h2,
h3,
p,
li {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 1120px;
  color: var(--paper-strong);
  font-size: clamp(3rem, 6vw, 5.4rem);
  font-weight: 780;
  line-height: 0.97;
}

h2 {
  max-width: 980px;
  font-size: clamp(2.1rem, 4.5vw, 4.75rem);
  font-weight: 760;
  line-height: 1;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.2;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 42px);
  color: var(--paper-strong);
  background: rgba(10, 25, 18, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 1rem;
  font-weight: 860;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  color: var(--green-dark);
  background: linear-gradient(145deg, var(--sun), #ffe198);
  font-size: 0.8rem;
  font-weight: 920;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  min-height: 40px;
  padding: 10px 13px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  font-weight: 760;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--paper-strong);
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

.header-action,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border: 0;
  border-radius: 6px;
  font-weight: 820;
  line-height: 1.1;
  text-decoration: none;
  transition:
    transform 160ms ease,
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.header-action,
.primary-button {
  color: var(--green-dark);
  background: var(--sun);
}

.primary-button.dark {
  color: var(--paper-strong);
  background: var(--green-dark);
}

.secondary-button {
  color: var(--paper-strong);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.header-action:hover,
.header-action:focus-visible,
.primary-button:hover,
.primary-button:focus-visible,
.secondary-button:hover,
.secondary-button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.header-action:hover,
.header-action:focus-visible,
.primary-button:hover,
.primary-button:focus-visible {
  background: #ffd574;
}

.primary-button.dark:hover,
.primary-button.dark:focus-visible {
  color: var(--green-dark);
  background: var(--sun);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--paper-strong);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(820px, 86vh);
  padding: 118px clamp(18px, 4vw, 48px) 30px;
  overflow: hidden;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.05);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 19, 13, 0.92) 0%, rgba(7, 19, 13, 0.66) 45%, rgba(7, 19, 13, 0.24) 100%),
    linear-gradient(0deg, rgba(7, 19, 13, 0.86) 0%, transparent 42%),
    rgba(7, 19, 13, 0.16);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1220px, 100%);
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--sun);
}

.hero-copy {
  max-width: 850px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.58;
}

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

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(980px, 100%);
  margin-top: 34px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.hero-facts div {
  min-height: 92px;
  padding: 16px;
  background: rgba(12, 30, 21, 0.56);
}

.hero-facts dt {
  color: var(--paper-strong);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 870;
  line-height: 1;
}

.hero-facts dd {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.4;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1220px, calc(100% - 36px));
  margin: -18px auto 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.proof-strip article {
  min-height: 132px;
  padding: 24px;
  background: var(--paper-strong);
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  font-size: 1.02rem;
  line-height: 1.2;
}

.proof-strip span {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.55;
}

.section {
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 128px) 0;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.section-heading {
  display: grid;
  gap: 0;
}

.section-heading.compact {
  margin-bottom: 34px;
}

.intro-copy {
  display: grid;
  gap: 24px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--green);
  font-weight: 850;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--clay);
  outline: none;
}

.deliverable-section {
  padding-top: 0;
}

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

.deliverable-card {
  display: flex;
  flex-direction: column;
  min-height: 244px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 0 18px 46px rgba(18, 35, 27, 0.07);
}

.card-index {
  display: grid;
  place-items: center;
  width: 42px;
  height: 34px;
  margin-bottom: auto;
  border-radius: 6px;
  color: var(--green-dark);
  background: var(--sun-soft);
  font-size: 0.84rem;
  font-weight: 900;
}

.deliverable-card h3 {
  margin-top: 34px;
}

.deliverable-card p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.feature-section {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(420px, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding-top: 0;
}

.feature-copy p:not(.eyebrow) {
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

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

.check-list li {
  position: relative;
  min-height: 42px;
  padding: 10px 12px 10px 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink-2);
  font-weight: 720;
}

.check-list li::before {
  position: absolute;
  top: 12px;
  left: 14px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: var(--green-dark);
  background: var(--sun);
  content: "✓";
  font-size: 0.74rem;
  font-weight: 900;
}

.feature-visual {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.feature-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.report-panel {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(320px, calc(100% - 36px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 8px;
  color: var(--paper-strong);
  background: rgba(12, 30, 21, 0.82);
  backdrop-filter: blur(18px);
}

.report-panel span,
.report-panel dd {
  color: rgba(255, 255, 255, 0.72);
}

.report-panel strong {
  display: block;
  margin-top: 4px;
  font-size: 1.4rem;
}

.report-panel dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.report-panel div {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.report-panel dt {
  color: var(--sun);
  font-size: 1.45rem;
  font-weight: 850;
}

.report-panel dd {
  margin-top: 4px;
  font-size: 0.86rem;
  line-height: 1.35;
}

.usecase-section {
  padding-top: 0;
}

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

.usecase-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 0 18px 48px rgba(18, 35, 27, 0.07);
  overflow: hidden;
}

.usecase-card img {
  width: 100%;
  aspect-ratio: 1.5;
  object-fit: cover;
  background: var(--green-soft);
}

.usecase-card div {
  padding: 22px;
}

.usecase-card span {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.usecase-card h3 {
  margin-top: 8px;
}

.usecase-card p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.55;
}

.process-section {
  padding-top: 0;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(223, 238, 228, 0.58), rgba(255, 255, 255, 0.86)),
    var(--paper-strong);
}

.process-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--green-dark);
  background: var(--sun);
  font-weight: 900;
}

.process-list h3 {
  margin-top: 46px;
}

.process-list p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(34px, 5vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--paper-strong);
  background:
    linear-gradient(135deg, rgba(16, 39, 29, 0.96), rgba(29, 108, 75, 0.94)),
    var(--green-dark);
  box-shadow: var(--shadow);
}

.cta-section .eyebrow {
  color: var(--sun);
}

.cta-section h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.cta-section p {
  max-width: 720px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
  line-height: 1.7;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  gap: clamp(28px, 6vw, 72px);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  overflow: hidden;
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  min-height: 68px;
  padding: 18px 20px;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font-weight: 830;
}

.faq-item button span:first-child {
  max-width: 92%;
}

.faq-item button span:last-child {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: var(--green-soft);
}

.faq-item p {
  display: none;
  padding: 0 20px 22px;
  color: var(--muted);
  line-height: 1.65;
}

.faq-item.is-open p {
  display: block;
}

.faq-item.is-open button span:last-child {
  color: var(--green-dark);
  background: var(--sun);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(420px, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  padding-top: 0;
}

.contact-copy {
  position: sticky;
  top: 110px;
}

.contact-copy p:not(.eyebrow) {
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.contact-options {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-options a {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  color: var(--green-dark);
  font-weight: 850;
  text-decoration: none;
}

.contact-options a:hover,
.contact-options a:focus-visible {
  border-color: rgba(29, 108, 75, 0.38);
  outline: none;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: clamp(20px, 4vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label.full {
  grid-column: 1 / -1;
}

.contact-form span {
  color: var(--ink-2);
  font-size: 0.92rem;
  font-weight: 820;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(18, 35, 27, 0.18);
  border-radius: 6px;
  color: var(--ink);
  background: #fffdf8;
  outline: none;
}

.contact-form input,
.contact-form select {
  min-height: 48px;
  padding: 0 13px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 134px;
  padding: 13px;
  line-height: 1.5;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(29, 108, 75, 0.12);
}

.contact-form .primary-button {
  grid-column: 1 / -1;
  justify-self: start;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  color: var(--green);
  font-weight: 760;
  line-height: 1.4;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto;
  padding: 32px 0 44px;
  border-top: 1px solid var(--line);
}

.site-footer .brand {
  color: var(--ink);
}

.site-footer .brand-mark {
  border-color: rgba(18, 35, 27, 0.16);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer a {
  color: var(--muted);
  font-weight: 720;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--green);
  outline: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .header-action {
    display: none;
  }

  .nav-toggle {
    justify-self: end;
    display: grid;
  }

  .main-nav {
    position: fixed;
    inset: 76px 12px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(10, 25, 18, 0.96);
    box-shadow: var(--shadow);
  }

  body.nav-open .main-nav {
    display: flex;
  }

  .main-nav a {
    min-height: 48px;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
  }

  .proof-strip,
  .deliverable-grid,
  .usecase-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    display: none;
  }

  .intro-section,
  .feature-section,
  .faq-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .feature-visual,
  .feature-visual img {
    min-height: 420px;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 680px) {
  h1 {
    font-size: clamp(2.65rem, 15vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .hero {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-actions,
  .cta-section,
  .site-footer {
    align-items: stretch;
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .proof-strip,
  .section,
  .site-footer {
    width: min(100% - 28px, 1220px);
  }

  .section {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .deliverable-section,
  .feature-section,
  .usecase-section,
  .process-section,
  .contact-section {
    padding-top: 0;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .report-panel {
    position: static;
    width: auto;
    margin: -16px 14px 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
