:root {
  --navy: #14213D;
  --navy-deep: #0D1628;
  --red: #E10600;
  --offwhite: #FAFAF7;
  --muted: rgba(250, 250, 247, 0.65);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--navy);
  color: var(--offwhite);
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1, h2, .nav-word {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.wrap { max-width: 960px; margin: 0 auto; padding: 0 24px; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 10;
  background: rgba(13, 22, 40, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 2px dashed rgba(250, 250, 247, 0.18);
}
.nav-inner {
  max-width: 960px; margin: 0 auto; padding: 12px 24px;
  display: flex; align-items: center; gap: 12px;
}
.nav-badge {
  width: 38px; height: 38px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--offwhite);
}
.nav-word { font-weight: 700; font-size: 20px; }
.nav-tag {
  margin-left: auto;
  font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: 0.14em; color: var(--red);
  border: 2px dashed var(--red); border-radius: 999px;
  padding: 6px 14px;
}

/* ---------- hero ---------- */
.hero {
  text-align: center;
  padding: 72px 24px 88px;
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(225, 6, 0, 0.10), transparent 70%),
    var(--navy);
}
.hero-badge img {
  width: 168px; height: 168px; border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--offwhite);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}
.hero-wordmark {
  display: block; margin: 28px auto 0;
  max-width: 420px; width: 78%;
  border-radius: 6px;
}
.hero-kicker {
  margin-top: 14px;
  font-family: 'Oswald', sans-serif; font-weight: 500;
  letter-spacing: 0.42em; font-size: 15px; color: var(--muted);
}
.hero h1 {
  margin-top: 10px;
  font-size: clamp(64px, 14vw, 128px);
  font-weight: 700; line-height: 0.95;
  color: var(--red);
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.35);
}
.hero-sub { margin-top: 18px; font-size: 18px; line-height: 1.6; color: var(--offwhite); }

.notify {
  margin: 30px auto 0; max-width: 440px;
  display: flex; gap: 0;
  border: 2px dashed rgba(250, 250, 247, 0.35);
  border-radius: 999px; padding: 6px;
  background: rgba(13, 22, 40, 0.6);
}
.notify input {
  flex: 1; min-width: 0;
  background: transparent; border: none; outline: none;
  color: var(--offwhite); font-size: 16px; padding: 10px 18px;
}
.notify input::placeholder { color: var(--muted); }
.notify button {
  font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 15px;
  letter-spacing: 0.1em;
  background: var(--red); color: #fff; border: none; border-radius: 999px;
  padding: 12px 26px; cursor: pointer; white-space: nowrap;
  transition: transform 0.15s ease, background 0.15s ease;
}
.notify button:hover { background: #c00500; transform: translateY(-1px); }
.form-msg { margin-top: 12px; min-height: 22px; font-size: 15px; color: var(--muted); }
.form-msg.ok { color: #7ee2a8; }

/* ---------- sections ---------- */
.mystery { background: var(--offwhite); color: var(--navy); padding: 80px 0; }
.about { padding: 80px 0; background: var(--navy-deep); }

.section-kicker {
  font-family: 'Oswald', sans-serif; font-weight: 600;
  letter-spacing: 0.32em; font-size: 14px; color: var(--red);
  margin-bottom: 12px;
}
.mystery h2, .about h2 {
  font-size: clamp(36px, 7vw, 60px); font-weight: 700; line-height: 1.05;
}

.clues {
  margin-top: 36px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
}
.clue {
  font-family: 'Oswald', sans-serif; font-weight: 500; font-size: 17px;
  text-transform: uppercase; letter-spacing: 0.03em; line-height: 1.45;
  text-align: center;
  border: 2px dashed rgba(20, 33, 61, 0.4);
  border-radius: 12px; padding: 26px 14px;
  background: #fff;
  transition: transform 0.15s ease;
}
.clue:hover { transform: translateY(-3px); }
.clue.accent { background: var(--red); color: #fff; border-color: var(--red); }

.about-copy {
  margin-top: 20px; font-size: 19px; line-height: 1.7;
  color: var(--muted); max-width: 640px;
}

/* ---------- footer ---------- */
footer { border-top: 2px dashed rgba(250, 250, 247, 0.18); padding: 36px 0; }
.footer-inner { display: flex; flex-direction: column; gap: 14px; align-items: center; }
.socials { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; }
.socials a {
  font-family: 'Oswald', sans-serif; font-weight: 500; font-size: 15px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--offwhite); text-decoration: none;
  border-bottom: 2px solid transparent; padding-bottom: 2px;
}
.socials a:hover { color: var(--red); border-color: var(--red); }
.copy { font-size: 13px; color: var(--muted); }

@media (max-width: 520px) {
  .notify { flex-direction: column; border-radius: 20px; gap: 8px; }
  .notify button { width: 100%; }
}
