:root {
  --ink: #f4f7f4;
  --muted: #9aa8a4;
  --paper: #070a0c;
  --panel: #0d1315;
  --deep: #020405;
  --line: rgba(233, 244, 238, 0.13);
  --cyan: #00a7b5;
  --green: #52d99d;
  --amber: #f0a43a;
  --steel: #1a2425;
  --font-geist-sans: "Geist", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-geist-mono: "Geist Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-geist-sans);
}

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

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 6%, rgba(0, 167, 181, 0.12), transparent 26rem),
    radial-gradient(circle at 12% 36%, rgba(82, 217, 157, 0.07), transparent 24rem),
    linear-gradient(180deg, #090f11 0, var(--paper) 42rem),
    var(--paper);
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 76px;
  padding: 0 calc((100vw - min(1180px, calc(100vw - 2rem))) / 2);
  color: #f8fbf9;
  border-bottom: 1px solid rgba(233, 244, 238, 0.09);
  background: rgba(7, 10, 12, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-logo {
  width: 3.25rem;
  height: 3.25rem;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  padding: 0.28rem;
  background: rgba(255, 255, 255, 0.06);
  object-fit: contain;
  backdrop-filter: blur(14px);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.08;
}

.brand small {
  margin-top: 0.25rem;
  color: rgba(248, 251, 249, 0.68);
  font-size: 0.78rem;
}

.topbar nav {
  display: flex;
  gap: 1.2rem;
}

.topbar nav a {
  color: rgba(248, 251, 249, 0.78);
  font-size: 0.9rem;
}

.topbar nav a:hover {
  color: #fff;
}

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: center;
  padding: 7.5rem 0 5rem;
  color: #fff;
  isolation: isolate;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: 62% center;
  z-index: -2;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(2, 4, 5, 0.97) 0, rgba(7, 16, 20, 0.86) 38%, rgba(7, 16, 20, 0.34) 100%),
    linear-gradient(180deg, rgba(2, 4, 5, 0.38), rgba(2, 4, 5, 0.92));
}

.hero-content {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding-top: 2rem;
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(18rem, 0.42fr);
  gap: 3rem;
  align-items: end;
}

.kicker,
.eyebrow {
  margin: 0 0 1rem;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
}

.kicker {
  color: #8ce6ca;
}

.eyebrow {
  color: var(--green);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(3rem, 5.3vw, 5.55rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2.1rem, 3.8vw, 4.25rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.24rem;
  line-height: 1.16;
  letter-spacing: 0;
}

h4 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 38rem;
  margin: 1.45rem 0 0;
  color: rgba(248, 251, 249, 0.78);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.hero-note {
  align-self: end;
  justify-self: end;
  max-width: 22rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding-top: 1rem;
  color: rgba(248, 251, 249, 0.76);
}

.hero-note span {
  display: block;
  color: var(--green);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.74rem;
  font-weight: 820;
  text-transform: uppercase;
}

.hero-note strong {
  display: block;
  margin-top: 0.6rem;
  color: #f8fbf9;
  font-size: 1.12rem;
  line-height: 1.35;
}

.hero-note p {
  margin: 0.7rem 0 0;
  color: rgba(248, 251, 249, 0.62);
  line-height: 1.55;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  border-radius: 4px;
  padding: 0.9rem 1.1rem;
  font-weight: 820;
  line-height: 1.1;
}

.button-light {
  background: #f8fbf9;
  color: var(--deep);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.22);
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: #f8fbf9;
}

.button-dark {
  background: linear-gradient(135deg, var(--green), var(--cyan));
  color: #03100e;
  box-shadow: 0 18px 54px rgba(0, 167, 181, 0.22);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1180px, calc(100% - 2rem));
  margin: 1rem auto 0;
  position: relative;
  z-index: 4;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(13, 19, 21, 0.92);
  box-shadow: none;
}

.proof-strip article {
  min-height: 8.1rem;
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  gap: 0.65rem;
  padding: 1.15rem 1.25rem 1.2rem;
  border-right: 1px solid var(--line);
}

.proof-strip article:last-child {
  border-right: 0;
}

.proof-label {
  color: var(--green);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.72rem;
  font-weight: 820;
  line-height: 1;
  text-transform: uppercase;
}

.proof-strip strong {
  display: block;
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  line-height: 1.05;
  color: #f8fbf9;
}

.proof-strip span {
  display: block;
  color: var(--muted);
  max-width: 17rem;
  font-size: 0.95rem;
  line-height: 1.45;
}

.section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 5.75rem 0 0;
}

.intro-grid,
.approach-section,
.evidence-section,
.industry-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 3.25rem;
}

.intro-grid {
  align-items: end;
}

.intro-grid > p,
.approach-copy p,
.timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.capability-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1180px, calc(100% - 2rem));
  margin: 2.5rem auto 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.capability-board article {
  min-height: 15.5rem;
  display: grid;
  grid-template-rows: auto minmax(4rem, auto) 1fr;
  align-content: start;
  padding: 1.45rem;
  border-right: 1px solid var(--line);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    rgba(13, 19, 21, 0.72);
}

.capability-board article:last-child {
  border-right: 0;
}

.capability-board p {
  margin: 0 0 1.5rem;
  color: var(--green);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
}

.capability-board h3 {
  max-width: 17rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.9rem;
  font-size: 1.48rem;
  color: #f8fbf9;
}

.capability-board span {
  display: block;
  max-width: 27rem;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

.approach-section {
  align-items: start;
}

.approach-copy {
  position: sticky;
  top: 7rem;
}

.approach-copy p:last-child {
  margin-top: 1.4rem;
}

.timeline {
  border-top: 1px solid var(--line);
}

.timeline article {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr);
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.timeline span {
  color: var(--cyan);
  font-family: var(--font-geist-mono), monospace;
  font-weight: 860;
}

.timeline h3 {
  margin-bottom: 0.55rem;
  color: #f8fbf9;
}

.evidence-section {
  align-items: start;
}

.evidence-section > div:first-child {
  max-width: 34rem;
}

.evidence-section h2 {
  font-size: clamp(2.1rem, 3.4vw, 3.65rem);
  line-height: 1;
}

.focus-panel {
  border: 1px solid var(--line);
  padding: 1.35rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    var(--panel);
}

.focus-panel h3 {
  margin-bottom: 1.2rem;
}

.focus-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.focus-list section {
  display: grid;
  grid-template-rows: minmax(2.6rem, auto) 1fr;
  min-height: 12rem;
  padding: 1rem;
  background: rgba(7, 10, 12, 0.28);
}

.focus-list h4 {
  color: #f8fbf9;
}

.focus-list p {
  max-width: none;
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.58;
  overflow-wrap: normal;
  word-break: normal;
}

.industry-section {
  align-items: start;
}

.industry-section h2 {
  font-size: clamp(2.1rem, 3.4vw, 3.65rem);
  line-height: 1;
}

.industry-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.industry-list article {
  min-height: 10.5rem;
  display: grid;
  grid-template-rows: minmax(2.4rem, auto) 1fr;
  padding: 1.25rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    var(--panel);
}

.industry-list h3 {
  margin-bottom: 0.7rem;
  font-size: 1.08rem;
}

.industry-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.contact-section {
  width: min(1180px, calc(100% - 2rem));
  margin: 5.75rem auto 2rem;
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(16rem, 0.32fr);
  gap: 2rem;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 2.4rem 0 2rem;
}

.contact-section .button {
  align-self: center;
  justify-self: stretch;
  transform: translateY(0.9rem);
}

.contact-section h2 {
  max-width: 54rem;
  font-size: clamp(2.1rem, 4vw, 4.45rem);
  line-height: 1;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 1.25rem 0 1.6rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer a {
  margin-left: auto;
  color: #dbe8e2;
}

@media (max-width: 980px) {
  .topbar {
    position: absolute;
    padding: 0 1.5rem;
  }

  .hero {
    min-height: 76vh;
  }

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

  .hero-note {
    justify-self: start;
  }

  .proof-strip,
  .capability-board,
  .intro-grid,
  .approach-section,
  .evidence-section,
  .industry-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .proof-strip article,
  .capability-board article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip article:last-child,
  .capability-board article:last-child {
    border-bottom: 0;
  }

  .capability-board article {
    min-height: 16rem;
  }

  .approach-copy {
    position: static;
  }

  .industry-list {
    grid-template-columns: 1fr;
  }

  .focus-list {
    grid-template-columns: 1fr;
  }

  .contact-section .button {
    justify-self: start;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer a {
    margin-left: 0;
  }
}

@media (max-width: 680px) {
  .topbar {
    align-items: flex-start;
    min-height: 72px;
    padding: 1rem;
  }

  .brand small {
    display: none;
  }

  .topbar nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
  }

  .topbar nav a {
    padding: 0;
    font-size: 0.8rem;
  }

  .hero {
    min-height: auto;
    padding: 8.25rem 0 3.5rem;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(2, 4, 5, 0.98), rgba(7, 16, 20, 0.78)),
      linear-gradient(180deg, rgba(2, 4, 5, 0.25), rgba(2, 4, 5, 0.94));
  }

  h1 {
    font-size: clamp(2.85rem, 13vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2rem, 9.5vw, 3.1rem);
  }

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

  .proof-strip {
    margin-top: 0;
    width: 100%;
    border-left: 0;
    border-right: 0;
  }

  .section,
  .capability-board,
  .contact-section {
    width: calc(100% - 2rem);
  }

  .section {
    padding-top: 5rem;
  }

  .timeline article {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}
