@font-face {
  font-family: "Pinyon Script";
  src: url("/assets/pinyon-script.ttf") format("truetype");
  font-display: swap;
}

:root {
  color-scheme: light;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  background: #d8dbe0;
  color: #17191e;
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: #d8dbe0;
}

body {
  min-width: 320px;
  margin: 0;
  background: #d8dbe0;
}

a {
  color: inherit;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 76px);
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background-color: #eef0f3;
  background-image: url("/assets/zxc-duel-stage.jpg");
  background-position: center;
  background-size: cover;
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 12, 16, 0.2), transparent 30%, transparent 70%, rgba(255, 255, 255, 0.22));
  content: "";
}

.hero__content {
  width: min(760px, calc(100% - 40px));
  padding: 56px 24px 40px;
  text-align: center;
}

.hero__eyebrow {
  margin: 0 0 14px;
  color: #4e5660;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: #111319;
  font-family: "Times New Roman", Georgia, serif;
  font-size: 104px;
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 0;
  text-shadow: 0 1px 0 #fff, 0 10px 34px rgba(64, 70, 80, 0.2);
}

.hero__lead {
  margin: 24px 0 0;
  color: #30353d;
  font-family: "Pinyon Script", Georgia, serif;
  font-size: 38px;
  line-height: 1;
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-width: 172px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(81, 88, 99, 0.72);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 7px 20px rgba(36, 40, 48, 0.15);
  transition: transform 150ms ease, border-color 150ms ease, background-color 150ms ease;
}

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

.button:focus-visible {
  outline: 3px solid #1f7751;
  outline-offset: 3px;
}

.button--primary {
  border-color: #323740;
  background: linear-gradient(#4b515b, #242830);
  color: #fff;
}

.button--primary:hover {
  border-color: #0a6f49;
  background: #276f55;
}

.button--secondary {
  background: rgba(246, 247, 249, 0.75);
  color: #252a31;
  backdrop-filter: blur(8px);
}

.button--secondary:hover {
  border-color: #a62e35;
  background: rgba(255, 255, 255, 0.92);
}

.hero__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 24px;
  color: #555c66;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #29915f;
  box-shadow: 0 0 0 3px rgba(41, 145, 95, 0.14);
}

.hero__meta-separator {
  width: 1px;
  height: 12px;
  background: #a7adb5;
}

.signal {
  display: grid;
  min-height: 76px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  border-top: 1px solid #fff;
  background: linear-gradient(#dfe2e6, #c9cdd3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.signal p {
  margin: 0;
  padding: 12px 18px;
  border-right: 1px solid rgba(104, 111, 121, 0.26);
  color: #3d434c;
  font-family: Georgia, serif;
  font-size: 14px;
  text-align: center;
  text-transform: uppercase;
}

.signal p:last-child {
  border-right: 0;
}

@media (max-width: 640px) {
  .hero {
    min-height: calc(100svh - 116px);
    background-position: 45% center;
  }

  .hero__content {
    width: min(100% - 24px, 520px);
    padding: 44px 10px 28px;
  }

  h1 {
    font-size: 58px;
    line-height: 0.92;
  }

  .hero__lead {
    font-size: 31px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .signal {
    min-height: 116px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signal p:nth-child(2) {
    border-right: 0;
  }

  .signal p:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(104, 111, 121, 0.26);
  }
}

@media (prefers-reduced-motion: reduce) {
  .button {
    transition: none;
  }
}
