/* ═══════════════════════════════════════════════════════════════
   CELESTECON 2026  —  styles.css
   Color palette:
     --black:  #050505
     --white:  #f5f5f5
     --gold:   #b28114
     --gold-l: #d4a132   (lighter gold for hover)
     --card:   #0f0f0f
     --border: #1e1e1e
═══════════════════════════════════════════════════════════════ */

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

:root {
  --black: #050505;
  --white: #f0f0f0;
  --gold: #b28114;
  --gold-l: #d4a132;
  --card: #0d0d0d;
  --border: #1c1c1c;
  --muted: #6b6b6b;
  --nav-h: 64px;
  --radius: 4px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

img,
svg {
  display: block;
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

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

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}


.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}

.site-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}


.loader-ring {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(178, 129, 20, 0.15);
  border-top-color: var(--gold);
  animation: loaderSpin 0.9s linear infinite;
}

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


.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 900;
  display: flex;
  align-items: center;
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background 0.4s var(--ease);
}

.site-header.scrolled {
  background: rgba(5, 5, 5, 0.95);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


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

.logo-svg {
  height: 32px;
  width: auto;
}

.logo-fallback {
  display: none;
}

.logo-img {
  height: 32px;
  width: auto;
}


.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(240, 240, 240, 0.78);
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
  font-weight: 600;
}

.gold-link {
  color: var(--gold) !important;
  border: 1px solid rgba(178, 129, 20, 0.4);
  border-radius: 3px;
  padding: 5px 14px;
}

.gold-link:hover {
  background: rgba(178, 129, 20, 0.1) !important;
  border-color: var(--gold);
}

.nav-register {
  color: #111 !important;
  background: var(--gold);
  border: 1px solid var(--gold);
  font-weight: 600;
}

.nav-register:hover {
  background: var(--gold-l) !important;
  color: #050505 !important;
}

.caret {
  width: 10px;
  height: 6px;
  transition: transform 0.2s;
}

.has-dropdown:hover .caret {
  transform: rotate(180deg);
}


.has-dropdown {
  position: relative;
}

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 190px;
  background: rgba(8, 8, 8, 0.97);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px;
  z-index: 200;
}

.has-dropdown:hover .dropdown {
  display: block;
}

.drop-item {
  display: block;
  padding: 9px 14px;
  font-size: 13px;
  color: rgba(240, 240, 240, 0.72);
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}

.drop-item:hover {
  background: rgba(178, 129, 20, 0.1);
  color: var(--gold);
}


.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}


.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  background: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}


.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.3;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 24px 24px 80px;
  pointer-events: none;
}

.hero-wordmark {
  position: absolute;
  top: 22px;
  left: 24px;
  font-size: 12px;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: rgba(240, 240, 240, 0.9);
}

.hero-badge {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 160px;
}

.hero-subtitle {
  margin-bottom: 14px;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: rgba(240, 240, 240, 0.8);
}

.hero-countdown {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 18px;
}

.count-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 66px;
}

.count-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(26px, 4vw, 46px);
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--gold);
}

.count-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(240, 240, 240, 0.74);
}

.count-sep {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px;
  color: rgba(240, 240, 240, 0.58);
  margin-bottom: 14px;
}

.hero-register-btn {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: rgba(5, 5, 5, 0.45);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s, transform 0.25s;
}

.hero-register-btn:hover {
  background: var(--gold);
  color: #050505;
  transform: translateY(-2px);
}

.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  transition: opacity 0.25s;
}

.hero-scroll-cue span {
  width: 12px;
  height: 12px;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(45deg);
  opacity: 0.9;
  animation: cuePulse 1.8s infinite;
}

.hero-scroll-cue span:last-child {
  margin-top: -5px;
  animation-delay: 0.2s;
}

@keyframes cuePulse {
  0% {
    opacity: 0.15;
    transform: rotate(45deg) translate(-1px, -1px);
  }

  50% {
    opacity: 0.9;
  }

  100% {
    opacity: 0.15;
    transform: rotate(45deg) translate(2px, 2px);
  }
}

.hero-noscript {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 10px;
  padding: 20px;
  background: rgba(5, 5, 5, 0.78);
}

.hero-noscript h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(50px, 10vw, 120px);
  letter-spacing: 0.08em;
  color: var(--white);
}

.stats-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #070707;
  margin-top: 24px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 28px 32px;
}

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

.stat-number {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 72px);
  line-height: 1;
  letter-spacing: 0.06em;
  color: var(--gold);
}

.stat-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240, 240, 240, 0.72);
}


.section {
  padding: 56px 0 0;
}

.section-heading {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 48px;
  line-height: 1;
}


.gold-line {
  height: 1px;
  background: var(--gold);
  margin-top: 64px;
  opacity: 0.55;
}


.about-section {
  background: var(--black);
}


.about-card {
  position: relative;
  background: radial-gradient(circle at 20% 10%, rgba(178, 129, 20, 0.08), transparent 45%), var(--card);
  border: 1px solid var(--border);
  border-left: 4px solid transparent;
  border-image: linear-gradient(to bottom, #d4a132 0%, rgba(212, 161, 50, 0) 95%) 1;
  border-radius: var(--radius);
  padding: 40px 48px;
  max-width: 860px;
  box-shadow: inset 0 0 80px rgba(178, 129, 20, 0.04);

  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.about-card.about-visible {
  opacity: 1;
  transform: none;
}

.about-card p {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.about-card.about-visible p:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0.15s;
}

.about-card.about-visible p:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 0.30s;
}

.about-card.about-visible p:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: 0.45s;
}

.about-card strong {
  color: var(--white);
  font-weight: 600;
}

.about-card p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-card p:last-child {
  margin-bottom: 0;
}


.events-section {
  background: var(--black);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.event-card {
  background: var(--card);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: background 0.3s var(--ease);
  cursor: default;
}

.event-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5, 5, 5, 0.05) 0%, rgba(14, 11, 5, 0.55) 100%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}

/* Gold top-border that fills in on hover */
.event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.event-card:hover::before {
  transform: scaleX(1);
}

.event-card:hover {
  background: #111;
}

.event-card:hover::after {
  opacity: 1;
}


.event-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px 0;
}

.event-icon {
  width: 36px;
  height: 36px;
  color: rgba(178, 129, 20, 0.5);
  flex-shrink: 0;
  transition: color 0.3s;
}

.event-card:hover .event-icon {
  color: var(--gold);
}

.event-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3px 10px;
  transition: color 0.3s, border-color 0.3s;
}

.event-card:hover .event-tag {
  color: var(--gold);
  border-color: rgba(178, 129, 20, 0.35);
}


.event-card-body {
  position: relative;
  padding: 16px 24px 0;
  flex: 1;
  z-index: 1;
}

.event-number {
  position: absolute;
  top: 8px;
  right: 18px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 84px;
  line-height: 1;
  letter-spacing: 0.03em;
  color: rgba(178, 129, 20, 0.09);
  margin-bottom: 8px;
  pointer-events: none;
}

.event-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 10px;
}

.event-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}


.event-card-footer {
  padding: 16px 24px 22px;
}

.event-arrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
  opacity: 0.8;
  transform: translateX(0);
  display: inline-block;
  transition: opacity 0.3s, transform 0.3s;
}

.event-card:hover .event-arrow {
  opacity: 1;
  transform: translateX(4px);
}

.tag-research {
  color: #9cc8ff;
  border-color: rgba(156, 200, 255, 0.35);
}

.tag-strategy {
  color: #9de4d9;
  border-color: rgba(157, 228, 217, 0.34);
}

.tag-design {
  color: #7ec4ff;
  border-color: rgba(126, 196, 255, 0.32);
}

.tag-engineering {
  color: #ffc870;
  border-color: rgba(255, 200, 112, 0.35);
}

.tag-knowledge {
  color: #d6b6ff;
  border-color: rgba(214, 182, 255, 0.3);
}

.tag-debate {
  color: #ffb4a8;
  border-color: rgba(255, 180, 168, 0.32);
}

.tag-business {
  color: #b8e8b4;
  border-color: rgba(184, 232, 180, 0.32);
}

.tag-innovation {
  color: #9be3ff;
  border-color: rgba(155, 227, 255, 0.32);
}

.tag-wildcard {
  color: #ffd56f;
  border-color: rgba(255, 213, 111, 0.36);
}


.surprise-card {
  background: linear-gradient(135deg, #0d0d0d 0%, #0e0b05 100%);
}

.surprise-card .event-name {
  color: var(--gold);
}

.surprise-card .event-desc {
  color: rgba(178, 129, 20, 0.55);
}

.surprise-card .event-icon {
  color: rgba(178, 129, 20, 0.4);
}

.surprise-card:hover .event-icon {
  color: var(--gold-l);
}


.timeline-section {
  background: var(--black);
  overflow: hidden;
}

.timeline-track-wrap {
  overflow-x: auto;
  padding-bottom: 16px;
}

.timeline-track {
  position: relative;
  min-width: 900px;
  padding: 60px 0 100px;
}


.track-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1.5px;
  background: rgba(240, 240, 240, 0.2);
  transform: translateY(-50%);
}

.track-progress {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, rgba(178, 129, 20, 0.35), var(--gold));
  transition: width 1.1s var(--ease);
}

.timeline-track-wrap.visible .track-progress {
  width: var(--timeline-progress, 0%);
}

.timeline-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.tl-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 1;
}

.tl-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--black);
  border: 2px solid var(--gold);
  z-index: 2;
  position: relative;
  transition: background 0.3s, transform 0.3s;
  box-shadow: 0 0 0 0 rgba(178, 129, 20, 0);
}

.tl-item:hover .tl-dot {
  background: var(--gold);
  transform: scale(1.3);
  box-shadow: 0 0 12px rgba(178, 129, 20, 0.5);
}

.tl-main .tl-dot {
  width: 20px;
  height: 20px;
  background: var(--gold);
  border-color: var(--gold-l);
  box-shadow: 0 0 14px rgba(212, 161, 50, 0.5);
}

.tl-item.done .tl-dot {
  background: var(--gold);
}

.tl-item.done .tl-title {
  color: rgba(240, 240, 240, 0.95);
}

.tl-label {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}


.tl-item:nth-child(odd) .tl-label {
  top: calc(100% + 14px);
}

.tl-item:nth-child(even) .tl-label {
  bottom: calc(100% + 14px);
}

.tl-date {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.08em;
  font-weight: 500;
}

.tl-title {
  font-size: 12.5px;
  color: rgba(240, 240, 240, 0.75);
  text-align: center;
  max-width: 110px;
}

.tl-main .tl-title {
  color: var(--white);
  font-weight: 600;
}

.sponsors-section {
  background: var(--black);
}

.sponsor-tiers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.sponsor-tier {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: var(--radius);
  padding: 18px;
}

.tier-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 10px;
}

.tier-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tier-pill {
  border: 1px solid rgba(178, 129, 20, 0.35);
  color: rgba(240, 240, 240, 0.82);
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 20px;
}

.sponsors-note {
  margin-top: 32px;
  color: var(--muted);
  font-size: 14px;
}

.sponsors-note a {
  color: var(--gold);
}

.sponsors-note a:hover {
  text-decoration: underline;
}


.contact-footer {
  padding: 56px 0 0;
  background: var(--black);
  position: relative;
}

.contact-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.04), transparent 22%),
    radial-gradient(circle at 76% 65%, rgba(178, 129, 20, 0.04), transparent 26%);
  opacity: 0.35;
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 64px;
}

.contact-sub {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.contact-info-col>p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.7;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 14px;
}

.cl-label {
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  min-width: 80px;
}

.contact-list a {
  color: rgba(240, 240, 240, 0.72);
  transition: color 0.2s;
}

.contact-list a:hover {
  color: var(--white);
}

.contact-address-col address {
  color: rgba(240, 240, 240, 0.55);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-embed iframe {
  display: block;
}


.social-icons-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: rgba(240, 240, 240, 0.6);
  border-radius: 50%;
  border: 1px solid rgba(240, 240, 240, 0.12);
  transition: color 0.25s, border-color 0.25s, background 0.25s, transform 0.25s;
}

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

.social-icon:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(178, 129, 20, 0.08);
  transform: translateY(-3px);
}


.footer-bottom {
  padding: 24px 0;
  text-align: center;
  border-top: 1px solid var(--border);
  margin-top: 22px;
}

.footer-powered {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.register-strip {
  padding: 24px 0;
}

.register-strip-inner {
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  background: #080808;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
}

.register-strip-inner p {
  color: rgba(240, 240, 240, 0.84);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}

.register-strip-btn {
  margin: 0;
}

.footer-copy {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.05em;
}


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

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .sponsor-tiers {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(5, 5, 5, 0.98);
    border-bottom: 1px solid var(--border);
    padding: 16px;
  }

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

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .nav-register-item {
    width: 100%;
    margin-bottom: 6px;
  }

  .nav-register {
    width: 100%;
    justify-content: center;
  }

  .timeline-track-wrap {
    overflow: visible;
  }

  .timeline-track {
    min-width: 0;
    padding: 12px 0 0;
  }

  .track-line {
    left: 8px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 1.5px;
    height: auto;
    transform: none;
  }

  .track-progress {
    width: 100%;
    height: 0%;
    transition: height 1.1s var(--ease);
    background: linear-gradient(180deg, rgba(178, 129, 20, 0.35), var(--gold));
  }

  .timeline-track-wrap.visible .track-progress {
    width: 100%;
    height: var(--timeline-progress, 0%);
  }

  .timeline-items {
    display: grid;
    gap: 20px;
    margin-left: 8px;
  }

  .tl-item {
    align-items: flex-start;
    padding-left: 24px;
    min-height: 32px;
  }

  .tl-label {
    position: static;
    align-items: flex-start;
    white-space: normal;
  }

  .hero-badge {
    margin-bottom: 130px;
  }

  .hero-countdown {
    gap: 6px;
  }

  .count-unit {
    min-width: 52px;
  }

  .count-sep {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    padding: 22px 20px;
  }

  .register-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .has-dropdown .dropdown {
    position: static;
    display: none;
    background: rgba(255, 255, 255, 0.03);
    border: none;
    margin-top: 4px;
    border-radius: 0;
  }

  .has-dropdown.open .dropdown {
    display: block;
  }
}

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

  .container {
    padding: 0 20px;
  }

  .about-card {
    padding: 28px 24px;
  }

  .section {
    padding: 70px 0;
  }

  .hero-overlay {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-wordmark {
    left: 16px;
  }

  .hero-subtitle {
    text-align: center;
    font-size: 11px;
  }
}
