:root {
  --ink: #10201d;
  --muted: #61706c;
  --cream: #f3f1e9;
  --paper: #fbfaf6;
  --green: #0f5c4f;
  --dark: #071b18;
  --lime: #c9f36b;
  --line: #d9ddd6;
  --danger: #8d2f2f;
  --mono: "DM Mono", monospace;
  --sans: "Manrope", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}

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

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

button,
select {
  cursor: pointer;
}

button:disabled,
input:disabled,
select:disabled,
textarea:disabled {
  cursor: not-allowed;
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 100;
  padding: 10px;
  background: #fff;
  color: var(--ink);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  height: 86px;
  margin: 0 auto;
  padding: 0 28px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  line-height: 1.1;
}

.brand-mark {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  background: var(--green);
  color: #fff;
  font-family: var(--mono);
  font-size: 13px;
}

.brand small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 700;
}

.site-header nav > a:not(.nav-cta) {
  position: relative;
}

.site-header nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 100%;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--green);
  content: "";
  transition: right 0.25s;
}

.site-header nav > a:not(.nav-cta):hover::after {
  right: 0;
}

.nav-cta {
  padding: 13px 18px;
  background: var(--green);
  color: #fff;
}

.nav-cta span {
  margin-left: 9px;
  color: var(--lime);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  padding: 8px 12px;
  color: var(--ink);
}

.section-shell {
  max-width: 1184px;
  margin: 0 auto;
  padding-right: 28px;
  padding-left: 28px;
}

.hero {
  display: grid;
  min-height: 690px;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 70px;
  padding-top: 80px;
  padding-bottom: 90px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--green);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 1px;
  background: currentcolor;
}

.hero h1,
.section-heading h2,
.method h2,
.experience h2,
.contact h2 {
  margin: 0;
  font-size: clamp(42px, 5.2vw, 74px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.hero h1 em,
.section-heading h2 em,
.method h2 em,
.experience h2 em,
.contact h2 em {
  color: var(--green);
  font-family: Georgia, serif;
  font-weight: 400;
}

.hero-lead {
  max-width: 640px;
  margin: 28px 0 32px;
  color: var(--muted);
  font-size: 19px;
}

.hero-actions,
.profile-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border: 1px solid transparent;
  padding: 15px 20px;
  font-size: 13px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgb(7 27 24 / 13%);
}

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

.button-primary span {
  color: var(--lime);
}

.button-ghost {
  border-color: var(--line);
  background: transparent;
}

.trust-list {
  display: flex;
  margin: 55px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line);
  padding: 0 26px;
}

.trust-list li:first-child {
  border: 0;
  padding-left: 0;
}

.trust-list strong {
  font-size: 21px;
}

.trust-list span {
  color: var(--muted);
  font-size: 12px;
}

.hero-visual {
  position: relative;
  height: 520px;
  overflow: hidden;
  border-radius: 0 80px 0 0;
  background: var(--dark);
  box-shadow: 24px 24px 0 #dfe6d7;
}

.hero-visual::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgb(255 255 255 / 5%) 1px, transparent 1px), linear-gradient(90deg, rgb(255 255 255 / 5%) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: linear-gradient(to bottom, #000, transparent);
}

.visual-label,
.code-note {
  position: absolute;
  color: #9db0a9;
  font: 10px var(--mono);
  letter-spacing: 0.18em;
}

.visual-label {
  top: 26px;
  left: 28px;
}

.code-note {
  right: 25px;
  bottom: 25px;
  color: var(--lime);
  letter-spacing: 0.06em;
}

.core {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: flex;
  width: 150px;
  height: 150px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: var(--lime);
}

.core b {
  font-size: 16px;
}

.core small {
  font: 11px var(--mono);
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgb(201 243 107 / 28%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit span {
  position: absolute;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  background: #164f46;
  box-shadow: 0 0 0 7px rgb(15 92 79 / 20%);
  color: #fff;
  font: 12px var(--mono);
}

.orbit-one {
  width: 260px;
  height: 260px;
}

.orbit-one span {
  top: 100px;
  left: -18px;
}

.orbit-two {
  width: 365px;
  height: 365px;
}

.orbit-two span {
  top: 16px;
  right: 25px;
}

.orbit-three {
  width: 455px;
  height: 455px;
}

.orbit-three span {
  right: 8px;
  bottom: 82px;
}

.signal {
  position: absolute;
  border-radius: 50%;
  background: rgb(201 243 107 / 70%);
  box-shadow: 0 0 30px var(--lime);
}

.signal-a {
  bottom: 95px;
  left: 65px;
  width: 4px;
  height: 4px;
}

.signal-b {
  top: 130px;
  right: 70px;
  width: 6px;
  height: 6px;
}

.proof-strip {
  display: flex;
  max-width: 1240px;
  min-height: 98px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin: 0 auto;
  padding: 24px 38px;
  background: var(--cream);
}

.proof-strip p,
.credential-label {
  color: var(--muted);
  font: 10px var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-strip div {
  font-size: 13px;
  font-weight: 800;
}

.proof-strip span {
  margin-right: 9px;
  color: var(--green);
  font: 9px var(--mono);
}

.challenges,
.solutions {
  padding-top: 130px;
  padding-bottom: 0;
}

.solutions {
  padding-bottom: 140px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  column-gap: 60px;
  margin-bottom: 62px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2 {
  font-size: clamp(38px, 4.4vw, 61px);
}

.section-heading > p:last-child {
  max-width: 390px;
  margin: 0 0 5px;
  color: var(--muted);
}

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

.challenge-card {
  min-height: 245px;
  border-top: 4px solid var(--green);
  padding: 27px 24px;
  background: var(--cream);
}

.challenge-number {
  display: block;
  margin-bottom: 36px;
  color: var(--green);
  font: 11px var(--mono);
}

.challenge-card h3 {
  margin: 0 0 12px;
  font-size: 19px;
  line-height: 1.25;
}

.challenge-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 410px;
  flex-direction: column;
  border: 1px solid var(--line);
  padding: 38px;
  background: var(--paper);
  transition: box-shadow 0.3s, transform 0.3s;
}

.service-card:hover {
  box-shadow: 0 15px 50px rgb(7 27 24 / 8%);
  transform: translateY(-5px);
}

.service-card.featured {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.service-number {
  position: absolute;
  top: 24px;
  right: 25px;
  font: 10px var(--mono);
  opacity: 0.6;
}

.service-icon {
  display: grid;
  width: 55px;
  height: 55px;
  place-items: center;
  border: 1px solid currentcolor;
  margin-bottom: 32px;
  font: 13px var(--mono);
}

.service-card h3 {
  margin: 0 0 14px;
  font-size: 25px;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.service-card.featured p {
  color: #c8d9d4;
}

.service-card ul {
  margin: 25px 0;
  padding: 0;
  list-style: none;
  font-size: 12px;
}

.service-card li {
  margin: 8px 0;
}

.service-card li::before {
  margin-right: 9px;
  color: var(--green);
  content: "+";
  font-family: var(--mono);
}

.service-card.featured li::before {
  color: var(--lime);
}

.service-card a {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  margin-top: auto;
  padding-top: 18px;
  font-size: 12px;
  font-weight: 800;
}

.service-card.featured a {
  border-color: rgb(255 255 255 / 20%);
}

.method {
  padding: 125px 0;
  background: var(--dark);
  color: #fff;
}

.method-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 110px;
}

.eyebrow.light {
  color: var(--lime);
}

.method h2 {
  font-size: clamp(42px, 5vw, 67px);
}

.method h2 em {
  color: var(--lime);
}

.method-intro > p:not(.eyebrow) {
  max-width: 360px;
  color: #9db0a9;
}

.availability {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 55px;
  color: #b9c8c4;
  font: 10px var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.availability i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgb(201 243 107 / 10%);
}

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

.steps li {
  display: grid;
  grid-template-columns: 55px 1fr;
  border-top: 1px solid rgb(255 255 255 / 15%);
  padding: 24px 0;
}

.steps li > span {
  color: var(--lime);
  font: 10px var(--mono);
}

.steps h3 {
  margin: 0;
  font-size: 22px;
}

.steps p {
  margin: 5px 0 0;
  color: #9db0a9;
  font-size: 14px;
}

.experience {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;
  padding-top: 140px;
  padding-bottom: 140px;
}

.experience h2 {
  margin-bottom: 30px;
  font-size: clamp(40px, 4.3vw, 60px);
}

.experience-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
}

.text-link {
  display: inline-flex;
  gap: 16px;
  border-bottom: 2px solid var(--green);
  margin-top: 20px;
  padding-bottom: 7px;
  font-size: 13px;
  font-weight: 800;
}

.credentials {
  border-top: 4px solid var(--green);
  padding: 32px 35px;
  background: var(--cream);
}

.credential-label {
  margin: 0 0 20px;
  color: var(--green);
}

.credentials div {
  position: relative;
  border-top: 1px solid #ccd2c9;
  padding: 23px 0;
}

.credentials span {
  position: absolute;
  top: 28px;
  right: 0;
  color: var(--green);
  font: 10px var(--mono);
}

.credentials h3 {
  margin: 0;
  padding-right: 55px;
  font-size: 18px;
}

.credentials p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.contact {
  max-width: none;
  padding-top: 105px;
  padding-bottom: 110px;
  background: var(--green);
  color: #fff;
}

.contact-heading,
.contact-layout {
  max-width: 1128px;
  margin-right: auto;
  margin-left: auto;
}

.contact-heading {
  padding-bottom: 58px;
}

.contact h2 {
  max-width: 900px;
  font-size: clamp(39px, 5vw, 68px);
}

.contact h2 em {
  color: var(--lime);
}

.contact-heading > p:not(.eyebrow) {
  max-width: 630px;
  color: #d2e0dc;
  font-size: 17px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.67fr 1.33fr;
  gap: 55px;
}

.contact-context {
  padding-top: 10px;
}

.contact-context h3 {
  margin: 0 0 16px;
  font-size: 28px;
  line-height: 1.2;
}

.contact-context > p {
  color: #d2e0dc;
}

.direct-channels {
  display: grid;
  gap: 8px;
  border-top: 1px solid rgb(255 255 255 / 20%);
  margin-top: 36px;
  padding-top: 22px;
}

.direct-channels p {
  margin: 0 0 5px;
  color: #c8d9d4;
  font-size: 13px;
}

.direct-channels a {
  color: var(--lime);
  font-size: 13px;
  font-weight: 800;
}

.contact-form-wrap {
  padding: 34px;
  background: var(--paper);
  color: var(--ink);
}

.form-status,
.form-setup-notice {
  margin-bottom: 22px;
  padding: 14px 16px;
  font-size: 13px;
}

.form-status-success {
  border-left: 4px solid var(--green);
  background: #e5f0e9;
}

.form-status-error {
  border-left: 4px solid var(--danger);
  background: #f8e9e9;
  color: #692222;
}

.form-setup-notice {
  border-left: 4px solid #a37612;
  background: #faf1cf;
  color: #584003;
}

.form-setup-notice code {
  font-family: var(--mono);
  font-size: 12px;
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

.field label {
  font-size: 12px;
  font-weight: 800;
}

.field label span {
  color: var(--muted);
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #bec7c2;
  border-radius: 0;
  padding: 12px 13px;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
}

.field textarea {
  resize: vertical;
}

.field input:disabled,
.field select:disabled,
.field textarea:disabled {
  background: #eef0ec;
  color: #7a8580;
}

.field-error {
  color: var(--danger);
  font-size: 11px;
  font-weight: 700;
}

.submit-button {
  margin-top: 24px;
  background: var(--lime);
  color: var(--ink);
}

.submit-button:disabled {
  opacity: 0.6;
}

.form-help {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.site-footer {
  display: grid;
  max-width: 1184px;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 20px;
  margin: auto;
  padding: 40px 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

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

.site-footer > p {
  margin: 0;
  text-align: center;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 4px;
}

.footer-meta a {
  color: var(--green);
  font-weight: 700;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .js .reveal,
  .js .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 950px) {
  .challenge-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-context {
    max-width: 630px;
  }
}

@media (max-width: 850px) {
  .site-header {
    height: 72px;
  }

  .menu-toggle {
    display: block;
  }

  .site-header nav {
    position: absolute;
    z-index: 10;
    top: 72px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 25px;
    background: var(--paper);
    box-shadow: 0 20px 40px rgb(7 27 24 / 12%);
  }

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

  .hero,
  .section-heading,
  .method-inner,
  .experience {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 55px;
    padding-top: 55px;
  }

  .hero-visual {
    height: 440px;
  }

  .proof-strip {
    flex-wrap: wrap;
  }

  .proof-strip p {
    width: 100%;
  }

  .section-heading > p:last-child {
    margin-top: 20px;
  }

  .method-inner,
  .experience {
    gap: 60px;
  }

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

  .trust-list {
    margin-top: 40px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer > p {
    text-align: left;
  }

  .footer-meta {
    align-items: start;
  }
}

@media (max-width: 560px) {
  .site-header,
  .section-shell {
    padding-right: 20px;
    padding-left: 20px;
  }

  .site-header .brand small {
    display: none;
  }

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

  .hero h1 {
    font-size: 44px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .trust-list li {
    border: 0;
    padding: 0;
  }

  .hero-visual {
    height: 370px;
  }

  .orbit-three {
    width: 340px;
    height: 340px;
  }

  .orbit-two {
    width: 280px;
    height: 280px;
  }

  .orbit-one {
    width: 210px;
    height: 210px;
  }

  .core {
    width: 125px;
    height: 125px;
  }

  .proof-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 0 12px;
  }

  .proof-strip p {
    grid-column: 1 / -1;
  }

  .challenges,
  .solutions,
  .experience {
    padding-top: 90px;
    padding-bottom: 90px;
  }

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

  .service-card {
    min-height: 390px;
    padding: 28px;
  }

  .method {
    padding: 90px 0;
  }

  .contact {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .contact-form-wrap {
    padding: 24px 20px;
  }

  .field-full {
    grid-column: auto;
  }

  .submit-button {
    width: 100%;
  }
}
