:root {
  --ink: #06140f;
  --ink-2: #10241d;
  --text: #1e2f28;
  --muted: #60736c;
  --paper: #fbfdfb;
  --white: #ffffff;
  --soft: #eef7f2;
  --line: #d9e6e0;
  --green: #0e9f6e;
  --green-2: #20c58e;
  --blue: #1677ff;
  --gold: #f2b705;
  --coral: #df4e61;
  --max-width: 1180px;
  --radius: 8px;
  --radius-sm: 6px;
  --header-h: 76px;
  --shadow: 0 22px 60px rgba(6, 20, 15, .12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--paper);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
  padding: 0 5vw;
  border-bottom: 1px solid rgba(217, 230, 224, .8);
  background: rgba(251, 253, 251, .94);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 220px;
  min-width: 178px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: var(--radius);
  color: var(--ink-2);
  font-size: .93rem;
  font-weight: 760;
  letter-spacing: 0;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--soft);
  outline: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}

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

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

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

.hero {
  position: relative;
  overflow: hidden;
  min-height: 94svh;
  display: grid;
  align-items: center;
  color: var(--white);
  background: var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, .45));
  pointer-events: none;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .72;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 20, 15, .98) 0%, rgba(6, 20, 15, .86) 48%, rgba(6, 20, 15, .55) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max-width), 90vw);
  min-height: 94svh;
  margin: 0 auto;
  padding: calc(var(--header-h) + 58px) 0 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .88fr);
  align-items: center;
  gap: 64px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--green-2);
  font-size: .78rem;
  font-weight: 850;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--white);
  font-size: 5.8rem;
  line-height: .96;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero-statement {
  margin: 22px 0 0;
  color: var(--green-2);
  font-size: 1.45rem;
  line-height: 1.35;
  font-weight: 760;
}

.hero-lede {
  max-width: 660px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 1.08rem;
  line-height: 1.75;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 820;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn-primary {
  color: var(--ink);
  background: var(--green);
  box-shadow: 0 14px 30px rgba(14, 159, 110, .28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--green-2);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .08);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .12);
}

.system-console {
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
  overflow: hidden;
}

.console-top,
.console-products {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.console-top span,
.console-products span,
.platform-meta,
.story-card-tag,
.story-meta {
  color: rgba(255, 255, 255, .68);
  font-size: .76rem;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
}

.console-top strong {
  color: var(--white);
  font-size: 1rem;
}

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

.console-grid div {
  min-height: 148px;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.console-grid div:nth-child(2n) {
  border-right: 0;
}

.console-grid div:nth-child(n + 3) {
  border-bottom: 0;
}

.console-grid span {
  color: var(--green-2);
  font-weight: 860;
}

.console-grid strong {
  display: block;
  margin-top: 24px;
  color: var(--white);
  font-size: 1.45rem;
}

.console-grid p,
.console-products a {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .72);
  line-height: 1.55;
}

.console-products {
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 0;
}

.console-products a {
  margin: 0;
  color: var(--white);
  font-weight: 760;
}

.console-products a:hover,
.console-products a:focus-visible {
  color: var(--green-2);
  outline: none;
}

.capability-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.section-inner {
  width: min(var(--max-width), 90vw);
  margin: 0 auto;
}

.strip-grid {
  min-height: 76px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  gap: 12px;
}

.strip-grid span {
  color: var(--ink-2);
  font-size: .9rem;
  font-weight: 820;
  text-align: center;
}

.intro-section,
.services-section,
.systems-section,
.method-section,
.contact-section,
.stories-section {
  padding: 96px 0;
}

.intro-grid,
.systems-layout,
.method-layout,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1fr);
  gap: 62px;
  align-items: start;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: 2.65rem;
  line-height: 1.12;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading p,
.intro-copy p,
.contact-copy {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.78;
}

.section-heading p:not(.section-kicker) {
  margin-top: 16px;
}

.intro-copy {
  display: grid;
  gap: 18px;
}

.proof-section {
  padding: 34px 0;
  background: var(--ink);
  color: var(--white);
}

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

.proof-item {
  min-height: 132px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
}

.proof-item strong {
  display: block;
  color: var(--white);
  font-size: 2.7rem;
  line-height: 1;
}

.proof-item span {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, .66);
  font-weight: 760;
}

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

.service-card,
.platform-card,
.timeline article,
.story-card,
.story-article,
.contact-form {
  border-radius: var(--radius);
}

.service-card {
  min-height: 330px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-card h3,
.platform-card h3,
.timeline h3,
.story-card h3 {
  margin: 18px 0 10px;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.3;
  letter-spacing: 0;
}

.service-card p,
.platform-card p,
.timeline p,
.story-card p,
.story-body p,
.story-excerpt {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 18px;
  color: var(--text);
  font-size: .94rem;
  line-height: 1.5;
}

.service-card li::before {
  content: "";
  position: absolute;
  top: .68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--soft);
  font-weight: 900;
}

.accent-green { border-top: 4px solid var(--green); }
.accent-blue { border-top: 4px solid var(--blue); }
.accent-gold { border-top: 4px solid var(--gold); }
.accent-coral { border-top: 4px solid var(--coral); }
.accent-ink { border-top: 4px solid var(--ink); }

.systems-section {
  background: var(--soft);
}

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

.system-list span {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink-2);
  font-weight: 760;
  line-height: 1.35;
}

.platforms-section {
  position: relative;
  padding: 96px 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), #09231b);
  overflow: hidden;
}

.platforms-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

.platforms-section .section-inner {
  position: relative;
  z-index: 1;
}

.section-heading.light h2,
.section-heading.light p:not(.section-kicker) {
  color: var(--white);
}

.section-heading.light p:not(.section-kicker) {
  opacity: .76;
}

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

.platform-card {
  min-height: 360px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(14px);
}

.platform-meta {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: var(--gold);
}

.platform-card h3 {
  color: var(--white);
  font-size: 2rem;
}

.platform-card p {
  color: rgba(255, 255, 255, .74);
}

.platform-card dl {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
}

.platform-card dl div {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.platform-card dt {
  color: rgba(255, 255, 255, .56);
  font-size: .86rem;
  font-weight: 820;
}

.platform-card dd {
  margin: 0;
  color: rgba(255, 255, 255, .86);
  line-height: 1.55;
}

.platform-card a {
  display: inline-flex;
  margin-top: 24px;
  color: var(--green-2);
  font-weight: 820;
}

.platform-card a:hover,
.platform-card a:focus-visible {
  color: var(--white);
  outline: none;
}

.sticky-heading {
  position: sticky;
  top: calc(var(--header-h) + 36px);
  margin-bottom: 0;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline article {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 0 20px;
  min-height: 148px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.timeline span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-weight: 860;
}

.timeline h3 {
  margin-top: 0;
}

.contact-section {
  color: var(--white);
  background: var(--ink-2);
}

.contact-section h2 {
  color: var(--white);
}

.contact-copy {
  margin-top: 22px;
  color: rgba(255, 255, 255, .74);
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.contact-points span,
.contact-points a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, .82);
  font-size: .9rem;
  font-weight: 760;
  text-decoration: none;
}

.contact-points a:hover {
  border-color: rgba(59, 130, 246, .55);
  color: var(--white);
}

.contact-form {
  display: grid;
  gap: 15px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .07);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--white);
  font-weight: 760;
  font-size: .94rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: rgba(255, 255, 255, .96);
}

.contact-form textarea {
  resize: vertical;
  min-height: 136px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgba(14, 159, 110, .2);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--green-2);
  font-size: .9rem;
  font-weight: 760;
}

.site-footer {
  padding: 66px 0 0;
  color: var(--white);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(130px, 1fr));
  gap: 38px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-brand img {
  width: 208px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 300px;
  margin: 0;
  color: rgba(255, 255, 255, .66);
  line-height: 1.7;
}

.footer-col h4 {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, .94);
  font-size: .86rem;
  font-weight: 840;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  margin-bottom: 11px;
  color: rgba(255, 255, 255, .66);
  font-size: .95rem;
}

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

.footer-bottom {
  padding: 22px 0;
  color: rgba(255, 255, 255, .56);
  font-size: .9rem;
  font-weight: 700;
}

.hero-sm,
.hero-sm .hero-content {
  min-height: 48svh;
}

.hero-sm .hero-content {
  grid-template-columns: 1fr;
  padding: calc(var(--header-h) + 42px) 0 56px;
}

.hero-sm .hero-copy {
  max-width: 800px;
}

.hero-sm h1 {
  font-size: 4.2rem;
}

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

.story-card {
  display: flex;
  flex-direction: column;
  min-height: 286px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.story-card-tag,
.story-meta {
  color: var(--green);
}

.story-card h3 a:hover,
.story-card h3 a:focus-visible {
  color: var(--green);
  outline: none;
}

.story-card p {
  flex: 1 1 auto;
  margin-bottom: 18px;
}

.story-card time {
  color: var(--muted);
  font-size: .86rem;
  font-weight: 760;
}

.story-reader {
  padding: 72px 0 100px;
}

.story-reader[hidden] {
  display: none;
}

.story-reader-inner {
  display: flex;
  flex-direction: column;
  max-width: 820px;
}

.story-back {
  align-self: flex-start;
  margin-bottom: 28px;
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.story-article {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.story-header {
  padding: 36px;
  color: var(--white);
  background: var(--ink);
}

.story-header h2 {
  margin-top: 14px;
  color: var(--white);
  font-size: 2.25rem;
}

.story-excerpt {
  color: rgba(255, 255, 255, .74);
  font-size: 1.04rem;
}

.story-body {
  padding: 36px;
}

.story-body p {
  margin-bottom: 18px;
  color: var(--text);
  font-size: 1.04rem;
  line-height: 1.82;
}

.story-body p:last-child {
  margin-bottom: 0;
}

.noscript-note {
  padding: 14px 16px;
  border-radius: var(--radius);
  color: var(--text);
  background: var(--soft);
  line-height: 1.6;
}

@media (max-width: 1060px) {
  .hero h1 {
    font-size: 4.4rem;
  }

  .hero-content,
  .intro-grid,
  .systems-layout,
  .method-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    gap: 42px;
  }

  .system-console {
    max-width: 560px;
  }

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

  .platform-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .sticky-heading {
    position: static;
  }
}

@media (max-width: 740px) {
  :root {
    --header-h: 66px;
  }

  .site-header {
    height: var(--header-h);
  }

  .brand {
    width: 176px;
    min-width: 160px;
  }

  .menu-toggle {
    display: inline-flex;
    position: relative;
    z-index: 110;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 16px 5vw 20px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    min-height: 48px;
    justify-content: flex-start;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-content {
    min-height: 86svh;
    padding: calc(var(--header-h) + 34px) 0 42px;
  }

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

  .hero-statement {
    font-size: 1.18rem;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .system-console {
    display: none;
  }

  .strip-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-height: 132px;
    padding: 14px 0;
  }

  .intro-section,
  .services-section,
  .systems-section,
  .method-section,
  .contact-section,
  .platforms-section,
  .stories-section {
    padding: 72px 0;
  }

  h2 {
    font-size: 2rem;
  }

  .proof-item {
    min-height: 112px;
  }

  .services-grid,
  .system-list,
  .stories-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .timeline article {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .timeline span {
    margin-bottom: 16px;
  }

  .platform-card dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .story-header,
  .story-body {
    padding: 24px;
  }
}

@media (max-width: 430px) {
  .brand {
    width: 158px;
  }

  .hero h1,
  .hero-sm h1 {
    font-size: 2.52rem;
  }

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

  .contact-form {
    padding: 18px;
  }

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

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

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