:root {
  --bg:       #080f12;
  --surface:  #0e1a1f;
  --card:     #142028;
  --border:   #1e3540;
  --gold:     #2da8c8;
  --gold-lt:  #5ecde8;
  --gold-dim: #1a7a96;
  --cream:    #e8f6fb;
  --muted:    #6a8a96;
  --white:    #eef7fa;
  --serif:    'Cormorant Garamond', Georgia, serif;
  --sans:     'Sora', sans-serif;
  --mono:     'DM Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body::after {
  content: '';
  position: fixed; inset: 0; z-index: 9000;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.55;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  padding: 32px 72px;
  display: flex; align-items: center; justify-content: space-between;
  transition: padding 0.5s, background 0.5s, border-color 0.5s;
  border-bottom: 1px solid transparent;
}
nav.stuck {
  padding: 18px 72px;
  background: rgba(12,11,9,0.92);
  backdrop-filter: blur(24px);
  border-color: var(--border);
}
.logo-wrap { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.logo-sup { font-family: var(--mono); font-size: 9px; letter-spacing: 4px; color: var(--gold); text-transform: uppercase; margin-bottom: 4px; }
.logo-name { font-family: var(--serif); font-size: 21px; font-weight: 600; letter-spacing: 3px; color: var(--white); text-transform: uppercase; }
.nav-right { display: flex; align-items: center; gap: 48px; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 11px; font-weight: 500; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--muted);
  text-decoration: none; transition: color 0.25s;
}
.nav-links a:hover { color: var(--gold-lt); }
.nav-btn {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: #080f12; background: var(--gold);
  padding: 11px 28px; border-radius: 1px;
  text-decoration: none; transition: background 0.25s;
}
.nav-btn:hover { background: var(--gold-lt); }

/* HERO */
#hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  padding: 160px 72px 100px;
  overflow: hidden;
}
.hero-glow {
  position: absolute; top: -20%; right: -10%;
  width: 70vw; height: 70vw;
  background: radial-gradient(ellipse at center, rgba(45,168,200,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero-vline {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(45,168,200,0.12) 30%, rgba(45,168,200,0.12) 70%, transparent);
  pointer-events: none;
}

.hero-edition {
  display: inline-flex; align-items: center; gap: 16px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 4px;
  color: var(--gold); text-transform: uppercase; margin-bottom: 40px;
  opacity: 0; animation: rise 0.9s 0.2s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-edition::before, .hero-edition::after {
  content: ''; width: 40px; height: 1px; background: currentColor; opacity: 0.5;
}

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(70px, 11vw, 155px);
  font-weight: 300; line-height: 0.9;
  letter-spacing: -1px; color: var(--white);
  opacity: 0; animation: rise 1s 0.4s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-h1 em { font-style: italic; color: var(--gold); }
.hero-h1 .ghost {
  -webkit-text-stroke: 1px rgba(240,232,216,0.22);
  color: transparent;
}

.hero-sub-row {
  display: flex; align-items: flex-end; gap: 64px; margin-top: 56px;
  opacity: 0; animation: rise 1s 0.65s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-desc {
  max-width: 420px; font-size: 15px; color: var(--muted);
  line-height: 1.85; font-weight: 300;
}
.hero-stats {
  display: flex; gap: 48px; flex-shrink: 0;
  padding-left: 64px; border-left: 1px solid var(--border);
}
.hstat-n {
  font-family: var(--serif); font-size: 52px; font-weight: 300;
  color: var(--gold-lt); line-height: 1; display: block;
}
.hstat-n sup { font-size: 24px; }
.hstat-l {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); margin-top: 4px; display: block;
}

.hero-cta-row {
  display: flex; align-items: center; gap: 32px; margin-top: 56px;
  opacity: 0; animation: rise 1s 0.85s cubic-bezier(.16,1,.3,1) forwards;
}
.btn-gold {
  background: var(--gold); color: var(--bg);
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 16px 44px; text-decoration: none; border-radius: 1px;
  border: none; cursor: pointer;
  transition: background 0.25s, transform 0.2s; display: inline-block;
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); }
.btn-ghost-link {
  font-size: 11px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; color: var(--cream); text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: color 0.25s, gap 0.25s;
}
.btn-ghost-link:hover { color: var(--gold-lt); gap: 18px; }

.hero-badge {
  position: absolute; right: 72px; bottom: 80px;
  border: 1px solid var(--border); padding: 24px 32px; text-align: center;
  background: var(--surface);
  opacity: 0; animation: rise 1s 1.1s cubic-bezier(.16,1,.3,1) forwards;
}
.badge-label { font-family: var(--mono); font-size: 9px; letter-spacing: 4px; color: var(--gold); text-transform: uppercase; margin-bottom: 8px; }
.badge-num { font-family: var(--serif); font-size: 56px; font-weight: 300; color: var(--white); line-height: 1; }
.badge-sub { font-family: var(--mono); font-size: 10px; color: var(--muted); margin-top: 6px; }

/* MARQUEE */
.marquee-wrap {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 18px 0; overflow: hidden; background: var(--surface);
}
.marquee-inner {
  display: flex; animation: marquee 30s linear infinite; white-space: nowrap;
}
.mitem {
  font-family: var(--serif); font-size: 15px; font-style: italic;
  color: var(--muted); padding: 0 48px; flex-shrink: 0;
  display: flex; align-items: center; gap: 24px;
}
.mitem::before { content: '◆'; font-size: 6px; color: var(--gold); font-style: normal; }

/* SECTIONS */
.section { padding: 140px 72px; }
.section-alt { background: var(--surface); }

.label-row {
  display: flex; align-items: center; gap: 16px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 4px;
  color: var(--gold); text-transform: uppercase; margin-bottom: 24px;
}
.label-row::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.sec-title {
  font-family: var(--serif); font-size: clamp(44px, 6vw, 80px);
  font-weight: 300; line-height: 1.05; color: var(--white);
}
.sec-title em { font-style: italic; color: var(--gold); }

/* ABOUT */
.about-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 100px; margin-top: 80px; align-items: start;
}
.about-p {
  font-size: 17px; color: var(--muted); line-height: 1.85;
  font-weight: 300; margin-bottom: 28px;
}
.about-p strong { color: var(--cream); font-weight: 500; }
.hilist { border-top: 1px solid var(--border); }
.hi {
  display: flex; align-items: flex-start; gap: 24px;
  padding: 28px 0; border-bottom: 1px solid var(--border);
}
.hi-n {
  font-family: var(--serif); font-size: 42px; font-weight: 300;
  color: var(--gold); line-height: 1; flex-shrink: 0; width: 56px;
}
.hi-lbl { font-family: var(--sans); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.hi-txt { font-size: 14px; color: var(--cream); margin-top: 4px; font-weight: 300; }
.pull-q {
  font-family: var(--serif); font-size: 26px; font-style: italic;
  font-weight: 300; color: var(--cream); line-height: 1.55;
  border-left: 2px solid var(--gold); padding-left: 32px; margin-bottom: 48px;
}
.tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; }
.tag {
  font-family: var(--mono); font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted);
  border: 1px solid var(--border); padding: 8px 18px;
  transition: border-color 0.25s, color 0.25s;
}
.tag:hover { border-color: var(--gold); color: var(--gold); }

/* PILLARS */
.pillars {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); margin-top: 80px;
}
.pillar {
  background: var(--surface); padding: 60px 48px;
  transition: background 0.3s; position: relative; overflow: hidden;
}
.pillar:hover { background: var(--card); }
.pillar::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s cubic-bezier(.16,1,.3,1);
}
.pillar:hover::before { transform: scaleX(1); }
.p-icon {
  font-family: var(--serif); font-size: 48px; font-style: italic;
  color: var(--gold); line-height: 1; margin-bottom: 32px; display: block;
}
.p-title {
  font-family: var(--serif); font-size: 26px; font-weight: 400;
  color: var(--white); margin-bottom: 16px;
}
.p-desc { font-size: 14px; color: var(--muted); line-height: 1.75; font-weight: 300; }

/* EDITIONS */
.timeline { margin-top: 90px; }
.edition {
  display: grid; grid-template-columns: 160px 1fr; gap: 0;
}
.ed-side {
  padding: 52px 40px 52px 0; border-right: 1px solid var(--border);
  text-align: right; position: relative;
}
.ed-side::after {
  content: ''; position: absolute; right: -5px; top: 64px;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--gold); border: 2px solid var(--bg);
}
.ed-lbl {
  font-family: var(--mono); font-size: 9px; letter-spacing: 3px;
  color: var(--gold); text-transform: uppercase; display: block; margin-bottom: 8px;
}
.ed-yr {
  font-family: var(--serif); font-size: 40px; font-weight: 300; color: var(--white); line-height: 1;
}
.ed-body {
  padding: 52px 0 52px 64px; border-bottom: 1px solid var(--border);
}
.edition:last-child .ed-body { border-bottom: none; }
.ed-title {
  font-family: var(--serif); font-size: 30px; font-weight: 400; color: var(--white); margin-bottom: 16px;
}
.ed-desc { font-size: 15px; color: var(--muted); line-height: 1.8; font-weight: 300; max-width: 600px; }
.ed-metrics { display: flex; gap: 40px; margin-top: 36px; }
.em-n {
  font-family: var(--serif); font-size: 38px; font-weight: 300;
  color: var(--gold-lt); line-height: 1; display: block;
}
.em-l { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.ed-badge {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 20px;
  background: rgba(45,168,200,0.1); border: 1px solid rgba(45,168,200,0.3);
  padding: 6px 14px; font-size: 10px; font-family: var(--mono);
  letter-spacing: 2px; color: var(--gold); text-transform: uppercase;
}

/* PARTICIPANTS */
.parts-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: end; margin-bottom: 80px;
}
.parts-note { font-size: 15px; color: var(--muted); line-height: 1.8; font-weight: 300; }
.parts-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.part-card {
  background: var(--card); border: 1px solid var(--border);
  padding: 36px 24px; text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.part-card:hover { border-color: var(--gold-dim); transform: translateY(-4px); }
.part-av {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--border); border: 1px solid var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-family: var(--serif); font-size: 26px; font-style: italic; color: var(--gold);
}
.part-name { font-family: var(--serif); font-size: 17px; font-weight: 400; color: var(--white); margin-bottom: 4px; }
.part-role { font-size: 11px; letter-spacing: 1px; color: var(--muted); font-weight: 300; }
.part-area {
  margin-top: 14px; display: inline-block;
  font-family: var(--mono); font-size: 9px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  background: rgba(45,168,200,0.08); padding: 4px 10px;
}

/* REGISTER */
#register { position: relative; overflow: hidden; }
#register::before {
  content: ''; position: absolute; top: -50%; left: -20%;
  width: 80vw; height: 80vw;
  background: radial-gradient(ellipse, rgba(45,168,200,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.reg-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 100px; margin-top: 80px;
}
.reg-sub-title {
  font-family: var(--serif); font-size: 22px; font-style: italic;
  color: var(--gold-lt); margin-bottom: 32px;
}
.checklist { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.checklist li {
  display: flex; align-items: flex-start; gap: 16px;
  font-size: 14px; color: var(--muted); font-weight: 300; line-height: 1.5;
}
.checklist li::before { content: '◆'; color: var(--gold); font-size: 7px; flex-shrink: 0; margin-top: 5px; }
.ff { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.ff label {
  font-family: var(--mono); font-size: 9px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--muted);
}
.ff input, .ff select, .ff textarea {
  background: var(--card); border: 1px solid var(--border);
  color: var(--cream); padding: 14px 18px;
  font-family: var(--sans); font-size: 14px; font-weight: 300;
  border-radius: 0; outline: none; transition: border-color 0.25s;
  -webkit-appearance: none;
}
.ff input:focus, .ff select:focus, .ff textarea:focus { border-color: var(--gold); }
.ff textarea { resize: vertical; min-height: 110px; }
.ff2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 12px; color: var(--muted); margin-top: 10px; }
#ok { display: none; color: var(--gold); font-family: var(--mono); font-size: 11px; letter-spacing: 2px; margin-top: 12px; }

/* FOOTER */
footer {
  background: var(--bg); border-top: 1px solid var(--border); padding: 72px 72px 40px;
}
.ft-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 80px; margin-bottom: 60px;
}
.ft-desc { font-size: 13px; color: var(--muted); font-weight: 300; line-height: 1.8; margin-top: 16px; max-width: 280px; }
.ft-hd { font-family: var(--mono); font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.ft-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ft-links a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color 0.2s; font-weight: 300; }
.ft-links a:hover { color: var(--gold-lt); }
.ft-bottom {
  border-top: 1px solid var(--border); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
}
.ft-copy { font-family: var(--mono); font-size: 10px; color: var(--muted); letter-spacing: 1px; }
.socials { display: flex; gap: 12px; }
.soc {
  width: 36px; height: 36px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.soc:hover { border-color: var(--gold); color: var(--gold); }
.soc svg { width: 14px; height: 14px; }

/* GALLERY */
#gallery { position: relative; overflow: hidden; }
.gallery-tabs {
  display: flex; align-items: center; gap: 0;
  border: 1px solid var(--border); width: fit-content;
  margin-top: 56px; margin-bottom: 48px;
}
.gtab {
  font-family: var(--mono); font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--muted);
  padding: 12px 32px; cursor: pointer; border: none;
  background: transparent;
  transition: background 0.25s, color 0.25s;
  border-right: 1px solid var(--border);
}
.gtab:last-child { border-right: none; }
.gtab.active { background: var(--gold); color: #080f12; }
.gtab:not(.active):hover { background: var(--card); color: var(--cream); }

.gallery-panel { display: none; }
.gallery-panel.active { display: block; }

/* Masonry-style grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 10px;
}
/* Edition I layout */
.gallery-grid.ed1 .gp:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gallery-grid.ed1 .gp:nth-child(2) { grid-column: span 4; }
.gallery-grid.ed1 .gp:nth-child(3) { grid-column: span 3; }
.gallery-grid.ed1 .gp:nth-child(4) { grid-column: span 4; }
.gallery-grid.ed1 .gp:nth-child(5) { grid-column: span 3; }
.gallery-grid.ed1 .gp:nth-child(6) { grid-column: span 7; }
/* Edition II layout */
.gallery-grid.ed2 .gp:nth-child(1) { grid-column: span 4; grid-row: span 2; }
.gallery-grid.ed2 .gp:nth-child(2) { grid-column: span 5; grid-row: span 2; }
.gallery-grid.ed2 .gp:nth-child(3) { grid-column: span 3; }
.gallery-grid.ed2 .gp:nth-child(4) { grid-column: span 3; }
.gallery-grid.ed2 .gp:nth-child(5) { grid-column: span 5; }
.gallery-grid.ed2 .gp:nth-child(6) { grid-column: span 4; }
.gallery-grid.ed2 .gp:nth-child(7) { grid-column: span 3; }

.gp {
  position: relative; overflow: hidden;
  background: var(--card); border: 1px solid var(--border);
  cursor: pointer;
  min-height: 200px;
}
.gp img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform 0.5s cubic-bezier(.16,1,.3,1), filter 0.4s;
  filter: brightness(0.88) saturate(0.9);
}
.gp:hover img { transform: scale(1.06); filter: brightness(1) saturate(1.05); }

/* placeholder when no real photo */
.gp-placeholder {
  width: 100%; height: 100%; min-height: inherit;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  background: var(--card);
  transition: background 0.3s;
}
.gp:hover .gp-placeholder { background: var(--surface); }
.gp-placeholder .ph-icon {
  font-family: var(--serif); font-size: 36px; font-style: italic; color: var(--gold); opacity: 0.5;
}
.gp-placeholder .ph-label {
  font-family: var(--mono); font-size: 9px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--muted);
}
.gp-placeholder .ph-upload {
  font-size: 11px; color: var(--gold); opacity: 0.6;
  margin-top: 4px; font-family: var(--mono); letter-spacing: 1px;
}

/* overlay on hover */
.gp-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,15,18,0.85) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.35s;
  display: flex; align-items: flex-end; padding: 20px;
  pointer-events: none;
}
.gp:hover .gp-overlay { opacity: 1; }
.gp-caption {
  font-family: var(--mono); font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--cream);
}

/* Single-photo gallery layout */
.gallery-single { display: flex; flex-direction: column; }
.gp-solo { width: 100%; min-height: 480px; cursor: pointer; }
.gallery-caption-bar {
  display: flex; align-items: center; gap: 40px;
  padding: 28px 32px; background: var(--card);
  border: 1px solid var(--border); border-top: none;
}
.gcb-left { display: flex; align-items: baseline; gap: 16px; flex-shrink: 0; }
.gcb-edition { font-family: var(--serif); font-size: 22px; font-weight: 400; color: var(--white); }
.gcb-year { font-family: var(--mono); font-size: 12px; letter-spacing: 3px; color: var(--gold); }
.gcb-desc {
  font-size: 14px; color: var(--muted); font-weight: 300; line-height: 1.6;
  border-left: 1px solid var(--border); padding-left: 32px;
}

/* Upload hint badge */
.upload-hint {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(45,168,200,0.08); border: 1px dashed rgba(45,168,200,0.3);
  padding: 12px 20px; margin-top: 24px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 2px;
  color: var(--muted); text-transform: uppercase;
}
.upload-hint span { color: var(--gold); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9500;
  background: rgba(8,15,18,0.97);
  display: none; align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lb-img {
  max-width: 90vw; max-height: 85vh;
  object-fit: contain; border: 1px solid var(--border);
}
.lb-close {
  position: absolute; top: 28px; right: 36px;
  background: none; border: 1px solid var(--border);
  color: var(--muted); width: 44px; height: 44px;
  font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.lb-close:hover { border-color: var(--gold); color: var(--gold); }
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: none; border: 1px solid var(--border);
  color: var(--muted); width: 48px; height: 48px;
  font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.lb-nav:hover { border-color: var(--gold); color: var(--gold); }
.lb-prev { left: 28px; }
.lb-next { right: 28px; }
.lb-counter {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-family: var(--mono); font-size: 10px; letter-spacing: 3px; color: var(--muted);
}

/* ANIMATIONS */
@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.9s cubic-bezier(.16,1,.3,1), transform 0.9s cubic-bezier(.16,1,.3,1);
}
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; } .d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; } .d6 { transition-delay: 0.6s; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  nav, nav.stuck { padding: 18px 24px; }
  .nav-links { display: none; }
  #hero { padding: 120px 24px 80px; }
  .section { padding: 90px 24px; }
  .about-grid, .parts-intro, .reg-grid, .ft-top { grid-template-columns: 1fr; gap: 48px; }
  .pillars, .parts-grid { grid-template-columns: 1fr; }
  .edition { grid-template-columns: 1fr; }
  .ed-side { border-right: none; border-bottom: 1px solid var(--border); text-align: left; padding: 24px 0; }
  .ed-side::after { display: none; }
  .ed-body { padding: 32px 0; }
  .hero-sub-row { flex-direction: column; gap: 36px; }
  .hero-stats { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 28px; }
  .hero-badge { position: static; margin-top: 40px; display: inline-block; }
  .ff2 { grid-template-columns: 1fr; }
}

* { font-weight: bold !important; }