:root {
  --navy: #0a0f1e;
  --ink: #f0e6d6;
  --muted: #a4947e;
  --muted-2: #8a7a63;
  --amber: #ffb43a;
  --orange: #ff6a1e;
  --cream: #ffe6b0;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--navy);
  color: var(--ink);
  font-family: 'DM Sans', system-ui, sans-serif;
  overflow-x: hidden;
}

a { color: var(--amber); text-decoration: none; }
a:hover { color: var(--orange); }
::selection { background: var(--amber); color: var(--navy); }

img { max-width: 100%; display: block; }

.mono { font-family: 'JetBrains Mono', monospace; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 26px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .2em;
  white-space: nowrap;
  cursor: pointer;
  border: 0;
}
.btn--gradient { background: linear-gradient(120deg, var(--orange), var(--amber)); color: #1a0d02; font-weight: 500; }
.btn--gradient:hover { filter: brightness(1.1); color: #1a0d02; }
.btn--outline { border: 1px solid rgba(255,255,255,.2); color: var(--ink); background: transparent; }
.btn--outline:hover { border-color: var(--orange); color: var(--orange); }
.btn--ghost { border: 1px solid rgba(255,255,255,.16); background: rgba(15,21,40,.94); color: var(--ink); }
.btn--ghost:hover { border-color: var(--orange); color: var(--orange); }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 13px clamp(16px, 4vw, 52px);
  background: rgba(10,15,30,.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,180,58,.16);
}
.nav__brand { display: flex; align-items: center; gap: 11px; color: var(--ink); }
.nav__crest { height: 30px; width: auto; }
.nav__name { font-family: Montserrat, sans-serif; font-weight: 800; font-size: clamp(9px, 1.05vw, 15px); white-space: nowrap; }
.nav__year { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--amber); letter-spacing: .2em; }
.nav__right { display: flex; align-items: center; gap: 18px; }
.nav__burger {
  display: grid; place-items: center; width: 44px; height: 44px;
  background: transparent; border: 1px solid rgba(255,180,58,.28); color: var(--ink);
  cursor: pointer; font-family: 'JetBrains Mono', monospace; font-size: 14px;
}
.nav__burger:hover { border-color: var(--amber); color: var(--amber); }

.mobile-nav {
  position: fixed; inset: 62px 0 0; z-index: 55;
  background: rgba(6,4,2,.97); backdrop-filter: blur(12px);
  display: none; flex-direction: column;
  padding: 30px clamp(20px, 6vw, 52px) 60px; overflow-y: auto;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.07);
  font-family: Montserrat, sans-serif; font-weight: 700; font-size: 22px; color: var(--ink);
}
.mobile-nav a:hover { color: var(--amber); }
.mobile-nav a span { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--muted-2); }

/* Hero */
.hero { position: relative; overflow: hidden; padding: clamp(70px, 12vh, 130px) clamp(20px, 6vw, 96px) 84px; min-height: 88vh; display: flex; flex-direction: column; justify-content: center; gap: 32px; }
.hero__video { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.hero__fade { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(10,15,30,.42) 0%, rgba(10,15,30,.3) 55%, var(--navy) 100%); }
.hero__content { display: flex; flex-direction: column; gap: 32px; }

.badge {
  display: inline-flex; align-items: center; gap: 11px; align-self: flex-start;
  padding: 9px 16px; border: 1px solid rgba(255,180,58,.35); background: rgba(255,180,58,.07);
  font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: .24em; color: var(--amber);
}
.pulse-dot, .badge__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--amber); animation: pulseDot 1.8s ease-in-out infinite; }
@keyframes pulseDot { 0%,100% { opacity: 1; } 50% { opacity: .2; } }

.hero__word {
  margin: 0; display: flex; flex-wrap: nowrap;
  font-family: Montserrat, sans-serif; font-weight: 800;
  font-size: min(10.2vw, 180px); line-height: .9; letter-spacing: -.04em; text-transform: uppercase;
}
.hero__word span { display: inline-block; transition: transform .32s cubic-bezier(.2,.8,.2,1), color .32s ease, text-shadow .32s ease; color: var(--ink); }
.hero__word--year span {
  background: linear-gradient(100deg, var(--orange) 5%, var(--amber) 55%, var(--cream) 95%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: yearFloat 3.6s ease-in-out infinite;
}
@keyframes yearFloat { 0%,100% { opacity: .82; } 50% { opacity: 1; } }

.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; }

.fact-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(148px, 1fr)); gap: 1px;
  background: rgba(255,180,58,.18); border: 1px solid rgba(255,180,58,.18); max-width: 960px;
}
.fact-grid--3 { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
.fact-grid__cell { background: rgba(12,8,4,.92); padding: 20px 22px; display: flex; flex-direction: column; gap: 8px; }
.fact-grid__label { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .22em; color: var(--muted-2); }
.fact-grid__value { font-family: Montserrat, sans-serif; font-weight: 700; font-size: 21px; }
.fact-grid__value--sm { font-family: 'DM Sans', sans-serif; font-weight: 400; font-size: 15px; line-height: 1.5; color: #ddd0bb; }

/* Countdown */
.countdown { padding: 0 clamp(20px, 6vw, 96px) 104px; }
.countdown__panel {
  position: relative; overflow: hidden; border: 1px solid rgba(255,180,58,.24);
  background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(255,180,58,.1), transparent 60%), #0b0f1e;
  padding: clamp(34px, 5.5vw, 56px) clamp(20px, 5vw, 48px);
}
.countdown__title { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: clamp(28px, 5vw, 44px); font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: .4em; color: var(--amber); }
.countdown__dials { display: flex; align-items: center; justify-content: center; gap: clamp(10px, 3vw, 34px); flex-wrap: wrap; }
.dial { position: relative; width: clamp(88px, 15vw, 148px); aspect-ratio: 1 / 1; display: grid; place-items: center; }
.dial__ring { position: absolute; inset: 0; border-radius: 50%; padding: 3px; -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; filter: drop-shadow(0 0 10px rgba(255,180,58,.35)); }
.dial__dashed { position: absolute; inset: 8px; border-radius: 50%; border: 1px dashed rgba(255,180,58,.2); animation: spin 22s linear infinite; }
.dial__value { font-family: 'JetBrains Mono', monospace; font-weight: 500; font-size: clamp(24px, 4.6vw, 42px); letter-spacing: -.02em; line-height: 1; font-variant-numeric: tabular-nums; color: var(--cream); text-shadow: 0 0 18px rgba(255,180,58,.4); }
.dial__label { font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: .2em; color: var(--muted-2); }
@keyframes spin { to { transform: rotate(360deg); } }
.countdown__status { text-align: center; margin-top: clamp(26px, 5vw, 40px); font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: .22em; color: var(--amber); }

/* Sections */
.section { position: relative; padding: 0 clamp(20px, 6vw, 96px) 108px; }
.section--video { padding-top: clamp(70px, 9vw, 120px); overflow: hidden; isolation: isolate; }
.section__video { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.section__fade { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, var(--navy) 0%, rgba(10,15,30,.62) 20%, rgba(10,15,30,.62) 80%, var(--navy) 100%); }
.section__fade--soft { background: linear-gradient(180deg, var(--navy) 0%, rgba(10,15,30,.5) 22%, rgba(10,15,30,.5) 78%, var(--navy) 100%); }
.section__fade--strong { background: linear-gradient(180deg, var(--navy) 0%, rgba(10,15,30,.86) 16%, rgba(10,15,30,.86) 84%, var(--navy) 100%); }
.section__inner { position: relative; z-index: 2; }
.section__inner--split { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; align-items: start; }
.section__inner--center { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; }

.h2 { margin: 0 0 20px; font-family: Montserrat, sans-serif; font-weight: 800; font-size: clamp(29px, 5vw, 60px); letter-spacing: -.025em; line-height: 1.02; text-transform: uppercase; }
.h2--sm { font-size: clamp(27px, 4.4vw, 50px); }
.lead { margin: 0 0 40px; max-width: 64ch; font-size: 17px; line-height: 1.72; color: var(--muted); }
.lead--center { max-width: 52ch; }

.card-grid { display: grid; gap: 18px; }
.card-grid--4 { grid-template-columns: repeat(auto-fit, minmax(236px, 1fr)); }
.card-grid--3 { grid-template-columns: repeat(auto-fit, minmax(236px, 1fr)); }
.card { border: 1px solid rgba(255,180,58,.16); background: rgba(17,23,44,.7); padding: 28px; display: flex; flex-direction: column; gap: 13px; transition: transform .25s ease, border-color .25s ease; }
.card:hover { transform: translateY(-6px); border-color: rgba(255,180,58,.55); }
.card__num { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--orange); letter-spacing: .2em; }
.card__title { margin: 0; font-family: Montserrat, sans-serif; font-weight: 700; font-size: 22px; text-transform: uppercase; }
.card__body { margin: 0; font-size: 15px; line-height: 1.65; color: var(--muted); }

/* Guest of Honour */
.guest { position: relative; padding: clamp(90px, 11vw, 150px) clamp(20px, 6vw, 96px); display: flex; flex-direction: column; align-items: center; text-align: center; gap: 30px; overflow: hidden; }
.guest__bg { position: absolute; inset: 0; z-index: -1; background: radial-gradient(ellipse 60% 55% at 50% 8%, rgba(255,180,58,.16), transparent 70%); }
.guest__ring { position: relative; width: 248px; height: 248px; display: grid; place-items: center; }
.guest__ring::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: conic-gradient(from 0deg, var(--amber), var(--orange), transparent 60%, var(--amber)); animation: spin 8s linear infinite; filter: blur(1px); }
.guest__ring::after { content: ""; position: absolute; inset: 7px; border-radius: 50%; background: var(--navy); }
.guest__photo { position: relative; width: 216px; height: 216px; border-radius: 50%; object-fit: cover; z-index: 1; }
.guest__role { font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: .16em; color: var(--amber); }
.guest__logo { height: 32px; width: auto; }

/* Track panels */
.panel-row { display: flex; flex-wrap: wrap; gap: 16px; }
.panel { flex: 1 1 280px; border: 1px solid rgba(255,180,58,.2); background: rgba(17,23,44,.86); padding: 30px 28px; display: flex; flex-direction: column; gap: 12px; }
.panel__label { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .22em; color: var(--amber); }
.panel p { margin: 0; font-size: 15px; line-height: 1.7; color: #ddd0bb; }

/* Prizes */
.prize-total { font-family: Montserrat, sans-serif; font-weight: 800; font-size: clamp(44px, 9vw, 104px); letter-spacing: -.04em; line-height: .86; margin-bottom: 24px; background: linear-gradient(100deg, var(--orange), var(--amber), var(--cream)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.prize-card { border: 1px solid rgba(255,180,58,.22); background: linear-gradient(180deg, rgba(38,22,6,.82), rgba(15,21,40,.72)); padding: 34px 28px; display: flex; flex-direction: column; gap: 11px; }
.prize-card__rank { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .24em; color: var(--orange); }
.prize-card__title { font-family: Montserrat, sans-serif; font-weight: 700; font-size: 19px; text-transform: uppercase; }
.prize-card__amount { font-family: Montserrat, sans-serif; font-weight: 800; font-size: 40px; letter-spacing: -.03em; color: var(--amber); }

/* Timeline zigzag */
.zigzag { position: relative; max-width: 760px; margin: 0 auto; }
.zigzag__spine { position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: rgba(255,180,58,.2); transform: translateX(-50%); }
.zigzag__fill { position: absolute; left: 0; top: 0; width: 100%; height: 0; background: linear-gradient(180deg, var(--amber), var(--orange)); box-shadow: 0 0 12px rgba(255,180,58,.6); transition: height .1s linear; }
.zigzag__row { display: flex; padding: 16px 0; position: relative; opacity: 0; transform: translateX(30px); transition: opacity .7s cubic-bezier(.22,.7,.2,1), transform .7s cubic-bezier(.22,.7,.2,1); }
.zigzag__row.is-visible { opacity: 1; transform: translateX(0); }
.zigzag__row--left { justify-content: flex-end; }
.zigzag__row--right { justify-content: flex-start; }
.zigzag__dot { position: absolute; left: 50%; top: 22px; width: 9px; height: 9px; border-radius: 50%; background: var(--orange); transform: translateX(-50%); box-shadow: 0 0 0 4px var(--navy); }
.zigzag__card { width: calc(50% - 34px); border: 1px solid rgba(255,180,58,.2); background: rgba(17,23,44,.7); padding: 16px 20px; display: flex; flex-direction: column; gap: 5px; }
.zigzag__row--left .zigzag__card { text-align: right; }
.zigzag__row--right .zigzag__card { text-align: left; }
.zigzag__time { font-family: 'JetBrains Mono', monospace; font-weight: 500; font-size: 15px; color: var(--amber); }
.zigzag__title { font-family: Montserrat, sans-serif; font-weight: 700; font-size: 17px; text-transform: uppercase; }
.zigzag__note { font-size: 13px; color: var(--muted); }
@media (max-width: 640px) {
  .zigzag__row { justify-content: flex-start !important; }
  .zigzag__card { width: calc(100% - 34px) !important; text-align: left !important; margin-left: 34px; }
}

/* Community shared-video block */
.community { position: relative; isolation: isolate; }
.community__video {
  position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: scale(1.05); filter: saturate(0) contrast(1.35) brightness(.45);
  transition: opacity 1s cubic-bezier(.2,.8,.2,1), transform 1.1s cubic-bezier(.2,.8,.2,1), filter 1s ease .1s;
}
.community__video.is-live { opacity: 1; transform: scale(1); filter: saturate(1) contrast(1) brightness(1); }
.community__scan {
  position: absolute; inset: 0; z-index: -1; opacity: 0; pointer-events: none;
  background: repeating-linear-gradient(180deg, rgba(255,255,255,.05) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay; transition: opacity .4s ease;
}
.community__scan.is-flicker { opacity: 1; }
.community__fade { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, var(--navy) 0%, rgba(10,15,30,.5) 6%, rgba(10,15,30,.5) 94%, var(--navy) 100%); }

/* Org chart */
.orgchart { display: flex; flex-direction: column; align-items: center; gap: 0; margin-bottom: 52px; }
.org-card { width: 212px; border: 1px solid rgba(255,180,58,.24); background: rgba(17,23,44,.7); display: flex; flex-direction: column; transition: transform .25s ease, border-color .25s ease; }
.org-card:hover { transform: translateY(-6px); border-color: rgba(255,180,58,.6); }
.org-card--lead { width: 236px; border-color: rgba(255,180,58,.34); }
.org-card__photo { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: rgba(255,255,255,.02); }
.org-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; }
.org-card__name { font-family: Montserrat, sans-serif; font-weight: 700; font-size: 15px; padding: 18px 18px 0; text-align: center; }
.org-card__role { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .14em; color: var(--amber); padding: 5px 18px 0; text-align: center; }
.org-card__dept { font-size: 13px; color: var(--muted-2); padding: 5px 18px 18px; text-align: center; }
.org-branch { width: 260px; height: 40px; position: relative; }
.org-branch::before { content: ""; position: absolute; top: 0; left: 50%; width: 1px; height: 40px; background: linear-gradient(180deg, rgba(255,180,58,.6), rgba(255,180,58,.3)); transform: translateX(-50%); }
.org-branch span { position: absolute; top: 40px; width: 1px; height: 0; }
.org-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 48px; }
@media (max-width: 560px) { .org-branch { display: none; } }

.subteam-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; }
.subteam-btn {
  position: relative; min-height: 116px; width: 172px; padding: 20px 16px;
  border: 1px solid rgba(255,180,58,.28); background: linear-gradient(160deg, rgba(255,180,58,.1), rgba(17,23,44,.86));
  color: var(--ink); cursor: pointer; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 82%, 82% 100%, 0 100%);
  transition: transform .3s cubic-bezier(.2,.8,.2,1), border-color .3s ease, background .3s ease;
  text-align: left; font-family: inherit;
}
.subteam-btn:hover { transform: translateY(-8px) rotate(-1deg); border-color: var(--amber); background: linear-gradient(160deg, rgba(255,106,30,.28), rgba(17,23,44,.92)); }
.subteam-btn__glyph { font-family: 'JetBrains Mono', monospace; font-size: 22px; color: rgba(255,180,58,.55); }
.subteam-btn__label { font-family: Montserrat, sans-serif; font-weight: 800; font-size: 15px; letter-spacing: -.01em; text-transform: uppercase; }
.subteam-btn__cta { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .16em; color: var(--amber); }

/* Modal */
.modal { position: fixed; inset: 0; z-index: 80; display: flex; align-items: flex-start; justify-content: center; padding: clamp(16px, 6vh, 72px) 16px; overflow-y: auto; }
.modal[hidden] { display: none; }
.modal__scrim { position: fixed; inset: 0; background: rgba(10,15,30,.82); backdrop-filter: blur(8px); }
.modal__dialog { position: relative; width: min(640px, 100%); border: 1px solid rgba(255,180,58,.4); background: #0e1426; padding: clamp(24px, 4vw, 42px); display: flex; flex-direction: column; gap: 22px; }
.modal__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.modal__head h3 { margin: 0; font-family: Montserrat, sans-serif; font-weight: 800; font-size: clamp(22px, 3vw, 30px); text-transform: uppercase; letter-spacing: -.02em; }
.modal__close { width: 44px; height: 44px; flex: none; background: transparent; border: 1px solid rgba(255,255,255,.18); color: var(--ink); cursor: pointer; font-family: 'JetBrains Mono', monospace; }
.modal__close:hover { border-color: var(--amber); color: var(--amber); }
.modal__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.member-card { border: 1px solid rgba(255,180,58,.2); background: rgba(17,23,44,.7); display: flex; flex-direction: column; }
.member-card__photo { position: relative; aspect-ratio: 1 / 1; overflow: hidden; }
.member-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; }
.member-card__tag { position: absolute; top: 8px; right: 8px; background: rgba(10,15,30,.72); border: 1px solid rgba(255,180,58,.5); color: var(--amber); font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .08em; padding: 3px 7px; }
.member-card__meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 14px 14px 0; }
.member-card__name { font-family: Montserrat, sans-serif; font-weight: 700; font-size: 15px; }
.member-card__linkedin { flex: none; display: grid; place-items: center; width: 26px; height: 26px; border: 1px solid rgba(255,180,58,.4); color: var(--amber); font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 700; }
.member-card__linkedin:hover { background: rgba(255,180,58,.12); }
.member-card__dept { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .1em; color: var(--muted-2); padding: 4px 14px 14px; }

/* Sponsor */
.sponsor-card { position: relative; border: 1px solid rgba(255,180,58,.28); background: linear-gradient(160deg, rgba(255,180,58,.08), rgba(15,21,40,.96)); padding: clamp(30px, 4.5vw, 46px); display: flex; flex-wrap: wrap; align-items: center; gap: 30px; justify-content: space-between; overflow: hidden; }
.sponsor-card__glow { position: absolute; top: -60px; right: -60px; width: 180px; height: 180px; border-radius: 50%; background: radial-gradient(circle, rgba(255,180,58,.28), transparent 70%); pointer-events: none; }
.sponsor-card__left { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; position: relative; }
.sponsor-card__logo { width: 250px; height: 250px; flex: none; border-radius: 16px; overflow: hidden; background: #fff; display: grid; place-items: center; box-shadow: 0 10px 30px rgba(0,0,0,.35); }
.sponsor-card__logo img { width: 100%; height: 100%; object-fit: contain; }
.sponsor-card__meta { display: flex; flex-direction: column; gap: 6px; }
.sponsor-card__label { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .22em; color: var(--amber); }
.sponsor-card__name { font-family: Montserrat, sans-serif; font-weight: 800; font-size: 22px; text-transform: uppercase; }
.sponsor-card__chip { position: relative; display: flex; align-items: center; gap: 12px; padding: 14px 22px; background: rgba(10,15,30,.85); border: 1px solid rgba(255,180,58,.4); font-family: Montserrat, sans-serif; font-weight: 800; font-size: 15px; letter-spacing: .04em; }
.sponsor-card__chip { background-clip: padding-box; }
.sponsor-card__chip { color: transparent; }
.sponsor-card__chip::after { content: "PRIZE + INTERNSHIP OPPORTUNITY"; position: absolute; inset: 14px 22px; background: linear-gradient(100deg, var(--orange), var(--amber), var(--cream)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* CTA */
.cta__panel { border: 1px solid rgba(255,255,255,.2); background: linear-gradient(140deg, rgba(255,170,60,.14), rgba(15,21,40,.9)); padding: clamp(34px, 6vw, 76px); display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.cta__panel .lead { color: #c4b39c; margin-bottom: 0; }
.cta__panel .fact-grid { width: 100%; }

/* Contact */
.contact-list { display: flex; flex-direction: column; gap: 1px; background: rgba(255,180,58,.16); border: 1px solid rgba(255,180,58,.16); width: 100%; max-width: 640px; }
.contact-row { background: rgba(15,21,40,.94); padding: 20px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; text-align: left; }
.contact-row__role { display: block; font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .18em; color: var(--amber); }
.contact-row__name { display: block; font-family: Montserrat, sans-serif; font-weight: 700; font-size: 16px; }
.contact-row__detail { display: block; font-size: 13px; color: var(--muted-2); }

/* Accordion */
.accordion__item { border-top: 1px solid rgba(255,255,255,.09); }
.accordion__trigger {
  width: 100%; min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: transparent; border: 0; color: var(--ink); cursor: pointer; padding: 17px 0; text-align: left;
  font-family: Montserrat, sans-serif; font-weight: 700; font-size: 16px;
}
.accordion__trigger:hover { color: var(--amber); }
.accordion__icon { font-family: 'JetBrains Mono', monospace; font-size: 15px; color: var(--orange); }
.accordion__body { margin: 0; padding: 0 0 20px; max-width: 60ch; font-size: 15px; line-height: 1.7; color: var(--muted); display: none; }
.accordion__item.is-open .accordion__body { display: block; }

/* Footer */
.footer { position: relative; z-index: 2; border-top: 1px solid rgba(255,180,58,.18); padding: 52px clamp(20px, 6vw, 96px) 46px; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 34px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col--end { justify-content: flex-end; font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .18em; color: #6f624e; }
.footer__brand { display: flex; align-items: center; gap: 11px; font-family: Montserrat, sans-serif; font-weight: 800; font-size: 19px; }
.footer__brand img { height: 34px; width: auto; }
.footer__brand em { font-style: normal; color: var(--amber); }
.footer__col p { font-size: 14px; line-height: 1.6; color: var(--muted-2); margin: 0; }
.footer__heading { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .22em; color: var(--amber); }
.footer__col a { font-size: 14px; color: var(--muted); }
.footer__col a:hover { color: var(--amber); }

@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } }

/* Requested visual refinements only */
.guest__logo {
  width: min(190px, 58vw);
  height: auto;
  max-height: 52px;
  object-fit: contain;
  object-position: center;
  padding: 7px 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 8px 28px rgba(0,0,0,.18);
}

/* Keep the organisation-team video framed naturally; remove the artificial zoom. */
.community__video {
  transform: none;
  object-fit: cover;
  object-position: center center;
}
.community__video.is-live { transform: none; }

/* Refined button treatment without changing button text or behaviour. */
.btn {
  position: relative;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease, color .2s ease, filter .2s ease;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; }
.btn--gradient {
  box-shadow: 0 8px 22px rgba(255,106,30,.18);
}
.btn--gradient:hover {
  filter: brightness(1.08);
  box-shadow: 0 12px 28px rgba(255,106,30,.28);
}
.btn--outline {
  border-radius: 10px;
  background: rgba(10,15,30,.28);
  backdrop-filter: blur(6px);
}
.btn--outline:hover {
  background: rgba(255,180,58,.08);
  box-shadow: 0 8px 22px rgba(0,0,0,.18);
}
.btn--ghost {
  border-radius: 9px;
  box-shadow: 0 5px 16px rgba(0,0,0,.12);
}
.btn--ghost:hover {
  background: rgba(255,180,58,.08);
  box-shadow: 0 8px 20px rgba(0,0,0,.2);
}

.subteam-btn {
  border-radius: 12px;
  clip-path: none;
  box-shadow: 0 8px 24px rgba(0,0,0,.16);
}
.subteam-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(255,106,30,.16);
}

.modal__close {
  border-radius: 9px;
  transition: transform .2s ease, border-color .2s ease, color .2s ease, background .2s ease;
}
.modal__close:hover {
  transform: translateY(-2px);
  background: rgba(255,180,58,.08);
}
