/* ================================================================
   ILLUMINATE 2026 — Official Workshop Stylesheet
   E-Cell IIT Bombay × IIEC CSMU
   Theme: IIEC Warm Editorial Canvas (#f5f5f0) & Electric Flame (#ff5a1f)
   ================================================================ */

:root {
  /* IIEC Warm Editorial Canvas Palette */
  --ill-bg: #f5f5f0;
  --ill-ink: #111111;
  --ill-card: #ffffff;
  --ill-muted: #66665f;
  --ill-line: #d8d8d0;
  --ill-line-light: #e8e8e0;

  /* Primary Electric Flame Scale */
  --ill-accent: #ff5a1f;
  --ill-accent-dark: #dc4310;
  --ill-accent-light: #ffece4;
  --ill-accent-border: #ffc7b0;
  --ill-accent-glow: rgba(255, 90, 31, 0.25);

  /* Deep Shell (for Hero Ticket, CTA, and Contrast Cards) */
  --ill-shell: #111111;
  --ill-shell-card: #18181b;
  --ill-shell-border: rgba(255, 255, 255, 0.12);
  --ill-shell-text: #f5f5f0;
  --ill-shell-muted: #a1a1aa;

  /* Semantic Highlights */
  --ill-gold: #c78000;
  --ill-gold-bg: #fffbeb;
  --ill-gold-border: #fde68a;
  --ill-green: #157f4a;
  --ill-green-bg: #ecfdf5;
  --ill-green-border: #a7f3d0;

  /* Typography & Layout */
  --ill-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --ill-wrap: 1160px;
  --ill-radius-sm: 10px;
  --ill-radius-md: 18px;
  --ill-radius-lg: 26px;
  --ill-shadow-card: 0 10px 30px -10px rgba(17, 17, 17, 0.08);
  --ill-shadow-hover: 0 20px 40px -15px rgba(17, 17, 17, 0.14);
  --ill-shadow-ticket: 0 32px 64px -24px rgba(17, 17, 17, 0.45);
  --ill-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Page Reset & Canvas */
.illuminate-page {
  background-color: var(--ill-bg);
  color: var(--ill-ink);
  font-family: var(--ill-font);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.illuminate-page * {
  box-sizing: border-box;
}

/* Container */
.ill-wrap {
  width: 100%;
  max-width: var(--ill-wrap);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 36px);
  position: relative;
  z-index: 2;
}

/* Section Spacing */
.ill-sec {
  padding: clamp(64px, 8vw, 108px) 0;
  position: relative;
  border-bottom: 1px solid var(--ill-line);
}

.ill-sec-tight {
  padding: clamp(48px, 6vw, 76px) 0;
}

.ill-sec-alt {
  background-color: #efefe9;
}

/* Section Eyebrow Label */
.ill-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ill-accent);
  margin-bottom: 14px;
}

.ill-label::before {
  content: '';
  width: 26px;
  height: 2px;
  background-color: var(--ill-accent);
}

.ill-label.dark-label {
  color: #ff986e;
}
.ill-label.dark-label::before {
  background-color: #ff986e;
}

/* Section Headings */
.ill-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--ill-ink);
  margin: 0 0 16px;
}

.ill-title .accent-text {
  color: var(--ill-accent);
}

.ill-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.65;
  color: var(--ill-muted);
  max-width: 680px;
  margin: 0;
}

.text-center {
  text-align: center;
}

.text-center .ill-label {
  justify-content: center;
}

.text-center .ill-label::after {
  content: '';
  width: 26px;
  height: 2px;
  background-color: var(--ill-accent);
}

.text-center .ill-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ----------------------------------------------------------------
   TOP COLLABORATIVE ANNOUNCEMENT STRIP (Sleek Dark Theme)
   ---------------------------------------------------------------- */
.collab-strip {
  background: #090d16;
  border-bottom: 1px solid rgba(255, 90, 31, 0.25);
  padding: 8px 18px;
  position: relative;
  z-index: 50;
  color: #e2e8f0;
}

.collab-strip-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 12.5px;
  font-weight: 600;
  color: #cbd5e1;
}

.collab-strip-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 90, 31, 0.14);
  border: 1px solid rgba(255, 90, 31, 0.4);
  color: #ff7b4c;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.collab-strip-dot {
  width: 6px;
  height: 6px;
  background-color: #ff5a1f;
  border-radius: 50%;
  box-shadow: 0 0 6px #ff5a1f;
}

.collab-strip-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff !important;
  background: linear-gradient(135deg, #ff5a1f, #e04810);
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(255, 90, 31, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.collab-strip-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 90, 31, 0.5);
}

/* ----------------------------------------------------------------
   STICKY MAIN NAVIGATION BAR
   ---------------------------------------------------------------- */
.navbar {
  height: 74px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--ill-line);
  background: rgba(245, 245, 240, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.04em;
  color: var(--ill-ink);
  text-decoration: none;
}

.brand-logo-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--ill-muted);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--ill-ink);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--ill-accent);
  border-radius: 999px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ill-ink);
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--ill-accent);
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(255, 90, 31, 0.35);
}

.nav-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ill-accent);
  box-shadow: 0 0 0 0 rgba(255, 90, 31, 0.7);
  animation: ill-nav-pulse 2s infinite;
  display: inline-block;
  flex-shrink: 0;
}

@keyframes ill-nav-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 90, 31, 0.7); }
  70% { box-shadow: 0 0 0 7px rgba(255, 90, 31, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 90, 31, 0); }
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid var(--ill-line);
  cursor: pointer;
  padding: 0;
}

.hamburger-btn span {
  width: 20px;
  height: 2px;
  background-color: var(--ill-ink);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .hamburger-btn {
    display: flex;
  }
}

/* SVG Alignment & Sizing Utilities */
svg.btn-svg, svg.btn-icon, svg.module-bullet-icon, svg.faq-icon-arrow {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* ----------------------------------------------------------------
   HERO SECTION
   ---------------------------------------------------------------- */
.hero-sec {
  padding: clamp(48px, 7vw, 96px) 0 clamp(40px, 6vw, 80px);
  border-bottom: 1px solid var(--ill-line);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero-partner-chips {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ill-card);
  border: 1px solid var(--ill-line);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ill-ink);
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.hero-partner-chips .chip-accent {
  color: var(--ill-accent);
}

.hero-h1 {
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.05em;
  color: var(--ill-ink);
  margin: 0 0 20px;
}

.hero-h1 span.flame-word {
  color: var(--ill-accent);
  display: block;
}

.hero-tagline {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700;
  color: var(--ill-ink);
  line-height: 1.35;
  margin-bottom: 14px;
}

.hero-desc {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ill-muted);
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-ctas-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Buttons */
.btn-iiec {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.25s var(--ill-ease);
  white-space: nowrap;
}

.btn-iiec-primary {
  background-color: var(--ill-accent);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(255, 90, 31, 0.3);
}

.btn-iiec-primary:hover {
  background-color: var(--ill-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(255, 90, 31, 0.4);
  color: #ffffff;
}

.btn-iiec-ink {
  background-color: var(--ill-ink);
  color: var(--ill-bg);
}

.btn-iiec-ink:hover {
  background-color: var(--ill-accent);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-iiec-ghost {
  background-color: transparent;
  color: var(--ill-ink);
  border-color: var(--ill-line);
}

.btn-iiec-ghost:hover {
  border-color: var(--ill-ink);
  transform: translateY(-2px);
}

.btn-iiec-block {
  width: 100%;
}

.btn-svg,
.btn-icon,
.animate-spin {
  width: 16px !important;
  height: 16px !important;
  max-width: 16px !important;
  max-height: 16px !important;
  flex-shrink: 0 !important;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.btn-iiec:hover .btn-svg {
  transform: translateX(3px);
}

/* Hero Quick Specs */
.hero-specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--ill-line);
}

.spec-cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.spec-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ill-muted);
}

.spec-val {
  font-size: 14px;
  font-weight: 800;
  color: var(--ill-ink);
}

.spec-val.spec-accent {
  color: var(--ill-accent);
}

/* ----------------------------------------------------------------
   FLOATING HERO TICKET (Deep Shell Signature Card)
   ---------------------------------------------------------------- */
.hero-ticket-wrap {
  position: relative;
}

.hero-ticket {
  background-color: var(--ill-shell);
  color: var(--ill-shell-text);
  border-radius: var(--ill-radius-lg);
  padding: 34px;
  box-shadow: var(--ill-shadow-ticket);
  border: 1px solid var(--ill-shell-border);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ill-ease), box-shadow 0.4s var(--ill-ease);
}

.hero-ticket:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 70px -20px rgba(17, 17, 17, 0.55);
}

.ticket-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 16px;
}

.ticket-category-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ill-accent);
}

.ticket-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 90, 31, 0.15);
  border: 1px solid rgba(255, 90, 31, 0.35);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: #ff986e;
}

/* Ticket Pricing Box */
.ticket-price-box {
  background: var(--ill-shell-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--ill-radius-md);
  padding: 22px;
  margin-bottom: 24px;
}

.ticket-strike {
  font-size: 13px;
  color: var(--ill-shell-muted);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.ticket-main-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}

.ticket-amount {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #ffffff;
  line-height: 1;
}

.ticket-amount span {
  color: var(--ill-accent);
}

.ticket-saving-tag {
  display: inline-block;
  background: rgba(21, 127, 74, 0.2);
  border: 1px solid rgba(21, 127, 74, 0.4);
  color: #6ee7b7;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Feature Checklist in Ticket */
.ticket-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 26px;
}

.ticket-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: #e4e4e7;
}

.ticket-feature-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 90, 31, 0.15);
  border: 1px solid rgba(255, 90, 31, 0.4);
  color: var(--ill-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ticket-urgency-note {
  font-size: 12px;
  color: var(--ill-shell-muted);
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

/* ----------------------------------------------------------------
   EDITORIAL CARD SURFACES (#ffffff on #f5f5f0)
   ---------------------------------------------------------------- */
.card-surface {
  background-color: var(--ill-card);
  border: 1px solid var(--ill-line);
  border-radius: var(--ill-radius-md);
  padding: clamp(24px, 4vw, 36px);
  box-shadow: var(--ill-shadow-card);
  transition: transform 0.25s var(--ill-ease), border-color 0.25s ease, box-shadow 0.25s ease;
}

.card-surface:hover {
  transform: translateY(-3px);
  border-color: #b0b0a8;
  box-shadow: var(--ill-shadow-hover);
}

/* ----------------------------------------------------------------
   TURN IDEAS SECTION (Quote & Questions)
   ---------------------------------------------------------------- */
.ideas-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.quote-editorial-box {
  background-color: var(--ill-card);
  border-left: 4px solid var(--ill-accent);
  border-radius: 0 var(--ill-radius-md) var(--ill-radius-md) 0;
  padding: 24px 28px;
  box-shadow: var(--ill-shadow-card);
  margin: 28px 0;
}

.quote-editorial-box h3 {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 800;
  color: var(--ill-ink);
  line-height: 1.35;
  margin: 0 0 8px;
}

.quote-editorial-box span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ill-accent);
}

.questions-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.question-row-card {
  background-color: var(--ill-card);
  border: 1px solid var(--ill-line);
  border-radius: var(--ill-radius-md);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ill-ink);
  transition: all 0.2s ease;
}

.question-row-card:hover {
  border-color: var(--ill-accent);
  background-color: var(--ill-accent-light);
  transform: translateX(4px);
}

.icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background-color: var(--ill-accent-light);
  border: 1px solid var(--ill-accent-border);
  color: var(--ill-accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ----------------------------------------------------------------
   CURRICULUM 4-GRID
   ---------------------------------------------------------------- */
.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.module-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.module-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.module-num {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--ill-accent);
  line-height: 1;
}

.module-icon-pill {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ill-bg);
  border: 1px solid var(--ill-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ill-ink);
}

.module-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ill-ink);
  margin: 0 0 10px;
}

.module-card p {
  font-size: 14.5px;
  color: var(--ill-muted);
  line-height: 1.6;
  margin: 0 0 20px;
}

.module-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.module-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ill-ink);
  line-height: 1.5;
}

.module-bullet-icon {
  width: 16px;
  height: 16px;
  color: var(--ill-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ----------------------------------------------------------------
   WHY ATTEND (6 Cards)
   ---------------------------------------------------------------- */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.reason-card {
  display: flex;
  flex-direction: column;
}

.reason-card .icon-badge {
  margin-bottom: 20px;
}

.reason-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ill-ink);
  margin: 0 0 10px;
}

.reason-card p {
  font-size: 14px;
  color: var(--ill-muted);
  line-height: 1.6;
  margin: 0;
}

/* What You Get Grid */
.takeaways-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.takeaway-card {
  background: var(--ill-card);
  border: 1px solid var(--ill-line);
  border-radius: var(--ill-radius-md);
  padding: 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.takeaway-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: var(--ill-green-bg);
  border: 1px solid var(--ill-green-border);
  color: var(--ill-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.takeaway-card h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--ill-ink);
  margin: 0 0 4px;
}

.takeaway-card p {
  font-size: 13px;
  color: var(--ill-muted);
  line-height: 1.5;
  margin: 0;
}

/* ----------------------------------------------------------------
   VENUE & FEE (Split Grid)
   ---------------------------------------------------------------- */
.venue-fee-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}

.detail-item-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background-color: var(--ill-bg);
  border-radius: var(--ill-radius-sm);
  border: 1px solid var(--ill-line);
  margin-bottom: 12px;
}

.detail-item-meta {
  display: flex;
  flex-direction: column;
}

.detail-item-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ill-muted);
}

.detail-item-value {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--ill-ink);
}

.fee-calc-card {
  background-color: var(--ill-card);
  border: 2px solid var(--ill-accent);
  border-radius: var(--ill-radius-md);
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(255, 90, 31, 0.08);
}

.fee-calc-tag {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ill-accent);
  margin-bottom: 10px;
}

.fee-calc-amount {
  font-size: clamp(3rem, 6vw, 4.2rem);
  font-weight: 900;
  color: var(--ill-ink);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.fee-calc-amount span {
  color: var(--ill-accent);
}

.fee-calc-compare {
  font-size: 13.5px;
  color: var(--ill-muted);
  margin-bottom: 20px;
}

.fee-calc-compare s {
  color: #ef4444;
  font-weight: 700;
}

/* ----------------------------------------------------------------
   WHO SHOULD ATTEND (5 Personas)
   ---------------------------------------------------------------- */
.personas-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.persona-box {
  background-color: var(--ill-card);
  border: 1px solid var(--ill-line);
  border-radius: var(--ill-radius-md);
  padding: 24px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.persona-box:hover {
  transform: translateY(-3px);
  border-color: var(--ill-accent);
}

.persona-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--ill-bg);
  border: 1px solid var(--ill-line);
  color: var(--ill-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.persona-box h4 {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--ill-ink);
  margin: 0 0 8px;
}

.persona-box p {
  font-size: 12.5px;
  color: var(--ill-muted);
  line-height: 1.5;
  margin: 0;
}

/* ----------------------------------------------------------------
   5-STEP ROADMAP
   ---------------------------------------------------------------- */
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.roadmap-step-card {
  background-color: var(--ill-card);
  border: 1px solid var(--ill-line);
  border-radius: var(--ill-radius-md);
  padding: 24px 18px;
  position: relative;
}

.roadmap-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ill-accent);
  color: #ffffff;
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.roadmap-step-card h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--ill-ink);
  margin: 0 0 8px;
}

.roadmap-step-card p {
  font-size: 12.5px;
  color: var(--ill-muted);
  line-height: 1.5;
  margin: 0;
}

/* ----------------------------------------------------------------
   REGISTRATION & PAYMENT STATION
   ---------------------------------------------------------------- */
.station-wrapper {
  max-width: 860px;
  margin: 0 auto;
}

.station-shell {
  background-color: var(--ill-card);
  border: 1px solid var(--ill-line);
  border-radius: var(--ill-radius-lg);
  padding: clamp(28px, 5vw, 48px);
  box-shadow: var(--ill-shadow-card);
}

/* Stepper Indicator */
.stepper-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  position: relative;
  padding: 0 10px;
}

.stepper-nav::before {
  content: '';
  position: absolute;
  top: 19px;
  left: 36px;
  right: 36px;
  height: 2px;
  background: var(--ill-line);
  z-index: 0;
}

.step-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ill-bg);
  border: 2px solid var(--ill-line);
  color: var(--ill-muted);
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.step-title {
  font-size: 11px;
  font-weight: 800;
  color: var(--ill-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.step-node.active .step-circle {
  background: var(--ill-accent);
  border-color: var(--ill-accent);
  color: #ffffff;
  box-shadow: 0 0 16px rgba(255, 90, 31, 0.4);
}
.step-node.active .step-title {
  color: var(--ill-ink);
}

.step-node.completed .step-circle {
  background: var(--ill-green);
  border-color: var(--ill-green);
  color: #ffffff;
}
.step-node.completed .step-title {
  color: var(--ill-green);
}

/* Form Styles */
.step-pane {
  display: none;
}
.step-pane.active {
  display: block;
}

.form-group-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--ill-ink);
  margin: 24px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ill-line-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-group-title:first-child {
  margin-top: 0;
}

.fields-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field-box {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.field-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ill-ink);
}

.field-label span.req {
  color: var(--ill-accent);
}

.field-input {
  background: var(--ill-bg);
  border: 1px solid var(--ill-line);
  border-radius: var(--ill-radius-sm);
  padding: 13px 16px;
  font-size: 14.5px;
  color: var(--ill-ink);
  font-family: inherit;
  transition: all 0.2s ease;
  width: 100%;
}

.field-input:focus {
  outline: none;
  border-color: var(--ill-accent);
  background: #ffffff;
  box-shadow: 0 0 0 3px var(--ill-accent-light);
}

.field-input::placeholder {
  color: #9ca3af;
}

/* Options */
.radio-select-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.custom-option-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--ill-bg);
  border: 1px solid var(--ill-line);
  padding: 12px 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ill-ink);
}

.custom-option-card:hover {
  border-color: var(--ill-accent);
  background: #ffffff;
}

.custom-option-card input[type="radio"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--ill-line);
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.custom-option-card input[type="radio"]:checked {
  border-color: var(--ill-accent);
}

.custom-option-card input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--ill-accent);
}

.custom-option-card:has(input[type="radio"]:checked) {
  background-color: var(--ill-accent-light);
  border-color: var(--ill-accent);
}

/* Agreement Checkbox */
.terms-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--ill-bg);
  border: 1px solid var(--ill-line);
  padding: 12px 16px;
  border-radius: 10px;
  cursor: pointer;
  margin-bottom: 10px;
}

.terms-card input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--ill-line);
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.2s ease;
  background-color: #ffffff;
}

.terms-card input[type="checkbox"]:checked {
  background-color: var(--ill-accent);
  border-color: var(--ill-accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.terms-text {
  font-size: 13px;
  color: var(--ill-muted);
  line-height: 1.5;
}

.error-text {
  font-size: 12px;
  color: #dc2626;
  display: none;
  margin-top: 4px;
}

.field-box.has-error .field-input {
  border-color: #dc2626;
  background-color: #fef2f2;
}

.field-box.has-error .error-text {
  display: block;
}

/* ----------------------------------------------------------------
   STEP 2: PAYMENT & UTR SUBMISSION
   ---------------------------------------------------------------- */
.payment-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 28px;
  align-items: center;
}

.payment-qr-col {
  background-color: var(--ill-bg);
  border: 1px solid var(--ill-line);
  border-radius: var(--ill-radius-md);
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reg-assigned-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ill-accent-light);
  border: 1px solid var(--ill-accent-border);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: var(--ill-accent-dark);
  margin-bottom: 16px;
}

.qr-code-frame {
  background: #ffffff;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--ill-line);
  display: inline-block;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  margin-bottom: 12px;
}

.qr-code-frame img {
  width: 200px;
  height: 200px;
  display: block;
}

.pay-amount-pill {
  background-color: var(--ill-accent);
  color: #ffffff;
  font-weight: 800;
  font-size: 16px;
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 12px;
  display: inline-block;
}

.upi-copy-row {
  background: #ffffff;
  border: 1px dashed var(--ill-line);
  padding: 8px 14px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ill-ink);
  cursor: pointer;
  transition: all 0.2s ease;
}

.upi-copy-row:hover {
  border-color: var(--ill-accent);
  background: var(--ill-accent-light);
}

.guidelines-box {
  background: var(--ill-bg);
  border: 1px solid var(--ill-line);
  border-radius: var(--ill-radius-md);
  padding: 18px 20px;
  margin-bottom: 18px;
}

.guidelines-box ol {
  margin: 0;
  padding-left: 18px;
  font-size: 13px;
  color: var(--ill-muted);
  line-height: 1.6;
}

.guidelines-box ol li {
  margin-bottom: 6px;
}

/* ----------------------------------------------------------------
   STEP 3: EXECUTIVE DELEGATE PASS (LIGHT THEME CREDENTIAL)
   ---------------------------------------------------------------- */
.pass-preview-card {
  background: #ffffff;
  color: #0f172a;
  border-radius: 20px;
  max-width: 460px;
  width: 100%;
  margin: 0 auto 30px;
  padding: 0 0 20px 0;
  position: relative;
  text-align: left;
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.12), 0 0 1px rgba(15, 23, 42, 0.15);
  overflow: hidden;
  user-select: none;
}

/* Lanyard Slot at top center */
.pass-lanyard-slot {
  width: 58px;
  height: 8px;
  background: #e2e8f0;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  margin: 12px auto 6px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.12);
}

/* Flame Accent Bar */
.pass-flame-bar {
  height: 5px;
  background: linear-gradient(90deg, #ff5a1f 0%, #6366f1 50%, #f59e0b 100%);
  width: 100%;
  margin-bottom: 16px;
}

/* Top Meta */
.pass-top-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #64748b;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pass-badge-pill {
  background: #eef2ff;
  color: #4338ca;
  border: 1px solid #c7d2fe;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

/* Event Title & Edition Row */
.pass-title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0 22px;
  margin-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 12px;
}

.pass-brand {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #0f172a;
}

.pass-brand span {
  color: #ff5a1f;
}

.pass-edition-tag {
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
}

/* Delegate Attendee Spotlight Card */
.pass-attendee-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  margin: 0 20px 14px;
  padding: 14px 16px;
}

.pass-cell-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748b;
  display: block;
  margin-bottom: 4px;
}

.pass-attendee-name {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.pass-attendee-sub {
  font-size: 12.5px;
  color: #475569;
  margin-top: 3px;
  font-weight: 500;
}

/* 2x2 Credential Grid */
.pass-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 20px;
  margin-bottom: 16px;
}

.pass-grid-cell {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 10px 12px;
}

.pass-cell-val {
  font-size: 13.5px;
  font-weight: 800;
  color: #0f172a;
  word-break: break-all;
}

.pass-val-accent {
  color: #4f46e5 !important;
  letter-spacing: 0.05em;
  font-family: monospace;
}

.pass-val-green {
  color: #059669 !important;
}

.pass-val-warm {
  color: #b45309 !important;
}

/* Perforated Tear Notch Line */
.pass-tear-divider {
  position: relative;
  display: flex;
  align-items: center;
  height: 24px;
  margin: 6px 0 14px;
  overflow: hidden;
}

.pass-notch-left,
.pass-notch-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background-color: var(--ill-bg, #f5f5f0);
  border-radius: 50%;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.pass-notch-left {
  left: -11px;
}

.pass-notch-right {
  right: -11px;
}

.pass-perf-line {
  flex-grow: 1;
  height: 0;
  border-top: 1.5px dashed #cbd5e1;
  margin: 0 16px;
}

/* Security Verification & QR Code Row */
.pass-security-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 20px;
  margin-bottom: 14px;
}

.pass-qr-wrap {
  width: 96px;
  height: 96px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 5px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pass-qr-wrap img {
  width: 100%;
  height: 100%;
  display: block;
}

.pass-security-meta {
  flex-grow: 1;
}

.pass-qr-tag {
  font-size: 10px;
  font-weight: 800;
  color: #ff5a1f;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 2px;
}

.pass-security-venue {
  font-size: 12.5px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
}

.pass-security-note {
  font-size: 11px;
  color: #64748b;
  margin-top: 2px;
}

.pass-status-pill {
  display: inline-block;
  background: #fffbeb;
  color: #b45309;
  border: 1px solid #fde68a;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pass-status-pill.status-verified {
  background: #ecfdf5;
  color: #047857;
  border-color: #a7f3d0;
}

/* Security Bottom Watermark */
.pass-bottom-watermark {
  padding: 10px 20px 0;
  border-top: 1px solid #f1f5f9;
  text-align: center;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #94a3b8;
  text-transform: uppercase;
}

/* ----------------------------------------------------------------
   VERIFICATION MODAL
   ---------------------------------------------------------------- */
.ill-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 12, 16, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.ill-modal-backdrop.is-open {
  display: flex;
  opacity: 1;
}

.ill-modal-card {
  background: #ffffff;
  color: #111111;
  border-radius: 20px;
  max-width: 480px;
  width: 100%;
  padding: 28px 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid #e2e8f0;
  animation: illModalIn 0.3s var(--ill-ease);
}

@keyframes illModalIn {
  from {
    transform: translateY(20px) scale(0.96);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.ill-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.ill-modal-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ill-accent);
  display: block;
  margin-bottom: 2px;
}

.ill-modal-h3 {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin: 0;
}

.ill-modal-close {
  background: #f1f5f9;
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.ill-modal-close:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.verify-loading-state {
  padding: 36px 16px;
  text-align: center;
}

.verify-result-card {
  text-align: left;
}

.verify-badge-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.verify-badge-banner.status-verified {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}

.verify-badge-banner.status-pending {
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #92400e;
}

.verify-badge-banner.status-notfound {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.verify-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background: #f8fafc;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  margin-bottom: 20px;
}

.verify-field-full {
  grid-column: 1 / -1;
}

.verify-lbl {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
  margin-bottom: 2px;
}

.verify-val {
  font-size: 13.5px;
  font-weight: 700;
  color: #0f172a;
}

.verify-val-lg {
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
}

/* ----------------------------------------------------------------
   FAQ ACCORDION
   ---------------------------------------------------------------- */
.faq-stack {
  max-width: 820px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-card {
  background-color: var(--ill-card);
  border: 1px solid var(--ill-line);
  border-radius: var(--ill-radius-sm);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-card:hover {
  border-color: #b0b0a8;
}

.faq-card.active {
  border-color: var(--ill-accent);
}

.faq-btn {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 16px;
  font-weight: 800;
  color: var(--ill-ink);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.faq-icon-arrow {
  width: 18px;
  height: 18px;
  color: var(--ill-accent);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq-card.active .faq-icon-arrow {
  transform: rotate(180deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ill-ease);
  padding: 0 24px;
}

.faq-card.active .faq-body {
  padding-bottom: 22px;
}

.faq-body p {
  font-size: 14.5px;
  color: var(--ill-muted);
  line-height: 1.65;
  margin: 0;
}

/* ----------------------------------------------------------------
   CONTACT US ROW
   ---------------------------------------------------------------- */
.contact-row-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.contact-card-box {
  background-color: var(--ill-card);
  border: 1px solid var(--ill-line);
  border-radius: var(--ill-radius-md);
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--ill-ink);
  transition: all 0.2s ease;
}

.contact-card-box:hover {
  border-color: var(--ill-accent);
  transform: translateY(-3px);
  box-shadow: var(--ill-shadow-card);
}

.contact-card-box .icon-badge {
  margin-bottom: 14px;
}

.contact-card-box h4 {
  font-size: 15px;
  font-weight: 800;
  margin: 0 0 4px;
}

.contact-card-box p {
  font-size: 13.5px;
  color: var(--ill-muted);
  margin: 0;
}

/* ----------------------------------------------------------------
   GLOBAL FOOTER
   ---------------------------------------------------------------- */
.footer {
  background: var(--ill-shell);
  color: #ffffff;
  padding: 56px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: clamp(24px, 4vw, 48px);
  margin-bottom: 44px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.04em;
  color: #ffffff;
  text-decoration: none;
}

.footer-desc {
  font-size: 13px;
  color: var(--ill-shell-muted);
  line-height: 1.65;
  max-width: 320px;
  margin: 0;
}

.footer-collaboration {
  font-size: 12px;
  color: #a1a1aa;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.footer-collaboration strong {
  color: #ffffff;
}

.footer-collaboration span.partner-accent {
  font-weight: 700;
  color: var(--ill-accent);
}

.footer-title {
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  color: var(--ill-shell-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--ill-accent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  color: var(--ill-shell-muted);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  margin: 0;
}

/* Hide floating team recruitment pill on illuminate registration page to prevent overlapping footer & form */
#iiec-recruitment-pill {
  display: none !important;
}

@media (max-width: 768px) {
  .footer {
    padding: 44px 0 28px;
  }
  .footer .footer-wrap {
    padding: 0 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 16px;
    margin-bottom: 28px;
  }
  .footer-brand {
    grid-column: 1 / -1;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .footer-desc {
    max-width: 100%;
    font-size: 12.5px;
    line-height: 1.55;
  }
  .footer-title {
    font-size: 11.5px;
    margin-bottom: 12px;
    color: #f1f5f9;
    letter-spacing: 0.08em;
  }
  .footer-links {
    gap: 9px;
  }
  .footer-links a {
    font-size: 12.5px;
    color: #a1a1aa;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-top: 18px;
  }
}

@media (max-width: 480px) {
  .footer .footer-wrap {
    padding: 0 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px 14px;
  }
  .footer-grid > nav:nth-of-type(3) {
    grid-column: 1 / -1;
    padding-top: 8px;
  }
}

/* Toast Notification */
.ill-toast-box {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--ill-shell);
  color: #ffffff;
  border: 1px solid var(--ill-accent);
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  opacity: 0;
  transition: all 0.3s var(--ill-ease);
  pointer-events: none;
}

.ill-toast-box.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ----------------------------------------------------------------
   RESPONSIVE MEDIA QUERIES
   ---------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-ticket {
    max-width: 520px;
    margin: 0 auto;
  }
  .curriculum-grid, .ideas-split, .venue-fee-split, .payment-split {
    grid-template-columns: 1fr;
  }
  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .personas-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .roadmap-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-sec {
    padding: 38px 0 32px;
  }
  .ill-sec {
    padding: 38px 0;
  }
  .ill-wrap {
    padding: 0 16px;
  }
  .ill-label {
    font-size: 10.5px;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
    padding: 4px 12px;
  }
  .ill-title {
    font-size: clamp(1.45rem, 5.5vw, 1.85rem);
    margin-bottom: 8px;
    letter-spacing: -0.03em;
  }
  .ill-subtitle {
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 0;
  }
  .collab-strip {
    padding: 9px 12px;
  }
  .collab-strip-in {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    font-size: 11.5px;
  }
  .collab-strip-in > div {
    justify-content: center;
    text-align: center;
    gap: 6px;
  }
  .collab-strip-cta {
    font-size: 10.5px;
    padding: 3px 12px;
  }
  .hero-partner-chips {
    font-size: 11px;
    padding: 5px 12px;
    gap: 4px 6px;
    margin: 0 auto 16px;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    line-height: 1.4;
    max-width: 100%;
  }
  .hero-h1 {
    font-size: clamp(2.3rem, 8.5vw, 3.2rem);
    margin: 0 0 14px;
    line-height: 0.98;
  }
  .hero-tagline {
    font-size: 1.1rem;
    line-height: 1.35;
    margin-bottom: 10px;
  }
  .hero-desc {
    font-size: 13.5px;
    line-height: 1.55;
    margin-bottom: 22px;
  }
  .hero-ctas-row {
    margin-bottom: 28px;
    gap: 10px;
  }
  .btn-iiec {
    padding: 13px 22px;
    font-size: 12px;
    letter-spacing: 0.04em;
  }
  .hero-specs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding-top: 18px;
  }
  .spec-label {
    font-size: 10px;
  }
  .spec-val {
    font-size: 13px;
  }
  .hero-ticket {
    padding: 22px 18px;
    border-radius: 16px;
  }
  .ticket-top-row {
    margin-bottom: 16px;
    padding-bottom: 12px;
  }
  .ticket-category-tag {
    font-size: 10.5px;
  }
  .ticket-strike {
    font-size: 11px;
  }
  .ticket-amount {
    font-size: 34px;
  }
  .ticket-features-list {
    margin-bottom: 20px;
    gap: 8px;
  }
  .ticket-feature-item {
    font-size: 12px;
  }
  .quote-editorial-box {
    padding: 16px 18px;
    margin-bottom: 16px;
  }
  .quote-editorial-box h3 {
    font-size: 15px;
  }
  .reasons-grid, .contact-row-grid, .takeaways-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .card-surface {
    padding: 18px 16px;
    border-radius: 14px;
  }
  .card-surface h3 {
    font-size: 15px !important;
  }
  .card-surface p {
    font-size: 12.5px !important;
  }
  .module-card {
    padding: 18px 16px;
  }
  .module-top {
    margin-bottom: 12px;
  }
  .module-num {
    font-size: 20px;
  }
  .module-card h3 {
    font-size: 16px;
    margin-bottom: 6px;
  }
  .module-card p {
    font-size: 12.5px;
    margin-bottom: 14px;
  }
  .module-bullets li {
    font-size: 12px;
    gap: 8px;
    margin-bottom: 6px;
  }
  .takeaway-card {
    padding: 14px 14px;
    border-radius: 12px;
    gap: 12px;
  }
  .takeaway-card h4 {
    font-size: 13.5px;
    margin-bottom: 3px;
  }
  .takeaway-card p {
    font-size: 12px;
  }
  .personas-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .persona-card {
    padding: 16px 14px;
  }
  .roadmap-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .roadmap-card {
    padding: 16px 14px;
  }
  .fields-row-2 {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .stepper-nav .step-title {
    display: none;
  }
  .stepper-nav .step-item {
    padding: 6px 12px;
    font-size: 11.5px;
  }
  .station-shell {
    padding: 20px 14px;
    border-radius: 16px;
  }
  .form-group {
    margin-bottom: 14px;
  }
  .form-group label {
    font-size: 11.5px;
    margin-bottom: 4px;
  }
  .form-input, .form-select {
    padding: 10px 12px;
    font-size: 13px;
    border-radius: 9px;
  }
  .radio-option-card {
    padding: 10px 12px;
    font-size: 12px;
  }
  .quick-actions-bar {
    padding: 10px 12px;
    font-size: 11.5px;
  }
  .pass-preview-card {
    padding: 18px 14px;
    border-radius: 14px;
  }
  .pass-attendee-name {
    font-size: 19px;
  }
  .pass-grid-cell {
    padding: 8px 10px;
  }
  .pass-cell-label {
    font-size: 9px;
  }
  .pass-cell-val {
    font-size: 13px;
  }
  .pass-security-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
  .guidelines-box {
    padding: 14px 14px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .hero-partner-chips {
    font-size: 10.5px;
    padding: 5px 10px;
    gap: 3px 5px;
    border-radius: 999px;
  }
  .hero-ctas-row {
    flex-direction: column;
  }
  .hero-ctas-row .btn-iiec {
    width: 100%;
  }
  .hero-h1 {
    font-size: clamp(2.1rem, 9vw, 2.7rem);
  }
  .hero-specs-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .btn-action-row {
    flex-direction: column;
    gap: 8px;
  }
  .btn-action-row .btn-iiec {
    width: 100%;
  }
}

/* ================================================================
   PRINT STYLES: ISOLATED SINGLE-PAGE PASS (FIXES 14 BLANK PAGES)
   ================================================================ */
@media print {
  @page {
    size: auto;
    margin: 5mm;
  }

  html, body {
    width: 100% !important;
    height: auto !important;
    min-height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #ffffff !important;
    color: #000000 !important;
    overflow: visible !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  /* CRITICAL: Use display: none on all other sections to eliminate layout flow height! */
  #iiec-top-hairline,
  #page-loader,
  .navbar,
  .collab-strip,
  .hero-sec,
  .ill-sec:not(#register),
  footer,
  .ill-toast-box,
  .stepper-nav,
  #step1Pane,
  #step2Pane,
  .guidelines-box,
  .btn-iiec,
  #illVerifyModal,
  .ill-label,
  .ill-title,
  .ill-subtitle,
  .registration-card-header,
  .steps-indicator,
  #step3Pane > h2,
  #step3Pane > p,
  #step3Pane > .icon-success-circle,
  #step3Pane > div[style*="display:flex"] {
    display: none !important;
  }

  #register,
  .registration-layout,
  .registration-card,
  .form-container,
  #illuminateRegForm,
  #step3Pane {
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: auto !important;
  }

  #digitalTicketPass {
    display: block !important;
    position: static !important;
    margin: 8mm auto !important;
    max-width: 440px !important;
    background: #0d1117 !important;
    color: #ffffff !important;
    border: 1.5px solid #111111 !important;
    box-shadow: none !important;
    page-break-inside: avoid !important;
    break-inside: avoid !important;
    page-break-before: avoid !important;
    page-break-after: avoid !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  .pass-notch-left,
  .pass-notch-right {
    background-color: #ffffff !important;
  }
}
