/* --- CSS Variables & Design Tokens --- */
:root {
  /* Colors */
  --bg-gradient-start: #f0f9ff;
  --bg-gradient-end: #e0e7ff;
  --color-bg: #f8fafc;
  
  --color-primary: #0055ff;
  --color-primary-hover: #0044cc;
  
  --color-text-main: #0f172a; /* Slate 900 */
  --color-text-muted: #475569; /* Slate 600 */
  --color-text-light: #f8fafc;
  
  --color-dark-glass: rgba(15, 23, 42, 0.95);
  --color-light-glass: rgba(255, 255, 255, 0.7);
  
  /* Borders */
  --border-light-glass: 1px solid rgba(255, 255, 255, 0.8);
  --border-dark-glass: 1px solid rgba(255, 255, 255, 0.1);
  
  /* Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  
  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 24px 48px rgba(0, 0, 0, 0.12);
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- Base Reset --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--color-text-main);
  background: linear-gradient(135deg, var(--bg-gradient-start), var(--bg-gradient-end));
  background-attachment: fixed;
  line-height: 1.6;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-text-main);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.015em;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

p {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

/* Utils */
.text-center { text-align: center; }
.eyebrow {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.overline-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  background: var(--color-primary);
  color: white;
}
.overline-badge.light { background: rgba(0, 85, 255, 0.1); color: var(--color-primary); }
.overline-badge.dark { background: rgba(255, 255, 255, 0.15); color: white; }

/* --- Containers --- */
.container {
  width: min(100% - 2rem, 1200px);
  margin: 0 auto;
}
.section {
  padding: 3.5rem 0;
}

/* Offset for fixed navbar when jumping to anchor links */
.section,
#who,
#event-snapshot,
#tracks,
#process,
#partners,
#faq,
#register {
  scroll-margin-top: 100px;
}
.section-narrow {
  max-width: 800px;
  margin: 0 auto;
}

/* --- Buttons --- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.8rem;
  border-radius: 99px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
}

.button-primary {
  background: var(--color-primary);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 85, 255, 0.3);
}

.button-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 85, 255, 0.4);
}

.button-block {
  width: 100%;
}

.button-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  box-shadow: none;
}
.button-outline:hover {
  background: rgba(0, 85, 255, 0.06);
  transform: translateY(-2px);
}

/* --- Glassmorphism Core --- */
.glass-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(240, 249, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: var(--border-light-glass);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  gap: 1rem;
}
.brand-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-text-main);
}
.main-nav {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: nowrap;
}
.main-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  white-space: nowrap;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}
.main-nav a:hover {
  color: var(--color-primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

.header-cta-partner {
  /* inherits .button + .button-outline sizing */
}

.header-actions .button {
  min-height: auto;
  padding: 0.5rem 0.95rem;
  font-size: 0.8rem;
  line-height: 1.2;
  white-space: nowrap;
  border-width: 1.5px;
  border-radius: 999px;
}

.header-actions .button-primary,
.header-actions .button-counselor,
.header-actions .button-ghost-counselor {
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.16);
}

.header-actions .button-counselor,
.header-actions .button-ghost-counselor {
  box-shadow: 0 6px 16px rgba(124, 58, 237, 0.2);
}

.header-actions .button-outline {
  box-shadow: none;
}

.button-counselor,
.button-ghost-counselor {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: white;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.35);
}

.button-counselor:hover,
.button-ghost-counselor:hover {
  background: linear-gradient(135deg, #6d28d9, #9333ea);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.45);
}

.button-partner {
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  color: white;
  box-shadow: 0 4px 15px rgba(15, 118, 110, 0.3);
}

.button-partner:hover {
  background: linear-gradient(135deg, #115e59, #0f766e);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 118, 110, 0.4);
}

.nav-partner-link {
  color: var(--color-primary) !important;
  font-weight: 700 !important;
  border: 1.5px solid rgba(0,85,255,0.3);
  padding: 0.4rem 0.9rem;
  border-radius: 99px;
  transition: var(--transition-smooth);
}
.nav-partner-link:hover {
  background: rgba(0,85,255,0.07);
  border-color: var(--color-primary);
}

/* Light / Dark Cards */
.top-notice-banner {
  background: linear-gradient(90deg, #1e3a8a, #3b82f6);
  color: white;
  text-align: center;
  padding: 0.6rem;
  font-weight: 600;
  font-size: 0.95rem;
  width: 100%;
}

.light-glass, .dark-glass, .glass-card {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.light-glass, .glass-card {
  background: var(--color-light-glass);
  border: var(--border-light-glass);
}

.dark-glass {
  background: var(--color-dark-glass);
  border: var(--border-dark-glass);
  color: var(--color-text-light);
}

.dark-glass-container h2, .dark-glass-container h3, .dark-glass-container h4, .dark-glass-container p, .dark-glass-container li,
.dark-glass h2, .dark-glass h3, .dark-glass h4, .dark-glass p, .dark-glass li {
  color: var(--color-text-light); /* Override text colors for dark glass */
}
.dark-glass-container p, .dark-glass p { opacity: 0.8; }

/* --- Hero Section --- */
.hero-split {
  position: relative;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 8.5rem;
  padding-bottom: 2rem;
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
  margin-bottom: 0rem;
}

.hero-copy {
  position: relative;
  height: 100%;
}

.hero-copy-card {
  position: relative;
  min-height: 560px;
  height: 100%;
  padding: 2.45rem 2.45rem 1.85rem;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(115deg, rgba(248, 243, 230, 0.86), rgba(255, 255, 255, 0.6) 38%, rgba(225, 231, 220, 0.58) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.hero-copy-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at left center, rgba(232, 226, 181, 0.28), transparent 26%),
    radial-gradient(circle at center top, rgba(255, 255, 255, 0.5), transparent 34%),
    radial-gradient(circle at right bottom, rgba(183, 199, 255, 0.2), transparent 28%);
  pointer-events: none;
}

.hero-copy-main,
.hero-trust-strip,
.hero-hashtag {
  position: relative;
  z-index: 1;
}

.hero-hashtag {
  position: absolute;
  top: 1.5rem;
  right: 1.8rem;
  margin: 0;
  color: #2d63df;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-brand-mark {
  margin: 0 0 0.8rem;
  font-size: clamp(2.15rem, 4.2vw, 3.2rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #0f1b3d;
}

.hero-copy-main h1 {
  font-size: clamp(2.35rem, 3.55vw, 3.4rem);
  line-height: 0.93;
  letter-spacing: -0.06em;
  color: #1257f3;
  margin-bottom: 1.1rem;
  max-width: none;
  white-space: nowrap;
}

.hero-visual-rhs {
  position: relative;
  min-height: 560px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.rhs-word-cloud {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.cloud-word {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.6rem 1.4rem;
  border-radius: 99px;
  font-weight: 700;
  color: var(--color-primary);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 32px rgba(0, 85, 255, 0.1);
  animation: floatCloud 6s ease-in-out infinite;
  white-space: nowrap;
  font-size: 0.8rem;
}

/* Left side words */
.cw-l-1 { top: 7%; left: 4%; animation-delay: 0s; font-size: 0.8rem; }
.cw-l-2 { top: 23%; left: -3%; animation-delay: 1.2s; font-size: 0.8rem; }
.cw-l-3 { top: 44%; left: -2%; animation-delay: 2.1s; font-size: 0.8rem; }
.cw-l-4 { top: 67%; left: 5%; animation-delay: 0.8s; font-size: 0.8rem; }
.cw-l-5 { top: 84%; left: 11%; animation-delay: 1.6s; font-size: 0.8rem; }

/* Right side words */
.cw-r-1 { top: 8%; right: 4%; animation-delay: 0.5s; font-size: 0.8rem; }
.cw-r-2 { top: 24%; right: -2%; animation-delay: 1.8s; font-size: 0.8rem; }
.cw-r-3 { top: 47%; right: 2%; animation-delay: 2.5s; font-size: 0.8rem; }
.cw-r-4 { top: 66%; right: -4%; animation-delay: 1s; font-size: 0.8rem; }
.cw-r-5 { top: 84%; right: 9%; animation-delay: 2.2s; font-size: 0.8rem; }

@keyframes floatCloud {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.rhs-characters {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 455px;
  width: 100%;
}

.main-hero-img {
  max-height: 118%;
  width: min(100%, 540px);
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.15));
}

.hero-cta-bottom {
  position: relative;
  z-index: 10;
  margin-top: 1rem;
}

.hero-subheadline {
  font-size: clamp(0.98rem, 1.18vw, 1.08rem);
  max-width: 36ch;
  line-height: 1.45;
  margin-bottom: 1.15rem;
  color: #4b5f84;
  font-weight: 500;
}

.hero-date-pill {
  display: inline-block;
  padding: 0.75rem 1rem;
  margin-bottom: 1.05rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  color: #0f1b3d;
  font-size: clamp(1.05rem, 1.5vw, 1.4rem);
  font-weight: 800;
  line-height: 1.2;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.hero-date-pill span {
  display: inline-block;
  margin-top: 0.3rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: #4b5f84;
}

.hero-city-line {
  margin-bottom: 1.1rem;
  color: #1257f3;
  font-size: clamp(0.78rem, 0.95vw, 0.94rem);
  font-weight: 700;
  line-height: 1.35;
  max-width: none;
  white-space: nowrap;
}

.hero-copy-actions {
  margin-bottom: 1.45rem;
}

.hero-main-cta {
  min-width: 190px;
  min-height: 56px;
  border-radius: 18px;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 16px 32px rgba(18, 87, 243, 0.22);
}

.event-snapshot-section {
  position: relative;
  overflow: hidden;
}

.stats-section {
  padding-top: 0;
  padding-bottom: 2rem;
}

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

.stats-card {
  position: relative;
  min-height: 220px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(145deg, rgba(12, 28, 78, 0.96), rgba(30, 84, 219, 0.9) 52%, rgba(17, 185, 129, 0.72));
  box-shadow: 0 24px 44px rgba(15, 23, 42, 0.16);
}

.stats-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 26%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.12), transparent 24%);
  pointer-events: none;
}

.stats-card-shell {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 1.4rem;
}

.stats-value {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: white;
  margin-bottom: 0.8rem;
}

.stats-static,
.js-count-up {
  display: inline-block;
}

.stats-label {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.88);
}

.event-snapshot-section::before {
  content: '';
  position: absolute;
  inset: 4% 7% auto;
  height: 560px;
  border-radius: 48px;
  background:
    radial-gradient(circle at top left, rgba(0, 85, 255, 0.18), transparent 36%),
    radial-gradient(circle at top right, rgba(147, 197, 253, 0.2), transparent 32%),
    radial-gradient(circle at bottom left, rgba(16, 185, 129, 0.12), transparent 30%);
  pointer-events: none;
  z-index: 0;
}

.event-snapshot-section::after {
  content: '';
  position: absolute;
  right: -120px;
  bottom: 80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 85, 255, 0.12), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.event-snapshot-section .container {
  position: relative;
  z-index: 1;
}

.event-snapshot-layout {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-top: 3rem;
}

.snapshot-feature-card {
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(239, 245, 255, 0.96), rgba(231, 247, 244, 0.92) 55%, rgba(255, 255, 255, 0.94));
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.06);
}

.snapshot-feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(0, 85, 255, 0.14), transparent 28%),
    radial-gradient(circle at bottom right, rgba(16, 185, 129, 0.1), transparent 25%);
  pointer-events: none;
}

.snapshot-feature-shell {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr min(44%, 440px);
  gap: 1.5rem;
  align-items: start;
}

.snapshot-feature-copy {
  margin: 0 0 1rem;
  color: var(--color-text-main);
  font-size: 1.04rem;
  line-height: 1.85;
  grid-column: 1;
}

.snapshot-feature-copy:last-child {
  margin-bottom: 0;
}

.snapshot-feature-visual {
  grid-column: 2;
  grid-row: 1 / span 3;
  float: none;
  width: 100%;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 36px rgba(20, 58, 133, 0.1);
  background: rgba(255, 255, 255, 0.78);
}

.snapshot-feature-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.snapshot-story-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.snapshot-card {
  padding: 0;
  overflow: hidden;
  min-height: 100%;
  position: relative;
  background: rgba(255, 255, 255, 0.82);
}

.snapshot-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.32), transparent 55%);
  pointer-events: none;
}

.snapshot-card-shell {
  position: relative;
  z-index: 1;
  padding: 2.4rem;
  height: 100%;
}

.snapshot-card-intro {
  background:
    radial-gradient(circle at top left, rgba(0, 85, 255, 0.1), transparent 38%),
    rgba(255, 255, 255, 0.84);
}

.snapshot-card-intro h3,
.snapshot-card-delivery h3 {
  font-size: clamp(1.5rem, 2vw, 2rem);
  max-width: 22ch;
  margin-bottom: 1rem;
}

.snapshot-lead {
  max-width: 58ch;
  font-size: 1.06rem;
  line-height: 1.82;
  margin-bottom: 1.4rem;
  text-wrap: pretty;
}

.snapshot-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(0, 85, 255, 0.08);
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.snapshot-bullets {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.snapshot-bullets li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--color-text-main);
  font-size: 1rem;
  line-height: 1.7;
}

.snapshot-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #0055ff, #34d399);
  box-shadow: 0 0 0 6px rgba(0, 85, 255, 0.08);
}

.snapshot-bullets-strong li {
  font-size: 1.02rem;
}

.snapshot-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.snapshot-chip {
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(0, 85, 255, 0.1);
  color: var(--color-text-main);
  font-size: 0.9rem;
  font-weight: 600;
}

.snapshot-card-stats {
  background:
    linear-gradient(180deg, rgba(242, 247, 255, 0.98), rgba(226, 236, 255, 0.88)),
    rgba(255, 255, 255, 0.85);
}

.snapshot-stat-grid {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}

.snapshot-stat-pill {
  display: grid;
  gap: 0.3rem;
  padding: 1rem 1.15rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 85, 255, 0.08);
  box-shadow: 0 12px 24px rgba(20, 58, 133, 0.06);
}

.snapshot-stat-pill-primary {
  background: linear-gradient(135deg, rgba(0, 85, 255, 0.96), rgba(80, 131, 255, 0.88));
}

.snapshot-stat-value {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1;
  color: var(--color-text-main);
}

.snapshot-stat-label {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--color-text-muted);
}

.snapshot-stat-pill-primary .snapshot-stat-value,
.snapshot-stat-pill-primary .snapshot-stat-label {
  color: white;
}

.snapshot-support {
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 1.4rem;
  color: var(--color-text-main);
}

.snapshot-inline-visual {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.snapshot-inline-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.snapshot-card-visual {
  background:
    linear-gradient(180deg, rgba(236, 246, 255, 0.98), rgba(231, 250, 244, 0.92)),
    rgba(255, 255, 255, 0.84);
}

.snapshot-card-shell-visual {
  display: flex;
  flex-direction: column;
}

.snapshot-city-strip,
.snapshot-format-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.snapshot-city-strip {
  margin-bottom: 1rem;
}

.snapshot-city-strip span,
.snapshot-format-ribbon span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(15, 23, 42, 0.06);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text-main);
}

.snapshot-format-ribbon {
  margin-bottom: 1.2rem;
}

.snapshot-format-ribbon span {
  background: rgba(0, 85, 255, 0.08);
  color: var(--color-primary);
}

.snapshot-card-delivery {
  background:
    radial-gradient(circle at bottom right, rgba(0, 85, 255, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.84);
}

.snapshot-card-emphasis {
  background:
    linear-gradient(135deg, rgba(8, 32, 88, 0.96), rgba(0, 85, 255, 0.82)),
    rgba(255, 255, 255, 0.92);
}

.snapshot-card-emphasis::before {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 55%);
}

.snapshot-card-emphasis .snapshot-kicker {
  background: rgba(255, 255, 255, 0.14);
  color: white;
}

.snapshot-emphasis-copy {
  margin: 0;
  max-width: 56ch;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.65;
  font-weight: 700;
  color: white;
}

.button-large {
  padding: 1.2rem 3rem;
  font-size: 1.2rem;
}

.hero-subheadline {
  font-size: 1.2rem;
  max-width: 500px;
  margin-bottom: 2rem;
}

.trust-strip {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  font-size: 0.95rem;
  color: var(--color-text-muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.hero-trust-strip {
  margin-top: auto;
  padding-top: 1.1rem;
}

.hero-trust-strip p {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0;
  font-size: clamp(0.95rem, 1.25vw, 1.1rem);
  font-weight: 700;
  color: #4b5f84;
}

.hero-trust-strip img {
  height: 2rem;
  width: auto;
}

/* --- Registration Form Section --- */
.register-section {
  padding-top: 1rem;
  padding-bottom: 2.5rem;
}

/* --- Premium Stacked Layout for Conversion Focus --- */
.register-stacked-container {
  max-width: 1040px;
}

.register-stacked-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: stretch;
}

/* Header Area */
.register-stacked-header {
  margin-bottom: 1rem;
}

.register-stacked-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.register-stacked-header .accent-text {
  color: #0055ff;
}

.register-stacked-lead {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  max-width: 600px;
  line-height: 1.6;
}

/* Bento Cards Wrapper */
.register-bento-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .register-bento-grid-2 {
    grid-template-columns: 1fr;
  }
}

.bento-benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.6rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bento-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 85, 255, 0.08);
}

.bento-benefit-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 16px;
  background: rgba(0, 85, 255, 0.08);
  font-size: 1.8rem;
}

.bento-benefit-text h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
  color: var(--color-text-main);
}

.premium-bullets {
  margin: 0 !important;
}

/* Bottom Form Area */
.register-form-bottom-wrapper {
  max-width: 720px;
  width: 100%;
  margin: 1.5rem auto 0;
  position: relative;
  z-index: 2;
}

.premium-form-card {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(8, 32, 88, 0.08), inset 0 1px 0 rgba(255, 255, 255, 1);
  border: 1px solid rgba(0, 85, 255, 0.1);
  position: relative;
}

.premium-form-card::before {
  content: '';
  position: absolute;
  top: -4px; left: -4px; right: -4px; bottom: -4px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(0, 85, 255, 0.3), rgba(16, 185, 129, 0.3), transparent 60%);
  z-index: -1;
  opacity: 0.7;
}

.premium-form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.premium-form-header h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-text-main);
  margin-bottom: 0.4rem;
}

.premium-form-header p {
  font-size: 1rem;
  color: var(--color-primary);
  font-weight: 600;
}

.premium-flow-form {
  min-height: auto;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

/* --- Pass Selection --- */
.pass-selection-container {
  margin: 1.5rem 0 2rem;
}

.pass-selection-label {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-text-main);
  text-align: center;
}

.pass-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 600px) {
  .pass-options-grid {
    grid-template-columns: 1fr;
  }
}

.hidden-radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.pass-option-card {
  position: relative;
  display: block;
  cursor: pointer;
  width: 100%;
  min-width: 0;
}

.pass-card-ui {
  border: 2px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.pass-option-card:hover .pass-card-ui {
  border-color: rgba(0, 85, 255, 0.25);
  transform: translateY(-2px);
}

.hidden-radio:checked + .pass-card-ui {
  border-color: #0055ff;
  background: rgba(0, 85, 255, 0.03);
  box-shadow: 0 4px 14px rgba(0, 85, 255, 0.12);
}

.premium-pass-card .hidden-radio:checked + .pass-card-ui {
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.03);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.15);
}

.pass-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.pass-header h4 {
  font-size: 1rem;
  margin: 0;
  font-weight: 700;
  color: var(--color-text-main);
}

.pass-pricing {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.price-slashed {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
  opacity: 0.7;
}

.pass-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-primary);
}

.premium-pass-card .pass-price {
  color: #10b981;
}

.pass-card-footer {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(16, 185, 129, 0.25);
}

.live-activity-alert {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--color-text-main);
  font-weight: 600;
  background: rgba(239, 68, 68, 0.04);
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  border: 1px solid rgba(239, 68, 68, 0.1);
}

.pulse-dot-red {
  position: relative;
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  flex-shrink: 0;
}

.pulse-dot-red::after {
  content: '';
  position: absolute;
  top: -4px; left: -4px; right: -4px; bottom: -4px;
  background: rgba(239, 68, 68, 0.4);
  border-radius: 50%;
  animation: pulse-ring-red 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring-red {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

.live-activity-ticker {
  flex-grow: 1;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  min-width: 0;
}


.marquee-content {
  display: inline-block;
  animation: marquee-scroll 7s linear infinite;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(110%); }
  100% { transform: translateX(-110%); }
}

.live-activity-icon {
  font-size: 1rem;
  flex-shrink: 0;
  animation: slight-bounce 2s infinite ease-in-out;
}

@keyframes slight-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.pass-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.pass-features-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.pass-features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #10b981;
  font-weight: bold;
}

.premium-feature {
  color: var(--color-text-main) !important;
}

.recommended-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 0.2rem 0.8rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.25);
  white-space: nowrap;
}

.premium-pass-disabled {
  cursor: not-allowed;
}

.premium-pass-disabled .pass-card-ui {
  position: relative;
  border-color: rgba(15, 23, 42, 0.12);
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.94), rgba(241, 245, 249, 0.98));
  overflow: hidden;
}

.premium-pass-disabled:hover .pass-card-ui {
  transform: none;
  border-color: rgba(15, 23, 42, 0.12);
}

.premium-pass-disabled .pass-header,
.premium-pass-disabled .pass-features-list,
.premium-pass-disabled .pass-card-footer {
  filter: blur(0.5px);
  opacity: 0.5;
}

.coming-soon-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  text-align: center;
  padding: 1rem;
  background: radial-gradient(circle at top, rgba(16, 185, 129, 0.18), rgba(255, 255, 255, 0.8) 52%, rgba(255, 255, 255, 0.9));
  backdrop-filter: blur(2px);
}

.coming-soon-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  font-weight: 800;
  color: #065f46;
  background: rgba(16, 185, 129, 0.17);
  border: 1px solid rgba(16, 185, 129, 0.35);
  text-transform: uppercase;
}

.coming-soon-overlay p {
  margin: 0;
  max-width: 21ch;
  color: #1f2937;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.3;
}

.card-header {
  margin-bottom: 2rem;
}

.card-header p {
  font-size: 1rem;
}

.register-modal-subtitle {
  font-size: 1.2rem !important;
  font-weight: 600;
  color: var(--color-primary);
  opacity: 1;
  margin-top: -0.1rem;
}

.register-form-bullets {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.register-form-bullets li {
  position: relative;
  padding-left: 28px;
  color: var(--color-text-main);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
}

.register-form-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: #10b981;
  font-weight: bold;
  background: rgba(16, 185, 129, 0.1);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.flat-flow-form {
  position: relative;
  min-height: 200px;
  padding: 1.25rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.form-view {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.form-view.active-view {
  display: block;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.6rem;
  font-size: 1.02rem;
}

.form-group input, .form-group select {
  width: 100%;
  padding: 1.05rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(15, 23, 42, 0.15);
  font-family: inherit;
  font-size: 1.02rem;
  background: rgba(255, 255, 255, 0.9);
  transition: border-color 0.3s;
}

.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 85, 255, 0.1);
}

.error-msg {
  display: none;
  color: #e11d48;
  font-size: 0.85rem;
  margin-top: 0.4rem;
}
.form-group.has-error .error-msg { display: block; }
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea,
.input-error {
  border-color: #e11d48;
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.12);
}

.validation-msg {
  color: #e11d48;
  font-size: 0.85rem;
  margin-top: 0.4rem;
}

.terms-acknowledgement.has-error {
  border: 1px solid rgba(225, 29, 72, 0.35);
  border-radius: 12px;
  padding: 0.9rem;
}

.meta-label {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  margin-bottom: 0.8rem;
}
.meta-label a { color: var(--color-primary); text-decoration: underline; }

.signup-otp-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 0.5rem;
}

.signup-otp-grid .reg-signup-otp-digit {
  text-align: center;
  padding: 0.85rem 0.25rem;
  font-size: 1.1rem;
  font-weight: 600;
  min-height: 52px;
  border-radius: 10px;
}

#btn-send-otp,
#btn-verify-otp,
#btn-signup-verify-otp,
#btn-submit {
  min-height: 56px;
  font-size: 1.02rem;
}

/* Terms Acknowledgement */
.terms-acknowledgement {
  margin: 1.5rem 0 1.2rem;
  text-align: left;
  background: rgba(0, 85, 255, 0.02);
  border: 1px solid rgba(0, 85, 255, 0.1);
  padding: 0.8rem 1rem;
  border-radius: 8px;
}

.terms-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--color-text-main);
  cursor: pointer;
  margin: 0;
}

#heroRegistrationForm .terms-checkbox-label {
  margin-bottom: 0.5rem;
}

#heroRegistrationForm .terms-checkbox-label:last-child {
  margin-bottom: 0;
}

.terms-checkbox-label input[type="checkbox"] {
  margin-top: 0.15rem;
  accent-color: #0055ff;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.radio-label {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.6rem;
  margin: 0;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
}

.radio-label input[type="checkbox"] {
  width: 16px;
  min-width: 16px;
  height: 16px;
  min-height: 16px;
  margin: 0.12rem 0 0;
  padding: 0;
  border: 0;
  box-shadow: none;
  accent-color: var(--color-primary);
  flex: 0 0 auto;
}

.radio-label span {
  font-size: 0.92rem;
  line-height: 1.35;
  color: var(--color-text-main);
}

.form-group.has-error .radio-label {
  border-color: #e11d48;
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.12);
}

.terms-text a {
  color: #0055ff;
  text-decoration: underline;
  font-weight: 500;
}

.terms-details-accordion {
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px dashed rgba(0, 85, 255, 0.15);
}

.terms-list {
  padding-left: 1.4rem;
  margin: 0;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.terms-list li {
  margin-bottom: 0.3rem;
}

.radio-toggle-group {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
}
.radio-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-weight: 500;
  color: var(--color-text-main);
}
.radio-toggle input[type="radio"] {
  accent-color: var(--color-primary);
  width: 1.1rem;
  height: 1.1rem;
  min-height: 1.1rem;
  padding: 0;
  margin: 0;
  flex: 0 0 auto;
}

#heroRegistrationForm .radio-toggle-group {
  flex-wrap: wrap;
  gap: 1rem;
}

#heroRegistrationForm .radio-toggle {
  display: inline-flex;
  align-items: center;
}

#heroRegistrationForm .radio-toggle input[type="radio"] {
  width: 1rem !important;
  min-width: 1rem;
  height: 1rem;
  margin: 0;
  display: inline-block;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: #10b981;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

/* --- Bento Grid --- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.bento-item.span-2 {
  grid-column: span 2;
}

.bento-visual-card {
  background: linear-gradient(135deg, rgba(0, 85, 255, 0.08) 0%, rgba(0, 85, 255, 0.15) 100%),
              url('data:image/svg+xml;utf8,<svg width="120" height="120" viewBox="0 0 120 120" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M20 100 L50 60 L70 70 L100 20" stroke="%230055ff" stroke-width="4" stroke-linecap="round" stroke-linejoin="round" opacity="0.15"/><circle cx="100" cy="20" r="8" fill="%230055ff" opacity="0.15"/></svg>') no-repeat right 2rem top 2rem;
  display: flex;
  align-items: center;
  border: var(--border-light-glass);
}

.bento-visual-card h3 { color: var(--color-primary); }

/* --- High Contrast Layouts --- */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}



/* Custom Lists */
.custom-list {
  list-style: none;
  flex: 1;
}

.custom-list li {
  margin-bottom: 1.2rem;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.custom-list.green-checks li::before {
  content: '✓';
  color: #10b981;
  font-weight: bold;
  background: rgba(16, 185, 129, 0.1);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.custom-list.tag-list li {
  align-items: center;
}

.pill-tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  flex-shrink: 0;
}
.panel-tag { background: rgba(59, 130, 246, 0.2); color: #60a5fa; }
.workshop-tag { background: rgba(245, 158, 11, 0.2); color: #fbbf24; }
.session-tag { background: rgba(16, 185, 129, 0.2); color: #34d399; }
.step-tag { background: rgba(255,255,255,0.15); color: #fff; }

.check-list-dark li::before {
  content: '✓';
  color: #60a5fa; /* bright blue */
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1;
}

/* --- Dark Container (Partners) --- */
.dark-glass-container {
  background: var(--color-dark-glass);
  color: var(--color-text-light);
}
/* Partner Section – revamped */
.partner-head {
  margin-bottom: 3rem;
}

.partner-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: #0f172a;
  max-width: 22ch;
}

.partner-head-accent {
  color: #2563eb;
}

.partner-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.partner-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.4rem 1.35rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.partner-card:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.partner-card-icon {
  font-size: 1.45rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 0.1rem;
}

.partner-card p {
  margin: 0;
  font-size: 0.97rem;
  font-weight: 600;
  line-height: 1.5;
  color: #1e293b;
}

.partner-cta {
  margin-top: 0.5rem;
}

/* --- FAQs --- */
.faq-accordion {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.glass-accordion {
  background: var(--color-light-glass);
  border: var(--border-light-glass);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition-smooth);
}
.glass-accordion summary {
  padding: 1.5rem 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  list-style: none; /* remove default arrow */
  position: relative;
}
.glass-accordion summary::-webkit-details-marker {
  display: none;
}
.glass-accordion summary::after {
  content: '+';
  position: absolute;
  right: 2rem;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}
.glass-accordion[open] summary::after {
  content: '-';
  transform: rotate(180deg);
}
.accordion-content {
  padding: 0 2rem 1.5rem;
}

/* --- Footer --- */
.site-footer {
  padding: 6rem 0 6rem;
}
.site-footer h2 { margin-bottom: 2rem; }

.footer-disclaimers {
  margin: 3rem auto 2rem;
  max-width: 900px;
  text-align: left;
  border-top: 1px dashed rgba(15, 23, 42, 0.15);
  padding-top: 2rem;
}
.footer-disclaimer-text {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.footer-legal {
  margin-top: 4rem;
  font-size: 0.9rem;
  opacity: 0.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.contact-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.05);
  position: relative;
  overflow: hidden;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 85, 255, 0.12);
  border-color: rgba(0, 85, 255, 0.2);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.contact-card:hover .contact-icon {
  transform: scale(1.1);
}

.contact-role {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.contact-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 1rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-link {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
  word-break: break-all;
}

.contact-link:hover {
  color: var(--color-primary);
}

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

/* --- Mobile Sticky & Exit Intent --- */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 1rem 1.4rem;
  background: white;
  border-top: 1px solid #e2e8f0;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
  z-index: 100;

  display: flex !important;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  visibility: hidden;
  transform: translateY(100%);
}

.mobile-sticky-cta.show {
  transform: translateY(0);
  visibility: visible;
}

.sticky-event-meta {
  flex: 1;
  min-width: 0;
}

.sticky-event-name {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-text-main);
  line-height: 1.2;
}

.sticky-event-brand {
  color: var(--color-primary);
}

.sticky-event-details {
  margin-top: 0.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #64748b;
  line-height: 1.3;
}

.mobile-only-break {
  display: inline;
}

.sticky-separator {
  display: inline;
}

.sticky-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.sticky-btn {
  white-space: nowrap;
  min-height: 48px;
  padding: 0.8rem 1.4rem;
  border-radius: 14px;
  font-size: 0.97rem;
}

.sticky-btn-secondary {
  background: transparent;
  color: var(--color-text-main);
  border: 2px solid #172554;
  box-shadow: none;
}

.sticky-btn-secondary:hover {
  background: rgba(23, 37, 84, 0.06);
  transform: translateY(-2px);
}

.exit-intent-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.exit-intent-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.exit-popup-card {
  max-width: 400px;
  width: 90%;
  position: relative;
  text-align: center;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.exit-intent-overlay.show .exit-popup-card {
  transform: scale(1);
}

.close-popup {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text-muted);
}

/* --- Partner Modal --- */
.partner-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.partner-modal-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.partner-modal-card {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  border-radius: 28px;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  background: rgba(255, 255, 255, 0.97);
}

.partner-modal-overlay.show .partner-modal-card {
  transform: translateY(0) scale(1);
}

.partner-modal-header {
  margin-bottom: 1.75rem;
}

.partner-modal-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0.5rem 0 0.4rem;
  color: var(--color-text-main);
}

.partner-modal-header p {
  font-size: 0.97rem;
  margin: 0;
  color: var(--color-text-muted);
}

.partner-modal-close {
  z-index: 2;
}

.partner-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.flat-flow-form textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(15, 23, 42, 0.15);
  font-family: inherit;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
  resize: vertical;
  transition: border-color 0.3s;
  min-height: 90px;
}

.flat-flow-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 85, 255, 0.1);
}

.label-optional {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--color-text-muted);
}

@media (max-width: 480px) {
  .partner-modal-card { padding: 1.5rem 1.25rem; border-radius: 20px; }
  .partner-form-row { grid-template-columns: 1fr; gap: 0; }
}


.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Initial load animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Hero Carousel --- */
.hero-carousel-section {
  position: relative;
  padding-top: 10.5rem;
  padding-bottom: 0;
  overflow: hidden;
  scroll-margin-top: 5rem;
}

.hero-audience-switcher {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
  padding: 0 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
}

.audience-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.4rem;
  border-radius: 99px;
  border: 2px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all 0.28s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  white-space: nowrap;
}

.audience-pill:hover {
  border-color: rgba(0, 85, 255, 0.3);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 85, 255, 0.12);
}

.audience-pill.active {
  background: white;
  border-color: var(--color-primary);
  color: var(--color-primary);
  box-shadow: 0 4px 16px rgba(0, 85, 255, 0.18);
}

.audience-pill.active[data-slide="1"] {
  border-color: #7c3aed;
  color: #7c3aed;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.18);
}

.audience-pill.active[data-slide="2"] {
  border-color: #0f766e;
  color: #0f766e;
  box-shadow: 0 4px 16px rgba(15, 118, 110, 0.18);
}

.pill-icon {
  font-size: 1.1rem;
}

.hero-carousel-track {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-slide {
  display: none;
  animation: heroSlideIn 0.45s cubic-bezier(0.25, 1, 0.5, 1) both;
}

.hero-slide.active {
  display: block;
}

@keyframes heroSlideIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-slide .hero-content {
  padding-bottom: 2rem;
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.8rem;
  position: absolute;
  top: 1.5rem;
  right: 1.8rem;
}

.slide-badge--counselor {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(168, 85, 247, 0.12));
  color: #7c3aed;
  border: 1px solid rgba(124, 58, 237, 0.2);
}

.slide-badge--partner {
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.12), rgba(20, 184, 166, 0.12));
  color: #0f766e;
  border: 1px solid rgba(15, 118, 110, 0.2);
}

.hero-copy-card--counselor {
  background: linear-gradient(115deg, rgba(245, 240, 255, 0.9), rgba(255, 255, 255, 0.65) 38%, rgba(237, 233, 254, 0.6) 100%);
  border-color: rgba(167, 139, 250, 0.3);
}

.hero-copy-card--counselor::before {
  background: radial-gradient(circle at left center, rgba(167, 139, 250, 0.2), transparent 26%),
    radial-gradient(circle at center top, rgba(255, 255, 255, 0.5), transparent 34%),
    radial-gradient(circle at right bottom, rgba(196, 181, 253, 0.18), transparent 28%);
}

.hero-copy-card--partner {
  background: linear-gradient(115deg, rgba(240, 253, 250, 0.9), rgba(255, 255, 255, 0.65) 38%, rgba(204, 251, 241, 0.6) 100%);
  border-color: rgba(20, 184, 166, 0.3);
}

.hero-copy-card--partner::before {
  background: radial-gradient(circle at left center, rgba(20, 184, 166, 0.15), transparent 26%),
    radial-gradient(circle at center top, rgba(255, 255, 255, 0.5), transparent 34%);
}

.color-counselor {
  color: #5b21b6;
}

.color-partner {
  color: #134e4a;
}

.counselor-h1,
.partner-h1 {
  white-space: normal !important;
  line-height: 1 !important;
}

.counselor-h1 {
  color: #5b21b6 !important;
}

.partner-h1 {
  color: #134e4a !important;
}

.counselor-subheadline {
  color: rgba(91, 33, 182, 0.7) !important;
}

.counselor-perks-row,
.partner-highlights-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
}

.counselor-perk,
.partner-highlight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.75rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  font-weight: 700;
}

.counselor-perk {
  border: 1px solid rgba(167, 139, 250, 0.2);
  color: #3b0764;
}

.partner-highlight {
  border: 1px solid rgba(15, 118, 110, 0.2);
  color: #064e3b;
}

.hero-visual-rhs--counselor,
.hero-visual-rhs--partner {
  justify-content: center;
  align-items: center;
}

.counselor-hero-image-wrapper,
.partner-hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 540px;
  height: 455px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin: 0;
}

.hero-counselor-img,
.hero-partner-img {
  width: 100%;
  height: 430px;
  border-radius: 24px;
  object-fit: cover;
  animation: floatCloud 7s ease-in-out infinite;
}

.hero-counselor-img {
  box-shadow: 0 24px 48px rgba(124, 58, 237, 0.15);
}

.hero-partner-img {
  box-shadow: 0 24px 48px rgba(15, 118, 110, 0.15);
}

.hero-footnote {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 0.8rem;
  text-align: left;
  padding-left: 1rem;
  font-style: italic;
  opacity: 0.7;
}

.seats-tag {
  display: inline-block;
  margin-left: 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-muted);
  opacity: 0.8;
}

.hero-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.5rem 0 2rem;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  border: none;
  background: rgba(15, 23, 42, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero-dot.active {
  width: 28px;
  background: var(--color-primary);
}

.overline-badge--counselor {
  background: rgba(124, 58, 237, 0.12);
  color: #7c3aed;
}

.counselor-modal-overlay .partner-modal-card {
  border: 1px solid rgba(167, 139, 250, 0.18);
  box-shadow: 0 24px 60px rgba(124, 58, 237, 0.12);
}

.counselor-success-icon {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.btn-link {
  background: transparent;
  border: none;
  color: var(--color-primary);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

.sticky-btn-counselor {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: white;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.28);
}

.sticky-btn-counselor:hover {
  background: linear-gradient(135deg, #6d28d9, #9333ea);
  transform: translateY(-2px);
}

.slide-up {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}
.delay-1 { animation-delay: 0.2s; }

/* =============================================
   RESPONSIVE — TABLET (max 992px)
   ============================================= */
@media (max-width: 992px) {
  .section { padding: 2.5rem 0; }

  /* Hero */
  .hero-split { padding-top: 4.75rem; padding-bottom: 1.5rem; }
  .hero-content {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 1.5rem;
  }
  .hero-copy-card {
    min-height: 420px;
    height: auto;
    padding: 2rem 1.75rem 1.5rem;
  }
  .hero-visual-rhs {
    min-height: 400px;
    height: 400px;
  }
  .rhs-characters { height: 360px; }
  .main-hero-img { width: min(100%, 480px); max-height: 116%; }
  .cloud-word {
    font-size: 0.78rem !important;
    padding: 0.45rem 0.9rem;
    white-space: nowrap;
  }
  .cw-l-1 { top: 8% !important; left: 5% !important; }
  .cw-r-1 { top: 9% !important; right: 6% !important; }
  .cw-l-2 { top: 24% !important; left: 2% !important; }
  .cw-r-2 { top: 25% !important; right: 3% !important; }
  .cw-l-3 { top: 45% !important; left: 1% !important; }
  .cw-r-3 { top: 47% !important; right: 5% !important; }
  .cw-l-4 { top: 68% !important; left: 6% !important; }
  .cw-r-4 { top: 67% !important; right: 0% !important; }
  .cw-l-5 { top: 84% !important; left: 11% !important; }
  .cw-r-5 { top: 84% !important; right: 9% !important; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  /* Register */
  .register-layout { grid-template-columns: 1fr; }

  /* Tracks & Who */
  .tracks-tag-grid { grid-template-columns: 1fr 1fr; }
  .who-join-grid { grid-template-columns: 1fr 1fr; }
  .track-pill { padding: 1rem; }

  /* Partner */
  .partner-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); }

  /* Process marquee */
  .comparison-card-marquee-dark { padding: 2rem 1.2rem; }

  /* Misc */
  .trust-strip { margin-left: auto; margin-right: auto; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-item.span-2 { grid-column: span 1; }
  /* Snapshot */
  .snapshot-feature-shell {
    grid-template-columns: 1fr min(46%, 400px);
    gap: 1.25rem;
  }
}

/* =========================================
   Hamburger Menu - Side Drawer
   ========================================= */
.hamburger-toggle {
  display: none;
  flex-direction: column;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 0.35rem;
  z-index: 1001;
}

.hamburger-toggle span {
  width: 26px;
  height: 3px;
  background: var(--color-text-main);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.hamburger-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Backdrop overlay */
.mobile-nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 998;
}

.mobile-nav-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* Side drawer menu */
.mobile-nav-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 85%;
  max-width: 320px;
  background: white;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.15);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-top: 70px;
  display: flex;
  flex-direction: column;
}

.mobile-nav-menu::-webkit-scrollbar {
  width: 4px;
}

.mobile-nav-menu::-webkit-scrollbar-track {
  background: transparent;
}

.mobile-nav-menu::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 2px;
}

.mobile-nav-menu::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

.mobile-nav-menu.active {
  transform: translateX(0);
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav-links::-webkit-scrollbar {
  width: 4px;
}

.mobile-nav-links::-webkit-scrollbar-track {
  background: transparent;
}

.mobile-nav-links::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 2px;
}

.mobile-nav-links li {
  border-bottom: 1px solid #f1f5f9;
  flex-shrink: 0;
}

.mobile-nav-links li:last-child {
  border-bottom: none;
}

.mobile-nav-links a {
  display: block;
  padding: 1rem 1.5rem;
  color: var(--color-text-main);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.mobile-nav-links a:active {
  background: #f0f9ff;
  color: var(--color-primary);
}

.mobile-nav-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #64748b;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  pointer-events: auto;
  transition: all 0.2s ease;
  line-height: 1;
  padding: 0;
}

.mobile-nav-close:hover {
  color: var(--color-primary);
  background: #f0f9ff;
  border-radius: 50%;
}

.mobile-nav-close:active {
  transform: scale(0.95);
}

.mobile-nav-links .button {
  display: block;
  margin: 0.8rem 0.8rem;
  width: calc(100% - 1.6rem);
  padding: 0.9rem 1.5rem;
  flex-shrink: 0;
  cursor: pointer;
  text-align: center;
}

.mobile-nav-cta-item {
  border-bottom: none;
}

.mobile-nav-cta {
  min-height: 46px;
  border-radius: 12px;
  font-weight: 700;
}

.mobile-nav-cta-partner {
  border: 2px solid var(--color-primary);
}

.mobile-nav-cta-book {
  box-shadow: 0 8px 20px rgba(0, 85, 255, 0.25);
  color: white !important;
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  touch-action: none;
  overscroll-behavior: none;
}

/* Mobile - Extra Small (max 375px) */
@media (max-width: 375px) {
  .mobile-nav-menu {
    width: 90%;
    max-width: 100%;
    padding-top: 65px;
  }

  .mobile-nav-close {
    top: 0.75rem;
    right: 0.75rem;
    font-size: 1.5rem;
    width: 36px;
    height: 36px;
  }

  .mobile-nav-links a {
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
  }

  .mobile-nav-links .button {
    margin: 0.6rem 0.6rem;
    width: calc(100% - 1.2rem);
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
  }

  .mobile-nav-links li {
    min-height: auto;
  }

  /* Sticky CTA - Extra Small */
  .mobile-sticky-cta {
    padding: 0.55rem 0.5rem;
    gap: 0.3rem;
  }

  .sticky-event-name {
    font-size: 0.7rem;
    font-weight: 700;
  }

  .sticky-btn {
    min-height: 34px;
    padding: 0.35rem 0.6rem;
    font-size: 0.65rem;
  }
}

/* Mobile - Small (375px to 480px) */
@media (min-width: 375px) and (max-width: 480px) {
  .mobile-nav-menu {
    width: 85%;
    max-width: 280px;
  }

  .mobile-nav-links a {
    padding: 0.95rem 1.2rem;
  }

  .mobile-nav-links .button {
    padding: 0.85rem 1.2rem;
  }
}

/* Mobile - Medium (480px to 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .mobile-nav-menu {
    width: 80%;
    max-width: 340px;
  }

  .mobile-nav-links a {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
  }

  .mobile-nav-links .button {
    padding: 0.9rem 1.5rem;
  }

  /* Sticky CTA - Medium Mobile */
  .mobile-sticky-cta {
    padding: 0.7rem 0.8rem;
    gap: 0.6rem;
  }

  .sticky-event-name {
    font-size: 0.82rem;
  }

  .sticky-event-details {
    display: block;
    margin-top: 0.18rem;
    font-size: 0.68rem;
    line-height: 1.2;
    white-space: normal;
    color: #64748b;
  }

  .sticky-btn {
    min-height: 40px;
    padding: 0.5rem 1rem;
    font-size: 0.78rem;
  }
}

/* =============================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================= */
@media (max-width: 768px) {
  .section { padding: 2rem 0; }
  .container { width: min(100% - 1.5rem, 1200px); }

  /* Nav */
  .main-nav { display: none; }
  .header-actions { display: none; }
  .hamburger-toggle { display: flex; }

  /* Hero */
  .hero-carousel-section { padding-top: 8rem; }
  .hero-audience-switcher { margin-bottom: 1.5rem; gap: 0.45rem; }
  .audience-pill { padding: 0.6rem 0.9rem; font-size: 0.82rem; }
  .hero-split { padding-top: 4.5rem; padding-bottom: 1rem; }
  .hero-copy-card {
    min-height: unset;
    height: auto;
    padding: 3rem 1.2rem 1.3rem;
    border-radius: 24px;
  }
  .hero-hashtag { top: 3.2rem; right: 1.2rem; font-size: 0.88rem; }
  .hero-brand-mark { font-size: clamp(1.7rem, 8vw, 2.4rem); }
  .hero-copy-main h1 {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
    white-space: normal;
    letter-spacing: -0.04em;
  }
  .hero-subheadline { font-size: 0.9rem; max-width: none; }
  .hero-date-pill { display: block; width: 100%; font-size: 0.92rem; }
  .hero-date-pill span { font-size: 0.74rem; }
  .hero-city-line { font-size: 0.7rem; white-space: normal; word-wrap: break-word; }
  .hero-main-cta { width: 100%; min-height: 52px; font-size: 1rem; }
  .hero-trust-strip p { font-size: 0.88rem; flex-wrap: wrap; }
  .hero-trust-strip img { height: 1.6rem; }
  .hero-visual-rhs { min-height: 320px; height: 320px; }
  .rhs-characters { height: 280px; }
  .main-hero-img { width: min(100%, 380px); max-height: 114%; }
  .hero-slide .hero-content { padding-bottom: 1rem; }
  .hero-content--counselor,
  .hero-content--partner { grid-template-columns: 1fr; gap: 1rem; }
  .counselor-perks-row,
  .partner-highlights-row { grid-template-columns: 1fr 1fr; }
  .counselor-hero-image-wrapper,
  .partner-hero-image-wrapper { height: auto; max-width: 100%; margin-top: 30px; }
  .hero-counselor-img,
  .hero-partner-img { height: 320px; }
  .slide-badge { top: 1rem; right: 1rem; font-size: 0.72rem; }
  .seats-tag { display: block; margin: 0.75rem 0 0; }
  .hero-carousel-dots { padding: 1rem 0 1.5rem; }
  .cloud-word {
    font-size: 0.62rem !important;
    padding: 0.32rem 0.4rem;
  }
  .cw-l-1 { top: 5% !important; left: 3% !important; }
  .cw-r-1 { top: 6% !important; right: 3% !important; }
  .cw-l-2 { top: 20% !important; left: 0% !important; }
  .cw-r-2 { top: 21% !important; right: 0% !important; }
  .cw-l-3 { top: 40% !important; left: 1% !important; }
  .cw-r-3 { top: 41% !important; right: 2% !important; }
  .cw-l-4 { top: 62% !important; left: 3% !important; }
  .cw-r-4 { top: 62% !important; right: -1% !important; }
  .cw-l-5 { top: 80% !important; left: 7% !important; }
  .cw-r-5 { top: 80% !important; right: 7% !important; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .stats-card { min-height: 160px; border-radius: 20px; }
  .stats-card-shell { padding: 1rem; }
  .stats-value { font-size: 2rem; }
  .stats-label { font-size: 0.85rem; }

  /* Register */
  .register-layout { grid-template-columns: 1fr; }
  .full-register-card, .register-info-card { padding: 1.4rem; }
  .full-register-card h2, .register-info-card h2 { font-size: 1.6rem; }
  .register-info-icon { width: 44px; height: 44px; font-size: 1.25rem; }
  .register-info-point { grid-template-columns: 44px 1fr; gap: 0.75rem; padding: 0.85rem; }

  /* Snapshot / Overview — stack to single col, image on top */
  .snapshot-feature-shell {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1rem;
    padding: 1rem;
  }
  .snapshot-feature-visual {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    max-width: 100%;
    border-radius: 16px;
    aspect-ratio: 16/9;
  }
  .snapshot-feature-copy {
    grid-column: 1;
    font-size: 0.96rem;
    line-height: 1.7;
  }
  .event-snapshot-section::before { inset: 2% 3% auto; height: 300px; }



  /* Tracks & Who */
  .tracks-tag-grid { grid-template-columns: 1fr; margin-top: 1.25rem; }
  .who-join-grid { grid-template-columns: 1fr 1fr; margin-top: 0.85rem; }
  .track-pill { grid-template-columns: 38px 1fr; padding: 0.85rem; min-height: 72px; border-radius: 16px; gap: 0.7rem; }
  .track-icon { width: 38px; height: 38px; border-radius: 11px; font-size: 1rem; }
  .track-label { font-size: 0.9rem; }
  .who-item-square { min-height: 120px; padding: 0.9rem; font-size: 0.88rem; gap: 0.6rem; }
  .who-square-icon { width: 40px; height: 40px; font-size: 1.1rem; border-radius: 12px; }
  .section-heading { margin-top: 1.5rem !important; }

  /* Partner */
  .partner-cards-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .partner-head h2 { font-size: clamp(1.5rem, 6vw, 1.9rem); }
  .partner-head { margin-bottom: 1.5rem; }
  .partner-card { padding: 1.1rem 1rem; gap: 0.75rem; border-radius: 16px; }
  .partner-card p { font-size: 0.9rem; }

  /* FAQ */
  .faq-accordion { margin-top: 1.25rem; gap: 0.75rem; }
  .glass-accordion summary { padding: 1rem 1.25rem; font-size: 0.97rem; }
  .glass-accordion summary::after { right: 1.25rem; }
  .accordion-content { padding: 0 1.25rem 1rem; font-size: 0.95rem; }

  /* Sticky — compact stacked bar */
  .mobile-sticky-cta {
    padding: 0.65rem 0.75rem;
    gap: 0.45rem;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
  }

  .mobile-sticky-cta.show {
    transform: translateY(0);
  }

  .sticky-event-meta {
    flex: none;
    min-width: 0;
    overflow: hidden;
  }

  .sticky-event-name {
    font-size: 0.86rem;
    flex-wrap: wrap;
    white-space: normal;
    max-width: 100%;
  }

  .sticky-event-details {
    display: block;
    margin-top: 0.12rem;
    font-size: 0.72rem;
    line-height: 1.3;
    white-space: normal;
    color: #64748b;
  }

  .sticky-actions {
    flex-shrink: 0;
    gap: 0.4rem;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .sticky-btn {
    flex: none;
    width: 100%;
    min-height: 38px;
    padding: 0.45rem 0.65rem;
    font-size: 0.78rem;
    border-radius: 8px;
    white-space: nowrap;
    text-align: center;
  }

  /* Typography */
  h1 { font-size: clamp(1.7rem, 6vw, 2.2rem); }
  h2 { font-size: clamp(1.35rem, 5vw, 1.85rem); }
  h3 { font-size: 1.15rem; }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ============================================= */
@media (max-width: 480px) {
  .section { padding: 1.5rem 0; }
  .container { width: min(100% - 1rem, 1200px); }

  /* Hero */
  .hero-carousel-section { padding-top: 7rem; }
  .hero-audience-switcher {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding: 0 0.75rem;
    margin-bottom: 1.25rem;
    padding-top: 2.5rem;
  }
  .audience-pill {
    width: 100%;
    min-width: 0;
    justify-content: center;
    padding: 0.58rem 0.5rem;
    font-size: 0.76rem;
    line-height: 1.2;
  }
  .audience-pill:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 56%;
    margin: 0 auto;
  }
  .pill-icon {
    font-size: 0.92rem;
  }
  .hero-split { padding-top: 4.25rem; }
  .hero-copy-card { padding: 4.75rem 1rem 1.1rem; border-radius: 20px; }
  .hero-copy-main h1 { font-size: 1.5rem; white-space: normal; letter-spacing: -0.03em; }
  .hero-brand-mark { font-size: 1.5rem; }
  .hero-city-line { font-size: 0.64rem; }
  .hero-visual-rhs { min-height: 260px; height: 260px; }
  .rhs-characters { height: 230px; }
  .hero-hashtag { top: 4.8rem;}
  .counselor-perks-row,
  .partner-highlights-row { grid-template-columns: 1fr; }
  .hero-counselor-img,
  .hero-partner-img { height: 240px; border-radius: 18px; }

  /* Stats */
  .stats-card { min-height: 120px; }
  .stats-value { font-size: 1.6rem; }
  .stats-label { font-size: 0.76rem; }

  /* Snapshot */
  .snapshot-feature-visual { aspect-ratio: 16/9; }
  .snapshot-feature-copy { font-size: 0.92rem; }

  /* Partner: single column */
  .partner-cards-grid { grid-template-columns: 1fr; gap: 0.65rem; }
  .partner-card { padding: 1rem 0.9rem; border-radius: 14px; }

  /* Who: single column, horizontal items */
  .who-join-grid { grid-template-columns: 1fr; gap: 0.6rem; }
  .who-item-square { min-height: 64px; flex-direction: row; justify-content: flex-start; text-align: left; gap: 0.7rem; padding: 0.85rem 1rem; }
  .who-square-icon { flex-shrink: 0; }

  /* Tracks */
  .track-pill { min-height: 66px; }

  /* Register */
  .full-register-card, .register-info-card { padding: 1rem; }
  .register-info-points { gap: 0.65rem; }

  /* Form Mobile Optimization */
  .premium-form-card {
    padding: 1.5rem 1rem;
    border-radius: 20px;
  }

  .form-view {
    padding: 0;
  }

  .form-group {
    margin-bottom: 1.25rem;
  }

  .form-group label {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.9rem 1rem;
    font-size: 16px;
    min-height: 44px;
  }

  .pass-options-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .pass-card-ui {
    padding: 1rem;
  }

  #heroRegistrationForm .pass-header {
    flex-wrap: wrap;
    gap: 0.35rem;
    align-items: flex-start;
    padding-top: 1.5rem;
  }

  #heroRegistrationForm .recommended-badge {
    white-space: normal;
    text-align: center;
    max-width: calc(100% - 1rem);
  }

  #heroRegistrationForm,
  #heroRegistrationForm .form-view,
  #heroRegistrationForm .pass-selection-container {
    overflow-x: hidden;
  }

  #heroRegistrationForm .terms-acknowledgement {
    padding: 0.7rem 0.8rem;
  }

  #heroRegistrationForm .terms-checkbox-label {
    gap: 0.5rem;
    line-height: 1.35;
    font-size: 0.82rem;
  }

  #heroRegistrationForm .terms-text {
    min-width: 0;
  }

  .flat-flow-form {
    padding: 1rem;
  }

  .partner-form-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  /* Sticky — ultra compact for extra small screens */
  .mobile-sticky-cta {
    padding: 0.55rem 0.6rem;
    gap: 0.3rem;
  }

  .sticky-event-name {
    font-size: 0.76rem;
    line-height: 1.1;
  }

  .sticky-event-meta {
    flex: 1;
    min-width: 0;
  }

  .sticky-btn {
    min-height: 36px;
    padding: 0.36rem 0.5rem;
    font-size: 0.68rem;
    border-radius: 6px;
  }

  .sticky-actions {
    gap: 0.3rem;
    grid-template-columns: 1fr 1fr;
  }

  .mobile-only-break {
    display: block;
  }

  .sticky-separator {
    display: none;
  }

  /* Sticky — iPhone-style inset bar */
  .mobile-sticky-cta {
    left: 0.5rem;
    right: 0.5rem;
    width: auto;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 0.5rem);
    padding: 0.7rem 0.8rem;
    gap: 0.35rem;
    border-radius: 18px 18px 14px 14px;
    box-shadow: 0 -10px 30px rgba(15, 23, 42, 0.16);
    backdrop-filter: blur(14px);
  }

  .sticky-event-name {
    font-size: 0.82rem;
    line-height: 1.15;
  }

  .sticky-event-details {
    font-size: 0.68rem;
    line-height: 1.2;
  }

  .sticky-actions {
    gap: 0.35rem;
  }

  .sticky-btn {
    min-height: 40px;
    padding: 0.45rem 0.55rem;
    font-size: 0.72rem;
    border-radius: 10px;
  }

  /* Buttons */
  .button:not(.sticky-btn) {
    padding: 0.9rem 1.2rem;
    font-size: 0.92rem;
    min-height: 44px;
  }

  .button-block {
    width: 100%;
  }

  /* FAQ */
  .glass-accordion summary { padding: 0.9rem 1.4rem; font-size: 0.92rem; }
  .accordion-content { padding: 0 1.1rem 0.9rem; font-size: 0.9rem; }

  /* Modal Mobile Optimization */
  .partner-modal-card {
    padding: 1.25rem 1rem;
    border-radius: 20px;
  }

  .exit-popup-card {
    width: 90%;
    max-width: 380px;
  }
}

/* --- Section Subtext --- */
.section-subtext {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0.5rem auto 0;
}

/* Improve header scrolling on mobile */
@media (max-width: 768px) {
  html {
    scroll-padding-top: 70px;
  }

  .site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
  }

  main {
    margin-top: 0;
  }

  .section,
  #hero {
    scroll-margin-top: 70px;
  }
}

/* --- Conversation Tracks Grid --- */
.tracks-tag-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

/* Keep responsive overrides after base .tracks-tag-grid declaration */
@media (max-width: 992px) {
  .tracks-tag-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .tracks-tag-grid { grid-template-columns: 1fr; margin-top: 1.25rem; }
}

.track-pill {
  background:
    radial-gradient(circle at top right, rgba(0, 85, 255, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(236, 244, 255, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 22px;
  padding: 1.2rem 1.15rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text-main);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 0.9rem;
  align-items: center;
  min-height: 104px;
}

.track-pill:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 85, 255, 0.3);
}

.track-label {
  display: block;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--color-text-main);
}

.track-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: linear-gradient(180deg, rgba(0, 85, 255, 0.12), rgba(0, 85, 255, 0.05));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
  font-size: 1.35rem;
}

.track-pill-dark {
  background:
    radial-gradient(circle at top right, rgba(80, 131, 255, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(28, 35, 58, 0.98), rgba(26, 33, 53, 0.98));
  border-color: rgba(255, 255, 255, 0.06);
}

.track-pill-dark .track-label,
.track-pill-dark p {
  color: white;
}

.track-pill-dark .track-icon {
  background: rgba(255, 255, 255, 0.08);
}

/* --- Who Should Join Grid --- */
.who-join-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

/* Keep responsive overrides after base .who-join-grid declaration */
@media (max-width: 992px) {
  .who-join-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .who-join-grid { grid-template-columns: 1fr 1fr; margin-top: 0.85rem; }
}

@media (max-width: 480px) {
  .who-join-grid { grid-template-columns: 1fr; gap: 0.6rem; }
}

.who-item {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  padding: 1.25rem;
  border-radius: 22px;
  transition: var(--transition-smooth);
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.15), transparent 30%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.4));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.who-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
  border-color: rgba(96, 165, 250, 0.4);
}

.who-item-square {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.45;
  padding: 1.4rem;
  gap: 0.9rem;
}

.who-square-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(0, 85, 255, 0.12), rgba(16, 185, 129, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
  font-size: 1.4rem;
}
/* --- Immersive Date Picker --- */
.date-selection-group {
  margin-bottom: 2rem;
  animation: fadeIn 0.5s ease;
  background: #f3f6fb;
  border: 1px solid rgba(99, 102, 241, 0.14);
  border-radius: 16px;
  padding: 1rem;
}

.date-selection-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--color-text-main);
}

.field-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.date-picker-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  max-height: 315px;
  overflow-y: auto;
  padding: 4px 6px 6px 4px;
  border-radius: var(--radius-md);
  /* Custom scrollbar */
}

.date-picker-grid::-webkit-scrollbar {
  width: 6px;
}
.date-picker-grid::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.05);
  border-radius: 10px;
}
.date-picker-grid::-webkit-scrollbar-thumb {
  background: rgba(0,85,255,0.2);
  border-radius: 10px;
}

.date-card {
  padding: 10px 8px;
  border-radius: 15px;
  background: #ffffff;
  border: 1.5px solid rgba(99, 102, 241, 0.14);
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  user-select: none;
  min-height: 76px;
  font-family: inherit;
}

.date-card:hover {
  border-color: #6366f1;
  background: #f8f9ff;
  transform: translateY(-2px);
}

.date-card.selected {
  background: #ffffff;
  border-color: #4f46e5;
  color: var(--color-text-main);
  box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.12);
  transform: translateY(-1px);
}

.date-card.selected .date-day,
.date-card.selected .date-month {
  color: #4b5563;
}

.date-day {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
}

.date-number {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  color: #111827;
}

.date-month {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-text-muted);
}

@media (max-width: 767px) {
  .date-picker-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-height: 280px;
  }

  .date-number {
    font-size: 1.4rem;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Payment Status Popups */
.payment-status {
  text-align: center;
  padding: 2rem;
  border-radius: 16px;
  margin-bottom: 2rem;
  animation: fadeIn 0.3s ease-out;
}

.payment-status.success {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}

.payment-status.failure {
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.payment-status.pending {
  background: #fffbeb;
  border: 1px solid #fde68a;
}

.payment-status h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.payment-status.success h3 {
  color: #059669;
}

.payment-status.failure h3 {
  color: #dc2626;
}

.payment-status.pending h3 {
  color: #d97706;
}

.payment-status p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #374151;
}

.payment-status.success p {
  color: #047857;
}

.payment-status.failure p {
  color: #7f1d1d;
}

.payment-status.pending p {
  color: #92400e;
}

.status-icon-wrapper {
  margin: 1rem auto;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
}

.status-icon {
  width: 100%;
  height: 100%;
}

.ring {
  fill: none;
  stroke: #22c55e;
  stroke-width: 5;
  stroke-dasharray: 176;
  stroke-dashoffset: 176;
  animation: ring 600ms ease forwards;
}

.tick {
  fill: none;
  stroke: #22c55e;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: tick 450ms ease forwards 520ms;
}

@keyframes ring {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes tick {
  to {
    stroke-dashoffset: 0;
  }
}

.hidden {
  display: none !important;
}
