* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #10223f;
  --muted: #52718a;
  --line: #bedbed;
  --primary: #008ed8;
  --primary-dark: #0068ad;
  --bg: #eef8fd;
  --panel: #ffffff;
}

html, body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
  -webkit-text-size-adjust: 100%;
}

.page-shell {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,0.95) 0, rgba(255,255,255,0) 32%),
    linear-gradient(180deg, #f9fdff 0%, #e8f7fd 48%, #d6edf8 100%);
}

.hdr {
  padding: 22px 18px 10px;
  text-align: center;
}

.brand-mark {
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-line {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
  margin-top: 4px;
}

.wrap {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 18px clamp(16px, 4vw, 32px) 28px;
}

.intro {
  text-align: center;
  margin: 12px auto 18px;
}

.eyebrow {
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro h1 {
  margin-top: 8px;
  font-size: clamp(1.65rem, 7vw, 3.35rem);
  line-height: 1.02;
  font-weight: 800;
}

.status {
  width: min(100%, 480px);
  margin: 28px auto 0;
  text-align: center;
  color: var(--muted);
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(190,219,237,0.9);
  border-radius: 8px;
  font-size: 0.98rem;
  padding: 24px 18px;
  box-shadow: 0 14px 42px rgba(16,34,63,0.08);
}

.hidden { display: none !important; }

#photo-figure {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

#photo {
  width: 100%;
  max-width: 100%;
  max-height: min(68vh, 920px);
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid rgba(190,219,237,0.95);
  box-shadow: 0 18px 50px rgba(16,34,63,0.16);
  background: var(--panel);
}

figcaption {
  width: 100%;
  display: flex;
  justify-content: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 48px;
  padding: 13px 28px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  transition: filter 0.15s ease, transform 0.05s ease;
  box-shadow: 0 10px 28px rgba(0,104,173,0.28);
}

.btn-primary:active { transform: scale(0.98); }
.btn-primary:hover { filter: brightness(1.08); }

.ftr {
  text-align: center;
  padding: 20px 16px 26px;
  color: var(--muted);
  font-size: 0.85rem;
}

@media (max-width: 520px) {
  .hdr {
    padding-top: 18px;
  }

  .wrap {
    padding-top: 8px;
  }

  .intro {
    margin-bottom: 14px;
  }

  #photo-figure {
    gap: 14px;
  }

  #photo {
    max-height: 64vh;
  }

  .btn-primary {
    width: 100%;
  }
}
