/* LubeWear Live — page sections: hero, stats, founding, agenda, venue */

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 9rem 0 5rem;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.hero-slides { position: absolute; inset: 0; }

.hero-slide {
  position: absolute;
  inset: 0;
  background: center 30% / cover no-repeat;
  opacity: 0;
  transition: opacity 1.8s ease;
}

.hero-slide.active {
  opacity: 1;
  animation: hero-zoom 9s ease-in-out forwards;
}

@keyframes hero-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(30, 144, 214, 0.35), transparent 60%),
    radial-gradient(700px 500px at -10% 110%, rgba(0, 102, 170, 0.4), transparent 60%),
    linear-gradient(160deg, rgba(4, 26, 46, 0.9) 0%, rgba(6, 37, 63, 0.8) 55%, rgba(0, 74, 124, 0.72) 100%);
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide { animation: none !important; transition: none; }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 60% 40%, black 30%, transparent 75%);
  pointer-events: none;
}

.hero .container { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.6rem;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #46e08c;
  box-shadow: 0 0 10px #46e08c;
  animation: pulse 2s infinite;
}

@keyframes pulse { 50% { opacity: 0.4; } }

.hero h1 { color: var(--white); max-width: 820px; }

.hero h1 .grad {
  background: linear-gradient(90deg, #6cc4ff, #b0e0ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 640px;
  margin: 1.4rem 0 2.2rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  margin-bottom: 2.4rem;
  font-family: var(--font-head);
  font-size: 0.95rem;
}

.hero-meta span { display: flex; align-items: center; gap: 0.55rem; color: rgba(255,255,255,0.9); }

.hero-meta svg { width: 20px; height: 20px; color: var(--blue-bright); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ---- Countdown ---- */
.countdown { display: flex; gap: 1rem; margin-top: 3rem; flex-wrap: wrap; }

.count-box {
  min-width: 86px;
  text-align: center;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.count-box b { display: block; font-family: var(--font-head); font-size: 1.9rem; font-weight: 800; }

.count-box small { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.65); }

/* ---- Stats strip ---- */
.stats-strip { background: var(--navy); padding: 0; }

.stats-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.stat {
  background: var(--navy);
  text-align: center;
  padding: 1.8rem 1rem;
  color: var(--white);
}

.stat b { display: block; font-family: var(--font-head); font-size: 1.6rem; color: var(--blue-bright); }

.stat span { font-size: 0.85rem; color: rgba(255, 255, 255, 0.65); }

/* ---- Split layouts ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }

@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }

.tick-list { list-style: none; display: grid; gap: 0.8rem; margin-top: 1.4rem; }

.tick-list li { display: flex; gap: 0.7rem; align-items: flex-start; color: var(--slate); }

.tick-list li::before {
  content: "✓";
  flex: 0 0 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--sky);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ---- Founding members ---- */
.founding { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 60%, var(--blue-deep) 100%); color: var(--white); }

.founding h2, .founding h3 { color: var(--white); }

.founding .section-sub, .founding p { color: rgba(255, 255, 255, 0.78); }

.founding-card {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 2rem;
  backdrop-filter: blur(8px);
}

.founding-card .badge {
  display: inline-block;
  background: linear-gradient(90deg, var(--gold), #f8d47c);
  color: #5c3d00;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  margin-bottom: 1rem;
}

/* ---- Agenda ---- */
.agenda-day { margin-bottom: 2.2rem; }

.agenda-day h3 {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.day-chip {
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  color: var(--white);
  border-radius: 10px;
  font-size: 0.8rem;
  padding: 0.35rem 0.8rem;
}

.agenda-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1.2rem;
  padding: 0.9rem 1.1rem;
  border-left: 3px solid rgba(0, 102, 170, 0.25);
  background: #f8fbfd;
  border-radius: 0 12px 12px 0;
  margin-bottom: 0.5rem;
}

.agenda-row b { font-family: var(--font-head); font-size: 0.9rem; color: var(--blue); }

.agenda-row span { color: var(--slate); font-size: 0.97rem; }

@media (max-width: 560px) { .agenda-row { grid-template-columns: 1fr; gap: 0.2rem; } }

/* ---- Venue / page hero ---- */
.venue-panel { background: var(--sky); }

.page-hero {
  padding: 9.5rem 0 4rem;
  background:
    radial-gradient(800px 400px at 80% -20%, rgba(30, 144, 214, 0.35), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 60%, var(--blue-deep) 100%);
  color: var(--white);
}

.page-hero h1 { color: var(--white); font-size: clamp(2rem, 5vw, 3.2rem); }

.page-hero p { color: rgba(255, 255, 255, 0.8); max-width: 640px; margin-top: 1rem; font-size: 1.1rem; }

.form-section { background: #f6fafd; }

.form-wrap { max-width: 780px; margin-inline: auto; }

.info-note {
  display: flex;
  gap: 0.8rem;
  background: var(--sky);
  border: 1px solid rgba(0, 102, 170, 0.2);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  margin-bottom: 1.6rem;
  color: var(--blue-deep);
  font-size: 0.95rem;
}
