:root {
  color-scheme: dark;
  --bg: #07100b;
  --bg-deep: #040806;
  --surface: #0d1711;
  --surface-raised: #111d16;
  --surface-soft: #132119;
  --border: #23352a;
  --border-bright: #365943;
  --text: #f3f8f4;
  --text-soft: #c7d2ca;
  --muted: #96a49b;
  --green: #71e38d;
  --green-bright: #8df3a4;
  --green-deep: #173c23;
  --green-ink: #07140b;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: var(--green-ink);
  background: var(--green);
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--green-bright);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--green-ink);
  background: var(--green-bright);
  font-weight: 800;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(113, 227, 141, 0.08);
  background: rgba(7, 16, 11, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  text-decoration: none;
}

.brand img {
  margin-right: 11px;
}

.brand-name {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-suffix {
  margin: 2px 0 0 7px;
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.primary-nav a,
.footer-nav a {
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
  transition: color 160ms ease;
}

.primary-nav a:hover,
.footer-nav a:hover {
  color: var(--green-bright);
}

.primary-nav .nav-cta {
  padding: 9px 17px;
  border: 1px solid var(--border-bright);
  border-radius: 999px;
  color: var(--text);
}

.primary-nav .nav-cta:hover {
  border-color: var(--green);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(113, 227, 141, 0.09);
  background:
    radial-gradient(circle at 78% 22%, rgba(42, 141, 71, 0.16), transparent 32%),
    linear-gradient(180deg, #08120c 0%, var(--bg) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0 0 0 50%;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(113, 227, 141, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(113, 227, 141, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, transparent, black 35%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 690px;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
  align-items: center;
  gap: 76px;
  padding-block: 92px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(113, 227, 141, 0.1);
}

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

h1,
h2,
h3 {
  line-height: 1.14;
}

h1 {
  max-width: 720px;
  margin-bottom: 25px;
  font-size: clamp(2.9rem, 4.4vw, 4.5rem);
  font-weight: 760;
  letter-spacing: -0.055em;
}

.hero-emphasis {
  text-decoration-line: underline;
  text-decoration-color: var(--green);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.13em;
  text-decoration-skip-ink: auto;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4.4vw, 3.55rem);
  font-weight: 740;
  letter-spacing: -0.045em;
}

h3 {
  font-size: 1.18rem;
  font-weight: 720;
  letter-spacing: -0.02em;
}

.hero-lede {
  max-width: 640px;
  margin-bottom: 32px;
  color: var(--text-soft);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  line-height: 1.65;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-primary {
  color: var(--green-ink);
  background: var(--green-bright);
  box-shadow: 0 10px 30px rgba(113, 227, 141, 0.12);
}

.button-primary:hover {
  background: #a0f7b2;
}

.button-secondary {
  border-color: var(--border-bright);
  color: var(--text);
  background: rgba(18, 31, 23, 0.65);
}

.button-secondary:hover {
  border-color: var(--green);
  background: var(--surface-soft);
}

.hero-audience {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 30px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  list-style: none;
}

.hero-audience li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-audience li::before {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.hero-visual {
  position: relative;
}

.support-panel {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(17, 30, 22, 0.98), rgba(8, 17, 12, 0.98));
  box-shadow: var(--shadow);
}

.support-panel::before {
  position: absolute;
  top: -120px;
  right: -100px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(113, 227, 141, 0.08);
  filter: blur(2px);
  content: "";
}

.panel-heading {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 31px 30px 25px;
  border-bottom: 1px solid var(--border);
}

.panel-label {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.panel-heading h2 {
  margin: 0;
  font-size: 1.7rem;
  letter-spacing: -0.04em;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid #2c5338;
  border-radius: 999px;
  color: var(--green-bright);
  background: rgba(20, 55, 31, 0.52);
  font-size: 0.68rem;
  font-weight: 800;
  white-space: nowrap;
}

.status-pill span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(141, 243, 164, 0.11);
}

.support-list {
  position: relative;
  display: grid;
  gap: 2px;
  padding: 15px;
}

.support-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  padding: 17px 15px;
  border-radius: 14px;
}

.support-item:hover {
  background: rgba(113, 227, 141, 0.045);
}

.item-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid #2d573a;
  border-radius: 50%;
  color: var(--green-bright);
  background: rgba(25, 62, 35, 0.58);
}

.item-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.support-item strong,
.support-item span {
  display: block;
}

.support-item strong {
  margin: 1px 0 3px;
  font-size: 0.94rem;
}

.support-item div > span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.panel-footer {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 17px 30px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.panel-line {
  height: 1px;
  flex: 1;
  background: linear-gradient(to right, var(--border-bright), transparent);
}

.visual-accent {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(113, 227, 141, 0.18);
  border-radius: 22px;
}

.accent-one {
  inset: 30px -26px -26px 48px;
}

.accent-two {
  inset: 59px -50px -50px 89px;
  opacity: 0.55;
}

.trust-strip {
  border-bottom: 1px solid var(--border);
  background: var(--bg-deep);
}

.trust-items {
  display: grid;
  min-height: 74px;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.trust-items span {
  position: relative;
  color: var(--text-soft);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.02em;
  text-align: center;
}

.trust-items span + span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 20px;
  background: var(--border);
  transform: translateY(-50%);
  content: "";
}

.section {
  padding-block: 116px;
}

.section-heading {
  margin-bottom: 55px;
}

.heading-split {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr;
  align-items: end;
  gap: 90px;
}

.heading-split h2,
.centered-heading h2 {
  margin-bottom: 0;
}

.heading-split > p,
.centered-heading > p:last-child,
.section-intro,
.about-copy > p,
.contact-copy > p {
  color: var(--text-soft);
}

.heading-split > p {
  margin-bottom: 5px;
  font-size: 1.04rem;
}

.services {
  background: var(--bg);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.service-card {
  position: relative;
  min-height: 272px;
  padding: 30px 27px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(16, 28, 20, 0.5), rgba(7, 16, 11, 0.4));
  transition: background 180ms ease, transform 180ms ease;
}

.service-card:hover {
  z-index: 1;
  background: var(--surface-raised);
  box-shadow: inset 3px 0 0 var(--green);
}

.service-icon {
  display: grid;
  width: 45px;
  height: 45px;
  margin-bottom: 28px;
  place-items: center;
  border: 1px solid var(--border-bright);
  border-radius: 12px;
  color: var(--green);
  background: rgba(23, 60, 35, 0.52);
}

.service-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.service-card h3 {
  min-height: 2.7em;
  margin-bottom: 12px;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.89rem;
  line-height: 1.65;
}

.why {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--border);
  background: var(--bg-deep);
}

.why::before {
  position: absolute;
  top: -180px;
  left: -100px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(40, 130, 65, 0.09);
  filter: blur(30px);
  content: "";
}

.why-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.75fr);
  align-items: center;
  gap: 100px;
}

.section-intro {
  max-width: 690px;
  margin-bottom: 38px;
  font-size: 1.06rem;
}

.section-intro p:last-child {
  margin-bottom: 0;
}

.check-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 13px;
  padding: 17px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-soft);
}

.check-list strong {
  color: var(--text);
}

.check-mark {
  display: grid;
  width: 25px;
  height: 25px;
  margin-top: 1px;
  place-items: center;
  border-radius: 50%;
  color: var(--green-ink);
  background: var(--green);
  font-size: 0.8rem;
  font-weight: 900;
}

.principle-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(113, 227, 141, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(113, 227, 141, 0.04) 1px, transparent 1px),
    var(--surface);
  background-size: 32px 32px;
  box-shadow: var(--shadow);
}

.principle-card::after {
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 200px;
  height: 200px;
  border: 40px solid rgba(113, 227, 141, 0.06);
  border-radius: 50%;
  content: "";
}

.principle-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.principle-number {
  color: var(--green);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
}

.principle-card blockquote {
  position: relative;
  z-index: 1;
  margin: 78px 0 62px;
  font-size: clamp(1.45rem, 3vw, 2.05rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.35;
}

.principle-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.principle-tags span {
  padding: 7px 11px;
  border: 1px solid var(--border-bright);
  border-radius: 999px;
  color: var(--text-soft);
  background: rgba(7, 16, 11, 0.8);
  font-size: 0.7rem;
  font-weight: 800;
}

.process {
  background: var(--surface);
}

.centered-heading {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.centered-heading .eyebrow {
  justify-content: center;
}

.centered-heading > p:last-child {
  max-width: 590px;
  margin: 20px auto 0;
}

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

.process-step {
  position: relative;
  padding: 0 42px;
}

.process-step:first-child {
  padding-left: 0;
}

.process-step:last-child {
  padding-right: 0;
}

.step-number {
  color: var(--green);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 800;
}

.step-marker {
  position: relative;
  height: 39px;
  margin: 13px 0 25px;
}

.step-marker::before {
  position: absolute;
  top: 50%;
  right: -42px;
  left: 0;
  height: 1px;
  background: linear-gradient(to right, var(--green), var(--border-bright));
  content: "";
}

.process-step:last-child .step-marker::before {
  right: 0;
}

.step-marker span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 15px;
  height: 15px;
  border: 4px solid var(--surface);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 1px var(--green);
  transform: translateY(-50%);
}

.process-step h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.process-step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.about {
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1.12fr);
  align-items: center;
  gap: 110px;
}

.about-card {
  position: relative;
  display: flex;
  min-height: 480px;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  padding: 38px;
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #13261a, #0a130e);
  box-shadow: var(--shadow);
}

.about-card::after {
  position: absolute;
  top: 88px;
  right: -115px;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(113, 227, 141, 0.25);
  border-radius: 50%;
  box-shadow: 0 0 0 44px rgba(113, 227, 141, 0.025), 0 0 0 88px rgba(113, 227, 141, 0.02);
  content: "";
}

.about-mark {
  position: relative;
  z-index: 2;
}

.about-mark img {
  filter: drop-shadow(0 12px 25px rgba(0, 0, 0, 0.3));
}

.about-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: radial-gradient(rgba(113, 227, 141, 0.2) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: linear-gradient(135deg, black, transparent 60%);
}

.about-system-visual {
  position: absolute;
  z-index: 1;
  top: 96px;
  right: 18px;
  width: min(78%, 360px);
  height: auto;
  opacity: 0.92;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.3));
}

.about-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--text-soft);
  font-size: 1.45rem;
  line-height: 1.4;
}

.about-card strong {
  color: var(--green-bright);
}

.about-copy > p {
  max-width: 700px;
  font-size: 1.03rem;
}

.founder-note {
  max-width: 720px;
  margin-top: 34px;
  padding: 25px 27px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: linear-gradient(90deg, rgba(113, 227, 141, 0.07), rgba(13, 23, 17, 0.7));
}

.founder-note p {
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: 0.96rem;
}

.founder-note .founder-label {
  margin-bottom: 10px;
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 38px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--border);
  overflow: hidden;
}

.about-facts > div {
  padding: 20px 18px;
  background: var(--surface);
}

.about-facts span,
.about-facts strong {
  display: block;
}

.fact-label {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.about-facts strong {
  font-size: 0.82rem;
  line-height: 1.4;
}

.contact {
  border-top: 1px solid var(--border);
  background:
    radial-gradient(circle at 20% 80%, rgba(45, 145, 72, 0.12), transparent 28%),
    var(--bg-deep);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(500px, 0.94fr);
  gap: 100px;
}

.contact-copy > p {
  max-width: 550px;
  font-size: 1.04rem;
}

.email-card {
  display: flex;
  max-width: 400px;
  align-items: center;
  gap: 15px;
  margin-top: 36px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.email-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 10px;
  color: var(--green);
  background: var(--green-deep);
}

.email-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.email-card span,
.email-card a {
  display: block;
}

.email-card div > span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.email-card a {
  color: var(--text);
  font-size: 1rem;
  font-weight: 750;
  text-underline-offset: 4px;
}

.email-card a:hover {
  color: var(--green-bright);
}

.contact-location {
  margin-top: 18px;
  color: var(--muted) !important;
  font-size: 0.82rem !important;
}

.contact-form {
  padding: 34px;
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow);
}

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

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--text-soft);
  font-size: 0.81rem;
  font-weight: 750;
}

.form-field label span {
  color: var(--green);
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 9px;
  color: var(--text);
  background: #09110c;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.form-field input {
  min-height: 47px;
  padding: 10px 13px;
}

.form-field textarea {
  min-height: 140px;
  padding: 12px 13px;
  resize: vertical;
}

.form-field input:hover,
.form-field textarea:hover {
  border-color: var(--border-bright);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--green);
  outline: none;
  box-shadow: 0 0 0 3px rgba(113, 227, 141, 0.12);
}

.prototype-note {
  display: grid;
  grid-template-columns: 21px 1fr;
  gap: 11px;
  margin: 4px 0 22px;
  padding: 12px 13px;
  border: 1px solid #34503c;
  border-radius: 9px;
  color: var(--text-soft);
  background: rgba(27, 51, 35, 0.5);
}

.prototype-note svg {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-width: 1.8;
}

.prototype-note p {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.55;
}

.form-submit {
  width: 100%;
}

.form-status {
  min-height: 1.4em;
  margin: 10px 0 0;
  color: var(--green-bright);
  font-size: 0.78rem;
  text-align: center;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #030604;
}

.footer-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  padding-block: 58px 45px;
}

.footer-brand {
  margin-bottom: 13px;
}

.footer-top p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 28px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 20px 26px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.76rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--text-soft);
  text-underline-offset: 4px;
}

.footer-bottom a:hover {
  color: var(--green-bright);
}

@media (max-width: 1020px) {
  .hero-layout {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 68px;
    padding-block: 80px 105px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    width: min(100%, 620px);
  }

  .hero-grid {
    inset: 35% 0 0;
    mask-image: linear-gradient(to bottom, transparent, black 35%);
  }

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

  .why-layout,
  .about-layout,
  .contact-layout {
    gap: 60px;
  }

  .why-layout {
    grid-template-columns: 1.05fr 0.82fr;
  }

  .about-layout {
    grid-template-columns: minmax(290px, 0.7fr) 1.1fr;
  }

  .contact-layout {
    grid-template-columns: 0.75fr minmax(430px, 1fr);
  }

  .about-facts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .section {
    padding-block: 90px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 12px 20px 20px;
    border-bottom: 1px solid var(--border);
    background: rgba(7, 16, 11, 0.98);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.3);
  }

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

  .primary-nav a {
    padding: 12px 10px;
  }

  .primary-nav .nav-cta {
    margin-top: 7px;
    text-align: center;
  }

  .trust-items {
    grid-template-columns: 1fr 1fr;
    padding-block: 16px;
  }

  .trust-items span {
    padding: 10px;
  }

  .trust-items span:nth-child(3)::before {
    display: none;
  }

  .heading-split,
  .why-layout,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .heading-split {
    gap: 18px;
  }

  .heading-split > p {
    max-width: 620px;
  }

  .why-layout,
  .about-layout,
  .contact-layout {
    gap: 56px;
  }

  .principle-card {
    width: min(100%, 540px);
  }

  .principle-card blockquote {
    margin-block: 55px;
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-step,
  .process-step:first-child,
  .process-step:last-child {
    display: grid;
    grid-template-columns: 42px 1fr;
    column-gap: 22px;
    padding: 0 0 38px;
  }

  .step-number {
    grid-column: 2;
  }

  .step-marker {
    grid-row: 1 / span 3;
    grid-column: 1;
    height: auto;
    margin: 0;
  }

  .step-marker::before,
  .process-step:last-child .step-marker::before {
    inset: 0 auto 0 50%;
    width: 1px;
    height: auto;
    background: linear-gradient(to bottom, var(--green), var(--border-bright));
  }

  .step-marker span {
    top: 3px;
    left: 50%;
    transform: translate(-50%, 0);
  }

  .process-step h3,
  .process-step p {
    grid-column: 2;
  }

  .process-step h3 {
    margin-top: 9px;
  }

  .about-card {
    width: min(100%, 540px);
    min-height: 400px;
  }

  .about-facts {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-copy {
    max-width: 680px;
  }
}

@media (max-width: 560px) {
  body {
    line-height: 1.6;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .header-inner {
    min-height: 68px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .hero-layout {
    gap: 36px;
    padding-block: 48px 58px;
  }

  h1 {
    margin-bottom: 20px;
    font-size: clamp(2.3rem, 10.5vw, 2.8rem);
  }

  h2 {
    margin-bottom: 16px;
    font-size: clamp(1.9rem, 9vw, 2.35rem);
  }

  .eyebrow {
    margin-bottom: 14px;
  }

  .hero-lede {
    margin-bottom: 24px;
    line-height: 1.55;
  }

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

  .hero-audience {
    display: grid;
    grid-template-columns: max-content max-content max-content;
    justify-content: space-between;
    gap: 6px;
    margin-top: 22px;
    font-size: clamp(0.62rem, 2.7vw, 0.7rem);
    letter-spacing: -0.015em;
    white-space: nowrap;
  }

  .hero-audience li {
    gap: 5px;
  }

  .hero-audience li::before {
    width: 3px;
    height: 3px;
  }

  .panel-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 20px 18px 17px;
  }

  .support-list {
    padding: 5px;
  }

  .support-item {
    grid-template-columns: 36px 1fr;
    gap: 11px;
    padding: 11px;
  }

  .item-icon {
    width: 36px;
    height: 36px;
  }

  .panel-footer {
    gap: 10px;
    padding: 12px 18px;
    font-size: 0.58rem;
  }

  .accent-one {
    inset: 22px -12px -18px 29px;
  }

  .accent-two {
    display: none;
  }

  .trust-items {
    grid-template-columns: 1fr 1fr;
    padding-block: 10px;
  }

  .trust-items span {
    padding: 8px 5px;
  }

  .trust-items span:nth-child(3)::before {
    display: none;
  }

  .section {
    padding-block: 52px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-intro {
    margin-bottom: 30px;
    font-size: 0.98rem;
  }

  .heading-split > p,
  .about-copy > p,
  .contact-copy > p {
    font-size: 0.98rem;
  }

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

  .service-card {
    min-height: 0;
    padding: 24px 22px;
  }

  .service-icon {
    margin-bottom: 18px;
  }

  .service-card h3 {
    min-height: 0;
  }

  .service-card p {
    line-height: 1.55;
  }

  .why-layout,
  .about-layout,
  .contact-layout {
    gap: 36px;
  }

  .check-list li {
    padding-block: 14px;
  }

  .principle-card,
  .contact-form {
    padding: 22px 20px;
    border-radius: 18px;
  }

  .founder-note {
    margin-top: 24px;
    padding: 18px;
  }

  .principle-card blockquote {
    margin-block: 34px;
  }

  .process-step,
  .process-step:first-child,
  .process-step:last-child {
    padding-bottom: 28px;
  }

  .process-step:last-child {
    padding-bottom: 0;
  }

  .about-card {
    min-height: 270px;
    padding: 24px;
  }

  .about-system-visual {
    top: 48px;
    right: 12px;
    width: 70%;
  }

  .about-mark img {
    width: 62px;
    height: 62px;
  }

  .about-card p {
    font-size: 1.25rem;
  }

  .about-facts {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .about-facts > div {
    padding: 16px;
  }

  .email-card {
    margin-top: 24px;
  }

  .form-field {
    margin-bottom: 16px;
  }

  .form-field textarea {
    min-height: 120px;
  }

  .prototype-note {
    margin-bottom: 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-top {
    gap: 28px;
    padding-block: 40px 32px;
  }

  .footer-bottom {
    gap: 10px;
    padding-block: 16px 22px;
  }

  .footer-nav {
    justify-content: flex-start;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
