/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #111827;
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  line-height: 1.6;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

/* ===== LAYOUT HELPERS ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

main {
  flex: 1;
}

/* ===== TYPOGRAPHY ===== */
h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
}

h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

p {
  color: #4b5563;
}

/* ===== COLORS ===== */
:root {
  --orange: #ea580c;
  --orange-dark: #c2410c;
  --orange-light: #fff7ed;
  --orange-border: #fed7aa;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #111827;
  --green: #16a34a;
}

/* ===== HEADER ===== */
#site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .08);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}

.site-logo img {
  height: 15rem;
  width: auto;
  object-fit: contain;
  padding: 0.4rem 0;
}

.site-logo {
  display: flex;
  align-items: center;
}

nav.desktop-nav {
  display: none;
}

@media (min-width: 768px) {
  nav.desktop-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
}

nav.desktop-nav a {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: 0.375rem;
  transition: color .2s, background .2s;
}

nav.desktop-nav a:hover,
nav.desktop-nav a.active {
  color: var(--orange);
  background: var(--gray-50);
}

.btn-ticket-header {
  display: none;
  padding: 0.5rem 1rem;
  background: var(--orange);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.375rem;
  transition: background .2s;
}

.btn-ticket-header:hover {
  background: var(--orange-dark);
}

@media (min-width: 768px) {
  .btn-ticket-header {
    display: inline-flex;
    align-items: center;
  }
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: .3s;
}

@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--gray-200);
  padding: 0.75rem;
  background: #fff;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: 0.375rem;
  transition: color .2s, background .2s;
  margin-bottom: 2px;
}

.mobile-nav a:hover {
  color: var(--orange);
  background: var(--gray-50);
}

.mobile-nav .btn-mobile-ticket {
  display: block;
  text-align: center;
  margin: 0.75rem 0.75rem 0;
  padding: 0.625rem 1rem;
  background: var(--orange);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.375rem;
}

/* ===== FOOTER ===== */
#site-footer {
  background: #111827;
  color: #f3f4f6;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-grid h3,
.footer-grid h4 {
  color: #f9fafb;
  margin-bottom: 1rem;
}

.footer-grid p,
.footer-grid a {
  color: #9ca3af;
  font-size: 0.875rem;
}

.footer-grid ul {
  list-style: none;
}

.footer-grid ul li+li {
  margin-top: 0.5rem;
}

.footer-grid ul a:hover {
  color: #fb923c;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-socials a {
  color: #9ca3af;
  font-size: 1.25rem;
  transition: color .2s;
}

.footer-socials a:hover {
  color: #fb923c;
}

.footer-bottom {
  border-top: 1px solid #1f2937;
  padding-top: 2rem;
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: #9ca3af;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-bottom-links a:hover {
  color: #fb923c;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--orange);
  color: #fff;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: background .2s;
}

.btn-primary:hover {
  background: var(--orange-dark);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--orange);
  color: var(--orange);
  font-weight: 600;
  border-radius: 0.5rem;
  transition: background .2s;
}

.btn-outline:hover {
  background: var(--orange-light);
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, #fff7ed 0%, #fff 60%, #eff6ff 100%);
  padding: 3rem 0;
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.125rem;
  max-width: 42rem;
}

/* ===== SECTION ===== */
section {
  padding: 3rem 0;
}

@media (min-width: 768px) {
  section {
    padding: 5rem 0;
  }
}

/* ===== GRID HELPERS ===== */
.grid-2 {
  display: grid;
  gap: 1.5rem;
}

.grid-3 {
  display: grid;
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== CARD ===== */
.card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
}

.card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, .1);
  border-color: var(--orange-border);
}

/* ===== SPEAKER CARD ===== */
/* the first block is completely commented as the formate was having some problem and new css for card is pasted below */
/* .speaker-card { display: block; }
.speaker-card .photo {
  aspect-ratio: 1 / 1; /* Forces a perfect square */
*/
/* width: 100%;
  overflow: hidden;
  background: var(--gray-200);
  display: flex; /* Ensures initials stay centered */
*/
/* align-items: center;
  justify-content: center;
} */
/* .speaker-card .photo img {
  width: 100%; */
/* height: 100%; */
/* object-fit: cover; /* This is the "magic" line—it crops instead of stretching */
*/
/* object-position: center; /* Keeps faces centered */
*/
/* display: block;
} */
/* .speaker-card:hover .photo img { transform: scale(1.05); }
.speaker-card .photo .initials {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff; font-size: 3rem; font-weight: 700;
} */
/* .speaker-card .body { padding: 1.25rem; }
.speaker-card .body h3 { font-size: 1.125rem; color: var(--gray-900); transition: color .2s; }
.speaker-card:hover .body h3 { color: var(--orange); }
.speaker-card .body .title { font-size: 0.875rem; color: var(--gray-600); margin-top: 0.25rem; }
.speaker-card .body .org { font-size: 0.75rem; color: var(--gray-500); margin-top: 0.25rem; }
.speaker-card .body .talk { font-size: 0.875rem; font-weight: 500; color: var(--orange); margin-top: 0.75rem; } */

/*=here is the new css for card section=*/
/* ===== SPEAKER CARD ===== */
.speaker-card {
  display: flex;
  flex-direction: column;
}

.speaker-card .photo {
  aspect-ratio: 1 / 1;
  width: 100%;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
}

.speaker-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.speaker-card:hover .photo img {
  transform: scale(1.05);
}

.speaker-card .body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.speaker-card .body h3 {
  font-size: 1.125rem;
  color: var(--gray-900);
  transition: color .2s;
  margin-bottom: 0.25rem;
}

.speaker-card:hover .body h3 {
  color: var(--orange);
}

.speaker-card .body .title {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.4;
}

.speaker-card .body .org {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.speaker-card .body .talk {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--orange);
  margin-top: auto;
  padding-top: 1rem;
}

/* ===== HOME HERO ===== */
.home-hero {
  background: linear-gradient(135deg, #fff7ed 0%, #fff 50%, #eff6ff 100%);
  padding: 2.5rem 0 3rem;
  text-align: center;
}

@media (min-width: 768px) {
  .home-hero {
    padding: 5rem 0 5rem;
  }
}

.home-hero .badge-img {
  width: 100%;
  max-width: 320px;
  margin: 0 auto 2rem;
  display: block;
}

.home-hero .tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffedd5;
  color: var(--orange);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

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

.home-hero .subtitle {
  font-size: 1.125rem;
  max-width: 38rem;
  margin: 1rem auto 2rem;
  color: var(--gray-600);
}

.home-hero .cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.event-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 28rem;
  margin: 0 auto 2rem;
  text-align: center;
  gap: 1rem;
}

.event-meta .icon {
  font-size: 1.25rem;
  color: var(--orange);
  margin-bottom: 0.25rem;
}

.event-meta p {
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* ===== COUNTDOWN ===== */
.countdown {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.countdown-box {
  text-align: center;
  min-width: 70px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .06);
}

.countdown-box .num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.countdown-box .lbl {
  font-size: 0.7rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: 0.25rem;
}

/* ===== SPONSOR SCROLL ===== */
.sponsor-scroll-outer {
  overflow: hidden;
  position: relative;
}

.sponsor-scroll-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: logoScroll 30s linear infinite;
}

.sponsor-scroll-track:hover {
  animation-play-state: paused;
}

.sponsor-logo-item {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 0.5rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 6rem;
  min-width: 180px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .05);
  transition: box-shadow .2s;
}

.sponsor-logo-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
}

.sponsor-logo-item img {
  max-height: 5rem;
  object-fit: contain;
}

@keyframes logoScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ===== FEATURE CARDS ===== */
.feature-icon {
  width: 4rem;
  height: 4rem;
  background: #ffedd5;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.75rem;
}

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

/* ===== SCHEDULE TABLE ===== */
.schedule-table-wrap {
  overflow-x: auto;
  border-radius: 0.75rem;
  border: 1px solid var(--gray-200);
  box-shadow: 0 1px 4px rgba(0, 0, 0, .06);
}

.schedule-table {
  min-width: 700px;
  width: 100%;
  border-collapse: collapse;
}

.schedule-table thead {
  background: var(--gray-50);
}

.schedule-table th {
  padding: 0.75rem 1.5rem;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--gray-500);
  border-bottom: 1px solid var(--gray-200);
}

.schedule-table th:first-child {
  width: 160px;
  position: sticky;
  left: 0;
  background: var(--gray-50);
  z-index: 5;
}

.schedule-table td {
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--gray-100);
  vertical-align: top;
  color: var(--gray-700);
}

.schedule-table tr:nth-child(even) td {
  background: var(--gray-50);
}

.schedule-table tr:nth-child(even) td:first-child {
  background: var(--gray-50);
}

.schedule-table td:first-child {
  position: sticky;
  left: 0;
  background: #fff;
  border-right: 1px solid var(--gray-100);
  z-index: 1;
  font-weight: 600;
  white-space: nowrap;
}

.schedule-table tr:nth-child(even) td:first-child {
  background: var(--gray-50);
}

.schedule-time-cell {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.schedule-time-cell .clock-icon {
  color: var(--orange);
}

.schedule-talk-title {
  font-weight: 700;
  color: var(--gray-900);
  display: block;
  margin-bottom: 0.25rem;
}

.schedule-speaker {
  color: var(--orange);
  font-weight: 500;
  display: block;
  margin-bottom: 0.25rem;
}

.schedule-room {
  color: var(--gray-500);
  font-size: 0.75rem;
}

/* ===== VOLUNTEER GRID ===== */
.volunteers-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, 1fr);
  padding: 1rem;
}

@media (min-width: 640px) {
  .volunteers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .volunteers-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .volunteers-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.vol-card .photo {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--gray-200);
}

.vol-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}

.vol-card:hover .photo img {
  transform: scale(1.05);
}

.vol-card .photo .initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;
  font-size: 1.75rem;
  font-weight: 700;
}

.vol-card .body {
  padding: 0.75rem;
}

.vol-card .body h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-900);
}

/* ===== SPONSOR TIER GRID ===== */
.sponsor-tier {
  margin-bottom: 4rem;
}

.sponsor-tier h2 {
  text-align: center;
  font-size: 1.5rem;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 2rem;
}

.sponsor-tier-platinum {
  grid-template-columns: repeat(2, 1fr);
}

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

/* .sponsor-tier-other {
  grid-template-columns: repeat(4, 1fr);
} */

.sponsor-tier-other {
  /* display: grid; */
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  justify-content: center;
  max-width: 64rem;
  margin: 0 auto;
}

/* .sponsor-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: 0.75rem; padding: 1.5rem; min-height: 10rem;
  transition: box-shadow .2s, border-color .2s;
  text-align: center;
}
.sponsor-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.1); border-color: var(--orange-border); }
.sponsor-card .logo-wrap { width: 100%; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; height: 5rem; }
.sponsor-card .logo-wrap img { max-height: 5rem; max-width: 100%; object-fit: contain; transition: transform .3s; }
.sponsor-card:hover .logo-wrap img { transform: scale(1.08); } */


/* the below css from .sponsor-card to .sponsor-card .logo-wrap img is updated version of above css from  .sponsor-card to .sponsor-card:hover .logo-wrap img  */

.sponsor-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 0.75rem;
  padding: 1.5rem;
  /* Standard comfortable breathing room */
  aspect-ratio: 1 / 1;
  /* Keeps it a uniform square */
  max-width: 19rem;
  /* THE SWEET SPOT: Balanced medium width */
  margin: 0 auto;
  /* Centers the cards within the grid column */
  transition: box-shadow .2s, border-color .2s;
  text-align: center;
  width: 100%;
}

.sponsor-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
  border-color: var(--orange-border);
}

.sponsor-card .logo-wrap {
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.sponsor-card .logo-wrap img {
  max-height: 8.5rem;
  /* Perfect size for both square and horizontal logos */
  max-width: 95%;
  object-fit: contain;
  transition: transform .3s;
}

.sponsor-card:hover .logo-wrap img {
  transform: scale(1.08);
}

.sponsor-card h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-900);
}

/* ===== TICKET CARDS ===== */
.tickets-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .tickets-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .tickets-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ticket-card {
  border: 1px solid var(--gray-200);
  border-radius: 0.75rem;
  overflow: hidden;
  background: #fff;
  transition: box-shadow .2s;
}

.ticket-card:hover {
  box-shadow: 0 10px 28px rgba(0, 0, 0, .1);
}

.ticket-card.featured {
  border: 2px solid var(--orange);
  box-shadow: 0 8px 24px rgba(234, 88, 12, .15);
  transform: scale(1.03);
  background: linear-gradient(135deg, #fff7ed 0%, #fff 100%);
}

.ticket-card .featured-badge {
  background: var(--orange);
  color: #fff;
  text-align: center;
  padding: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.ticket-card .body {
  padding: 2rem;
}

.ticket-card h3 {
  font-size: 1.375rem;
  margin-bottom: 0.5rem;
}

.ticket-card .desc {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
  min-height: 2.5rem;
}

.ticket-card .price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.ticket-card .price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray-500);
}

.ticket-card .sold-out {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.75rem;
  background: var(--gray-100);
  color: var(--gray-500);
  border-radius: 0.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  cursor: not-allowed;
}

.ticket-card .buy-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  transition: background .2s, color .2s;
}

.ticket-card .buy-btn.outline {
  border: 2px solid var(--orange);
  color: var(--orange);
}

.ticket-card .buy-btn.outline:hover {
  background: var(--orange-light);
}

.ticket-card .buy-btn.filled {
  background: var(--orange);
  color: #fff;
}

.ticket-card .buy-btn.filled:hover {
  background: var(--orange-dark);
}

.ticket-card .includes-list {
  list-style: none;
}

.ticket-card .includes-list li {
  display: flex;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--gray-700);
  margin-bottom: 0.625rem;
}

.ticket-card .includes-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== INFO CARDS ===== */
.info-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 0.75rem;
  padding: 2rem;
}

.info-card .icon-circle {
  width: 3rem;
  height: 3rem;
  background: #ffedd5;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* ===== ORANGE BOX ===== */
.orange-box {
  background: var(--orange-light);
  border: 1px solid var(--orange-border);
  border-radius: 0.75rem;
  padding: 1.5rem;
}

/* ===== CONTACT FORM ===== */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.625rem 1rem;
  border: 1px solid var(--gray-300, #d1d5db);
  border-radius: 0.5rem;
  font: inherit;
  font-size: 0.9375rem;
  color: var(--gray-900);
  transition: border-color .2s, box-shadow .2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(234, 88, 12, .15);
}

.form-row {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== ALERT BOXES ===== */
.alert-orange {
  background: #ffedd5;
  border-left: 4px solid var(--orange);
  padding: 1rem 1.25rem;
  border-radius: 0.25rem;
}

.alert-green {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
}

/* ===== BADGES & TAGS ===== */
.badge-orange {
  display: inline-block;
  background: #ffedd5;
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
}

/* ===== BG VARIANTS ===== */
.bg-white {
  background: #fff;
}

.bg-gray {
  background: var(--gray-50);
}

.bg-orange-light {
  background: var(--orange-light);
}

/* ===== TEXT HELPERS ===== */
.text-center {
  text-align: center;
}

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

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 42rem;
  margin: 0.75rem auto 0;
}

/* ===== VENUE MAP ===== */
.map-container {
  background: var(--gray-100);
  border-radius: 0.75rem;
  overflow: hidden;
  height: 24rem;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== SPEAKER DETAIL ===== */
.speaker-detail-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .speaker-detail-grid {
    grid-template-columns: 1fr 2fr;
  }
}

.speaker-detail-img {
  width: 100%;
  border-radius: 0.75rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .12);
}

/* ===== LOADING SPINNER ===== */
.loading {
  text-align: center;
  color: var(--gray-500);
  padding: 2rem;
}

/* ===== MISC ===== */
.divider {
  border: none;
  border-top: 1px solid var(--gray-200);
  margin: 2rem 0;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--orange);
  font-weight: 500;
  transition: color .2s;
  margin-bottom: 2rem;
}

.back-link:hover {
  color: var(--orange-dark);
}

.list-check {
  list-style: none;
}

.list-check li {
  display: flex;
  gap: 0.75rem;
  color: var(--gray-700);
  margin-bottom: 0.75rem;
}

.list-check li::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* This is the below code for moving line in the tickits page.*/

/* ===== TICKER PROMO THEME STYLES ===== */
.promo-ticker-container {
  width: 100%;
  background: var(--orange-light);
  /* Uses your custom #fff7ed variable */
  border-bottom: 1px solid var(--orange-border);
  /* Uses your custom #fed7aa variable */
  overflow: hidden;
  padding: 0.75rem 0;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--orange);
  /* Uses your custom #ea580c variable */
  letter-spacing: 0.025em;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
}

.promo-ticker-wrapper {
  display: flex;
  width: 100%;
}

.promo-ticker-content {
  white-space: nowrap;
  display: inline-block;
  padding-left: 100%;
  /* Begins the marquee track cleanly from the right browser frame */
  animation: ticker-loop 30s linear infinite;
}

@keyframes ticker-loop {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

/* Pauses movement smoothly when a user hovers over the ticker text block */
.promo-ticker-container:hover .promo-ticker-content {
  animation-play-state: paused;
}

/* ===== THANK YOU & COMMUNITY APPRECIATION STYLES ===== */
.global-thanks-bar {
  background: linear-gradient(90deg, #1e40af 0%, #2563eb 35%, #ea580c 70%, #1e40af 100%);
  background-size: 200% 100%;
  animation: barShimmer 8s linear infinite;
  color: #ffffff;
  text-align: center;
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
  position: relative;
  z-index: 51;
  transition: transform 0.2s;
}

@keyframes barShimmer {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}

.global-thanks-bar:hover {
  transform: translateY(-1px);
}

.global-thanks-bar .bar-link {
  text-decoration: underline;
  margin-left: 0.25rem;
  font-weight: 700;
}

/* Thank You Section */
.thankyou-notice-section {
  background: linear-gradient(180deg, #eff6ff 0%, #fff7ed 50%, #ffffff 100%);
  border-bottom: 1px solid #e0f2fe;
  padding: 3.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.thankyou-notice-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: floatGlow 7s ease-in-out infinite alternate;
}

.thankyou-notice-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: floatGlow 9s ease-in-out infinite alternate-reverse;
}

@keyframes floatGlow {
  0% {
    transform: scale(1) translate(0, 0);
    opacity: 0.7;
  }

  100% {
    transform: scale(1.2) translate(20px, -20px);
    opacity: 1;
  }
}

.thankyou-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 1.5rem;
  border: 1px solid #dbeafe;
  box-shadow: 0 20px 40px -15px rgba(37, 99, 235, 0.1), 0 10px 20px -10px rgba(234, 88, 12, 0.08);
  overflow: hidden;
  margin-bottom: 3.5rem;
  animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.thankyou-card-header {
  background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 50%, #ea580c 100%);
  color: #ffffff;
  padding: 2.5rem 2.5rem;
  position: relative;
}

.header-mascot-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

@media (max-width: 768px) {
  .header-mascot-row {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

.thankyou-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.pulse-heart {
  animation: pulseHeart 1.8s infinite ease-in-out;
  display: inline-block;
}

@keyframes pulseHeart {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.28);
  }
}

.thankyou-card-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.thankyou-card-subtitle {
  font-size: 1.05rem;
  color: #e0f2fe;
  font-weight: 500;
}

.thankyou-card-body {
  padding: 2.5rem 2rem;
}

.thankyou-text-content {
  max-width: 900px;
  margin: 0 auto 2.25rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #334155;
  text-align: center;
}

.thankyou-text-content p {
  margin-bottom: 1rem;
  color: #334155;
}

.thankyou-intro {
  font-size: 1.15rem;
  color: #1e293b !important;
}

.thankyou-highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.highlight-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s, box-shadow 0.25s, background 0.25s;
}

.highlight-item:hover {
  transform: translateY(-4px);
  border-color: #93c5fd;
  box-shadow: 0 12px 24px -5px rgba(37, 99, 235, 0.12);
  background: #ffffff;
}

.highlight-icon {
  font-size: 1.75rem;
  background: #eff6ff;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.highlight-item:hover .highlight-icon {
  transform: scale(1.15) rotate(4deg);
}

.highlight-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.highlight-text p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.45;
}

.thankyou-closing-box {
  background: linear-gradient(135deg, #eff6ff 0%, #fff7ed 100%);
  border: 1px dashed #cbd5e1;
  border-radius: 1rem;
  padding: 1.75rem 2rem;
  text-align: center;
  transition: border-color 0.25s;
}

.thankyou-closing-box:hover {
  border-color: #2563eb;
}

.closing-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e3a8a !important;
  margin-bottom: 1rem;
}

.thankyou-signoff p {
  font-size: 0.9rem;
  color: #64748b;
}

.thankyou-signoff strong {
  font-size: 1.05rem;
  color: #0f172a;
}

/* Inspiration Quote Banner */
.community-inspiration-banner {
  background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 60%, #ea580c 100%);
  color: #ffffff;
  border-radius: 1.25rem;
  padding: 1.25rem 2rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: 0 12px 30px -10px rgba(37, 99, 235, 0.25);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.inspiration-icon {
  font-size: 2rem;
  flex-shrink: 0;
  animation: floatIcon 3.5s ease-in-out infinite alternate;
}

@keyframes floatIcon {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  100% {
    transform: translateY(-5px) rotate(6deg);
  }
}

.inspiration-quote {
  font-size: 1.05rem;
  font-weight: 600;
  color: #f8fafc !important;
  font-style: italic;
  line-height: 1.5;
}

.letter-salutation {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.25rem;
  text-align: center;
  font-family: inherit;
}

.signoff-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ea580c;
  background: #fff7ed;
  border: 1px solid #ffedd5;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-top: 0.5rem;
  transition: transform 0.2s;
}

.signoff-badge:hover {
  transform: scale(1.05);
}

/* 5 Pillars Section */
.community-pillars-wrapper {
  margin-top: 2rem;
}

.pillars-header {
  text-align: center;
  margin-bottom: 2.25rem;
}

.pillars-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #2563eb;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  padding: 0.3rem 0.85rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}

.pillars-header h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.pillars-header p {
  color: #64748b;
  font-size: 1rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.pillar-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1.25rem;
  padding: 2rem 1.5rem 1.75rem;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.pillar-card:nth-child(1) {
  animation-delay: 0.1s;
}

.pillar-card:nth-child(2) {
  animation-delay: 0.2s;
}

.pillar-card:nth-child(3) {
  animation-delay: 0.3s;
}

.pillar-card:nth-child(4) {
  animation-delay: 0.4s;
}

.pillar-card:nth-child(5) {
  animation-delay: 0.5s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pillar-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #2563eb;
  background: #eff6ff;
  padding: 0.15rem 0.5rem;
  border-radius: 9999px;
  border: 1px solid #dbeafe;
  transition: all 0.25s;
}

.pillar-card:hover .pillar-badge {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.25);
  transform: scale(1.05);
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #ea580c);
  opacity: 0;
  transition: opacity 0.25s;
}

.pillar-card:hover {
  transform: translateY(-6px);
  border-color: #bfdbfe;
  box-shadow: 0 16px 32px -10px rgba(37, 99, 235, 0.18);
}

.pillar-card:hover::before {
  opacity: 1;
}

.pillar-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: inline-block;
  transition: transform 0.25s ease;
}

.pillar-card:hover .pillar-icon {
  transform: scale(1.18) rotate(6deg);
}

.pillar-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

/* ===== CHARACTER MASCOT ANIMATION STYLES ===== */
.mascot-thankyou-banner {
  background: linear-gradient(135deg, #ffffff 0%, #eff6ff 60%, #fff7ed 100%);
  border: 1.5px solid #dbeafe;
  border-radius: 1.5rem;
  padding: 1.75rem 2rem;
  margin-bottom: 2.25rem;
  display: flex;
  align-items: center;
  gap: 1.75rem;
  box-shadow: 0 15px 35px -10px rgba(37, 99, 235, 0.12);
  position: relative;
  overflow: hidden;
}

.mascot-character-wrapper {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.animated-cloud-mascot {
  animation: mascotFloat 3.2s ease-in-out infinite alternate;
  filter: drop-shadow(0 12px 20px rgba(37, 99, 235, 0.18));
}

@keyframes mascotFloat {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }
}

.mascot-shadow {
  animation: shadowScale 3.2s ease-in-out infinite alternate;
  transform-origin: center;
}

@keyframes shadowScale {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(0.82);
    opacity: 0.35;
  }
}

.mascot-waving-arm {
  transform-origin: 155px 108px;
  animation: mascotWaveArm 1.4s ease-in-out infinite alternate;
}

@keyframes mascotWaveArm {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(-28deg);
  }

  100% {
    transform: rotate(12deg);
  }
}

.mascot-eye-left,
.mascot-eye-right {
  animation: mascotBlink 4.2s infinite;
  transform-origin: center;
}

@keyframes mascotBlink {

  0%,
  94%,
  98%,
  100% {
    transform: scaleY(1);
  }

  96% {
    transform: scaleY(0.1);
  }
}

.mascot-speech-bubble {
  flex: 1;
}

.speech-tag {
  display: inline-block;
  font-size: 0.725rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #ea580c;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 0.5rem;
}

.mascot-speech-bubble h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 0.35rem;
}

.mascot-speech-bubble p {
  font-size: 0.975rem;
  color: #475569;
}

/* Character Avatars on Pillar Cards */
.pillar-character-box {
  font-size: 2.75rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4.25rem;
}

.animated-avatar {
  display: inline-block;
  transition: transform 0.3s ease;
}

.avatar-bounce {
  animation: avatarBounce 2s ease-in-out infinite alternate;
}

@keyframes avatarBounce {
  0% {
    transform: translateY(0) scale(1);
  }

  100% {
    transform: translateY(-8px) scale(1.06);
  }
}

.avatar-wave {
  animation: avatarWave 1.8s ease-in-out infinite alternate;
}

@keyframes avatarWave {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(12deg) scale(1.08);
  }
}

.avatar-star {
  animation: avatarPulse 2.2s ease-in-out infinite alternate;
}

@keyframes avatarPulse {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.15);
  }
}

.avatar-heart {
  animation: avatarHeart 1.6s ease-in-out infinite alternate;
}

@keyframes avatarHeart {
  0% {
    transform: scale(1) translateY(0);
  }

  100% {
    transform: scale(1.12) translateY(-4px);
  }
}

.avatar-highfive {
  animation: avatarHighFive 2.4s ease-in-out infinite alternate;
}

@keyframes avatarHighFive {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(4px) rotate(-6deg);
  }
}

.pillar-card:hover .animated-avatar {
  transform: scale(1.25) rotate(8deg) !important;
}

/* ===== RESPONSIVE MEDIA QUERIES FOR THANK YOU & MASCOT ===== */
@media (max-width: 768px) {
  .mascot-thankyou-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1.25rem;
    gap: 1rem;
  }

  .animated-cloud-mascot {
    width: 130px;
    height: 130px;
  }

  .community-inspiration-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
    gap: 0.75rem;
  }

  .thankyou-card-header {
    padding: 2rem 1.25rem;
  }

  .thankyou-card-body {
    padding: 1.75rem 1.25rem;
  }

  .thankyou-text-content {
    font-size: 1rem;
    line-height: 1.65;
  }

  .thankyou-closing-box {
    padding: 1.25rem 1rem;
  }

  .pillars-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
  }

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

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

  .thankyou-highlights-grid {
    grid-template-columns: 1fr;
  }

  .global-thanks-bar {
    font-size: 0.825rem;
    padding: 0.5rem 0.75rem;
  }
}

/* Modal Overlay Styling Update */

/* ===== MODAL OVERLAY STYLES ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.postponed-modal-container {
  background: #ffffff;
  border-radius: 1.5rem;
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
  position: relative;
  transform: scale(0.94) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  padding: 2rem;
  color: #1e293b;
}

.modal-overlay.active .postponed-modal-container {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #e2e8f0;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 10;
  line-height: 1;
}

.modal-close-btn:hover {
  background: #2563eb;
  border-color: #2563eb;
  color: #ffffff;
  transform: rotate(90deg);
}

.modal-notice-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: #dbeafe;
  color: #1e40af;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
  width: fit-content;
}

.modal-notice-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.modal-greeting {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.modal-text-paragraph {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.65;
  margin-bottom: 0.85rem;
}

.modal-subtle-note {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #2563eb;
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  margin: 1rem 0 1.25rem;
}

.modal-subtle-note .note-heading {
  color: #1e40af;
  font-size: 0.9rem;
  margin-bottom: 0.375rem;
}

.modal-subtle-note ul {
  padding-left: 1.2rem;
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.55;
}

.modal-subtle-note li+li {
  margin-top: 0.35rem;
}

.modal-signoff {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.5;
}

.modal-signoff .author {
  color: #0f172a;
  margin-top: 0.25rem;
}

/* ===== OFFICIAL AWS LIGHT THEME 2-COLUMN HERO SECTION ===== */
.hero-tech-section {
  background: linear-gradient(180deg, #fff7ed 0%, #ffffff 60%, #f8fafc 100%);
  color: #0f172a;
  padding: 3.5rem 0 4rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #fed7aa;
}

.hero-bg-aurora {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.12) 0%, rgba(37, 99, 235, 0.05) 50%, transparent 80%);
  pointer-events: none;
  filter: blur(40px);
}

.hero-grid-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.75rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .hero-grid-container {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.25rem;
  }
}

.hero-left-content {
  text-align: left;
}

.hero-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffedd5;
  border: 1px solid #fdba74;
  color: #c2410c;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 1.1rem;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px rgba(234, 88, 12, 0.08);
}

.hero-main-title {
  font-size: 2.25rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.2;
  margin: 0 0 1rem 0;
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .hero-main-title {
    font-size: 2.85rem;
  }
}

.hero-highlight-title {
  display: block;
  color: #ea580c;
  font-size: 2rem;
  font-weight: 900;
  margin-top: 0.25rem;
}

@media (min-width: 768px) {
  .hero-highlight-title {
    font-size: 2.35rem;
  }
}

.hero-lead-description {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1.75rem;
  max-width: 580px;
}

.hero-lead-description strong {
  color: #0f172a;
}

/* EVENT META STRIP */
.hero-event-meta-strip {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: #ffffff;
  border: 1.5px solid #fed7aa;
  border-radius: 1rem;
  padding: 0.9rem 1.4rem;
  margin-bottom: 1.75rem;
  box-shadow: 0 4px 15px rgba(234, 88, 12, 0.06);
  flex-wrap: wrap;
}

.meta-strip-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.meta-strip-icon {
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #fff7ed;
  border: 1px solid #ffedd5;
  border-radius: 0.6rem;
}

.meta-strip-text {
  display: flex;
  flex-direction: column;
}

.meta-strip-label {
  font-size: 0.7rem;
  font-weight: 800;
  color: #ea580c;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.meta-strip-val {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
}

.meta-strip-divider {
  width: 1px;
  height: 34px;
  background: #cbd5e1;
  display: none;
}

@media (min-width: 576px) {
  .meta-strip-divider {
    display: block;
  }
}

/* CTA BUTTONS */
.hero-actions-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 1rem;
  padding: 0.9rem 2.15rem;
  border-radius: 0.75rem;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.35);
  transition: all 0.25s ease;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(234, 88, 12, 0.5);
  color: #ffffff;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #ffffff;
  color: #0f172a;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 1.85rem;
  border-radius: 0.75rem;
  text-decoration: none;
  border: 1.5px solid #cbd5e1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
}

.btn-hero-secondary:hover {
  background: #f8fafc;
  border-color: #94a3b8;
  transform: translateY(-3px);
  color: #0f172a;
}

/* TRUST BAR */
.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.15rem;
  border-top: 1px solid #e2e8f0;
  flex-wrap: wrap;
}

.trust-stat-item {
  display: flex;
  flex-direction: column;
}

.trust-stat-item .stat-num {
  font-size: 1.35rem;
  font-weight: 900;
  color: #ea580c;
  line-height: 1;
}

.trust-stat-item .stat-lbl {
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  margin-top: 0.2rem;
}

.trust-stat-divider {
  width: 1px;
  height: 26px;
  background: #cbd5e1;
}

/* RIGHT COLUMN TECH WIDGET */
.hero-right-widget-col {
  position: relative;
}

.hero-tech-card {
  background: #ffffff;
  border: 1.5px solid #fed7aa;
  border-top: 4px solid #ea580c;
  border-radius: 1.5rem;
  padding: 2rem 1.75rem;
  box-shadow: 0 15px 35px rgba(234, 88, 12, 0.09);
}

.card-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  color: #ea580c;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #ea580c;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(234, 88, 12, 0.6);
}

/* HERO COUNTDOWN DISPLAY */
.hero-countdown-wrapper {
  margin-bottom: 1.5rem;
}

.hero-countdown-wrapper .countdown {
  display: flex;
  gap: 0.65rem;
  justify-content: center;
}

.hero-countdown-wrapper .countdown-box {
  background: #fff7ed;
  border: 1.5px solid #fed7aa;
  border-radius: 0.75rem;
  padding: 0.75rem 0.85rem;
  min-width: 68px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(234, 88, 12, 0.06);
}

.hero-countdown-wrapper .countdown-box .num {
  font-size: 1.85rem;
  font-weight: 900;
  color: #ea580c;
  line-height: 1;
}

.hero-countdown-wrapper .countdown-box .lbl {
  font-size: 0.65rem;
  font-weight: 800;
  color: #64748b;
  text-transform: uppercase;
  margin-top: 0.3rem;
  letter-spacing: 0.04em;
}

.card-highlights-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.highlight-info-box {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 0.75rem 0.9rem;
  text-align: left;
}

.highlight-info-box .info-icon {
  font-size: 1.3rem;
  line-height: 1;
  margin-top: 0.1rem;
}

.highlight-info-box .info-details strong {
  display: block;
  font-size: 0.9rem;
  color: #0f172a;
}

.highlight-info-box .info-details p {
  font-size: 0.8rem;
  color: #64748b;
  margin: 0.15rem 0 0 0;
}

.floating-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
}

.tech-tag {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: #334155;
}

.tech-tag.tag-aws {
  background: #ffedd5;
  border-color: #fdba74;
  color: #c2410c;
}

.tech-tag.tag-devops {
  background: #dbeafe;
  border-color: #93c5fd;
  color: #1e40af;
}

/* Primary Highlight Styling */
.highlight-item.primary-date-highlight {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  border: 2px solid #ea580c;
  box-shadow: 0 4px 15px rgba(234, 88, 12, 0.15);
  transform: scale(1.02);
}

.highlight-item.primary-date-highlight h4 {
  color: #c2410c;
  font-size: 1.1rem;
}

.highlight-item.primary-date-highlight p {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ea580c;
}