:root {
  --blue: #0038a8;
  --blue-deep: #001f5c;
  --red: #ce1126;
  --gold: #fcd116;
  --white: #ffffff;
  --ink: #10192e;
  --radius: 16px;
  --shadow: 0 20px 60px rgba(0, 15, 45, 0.45);
}

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

html, body { height: 100%; }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--white);
  background: var(--blue-deep);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); border: 0;
}

/* ---------- Background ---------- */
.bg {
  position: fixed; inset: 0;
  background: url("images/0 - bg-cordova.jpg") center 30% / cover no-repeat;
  transform: scale(1.05);
  z-index: -2;
}
.bg-overlay {
  position: fixed; inset: 0; z-index: -1;
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(0, 56, 168, 0.35), transparent 60%),
    linear-gradient(180deg, rgba(0, 20, 60, 0.72) 0%, rgba(0, 18, 55, 0.82) 45%, rgba(0, 12, 40, 0.94) 100%);
}

/* ---------- Layout ---------- */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 20px 32px;
}

/* ---------- Topbar ---------- */
.topbar {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75); font-weight: 500;
  padding: 8px 18px; border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px; backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.06);
}
.topbar__divider { color: var(--gold); }

/* ---------- Hero ---------- */
.hero {
  flex: 1;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; max-width: 720px; margin: 0 auto;
  justify-content: center; padding: 40px 0 24px;
}

.hero__seal {
  width: 148px; height: 148px; object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.45));
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  padding: 4px;
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.hero__eyebrow {
  margin-top: 26px; font-size: 0.85rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--gold); font-weight: 600;
}
.hero__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 7vw, 4.6rem); font-weight: 800;
  line-height: 1.05; margin-top: 6px; letter-spacing: -0.01em;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}
.hero__title span { color: var(--gold); }
.hero__subtitle {
  margin-top: 8px; font-size: 1.05rem; letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.85); font-weight: 400;
}

.hero__badge {
  display: inline-flex; align-items: center; gap: 9px;
  margin-top: 22px; padding: 9px 20px;
  background: var(--red); border-radius: 999px;
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.08em;
  text-transform: uppercase; box-shadow: 0 8px 24px rgba(206, 17, 38, 0.45);
}
.hero__badge-dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--white);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.7); } }

.hero__lead {
  margin-top: 22px; max-width: 560px; font-size: 1.02rem;
  line-height: 1.7; color: rgba(255, 255, 255, 0.82); font-weight: 300;
}

/* ---------- Countdown ---------- */
.countdown {
  display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; justify-content: center;
}
.countdown__item {
  display: flex; flex-direction: column; align-items: center;
  min-width: 84px; padding: 16px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius); backdrop-filter: blur(10px);
}
.countdown__num {
  font-family: "Playfair Display", serif; font-size: 2.1rem;
  font-weight: 700; line-height: 1; color: var(--white);
  font-variant-numeric: tabular-nums;
}
.countdown__label {
  margin-top: 8px; font-size: 0.68rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255, 255, 255, 0.7);
}

/* ---------- Notify ---------- */
.notify {
  display: flex; gap: 10px; margin-top: 36px; width: 100%; max-width: 480px;
}
.notify__input {
  flex: 1; padding: 14px 18px; border-radius: 999px; border: none;
  font-size: 0.95rem; font-family: inherit; color: var(--ink);
  outline: none; background: rgba(255, 255, 255, 0.95);
}
.notify__input:focus { box-shadow: 0 0 0 3px var(--gold); }
.notify__btn {
  padding: 14px 26px; border-radius: 999px; border: none; cursor: pointer;
  font-family: inherit; font-weight: 700; font-size: 0.95rem;
  color: var(--white); background: var(--blue);
  transition: transform 0.15s ease, background 0.2s ease; white-space: nowrap;
}
.notify__btn:hover { background: #0046d0; transform: translateY(-2px); }
.notify__btn:active { transform: translateY(0); }
.notify__msg {
  margin-top: 14px; font-size: 0.9rem; min-height: 1.2em;
  color: var(--gold); font-weight: 500;
}

/* ---------- Footer ---------- */
.footer {
  text-align: center; padding-top: 28px; color: rgba(255, 255, 255, 0.7);
}
.footer__motto {
  font-family: "Playfair Display", serif; font-style: italic;
  font-size: clamp(1.5rem, 3.5vw, 2.1rem); color: var(--gold); margin-bottom: 16px;
}
.footer__links {
  display: flex; gap: 12px; justify-content: center; align-items: center;
  flex-wrap: wrap; font-size: 0.85rem; margin-bottom: 10px;
}
.footer__links a { color: rgba(255, 255, 255, 0.85); text-decoration: none; transition: color 0.2s; }
.footer__links a:hover { color: var(--gold); }
.footer__copy { font-size: 0.78rem; color: rgba(255, 255, 255, 0.5); }

/* ---------- Responsive ---------- */
@media (max-width: 540px) {
  .hero__seal { width: 118px; height: 118px; }
  .notify { flex-direction: column; }
  .notify__btn { width: 100%; }
  .countdown__item { min-width: 68px; padding: 12px 8px; }
  .countdown__num { font-size: 1.7rem; }
  .topbar { font-size: 0.62rem; }
}
