:root {
  --teal: #006c6e;
  --orange: #ff9d00;
  --dark: #131f28;
  --dark-2: #0c141a;
  --panel: #182733;
  --line: #2b414d;
  --text: #f4f7f8;
  --muted: #b5c3c8;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--dark);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--dark);
  color: var(--text);
}

a {
  color: inherit;
}

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

.logo img {
  display: block;
  width: 210px;
  height: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 15px;
}

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

main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 110px);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(310px, .75fr);
  align-items: center;
  gap: 64px;
  padding: 24px 0 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0;
}

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

h1 {
  font-size: clamp(64px, 12vw, 132px);
  line-height: .9;
  letter-spacing: 0;
  margin-bottom: 28px;
}

.lead {
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.12;
  color: var(--text);
  max-width: 780px;
  margin-bottom: 26px;
}

p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  max-width: 760px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 700;
}

.button.primary {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.button.secondary {
  color: var(--orange);
  border-color: var(--orange);
}

.hero-panel {
  border: 1px solid var(--line);
  background: var(--panel);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.metric {
  padding: 28px;
  border-bottom: 1px solid var(--line);
}

.metric:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.metric.wide {
  grid-column: 1 / -1;
  border-bottom: 0;
  border-right: 0;
}

.metric strong {
  display: block;
  color: var(--orange);
  font-size: 42px;
  line-height: 1;
  margin-bottom: 12px;
}

.metric span {
  color: var(--muted);
  line-height: 1.45;
}

.section {
  padding: 86px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 54px;
}

h2 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}

article {
  padding: 26px;
  border-right: 1px solid var(--line);
}

article:last-child {
  border-right: 0;
}

h3 {
  color: var(--text);
  font-size: 22px;
  margin-bottom: 16px;
}

article p {
  font-size: 16px;
}

.statement {
  padding: 90px 0 104px;
  border-top: 1px solid var(--line);
  max-width: 940px;
}

.statement h2 {
  color: var(--orange);
}

footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
}

footer a {
  color: var(--orange);
  text-decoration: none;
}

@media (max-width: 860px) {
  .site-header,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    flex-wrap: wrap;
  }

  .hero,
  .section {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

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

  article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  article:last-child {
    border-bottom: 0;
  }
}
