/* =========================================
   CSS Variables & Global Styles
   ========================================= */
:root {
  /* TSAC 2026 Brand — Scrapbook / Journal Aesthetic */
  /* Brand core */
  --brand-purple: #695ea9;
  --brand-teal: #54aba5;
  --brand-salmon: #f37063;
  --brand-yellow: #ffc53a;

  /* Background tints (textured-pastel surfaces) */
  --bg-purple-tint: #cab0c9;
  --bg-orange-tint: #f1b99e;
  --bg-cream: #fdf6ee;
  --bg-cream-card: #fbf3e3;

  /* Paper / sticker */
  --paper-stitch: #1a1a1a;
  --paper-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

  /* Legacy aliases — repointed to brand tokens */
  --primary-color: var(--brand-purple);
  --primary-hover: #534a8a;
  --gradient-start: var(--brand-purple);
  --gradient-end: var(--brand-teal);
  --text-dark: #1a1a1a;
  --text-light: #5a5a5a;
  --bg-color: var(--bg-cream);
  --white: #ffffff;
  --red-impact: var(--brand-salmon);

  /* Semantic */
  --success: var(--brand-teal);
  --warning: var(--brand-yellow);
  --alert: var(--brand-salmon);

  /* Glass tokens — kept for legacy selectors but warmed */
  --glass-bg: rgba(253, 246, 238, 0.85);
  --glass-border: rgba(26, 26, 26, 0.08);
  --glass-shadow: 0 4px 24px -1px rgba(0, 0, 0, 0.06);

  /* Typography */
  --font-display: "Barlow Condensed", sans-serif;
  --font-body: "Poppins", sans-serif;
  --font-accent: "Patrick Hand", cursive;
  --font-family: var(--font-body); /* legacy alias */
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-family);
  color: var(--text-dark);
  background: var(--bg-color);
  background-size: cover;
  background-attachment: fixed;
  line-height: 1.6;
  overflow-x: hidden;
}

.bg-light-blue {
  background: linear-gradient(
    135deg,
    var(--bg-purple-tint) 0%,
    var(--bg-orange-tint) 100%
  );
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}
.max-800 {
  max-width: 800px;
}
.center-text {
  text-align: center;
}
.mt-1 {
  margin-top: 1rem;
}
.mt-2 {
  margin-top: 2rem;
}
.mt-3 {
  margin-top: 3rem;
}
.mb-1 {
  margin-bottom: 1rem;
}
.mb-2 {
  margin-bottom: 2rem;
}

.section-padding {
  padding: 3rem 5%;
}

/* =========================================
   Glassmorphism Utilities
   ========================================= */
/* Navbar surface — warm cream with subtle blur for legibility over textured backgrounds */
.glass {
  background: rgba(253, 246, 238, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(26, 26, 26, 0.06);
}

/* Paper sticker card — replaces the old glass-card archetype.
   Class name retained so existing markup keeps working. */
.glass-card,
.paper-card {
  background: var(--bg-cream);
  border: 2px dashed var(--paper-stitch);
  border-radius: 18px;
  box-shadow: var(--paper-shadow);
  position: relative;
}

.glass-panel {
  background: var(--bg-cream-card);
  border-radius: 18px;
  border: 1px solid rgba(26, 26, 26, 0.08);
}

.editorial-card {
  transition: all 0.3s ease;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.editorial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px -5px rgba(0, 0, 0, 0.1);
}

/* =========================================
   Typography & Buttons
   ========================================= */
h1 {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1rem;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
h2 {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 1.1;
}
h3 {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
p {
  margin-bottom: 1rem;
  color: var(--text-light);
  font-size: 1.05rem;
}
.lead-text {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-light);
}
.bold-text {
  font-weight: 700;
  color: var(--text-dark);
}

.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(105, 94, 169, 0.12);
  color: var(--brand-purple);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.light-badge {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--brand-purple);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 4px 15px rgba(105, 94, 169, 0.35);
}

.btn-gradient {
  background: linear-gradient(135deg, var(--brand-purple), var(--brand-teal));
  color: var(--white);
}
.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(84, 171, 165, 0.4);
}

.btn-outline {
  border: 2px solid var(--text-dark);
  color: var(--text-dark);
  background: transparent;
}
.btn-outline:hover {
  background: var(--text-dark);
  color: var(--white);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
}
.full-width {
  width: 100%;
  display: block;
}

.cta-group {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

/* =========================================
   Navigation
   ========================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  z-index: 1000;
}

.navbar.navbar-scrolled {
  background: rgba(253, 246, 238, 0.96);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 56px;
  width: auto;
  display: block;
}
@media (max-width: 768px) {
  .logo img {
    height: 44px;
  }
}

.nav-hashtag {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  background: linear-gradient(
    135deg,
    var(--brand-purple),
    var(--brand-teal),
    var(--brand-salmon)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  cursor: default;
  transition: transform 0.3s ease;
}
.nav-hashtag:hover {
  animation: shimmer 1.5s ease infinite;
  transform: scale(1.05);
}
@keyframes shimmer {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: var(--primary-color);
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
  position: relative;
  /* no fixed height — section grows to fit content, background scales to cover */
  padding: 8rem 5% calc(3rem + 15px); /* +15px bottom so image's LHS-bottom content stays clear */
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--bg-cream); /* fills letterbox areas above/below the image */
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* never crops — shows full 1600×702 image */
  object-position: center center;
}

.hero-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.editorial-theme {
  width: 100%;
  max-width: 560px; /* constrains content to LHS — RHS of the banner stays clear */
  padding: 2.25rem 2.5rem;
  margin-left: 15px; /* 15px offset from section edge at LHS bottom */
  animation: slideUp 1s ease 0.2s both;
  text-align: left;
}

@media (max-width: 1024px) {
  .editorial-theme {
    max-width: 60%;
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 6rem 5% calc(2rem + 15px);
  }
  .editorial-theme {
    max-width: 100%;
    margin-left: 0;
    padding: 1.75rem;
  }
}

.supporting-line {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1.5rem 0;
  color: var(--primary-color);
}

.trust-strip {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 1rem;
  color: var(--text-light);
}

/* =========================================
   Lists & Layouts
   ========================================= */
.grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.bento-grid-four {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.align-center {
  align-items: center;
}

/* =========================================
   FAQ Accordion
   ========================================= */
.accordion details {
  cursor: pointer;
  padding: 1.2rem;
}
.accordion summary {
  font-weight: 600;
  font-size: 1.2rem;
  outline: none;
  list-style: none;
  position: relative;
  padding-right: 20px;
}
.accordion summary::-webkit-details-marker {
  display: none;
}
.accordion summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: transform 0.3s;
}
.accordion details[open] summary::after {
  content: "-";
}
.faq-content {
  padding-top: 1rem;
  color: var(--text-light);
}

/* =========================================
   Sticky Elements & Popup
   ========================================= */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.popup-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.popup-content {
  padding: 3rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  background: rgba(255, 255, 255, 0.95);
}

.close-popup {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-light);
}

/* =========================================
   Footer
   ========================================= */
.footer {
  padding: 4rem 5% 2rem;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
}
.copyright {
  color: var(--text-light);
  font-size: 0.9rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 2rem;
}

/* =========================================
   Registration Form Styles
   ========================================= */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.form-control {
  padding: 0.9rem 1.2rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.9);
  font-family: var(--font-family);
  font-size: 1rem;
  transition: all 0.3s ease;
  color: var(--text-dark);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(105, 94, 169, 0.1);
}

.radio-group {
  display: flex;
  gap: 2rem;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-weight: 500 !important;
}

.radio-label input[type="radio"] {
  width: 1.2rem;
  height: 1.2rem;
  accent-color: var(--primary-color);
}

.profile-specific-fields {
  display: none;
  margin-top: 0;
}

.profile-specific-fields.active {
  display: grid;
}

/* =========================================
   Animations & Responsiveness
   ========================================= */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .bento-grid-four {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-two {
    grid-template-columns: 1fr;
  }
  .bento-grid-four {
    grid-template-columns: 1fr;
    padding: 0 5%;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  h1 {
    font-size: 2.5rem;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  .cta-group {
    flex-direction: column;
  }
  .floating-cta {
    display: block;
  } /* Show sticky CTA on mobile */
  .section-padding {
    padding: 2rem 5%;
  }
  .audience-card {
    width: calc(50% - 0.5rem);
  }
}

/* =============================================
   AWARDS PAGE
   ============================================= */

/* Nav CTA group */
.nav-cta-group {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

/* Hamburger button — hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

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

/* Mobile nav drawer — hidden by default */
.mobile-nav-drawer {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  z-index: 998;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  padding: 1rem 5% 1.5rem;
  display: none;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav-drawer.open {
  display: flex;
}

.mobile-nav-drawer a {
  display: block;
  padding: 0.7rem 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s;
}

.mobile-nav-drawer a:hover {
  background: #f5ede0;
}

.mobile-nav-drawer a.btn {
  color: white;
  padding: 0.75rem;
}

/* Hero */
.awards-hero {
  background: #2a1f3d;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 9rem 5% 5rem;
  position: relative;
  overflow: hidden;
}

/* Dot-grid texture overlay */
.awards-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px
  );
  background-size: 36px 36px;
  pointer-events: none;
  z-index: 0;
}

.awards-hero-accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ffc53a, #ffd866, #ffc53a);
  z-index: 2;
}

/* Pulsing amber glow orbs */
.hero-glow-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-glow-orb--1 {
  width: 640px;
  height: 640px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    ellipse,
    rgba(245, 158, 11, 0.13) 0%,
    rgba(251, 191, 36, 0.06) 40%,
    transparent 70%
  );
  animation: ambientPulse 5s ease-in-out infinite alternate;
}

.hero-glow-orb--2 {
  width: 960px;
  height: 960px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    ellipse,
    rgba(99, 102, 241, 0.05) 0%,
    transparent 60%
  );
  animation: ambientPulse 8s ease-in-out infinite alternate-reverse;
}

@keyframes ambientPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.88);
    opacity: 0.65;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.12);
    opacity: 1;
  }
}

/* Expanding decorative rings */
.hero-deco-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  border: 1px solid rgba(245, 158, 11, 0.09);
}

.hero-deco-ring--1 {
  width: 480px;
  height: 480px;
  top: 50%;
  left: 50%;
  animation: ringPulse 6s ease-in-out infinite;
}

.hero-deco-ring--2 {
  width: 760px;
  height: 760px;
  top: 50%;
  left: 50%;
  animation: ringPulse 6s ease-in-out infinite 2s;
}

@keyframes ringPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.06);
    opacity: 0.1;
  }
}

/* Twinkling gold sparkle dots */
.hero-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-sparkles span {
  position: absolute;
  display: block;
  background: #ffd866;
  border-radius: 50%;
  animation: twinkle 3s ease-in-out infinite;
}

.hero-sparkles span:nth-child(1) {
  width: 3px;
  height: 3px;
  top: 18%;
  left: 12%;
  animation-delay: 0s;
}
.hero-sparkles span:nth-child(2) {
  width: 2px;
  height: 2px;
  top: 30%;
  left: 82%;
  animation-delay: 0.8s;
}
.hero-sparkles span:nth-child(3) {
  width: 4px;
  height: 4px;
  top: 72%;
  left: 8%;
  animation-delay: 1.4s;
}
.hero-sparkles span:nth-child(4) {
  width: 2px;
  height: 2px;
  top: 14%;
  left: 68%;
  animation-delay: 0.4s;
}
.hero-sparkles span:nth-child(5) {
  width: 3px;
  height: 3px;
  top: 78%;
  left: 78%;
  animation-delay: 2.1s;
}
.hero-sparkles span:nth-child(6) {
  width: 2px;
  height: 2px;
  top: 52%;
  left: 92%;
  animation-delay: 1s;
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.4);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}
/* Process Advisors card in hero */
.process-advisors-card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  margin-top: 2.5rem;
  padding: 1.5rem 2.5rem 1.8rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.process-advisors-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.process-advisors-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
}

/* What It's About */
.awards-about-body {
  display: block;
  max-width: 1000px;
  margin: 2rem auto 0;
}

.awards-about-img {
  float: right;
  width: 45%;
  max-width: 450px;
  margin-left: 2rem;
  margin-bottom: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.awards-para-card {
  padding: 1.5rem 1.75rem;
  border-left: 3px solid var(--primary-color, #ffc53a);
  background: #fdf6ee;
  border-radius: 0 10px 10px 0;
  margin-bottom: 1.25rem;
}

.awards-para-card p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #334155;
  margin: 0;
}

/* Categories / Timeline / Entry Guidelines */
.awards-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Judging Process */
.judging-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.judging-card {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  padding: 2.5rem;
}

.judging-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffc53a;
  line-height: 1;
}

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

.hidden {
  display: none !important;
}

.nominate-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.contact-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(84, 171, 165, 0.15);
  border-color: #d4cce8;
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.contact-role {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #54aba5;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.contact-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.25rem;
}

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

.contact-links a {
  font-size: 0.9rem;
  color: #5a5a5a;
  text-decoration: none;
  transition: color 0.2s;
  word-break: break-all;
}

.contact-links a:hover {
  color: #54aba5;
}

/* =============================================
           AWARD CATEGORIES SECTION
           ============================================= */

.award-categories-section {
  background: linear-gradient(180deg, #fdf6ee 0%, #f5ede0 100%) !important;
}

.accent-highlight {
  background: linear-gradient(135deg, #ffc53a, #ffc53a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Grid layout */
.award-categories-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
  align-items: start;
}

/* ---- Sidebar ---- */
.award-segment-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: sticky;
  top: 100px;
}

.segment-tab {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  width: 100%;
  padding: 1.15rem 1.2rem;
  border-radius: 14px;
  border: 1px solid transparent;
  background: #ffffff;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--font-family);
  box-shadow: none;
  position: relative;
}

.segment-tab::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 60%;
  border-radius: 0 3px 3px 0;
  background: transparent;
  transition: all 0.3s;
}

.segment-tab:hover {
  background: #fdf6ee;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.segment-tab:hover::before {
  background: #cbd5e1;
}

.segment-tab--active {
  background: linear-gradient(
    135deg,
    var(--gradient-start) 0%,
    var(--gradient-end) 100%
  );
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(105, 94, 169, 0.3);
}

.segment-tab--active::before {
  display: none;
}

.segment-tab--active:hover {
  box-shadow: 0 8px 28px rgba(105, 94, 169, 0.35);
}

.segment-tab__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(105, 94, 169, 0.06);
  color: var(--primary-color);
  transition: all 0.3s;
}

.segment-tab--active .segment-tab__icon {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.segment-tab__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.segment-tab__name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  transition: color 0.3s;
}

.segment-tab--active .segment-tab__name {
  color: #ffffff;
}

.segment-tab__count {
  font-size: 0.75rem;
  font-weight: 500;
  color: #94a3b8;
  letter-spacing: 0.02em;
  transition: color 0.3s;
}

.segment-tab--active .segment-tab__count {
  color: rgba(255, 255, 255, 0.75);
}

/* ---- Main panel ---- */
.award-segment-panel {
  min-width: 0;
}

.segment-panel-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 0;
  border-bottom: none;
}

.segment-panel-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    var(--gradient-start),
    var(--gradient-end)
  );
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(105, 94, 169, 0.25);
}

.segment-panel-icon svg {
  width: 26px;
  height: 26px;
}

.segment-panel-header__text {
  flex: 1;
  min-width: 0;
}

.segment-panel-title {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}

.segment-panel-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

/* ---- Accordion ---- */
.category-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.category-card {
  border: 1px solid #e8ecf1;
  border-radius: 14px;
  background: #ffffff;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.category-card:hover {
  border-color: #d1d8e0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.category-card--open {
  border-color: #e0e7ff;
  box-shadow: 0 4px 16px rgba(105, 94, 169, 0.08);
  background: #ffffff;
}

.category-card__header {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-family);
  text-align: left;
  transition: background 0.2s;
}

.category-card__header:hover {
  background: #fafbfc;
}

.category-card--open .category-card__header {
  background: transparent;
}

/* Circle check icon */
.category-card__check {
  flex-shrink: 0;
  color: var(--primary-color);
  opacity: 0.45;
  transition: all 0.3s;
  display: flex;
}

.category-card--open .category-card__check {
  opacity: 1;
  color: var(--primary-color);
}

.category-card__check .cat-check-icon {
  width: 24px;
  height: 24px;
}

.category-card__title {
  flex: 1;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}

.category-card--open .category-card__title {
  font-weight: 700;
}

.category-card__chevron {
  flex-shrink: 0;
  color: #b0b8c4;
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.3s;
  display: flex;
}

.category-card--open .category-card__chevron {
  transform: rotate(180deg);
  color: var(--primary-color);
}

.category-card__body {
  padding: 0 1.5rem 1.5rem;
  padding-left: 3.75rem;
}

/* ---- Content blocks (tinted cards with left accent) ---- */
.cat-block {
  background: #f6f8fb;
  border-left: 3px solid var(--primary-color);
  border-radius: 0 10px 10px 0;
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
}

.cat-block:last-child {
  margin-bottom: 0;
}

.cat-block__label {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-color);
  margin-bottom: 0.45rem;
}

.cat-block__text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
}

.cat-block__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.cat-block__list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-light);
}

.cat-block__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.1rem;
  line-height: 1.35;
}

/* ---- Loading & Error ---- */
.award-categories-loading {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  gap: 1rem;
}

.loading-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid #e2e8f0;
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

.award-categories-loading p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
}

.award-categories-error {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  background: #fef2f2;
  border-radius: 16px;
  border: 1px solid #fecaca;
}

.award-categories-error p {
  color: #991b1b;
  margin: 0;
  font-weight: 500;
}

/* ---- Per-segment color variants ---- */

/* Segment 0: Blue (default — Academic Quality) */
.segment-color-0.segment-tab--active {
  background: linear-gradient(135deg, #695ea9, #8478c4);
  box-shadow: 0 6px 20px rgba(105, 94, 169, 0.3);
}
.segment-color-0.segment-tab--active:hover {
  box-shadow: 0 8px 28px rgba(105, 94, 169, 0.35);
}
.segment-color-0 .segment-tab__icon,
.segment-tab.segment-color-0 .segment-tab__icon {
  background: rgba(105, 94, 169, 0.06);
  color: #8478c4;
}
.segment-color-0.segment-tab--active .segment-tab__icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.award-segment-panel.segment-color-0 .segment-panel-icon {
  background: linear-gradient(135deg, #695ea9, #8478c4);
  box-shadow: 0 4px 14px rgba(105, 94, 169, 0.25);
}
.award-segment-panel.segment-color-0 .category-card--open {
  border-color: #e3deef;
  box-shadow: 0 4px 16px rgba(105, 94, 169, 0.08);
}
.award-segment-panel.segment-color-0 .category-card__check {
  color: #8478c4;
}
.award-segment-panel.segment-color-0
  .category-card--open
  .category-card__chevron {
  color: #8478c4;
}
.award-segment-panel.segment-color-0 .cat-block {
  border-left-color: #8478c4;
}
.award-segment-panel.segment-color-0 .cat-block__label {
  color: #8478c4;
}
.award-segment-panel.segment-color-0 .cat-block__list li::before {
  color: #8478c4;
}

/* Segment 1: Amber / Gold (Financial Access) */
.segment-color-1.segment-tab--active {
  background: linear-gradient(135deg, #c98a1f, #ffc53a);
  box-shadow: 0 6px 20px rgba(255, 197, 58, 0.3);
}
.segment-color-1.segment-tab--active:hover {
  box-shadow: 0 8px 28px rgba(255, 197, 58, 0.35);
}
.segment-color-1 .segment-tab__icon,
.segment-tab.segment-color-1 .segment-tab__icon {
  background: rgba(255, 197, 58, 0.08);
  color: #ffc53a;
}
.segment-color-1.segment-tab--active .segment-tab__icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.award-segment-panel.segment-color-1 .segment-panel-icon {
  background: linear-gradient(135deg, #c98a1f, #ffc53a);
  box-shadow: 0 4px 14px rgba(255, 197, 58, 0.25);
}
.award-segment-panel.segment-color-1 .category-card--open {
  border-color: #fef3c7;
  box-shadow: 0 4px 16px rgba(255, 197, 58, 0.08);
}
.award-segment-panel.segment-color-1 .category-card__check {
  color: #ffc53a;
}
.award-segment-panel.segment-color-1
  .category-card--open
  .category-card__chevron {
  color: #ffc53a;
}
.award-segment-panel.segment-color-1 .cat-block {
  border-left-color: #ffc53a;
}
.award-segment-panel.segment-color-1 .cat-block__label {
  color: #ffc53a;
}
.award-segment-panel.segment-color-1 .cat-block__list li::before {
  color: #ffc53a;
}

/* Segment 2: Emerald (Student Support) */
.segment-color-2.segment-tab--active {
  background: linear-gradient(135deg, #3d8a85, #54aba5);
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.3);
}
.segment-color-2.segment-tab--active:hover {
  box-shadow: 0 8px 28px rgba(5, 150, 105, 0.35);
}
.segment-color-2 .segment-tab__icon,
.segment-tab.segment-color-2 .segment-tab__icon {
  background: rgba(5, 150, 105, 0.08);
  color: #54aba5;
}
.segment-color-2.segment-tab--active .segment-tab__icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.award-segment-panel.segment-color-2 .segment-panel-icon {
  background: linear-gradient(135deg, #3d8a85, #54aba5);
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.25);
}
.award-segment-panel.segment-color-2 .category-card--open {
  border-color: #d4ebe9;
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.08);
}
.award-segment-panel.segment-color-2 .category-card__check {
  color: #54aba5;
}
.award-segment-panel.segment-color-2
  .category-card--open
  .category-card__chevron {
  color: #54aba5;
}
.award-segment-panel.segment-color-2 .cat-block {
  border-left-color: #54aba5;
}
.award-segment-panel.segment-color-2 .cat-block__label {
  color: #54aba5;
}
.award-segment-panel.segment-color-2 .cat-block__list li::before {
  color: #54aba5;
}

/* =============================================
           RESPONSIVE — 5 BREAKPOINTS
           ============================================= */

/* 1280px — Large tablets / small desktops */
@media (max-width: 1280px) {
  .awards-about-img {
    width: 40%;
    max-width: 400px;
  }

  .judging-card {
    padding: 2rem;
  }

  .award-categories-grid {
    grid-template-columns: 260px 1fr;
    gap: 2rem;
  }
}

/* 1024px — Tablets landscape */
@media (max-width: 1024px) {
  .awards-about-img {
    width: 42%;
    max-width: 360px;
    margin-left: 1.5rem;
  }

  .judging-grid {
    gap: 1.5rem;
  }

  .judging-card {
    padding: 1.75rem;
  }

  .award-categories-grid {
    grid-template-columns: 1fr;
  }

  .award-segment-sidebar {
    position: static;
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 0.6rem;
    padding-bottom: 0.5rem;
  }

  .segment-tab {
    min-width: 220px;
    flex-shrink: 0;
    scroll-snap-align: start;
  }
}

/* 768px — Tablets portrait */
@media (max-width: 768px) {
  /* --- Navbar: show hamburger, hide desktop nav --- */
  .nav-links {
    display: none;
  }
  .nav-cta-group {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .awards-hero {
    min-height: auto;
    padding: 7rem 5% 4rem;
  }

  .awards-about-img {
    float: none;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-bottom: 1.5rem;
  }

  .awards-details-grid {
    grid-template-columns: 1fr;
  }

  .judging-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
  }

  .judging-number {
    font-size: 2.8rem;
  }

  .nominate-contact-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  /* Hide deadline sub-text in sticky footer */
  #sticky-footer > div:first-child > span:last-child {
    display: none;
  }

  /* --- Segment tabs: horizontal scroll for 5 segments --- */
  .award-segment-sidebar {
    flex-direction: row;
    position: static;
    gap: 0.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.5rem;
  }

  .segment-tab {
    min-width: 150px;
    flex-shrink: 0;
    scroll-snap-align: start;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.9rem 0.5rem;
    gap: 0.45rem;
    border-radius: 12px;
  }

  .segment-tab::before {
    display: none;
  }

  .segment-tab__icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }

  .segment-tab__text {
    gap: 0.1rem;
  }

  .segment-tab__name {
    font-size: 0.72rem;
    line-height: 1.25;
    font-weight: 700;
    white-space: normal;
  }

  .segment-tab__count {
    font-size: 0.68rem;
  }

  .segment-panel-icon {
    width: 44px;
    height: 44px;
  }

  .segment-panel-icon svg {
    width: 22px;
    height: 22px;
  }

  .segment-panel-title {
    font-size: 1.3rem;
  }

  .category-card__body {
    padding-left: 3rem;
  }

  .cat-block {
    padding: 0.85rem 1rem;
  }
}

/* 480px — Phones */
@media (max-width: 480px) {
  .awards-hero {
    padding: 6rem 4% 3rem;
  }

  .awards-para-card {
    padding: 1.25rem;
  }

  .awards-details-grid > .glass-card {
    padding: 2rem 1.5rem !important;
  }

  .judging-card {
    padding: 1.5rem 1.25rem;
  }

  .judging-number {
    font-size: 2.2rem;
  }

  .contact-card {
    padding: 2rem 1.25rem;
  }

  .nominate-contact-grid {
    max-width: 100%;
  }

  /* Sticky footer: keep both CTAs side by side */
  #sticky-footer {
    padding: 0.65rem 4% !important;
  }

  #sticky-footer > div:last-child a {
    padding: 0.55rem 0.85rem !important;
    font-size: 0.82rem !important;
    white-space: nowrap;
  }

  .award-categories-grid {
    gap: 1.25rem;
    margin-top: 2rem;
  }

  /* Segment tabs: tighter on small phones, still show all 3 */
  .segment-tab {
    padding: 0.75rem 0.35rem;
  }

  .segment-tab__icon {
    width: 34px;
    height: 34px;
  }

  .category-card__header {
    padding: 0.9rem 1rem;
    gap: 0.6rem;
  }

  .category-card__title {
    font-size: 0.88rem;
  }

  .category-card__check .cat-check-icon {
    width: 20px;
    height: 20px;
  }

  .category-card__body {
    padding: 0 1rem 1rem;
    padding-left: 1rem;
  }

  .segment-panel-header {
    flex-direction: column;
    gap: 0.75rem;
  }

  .segment-panel-icon {
    width: 40px;
    height: 40px;
  }

  .segment-panel-icon svg {
    width: 20px;
    height: 20px;
  }

  .segment-panel-title {
    font-size: 1.2rem;
  }

  .cat-block {
    padding: 0.75rem 0.9rem;
  }

  .cat-block__text,
  .cat-block__list li {
    font-size: 0.85rem;
  }
}

/* 360px — Small phones */
@media (max-width: 360px) {
  .awards-hero {
    padding: 5.5rem 4% 2.5rem;
  }

  .awards-para-card {
    padding: 1rem;
  }

  .awards-details-grid > .glass-card {
    padding: 1.5rem 1rem !important;
  }

  .judging-card {
    padding: 1.25rem 1rem;
  }

  .contact-card {
    padding: 1.5rem 1rem;
  }

  .contact-name {
    font-size: 1.05rem;
  }
}

/* =============================================
   INDEX PAGE — SECTION-SPECIFIC STYLES
   ============================================= */

/* Stats row */
.stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* Marquee / 4 Pillars */
.marquee-wrapper {
  overflow: hidden;
  width: 100%;
  margin-top: 2rem;
  padding: 0.5rem 0;
}
.marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  align-items: stretch;
  animation: marquee-scroll 18s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.marquee-card {
  width: 320px;
  flex-shrink: 0;
  height: auto;
  display: flex;
  flex-direction: column;
}
@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Conversation Tracks */
.tracks-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}
.track-pill {
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: default;
  transition: transform 0.15s;
}
.track-pill:hover {
  transform: translateY(-2px);
}

/* Audience Grid */
.audience-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.audience-card {
  width: calc(25% - 0.75rem);
  min-width: 150px;
  height: 120px;
  padding: 1.2rem 1rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 1.4;
}
.audience-icon {
  font-size: 1.8rem;
}

/* B2B Partner Grid */
.b2b-benefits-grid {
  padding: 0 5%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* =============================================
   INDEX PAGE — RESPONSIVE (5 BREAKPOINTS)
   ============================================= */

/* 1280px — Large tablets / small desktops */
@media (max-width: 1280px) {
  .editorial-theme {
    max-width: 680px;
  }
}

/* 1024px — Index additions */
@media (max-width: 1024px) {
  .editorial-theme {
    max-width: 90%;
    padding: 2.5rem;
  }
  .contact-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .b2b-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 900px — Event Snapshot + B2B */
@media (max-width: 900px) {
  #event-snapshot .grid-two {
    gap: 1.5rem !important;
  }
  .b2b-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mobile-order-first {
    order: -1;
  }
  .mobile-order-last {
    order: 1;
  }
}

/* 768px — Index additions */
@media (max-width: 768px) {
  .hero {
    padding: 7rem 5% 3rem;
    min-height: auto;
  }
  .editorial-theme {
    max-width: 100%;
    padding: 2rem;
  }
  .grid-two {
    gap: 2rem !important;
  }
  .contact-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  #sticky-footer > div:first-child > span:last-child {
    display: none;
  }
  .audience-card {
    width: calc(50% - 0.5rem) !important;
  }
}

/* 600px — B2B single column */
@media (max-width: 600px) {
  .b2b-benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* 480px — Phones */
@media (max-width: 480px) {
  .hero {
    padding: 6rem 4% 3rem;
  }
  .editorial-theme {
    padding: 1.5rem;
  }
  .nav-hashtag {
    display: none;
  }
  .contact-grid {
    grid-template-columns: 1fr !important;
  }
  .contact-card {
    padding: 2rem 1.25rem;
  }
  .popup-content {
    padding: 2rem 1.5rem;
  }
  #sticky-footer {
    padding: 0.65rem 4% !important;
  }
  #sticky-footer > div:last-child {
    width: 100%;
    flex-shrink: 1 !important;
  }
  #sticky-footer > div:last-child a,
  #sticky-footer > div:last-child button {
    flex: 1;
    text-align: center;
    padding: 0.55rem 0.75rem !important;
    font-size: 0.82rem !important;
  }
}

/* 360px — Small phones */
@media (max-width: 360px) {
  .hero {
    padding: 5.5rem 4% 2.5rem;
  }
  .audience-card {
    width: 100% !important;
    min-width: unset;
  }
  .contact-card {
    padding: 1.5rem 1rem;
  }
  .contact-name {
    font-size: 1.05rem;
  }
  #event-snapshot {
    padding: 2rem 4%;
  }
}

/* =========================================
   Registration Modal & Form Styles
   (Restored — were removed during brand migration)
   ========================================= */
.register-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  padding: 1rem;
  align-items: center;
  justify-content: center;
  background: rgba(2, 8, 23, 0.62);
  backdrop-filter: blur(8px);
}

.register-modal-content {
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  border-radius: 20px;
  padding: 2rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(59, 130, 246, 0.2);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.22);
}

.register-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: #eff6ff;
  color: #475569;
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.register-modal-close:hover {
  background: #dbeafe;
  color: #0f172a;
}

.register-modal-header {
  margin-bottom: 1.25rem;
}

.register-step-indicator {
  margin: 0.25rem 0 1rem;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: #64748b;
}

.register-title {
  margin: 0.5rem 0;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}
.register-subtitle {
  margin: 0;
  color: #64748b;
  font-size: 0.95rem;
}

.registration-form {
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 16px;
  padding: 1.2rem;
}

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

.partner-modal-content {
  max-width: 620px;
}
.partner-form textarea.form-control {
  resize: vertical;
  min-height: 96px;
}

.register-step {
  display: none;
}
.register-step.active {
  display: block;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
  width: 100%;
}

.form-grid > * {
  min-width: 0;
}
.form-grid > .span-full {
  grid-column: 1 / -1;
}

.form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
  min-width: 0;
}

.form-group.span-full {
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.45rem;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.form-control {
  min-height: 44px;
  padding: 0.75rem 0.95rem;
  border-radius: 10px;
  border: 1px solid rgba(100, 116, 139, 0.28);
  background: #f8fafc;
  font-family: var(--font-family);
  font-size: 0.95rem;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  color: var(--text-dark);
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.form-control:focus {
  outline: none;
  background: #ffffff;
  border-color: #3b82f6;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.14);
}

.form-group.has-error .form-control,
.form-control.input-error {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

.form-group.has-error .radio-label {
  border-color: rgba(220, 38, 38, 0.45);
}

.validation-msg {
  margin-top: 0.35rem;
  color: #b91c1c;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.4;
}

.radio-group {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  font-weight: 500;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: #f8fafc;
  border-radius: 999px;
  font-size: 0.9rem;
}

.radio-label input[type="radio"] {
  width: 1rem;
  height: 1rem;
  accent-color: var(--primary-color);
}

.readonly-phone {
  background: #f1f5f9;
  color: #334155;
  cursor: not-allowed;
}

.change-phone-btn {
  margin-top: 0.45rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--primary-color);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  width: fit-content;
}

.change-phone-btn:hover {
  text-decoration: underline;
}

.otp-section {
  display: none;
  margin-top: 0.6rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
}

.otp-section.active {
  display: block;
}
.otp-input {
  letter-spacing: 0.25em;
  text-align: center;
  font-weight: 700;
}
.otp-meta {
  margin: 0 0 0.45rem;
  color: #64748b;
  font-size: 0.85rem;
}
.otp-variant {
  display: none;
}
.otp-variant.active {
  display: contents;
}

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

.signup-otp-digit {
  text-align: center;
  font-size: 1.05rem;
  font-weight: 700;
  min-height: 48px;
  padding: 0.65rem 0.2rem;
}

.otp-actions-row {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.otp-actions-row .btn {
  flex: 1;
  min-width: 150px;
}

.otp-status {
  min-height: 1.1rem;
  margin: 0.2rem 0 0;
  font-size: 0.85rem;
  font-weight: 500;
}
.otp-status.info {
  color: #334155;
}
.otp-status.success {
  color: #15803d;
}
.otp-status.error {
  color: #b91c1c;
}

.profile-specific-fields {
  display: none;
  margin-top: 0.6rem;
  padding: 0.9rem;
  background: #f8fbff;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 12px;
}

.profile-specific-fields.active {
  display: grid;
}
.register-submit-wrap {
  margin-top: 1.1rem;
}
.register-submit-btn {
  font-size: 1rem;
}
.register-note {
  margin-bottom: 0;
}
.register-note small {
  color: #64748b;
  font-size: 0.78rem;
}

/* Payment Status */
.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;
  }
}

/* Modal responsive overrides */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .register-modal-content {
    padding: 1.25rem;
    border-radius: 16px;
    width: 95vw;
    max-width: 600px;
  }
  .registration-form {
    padding: 0.9rem;
  }
  .otp-actions-row .btn {
    min-width: 100%;
  }

  #register-modal {
    display: flex !important;
    padding: 0.75rem !important;
    align-items: center !important;
    justify-content: center !important;
  }
  #register-modal > div {
    width: 100% !important;
    max-width: 95vw !important;
    max-height: 95vh !important;
    padding: 1.5rem !important;
    border-radius: 16px !important;
    overflow-y: auto !important;
    background: white !important;
  }
  #register-modal > div > button {
    position: absolute !important;
    top: 0.8rem !important;
    right: 0.8rem !important;
    font-size: 1.3rem !important;
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    color: #64748b !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 10001 !important;
    pointer-events: auto !important;
    transition: all 0.2s ease !important;
    line-height: 1 !important;
  }
  #register-modal > div > button:hover {
    color: #0055ff !important;
    background: #f0f9ff !important;
    border-radius: 50% !important;
  }
  #register-modal > div > button:active {
    transform: scale(0.95) !important;
  }
  .registration-form {
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
  }
  .form-grid {
    grid-template-columns: 1fr !important;
    gap: 0.8rem !important;
  }
  .form-group {
    margin-bottom: 0.8rem;
    display: flex;
    flex-direction: column;
  }
  .form-group label {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    font-weight: 600;
    color: #0f172a;
  }
  .form-control {
    min-height: 44px;
    padding: 0.75rem 0.85rem;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    width: 100%;
  }
  .form-control:focus {
    outline: none;
    border-color: #0055ff;
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 85, 255, 0.1);
  }
  .radio-group {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }
  .radio-label {
    padding: 0.5rem 0.6rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .profile-specific-fields {
    padding: 0.8rem !important;
    margin-top: 0.8rem;
    gap: 0.6rem !important;
    background: #f8fbff !important;
    border: none !important;
    border-radius: 8px !important;
  }
  .registration-form .btn {
    width: 100%;
    padding: 0.95rem 1.2rem;
    min-height: 44px;
    font-size: 0.95rem;
  }
  #register-modal {
    display: none !important;
  }
  #register-modal[style*="display: flex"],
  #register-modal[style*="display:flex"] {
    display: flex !important;
  }
  footer.glass-panel {
    margin-bottom: 150px;
  }
}

@media (max-width: 480px) {
  .register-modal-content {
    padding: 1rem;
    border-radius: 14px;
    max-width: 90vw;
  }
  .registration-form {
    padding: 0.75rem;
  }
  .form-group {
    margin-bottom: 1rem;
  }
  .form-control {
    min-height: 48px;
    padding: 0.85rem 0.75rem;
    font-size: 16px;
  }
  .radio-label {
    padding: 0.55rem 0.65rem;
    font-size: 0.85rem;
  }
  .form-group.span-full .radio-label {
    width: 100%;
    align-items: flex-start;
    white-space: normal;
    line-height: 1.32;
  }
  .communication-consent-label span {
    display: inline-block;
    white-space: normal;
    margin-top: -2px;
    font-size: 14px;
    line-height: 1.2;
  }
  .terms-privacy-label {
    gap: 0.35rem;
    padding: 0.55rem 0.65rem;
    font-size: 0.76rem;
    line-height: 1.25;
  }
  .terms-privacy-label span {
    white-space: normal;
    margin-top: -3px;
    font-size: 14px;
  }
  #register-modal > div h2 {
    font-size: 1.2rem !important;
  }
  #register-modal > div p {
    font-size: 0.85rem !important;
  }
}

/* Index page responsive corrections (mobile/tablet only) */
@media (max-width: 991px) {
  .hero .nav-hashtag {
    display: none !important;
  }

  .hero {
    padding: 6rem 4% calc(2rem + 15px);
  }

  .hero .editorial-theme {
    max-width: 100% !important;
    margin-left: 0 !important;
    padding: 1.5rem !important;
  }

  .hero .supporting-line {
    margin: 1.1rem 0;
    font-size: 1rem;
  }

  .hero .trust-strip img {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero .nav-hashtag {
    display: none;
  }

  .hero .cta-group {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
  }

  .hero .cta-group .btn {
    width: 100%;
  }

  #sticky-footer {
    padding: 0.7rem 4% !important;
    gap: 0.65rem !important;
  }

  #sticky-footer > div:first-child {
    width: 100%;
    font-size: 0.98rem !important;
    line-height: 1.25;
  }

  #sticky-footer > div:first-child > span:last-child {
    display: none !important;
  }

  #sticky-footer > div:last-child {
    width: 100%;
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem !important;
  }

  #sticky-footer > div:last-child .btn {
    width: 100%;
    margin: 0 !important;
  }

  footer.glass-panel {
    margin-bottom: 130px;
  }
}

@media (max-width: 420px) {
  .hero .editorial-theme {
    padding: 1.25rem !important;
  }

  .hero .editorial-theme p {
    font-size: 0.95rem;
  }

  #sticky-footer > div:last-child .btn {
    font-size: 0.84rem !important;
    padding: 0.55rem 0.65rem !important;
  }
}
