:root {
  --bg-1: #f3f3f3;
  --bg-2: #ececec;
  --bg-3: #dedede;
  --text: #111111;
  --muted: #525252;
  --soft: #8e8e8e;
  --line: rgba(0, 0, 0, 0.18);
  --line-soft: rgba(0, 0, 0, 0.08);
  --panel: rgba(255, 255, 255, 0.32);
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.75), transparent 28rem),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.40), transparent 28rem),
    linear-gradient(135deg, var(--bg-1) 0%, var(--bg-2) 50%, var(--bg-3) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at 50% 50%, black 0%, transparent 78%);
  opacity: 0.22;
}

.page-shell {
  width: min(1280px, calc(100% - 48px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  grid-template-rows: 1fr auto;
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: 48px 0 36px;
}

.status-pill {
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: #222222;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.brand-lockup-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}

.brand-lockup {
  display: block;
  width: min(980px, 88vw);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.06));
}

.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;
}

.summary {
  width: min(760px, 100%);
  margin: 28px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.75;
  letter-spacing: 0.02em;
}

.subsignals {
  width: 100%;
  margin-top: 72px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px 0;
  color: var(--soft);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.subsignals span {
  position: relative;
  padding: 0 20px;
  white-space: nowrap;
}

.subsignals span + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 22px;
  background: var(--line);
  transform: translateY(-50%);
}

.site-footer {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line-soft);
  color: #6f6f6f;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-mark img {
  width: 38px;
  height: auto;
  display: block;
  opacity: 0.94;
}

@media (max-width: 900px) {
  .page-shell {
    width: min(100% - 32px, 1280px);
  }

  .hero {
    padding: 42px 0 28px;
  }

  .status-pill {
    margin-bottom: 20px;
  }

  .summary {
    margin-top: 22px;
  }

  .subsignals {
    margin-top: 46px;
    gap: 10px;
  }

  .subsignals span {
    padding: 0 12px;
  }

  .subsignals span + span::before {
    display: none;
  }

  .site-footer {
    min-height: 86px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .footer-mark img {
    width: 34px;
  }
}
