:root {
  color-scheme: dark;
  --orange: #ff671d;
  --ink: #111111;
  --panel: #343434;
  --white: #f7f7f4;
  --muted: #aaa9a4;
  --line: #373737;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--panel);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 103, 29, 0.11), transparent 29rem),
    var(--panel);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page-shell {
  width: min(100%, 1440px);
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(17rem, 27vw, 25rem);
}

.hero {
  min-width: 0;
  min-height: 100vh;
  padding: clamp(1.5rem, 4vw, 4.5rem);
  display: flex;
  flex-direction: column;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-name {
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 52rem;
  margin: auto 0;
  padding: clamp(4rem, 10vh, 7rem) 0;
}

.eyebrow,
.status-label,
.signal span {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 1.4rem;
}

h1 {
  margin: 0;
  font-size: clamp(3.5rem, 9vw, 8.2rem);
  line-height: 0.87;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

h1 span {
  color: var(--orange);
}

.intro {
  max-width: 42rem;
  margin: 2.2rem 0 0;
  color: #d0cfca;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.55;
}

.status {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0 0 2.5rem;
  border: 1px solid var(--line);
  background: var(--line);
}

.status > div {
  min-height: 6.5rem;
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.8rem;
  background: var(--panel);
}

.status strong {
  font-size: 1rem;
  line-height: 1.35;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer a {
  color: var(--white);
  font-weight: 700;
  text-underline-offset: 0.25rem;
  text-decoration-color: var(--orange);
  transition: color 160ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--orange);
}

.signal {
  min-width: 0;
  min-height: 100vh;
  padding: clamp(1.5rem, 3vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--orange);
  color: var(--ink);
  overflow: hidden;
}

.signal-line {
  width: 100%;
  height: 1rem;
  background: var(--ink);
}

.signal p {
  margin: 3rem 0;
  max-width: 100%;
  font-size: clamp(2.35rem, 3.1vw, 3.45rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.signal span {
  color: var(--ink);
  border-top: 1px solid rgba(17, 17, 17, 0.35);
  padding-top: 1rem;
}

@media (max-width: 820px) {
  .page-shell {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 80vh;
  }

  .signal {
    min-height: auto;
    padding-block: 2rem;
  }

  .signal-line {
    width: 4rem;
    height: 0.7rem;
  }

  .signal p {
    margin: 3.5rem 0;
  }
}

@media (max-width: 540px) {
  .hero {
    padding: 1.25rem;
  }

  .brand-name {
    max-width: 12rem;
    line-height: 1.25;
  }

  .hero-copy {
    padding: 4.5rem 0;
  }

  h1 {
    font-size: clamp(3rem, 15.5vw, 5rem);
  }

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

  .site-footer {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
