:root {
  color-scheme: light;
  --ink: #172326;
  --muted: #5b686b;
  --line: #d7e0df;
  --paper: #f7f9f8;
  --teal: #18383c;
  --teal-2: #24575c;
  --orange: #bf6538;
  --white: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 5vw, 64px);
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  font-size: 12px;
  letter-spacing: 0.04em;
}

nav {
  display: flex;
  gap: clamp(12px, 3vw, 28px);
  font-size: 14px;
  font-weight: 700;
}

nav a {
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 27, 30, 0.94), rgba(14, 27, 30, 0.68) 42%, rgba(14, 27, 30, 0.18));
}

.hero-content {
  position: relative;
  width: min(760px, 100%);
  padding: 120px clamp(22px, 6vw, 78px) 76px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(58px, 13vw, 118px);
  line-height: 0.92;
}

.lead {
  max-width: 660px;
  margin-bottom: 34px;
  font-size: clamp(22px, 4vw, 34px);
  line-height: 1.18;
  font-weight: 700;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
}

.button.primary {
  background: var(--orange);
  color: var(--white);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 80px);
  padding: clamp(56px, 8vw, 96px) clamp(22px, 6vw, 78px);
}

.section h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.02;
}

.section p,
.contact p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.feature-band article {
  padding: clamp(28px, 5vw, 54px);
  border-right: 1px solid var(--line);
}

.feature-band article:last-child {
  border-right: 0;
}

.feature-band span {
  display: block;
  margin-bottom: 24px;
  color: var(--orange);
  font-weight: 800;
}

.feature-band h3 {
  margin-bottom: 14px;
  font-size: 26px;
}

.feature-band p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.beta {
  background: #eef3f2;
}

.beta-copy p:last-child {
  margin-bottom: 0;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(50px, 7vw, 82px) clamp(22px, 6vw, 78px);
  background: var(--teal);
  color: var(--white);
}

.contact p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

footer {
  padding: 24px clamp(22px, 6vw, 78px);
  background: #10191b;
  color: rgba(255, 255, 255, 0.72);
}

footer p {
  margin: 0;
  font-size: 14px;
}

@media (max-width: 760px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    padding-top: 16px;
  }

  nav {
    gap: 12px;
  }

  .brand span:last-child {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  h1 {
    font-size: 42px;
    line-height: 0.98;
  }

  .lead {
    font-size: 21px;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(14, 27, 30, 0.95), rgba(14, 27, 30, 0.68));
  }

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

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

  .feature-band article:last-child {
    border-bottom: 0;
  }

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