/* ============================================================
   Sunvak Boreal — seminar registration page
   Shares every token, header, footer and form primitive with
   styles.css; this file only adds the blocks unique to the
   seminar route (/seminar/ and /seminar/success/).
   ============================================================ */

/* ---------- Compact hero ------------------------------------ */

.reg-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h) + clamp(3rem, 7vw, 5.5rem)) 0 clamp(2.5rem, 5vw, 4rem);
}
.reg-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(calc(100% - (2 * var(--edge))), calc(var(--maxw) + 120px));
  height: 1px;
  background: var(--faint);
  transform: translateX(-50%);
}
/* One continuous dot field sits above the page gradients. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(247, 251, 255, .8) 0 1px, transparent 1.4px);
  background-position: 18px 20px;
  background-size: 150px 150px;
  opacity: .22;
  mask-image: linear-gradient(to bottom, black, rgba(0, 0, 0, .72));
}

/* the shared .sky sits behind, cropped to hero height */
.reg-hero .sky { background: radial-gradient(120% 130% at 50% -4%, #172e50 0%, #0e203b 42%, var(--void) 84%); }
.reg-hero .stars,
.done-wrap .stars {
  display: none;
  animation: none;
}
.reg-hero .aurora {
  top: -34%;
  height: 92%;
  --lit: .34;
  filter: blur(70px) saturate(118%);
}
.done-wrap .aurora { top: -30%; height: 80%; --lit: .3; }

.reg-hero__inner { position: relative; z-index: 1; }

.reg-hero__title {
  font-family: var(--disp);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.02em;
  font-size: clamp(2.1rem, 5.2vw, 3.6rem);
  margin-top: 1.1rem;
  max-width: 22ch;
}
.reg-hero__lede {
  margin-top: 1.2rem;
  max-width: 58ch;
  color: var(--mist);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.62;
}

/* mono fact row: date · time · venue · format */
.reg-meta {
  list-style: none;
  margin-top: clamp(1.6rem, 3vw, 2.2rem);
  display: flex;
  flex-wrap: wrap;
  gap: .7rem 1.6rem;
}
.reg-meta li {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .06em;
  color: var(--frost);
}
.reg-meta svg { width: 1.05em; height: 1.05em; color: var(--teal); flex: 0 0 auto; }
.reg-meta__k {
  display: block;
  font-size: .6rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: .3rem;
}

.reg-hero__actions {
  margin-top: clamp(1.8rem, 3.5vw, 2.4rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem;
}

/* live pill */
.pill {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .4rem .85rem .4rem .7rem;
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(30, 207, 198, .07);
  border: 1px solid rgba(30, 207, 198, .28);
  border-radius: 999px;
}
.pill__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px 2px rgba(166, 242, 79, .55);
  animation: pulse 2.4s ease-in-out infinite;
}

/* ---------- Two-column body --------------------------------- */

.reg-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  padding-block: clamp(3rem, 6vw, 5rem);
}

.reg-details { display: grid; gap: clamp(2.4rem, 5vw, 3.4rem); min-width: 0; }

.reg-block__title {
  font-family: var(--disp);
  font-weight: 600;
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  letter-spacing: -0.01em;
  margin-top: .9rem;
}
.reg-block__intro {
  margin-top: .8rem;
  max-width: 56ch;
  color: var(--mist);
  font-size: .98rem;
  line-height: 1.62;
}

/* what you'll learn */
.learn {
  list-style: none;
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.learn li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .8rem;
  padding: 1.1rem 1.15rem;
  background: var(--card);
  border: 1px solid var(--card-brd);
  border-radius: 14px;
  color: var(--mist);
  font-size: .92rem;
  line-height: 1.55;
  transition: border-color .25s ease, background .25s ease;
}
.learn li:hover { border-color: rgba(30, 207, 198, .34); background: rgba(30, 207, 198, .03); }
.learn strong {
  display: block;
  color: var(--frost);
  font-weight: 600;
  font-size: .97rem;
  margin-bottom: .3rem;
}
.learn svg { width: 18px; height: 18px; color: var(--teal); margin-top: .15rem; }

/* agenda timeline */
.agenda { list-style: none; margin-top: 1.6rem; }
.agenda li {
  position: relative;
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 1.4rem;
  padding: 1.15rem 0 1.15rem 0;
  border-top: 1px solid var(--faint);
}
.agenda li:last-child { border-bottom: 1px solid var(--faint); }
.agenda__time {
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .06em;
  color: var(--teal);
  padding-top: .1rem;
}
.agenda__title { font-size: 1rem; font-weight: 600; color: var(--frost); }
.agenda__desc { margin-top: .35rem; color: var(--mist); font-size: .9rem; line-height: 1.55; max-width: 46ch; }
.agenda__break .agenda__title { color: var(--mist); font-weight: 400; }

/* speaker */
.speaker {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.2rem, 3vw, 1.8rem);
  align-items: start;
  padding: clamp(1.3rem, 3vw, 1.8rem);
  background: rgba(16, 34, 60, .66);
  border: 1px solid var(--card-brd);
  border-radius: 18px;
}
.speaker__photo {
  width: 84px; height: 84px;
  display: grid;
  place-items: center;
  overflow: hidden;
  object-fit: cover;
  border-radius: 50%;
  background: linear-gradient(140deg, rgba(106, 69, 255, .3), rgba(30, 207, 198, .25));
  border: 1px solid rgba(30, 207, 198, .3);
  font-family: var(--mono);
  font-size: 1.35rem;
  letter-spacing: .06em;
  color: var(--frost);
  flex: 0 0 auto;
}
.speaker__name { font-size: 1.1rem; font-weight: 600; color: var(--frost); }
.speaker__role {
  margin-top: .3rem;
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal);
}
.speaker__bio { margin-top: .9rem; color: var(--mist); font-size: .93rem; line-height: 1.6; max-width: 52ch; }
/* credentials reuse the .chips pill, tightened to sit inside the speaker card */
.speaker__creds { margin-top: 1.1rem; gap: .45rem; }
.speaker__creds li { padding: .38rem .75rem; font-size: .64rem; letter-spacing: .08em; }

/* who it's for */
.chips { list-style: none; margin-top: 1.4rem; display: flex; flex-wrap: wrap; gap: .6rem; }
.chips li {
  padding: .5rem .95rem;
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mist);
  background: var(--card);
  border: 1px solid var(--card-brd);
  border-radius: 999px;
}

/* ---------- Sticky registration card ------------------------ */

.reg-card {
  position: sticky;
  top: calc(var(--header-h) + var(--banner-h, 0px) + 1.5rem);
  display: grid;
  gap: 1rem;
  padding: clamp(1.4rem, 3vw, 1.9rem);
  background: rgba(16, 34, 60, .82);
  border: 1px solid var(--card-brd);
  border-radius: 18px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 24px 64px -30px rgba(2, 11, 28, .72);
}
.reg-card__head { display: grid; gap: .5rem; }
.reg-card__title { font-size: 1.15rem; font-weight: 600; color: var(--frost); }
.reg-card__sub { color: var(--mist); font-size: .86rem; line-height: 1.5; }

.reg-card__rule { height: 1px; background: var(--faint); }

.reg-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .5rem 1rem;
}
.reg-price__k {
  flex: 0 0 auto;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dim);
  white-space: nowrap;
}
.reg-price__amt { display: grid; gap: .3rem; text-align: right; min-width: 0; }
.reg-price__v {
  font-family: var(--disp);
  font-weight: 700;
  font-size: clamp(1.35rem, 3vw, 1.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  background: linear-gradient(100deg, var(--teal), var(--lime));
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.reg-price__note { font-family: var(--mono); font-size: .64rem; letter-spacing: .05em; line-height: 1.4; color: var(--dim); }

.reg-card__trust {
  list-style: none;
  display: grid;
  gap: .5rem;
}
.reg-card__trust li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .55rem;
  font-size: .8rem;
  line-height: 1.45;
  color: var(--dim);
}
.reg-card__trust svg { width: 14px; height: 14px; color: var(--teal); margin-top: .2rem; }

/* ---------- Razorpay Payment Page --------------------------- */

.rzp { position: relative; display: grid; justify-items: center; gap: .75rem; min-height: 46px; }
.rzp__button {
  width: min(100%, 320px);
  min-height: 50px;
  font-size: .82rem;
  background: linear-gradient(100deg, var(--teal), var(--lime));
  box-shadow: 0 12px 30px rgba(45, 210, 201, .16);
}
.rzp__button:hover { box-shadow: 0 14px 34px rgba(45, 210, 201, .28); }
.rzp__provider {
  max-width: 34ch;
  margin: 0;
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .06em;
  line-height: 1.5;
  text-align: center;
  color: var(--dim);
}

/* ---------- Success panel ----------------------------------- */

.done-wrap {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: calc(var(--header-h) + clamp(3rem, 8vw, 6rem)) 0 clamp(3rem, 8vw, 6rem);
}
.done {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin-inline: auto;
  text-align: center;
}
.done__seal {
  width: 74px; height: 74px;
  margin-inline: auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(30, 207, 198, .08);
  border: 1px solid rgba(30, 207, 198, .4);
  box-shadow: 0 0 44px -6px rgba(30, 207, 198, .45);
}
.done__seal svg { width: 32px; height: 32px; color: var(--teal); }
.done__title {
  margin-top: 1.6rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-size: clamp(1.9rem, 4.6vw, 2.9rem);
}
.done__lede { margin-top: 1rem; color: var(--mist); font-size: 1.03rem; line-height: 1.62; }

.ticket {
  margin-top: clamp(2rem, 4vw, 2.6rem);
  text-align: left;
  padding: clamp(1.3rem, 3vw, 1.8rem);
  background: rgba(16, 34, 60, .72);
  border: 1px solid var(--card-brd);
  border-radius: 18px;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
.ticket__rows { list-style: none; display: grid; gap: .1rem; }
.ticket__rows li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: .6rem 1.2rem;
  padding: .8rem 0;
  border-bottom: 1px solid var(--faint);
}
.ticket__rows li:last-child { border-bottom: 0; }
.ticket__k {
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dim);
}
.ticket__v { font-size: .95rem; color: var(--frost); text-align: right; }
.ticket__v--mono { font-family: var(--mono); font-size: .85rem; letter-spacing: .04em; }

.next {
  list-style: none;
  margin-top: clamp(2rem, 4vw, 2.6rem);
  text-align: left;
  display: grid;
  gap: 1.1rem;
}
.next li { display: grid; grid-template-columns: auto 1fr; gap: .9rem; color: var(--mist); font-size: .94rem; line-height: 1.58; }
.next strong { display: block; color: var(--frost); font-weight: 600; margin-bottom: .2rem; }
.next__no {
  width: 26px; height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(30, 207, 198, .34);
  font-family: var(--mono);
  font-size: .68rem;
  color: var(--teal);
}

.done__actions {
  margin-top: clamp(2.2rem, 4vw, 3rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}

/* ---------- Responsive -------------------------------------- */

@media (max-width: 980px) {
  .reg-layout { grid-template-columns: minmax(0, 1fr); }
  .reg-card { position: static; max-width: 480px; }
  .learn { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .agenda li { grid-template-columns: 1fr; gap: .45rem; }
  .speaker { grid-template-columns: 1fr; }
  .ticket__v { text-align: left; }
}
