:root {
  --primary-brand: #302D63; 
  --indigo-dark: #1b1b3a;
  --indigo-bright: #302D63;
  --white-ice: #F4F7FA;
  --peach: #ff9f89;
  --white: #ffffff;
  --gray: #e0e0e0;
  --bg-color: #302D63; 
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--indigo-dark);
  color: var(--white);
  line-height: 1.4;
  overflow-x: hidden;
}

/* Text Utilities */
.text-peach {
  color: var(--peach) !important;
}

/* Section Contrast Utilities */
.section-white-ice {
  background-color: var(--white-ice);
  color: var(--indigo-dark);
}

.section-white-ice h2, 
.section-white-ice h3, 
.section-white-ice p,
.section-white-ice .outline-text {
  color: var(--indigo-dark);
}

.section-white-ice .outline-text {
  -webkit-text-stroke: 2px var(--indigo-dark);
}

.section-white-ice .glow-dot {
  background: var(--indigo-dark);
  box-shadow: 0 0 20px rgba(48, 45, 99, 0.3);
}

h1, h2, h3, .logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
}

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

/* Navbar Style Ref 1 */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2.5rem 0;
  z-index: 100;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: white;
    margin: 5px 0;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }
}

@media (max-width: 768px) {
  .navbar { padding: 1.5rem 0; }
  .navbar .container {
    flex-direction: column;
    text-align: center;
  }
  .logo-img { height: 50px; }
  .nav-links { display: none; }
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 65px; 
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
  letter-spacing: 1px;
  font-weight: 700;
  transition: var(--transition);
}

.nav-links a:hover { color: #fff; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.btn-icon {
  color: #fff;
  opacity: 0.7;
  transition: var(--transition);
}

.btn-icon:hover { opacity: 1; }

.btn-primary-square {
  background: var(--primary-brand);
  padding: 0.8rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero Section Ref 1 */
.hero-ref {
  position: relative;
  min-height: 100vh;
  padding: 12rem 0 6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--primary-brand); /* The blue wash */
}

.hero-bg-overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--indigo-dark));
  z-index: 1;
}

.hero-bg-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply; /* Key for the "blue wash" look */
  opacity: 0.6;
}

/* Metadata Row */
.hero-header-info {
  display: flex;
  gap: 4rem;
  margin-bottom: 4rem;
}

@media (max-width: 768px) {
  .hero-header-info {
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
  }
}

.info-block {
  display: flex;
  flex-direction: column;
}

.info-block .label {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
}

@media (max-width: 480px) {
  .info-block .label { font-size: 1.2rem; }
  .info-block .value { font-size: 1rem; }
}

.info-block .value {
  font-size: 1.2rem;
  opacity: 0.8;
}

/* Massive Title */
.main-title {
  font-size: clamp(4rem, 15vw, 12rem);
  line-height: 0.8;
  letter-spacing: -0.02em;
  margin-bottom: 6rem;
}

.outline-text {
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
}

/* Middle Row */
.hero-middle-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8rem;
}

.speakers-preview {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.avatar-group {
  display: flex;
}

.avatar-group img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--primary-brand);
  margin-right: -15px;
  object-fit: cover;
}

.preview-text {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  line-height: 1.1;
}

.pillars-list {
    font-weight: 800;
    line-height: 1.4;
    font-size: 1rem;
    opacity: 0.9;
}

.arrow-diagonal {
  font-size: 1.5vw;
  font-weight: 300;
}

.hero-description {
  max-width: 450px;
}

.hero-description h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

@media (max-width: 768px) {
  .hero-description h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  .hero-description p {
    font-size: 1rem;
  }
}

.hero-description p {
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.6;
}

/* Footer Row */
.hero-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 3rem;
}

.contact-strip {
  display: flex;
  gap: 2rem;
  font-weight: 700;
  font-size: 1.1rem;
}

.btn-buy-tickets {
  border: 1px solid var(--white);
  padding: 1rem 2.5rem;
  border-radius: 4px;
  text-decoration: none;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  text-transform: lowercase;
  font-size: 1.2rem;
  transition: var(--transition);
}

.btn-buy-tickets:hover {
  background: var(--white);
  color: var(--primary-brand);
}

/* Hero Countdown */
.hero-countdown {
  display: flex;
  gap: 1.5rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.2);
}

.count-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.count-item span {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
}

.count-item small {
  font-size: 0.6rem;
  opacity: 0.6;
  font-weight: 700;
}

/* Floating Timer Widget (Bottom Right) */
.floating-timer {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--peach);
  backdrop-filter: blur(15px);
  padding: 1.2rem 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 40px rgba(255, 159, 137, 0.4);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: var(--transition);
  color: var(--indigo-dark);
}

.floating-timer:hover {
  transform: translateY(-5px) scale(1.05);
}

.f-timer-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.65rem;
  letter-spacing: 1px;
  color: var(--indigo-dark);
  opacity: 0.8;
  text-align: center;
}

.f-countdown {
  display: flex;
  gap: 1.2rem;
}

.f-countdown .count-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.f-countdown .count-item span {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
}

.f-countdown .count-item small {
  font-size: 0.5rem;
  text-transform: uppercase;
  font-weight: 800;
  margin-top: 0.3rem;
  opacity: 0.7;
}

/* Reverting main adjust */
main {
  padding-top: 0;
}

.desc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
    font-size: 1.15rem;
    color: #Ececec;
    opacity: 0.9;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .desc-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Marquee Section */
.marquee-section {
  background-color: var(--peach);
  padding: 4rem 0;
  overflow: hidden;
  border-top: none;
  border-bottom: none;
  position: relative;
  z-index: 2;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  animation: scroll-marquee 30s linear infinite;
  white-space: nowrap;
  will-change: transform;
}

.marquee-content span {
  font-family: 'Outfit', sans-serif;
  font-size: 7vw;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--primary-brand);
}

.glow-dot {
  width: 30px;
  height: 30px;
  background: var(--primary-brand);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(48, 45, 99, 0.3);
  flex-shrink: 0;
}

/* Partners Wall Dynamic */
.partners-section {
    padding: 10rem 0;
    overflow: hidden;
}

.partners-wall {
    display: flex;
    flex-direction: column;
    gap: 8rem;
}

.wall-row {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.partners-ticker {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.ticker-track {
    display: flex;
    gap: 6rem;
    align-items: center;
    width: max-content;
    animation: ticker-scroll 40s linear infinite;
    will-change: transform;
}

.ticker-track span {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    opacity: 0.1;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: -2px;
    transition: opacity 0.4s ease;
}

.ticker-track span:hover {
    opacity: 1;
    color: var(--peach);
}

.ticker-track img {
    height: 60px;
    filter: brightness(0) invert(1);
    opacity: 0.3;
    transition: opacity 0.4s ease;
}

.ticker-track img:hover {
    opacity: 1;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.wall-grid-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .partners-section { padding: 3rem 0 !important; }
    .partners-wall { gap: 2rem !important; } /* Reduced from 8rem */
    .wall-grid-main {
        grid-template-columns: 1fr;
        gap: 1.5rem !important;
        text-align: left;
    }
    .cat-label { font-size: 0.65rem !important; opacity: 0.6; letter-spacing: 1px; text-transform: uppercase; font-weight: 800; display: block; margin-bottom: 0.5rem; }
    .main-sponsor-box { text-align: left !important; margin-top: 0.5rem !important; }
    .main-sponsor-logo { width: 100px !important; height: auto; max-width: 100%; display: block; margin-left: 0; }
    .m-item { font-size: 1.1rem !important; margin-bottom: 0.2rem; }
    .media-list { gap: 0.6rem !important; margin-top: 0.5rem !important; }
    .partners-ticker { margin-bottom: 0 !important; padding: 1.5rem 0 !important; }
    .ticker-track { gap: 3rem !important; }
    .ticker-track img { height: 35px !important; }
}

.media-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.m-item {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    opacity: 0.8;
    line-height: 1;
    letter-spacing: -1px;
}

.main-sponsor-box {
    margin-top: 2rem;
    text-align: left;
}

.main-sponsor-logo {
    max-width: 350px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: all 0.4s ease;
}

.main-sponsor-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

@keyframes scroll-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .slogan-section {
    padding: 4rem 0 !important;
    text-align: left !important;
  }
  .slogan-section .container {
    text-align: left !important;
  }
  .slogan {
    text-align: left !important;
    font-size: 2rem !important;
  }
  .founder-message-box {
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
  }
  .founder-message-box p {
    font-size: 1.1rem !important;
    text-align: left !important;
  }
  .signature-line {
    text-align: left !important;
    align-items: flex-start !important;
    display: flex;
    flex-direction: column;
  }
  .signature-line div {
    margin: 1rem 0 !important;
  }
}

/* Speakers Ref Grid */
.speakers-ref {
  background-color: var(--primary-brand);
  padding: 8rem 0;
}

@media (max-width: 768px) {
  .speakers-ref { padding: 4rem 0 !important; }
  .faq-section { padding: 4rem 0 !important; }
  .faq-grid { gap: 1rem !important; }
  .faq-item summary { padding: 1.5rem 0 !important; font-size: 1.1rem !important; }
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.speaker-ref-card {
  display: flex;
  flex-direction: column;
  padding: 3rem 2rem;
  border-left: 1px solid rgba(48, 45, 99, 0.1);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
  background: transparent;
}

.speaker-ref-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-brand);
  transform: translateY(101%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}

.speaker-ref-card:hover {
  border-left-color: var(--peach);
  transform: translateY(-8px);
}

.speaker-ref-card:hover::before {
  transform: translateY(0);
}

.speaker-ref-card:hover .role,
.speaker-ref-card:hover .name-row h3 {
  color: var(--white) !important;
  opacity: 1 !important;
}

.info-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  flex-grow: 1;
  z-index: 2;
  gap: 0.5rem;
}

.role {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--primary-brand);
  opacity: 0.5;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  min-height: 4rem;
  display: flex;
  align-items: flex-start;
  transition: color 0.4s ease, opacity 0.4s ease;
}

.name-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-grow: 1;
}

.name-row h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--primary-brand);
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0;
  min-height: 3.5rem;
  display: flex;
  align-items: flex-start;
  transition: color 0.4s ease, transform 0.4s ease;
}

.speaker-ref-card:hover h3 {
  transform: translateX(10px);
}

.arrow-diagonal {
  font-size: 1.5rem;
  opacity: 0.8;
  transition: transform 0.4s ease, color 0.4s ease;
  color: var(--primary-brand);
}

.speaker-ref-card:hover .arrow-diagonal {
  transform: translate(12px, -12px);
  color: var(--peach) !important;
}

#open-sunset-modal {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#open-sunset-modal:hover {
    background: var(--peach) !important;
    color: var(--indigo-dark) !important;
    transform: scale(1.05);
}
.locked-item {
    position: relative;
    overflow: hidden;
    min-height: 220px;
    border-radius: 20px;
}

.locked-item .content {
    filter: blur(12px);
    pointer-events: none;
    user-select: none;
    transition: filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.locked-item:hover .content {
    filter: blur(6px); /* Peeking effect */
}

.locked-item.unlocked .content {
    filter: blur(0) !important;
    pointer-events: auto;
    user-select: auto;
}

.locked-item.unlocked .lock-overlay {
    opacity: 0;
    pointer-events: none;
    transform: scale(1.1);
}

.lock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(48, 45, 99, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10;
    border-radius: 20px;
    gap: 1.2rem;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 159, 137, 0.1);
}

.lock-icon {
    font-style: normal;
    font-size: 3.5rem;
    animation: lock-pulse 2.5s infinite ease-in-out;
}

@keyframes lock-pulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0px var(--peach)); }
    50% { transform: scale(1.15); filter: drop-shadow(0 0 20px var(--peach)); }
}

.lock-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--white);
    opacity: 0.8;
}

.btn-unlock {
    margin-top: 1rem;
    font-size: 0.75rem;
    letter-spacing: 2px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--peach) !important;
    position: relative;
    overflow: hidden;
}

.btn-unlock::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(20deg);
    animation: btn-shimmer 3s infinite;
}

@keyframes btn-shimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

.slogan {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--gray);
  margin-bottom: 5rem;
}



/* Agenda Section */
.agenda-section {
  padding: 10rem 0;
  background-color: var(--indigo-bright);
}

.section-title-box {
  margin-bottom: 6rem;
}

.section-title-box h2 {
  font-size: clamp(2.5rem, 10vw, 6rem);
  line-height: 1;
}

.timeline {
  max-width: 800px;
  margin-left: 4rem;
  position: relative;
}

@media (max-width: 768px) {
  .timeline {
    margin-left: 1rem;
  }
}

.timeline::before {
  content: '';
  position: absolute;
  left: 100px;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(255,255,255,0.1);
}

.timeline-item {
  display: flex;
  gap: 4rem;
  margin-bottom: 5rem;
  position: relative;
}

@media (max-width: 768px) {
  .timeline-item {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
    padding-left: 2rem;
  }
}

.timeline-item .time {
  width: 60px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--peach);
}

.timeline-item .dot {
  width: 12px;
  height: 12px;
  background: var(--peach);
  border-radius: 50%;
  margin-top: 0.5rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 15px var(--peach);
}

.timeline-item .content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .timeline-item .content h3 {
    font-size: 1.2rem;
  }
}

.timeline-item .content p {
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.agenda-subs {
    list-style: none;
    padding-left: 0;
    margin-top: 0.5rem;
}

.agenda-subs li {
    font-size: 0.95rem;
    opacity: 0.8;
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.3rem;
}

.agenda-subs li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--peach);
    font-weight: bold;
}

.agenda-subs li small {
    display: inline-block;
    opacity: 0.6;
    margin-left: 0.5rem;
}

/* FAQ Section */
.faq-section {
  padding: 10rem 0;
  background-color: var(--indigo-dark);
}

.main-title-small {
  font-size: 6rem;
  margin-bottom: 4rem;
}

.faq-grid {
  max-width: 900px;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.faq-item summary {
  padding: 2.5rem 0;
  list-style: none;
  font-size: 1.8rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-answer {
  padding-bottom: 2.5rem;
  opacity: 0.8;
  font-size: 1.1rem;
  max-width: 700px;
}

.faq-item .plus {
  color: var(--peach);
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.faq-item[open] .plus {
  transform: rotate(45deg);
}

.register-section {
  padding-bottom: 8rem;
  background-color: var(--indigo-dark);
}

.register-box-refined {
  padding: 6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.reg-cta-text h2 {
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.reg-cta-text p {
  font-size: 1.1rem;
  opacity: 0.6;
}

.reg-form-minimal {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.reg-form-minimal input {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--white);
  padding: 1rem 0;
  width: 300px;
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
  outline: none;
}

.btn-minimal {
  background: var(--peach);
  color: var(--indigo-dark);
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 4px;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
}

.btn-minimal:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 159, 137, 0.4);
}

/* Footer Faizur Style */
.footer-faizur {
  padding: 4rem 2rem 2rem;
  background-color: var(--indigo-dark); /* The section background */
}

.footer-rounded-box {
  background: var(--white-ice);
  border-radius: 60px;
  padding: 6rem;
  color: var(--indigo-dark);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.footer-columns {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 8rem;
  position: relative;
  z-index: 2;
}

.f-tagline {
  font-size: 1.2rem;
  font-weight: 700;
  max-width: 300px;
  margin-bottom: 3rem;
  line-height: 1.2;
}

.footer-logo .logo-img {
  height: 50px;
  filter: none; /* Keep original color on white-ice */
}

.f-col h4 {
  font-size: 0.7rem;
  opacity: 0.4;
  margin-bottom: 2rem;
  letter-spacing: 2px;
}

.f-col a {
  display: block;
  text-decoration: none;
  color: inherit;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.8rem;
  transition: var(--transition);
}

.f-col a:hover {
  color: var(--peach);
  transform: translateX(5px);
}

.f-direct-cta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cta-label {
  font-size: 0.8rem;
  opacity: 0.5;
}

.cta-link {
  font-size: 2rem !important;
  color: var(--primary-brand) !important;
  text-decoration: none;
  font-weight: 800 !important;
}

.massive-footer-text {
  font-family: 'Outfit', sans-serif;
  font-size: 15vw;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.05);
  line-height: 0.7;
  position: absolute;
  bottom: -2vw;
  left: -1vw;
  width: 100%;
  pointer-events: none;
  z-index: 1;
  white-space: nowrap;
}

.footer-bottom-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.05);
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.6;
  position: relative;
  z-index: 2;
}

.legal-links { display: flex; gap: 1rem; }
.legal-links a { text-decoration: none; color: inherit; }
.sep { opacity: 0.3; }
.status-info { display: flex; gap: 2rem; }

/* Partners Section */
.partners-section {
  padding: 6rem 0;
  background-color: var(--indigo-dark);
}

.partners-title {
  font-size: 1.2rem;
  letter-spacing: 3px;
  opacity: 0.5;
  margin-bottom: 4rem;
  text-align: center;
}

.partners-marquee {
  width: 100%;
  overflow: hidden;
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.partners-track {
  display: flex;
  gap: 8rem;
  width: max-content;
  align-items: center;
  animation: partners-scroll 40s linear infinite;
  will-change: transform;
}

.partner-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: var(--transition);
  cursor: pointer;
}

.partner-logo img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1); /* Force white logos on purple */
}

.partner-logo:hover {
  opacity: 1;
  transform: scale(1.1);
}

.partner-logo:hover img {
    filter: none; /* Restore original color on hover if desired, or keep white */
}

@keyframes partners-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 1200px) {
  .grid-container { grid-template-columns: repeat(3, 1fr); }
  .container { padding: 0 2rem; }
  .footer-columns { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 992px) {
  .hero-header-info { gap: 2rem; }
  .main-title { font-size: clamp(3.5rem, 12vw, 8rem); }
  .hero-middle-row { flex-direction: column; gap: 3rem; }
  .grid-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Prevent horizontal scroll */
  html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
  }
  
  .navbar { 
    position: absolute; /* Back to absolute but with row layout */
    top: 0;
    width: 100%;
    z-index: 1000;
  }
  
  .navbar .container { 
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
  }
  
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--indigo-dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    z-index: 1000;
  }
  
  .nav-links.active {
    display: flex;
  }

  .nav-actions { display: none; } 
  .desktop-only-btn { display: none !important; }

  /* Floating Mobile Button */
  .mobile-floating-btn {
      display: none !important;
      position: fixed;
      bottom: 1.5rem;
      left: 1.5rem;
      right: 1.5rem;
      z-index: 9999;
      background: var(--peach);
      color: var(--indigo-dark);
      text-transform: uppercase;
      font-weight: 900;
      letter-spacing: 2px;
      box-shadow: 0 10px 40px rgba(255, 159, 137, 0.4);
      padding: 1.2rem;
      border-radius: 12px;
      font-size: 1rem;
      text-align: center;
      border: none;
      cursor: pointer;
  }
  
  .hero-ref { padding-top: 10rem; min-height: auto; }
  .main-title { font-size: 2.8rem !important; margin-bottom: 2rem; text-align: left; }
  .hero-header-info { 
    flex-direction: column; 
    gap: 1.5rem; 
    text-align: left;
    align-items: flex-start;
  }
  
  .hero-middle-row { text-align: left; align-items: flex-start; }
  .pillars-list { font-size: 0.9rem; text-align: left; }
  
  .hero-footer-row { flex-direction: column; align-items: flex-start; gap: 2rem; text-align: left; }
  .contact-strip { flex-direction: column; gap: 0.5rem; font-size: 0.85rem; text-align: left; }
  .btn-buy-tickets { width: auto; text-align: center; }
  
  .timeline::before { left: 0; }
  
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: left;
  }
  
  .footer-bottom-strip {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 1rem !important;
    padding-bottom: 5rem !important; /* Extra padding for floating button */
  }
  .legal-links, .status-info { width: 100%; justify-content: flex-start; }
  .f-col-brand { align-items: flex-start; display: flex; flex-direction: column; }
  .f-tagline { max-width: none; text-align: left; }
  
  .footer-rounded-box {
    padding: 3rem 1.5rem;
    border-radius: 20px;
  }

  .massive-footer-text {
    font-size: 18vw;
    bottom: -1vw;
  }

  .register-box-refined {
    flex-direction: column;
    padding: 3rem 1.5rem;
    text-align: left;
    gap: 2.5rem;
  }

  .reg-cta-text h2 {
    font-size: 1.8rem;
    text-align: left;
  }

  .reg-form-minimal {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
    align-items: flex-start;
  }

  .reg-form-minimal input {
    width: 100% !important;
    max-width: none !important;
  }
  
  .ticker-track img { height: 35px; }
  .ticker-track { gap: 2rem; }

  .section-title-box { text-align: left; }
  .main-title-small { font-size: 3rem; text-align: left; }
}

@media (max-width: 480px) {
  .floating-timer {
    display: none !important;
  }
  
  .main-title { font-size: 2.2rem !important; text-align: left; }
  .grid-container { grid-template-columns: 1fr; }
  .speaker-ref-card { padding: 1.5rem 1rem; }
}

/* Modal Glassmorphism Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(48, 45, 99, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.modal-content {
  background: rgba(244, 247, 250, 0.98); /* White Ice almost opaque */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 4rem;
  border-radius: 60px; /* Matching footer style */
  max-width: 550px;
  width: 90%;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  box-shadow: 0 40px 80px rgba(0,0,0,0.15);
  color: var(--indigo-dark);
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  background: none;
  border: none;
  color: var(--indigo-dark);
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.3;
  transition: var(--transition);
}

.modal-close:hover { opacity: 1; transform: rotate(90deg); }

.modal-tag {
  color: var(--peach);
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 0.8rem;
  margin-bottom: 1rem;
  display: block;
}

.modal-inner h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1;
  color: var(--indigo-dark) !important;
}

.modal-inner p {
  opacity: 0.6;
  margin-bottom: 2.5rem;
  font-size: 1rem;
  color: var(--indigo-dark);
}

.modal-inner .reg-form-minimal {
  flex-direction: column;
  gap: 1.2rem;
  width: 100%;
}

.modal-inner .reg-form-minimal input {
  border-bottom: 1px solid rgba(0,0,0,0.2);
  color: var(--indigo-dark);
  width: 100%;
}

.modal-inner .btn-minimal {
  width: 100%;
  margin-top: 1rem;
}

/* Section Contrast Utilities (Top Priority) */
.section-white-ice {
  background-color: var(--white-ice) !important;
  color: var(--indigo-dark) !important;
}

.section-white-ice h2, 
.section-white-ice h3, 
.section-white-ice p,
.section-white-ice .outline-text {
  color: var(--indigo-dark) !important;
}

.section-white-ice .outline-text {
  -webkit-text-stroke: 2px var(--indigo-dark) !important;
}

/* Toast Notification System */
.toast-container {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    pointer-events: none;
}

.toast {
    background: var(--white-ice);
    color: var(--indigo-dark);
    padding: 1rem 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    pointer-events: auto;
    animation: toast-in 0.5s cubic-bezier(0.16, 1, 0.3, 1), toast-out 0.5s cubic-bezier(0.16, 1, 0.3, 1) 4.5s forwards;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.toast::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #4caf50;
    color: white;
    border-radius: 50%;
    font-size: 0.7rem;
}

@keyframes toast-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes toast-out {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-20px); }
}

@media (max-width: 768px) {
    .toast-container {
        width: 90%;
        bottom: 5rem;
    }
}

/* ESGOTADO / SOLD OUT STYLES */
.sold-out-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.sold-out-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
    background: #ff3b30;
    color: #fff;
    padding: 0.5rem 3rem;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 3px;
    z-index: 10;
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(255, 59, 48, 0.4);
    pointer-events: none;
    border: 2px solid #fff;
    text-transform: uppercase;
}

.disabled-form {
    opacity: 0.3;
    pointer-events: none;
    filter: grayscale(1);
}

.disabled-btn {
    background: rgba(255,255,255,0.1) !important;
    color: rgba(255,255,255,0.2) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    cursor: not-allowed !important;
    box-shadow: none !important;
    transform: none !important;
}

.sold-out-badge {
    position: absolute;
    top: -15px;
    right: -10px;
    background: #ff3b30;
    color: #fff;
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 900;
    border-radius: 50px;
    z-index: 11;
    box-shadow: 0 5px 15px rgba(255, 59, 48, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* HERO DYNAMIC SOLD OUT ANIMATION */
.hero-sold-out-anim {
    position: relative;
    display: inline-block;
}

.original-title {
    position: relative;
    z-index: 1;
    animation: fade-out-erased 1.5s forwards 3s; /* Starts erasing after 3s */
}

.sold-out-title {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    color: #ff3b30 !important;
    -webkit-text-stroke: 0 !important;
    opacity: 0;
    transform: scale(0.8);
    filter: blur(10px);
    animation: reveal-sold-out 0.8s forwards 4.2s;
    font-size: 8vw !important; /* Make it massive */
    line-height: 1;
    font-weight: 900;
}

.eraser-line {
    position: absolute;
    top: -10%;
    left: -5%;
    width: 60px;
    height: 120%;
    background: #fff;
    box-shadow: 0 0 60px 30px #fff;
    z-index: 10;
    opacity: 0;
    transform: skewX(-15deg);
    animation: eraser-move 1.5s ease-in-out forwards 3s;
    pointer-events: none;
}

@keyframes eraser-move {
    0% { left: -10%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { left: 110%; opacity: 0; }
}

@keyframes fade-out-erased {
    0% { clip-path: inset(0 0 0 0); }
    100% { clip-path: inset(0 0 0 100%); }
}

@keyframes reveal-sold-out {
    0% { opacity: 0; transform: scale(0.5) translateY(40px); filter: blur(20px); }
    100% { opacity: 1; transform: scale(1) translateY(0); filter: blur(0); }
}

@media (max-width: 768px) {
    .sold-out-title { font-size: 3.5rem !important; top: 10px; }
    .original-title { min-height: 120px; }
}
