:root {
  color-scheme: light;
  --page: #08281c;
  --paper: #fffefa;
  --paper-strong: #ffffff;
  --ink: #10231a;
  --muted: #5a6c60;
  --line: rgba(16, 35, 26, 0.18);
  --forest: #14532d;
  --leaf: #2f7d4d;
  --mint: #e3f1df;
  --sun: #e7a72d;
  --sun-soft: #fff2c4;
  --max-width: 1280px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 50% 42%, rgba(39, 111, 73, 0.38), transparent 34%),
    linear-gradient(145deg, #051b13 0%, #0a3323 52%, #062419 100%),
    repeating-linear-gradient(90deg, rgba(255, 254, 250, 0.035) 0 1px, transparent 1px 112px),
    #08281c;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  min-width: 320px;
}

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

p,
h1,
h2,
h3,
ol,
ul {
  margin: 0;
}

ol,
ul {
  padding: 0;
}

.site-header,
.home-page,
.showcase-page,
.site-footer {
  margin: 0 auto;
  width: min(100% - 72px, var(--max-width));
}

.site-header {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: auto 1fr;
  min-height: 104px;
  padding-right: 18px;
  position: sticky;
  top: 14px;
  z-index: 20;
}

.brand-lockup {
  align-items: center;
  display: inline-flex;
  height: 104px;
  width: clamp(340px, 32vw, 520px);
}

.brand-logo {
  height: 100%;
  object-fit: contain;
  object-position: left center;
  width: 100%;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

nav a,
.button {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease, transform 160ms ease;
}

nav a {
  background: rgba(255, 255, 255, 0.72);
  color: #314638;
  font-size: 0.93rem;
}

nav a[aria-current="page"],
nav a:hover,
nav a:focus-visible {
  background: var(--mint);
  border-color: rgba(20, 83, 45, 0.36);
  color: var(--forest);
}

nav a:hover,
nav a:focus-visible,
.button:hover,
.button:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  transform: translateY(-1px);
}

.home-landing {
  align-items: center;
  color: #fffefa;
  display: grid;
  justify-items: center;
  margin-top: 22px;
  min-height: calc(100vh - 116px);
  overflow: hidden;
  padding: clamp(78px, 11vw, 170px) 32px;
  position: relative;
  text-align: center;
}

.home-landing::before,
.home-landing::after {
  border: 1px solid rgba(255, 254, 250, 0.09);
  border-radius: 50%;
  content: "";
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.home-landing::before {
  height: min(72vw, 780px);
  width: min(72vw, 780px);
}

.home-landing::after {
  height: min(44vw, 430px);
  width: min(44vw, 430px);
}

.home-watermark {
  border-radius: 50%;
  box-shadow: 0 0 150px rgba(231, 167, 45, 0.16);
  height: min(64vw, 680px);
  left: 50%;
  object-fit: cover;
  opacity: 0.42;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(64vw, 680px);
}

.home-copy {
  max-width: 1080px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: #9cb56a;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0;
  margin-bottom: 12px;
  text-transform: uppercase;
}

h1 {
  font-size: 5.2rem;
  letter-spacing: 0;
  line-height: 0.95;
}

h1 span {
  display: block;
}

h1 span:last-child {
  font-size: 0.84em;
  white-space: nowrap;
}

h2 {
  font-size: 2.2rem;
  letter-spacing: 0;
  line-height: 1.08;
}

h3 {
  font-size: 1.25rem;
  letter-spacing: 0;
  line-height: 1.2;
}

.home-summary {
  color: rgba(255, 254, 250, 0.94);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.45;
  margin-top: 18px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.42);
}

.home-summary span {
  display: block;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 30px;
}

.button {
  background: var(--paper-strong);
  color: var(--ink);
  cursor: pointer;
  min-height: 50px;
  padding: 0 20px;
}

.button--primary {
  background: #1d6b3d;
  border-color: #1d6b3d;
  box-shadow: 0 16px 34px rgba(20, 83, 45, 0.32);
  color: #fffefa;
}

.button--primary:hover,
.button--primary:focus-visible {
  background: #2f7d4d;
  border-color: #2f7d4d;
}

.button--quiet {
  background: var(--sun-soft);
  border-color: rgba(231, 167, 45, 0.5);
}

.button--quiet:hover,
.button--quiet:focus-visible {
  background: var(--sun);
  border-color: var(--sun);
  color: var(--ink);
}

.proof-strip,
.capability-grid,
.site-grid,
.contact-layout {
  display: grid;
  gap: 16px;
}

.proof-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0 0 88px;
}

.proof-strip article,
.info-card,
.story-panel,
.closing-cta,
.business-example,
.software-example,
.contact-card,
.contact-form-panel {
  background: rgba(255, 254, 250, 0.88);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(16, 35, 26, 0.1);
}

.proof-strip article {
  min-height: 150px;
  padding: 22px;
}

.proof-strip span {
  color: var(--muted);
  display: block;
  font-weight: 950;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.proof-strip strong {
  display: block;
  font-size: 1.24rem;
  line-height: 1.24;
}

.showcase-page {
  padding: 64px 0 84px;
}

.page-hero {
  max-width: 980px;
}

.page-hero h1 {
  color: #fffefa;
  font-size: 4.6rem;
  max-width: 980px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.24);
}

.page-hero p:not(.eyebrow) {
  color: rgba(255, 254, 250, 0.78);
  font-size: 1.1rem;
  margin-top: 18px;
  max-width: 760px;
}

.capability-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 32px;
}

.info-card,
.contact-card {
  padding: 24px;
}

.info-card h2,
.contact-card h2 {
  font-size: 1.38rem;
}

.info-card p,
.contact-card p,
.business-example p,
.business-example li,
.software-example p,
.software-example li,
.story-panel p,
.closing-cta p,
.contact-form-panel p {
  color: var(--muted);
}

.info-card p,
.contact-card p,
.business-example p,
.software-example p {
  margin-top: 12px;
}

.story-panel {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  margin-top: 18px;
  padding: 28px;
}

.story-panel p {
  margin-top: 14px;
}

.process-list {
  counter-reset: process;
  display: grid;
  gap: 10px;
  list-style: none;
}

.process-list li {
  background: var(--mint);
  border: 1px solid rgba(20, 83, 45, 0.16);
  border-radius: 8px;
  color: var(--ink);
  counter-increment: process;
  font-weight: 850;
  min-height: 76px;
  padding: 16px 16px 16px 56px;
  position: relative;
}

.process-list li::before {
  background: var(--forest);
  border-radius: 999px;
  color: #fffefa;
  content: counter(process);
  display: grid;
  font-size: 0.82rem;
  font-weight: 950;
  height: 28px;
  left: 16px;
  place-items: center;
  position: absolute;
  top: 18px;
  width: 28px;
}

.closing-cta {
  margin-top: 18px;
  padding: 30px;
}

.closing-cta p:not(.eyebrow) {
  margin: 14px 0 24px;
  max-width: 760px;
}

.closing-cta.compact {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.closing-cta.compact h2 {
  font-size: 1.9rem;
}

.example-section {
  margin-top: 34px;
}

.section-heading {
  max-width: 840px;
}

.section-heading h2 {
  color: #fffefa;
  max-width: 760px;
}

.business-example-list,
.software-example-grid {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.business-example {
  align-items: stretch;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  overflow: hidden;
}

.business-example__content,
.software-example {
  padding: 28px;
}

.business-example h3,
.software-example h3 {
  font-size: 1.55rem;
}

.business-example ul,
.software-example ul {
  display: grid;
  gap: 8px;
  list-style: none;
  margin-top: 18px;
}

.business-example li,
.software-example li {
  padding-left: 18px;
  position: relative;
}

.business-example li::before,
.software-example li::before {
  background: var(--sun);
  border-radius: 999px;
  content: "";
  height: 7px;
  left: 0;
  position: absolute;
  top: 0.72em;
  width: 7px;
}

.business-example img {
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center top;
  opacity: 0.74;
  width: 100%;
}

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

.text-link {
  color: var(--forest);
  display: inline-flex;
  font-weight: 950;
  margin-top: 22px;
}

.contact-layout {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  margin-top: 32px;
}

.contact-card a {
  color: var(--forest);
  display: block;
  font-size: 1.28rem;
  font-weight: 950;
  margin-top: 14px;
}

.contact-card--accent {
  background: linear-gradient(145deg, var(--forest), #0f3d24);
  color: #fffefa;
}

.contact-card--accent .eyebrow,
.contact-card--accent p {
  color: rgba(255, 254, 250, 0.82);
}

.contact-form-panel {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  margin-top: 18px;
  padding: 28px;
}

.contact-form-panel p {
  margin-top: 12px;
}

.project-form {
  display: grid;
  gap: 14px;
}

.project-form label {
  color: var(--ink);
  display: grid;
  font-weight: 900;
  gap: 6px;
}

.project-form input,
.project-form textarea {
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  padding: 12px 14px;
  width: 100%;
}

.project-form textarea {
  resize: vertical;
}

.site-footer {
  align-items: center;
  border-top: 1px solid rgba(255, 254, 250, 0.16);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  justify-content: space-between;
  padding: 28px 0 42px;
}

.site-footer p {
  color: #fffefa;
  font-weight: 950;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer a {
  color: #d7e4a8;
  font-weight: 900;
}

@media (max-width: 1080px) {
  h1 {
    font-size: 4rem;
  }

  .business-example,
  .story-panel,
  .closing-cta.compact,
  .contact-layout,
  .contact-form-panel {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .site-header,
  .home-page,
  .showcase-page,
  .site-footer {
    width: min(100% - 28px, var(--max-width));
  }

  .site-header {
    align-items: start;
    grid-template-columns: 1fr;
    padding: 14px 14px 24px 0;
  }

  nav {
    justify-content: flex-start;
  }

  .home-landing {
    min-height: auto;
    padding: 66px 22px 72px;
  }

  h1,
  .page-hero h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .proof-strip,
  .capability-grid,
  .software-example-grid {
    grid-template-columns: 1fr;
  }

  .action-row .button,
  .closing-cta .button,
  .project-form .button {
    width: 100%;
  }

  .showcase-page {
    padding: 44px 0 60px;
  }
}

@media (max-width: 460px) {
  .brand-lockup {
    height: 90px;
    width: min(88vw, 360px);
  }

  nav a {
    width: 100%;
  }

  h1,
  .page-hero h1 {
    font-size: 2.55rem;
  }

  .contact-card a {
    font-size: 1.08rem;
  }
}

