:root {
  --bg: #0c0e12;
  --panel: #14171d;
  --line: #2a303a;
  --text: #e8eaee;
  --muted: #9aa3b2;
  --orange: #e85c1a;
  --orange-2: #ff7a38;
  --white: #f4f6f8;
  --sans: "IBM Plex Sans", "Helvetica Neue", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: inherit; color: inherit; }

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 14, 18, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo img { height: 36px; width: auto; }
.logo span {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav nav { display: flex; gap: 22px; align-items: center; }
.nav nav a {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav nav a:hover, .nav nav a.active { color: var(--white); }
.cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  padding: 10px 16px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.cta:hover { background: var(--orange-2); }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--text);
  padding: 8px 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,14,18,0.15) 0%, rgba(12,14,18,0.82) 100%);
}
.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 28px 72px;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-2);
  margin-bottom: 18px;
}
h1 {
  font-size: clamp(40px, 6.2vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 500;
  max-width: 16ch;
}
.hero p {
  max-width: 540px;
  margin-top: 22px;
  color: #d5d8de;
}
.hero-actions { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,0.28);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.btn-ghost:hover { border-color: #fff; }

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
.section { padding: 88px 0; }
h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.03em;
  font-weight: 500;
  line-height: 1.1;
}
.lede { color: var(--muted); max-width: 620px; margin-top: 14px; }

.markets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.market {
  background: var(--panel);
  padding: 32px 28px;
  min-height: 220px;
}
.market h3 { font-size: 22px; font-weight: 500; margin-bottom: 10px; }
.market p { color: var(--muted); font-size: 15px; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  background: var(--bg);
  padding: 36px 24px;
}
.stat strong {
  display: block;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.03em;
}
.stat span { color: var(--muted); font-size: 13px; }

.project-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
}
.project-grid.alt { grid-template-columns: 1fr 1.4fr; }
.project-grid.three { grid-template-columns: 1fr 1fr 1fr; }
.proj {
  position: relative;
  overflow: hidden;
  background: var(--panel);
}
.proj img { width: 100%; height: 420px; object-fit: cover; }
.proj .meta {
  padding: 18px 18px 22px;
}
.tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}
.proj h3 { font-size: 22px; font-weight: 500; margin: 6px 0 8px; }
.proj p { color: var(--muted); font-size: 14px; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split img { width: 100%; height: 480px; object-fit: cover; }

ol.steps { list-style: none; margin-top: 36px; }
ol.steps li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
ol.steps .n {
  font-family: var(--mono);
  color: var(--orange);
  font-size: 13px;
}
ol.steps h3 { font-size: 20px; font-weight: 500; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
form { display: grid; gap: 14px; }
label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
input, textarea, select {
  width: 100%;
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 12px 12px;
  font-size: 15px;
}
textarea { min-height: 120px; resize: vertical; }

.footer {
  border-top: 1px solid var(--line);
  padding: 40px 28px 32px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
}
.switch { color: var(--orange); }
.team-group { margin-top: 48px; }
.team-group .group-label { margin-bottom: 20px; }
.team {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 40px;
}
.team.roster { grid-template-columns: repeat(3, 1fr); }
.team h3 { font-size: 20px; font-weight: 500; }
.team span { display: block; margin-top: 4px; color: var(--muted); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; }
.team p { margin-top: 8px; color: var(--muted); font-size: 14px; }
@media (max-width: 860px) {
  .team, .team.roster, .project-grid.three { grid-template-columns: 1fr; }
}
.footer .social {
  color: var(--text);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  align-self: center;
}
.footer .social:hover { color: var(--orange); }

.page-hero { padding: 72px 28px 24px; max-width: 1280px; margin: 0 auto; }

@media (max-width: 860px) {
  .nav nav { display: none; }
  .nav.open nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 20px 28px 24px;
    align-items: flex-start;
  }
  .nav-toggle { display: block; }
  .markets, .stats, .project-grid, .project-grid.alt, .project-grid.three, .split, .contact-grid {
    grid-template-columns: 1fr;
  }
  .proj img, .split img { height: 260px; }
  h1 { max-width: none; }
}
