@font-face {
  font-family: "BMB Mission";
  src: url("../../public/fonts/Nasalization-Rg.otf") format("opentype");
  font-display: swap;
}

:root {
  --bg: #15181d;
  --ink: #f7f7f4;
  --muted: #d8dddf;
  --signal: #ff6a00;
  --line: rgba(255, 255, 255, 0.16);
  --font: "BMB Mission", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font);
  background: var(--bg);
}

a {
  color: inherit;
}

a:focus-visible {
  outline: 3px solid rgba(255, 106, 0, 0.5);
  outline-offset: 4px;
}

.welcome-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 120px clamp(24px, 7vw, 104px) 72px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--bg);
  background-size: 86px 86px;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 28%, rgba(255, 106, 0, 0.24), transparent 34%),
    linear-gradient(90deg, rgba(21, 24, 29, 0.94) 0%, rgba(21, 24, 29, 0.76) 52%, rgba(21, 24, 29, 0.5) 100%);
}

.topbar {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(24px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(21, 24, 29, 0.82);
  backdrop-filter: blur(12px);
}

.brand,
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 950;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.back-link {
  color: var(--muted);
  font-size: 14px;
}

.welcome-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.eyebrow,
.status-panel span {
  color: var(--signal);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin: 16px 0 22px;
  color: var(--signal);
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.96;
  letter-spacing: 0;
}

.welcome-content p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-family: "Segoe UI", sans-serif;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.7;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.pill-row span {
  padding: 12px 16px;
  border: 1px solid rgba(255, 106, 0, 0.46);
  border-radius: 8px;
  background: rgba(21, 24, 29, 0.68);
  color: var(--ink);
  font-weight: 950;
}

.status-panel {
  position: absolute;
  right: clamp(24px, 6vw, 84px);
  bottom: clamp(24px, 6vw, 72px);
  z-index: 2;
  width: min(360px, calc(100% - 48px));
  padding: 24px;
  border: 1px solid rgba(255, 106, 0, 0.42);
  border-radius: 8px;
  background: rgba(21, 24, 29, 0.78);
  backdrop-filter: blur(12px);
}

.status-panel strong {
  display: block;
  margin: 10px 0;
  font-size: 30px;
}

.status-panel p {
  margin: 0;
  color: var(--muted);
  font-family: "Segoe UI", sans-serif;
  line-height: 1.55;
}

.project-footer {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(24px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #15181d;
}

.project-footer span {
  font-weight: 950;
}

.project-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 950;
}

@media (max-width: 760px) {
  .welcome-shell {
    align-items: start;
    padding-top: 140px;
    padding-bottom: 300px;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .status-panel {
    left: 24px;
    right: 24px;
  }

  .project-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
