/* ─────────────────────────────────────────────────────────────
   SCOMM Welcome — welcome.xpectives.in
   Dark base + neon gradients. Poppins body, Anton headlines.
   ───────────────────────────────────────────────────────────── */

:root {
  --bg: #080808;
  --panel: #111111;
  --panel-2: #1a1a1a;
  --line: #262626;
  --text: #ffffff;
  --muted: #9a9a9a;
  --red: #ff2e4d;
  /* per-student accent — overridden from JS */
  --g1: #ff3cac;
  --g2: #784ba0;
  --g3: #2b86c5;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
}

.display { font-family: "Anton", "Poppins", sans-serif; letter-spacing: 0.01em; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

/* subtle grain over everything */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 5;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

/* ── ambient gradient blobs ── */
.blob {
  position: fixed;
  width: 60vmax; height: 60vmax;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.16;
  z-index: 0;
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.blob.b1 { background: var(--g1); top: -25vmax; left: -18vmax; }
.blob.b2 { background: var(--g3); bottom: -28vmax; right: -18vmax; }
.blob.b3 { background: var(--g2); top: 42%; left: 55%; width: 40vmax; height: 40vmax; opacity: 0.12; }

main { position: relative; z-index: 1; }

/* ═════════════════ INTRO OVERLAY ═════════════════ */

#intro {
  position: fixed; inset: 0;
  background: #050505;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.5s ease;
}
#intro.hidden { opacity: 0; pointer-events: none; }
#intro .skip {
  position: absolute; bottom: 24px; right: 24px;
  background: none; border: 1px solid #333; color: #777;
  font-size: 12px; padding: 6px 14px; border-radius: 999px;
}

/* — clapperboard — */
.clapper { width: min(340px, 78vw); position: relative; }
.clapper .top {
  height: 54px;
  background: repeating-linear-gradient(115deg, #111 0 34px, #f4f4f4 34px 68px);
  border-radius: 8px 8px 0 0;
  border: 2px solid #333;
  transform-origin: left bottom;
  animation: clap 1.5s cubic-bezier(0.7, 0, 0.3, 1) forwards;
}
.clapper .body {
  background: #141414;
  border: 2px solid #333;
  border-top: none;
  border-radius: 0 0 10px 10px;
  padding: 18px 20px 22px;
}
.clapper .row {
  display: flex; justify-content: space-between;
  border-bottom: 1px solid #2c2c2c;
  padding: 8px 0;
  font-size: 11px; letter-spacing: 0.18em;
  color: #bbb; text-transform: uppercase;
}
.clapper .row b { color: #fff; letter-spacing: 0.1em; }
@keyframes clap {
  0%   { transform: rotate(-24deg); }
  55%  { transform: rotate(-24deg); }
  72%  { transform: rotate(0deg); }
  78%  { transform: rotate(-5deg); }
  86%  { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}

/* white flash on clap */
.flash {
  position: absolute; inset: 0; background: #fff; opacity: 0;
  animation: flash 0.35s ease 2.1s;
}
@keyframes flash { 0% {opacity: 0;} 30% {opacity: 0.9;} 100% {opacity: 0;} }

/* — breaking news phase — */
.breaking { position: absolute; inset: 0; display: none; }
#intro.phase-news .clapper, #intro.phase-news .flash { display: none; }
#intro.phase-news .breaking { display: block; }

.lower-third {
  position: absolute; left: 0; right: 0; bottom: 18vh;
  padding: 0 5vw;
  transform: translateX(-105%);
  animation: slideIn 0.6s cubic-bezier(0.2, 0.9, 0.3, 1) forwards;
}
@keyframes slideIn { to { transform: translateX(0); } }

.lt-tag {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: clamp(13px, 2.4vw, 18px);
  letter-spacing: 0.28em;
  padding: 8px 18px;
  text-transform: uppercase;
  animation: blink 1s steps(2) infinite;
}
@keyframes blink { 50% { filter: brightness(1.35); } }

.lt-main {
  background: #fff; color: #0a0a0a;
  font-size: clamp(20px, 4.6vw, 44px);
  padding: 14px 22px;
  text-transform: uppercase;
  line-height: 1.15;
  max-width: 900px;
}
.lt-sub {
  display: inline-block;
  background: #0a0a0a; color: #bbb;
  border: 1px solid #333; border-top: none;
  font-size: clamp(10px, 1.8vw, 13px);
  letter-spacing: 0.22em;
  padding: 8px 22px;
  text-transform: uppercase;
}

.ticker {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: var(--red);
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.ticker span { display: inline-block; animation: tick 18s linear infinite; }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* — welcome note phase — */
.welcome-note {
  position: absolute; inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8vw 7vw;
  max-width: 760px;
  margin: 0 auto;
}
#intro.phase-welcome .clapper,
#intro.phase-welcome .flash,
#intro.phase-welcome .breaking { display: none; }
#intro.phase-welcome .welcome-note { display: flex; }

.wn-eyebrow {
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--g1);
  margin-bottom: 26px;
  opacity: 0;
  animation: wnIn 0.6s ease forwards;
}
.wn-line {
  font-size: clamp(17px, 3.4vw, 24px);
  line-height: 1.5;
  color: #f2f2f2;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(14px);
  animation: wnIn 0.6s ease forwards;
  animation-delay: calc(0.35s + var(--i) * 0.7s);
}
.wn-line b {
  background: linear-gradient(90deg, var(--g1), var(--g3));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}
.wn-cta {
  margin-top: 18px;
  font-family: "Anton", sans-serif;
  font-size: clamp(22px, 5vw, 38px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  background: linear-gradient(100deg, #fff 30%, var(--g1), var(--g3));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transform: translateY(14px);
  animation: wnIn 0.6s ease forwards;
  animation-delay: calc(0.35s + var(--i) * 0.7s);
}
@keyframes wnIn { to { opacity: 1; transform: none; } }

/* ═════════════════ STUDENT PAGE ═════════════════ */

.wrap { max-width: 1060px; margin: 0 auto; padding: 0 22px; }

/* — top bar — */
.topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0;
}
.topbar img { height: 34px; }
.topbar .pill {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 8px 16px; border-radius: 999px;
}

/* — hero — */
.hero { padding: 8vh 0 6vh; text-align: center; position: relative; }
.hero .kicker {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  background: linear-gradient(90deg, var(--g1), var(--g3));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(52px, 12vw, 132px);
  line-height: 0.95;
  text-transform: uppercase;
  background: linear-gradient(120deg, #fff 30%, var(--g1) 75%, var(--g3));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .tagline {
  margin-top: 22px;
  font-size: clamp(15px, 2.4vw, 20px);
  color: #d8d8d8;
  font-weight: 500;
}
.hero .welcome-line {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

/* — day-at-scomm chip — */
.day-chip {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 36px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 13px 24px;
  font-size: 14px;
  color: #d8d8d8;
}
.day-chip b {
  font-family: "Anton", sans-serif;
  font-size: 20px;
  background: linear-gradient(90deg, var(--g1), var(--g3));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* — XILUR orientation card — */
.xilur-card {
  display: flex; align-items: center;
  gap: 30px;
  max-width: 720px;
  margin: 40px auto 0;
  padding: 26px 30px;
  text-align: left;
  border-radius: 24px;
  background:
    linear-gradient(var(--color-panel, #0e0e0e), #0e0e0e) padding-box,
    linear-gradient(120deg, #1668e3, var(--g1)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
.xilur-left { flex: 1; min-width: 0; }
.xilur-eyebrow {
  display: block;
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: #6ea8ff;
  margin-bottom: 12px;
}
.xilur-logo { height: 46px; width: auto; }
.xilur-blurb {
  margin-top: 12px;
  font-size: 12.5px; line-height: 1.6;
  color: var(--color-muted, #9a9a9a);
  max-width: 300px;
}
.xilur-meta { display: flex; gap: 9px; flex-wrap: wrap; margin-top: 16px; }
.xilur-chip {
  font-size: 12px; font-weight: 600;
  color: #dcdcdc;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  padding: 8px 14px;
}
/* countdown row, now under the info on the left */
.xilur-count-row {
  display: flex; align-items: center; gap: 12px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.xilur-count-label {
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--color-muted, #9a9a9a);
}
.xilur-countdown { display: flex; gap: 8px; }

/* poster: the right-hand visual, balanced and minimal */
.xilur-poster-link {
  flex: none;
  display: block;
  position: relative;
  width: 138px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.xilur-poster-link:hover { transform: translateY(-3px); border-color: #6ea8ff; }
.xilur-poster-link img { display: block; width: 100%; }
.xilur-poster-tag {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 10px 6px 8px;
  font-size: 10px; font-weight: 600; text-align: center;
  color: #fff;
  background: linear-gradient(0deg, rgba(0,0,0,0.9), rgba(0,0,0,0));
}
.xc-box {
  min-width: 58px;
  padding: 9px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  text-align: center;
}
.xc-box b {
  display: block;
  font-family: "Anton", sans-serif;
  font-size: 21px;
  color: #fff;
}
.xc-box span {
  font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--color-muted, #9a9a9a);
}
.xilur-live {
  font-size: 14px; font-weight: 700;
  color: #6ea8ff;
}

@media (max-width: 640px) {
  .xilur-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding: 22px;
    margin-top: 32px;
  }
  .xilur-countdown { justify-content: flex-start; }
  .xilur-blurb { max-width: none; }
  .xilur-poster-link { width: 160px; align-self: center; }
}

/* — intro sound button — */
.sound-btn {
  position: absolute; bottom: 24px; left: 24px;
  background: none;
  border: 1px solid #333;
  color: #999;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  transition: color 0.2s, border-color 0.2s;
}
.sound-btn:hover:not(:disabled) { color: #fff; border-color: #666; }
.sound-btn:disabled { opacity: 0.55; cursor: default; }

/* — tag us — */
.tag-us {
  display: flex; align-items: center; gap: 14px;
  margin-top: 22px;
  padding: 16px 20px;
  border-radius: 18px;
  background:
    linear-gradient(#0e0e0e, #0e0e0e) padding-box,
    linear-gradient(110deg, var(--g1), var(--g3)) border-box;
  border: 1px solid transparent;
}
.tag-us-icon { font-size: 26px; flex: none; }
.tag-us b {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}
.tag-us p { font-size: 13px; color: var(--color-muted, #9a9a9a); }
.tag-us a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.tag-us a:hover { color: var(--g1); }

/* — photo picker — */
.photo-row {
  display: flex; align-items: center; gap: 18px;
  margin-top: 26px;
  padding: 16px 18px;
  border: 1px solid var(--color-line, #262626);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
}
.photo-preview {
  flex: none;
  width: 76px; height: 76px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(140deg, var(--g1), var(--g2), var(--g3));
  display: flex; align-items: center; justify-content: center;
}
/* empty state: obviously a slot to fill, not an avatar */
.photo-preview.is-empty {
  background: none;
  padding: 0;
  border: 2px dashed rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.photo-preview.is-empty:hover {
  border-color: var(--g1);
  background: rgba(255, 255, 255, 0.03);
}
.photo-empty {
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  color: rgba(255, 255, 255, 0.45);
}
.photo-preview.is-empty:hover .photo-empty { color: #fff; }
.photo-preview img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  background: #0d0d0d;
}
.photo-actions { min-width: 0; }
.photo-actions .btn { padding: 11px 20px; font-size: 13px; }
.photo-hint {
  margin-top: 9px;
  font-size: 11.5px; line-height: 1.6;
  color: var(--color-muted, #9a9a9a);
  max-width: 320px;
}
.btn-text {
  background: none; border: none;
  color: var(--color-muted, #9a9a9a);
  font-size: 12px; text-decoration: underline;
  margin-left: 12px;
}
.btn-text:hover { color: #fff; }

/* press pass photo */
.pp-photo.has-photo { padding: 0; overflow: hidden; }
.pp-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

@media (max-width: 560px) {
  .photo-row { flex-direction: column; align-items: flex-start; gap: 14px; }
  .photo-hint { max-width: none; }
}

/* — landing gate note — */
.landing-note {
  max-width: 420px;
  margin: 26px auto 0;
  padding: 14px 20px;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  font-size: 12.5px;
  color: var(--color-muted, #9a9a9a);
}
.landing-note a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.landing-note a:hover { color: var(--g1); }

/* — section headings — */
.sec { padding: 7vh 0; }
.sec-head {
  display: flex; align-items: baseline; gap: 16px;
  margin-bottom: 30px;
}
.sec-head h2 {
  font-size: clamp(26px, 5vw, 42px);
  text-transform: uppercase;
}
.sec-head .num {
  font-family: "Anton", sans-serif;
  font-size: 15px;
  color: var(--g1);
}
.sec-head .rule { flex: 1; height: 1px; background: var(--line); }

/* — press pass — */
.pass-grid {
  display: grid; grid-template-columns: minmax(0, 420px) 1fr;
  gap: 44px; align-items: center;
}
@media (max-width: 780px) { .pass-grid { grid-template-columns: 1fr; } }

.press-pass {
  position: relative;
  background: linear-gradient(160deg, #161616, #0d0d0d);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px;
  overflow: hidden;
  transform: rotate(-1.5deg);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.press-pass::before {
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 7px;
  background: linear-gradient(90deg, var(--g1), var(--g2), var(--g3));
}
.pp-lanyard {
  width: 52px; height: 16px;
  background: #060606; border: 1px solid var(--line);
  border-radius: 999px;
  margin: 2px auto 18px;
}
.pp-tag {
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--g1);
  text-align: center;
}
.pp-photo {
  width: 92px; height: 92px;
  margin: 18px auto 14px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: "Anton", sans-serif;
  font-size: 34px;
  background: linear-gradient(140deg, var(--g1), var(--g3));
  color: #fff;
}
.pp-name { text-align: center; font-size: 24px; text-transform: uppercase; }
.pp-role {
  text-align: center; margin-top: 6px;
  font-size: 12px; color: var(--muted); letter-spacing: 0.08em;
}
.pp-rows { margin-top: 22px; border-top: 1px dashed var(--line); }
.pp-row {
  display: flex; justify-content: space-between; gap: 14px;
  padding: 11px 2px;
  border-bottom: 1px dashed var(--line);
  font-size: 13px;
}
.pp-row span { color: var(--muted); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; }
.pp-row b { font-weight: 600; text-align: right; word-break: break-all; }
.pp-barcode {
  margin-top: 20px; height: 44px;
  background: repeating-linear-gradient(90deg, #fff 0 2px, transparent 2px 5px, #fff 5px 6px, transparent 6px 11px);
  opacity: 0.85;
  border-radius: 4px;
}
.pp-roll-tiny {
  text-align: center; margin-top: 8px;
  font-size: 10px; letter-spacing: 0.5em; color: var(--muted);
}

.pass-copy h3 { font-size: clamp(22px, 3.6vw, 32px); text-transform: uppercase; margin-bottom: 14px; }
.pass-copy p { color: #c9c9c9; line-height: 1.8; font-size: 15px; margin-bottom: 14px; }
.pass-copy .mail-chip {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13px;
  margin-top: 6px;
}
.pass-copy .mail-chip b { color: var(--g1); }

/* — archetype / story section — */
.story-grid {
  display: grid; grid-template-columns: minmax(0, 380px) 1fr;
  gap: 48px; align-items: center;
}
@media (max-width: 820px) { .story-grid { grid-template-columns: 1fr; justify-items: center; } }

.story-frame {
  width: min(340px, 86vw);
  aspect-ratio: 9 / 16;
  border-radius: 26px;
  border: 1px solid #2e2e2e;
  overflow: hidden;
  box-shadow: 0 34px 90px rgba(0,0,0,0.65);
  transform: rotate(1.6deg);
  background: #000;
}
.story-frame canvas { width: 100%; height: 100%; display: block; }

.story-copy .arch-emoji { font-size: 44px; }
.story-copy .arch-emoji img {
  width: 58px; height: 58px;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.5));
  animation: emojiFloat 5s ease-in-out infinite;
}
@keyframes emojiFloat {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50%      { transform: translateY(-9px) rotate(4deg); }
}
.story-copy h3 {
  font-size: clamp(34px, 6vw, 58px);
  text-transform: uppercase;
  margin: 10px 0 14px;
  background: linear-gradient(100deg, var(--g1), var(--g3));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.story-copy p { color: #c9c9c9; line-height: 1.8; font-size: 15px; max-width: 480px; }

.share-btns { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.btn {
  border: none; border-radius: 999px;
  font-size: 14px; font-weight: 700;
  padding: 15px 28px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.1); }
.btn-ig {
  color: #fff;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.btn-ghost {
  background: transparent; color: #fff;
  border: 1px solid #3a3a3a;
}
.share-note { margin-top: 14px; font-size: 12px; color: var(--muted); }

/* — section subtitle & vibe note — */
.sec-sub { color: var(--muted); font-size: 14px; margin: -14px 0 34px; }
.vibe-note { font-size: 12px !important; color: var(--muted) !important; margin-top: 10px; }

/* — a year at scomm timeline — */
.year-line { position: relative; padding-left: 34px; }
.year-line::before {
  content: "";
  position: absolute; left: 15px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--g1), var(--g2), var(--g3));
  opacity: 0.55;
}
.year-item { position: relative; padding: 0 0 26px; }
.year-dot {
  position: absolute; left: -34px; top: 2px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--panel);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
}
.year-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 22px;
  margin-left: 16px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.year-card:hover { border-color: #3d3d3d; transform: translateX(4px); }
.year-card b { font-size: 15px; }
.year-card p { color: var(--muted); font-size: 13px; line-height: 1.7; margin-top: 6px; }

/* — year teaser card (links to /year page) — */
.year-teaser {
  display: block;
  position: relative;
  background: linear-gradient(135deg, #131313, #0d0d0d);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: clamp(36px, 6vw, 60px);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}
.year-teaser:hover {
  border-color: var(--g1);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(255, 60, 172, 0.12), 0 0 80px rgba(43, 134, 197, 0.06);
}
.year-teaser-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255, 60, 172, 0.08), rgba(43, 134, 197, 0.08));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.year-teaser:hover .year-teaser-bg { opacity: 1; }
.year-teaser-content { position: relative; z-index: 1; }
.year-teaser-icons {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 24px;
}
.yt-icon {
  font-size: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  padding: 9px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  transition: transform 0.2s ease, background 0.2s ease;
}
.year-teaser:hover .yt-icon {
  transform: scale(1.1) rotate(-3deg);
  background: rgba(255, 255, 255, 0.08);
}
.year-teaser:hover .yt-icon:nth-child(even) { transform: scale(1.1) rotate(3deg); }
.year-teaser-content h3 {
  font-size: clamp(22px, 4vw, 36px);
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 14px;
  background: linear-gradient(100deg, #fff 30%, var(--g1) 75%, var(--g3));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.year-teaser-content p {
  color: #b0b0b0;
  font-size: 15px;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 22px;
}
.year-teaser-btn {
  display: inline-block;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  background: linear-gradient(90deg, var(--g1), var(--g3));
  padding: 14px 28px;
  border-radius: 999px;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.year-teaser:hover .year-teaser-btn {
  transform: translateX(6px);
  filter: brightness(1.15);
}

/* — faculty & seniors — */
.sub-title {
  font-size: clamp(20px, 3.4vw, 28px);
  text-transform: uppercase;
  margin: 54px 0 22px;
}
.fac-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}
.fac-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 18px;
  text-align: center;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.fac-card:hover {
  transform: translateY(-3px);
  border-color: #3d3d3d;
  box-shadow: 0 8px 32px rgba(255, 60, 172, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.05);
}
.fac-avatar-wrap {
  width: 72px; height: 72px;
  margin: 0 auto 10px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--line);
  position: relative;
}
.fac-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.fac-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: "Anton", sans-serif; font-size: 22px;
  background: linear-gradient(140deg, var(--g2), var(--g3));
  color: #fff;
}
.fac-card b { display: block; font-size: 14px; line-height: 1.35; margin-top: 6px; }
.fac-card small { display: block; margin-top: 6px; color: var(--muted); font-size: 11px; line-height: 1.5; }

.seniors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.senior-col {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}
.senior-head {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(120deg, rgba(255,255,255,0.03), transparent);
}
.senior-head b { display: block; font-size: 14px; }
.senior-head small { color: var(--muted); font-size: 11px; }
.senior-list { padding: 8px 18px 14px; max-height: 330px; overflow-y: auto; }
.senior {
  display: flex; justify-content: space-between; align-items: baseline; gap: 10px;
  padding: 7px 0;
  border-bottom: 1px dashed #1f1f1f;
  font-size: 13px;
}
.senior:last-child { border-bottom: none; }
.senior small { color: var(--muted); font-size: 10px; letter-spacing: 0.06em; flex: none; }

/* — batch wall — */
.batch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 14px;
}
.mate {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  display: flex; align-items: center; gap: 14px;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.mate:hover {
  transform: translateY(-3px);
  border-color: #3d3d3d;
  box-shadow: 0 8px 32px rgba(255, 60, 172, 0.08);
}
.mate.me {
  border-color: transparent;
  background:
    linear-gradient(var(--panel), var(--panel)) padding-box,
    linear-gradient(120deg, var(--g1), var(--g3)) border-box;
  border: 1px solid transparent;
}
.mate .avatar {
  width: 46px; height: 46px; flex: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: "Anton", sans-serif; font-size: 17px;
  color: #fff;
}
.mate b { display: block; font-size: 14px; line-height: 1.3; }
.mate small { color: var(--muted); font-size: 11px; letter-spacing: 0.06em; }
.mate .you-tag {
  margin-left: auto;
  font-size: 9px; font-weight: 800; letter-spacing: 0.2em;
  color: var(--g1);
}

/* — department — */
.dept {
  background: linear-gradient(150deg, #131313, #0b0b0b);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: clamp(28px, 5vw, 52px);
  display: grid; grid-template-columns: 1fr auto;
  gap: 36px; align-items: center;
}
@media (max-width: 720px) { .dept { grid-template-columns: 1fr; } }
.dept h3 { font-size: clamp(24px, 4.4vw, 38px); text-transform: uppercase; margin-bottom: 14px; }
.dept p { color: #c4c4c4; line-height: 1.85; font-size: 15px; max-width: 560px; }
.dept .logos { display: flex; flex-direction: column; gap: 22px; align-items: center; }

/* SCOMM lockup rebuilt from the high-res crest so it stays sharp when enlarged */
.scomm-lockup { display: flex; align-items: center; gap: 16px; }
.scomm-lockup > img { height: 84px; width: 84px; flex: none; }
.scomm-lockup-text { line-height: 1.15; }
.scomm-lockup-text b {
  display: block;
  font-size: 19px; font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
}
.scomm-lockup-text span {
  display: block;
  margin-top: 6px;
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--color-muted, #9a9a9a);
}
.dept .chips { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.dept .chip {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid var(--line); color: #bbb;
  border-radius: 999px; padding: 7px 14px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.dept .chip:hover {
  border-color: var(--g1);
  background: rgba(255, 60, 172, 0.06);
}

/* — footer — */
footer {
  border-top: 1px solid var(--line);
  margin-top: 6vh;
  padding: 34px 0 46px;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
}
footer img { height: 26px; opacity: 0.85; margin-bottom: 14px; }

/* ═════════════════ LANDING PAGE ═════════════════ */

.landing-hero { text-align: center; padding: 12vh 0 7vh; }
.landing-hero .kicker {
  font-size: 12px; font-weight: 700; letter-spacing: 0.34em;
  text-transform: uppercase; color: var(--muted);
}
.landing-hero h1 {
  font-size: clamp(44px, 10vw, 110px);
  text-transform: uppercase; line-height: 0.98;
  margin-top: 16px;
  background: linear-gradient(120deg, #fff 25%, #ff3cac 60%, #2b86c5);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.landing-hero p { margin-top: 20px; color: #c9c9c9; font-size: 16px; }

/* fade-up reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.on { opacity: 1; transform: none; }

/* confetti canvas */
#confetti {
  position: fixed; inset: 0; z-index: 90;
  pointer-events: none;
}

/* ═════════════════ INTERACTIVE EFFECTS ═════════════════ */

/* — card hover glow — */
.year-card {
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.3s ease;
}
.year-card:hover {
  box-shadow: 0 8px 32px rgba(255, 60, 172, 0.1);
}

/* — press pass tilt — */
.press-pass {
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}
.press-pass:hover {
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7), 0 0 60px rgba(255, 60, 172, 0.08);
}

/* — ripple click — */
.ripple {
  position: absolute;
  width: 0; height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  transform: translate(-50%, -50%);
  animation: rippleAnim 0.6s ease-out forwards;
  pointer-events: none;
  z-index: 10;
}
@keyframes rippleAnim {
  to { width: 300px; height: 300px; opacity: 0; }
}

/* — floating particles — */
.particle {
  position: absolute;
  background: linear-gradient(135deg, var(--g1), var(--g3));
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  animation: floatParticle ease-in-out infinite;
}
@keyframes floatParticle {
  0%, 100% { opacity: 0; transform: translateY(0) scale(0.5); }
  30% { opacity: 0.5; }
  50% { opacity: 0.35; transform: translateY(-60px) scale(1); }
  70% { opacity: 0.2; }
}

/* — staggered batch cards — */
.batch-grid .mate { animation: fadeSlideUp 0.5s ease backwards; }
.batch-grid .mate:nth-child(1) { animation-delay: 0s; }
.batch-grid .mate:nth-child(2) { animation-delay: 0.06s; }
.batch-grid .mate:nth-child(3) { animation-delay: 0.12s; }
.batch-grid .mate:nth-child(4) { animation-delay: 0.18s; }
.batch-grid .mate:nth-child(5) { animation-delay: 0.24s; }
.batch-grid .mate:nth-child(6) { animation-delay: 0.30s; }
.batch-grid .mate:nth-child(7) { animation-delay: 0.36s; }
.batch-grid .mate:nth-child(8) { animation-delay: 0.42s; }
.batch-grid .mate:nth-child(9) { animation-delay: 0.48s; }
.batch-grid .mate:nth-child(10) { animation-delay: 0.54s; }
.batch-grid .mate:nth-child(11) { animation-delay: 0.60s; }
.batch-grid .mate:nth-child(12) { animation-delay: 0.66s; }
.batch-grid .mate:nth-child(13) { animation-delay: 0.72s; }
.batch-grid .mate:nth-child(14) { animation-delay: 0.78s; }
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

/* — staggered faculty cards — */
.fac-grid .fac-card { animation: fadeSlideUp 0.5s ease backwards; }
.fac-grid .fac-card:nth-child(1) { animation-delay: 0s; }
.fac-grid .fac-card:nth-child(2) { animation-delay: 0.08s; }
.fac-grid .fac-card:nth-child(3) { animation-delay: 0.16s; }
.fac-grid .fac-card:nth-child(4) { animation-delay: 0.24s; }
.fac-grid .fac-card:nth-child(5) { animation-delay: 0.32s; }
.fac-grid .fac-card:nth-child(6) { animation-delay: 0.40s; }
.fac-grid .fac-card:nth-child(7) { animation-delay: 0.48s; }
.fac-grid .fac-card:nth-child(8) { animation-delay: 0.56s; }
.fac-grid .fac-card:nth-child(9) { animation-delay: 0.64s; }

/* ═════════════════ MOBILE RESPONSIVENESS ═════════════════ */

@media (max-width: 480px) {
  .wrap { padding: 0 16px; }

  .topbar img { height: 26px; }
  .topbar .pill { font-size: 9px; padding: 6px 12px; }

  .hero { padding: 6vh 0 4vh; }
  .hero h1 { font-size: clamp(40px, 14vw, 80px); }
  .hero .tagline { font-size: 15px; margin-top: 16px; }
  .hero .welcome-line { font-size: 13px; }

  .day-chip {
    padding: 10px 16px;
    font-size: 12px;
    margin-top: 24px;
    text-align: center;
  }
  .day-chip b { font-size: 18px; }

  .sec-head {
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
  }
  .sec-head h2 { font-size: clamp(22px, 6vw, 32px); }
  .sec-head .rule { display: none; }

  .pass-grid { gap: 28px; }
  .press-pass {
    transform: none !important;
    padding: 20px;
  }
  .pp-photo { width: 72px; height: 72px; font-size: 28px; }
  .pp-name { font-size: 20px; }
  .pp-row { font-size: 12px; padding: 9px 2px; }
  .pp-row b { font-size: 12px; }

  .story-grid { gap: 28px; }
  .story-frame {
    width: min(280px, 90vw);
    transform: none;
  }
  .story-copy .arch-emoji { font-size: 36px; }
  .story-copy .arch-emoji img { width: 46px; height: 46px; }
  .story-copy h3 { font-size: clamp(28px, 8vw, 42px); }

  .batch-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .mate { padding: 14px; gap: 12px; min-height: 44px; }
  .mate .avatar { width: 40px; height: 40px; font-size: 15px; }
  .mate b { font-size: 13px; }

  .fac-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .fac-card { padding: 16px 12px; }
  .fac-avatar-wrap { width: 56px; height: 56px; }
  .fac-card b { font-size: 12px; }
  .fac-card small { font-size: 10px; }

  .seniors-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .senior-list { max-height: 260px; }

  .dept { padding: 22px; gap: 22px; }
  .dept h3 { font-size: clamp(20px, 5vw, 28px); }
  .dept p { font-size: 13px; line-height: 1.7; }
  .dept .chips { gap: 6px; }
  .dept .chip { font-size: 9px; padding: 6px 10px; }
  .scomm-lockup > img { height: 62px; width: 62px; }
  .scomm-lockup-text b { font-size: 15px; }
  .scomm-lockup-text span { font-size: 9px; letter-spacing: 0.18em; }

  .year-line { padding-left: 28px; }
  .year-card { padding: 14px 16px; margin-left: 10px; }
  .year-card b { font-size: 14px; }
  .year-card p { font-size: 12px; }
  .year-dot { width: 28px; height: 28px; font-size: 13px; left: -28px; }

  .share-btns { flex-direction: column; gap: 10px; }
  .btn { padding: 13px 22px; font-size: 13px; justify-content: center; }

  .pass-copy h3 { font-size: clamp(20px, 5vw, 26px); }
  .pass-copy p { font-size: 13px; line-height: 1.7; }
  .pass-copy .mail-chip { font-size: 11px; padding: 8px 14px; }

  .landing-hero { padding: 8vh 0 5vh; }
  .landing-hero h1 { font-size: clamp(36px, 12vw, 70px); }
  .landing-hero p { font-size: 14px; }

  footer { padding: 24px 0 32px; font-size: 11px; }
  footer img { height: 20px; }

  /* disable tilt on mobile */
  .press-pass { transform: none !important; }
}

@media (max-width: 380px) {
  .wrap { padding: 0 12px; }
  .hero h1 { font-size: clamp(34px, 16vw, 60px); }
  .fac-grid { grid-template-columns: 1fr 1fr; }
  .fac-avatar-wrap { width: 48px; height: 48px; }
  .fac-card b { font-size: 11px; }
  .fac-card small { font-size: 9px; }
  .mate .avatar { width: 36px; height: 36px; font-size: 14px; }
  .pp-row span { font-size: 9px; }
  .day-chip { font-size: 11px; padding: 8px 12px; }
}

/* improve touch targets */
@media (hover: none) {
  .mate, .fac-card, .year-card, .btn {
    min-height: 44px;
  }
  .mate:active { transform: scale(0.97); }
  .fac-card:active { transform: scale(0.97); }
  .year-card:active { transform: translateX(2px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
