/* ================================
   AIZEN POWER — BRIDGE PAGE
   Navy · Gold · White · Bold
   ================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;

  /* navy background matching brand */
  background:
    radial-gradient(ellipse 85% 55% at 50% -5%, rgba(30, 58, 138, 0.45) 0%, transparent 68%),
    radial-gradient(ellipse 55% 40% at 90% 105%, rgba(180, 130, 40, 0.15) 0%, transparent 60%),
    #f0f4ff;
}

/* ---- PAGE ---- */
.page {
  max-width: 520px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeUp 0.7s ease both;
}

/* ---- LOGO ---- */
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #1b4bdc;
  letter-spacing: 0.5px;
  margin-bottom: 32px;
}
.logo span { color: #1e3a8a; }

/* ---- PRODUCT + BADGES ---- */
.product-wrap {
  position: relative;
  width: 320px;
  height: 320px;
  margin-bottom: 36px;
  flex-shrink: 0;
}

.glow {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,58,138,0.18) 0%, transparent 68%);
  pointer-events: none;
}

.product-img {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 230px;
  z-index: 1;
  filter: drop-shadow(0 22px 44px rgba(10,20,60,0.25));
  animation: floatCenter 4.5s ease-in-out infinite;
}

/* floating badges */
.fb {
  position: absolute;
  z-index: 2;
  background: white;
  border: 1px solid #dde4f5;
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  box-shadow: 0 6px 24px rgba(10,20,80,0.10);
  animation: float 4.5s ease-in-out infinite;
}
.fb strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e3a8a;
  line-height: 1;
}
.fb span {
  font-size: 0.65rem;
  color: #7a8ab0;
  font-weight: 600;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.fb-stars { color: #c9973a !important; font-size: 0.85rem !important; letter-spacing: 1px; }

.fb-tl { top: 12%; left: -8%; animation-delay: 0s; }
.fb-tr { top: 12%; right: -8%; animation-delay: 1s; }
.fb-bl { bottom: 14%; left: -8%; animation-delay: 2s; }
.fb-br { bottom: 14%; right: -8%; animation-delay: 3s; }

/* ---- HEADLINE ---- */
h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.65rem, 4vw, 2.2rem);
  font-weight: 800;
  color: #0f1f5c;
  line-height: 1.22;
  margin-bottom: 24px;
}
h1 em {
  font-style: italic;
  color: #1e3a8a;
}

/* ---- TRUST PILLS ---- */
.pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 36px;
}
.pills span {
  font-size: 0.75rem;
  font-weight: 700;
  color: #1e3a8a;
  background: rgba(30,58,138,0.08);
  border: 1px solid rgba(30,58,138,0.2);
  padding: 7px 16px;
  border-radius: 50px;
}

/* ---- CTA — THE STAR ---- */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 67%;
  max-width: 420px;
  background: linear-gradient(135deg, #1e3a8a 0%, #0f1f5c 100%);
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 35px;
  padding: 15px 15px;
  border-radius: 50px;
  letter-spacing: 0.2px;
  text-decoration: none;
  margin-bottom: 16px;
  box-shadow:
    0 2px 0 #0a1438,
    0 12px 40px rgba(10,20,80,0.28),
    0 0 0 4px rgba(30,58,138,0.12);
  transition: transform 0.18s, box-shadow 0.18s;
  position: relative;
  overflow: hidden;
}

/* gold shimmer line on top */
.cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c9973a, #f0c870, #c9973a, transparent);
  opacity: 0.8;
}

/* shine sweep */
.cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.10) 50%, transparent 60%);
  background-size: 200% 100%;
  background-position: 200% 0;
  transition: background-position 0.5s;
}
.cta:hover::after { background-position: -50% 0; }

.cta:hover {
  transform: translateY(-4px);
  box-shadow:
    0 4px 0 #0a1438,
    0 20px 54px rgba(10,20,80,0.35),
    0 0 0 5px rgba(30,58,138,0.18);
}
.cta:active { transform: translateY(0); }
.cta svg { flex-shrink: 0; opacity: 0.85; }

/* ---- FOOTNOTE ---- */
.footnote {
  font-size: 0.78rem;
  color: #8899cc;
  margin-bottom: 40px;
}

/* ---- DISCLAIMER ---- */
.disclaimer {
  font-size: 0.7rem;
  color: #a0aec8;
  line-height: 1.7;
  max-width: 400px;
  border-top: 1px solid rgba(30,58,138,0.1);
  padding-top: 18px;
}

/* ---- ANIMATIONS ---- */
@keyframes floatCenter {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50%       { transform: translate(-50%, -50%) translateY(-12px); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- MOBILE ---- */
@media (max-width: 480px) {
  .product-wrap { width: 280px; height: 280px; }
  .product-img { width: 190px; }
  .fb-tl { left: -4%; }
  .fb-tr { right: -4%; }
  .fb-bl { left: -4%; }
  .fb-br { right: -4%; }
  h1 { font-size: 1.55rem; }
  .cta { font-size: 1rem; padding: 20px 28px; }
}