/* ── NEW STYLES FROM REDESIGN ─────────────────────────────────────────── */

.pill-nav {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.pill-nav a {
  margin: 0 0.5rem;
}

.btn-white {
  background: var(--white);
  color: var(--bg);
  border-radius: 50px;
  font-weight: 700;
  padding: 0.6rem 1.4rem;
  border: none;
  transition: background 0.3s ease;
}

.btn-white:hover {
  background: var(--gray-100);
}

.nav-login {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--white);
  margin-right: 0.5rem;
  transition: color 0.3s ease;
}

.nav-login:hover {
  color: var(--primary);
}

.text-center-hero {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 150px;
  padding-bottom: 0;
  min-height: auto;
}

.hero-inner-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100%;
}

.hero-content-centered {
  max-width: 800px;
  position: relative;
  z-index: 2;
  margin-bottom: 3rem;
}

.pill-tag {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
}
.pill-tag::before {
  display: none;
}

.hero-accent-cursive {
  font-family: 'Caveat', cursive;
  font-size: 1.4em;
  font-weight: 700;
  background: var(--white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: 0.2em;
}

.centered-sub {
  margin: 0 auto 3rem auto;
  max-width: 600px;
  font-size: 1.15rem;
}

.floating-tag {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: float 4s ease-in-out infinite;
}

.tag-1 { top: 10%; left: -5%; animation-delay: 0s; }
.tag-2 { top: 25%; right: -8%; animation-delay: 1s; }
.tag-3 { top: 45%; left: -10%; animation-delay: 2s; }
.tag-4 { top: 60%; right: -5%; animation-delay: 0.5s; }
.tag-5 { top: 75%; left: -2%; animation-delay: 1.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.hero-cards-deck {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1rem;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1000px;
  perspective: 1000px;
}

.h-card {
  flex: 1;
  height: 280px;
  border-radius: 24px 24px 0 0;
  padding: 1.5rem;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-origin: bottom;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  text-align: left;
}

.h-card h2 {
  font-size: 1.5rem;
  margin-bottom: 0.2rem;
  color: var(--white);
}

.h-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.h-card:hover {
  transform: translateY(-20px) !important;
  z-index: 10;
}

.card-purple { transform: rotate(-4deg) translateY(20px); border-top: 1px solid var(--primary-glow); }
.card-coral { transform: rotate(-2deg) translateY(10px); }
.card-cyan { height: 320px; z-index: 5; border: 1px solid var(--primary); box-shadow: 0 0 40px var(--primary-dim); }
.card-green { transform: rotate(2deg) translateY(10px); }
.card-blue { transform: rotate(4deg) translateY(20px); border-top: 1px solid var(--primary-glow); }

.card-icon {
  font-size: 3rem;
  margin-bottom: auto;
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: auto;
}

.card-badge {
  background: var(--white);
  color: var(--bg);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.card-badge:hover {
  transform: scale(1.05);
}

.card-3d-obj {
  margin: auto;
  font-size: 5rem;
  position: relative;
  text-align: center;
}

@media (max-width: 900px) {
  .hero-cards-deck {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 0 1rem;
  }
  .h-card {
    height: 220px;
    flex: 0 0 calc(33.333% - 1rem);
    transform: none !important;
    border-radius: 20px;
    margin-bottom: 1rem;
  }
  .card-cyan {
    height: 220px;
  }
}

@media (max-width: 600px) {
  .h-card {
    flex: 0 0 calc(50% - 1rem);
  }
  .floating-tag {
    display: none;
  }
  .pill-nav, .nav-login, .nav-cta-group .btn-white {
    display: none;
  }
}

@media (max-width: 480px) {
  .h-card {
    flex: 0 0 100%;
  }
  .hero-headline {
    font-size: 2.2rem;
  }
  .hero-accent-cursive {
    font-size: 1.2em;
  }
}

.nav-logo-img {
  height: 24px;
  width: auto;
  object-fit: contain;
}

/* ── QUICK FACTS BOX (GEO) ───────────────────────────────────────────── */
.quick-facts-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  max-width: 600px;
  margin: 2rem auto;
  text-align: left;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.quick-facts-box h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 700;
}

.quick-facts-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quick-facts-box li {
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.quick-facts-box li:last-child {
  margin-bottom: 0;
}

.quick-facts-box strong {
  color: var(--white);
  font-weight: 600;
}

