:root {
  --bg: #090d0f;
  --panel: #101619;
  --panel-2: #151d20;
  --steel: #8fa3a6;
  --steel-bright: #d5dddc;
  --cedar: #c88443;
  --cedar-dark: #7a4a2b;
  --cyan: #4ac7d9;
  --text: #f1f4f2;
  --muted: #aab5b3;
  --line: rgba(213, 221, 220, 0.16);
  --shadow: rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 8%, rgba(74, 199, 217, 0.12), transparent 32rem),
    radial-gradient(circle at 86% 18%, rgba(200, 132, 67, 0.10), transparent 34rem),
    linear-gradient(145deg, #070a0b 0%, #0c1113 46%, #101310 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(143, 163, 166, 0.18), rgba(200, 132, 67, 0.18));
  color: var(--steel-bright);
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
  margin-top: 2px;
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

nav a:hover {
  color: var(--text);
}

.nav-pill {
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
}

.hero {
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 82px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: 56px;
  padding: 54px 0 88px;
}

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

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.lede {
  max-width: 660px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.55vw, 1.24rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 750;
  font-size: 0.95rem;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

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

.primary {
  background: linear-gradient(135deg, var(--cedar), var(--cedar-dark));
  color: #fff;
}

.secondary {
  border: 1px solid var(--line);
  color: var(--steel-bright);
}

.secondary:hover {
  border-color: rgba(213, 221, 220, 0.42);
}

.hero-media {
  margin: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 30px 80px var(--shadow);
}

.hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 20px;
}

.panel,
.statement {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.panel {
  padding: 54px;
}

.panel.compact {
  padding: 38px 54px;
}

.panel.compact .section-heading {
  margin-bottom: 20px;
}

.panel.compact .lede {
  max-width: 860px;
  margin-bottom: 0;
}

.section-heading {
  max-width: 620px;
  margin-bottom: 36px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  line-height: 1.05;
}

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

.capability-grid article {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(9, 13, 15, 0.48);
}

.rule {
  display: block;
  width: 52px;
  height: 3px;
  margin-bottom: 26px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cedar), var(--cyan));
}

h3 {
  margin-bottom: 12px;
  font-size: 1.08rem;
}

.capability-grid p,
.statement-copy p,
dd {
  color: var(--muted);
}

.statement {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 56px;
  padding: 54px;
}

.statement-copy {
  max-width: 680px;
}

dl {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
}

dl div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

dt {
  color: var(--steel-bright);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

dd {
  margin: 0;
}

footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 36px 0 46px;
  color: rgba(170, 181, 179, 0.72);
  font-size: 0.88rem;
}

@media (max-width: 900px) {
  .site-header {
    min-height: auto;
    padding: 22px 0;
    align-items: flex-start;
  }

  nav {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 40px 0 64px;
  }

  .hero-media img {
    aspect-ratio: 16 / 10;
  }

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

  .panel,
  .statement {
    padding: 34px 24px;
    border-radius: 22px;
  }

  .panel.compact {
    padding: 30px 24px;
  }

  dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 620px) {
  .site-header {
    width: min(100% - 28px, 1180px);
    display: grid;
  }

  nav {
    justify-content: flex-start;
  }

  .hero,
  .panel,
  .statement,
  footer {
    width: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 3.85rem);
  }

  .button {
    width: 100%;
  }
}
