:root {
  color-scheme: dark;
  --page-bg: #050505;
  --panel-bg: #111111;
  --text: #f7f3ec;
  --muted: #b8b1a7;
  --button-red: #f21d24;
  --button-red-dark: #9c0d13;
  --status-green: #31d658;
  --rule: rgba(247, 243, 236, 0.16);
}

/* Brand fonts copied from /Users/Papi/Repositories/fmcu web/public/hs.woff and hsb.woff, verified by user on 2026-06-16. */
@font-face {
  font-family: "Hyperspace";
  src: url("hs.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Hyperspace";
  src: url("hsb.woff") format("woff");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--page-bg);
}

body {
  min-height: 100%;
  margin: 0;
  font-family: "Hyperspace", ui-monospace, "SFMono-Regular", "SF Mono", Menlo, Consolas, monospace;
  color: var(--text);
  background:
    radial-gradient(circle at 76% 24%, rgba(49, 214, 88, 0.15), transparent 30rem),
    radial-gradient(circle at 18% 16%, rgba(242, 29, 36, 0.23), transparent 24rem),
    linear-gradient(135deg, #050505 0%, #0d1014 56%, #050505 100%);
}

a {
  color: inherit;
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  min-height: calc(100dvh - 96px);
  margin: 0 auto;
  display: grid;
  place-items: center;
}

.hero {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.72fr);
  align-items: center;
  gap: clamp(32px, 7vw, 96px);
  padding: 48px 0;
}

.hero-copy {
  max-width: 600px;
}

.brand-stack {
  position: relative;
  width: min(493px, 100%);
  margin-bottom: 30px;
  padding-top: clamp(64px, 8vw, 94px);
}

.brand-button {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  width: clamp(86px, 12vw, 128px);
  height: clamp(86px, 12vw, 128px);
  display: block;
  border-radius: 22%;
  transform: translateX(-50%);
  box-shadow: 0 22px 60px rgba(242, 29, 36, 0.32);
}

.brand-logo {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 22px 54px rgba(0, 0, 0, 0.42));
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--status-green);
  font-size: clamp(0.78rem, 1vw, 0.95rem);
  letter-spacing: 0;
  text-transform: uppercase;
}

.lede {
  max-width: 520px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1.45;
}

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

.primary-link,
.secondary-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.primary-link {
  background: var(--text);
  color: #090909;
  border-color: var(--text);
}

.secondary-link {
  color: var(--text);
}

.primary-link:focus-visible,
.secondary-link:focus-visible {
  outline: 3px solid var(--status-green);
  outline-offset: 4px;
}

.phone-shot {
  margin: 0;
  justify-self: center;
  width: min(360px, 100%);
  border-radius: 38px;
  padding: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.46);
}

.phone-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 30px;
}

.site-footer {
  width: min(1120px, calc(100% - 32px));
  min-height: 96px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: 0.82rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 760px) {
  .page-shell {
    min-height: auto;
  }

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

  .brand-stack {
    margin-bottom: 24px;
    padding-top: 66px;
  }

  .actions {
    flex-direction: column;
  }

  .primary-link,
  .secondary-link {
    width: 100%;
  }

  .phone-shot {
    width: min(320px, 92vw);
  }

  .site-footer {
    min-height: 118px;
    padding: 22px 0;
    flex-direction: column;
    align-items: flex-start;
  }
}
