/* Coming-soon splash styles. Kept in an external stylesheet (not an inline
   <style> block) because the production CSP is `default-src https:` with no
   'unsafe-inline' — inline styles are dropped, but same-origin https
   stylesheets like this one are allowed, exactly like base.css.
   Brand tokens (--midnight, --venetian, --display, …) and the Canela/Aeonik
   @font-face rules come from base.css, loaded globally by the root layout. */

.secret {
  position: relative; overflow: hidden;
  min-height: 100vh; width: 100%;
  display: grid; place-items: center;
  padding: 40px 24px;
  background:
    radial-gradient(1100px 620px at 50% -8%, rgba(60,143,221,0.14), transparent 60%),
    radial-gradient(760px 520px at 50% 118%, rgba(190,169,137,0.06), transparent 60%),
    var(--midnight);
  text-align: center;
}
.secret .grain {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(247,245,237,0.05) 1px, transparent 0);
  background-size: 22px 22px;
  mask-image: radial-gradient(800px 600px at 50% 30%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(800px 600px at 50% 30%, #000 20%, transparent 78%);
}
.secret .keys-ghost {
  position: absolute; top: 50%; left: 50%;
  width: min(560px, 78vw); opacity: 0.045;
  transform: translate(-50%, -50%);
  pointer-events: none; user-select: none;
  animation: keysfloat 12s ease-in-out infinite;
}
@keyframes keysfloat {
  0%, 100% { transform: translate(-50%, -52%); }
  50%      { transform: translate(-50%, -48%); }
}
.secret .inner { position: relative; z-index: 2; max-width: 680px; }

.secret .pill {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--sea-light); font-weight: 400;
  background: color-mix(in srgb, var(--surface) 70%, transparent);
  border: 1px solid var(--border-strong); border-radius: 999px;
  padding: 8px 16px 8px 13px; margin-bottom: 30px;
}
.secret .pill .dot {
  width: 8px; height: 8px; border-radius: 999px; background: var(--venetian);
  box-shadow: 0 0 0 0 rgba(60,143,221,0.55);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(60,143,221,0.55); }
  70%  { box-shadow: 0 0 0 9px rgba(60,143,221,0); }
  100% { box-shadow: 0 0 0 0 rgba(60,143,221,0); }
}

.secret .eyebrow {
  font-size: 12.5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-faint); font-weight: 400; margin-bottom: 18px;
}
.secret h1 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(34px, 6.4vw, 68px); line-height: 1.04;
  letter-spacing: -0.02em; margin: 0 0 22px; color: var(--ink);
}
.secret h1 em {
  font-style: italic;
  color: var(--venetian);
}
.secret .lead {
  font-size: clamp(16px, 2.1vw, 19px); line-height: 1.6;
  color: var(--ink-dim); margin: 0 auto 16px; max-width: 52ch;
}
.secret .whisper {
  font-size: 14.5px; color: var(--ink-faint); font-style: italic;
  margin: 0 auto 34px; max-width: 46ch;
}

.secret .cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.secret .btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; border-radius: 11px; font-size: 15px; font-weight: 400;
  border: 1px solid transparent; font-family: var(--sans);
  transition: background .18s, border-color .18s, color .18s, transform .18s;
}
.secret .btn:hover { transform: translateY(-1px); }
.secret .btn-primary { background: var(--venetian-deep); color: var(--on-accent); }
.secret .btn-primary:hover { background: var(--venetian); color: var(--on-accent); }
.secret .btn-secondary { background: transparent; color: var(--ink); border-color: var(--border-strong); }
.secret .btn-secondary:hover { border-color: var(--venetian); background: rgba(60,143,221,0.08); color: var(--ink); }

.secret .sign {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; align-items: center; gap: 10px;
  color: var(--ink-faint); font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase;
}
.secret .sign img { height: 20px; width: auto; opacity: 0.7; }

@media (prefers-reduced-motion: reduce) {
  .secret .keys-ghost, .secret .pill .dot { animation: none; }
}
