:root {
  --bg: #03040d;
  --bg-soft: #08081a;
  --surface: rgba(21, 11, 42, 0.78);
  --surface-strong: rgba(30, 16, 58, 0.9);
  --line: rgba(195, 91, 255, 0.28);
  --line-strong: rgba(210, 121, 255, 0.48);
  --text: #ffffff;
  --muted: #b9b1c8;
  --soft: #8c83a2;
  --purple: #9c27ff;
  --violet: #6e25e7;
  --pink: #ec238f;
  --orange: #ff9900;
  --gold: #ffc107;
  --green: #2ed36d;
  --blue: #2494ff;
  --red: #ef3c48;
  --radius: 8px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.42);
  --container: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Inter, Poppins, "Segoe UI", Arial, sans-serif;
  background:
    linear-gradient(120deg, rgba(87, 0, 177, 0.18), transparent 28%),
    linear-gradient(300deg, rgba(255, 153, 0, 0.11), transparent 24%),
    #03040d;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 78%, transparent);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.page-shell {
  min-height: 100vh;
}

.container {
  width: min(var(--container), calc(100% - 44px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(2, 3, 10, 0.86);
  backdrop-filter: blur(18px);
}

.topbar-inner {
  width: min(1280px, calc(100% - 38px));
  min-height: 72px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 285px 1fr auto;
  align-items: center;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 210, 63, 0.44);
  box-shadow: 0 0 22px rgba(255, 193, 7, 0.18);
  flex: 0 0 auto;
}

.brand-name {
  display: grid;
  gap: 2px;
  line-height: 1;
  min-width: 0;
}

.brand-name strong {
  font-size: 17px;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-name span {
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 2px;
}

.nav a {
  min-height: 72px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f5eefc;
  font-size: 14px;
  border-bottom: 2px solid transparent;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.nav a:hover,
.nav a.active {
  color: #ffffff;
  border-bottom-color: #c351ff;
  background: linear-gradient(to bottom, rgba(157, 39, 255, 0.06), rgba(157, 39, 255, 0.16));
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-primary {
  background: linear-gradient(135deg, #8d1cff, #f02d9c 56%, #ff9d00);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 32px rgba(157, 39, 255, 0.24);
}

.btn-gold {
  color: #130900;
  background: linear-gradient(135deg, #ffd21f, #ff9d00);
  box-shadow: 0 12px 28px rgba(255, 157, 0, 0.22);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.26);
}

.btn-soft {
  background: rgba(120, 46, 238, 0.24);
  border-color: rgba(202, 105, 255, 0.34);
}

.btn-green {
  background: linear-gradient(135deg, #1cbf5a, #51e08a);
  color: #03130a;
}

.btn-red {
  background: linear-gradient(135deg, #d9293b, #ff6370);
}

.icon-btn {
  width: 42px;
  height: 42px;
  padding: 0;
}

.main {
  position: relative;
  z-index: 1;
}

.hero {
  min-height: 438px;
  padding: 58px 0 34px;
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(440px, 1.14fr);
  align-items: center;
  gap: 28px;
  overflow: hidden;
}

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

.eyebrow {
  margin: 0 0 16px;
  color: #ff6feb;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 630px;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--gold);
}

.hero p {
  max-width: 480px;
  margin: 20px 0 26px;
  color: #d3ccdc;
  font-size: 19px;
  line-height: 1.55;
}

.feature-pills {
  display: grid;
  grid-template-columns: repeat(4, minmax(112px, 1fr));
  gap: 16px;
  max-width: 650px;
  margin: 0 0 26px;
}

.feature-pill {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 12px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(156, 39, 255, 0.24);
  color: #e288ff;
}

.feature-pill:nth-child(2) .feature-icon {
  background: rgba(236, 35, 143, 0.24);
  color: #ff5fb3;
}

.feature-pill:nth-child(3) .feature-icon {
  background: rgba(255, 153, 0, 0.2);
  color: #ffb12a;
}

.feature-pill:nth-child(4) .feature-icon {
  background: rgba(46, 211, 109, 0.18);
  color: #5df395;
}

.feature-icon svg {
  width: 25px;
  height: 25px;
}

.feature-pill strong {
  display: block;
  font-size: 13px;
  line-height: 1.25;
}

.hero-art {
  position: relative;
  min-height: 410px;
  display: grid;
  place-items: center;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 7% 0 0 5%;
  background:
    linear-gradient(110deg, transparent 0 16%, rgba(140, 30, 255, 0.38) 16% 17%, transparent 17% 30%, rgba(255, 153, 0, 0.36) 30% 31%, transparent 31% 48%, rgba(236, 35, 143, 0.32) 48% 49%, transparent 49%),
    linear-gradient(250deg, transparent 0 12%, rgba(40, 148, 255, 0.26) 12% 13%, transparent 13% 34%, rgba(255, 255, 255, 0.16) 34% 35%, transparent 35%);
  filter: blur(0.2px);
  opacity: 0.9;
}

.hero-logo {
  position: relative;
  width: min(760px, 100%);
  filter: drop-shadow(0 28px 55px rgba(0, 0, 0, 0.65));
}

.stats-band {
  margin: 14px auto 28px;
  border: 1px solid rgba(185, 90, 255, 0.32);
  border-radius: var(--radius);
  background: rgba(13, 8, 28, 0.76);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}

.stat {
  min-height: 98px;
  padding: 22px 28px;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 16px;
  position: relative;
}

.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 24%;
  width: 1px;
  height: 52%;
  background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(157, 39, 255, 0.2);
  color: #d66dff;
}

.stat:nth-child(2) .stat-icon {
  background: rgba(236, 35, 143, 0.22);
  color: #ff58ad;
}

.stat:nth-child(3) .stat-icon {
  background: rgba(255, 153, 0, 0.2);
  color: #ffae18;
}

.stat:nth-child(4) .stat-icon {
  background: rgba(46, 211, 109, 0.2);
  color: #4ce489;
}

.stat-icon svg {
  width: 28px;
  height: 28px;
}

.stat strong {
  display: block;
  font-size: 29px;
  line-height: 1;
}

.stat span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 26px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.section-head h2,
.panel-title h2,
.center-title {
  margin: 0;
  font-size: 31px;
  letter-spacing: 0;
}

.section-head p {
  margin: 6px 0 0;
  color: var(--muted);
}

.link-action {
  color: #ed91ff;
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.event-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(194, 93, 255, 0.32);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(22, 13, 46, 0.92), rgba(10, 9, 22, 0.95));
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
}

.event-card:hover {
  border-color: rgba(227, 133, 255, 0.7);
  transform: translateY(-2px);
  transition: transform 160ms ease, border-color 160ms ease;
}

.event-poster {
  height: 202px;
  position: relative;
  overflow: hidden;
  background: #080716;
}

.poster-umang {
  display: grid;
  place-items: center;
  background:
    linear-gradient(110deg, rgba(62, 11, 120, 0.92), rgba(6, 6, 18, 0.3)),
    linear-gradient(260deg, rgba(255, 129, 0, 0.3), transparent 38%);
}

.poster-umang img {
  width: 115%;
  transform: translateY(5px);
  filter: drop-shadow(0 20px 38px rgba(0, 0, 0, 0.55));
}

.poster-visual {
  height: 100%;
  display: grid;
  place-items: end center;
  padding: 22px;
  text-align: center;
  isolation: isolate;
}

.poster-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}

.poster-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.6)),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(255, 255, 255, 0.08) 35px 36px);
}

.poster-freshers::before {
  background:
    linear-gradient(135deg, rgba(60, 29, 160, 0.2), rgba(236, 35, 143, 0.24)),
    radial-gradient(circle at 32% 26%, rgba(180, 58, 255, 0.72), transparent 25%),
    radial-gradient(circle at 74% 20%, rgba(255, 42, 155, 0.7), transparent 22%),
    linear-gradient(180deg, #19003a, #05040d);
}

.poster-annual::before {
  background:
    linear-gradient(180deg, rgba(255, 179, 36, 0.32), rgba(5, 4, 13, 0.95)),
    repeating-linear-gradient(100deg, transparent 0 38px, rgba(255, 184, 43, 0.18) 39px 41px),
    #120a04;
}

.poster-sports::before {
  background:
    linear-gradient(120deg, rgba(33, 148, 255, 0.42), rgba(46, 211, 109, 0.16), rgba(236, 35, 143, 0.26)),
    linear-gradient(180deg, #061a32, #080510);
}

.poster-kite::before {
  background:
    linear-gradient(140deg, rgba(255, 153, 0, 0.42), rgba(236, 35, 143, 0.24), rgba(36, 148, 255, 0.26)),
    #0a0716;
}

.poster-title {
  display: block;
  color: #ffffff;
  font-weight: 950;
  font-size: 26px;
  line-height: 1.05;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.72);
}

.poster-title span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 700;
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  border-radius: 6px;
  padding: 7px 10px;
  background: rgba(131, 40, 206, 0.9);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.event-body {
  padding: 17px 18px 18px;
}

.event-body h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.event-body p {
  min-height: 34px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.meta {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  color: #d9d2e4;
  font-size: 14px;
}

.meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.meta svg {
  width: 16px;
  height: 16px;
  color: currentColor;
}

.event-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price {
  font-size: 24px;
  font-weight: 950;
}

.price.purple {
  color: #d568ff;
}

.price.pink {
  color: #ff3c9d;
}

.price.orange {
  color: var(--orange);
}

.price.green {
  color: #47e17e;
}

.small-btn {
  min-height: 36px;
  padding: 0 15px;
  font-size: 12px;
}

.steps-wrap {
  padding: 8px 0 4px;
}

.center-title {
  text-align: center;
  margin-bottom: 20px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 34px;
  align-items: stretch;
}

.step {
  position: relative;
  min-height: 160px;
  border: 1px solid rgba(194, 93, 255, 0.34);
  border-radius: var(--radius);
  padding: 25px 18px 20px;
  background: rgba(18, 12, 37, 0.72);
  text-align: center;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -31px;
  top: 50%;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, rgba(212, 108, 255, 0.2), #cf6cff);
}

.step:not(:last-child)::before {
  content: "";
  position: absolute;
  right: -33px;
  top: calc(50% - 5px);
  width: 10px;
  height: 10px;
  border-top: 2px solid #cf6cff;
  border-right: 2px solid #cf6cff;
  transform: rotate(45deg);
}

.step-num {
  position: absolute;
  left: 16px;
  top: 18px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(157, 39, 255, 0.72);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.step:nth-child(2) .step-num {
  background: rgba(236, 35, 143, 0.72);
}

.step:nth-child(3) .step-num {
  background: rgba(255, 153, 0, 0.72);
}

.step:nth-child(4) .step-num {
  background: rgba(46, 211, 109, 0.72);
}

.step:nth-child(5) .step-num {
  background: rgba(36, 148, 255, 0.72);
}

.step-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ebb0ff;
  background: rgba(157, 39, 255, 0.24);
}

.step-icon svg {
  width: 27px;
  height: 27px;
}

.step h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.step p {
  margin: 0;
  color: #d3ccdc;
  font-size: 13px;
  line-height: 1.45;
}

.split-band {
  display: grid;
  grid-template-columns: 280px minmax(280px, 1fr) minmax(320px, 0.9fr);
  gap: 40px;
  align-items: center;
  padding: 26px 0;
}

.phone-pass {
  width: 250px;
  min-height: 398px;
  margin: 0 auto;
  padding: 18px 17px;
  border-radius: 28px;
  border: 3px solid #262633;
  background:
    linear-gradient(180deg, rgba(23, 7, 39, 0.6), rgba(5, 4, 13, 0.9)),
    url("assets/umang-logo.png") top 8px center / 118% auto no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 24px 54px rgba(0, 0, 0, 0.52);
  overflow: hidden;
  position: relative;
}

.phone-pass::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 4, 13, 0.16), rgba(5, 4, 13, 0.86) 32%);
}

.pass-card-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.pass-card-content h3 {
  margin: 10px 0 0;
  color: var(--gold);
  font-size: 24px;
  line-height: 1.05;
}

.pass-card-content h3 span {
  display: block;
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.avatar {
  width: 58px;
  height: 58px;
  margin: 18px auto 8px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid #ffffff;
  background: linear-gradient(145deg, #ffd3a0, #7a3f24);
  color: #18101c;
  font-weight: 950;
  font-size: 22px;
}

.mini-data {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 12px;
  text-align: left;
  margin: 10px 0 14px;
  font-size: 11px;
}

.mini-data span {
  display: block;
  color: #d8d3e0;
}

.mini-data strong {
  display: block;
  color: #ffffff;
  margin-top: 3px;
}

.qr {
  width: 132px;
  height: 132px;
  margin: 8px auto 13px;
  padding: 9px;
  border-radius: 6px;
  background: #ffffff;
}

.qr svg {
  width: 100%;
  height: 100%;
  display: block;
}

.qr img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.pass-college {
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
  line-height: 1.15;
}

.benefits h2,
.testimonial h2 {
  margin: 0 0 18px;
  font-size: 26px;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  color: #dcd4e5;
}

.check-list svg {
  width: 18px;
  height: 18px;
  color: #e46cff;
}

.testimonial {
  border: 1px solid rgba(194, 93, 255, 0.28);
  border-radius: var(--radius);
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(41, 12, 64, 0.9), rgba(9, 8, 22, 0.9)),
    linear-gradient(60deg, transparent 0 70%, rgba(236, 35, 143, 0.2));
}

.quote {
  color: #dcd4e5;
  font-size: 18px;
  line-height: 1.65;
}

.quote-mark {
  color: #df75ff;
  display: block;
  font-size: 52px;
  line-height: 0.8;
  font-weight: 950;
}

.review-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  width: 46px;
  height: 46px;
  margin-left: -10px;
  border: 2px solid #1b1230;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #17101d;
  background: linear-gradient(145deg, #fff1cf, #a65731);
  font-weight: 950;
}

.avatar-stack span:first-child {
  margin-left: 0;
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
}

.cta-band {
  margin: 16px 0 24px;
  padding: 26px 36px;
  border: 1px solid rgba(255, 195, 42, 0.25);
  border-radius: var(--radius);
  background: linear-gradient(110deg, #6816d7, #d7438b 52%, #ffa600);
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  gap: 22px;
  box-shadow: 0 20px 48px rgba(160, 40, 210, 0.2);
}

.cta-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.17);
}

.cta-icon svg {
  width: 34px;
  height: 34px;
}

.cta-band h2 {
  margin: 0 0 7px;
  font-size: 25px;
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(3, 4, 13, 0.84);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 1fr;
  gap: 34px;
  padding: 30px 0 22px;
}

.footer-brand {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  align-items: start;
}

.footer-brand img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
}

.footer h3 {
  margin: 0 0 11px;
  font-size: 16px;
}

.footer p,
.footer a,
.footer li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.socials {
  display: flex;
  gap: 10px;
  margin: 8px 0 10px;
}

.socials span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr 42px;
  gap: 8px;
  margin-top: 12px;
}

.newsletter input,
.field input,
.field select,
.field textarea,
.upi-box input {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.045);
  padding: 0 13px;
  outline: none;
}

.field textarea {
  min-height: 88px;
  padding-top: 12px;
  resize: vertical;
}

.newsletter input:focus,
.field input:focus,
.field select:focus,
.field textarea:focus,
.upi-box input:focus {
  border-color: rgba(221, 112, 255, 0.74);
  box-shadow: 0 0 0 3px rgba(156, 39, 255, 0.14);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 0;
  color: var(--soft);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.subpage {
  padding: 22px 0 34px;
}

.crumbs {
  margin: 0 0 16px;
  color: var(--soft);
  font-size: 13px;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 0.85fr);
  gap: 28px;
  border: 1px solid rgba(194, 93, 255, 0.3);
  border-radius: var(--radius);
  padding: 28px;
  background: linear-gradient(135deg, rgba(27, 13, 53, 0.92), rgba(6, 5, 16, 0.94));
  box-shadow: var(--shadow);
}

.detail-main-art {
  min-height: 318px;
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    linear-gradient(110deg, rgba(108, 26, 211, 0.28), rgba(255, 153, 0, 0.16)),
    #070713;
}

.detail-main-art img {
  width: 112%;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.thumb {
  height: 66px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.thumb.poster-freshers {
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.55)),
    linear-gradient(135deg, #3811a4, #e42f99 62%, #160726);
}

.thumb.poster-annual {
  background:
    linear-gradient(180deg, rgba(255, 184, 43, 0.36), rgba(0, 0, 0, 0.72)),
    #170d05;
}

.thumb.poster-sports {
  background:
    linear-gradient(130deg, #1587ef, #1ec76a 54%, #b4229a),
    #071225;
}

.thumb.poster-kite {
  background:
    linear-gradient(140deg, #ff9900, #ec238f, #2494ff),
    #0a0716;
}

.detail-info h1 {
  margin: 4px 0 10px;
  font-size: 34px;
}

.detail-info p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.6;
}

.detail-list {
  display: grid;
  gap: 13px;
  margin: 0 0 22px;
}

.detail-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  color: #ddd5e7;
  font-size: 14px;
}

.detail-list span {
  color: #b69fc8;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.detail-list svg {
  width: 16px;
  height: 16px;
  color: #da71ff;
}

.detail-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.highlights {
  margin-top: 20px;
  border: 1px solid rgba(194, 93, 255, 0.26);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(17, 10, 35, 0.72);
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.highlight {
  min-height: 92px;
  display: grid;
  place-items: center;
  gap: 10px;
  text-align: center;
  color: #e8def0;
  font-size: 13px;
}

.highlight span:first-child {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #e47bff;
  background: rgba(157, 39, 255, 0.22);
}

.highlight svg {
  width: 21px;
  height: 21px;
}

.form-panel,
.payment-panel,
.success-panel,
.pass-panel,
.login-panel {
  border: 1px solid rgba(194, 93, 255, 0.28);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(27, 13, 53, 0.9), rgba(7, 6, 18, 0.96));
  box-shadow: var(--shadow);
}

.form-panel {
  padding: 28px;
}

.form-panel h1,
.payment-panel h1,
.pass-panel h1,
.login-panel h1 {
  margin: 0 0 8px;
  font-size: 26px;
}

.muted {
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 24px;
}

.form-block {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255, 255, 255, 0.025);
}

.form-block h2 {
  margin: 0 0 18px;
  font-size: 17px;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.field label {
  color: #f3eaf9;
  font-size: 13px;
  font-weight: 800;
}

.field small {
  color: var(--soft);
}

.terms-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.terms-row input {
  accent-color: var(--purple);
}

.form-submit {
  margin-top: 18px;
  display: flex;
  justify-content: flex-end;
}

.payment-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 22px;
}

.payment-panel {
  padding: 24px;
}

.order-row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: center;
  margin: 18px 0 20px;
}

.order-thumb {
  height: 72px;
  border-radius: 6px;
  background:
    linear-gradient(110deg, rgba(89, 18, 170, 0.35), rgba(255, 153, 0, 0.18)),
    url("assets/umang-logo.png") center / 128% auto no-repeat;
}

.summary-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.summary-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

.summary-list strong {
  color: #ffffff;
}

.summary-list .total {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 18px;
}

.pay-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  margin: 18px 0;
  padding: 5px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.pay-tab {
  min-height: 38px;
  border: 0;
  border-radius: 6px;
  color: #dfd7e9;
  background: transparent;
  font-weight: 800;
  font-size: 13px;
}

.pay-tab.active {
  background: linear-gradient(135deg, #741dd5, #c229a1);
  color: #ffffff;
}

.wallet-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.wallet {
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: #f5eefc;
  background: rgba(255, 255, 255, 0.04);
  font-weight: 850;
  font-size: 13px;
}

.upi-box {
  display: grid;
  grid-template-columns: 1fr 168px;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 18px;
}

.secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--soft);
  font-size: 12px;
}

.success-panel {
  max-width: 760px;
  margin: 0 auto;
  padding: 34px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.success-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(50deg, transparent 0 18%, rgba(255, 153, 0, 0.2) 18% 19%, transparent 19% 36%, rgba(157, 39, 255, 0.24) 36% 37%, transparent 37%),
    linear-gradient(130deg, transparent 0 20%, rgba(46, 211, 109, 0.2) 20% 21%, transparent 21%);
  opacity: 0.45;
}

.success-panel > * {
  position: relative;
  z-index: 1;
}

.success-icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green);
  border: 3px solid var(--green);
}

.success-icon svg {
  width: 48px;
  height: 48px;
}

.booking-box {
  margin: 25px auto;
  max-width: 560px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.045);
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 26px;
}

.booking-box div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}

.booking-box strong {
  color: #ffffff;
}

.success-actions,
.pass-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.pass-panel {
  max-width: 900px;
  margin: 0 auto;
  padding: 28px;
  text-align: center;
}

.digital-pass {
  width: min(640px, 100%);
  margin: 24px auto;
  border: 1px solid rgba(194, 93, 255, 0.42);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(15, 9, 32, 0.92), rgba(8, 7, 18, 0.96)),
    linear-gradient(260deg, rgba(255, 153, 0, 0.12), transparent 45%);
  display: grid;
  grid-template-columns: 1fr 190px;
  align-items: center;
  gap: 18px;
  padding: 24px;
  text-align: left;
}

.pass-logo-strip {
  height: 106px;
  background: url("assets/umang-logo.png") left center / contain no-repeat;
  margin-bottom: 14px;
}

.pass-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}

.pass-detail-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.pass-detail-grid strong {
  color: #ffffff;
  font-size: 14px;
}

.pass-qr {
  display: grid;
  place-items: center;
  gap: 10px;
  text-align: center;
}

.pass-qr .qr {
  width: 170px;
  height: 170px;
  margin: 0;
}

.pending-qr {
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: #ffbf68;
}

.pending-qr svg {
  width: 58px;
  height: 58px;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 248px 1fr;
  min-height: calc(100vh - 72px);
}

.admin-shell {
  background:
    linear-gradient(120deg, rgba(87, 0, 177, 0.12), transparent 28%),
    linear-gradient(300deg, rgba(255, 153, 0, 0.07), transparent 24%),
    #03040d;
}

.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  min-height: 74px;
  padding: 0 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(2, 3, 10, 0.92);
  backdrop-filter: blur(18px);
}

.admin-top-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-user {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0 16px;
  color: #f7efff;
  background: rgba(255, 255, 255, 0.05);
  font-weight: 850;
}

.sidebar {
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(7, 5, 18, 0.78);
  padding: 24px 14px;
}

.side-nav {
  display: grid;
  gap: 7px;
}

.side-nav a {
  min-height: 44px;
  padding: 0 14px;
  border-radius: 6px;
  color: #d6cde1;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.side-nav a.active,
.side-nav a:hover {
  background: linear-gradient(90deg, rgba(139, 33, 220, 0.84), rgba(139, 33, 220, 0.22));
  color: #ffffff;
}

.side-nav svg {
  width: 18px;
  height: 18px;
}

.workspace {
  padding: 26px;
}

.workspace-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 20px;
}

.workspace-head h1 {
  margin: 0 0 6px;
  font-size: 28px;
}

.cards-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.metric-card,
.dash-panel {
  border: 1px solid rgba(194, 93, 255, 0.25);
  border-radius: var(--radius);
  background: rgba(18, 11, 38, 0.78);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.metric-card {
  padding: 18px;
}

.metric-card span {
  color: var(--muted);
  font-size: 13px;
}

.metric-card strong {
  display: block;
  margin-top: 9px;
  font-size: 25px;
}

.metric-card small {
  color: var(--green);
}

.dash-grid {
  display: grid;
  grid-template-columns: 1.28fr 0.72fr;
  gap: 18px;
}

.dash-panel {
  padding: 20px;
}

.dash-panel h2 {
  margin: 0 0 16px;
  font-size: 18px;
}

.passes-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.mini-event-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.mini-event-card .event-poster {
  height: 128px;
}

.mini-event-card .event-body {
  padding: 14px;
}

.mini-event-card h3 {
  font-size: 15px;
}

.mini-event-card p {
  min-height: auto;
  font-size: 12px;
}

.status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.status.confirmed,
.status.paid,
.status.valid {
  color: #56ef91;
  background: rgba(46, 211, 109, 0.12);
}

.status.upcoming {
  color: var(--gold);
  background: rgba(255, 193, 7, 0.12);
}

.status.pending {
  color: #ffbf68;
  background: rgba(255, 153, 0, 0.12);
}

.status.active,
.status.confirmed,
.status.student,
.status.admin {
  color: #56ef91;
  background: rgba(46, 211, 109, 0.12);
}

.status.inactive,
.status.cancelled,
.status.failed,
.status.refunded,
.status.completed {
  color: #ff7680;
  background: rgba(239, 60, 72, 0.14);
}

.flash-stack {
  width: min(var(--container), calc(100% - 44px));
  margin: 18px auto 0;
  display: grid;
  gap: 10px;
}

.flash {
  border: 1px solid rgba(209, 112, 255, 0.32);
  border-radius: 8px;
  background: rgba(18, 11, 38, 0.92);
  color: #ffffff;
  padding: 13px 16px;
}

.flash-success {
  border-color: rgba(46, 211, 109, 0.42);
  background: rgba(25, 82, 49, 0.42);
}

.flash-error {
  border-color: rgba(239, 60, 72, 0.48);
  background: rgba(92, 24, 35, 0.48);
}

.inline-search,
.table-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.inline-search input,
.inline-search select,
.table-actions select {
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.045);
  padding: 0 11px;
}

.admin-form {
  display: grid;
  gap: 14px;
}

.form-grid.compact {
  gap: 12px;
}

.scan-form {
  display: grid;
  gap: 14px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  padding: 12px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #dfd8e8;
  font-size: 13px;
  text-align: left;
}

.data-table th {
  color: #ffffff;
  font-weight: 850;
}

.data-table tr:last-child td {
  border-bottom: 0;
}

.donut-layout {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  align-items: center;
}

.donut {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: conic-gradient(#9c27ff 0 43%, #24a0ff 43% 69%, #2ed36d 69% 84%, #ff9900 84% 100%);
  position: relative;
}

.donut::after {
  content: "";
  position: absolute;
  inset: 38px;
  border-radius: 50%;
  background: #100a25;
}

.legend {
  display: grid;
  gap: 9px;
}

.legend span {
  display: grid;
  grid-template-columns: 12px 1fr auto;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
}

.legend i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.scanner-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 28px;
  align-items: stretch;
}

.scanner-frame {
  min-height: 390px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(46, 211, 109, 0.38);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(46, 211, 109, 0.34) 0 2px, transparent 2px calc(100% - 2px), rgba(46, 211, 109, 0.34) calc(100% - 2px)),
    linear-gradient(rgba(46, 211, 109, 0.34) 0 2px, transparent 2px calc(100% - 2px), rgba(46, 211, 109, 0.34) calc(100% - 2px)),
    rgba(8, 7, 18, 0.66);
}

.scanner-frame .qr {
  width: 205px;
  height: 205px;
}

.scan-text {
  margin-top: 18px;
  color: #58f48f;
  font-weight: 900;
  text-align: center;
}

.camera-panel {
  display: grid;
  gap: 14px;
}

.camera-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.camera-box {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 280px;
  border: 1px solid rgba(46, 211, 109, 0.38);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(46, 211, 109, 0.12), transparent),
    #050813;
}

.camera-box video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.camera-corners {
  position: absolute;
  inset: 12%;
  border: 2px solid rgba(46, 211, 109, 0.75);
  border-radius: 8px;
  box-shadow: 0 0 0 999px rgba(0, 0, 0, 0.24);
  pointer-events: none;
}

.camera-corners::before,
.camera-corners::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #58f48f, transparent);
}

.camera-corners::before {
  top: 50%;
}

.camera-corners::after {
  top: calc(50% + 6px);
  opacity: 0.6;
}

.participant-card {
  padding: 24px;
}

.participant-head {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 22px;
}

.participant-head .avatar {
  margin: 0;
}

.detail-grid {
  display: grid;
  gap: 13px;
}

.detail-grid div {
  display: grid;
  grid-template-columns: 130px 1fr;
  color: var(--muted);
  font-size: 14px;
}

.detail-grid strong {
  color: #ffffff;
}

.scanner-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.login-panel {
  max-width: 520px;
  margin: 0 auto;
  padding: 28px;
}

.login-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 100;
  min-width: 260px;
  max-width: 360px;
  border: 1px solid rgba(209, 112, 255, 0.38);
  border-radius: 8px;
  background: rgba(14, 8, 30, 0.96);
  color: #ffffff;
  padding: 14px 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.48);
}

@media (max-width: 1120px) {
  .topbar-inner {
    grid-template-columns: 260px 1fr;
  }

  .top-actions {
    grid-column: 2;
    justify-self: end;
  }

  .nav {
    grid-column: 1 / -1;
    order: 3;
    overflow-x: auto;
    justify-content: flex-start;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav a {
    min-height: 46px;
  }

  .hero,
  .detail-hero,
  .payment-layout,
  .scanner-layout,
  .dash-grid {
    grid-template-columns: 1fr;
  }

  .events-grid,
  .cards-row,
  .passes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .step::before,
  .step::after {
    display: none;
  }

  .split-band {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial {
    grid-column: 1 / -1;
  }

  .highlight-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .container,
  .topbar-inner {
    width: min(100% - 26px, var(--container));
  }

  .topbar-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px 0 0;
  }

  .brand-name strong {
    font-size: 14px;
  }

  .brand-name span {
    font-size: 12px;
  }

  .top-actions {
    grid-column: auto;
    justify-self: stretch;
    margin: 12px 0;
  }

  .top-actions .btn {
    flex: 1;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 34px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-art {
    min-height: 280px;
  }

  .feature-pills,
  .stats-band,
  .events-grid,
  .steps,
  .split-band,
  .footer-grid,
  .form-grid,
  .booking-box,
  .digital-pass,
  .passes-grid,
  .cards-row,
  .highlight-grid,
  .wallet-row,
  .upi-box,
  .donut-layout,
  .scanner-actions,
  .login-actions {
    grid-template-columns: 1fr;
  }

  .stat::after {
    display: none;
  }

  .section-head,
  .footer-bottom,
  .workspace-head,
  .cta-band {
    align-items: stretch;
    flex-direction: column;
    display: flex;
  }

  .cta-band {
    padding: 22px;
  }

  .dashboard-layout {
    grid-template-columns: 1fr;
  }

  .admin-topbar {
    position: static;
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
  }

  .admin-top-actions {
    justify-content: stretch;
    flex-wrap: wrap;
  }

  .admin-top-actions .btn,
  .admin-user {
    flex: 1;
    justify-content: center;
  }

  .sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .side-nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .workspace {
    padding: 18px 13px;
  }

  .detail-list div,
  .detail-grid div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
