:root {
  --bg: #0b0d0f;
  --panel: #111417;
  --panel-2: #171b1f;
  --text: #f3f4f5;
  --muted: #a6adb4;
  --line: #2b3035;

  --accent: #3b82f6;
  --accent-soft: #93c5fd;

  --max: 1180px;
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);

  font-family: Inter, ui-sans-serif, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;

  line-height: 1.6;
}

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

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

.shell {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 20px 0;
  background: rgba(11, 13, 15, 0.82);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--accent);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav a:hover,
.text-link:hover,
.contact-links a:hover {
  color: var(--accent);
}

.nav-cta {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.hero {
  min-height: 84vh;
  padding: clamp(90px, 13vw, 165px) 0 80px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 970px;
  margin: 0;
  font-size: clamp(3.5rem, 8.4vw, 7.8rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
}

.accent {
  color: var(--accent);
}

.hero-copy {
  max-width: 760px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
}

.button-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #111;
}

.button-primary:hover {
  background: var(--accent-soft);
}

.button-secondary:hover {
  border-color: #6d7379;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 90px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.hero-grid article {
  min-height: 220px;
  padding: 28px;
  background: var(--panel);
}

.hero-grid h2 {
  margin: 52px 0 8px;
  font-size: 1.25rem;
}

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

.stat-number,
.project-number {
  color: #737b82;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.section {
  padding: 120px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  margin-bottom: 54px;
}

.section-heading h2 {
  grid-column: 2;
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.2rem, 4.8vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.section-heading > p:last-child {
  grid-column: 2;
  max-width: 700px;
  margin: 0;
  color: var(--muted);
}
