/* ============================================================
   VITALIS TOWER — Registration page styles
   ============================================================ */

/* ---------- Hero ---------- */
.hero-v { padding: 40px 0 150px; margin-top: -78px; }
.hero-v .container { padding-top: 110px; }
.hero-v-grid {
  display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .85fr);
  gap: 48px; align-items: center;
}
.hero-v-copy h1 { font-size: clamp(44px, 6.4vw, 84px); margin: 0 0 22px; }
.hero-v-sub {
  font-size: 19px; line-height: 1.55; max-width: 540px;
  color: rgba(242,236,223,.82); margin: 0 0 26px;
}
.hero-v .session-pill { margin-bottom: 20px; }
.hero-v .countdown { margin-bottom: 30px; }
.hero-v-actions { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }

.pulse-svg {
  position: absolute; left: 0; right: 0; bottom: -2px; width: 100%; height: 300px;
  z-index: 1; pointer-events: none; opacity: .85;
}
.pulse-path { fill: none; stroke: var(--v-gold); stroke-width: 2.25; stroke-linejoin: round; }
.orb-halo { fill: rgba(220,194,140,.28); }
.orb-core { fill: #F6E7C4; }

/* Tower card (right column) */
.hero-v-card { position: relative; }
.tower-card {
  margin: 0; border-radius: var(--radius); overflow: hidden; position: relative;
  border: 1px solid rgba(194,162,100,.45);
  box-shadow: 0 30px 70px rgba(0,0,0,.5), 0 0 0 6px rgba(194,162,100,.08);
  transform: rotate(1.2deg);
}
.tower-card img { width: 100%; height: 100%; object-fit: cover; }
.tower-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 44px 20px 16px;
  background: linear-gradient(180deg, transparent, rgba(21,23,26,.92));
  display: flex; flex-direction: column;
}
.tower-card-name { font-weight: 800; font-size: 18px; letter-spacing: .06em; text-transform: uppercase; color: var(--v-gold-bright); }
.tower-card-sub { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: rgba(242,236,223,.65); margin-top: 3px; }

.float-chip {
  position: absolute; padding: 9px 16px; border-radius: 999px;
  background: rgba(30,34,38,.85); border: 1px solid rgba(194,162,100,.5);
  backdrop-filter: blur(8px); font-size: 12.5px; font-weight: 600;
  color: var(--v-cream); white-space: nowrap;
  box-shadow: 0 10px 26px rgba(0,0,0,.35);
  animation: chipFloat 6s ease-in-out infinite;
}
.float-chip-1 { top: 6%; left: -34px; animation-delay: 0s; }
.float-chip-2 { top: 42%; right: -26px; animation-delay: 1.8s; }
.float-chip-3 { bottom: 10%; left: -20px; animation-delay: 3.4s; }
@keyframes chipFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

@media (max-width: 940px) {
  .hero-v { padding-bottom: 120px; }
  .hero-v-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-v-card { max-width: 420px; margin: 0 auto; }
  .float-chip-1 { left: -8px; } .float-chip-2 { right: -8px; } .float-chip-3 { left: -4px; }
}

/* ---------- Learn list ---------- */
.learn-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
@media (max-width: 760px) { .learn-list { grid-template-columns: 1fr; } }
.learn-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: #fff; border: 1px solid rgba(154,126,69,.22);
  border-radius: var(--radius); padding: 22px;
  box-shadow: 0 8px 26px rgba(30,25,10,.06);
}
.learn-item p { margin: 0; font-size: 15.5px; color: rgba(35,38,42,.8); }
.learn-item strong { color: #1E2126; display: block; margin-bottom: 3px; }
.learn-num {
  flex: 0 0 auto; width: 40px; height: 40px; display: grid; place-items: center;
  border-radius: 50%; font-weight: 800; font-size: 16px; color: #1B1508;
  background: linear-gradient(135deg, #D9BE85, #C2A264);
}

/* ---------- Audience cards ---------- */
.fit-cards {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media (max-width: 860px) { .fit-cards { grid-template-columns: 1fr; } }
.fit-card {
  background: #fff; border: 1px solid rgba(154,126,69,.22); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: 0 8px 26px rgba(30,25,10,.06);
}
.fit-kicker {
  font-size: 11px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase;
  color: var(--v-gold-deep); margin: 0 0 10px;
}
.fit-card h3 { font-size: 19px; margin: 0 0 10px; text-transform: none; letter-spacing: 0; }
.fit-card p { margin: 0; font-size: 15px; color: rgba(35,38,42,.72); }

/* ---------- Gallery ---------- */
.gallery {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 40px;
}
.g-item {
  position: relative; margin: 0; border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(194,162,100,.25); aspect-ratio: 4 / 3;
}
.g-wide { grid-column: span 2; }
.g-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.7,.3,1);
}
.g-item:hover img { transform: scale(1.05); }
.g-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 34px 16px 13px;
  background: linear-gradient(180deg, transparent, rgba(21,23,26,.88));
  font-size: 13px; font-weight: 600; letter-spacing: .04em; color: var(--v-cream);
}
@media (max-width: 860px) {
  .gallery { grid-template-columns: 1fr 1fr; }
  .g-wide { grid-column: span 2; }
}

.stat-band {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 14px;
}
@media (max-width: 760px) { .stat-band { grid-template-columns: 1fr 1fr; } }
.stat {
  text-align: center; padding: 22px 12px; border-radius: var(--radius);
  background: rgba(21,23,26,.55); border: 1px solid rgba(194,162,100,.3);
}
.stat-num { display: block; font-size: 26px; font-weight: 800; color: var(--v-gold-bright); }
.stat-label { display: block; margin-top: 5px; font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; color: rgba(242,236,223,.55); }
.gallery-note { text-align: center; font-size: 11.5px; color: rgba(242,236,223,.35); margin: 0; }

/* ---------- Presenter ---------- */
.host-card {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 0; overflow: hidden;
  border-radius: var(--radius); border: 1px solid rgba(194,162,100,.3);
  background: rgba(21,23,26,.55);
}
@media (max-width: 820px) { .host-card { grid-template-columns: 1fr; } }
.host-photo { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
.host-copy { padding: 36px 34px; }
.host-copy h2 { font-size: 26px; }
.host-sub { color: var(--v-gold-bright); font-weight: 600; margin: -6px 0 14px; }
.host-copy p { color: rgba(242,236,223,.75); font-size: 15.5px; }
.host-team { font-size: 13px; color: rgba(242,236,223,.55); border-top: 1px solid rgba(194,162,100,.25); padding-top: 14px; margin-top: 18px; }
.host-team strong { color: var(--v-cream); font-weight: 600; }

/* ---------- Registration card ---------- */
.reg-card {
  background: #fff; border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(154,126,69,.28);
  box-shadow: 0 30px 80px rgba(30,25,10,.14);
  overflow: hidden; max-width: 640px; margin: 0 auto;
}
.reg-session {
  text-align: center; padding: 26px 24px 22px;
  background: linear-gradient(150deg, #1E2226, #2A2F34);
  color: var(--v-cream);
}
.reg-session-label { font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--v-gold-bright); margin: 0 0 6px; }
.reg-session-date { font-size: 24px; font-weight: 800; margin: 0; }
.reg-session-time { font-size: 15px; color: rgba(242,236,223,.75); margin: 3px 0 0; }
.reg-session-local { font-size: 12.5px; color: rgba(220,194,140,.85); margin: 4px 0 0; }
.reg-session-note { font-size: 12px; color: rgba(242,236,223,.45); margin: 8px 0 0; }
.reg-form { padding: 28px 26px 30px; }
.field-legend { display: block; font-size: 13px; font-weight: 600; letter-spacing: .04em; margin-bottom: 8px; color: rgba(35,38,42,.75); }
.reg-submit { width: 100%; margin-top: 10px; font-size: 16.5px; padding: 18px; }

.already-card {
  max-width: 640px; margin: 0 auto 26px; padding: 26px; text-align: center;
  background: #FDF9EE; border: 1.5px solid rgba(154,126,69,.4); border-radius: var(--radius);
}
.already-title { font-weight: 800; font-size: 18px; color: #1E2126; margin: 0 0 4px; }
.already-sub { color: rgba(35,38,42,.65); font-size: 14.5px; margin: 0 0 16px; }
.already-again {
  display: block; margin: 12px auto 0; background: none; border: 0; cursor: pointer;
  font-family: var(--font-brand); font-size: 13px; color: rgba(35,38,42,.55);
  text-decoration: underline;
}

.after-reg { text-align: center; margin-top: 40px; }
.after-reg h3 { font-size: 15px; letter-spacing: .12em; }
.after-list {
  list-style: none; display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px; padding: 0; margin: 14px 0 18px;
}
.after-list li {
  padding: 9px 18px; border-radius: 999px; background: #fff;
  border: 1px solid rgba(154,126,69,.25); font-size: 13.5px; font-weight: 600;
  color: rgba(35,38,42,.75);
}
.after-reg .already { font-size: 13px; color: rgba(35,38,42,.5); }
