:root {
  --bg: #070807;
  --panel: #101410;
  --panel-strong: #172317;
  --text: #f7faf6;
  --muted: #b7c0b4;
  --soft: #eef3e8;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #8dd36f;
  --accent-strong: #1b3b0e;
  --gold: #e0c36d;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

.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;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(20px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 8, 7, 0.78);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 8, 7, 0.94);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Figtree, Inter, sans-serif;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  overflow: hidden;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0c0f0c;
}

.brand-mark img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}

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

.site-nav a {
  border-radius: var(--radius);
  color: var(--muted);
  font-weight: 600;
  padding: 10px 14px;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
}

.section {
  padding: 112px clamp(20px, 5vw, 64px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.68fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: center;
  min-height: 100vh;
  padding-top: 132px;
  background:
    radial-gradient(circle at 80% 20%, rgba(141, 211, 111, 0.16), transparent 32%),
    linear-gradient(140deg, #070807 0%, #101410 58%, #0a0b0a 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--accent);
  font-family: Figtree, Inter, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

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

h1,
h2 {
  font-family: Figtree, Inter, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 840px;
  font-size: clamp(54px, 9vw, 118px);
}

h2 {
  max-width: 820px;
  font-size: clamp(38px, 5.4vw, 72px);
}

h3 {
  font-family: Figtree, Inter, sans-serif;
  font-size: 22px;
  line-height: 1.15;
}

.hero-content p {
  max-width: 680px;
  margin-top: 28px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  padding: 13px 20px;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button.primary {
  background: var(--accent);
  color: #0b1208;
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.hero-panel {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(16, 20, 16, 0.76);
  box-shadow: var(--shadow);
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
}

.panel-top img {
  width: 50px;
  height: 50px;
  border-radius: var(--radius);
  background: #090b09;
  object-fit: contain;
  padding: 8px;
}

.panel-top strong,
.panel-top span {
  display: block;
}

.panel-top strong {
  font-family: Figtree, Inter, sans-serif;
  font-size: 22px;
}

.panel-top span {
  color: var(--muted);
  font-size: 14px;
}

.signal-card,
.service-card,
.process-step,
.contact-form,
.contact-links a {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.signal-card {
  padding: 18px;
}

.signal-card.active {
  background: linear-gradient(135deg, rgba(141, 211, 111, 0.18), rgba(224, 195, 109, 0.12));
}

.signal-card span {
  color: var(--gold);
  font-weight: 800;
}

.signal-card strong {
  display: block;
  margin-top: 8px;
  font-family: Figtree, Inter, sans-serif;
  font-size: 20px;
}

.signal-card p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.section-heading {
  display: grid;
  gap: 6px;
  margin-bottom: 42px;
}

.section-heading.center {
  justify-items: center;
  text-align: center;
}

.about {
  background: var(--soft);
  color: #11160f;
}

.about .eyebrow {
  color: var(--accent-strong);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 48px);
  align-items: start;
}

.about-grid > p {
  max-width: 880px;
  color: #455040;
  font-size: clamp(18px, 2.2vw, 24px);
}

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

.metrics div {
  display: flex;
  min-width: 0;
  min-height: 176px;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(17, 22, 15, 0.14);
  border-radius: var(--radius);
  padding: clamp(18px, 2.4vw, 26px);
  background: rgba(255, 255, 255, 0.72);
}

.metrics strong,
.metrics span {
  display: block;
}

.metrics strong {
  font-family: Figtree, Inter, sans-serif;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.05;
}

.metric-title {
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: clamp(7px, 0.9vw, 10px);
  min-width: 0;
  white-space: nowrap;
}

.metric-icon {
  width: clamp(20px, 1.7vw, 26px);
  height: clamp(20px, 1.7vw, 26px);
  flex: 0 0 auto;
  fill: none;
  stroke: #11160f;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.metrics span {
  margin-top: 6px;
  color: #596453;
  font-weight: 700;
  font-size: clamp(17px, 1.35vw, 21px);
}

.services {
  background: #0b0d0b;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  min-height: 270px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(141, 211, 111, 0.38);
  background: rgba(141, 211, 111, 0.08);
}

.service-asset {
  display: grid;
  width: 100%;
  min-height: 148px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

.service-asset img {
  width: min(190px, 78%);
  max-height: 126px;
  object-fit: contain;
}

.service-card p {
  margin-top: 14px;
  color: var(--muted);
}

.process {
  background: #11160f;
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-step {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 22px;
  padding: 24px;
}

.process-step > span {
  color: var(--gold);
  font-family: Figtree, Inter, sans-serif;
  font-size: 24px;
  font-weight: 900;
}

.process-step p {
  margin-top: 8px;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 7vw, 84px);
  background:
    radial-gradient(circle at 20% 30%, rgba(224, 195, 109, 0.12), transparent 34%),
    #070807;
}

.contact-copy p {
  max-width: 560px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 19px;
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.contact-links a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  color: var(--text);
  transition: border-color 160ms ease, transform 160ms ease;
}

.contact-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(141, 211, 111, 0.42);
}

.contact-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  padding: 7px;
  border: 1px solid rgba(141, 211, 111, 0.28);
  border-radius: var(--radius);
  background: rgba(141, 211, 111, 0.1);
  fill: #ffffff;
}

.contact-links strong {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-weight: 800;
}

.contact-links span {
  color: var(--text);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 30px);
  background: rgba(16, 20, 16, 0.82);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font: inherit;
  padding: 14px 15px;
  outline: none;
  transition: border-color 160ms ease, background 160ms ease;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(141, 211, 111, 0.68);
  background: rgba(255, 255, 255, 0.085);
}

.contact-form .button {
  width: 100%;
}

.form-status {
  min-height: 22px;
  color: var(--accent);
  font-size: 14px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 5vw, 64px);
  border-top: 1px solid var(--line);
  background: #050605;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero,
  .about-grid,
  .contact {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 720px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(7, 8, 7, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px;
  }

  .section {
    padding: 82px 20px;
  }

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

  .metrics,
  .contact-links {
    grid-template-columns: 1fr;
  }

  .process-step {
    grid-template-columns: 1fr;
  }

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