:root {
  color-scheme: dark;
  --bg: #10191c;
  --text: #e7ece9;
  --muted: #b6c3c1;
  --dim: #82918f;
  --line: #2a3a3b;
  --accent: #ffa51f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.signal-field {
  display: block;
  width: 100%;
  height: 100%;
}

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

.shell {
  position: relative;
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  width: min(100%, 1440px);
  margin: 0 auto;
  flex-direction: column;
  overflow: hidden;
  padding: 28px 56px 0;
}

.signal-field,
.shade {
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.signal-field {
  opacity: 1;
}

.shade {
  background: linear-gradient(
    90deg,
    rgb(16 25 28 / 18%) 0%,
    rgb(16 25 28 / 2%) 42%,
    rgb(16 25 28 / 32%) 100%
  );
}

.topbar,
.hero,
.footer {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mark {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
}

.contact-link,
.button {
  border-radius: 999px;
  font-size: 14px;
  font-weight: 650;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    transform 160ms ease;
}

.contact-link {
  border: 1px solid var(--line);
  padding: 9px 16px;
}

.contact-link:hover,
.button.secondary:hover {
  border-color: var(--dim);
}

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

.hero {
  display: grid;
  flex: 1;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 0.72fr);
  align-items: center;
  gap: 48px;
  padding: 40px 0;
}

.copy {
  max-width: 780px;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 32px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgb(0 0 0 / 10%);
  padding: 9px 16px;
  color: var(--dim);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  color: #f6f8f4;
  font-size: clamp(64px, 8.6vw, 124px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.lede {
  max-width: 620px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 20px;
  letter-spacing: -0.015em;
  line-height: 1.65;
}

.actions {
  display: flex;
  gap: 12px;
  margin-top: 44px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
}

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

.button.primary:hover {
  background: #ffc15e;
}

.button.secondary {
  border: 1px solid var(--line);
}

.logo-wrap {
  width: min(100%, 610px);
  aspect-ratio: 1305 / 1206;
  margin: 0 auto;
}

.logo-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding: 16px 0;
  color: var(--dim);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .shell {
    padding: 24px 24px 0;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 72px 0 32px;
  }

  .logo-wrap {
    max-width: 420px;
  }
}

@media (max-width: 560px) {
  .contact-link {
    padding: 8px 13px;
    font-size: 13px;
  }

  h1 {
    font-size: 64px;
  }

  .lede {
    font-size: 18px;
  }

  .actions,
  .footer {
    align-items: stretch;
    flex-direction: column;
  }
}
