:root {
  --navy: #021b3a;
  --sky: #5699cc;
  --green: #2fa360;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.78);
  --border: rgba(255, 255, 255, 0.18);
  --panel: linear-gradient(155deg, rgba(16, 36, 66, 0.97) 0%, rgba(4, 20, 42, 0.97) 100%);
  --lift: 0 30px 70px -24px rgba(3, 12, 26, 0.65);
  --body: "Montserrat", system-ui, -apple-system, sans-serif;
  --script: "Great Vibes", cursive;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--body);
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

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

.page { position: relative; min-height: 100vh; overflow: hidden; }

.bg-layer { position: fixed; inset: 0; z-index: -2; }
.bg-layer img {
  width: 100%; height: 100%; object-fit: cover;
  animation: slow-zoom 32s ease-in-out infinite alternate;
}
@keyframes slow-zoom {
  from { transform: scale(1.03); }
  to { transform: scale(1.12); }
}
.bg-tint { position: fixed; inset: 0; z-index: -1; background: rgba(2, 27, 58, 0.25); }

.container {
  position: relative;
  width: 100%;
  max-width: 48rem;
  margin: 0 auto;
  padding: 2.5rem 1rem;
}

/* Logo */
.logo-row { display: flex; justify-content: center; }
.logo-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1rem 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}
.logo-card img { width: 11rem; height: auto; display: block; }

/* Panel */
.panel {
  margin-top: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  background-image: var(--panel);
  box-shadow: var(--lift);
  backdrop-filter: blur(4px);
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.script { font-family: var(--script); font-size: 1.875rem; color: var(--sky); margin: 0; }
.brandname { margin: 0.25rem 0 0; font-size: 2.25rem; font-weight: 800; letter-spacing: -0.02em; }

.divider { display: flex; align-items: center; gap: 0.75rem; max-width: 28rem; margin: 1.5rem auto 0; }
.divider .line { flex: 1; height: 1px; background: var(--border); }
.divider .dots { display: flex; gap: 0.375rem; }
.divider .dots i { width: 6px; height: 6px; border-radius: 999px; background: var(--sky); display: block; }

.headline { margin: 1.75rem 0 0; font-size: 1.5rem; font-weight: 800; line-height: 1.2; }
.underline-sky { text-decoration: underline; text-decoration-color: rgba(86, 153, 204, 0.5); text-decoration-thickness: 2px; text-underline-offset: 8px; }

.sky { color: var(--sky); }
.green { color: var(--green); }
.bold { font-weight: 700; }
.muted { color: var(--muted); }

.lede { max-width: 36rem; margin: 1.75rem auto 0; font-size: 0.875rem; line-height: 1.7; color: var(--muted); }

/* Countdown */
.countdown {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem;
  max-width: 32rem; margin: 2.25rem auto 0;
}
.cd-box {
  border: 1px solid var(--border); border-radius: 0.75rem;
  background: rgba(2, 27, 58, 0.4); padding: 0.75rem 0.25rem;
}
.cd-num { font-size: 1.5rem; font-weight: 700; font-variant-numeric: tabular-nums; }
.cd-label { margin-top: 0.25rem; font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted); }

/* Pillars */
.pillars {
  list-style: none; margin: 2.5rem 0 0; padding: 2rem 0.5rem;
  display: grid; grid-template-columns: repeat(2, 1fr); row-gap: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 1rem;
}
.pillars li { padding: 0 0.75rem; }
.pillars .ico {
  display: flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem; margin: 0 auto;
  border: 2px solid var(--sky); border-radius: 999px;
}
.pillars .ico svg { width: 1.25rem; height: 1.25rem; color: var(--sky); }
.pillars h3 { margin: 0.75rem 0 0; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; }
.pillars p { margin: 0.5rem 0 0; font-size: 0.72rem; line-height: 1.4; color: var(--muted); }

/* Thanks */
.thanks { margin-top: 2.25rem; }
.thanks .leaf-icon { display: block; margin: 0 auto; }
.thanks svg { width: 1.5rem; height: 1.5rem; color: var(--sky); }
.thanks p { margin: 0.5rem 0 0; }
.thanks p.bold { font-size: 1rem; }
.thanks p.muted { font-size: 0.875rem; }

/* Notify form */
.notify { display: flex; flex-direction: column; gap: 0.75rem; max-width: 28rem; margin: 2rem auto 0; }
.notify input {
  height: 3rem; flex: 1; border-radius: 0.5rem; border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(2, 27, 58, 0.4); padding: 0 1rem; font: inherit; font-size: 0.875rem; color: #fff; outline: none;
}
.notify input::placeholder { color: rgba(255, 255, 255, 0.6); }
.notify input:focus { border-color: var(--sky); box-shadow: 0 0 0 3px rgba(86, 153, 204, 0.35); }
.notify button {
  height: 3rem; border: 0; border-radius: 0.5rem; background: var(--sky); color: var(--navy);
  padding: 0 1.5rem; font: inherit; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.18em; cursor: pointer; transition: opacity 0.2s;
}
.notify button:hover { opacity: 0.9; }
.notify button:disabled { opacity: 0.6; cursor: not-allowed; }
.fineprint { margin: 0.5rem 0 0; font-size: 0.7rem; color: var(--muted); }

/* Tagline */
.tagline {
  margin-top: 2.25rem; display: flex; align-items: center; justify-content: center; gap: 1rem;
  background: #fff; border-radius: 1rem; padding: 1rem 1.25rem;
}
.tagline img { height: 3rem; width: auto; }
.tagline p { margin: 0; text-align: left; font-size: 0.875rem; font-weight: 700; line-height: 1.25; color: var(--navy); }

/* Coming soon */
.soon { margin-top: 2.25rem; display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }
.construction {
  display: flex; align-items: center; gap: 0.5rem; color: var(--sky);
  border: 2px solid var(--sky); border-radius: 0.5rem; padding: 0.75rem 1rem;
}
.construction svg { width: 1.5rem; height: 1.5rem; }
.construction span { text-align: left; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; line-height: 1.2; }
.vrule { display: none; }
.soon-title { margin: 0; font-size: 1.875rem; font-weight: 800; text-transform: uppercase; letter-spacing: -0.02em; }
.soon-sub {
  margin: 0.5rem 0 0; padding-top: 0.5rem; border-top: 2px solid rgba(86, 153, 204, 0.6);
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.4em; color: var(--sky);
}

/* Contact */
.contact { margin-top: 1.5rem; background: #fff; border-radius: 1rem; padding: 1.25rem 1.5rem; }
.contact ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr; gap: 1.25rem; color: var(--navy); }
.contact li { display: flex; align-items: center; justify-content: center; gap: 0.75rem; }
.contact svg { width: 1.75rem; height: 1.75rem; color: var(--sky); }
.contact .k { display: block; font-size: 0.7rem; color: rgba(2, 27, 58, 0.7); }
.contact a { font-size: 0.875rem; font-weight: 700; color: var(--navy); text-decoration: none; }
.contact a:hover { text-decoration: underline; }

.copyright { margin: 1.5rem 0 0; text-align: center; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.25em; color: rgba(255, 255, 255, 0.7); }

/* Toast */
#toast {
  position: fixed; left: 50%; bottom: 1.5rem; transform: translate(-50%, 1rem);
  background: #fff; color: var(--navy); font-size: 0.85rem; font-weight: 600;
  padding: 0.75rem 1.25rem; border-radius: 0.6rem; box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  opacity: 0; pointer-events: none; transition: opacity 0.25s, transform 0.25s; max-width: 90vw; text-align: center;
}
#toast.show { opacity: 1; transform: translate(-50%, 0); }
#toast.error { background: #b3261e; color: #fff; }

@media (min-width: 640px) {
  .container { padding: 3.5rem 1.5rem; }
  .logo-card img { width: 14rem; }
  .panel { padding: 3rem 2.5rem; }
  .script { font-size: 2.25rem; }
  .brandname { font-size: 3.75rem; }
  .headline { font-size: 2.25rem; }
  .lede { font-size: 1rem; }
  .countdown { gap: 0.75rem; }
  .cd-box { padding: 1rem 0.25rem; }
  .cd-num { font-size: 1.875rem; }
  .pillars { grid-template-columns: repeat(5, 1fr); row-gap: 0; }
  .pillars li + li { border-left: 1px solid rgba(255, 255, 255, 0.12); }
  .notify { flex-direction: row; }
  .tagline p { font-size: 1.25rem; }
  .soon { flex-direction: row; justify-content: center; gap: 2rem; }
  .vrule { display: block; width: 1px; height: 3.5rem; background: var(--border); }
  .soon-title { font-size: 3rem; }
  .contact ul { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .contact li.mid { border-left: 1px solid rgba(2, 27, 58, 0.15); border-right: 1px solid rgba(2, 27, 58, 0.15); }
}
