:root {
  color-scheme: light;
  --ink: #151817;
  --muted: #5a625f;
  --paper: #f7f8f6;
  --surface: #ffffff;
  --line: #d9ded8;
  --dark: #111514;
  --dark-2: #1b211f;
  --green: #2f7d5b;
  --green-soft: #dceee5;
  --teal: #246a73;
  --amber: #b7782f;
  --shadow: 0 22px 55px rgba(17, 21, 20, 0.12);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 5vw;
  border-bottom: 1px solid rgba(217, 222, 216, 0.75);
  background: rgba(247, 248, 246, 0.92);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand-mark {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid #c8d2cb;
  border-radius: 8px;
  background: var(--surface);
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--ink);
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  padding: 64px 5vw 56px;
  background:
    linear-gradient(90deg, rgba(17, 21, 20, 0.97), rgba(17, 21, 20, 0.9)),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.045) 0,
      rgba(255, 255, 255, 0.045) 1px,
      transparent 1px,
      transparent 44px
    ),
    var(--dark);
  color: #f5f7f3;
}

.hero-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: 56px;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #92d4b4;
}

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

h1 {
  margin: 0;
  font-size: clamp(44px, 9vw, 92px);
  line-height: 0.98;
  font-weight: 800;
}

.lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: #dbe2dc;
  font-size: clamp(18px, 2.4vw, 23px);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 750;
}

.button.primary {
  background: #f5f7f3;
  color: #111514;
}

.button.secondary {
  border-color: rgba(245, 247, 243, 0.28);
  color: #f5f7f3;
}

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

.signal-panel {
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    #151a19;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.signal-top {
  display: flex;
  gap: 8px;
  height: 54px;
  align-items: center;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.signal-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #6e7974;
}

.signal-top span:nth-child(2) {
  background: var(--green);
}

.signal-top span:nth-child(3) {
  background: var(--amber);
}

.signal-grid {
  position: relative;
  height: 292px;
  margin: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 100% 25%, 12.5% 100%;
}

.axis {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 34%;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.line {
  position: absolute;
  left: 8%;
  width: 84%;
  height: 2px;
  border-radius: 999px;
}

.line-one {
  top: 36%;
  background: var(--green);
  transform: skewY(-8deg);
}

.line-two {
  top: 54%;
  background: var(--amber);
  transform: skewY(7deg);
}

.bar {
  position: absolute;
  bottom: 12%;
  width: 6.5%;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, #85d4b1, #2f7d5b);
}

.b1 { left: 9%; height: 25%; }
.b2 { left: 20%; height: 42%; }
.b3 { left: 31%; height: 33%; }
.b4 { left: 42%; height: 56%; }
.b5 { left: 53%; height: 45%; }
.b6 { left: 64%; height: 64%; }
.b7 { left: 75%; height: 38%; }
.b8 { left: 86%; height: 70%; }

.signal-footer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 0 18px 18px;
}

.signal-footer span {
  height: 44px;
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(146, 212, 180, 0.52), rgba(183, 120, 47, 0.28)),
    rgba(255, 255, 255, 0.08);
}

.section {
  width: min(1180px, calc(100% - 10vw));
  margin: 0 auto;
  padding: 86px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section h2 {
  margin: 0;
  font-size: clamp(30px, 4.5vw, 52px);
  line-height: 1.08;
}

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

.capability {
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.capability h3 {
  margin: 0 0 16px;
  font-size: 20px;
}

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

.company-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.details div {
  min-height: 118px;
  padding: 24px;
  background: var(--surface);
}

dt {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

dd {
  margin: 0;
  font-size: 19px;
  font-weight: 720;
}

.notice {
  margin: 24px 0 0;
  color: var(--muted);
}

.contact-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-radius: 8px;
  padding: 36px;
  background: var(--dark-2);
  color: #f5f7f3;
}

.contact-box h2 {
  margin: 0;
}

address {
  display: grid;
  gap: 10px;
  font-style: normal;
  font-size: 18px;
  font-weight: 750;
}

address a {
  color: #dfeee6;
}

address a:hover,
address a:focus-visible {
  color: #ffffff;
}

.site-footer {
  width: min(1180px, calc(100% - 10vw));
  margin: 0 auto;
  padding: 28px 0 42px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .site-header {
    position: static;
    min-height: auto;
    padding: 18px 5vw;
  }

  .nav {
    display: none;
  }

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

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .signal-panel {
    min-height: 300px;
  }

  .signal-grid {
    height: 194px;
  }

  .capability-grid,
  .details {
    grid-template-columns: 1fr;
  }

  .contact-box {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px;
  }
}

@media (max-width: 520px) {
  .brand {
    gap: 10px;
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section {
    width: min(100% - 32px, 1180px);
    padding: 68px 0;
  }

  .signal-panel {
    display: none;
  }

  .capability,
  .details div {
    padding: 22px;
  }

  .contact-box {
    padding: 24px;
  }
}
