/* ============================================================
   LADC Hub — industrial-editorial Penske homepage
   Display: Archivo · Body: Public Sans · Labels: IBM Plex Mono
   ============================================================ */

:root {
  --navy: #003366;
  --navy-d: #00254d;
  --navy-dd: #001a33;
  --gold: #FFCB05;
  --gold-d: #e0b200;

  --ink: #0e1726;
  --ink-soft: #46566b;
  --ink-faint: #7a8aa0;
  --paper: #f4f1ea;          /* warm editorial paper, not stark white */
  --card: #ffffff;
  --line: #e3ddd0;
  --hover: rgba(0,51,102,.05);

  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body: 'Public Sans', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;

  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 64px);
  --radius: 14px;
}

[data-theme="dark"] {
  --ink: #eef3f9;
  --ink-soft: #aab8c9;
  --ink-faint: #6b7a8d;
  --paper: #0b1119;
  --card: #131c28;
  --line: #233144;
  --hover: rgba(255,203,5,.06);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.hub {
  margin: 0;
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { font-family: var(--font-display); margin: 0; letter-spacing: -.02em; }

/* grain overlay */
.hub-grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* eyebrow label (mono, tracked) */
.eyebrow {
  font-family: var(--font-mono); font-size: 12px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--ink-faint);
  margin: 0 0 14px; display: inline-flex; align-items: center; gap: 9px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 4px rgba(255,203,5,.18); }

/* ---------------- NAV ---------------- */
.hub-nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--pad);
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.hub-brand { display: flex; align-items: baseline; gap: 8px; }
.hub-brand .mark { font-family: var(--font-display); font-weight: 900; font-size: 22px;
  letter-spacing: -.03em; color: var(--ink); }
.hub-brand .sub { font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: .28em; color: var(--navy); background: var(--gold);
  padding: 2px 7px; border-radius: 4px; }
[data-theme="dark"] .hub-brand .sub { color: var(--navy-dd); }
.hub-nav-right { display: flex; align-items: center; gap: 14px; margin-left: auto; }

/* top-bar banner ("Laredo Distribution Center" next to the tabs) */
.hub-banner { display: flex; align-items: center; gap: 10px; margin-left: 20px;
  padding-left: 20px; border-left: 1px solid var(--line); }
.hub-banner .b-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 4px rgba(255,203,5,.18); flex-shrink: 0; }
.hub-banner .b-text { font-family: var(--font-mono); font-size: 12px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); white-space: nowrap; }
.hide-mobile { } /* visible by default; hidden below 900px (see media query) */
@media (max-width: 900px) { .hide-mobile { display: none !important; } }

/* compact search in the top bar (next to the language button) */
.nav-search { position: relative; display: flex; align-items: center; gap: 8px;
  background: var(--card); border: 1px solid var(--line); border-radius: 9px;
  height: 38px; padding: 0 10px; width: clamp(160px, 22vw, 260px);
  transition: border-color .18s, box-shadow .18s; }
.nav-search:focus-within { border-color: var(--navy); box-shadow: 0 0 0 3px var(--hover); }
[data-theme="dark"] .nav-search:focus-within { border-color: var(--gold); }
.nav-search > .bi { color: var(--ink-faint); font-size: 15px; }
.nav-search input { flex: 1; min-width: 0; background: none; border: none; outline: none;
  color: var(--ink); font-family: var(--font-body); font-size: 14px; }
.nav-search .kbd { font-family: var(--font-mono); font-size: 11px; color: var(--ink-faint);
  border: 1px solid var(--line); border-radius: 5px; padding: 2px 6px; }
.nav-search .hub-search-results { position: absolute; top: calc(100% + 8px); right: 0; left: auto;
  width: min(420px, 92vw); max-width: none; margin: 0; z-index: 200; }
@media (max-width: 680px) { .nav-search { width: 150px; } .nav-search .kbd { display: none; } }
@media (max-width: 460px) { .nav-search { display: none; } }
.hub-lang { font-family: var(--font-mono); font-size: 12px; font-weight: 600; letter-spacing: .1em;
  color: var(--ink-soft); padding: 6px 9px; border: 1px solid var(--line); border-radius: 7px; }
.hub-lang:hover { border-color: var(--navy); color: var(--ink); }
.hub-theme { background: none; border: 1px solid var(--line); border-radius: 7px; cursor: pointer;
  width: 36px; height: 32px; color: var(--ink-soft); display: grid; place-items: center; }
.hub-theme .icon-moon { display: none; }
[data-theme="dark"] .hub-theme .icon-sun { display: none; }
[data-theme="dark"] .hub-theme .icon-moon { display: inline; }
.hub-login { font-weight: 600; font-size: 14px; background: var(--navy); color: #fff;
  padding: 8px 16px; border-radius: 8px; }
.hub-login:hover { background: var(--navy-d); }
[data-theme="dark"] .hub-login { background: var(--gold); color: var(--navy-dd); }
.hub-user { display: flex; align-items: center; gap: 12px; font-size: 14px; }
.hub-user .nm { font-weight: 600; }
.hub-user .adm, .hub-user .out { color: var(--ink-soft); }
.hub-user .adm:hover, .hub-user .out:hover { color: var(--navy); }

/* nav tabs */
.hub-tabs { display: flex; gap: 4px; margin-left: 28px; }
.hub-tabs a { font-weight: 600; font-size: 14px; color: var(--ink-soft); padding: 8px 14px;
  border-radius: 8px; position: relative; transition: color .15s, background .15s; }
.hub-tabs a:hover { color: var(--ink); background: var(--hover); }
.hub-tabs a.active { color: var(--ink); }
.hub-tabs a.active::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 1px;
  height: 2px; background: var(--gold); border-radius: 2px; }
@media (max-width: 560px) { .hub-tabs { margin-left: 12px; } .hub-tabs a { padding: 8px 10px; } }

/* dropdown app-result icon + lock */
.hub-search-results .r-ico { width: 28px; height: 28px; border-radius: 7px; display: grid; place-items: center;
  color: #fff; font-size: 14px; flex-shrink: 0; }
.hub-search-results .r-lock { margin-left: auto; color: var(--ink-faint); font-size: 12px; padding-left: 8px; }
.hub-search-results .r-fmt { margin-left: auto; font-family: var(--font-mono); font-size: 10px; font-weight: 600;
  letter-spacing: .06em; color: var(--ink-faint); border: 1px solid var(--line); border-radius: 4px; padding: 1px 6px; }
.hub-search-results .r-fmt + .r-lock { margin-left: 8px; }

/* ---------------- APPS PAGE ---------------- */
.apps-page { padding-top: clamp(28px, 4vw, 48px); }
.apps-head { margin-bottom: 30px; }
.apps-head h1 { font-family: var(--font-display); font-weight: 900; font-size: clamp(30px, 5vw, 52px);
  display: flex; align-items: baseline; gap: 14px; margin: 6px 0 22px; }
.apps-head h1 .count { font-family: var(--font-mono); font-size: 16px; font-weight: 500; color: var(--ink-faint); }
.apps-search { position: relative; display: flex; align-items: center; gap: 12px; max-width: 520px;
  background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 0 16px; height: 52px;
  transition: border-color .2s, box-shadow .2s; }
.apps-search:focus-within { border-color: var(--navy); box-shadow: 0 0 0 4px var(--hover); }
[data-theme="dark"] .apps-search:focus-within { border-color: var(--gold); }
.apps-search > .bi { color: var(--ink-faint); font-size: 18px; }
.apps-search input { flex: 1; background: none; border: none; outline: none; color: var(--ink);
  font-family: var(--font-body); font-size: 16px; }
.apps-search .kbd { font-family: var(--font-mono); font-size: 12px; color: var(--ink-faint);
  border: 1px solid var(--line); border-radius: 6px; padding: 3px 8px; }

/* ---------------- HERO ---------------- */
.hub-hero {
  position: relative; isolation: isolate;
  min-height: clamp(440px, 74vh, 720px);
  display: flex; align-items: center;
  padding: 60px var(--pad) 80px;
  background: var(--navy-dd);
  color: #fff; overflow: hidden;
}
/* slim variant: greeting + search only, no giant title */
.hub-hero--slim { min-height: 0; padding: clamp(26px, 4vw, 44px) var(--pad); align-items: center; }
.hub-hero--slim .hero-greet { font-size: clamp(18px, 2.6vw, 26px); margin: 0 0 18px; }
.hub-hero--slim .hub-search { height: 56px; }
.hero-mesh {
  position: absolute; inset: -20%; z-index: -2;
  background:
    radial-gradient(40% 50% at 18% 28%, rgba(0,90,180,.65), transparent 60%),
    radial-gradient(36% 44% at 82% 22%, rgba(255,203,5,.20), transparent 60%),
    radial-gradient(50% 60% at 70% 86%, rgba(0,70,140,.55), transparent 62%),
    radial-gradient(40% 50% at 30% 90%, rgba(0,40,90,.7), transparent 60%);
  filter: blur(8px) saturate(115%);
  animation: meshDrift 26s ease-in-out infinite alternate;
}
.hero-photolayer { /* Ken-Burns photo layer; populated by JS (Task 7) */
  position: absolute; inset: 0; z-index: -3; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.hub-hero::after { /* navy wash + vignette over photos */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, rgba(0,26,51,.92) 0%, rgba(0,26,51,.55) 48%, rgba(0,37,77,.35) 100%);
}
@keyframes meshDrift {
  0%   { transform: translate3d(0,0,0) scale(1); }
  50%  { transform: translate3d(2%, -2%, 0) scale(1.08); }
  100% { transform: translate3d(-2%, 1%, 0) scale(1.05); }
}
.hero-inner { position: relative; max-width: var(--maxw); width: 100%; margin: 0 auto; }
.hub-hero .eyebrow { color: rgba(255,255,255,.78); }
.hero-title {
  font-weight: 900; line-height: .94; letter-spacing: -.035em;
  font-size: clamp(40px, 8.5vw, 116px);
  max-width: 14ch; text-wrap: balance;
  background: linear-gradient(180deg, #fff 60%, #cfe0f5);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-greet { font-size: clamp(17px, 2.4vw, 24px); color: rgba(255,255,255,.82);
  margin: 22px 0 34px; font-weight: 400; }
.hero-greet span { color: var(--gold); font-weight: 600; }

/* search */
.hub-search {
  position: relative; display: flex; align-items: center; gap: 14px;
  max-width: 680px; background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.22); border-radius: 14px;
  padding: 0 18px; height: 64px; backdrop-filter: blur(6px);
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.hub-search:focus-within { border-color: var(--gold); background: rgba(255,255,255,.16);
  box-shadow: 0 0 0 4px rgba(255,203,5,.18); }
.hub-search > .bi { color: rgba(255,255,255,.7); font-size: 20px; }
.hub-search input {
  flex: 1; background: none; border: none; outline: none; color: #fff;
  font-family: var(--font-body); font-size: 18px;
}
.hub-search input::placeholder { color: rgba(255,255,255,.55); }
.hub-search .kbd { font-family: var(--font-mono); font-size: 12px; color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.3); border-radius: 6px; padding: 3px 8px; }

/* live results dropdown under hero search */
.hub-search-results {
  position: relative; max-width: 680px; margin-top: 10px;
  background: var(--card); color: var(--ink); border: 1px solid var(--line);
  border-radius: 12px; box-shadow: 0 24px 60px rgba(0,0,0,.28); overflow: hidden;
}
.hub-search-results .grp-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--ink-faint); padding: 12px 16px 6px; }
.hub-search-results a { display: flex; align-items: center; gap: 12px; padding: 10px 16px; }
.hub-search-results a:hover, .hub-search-results a.active { background: var(--hover); }
.hub-search-results .r-ref { font-family: var(--font-mono); font-size: 12px; color: var(--navy);
  background: rgba(0,51,102,.08); border-radius: 5px; padding: 2px 7px; flex-shrink: 0; }
[data-theme="dark"] .hub-search-results .r-ref { color: var(--gold); background: rgba(255,203,5,.1); }
.hub-search-results .r-title { font-weight: 500; font-size: 14px; }
.hub-search-results .r-none { padding: 16px; color: var(--ink-faint); font-size: 14px; }

.hero-scrollcue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); }
.hero-scrollcue span { display: block; width: 1px; height: 40px;
  background: linear-gradient(var(--gold), transparent); animation: cue 2.2s ease-in-out infinite; }
@keyframes cue { 0%,100% { opacity: .25; transform: scaleY(.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* ---------------- MAIN / SECTIONS ---------------- */
.hub-main { max-width: var(--maxw); margin: 0 auto; padding: clamp(48px,7vw,96px) var(--pad) 40px; }
.hub-section { margin-bottom: clamp(56px, 9vw, 120px); }
.sec-head { display: flex; flex-direction: column; margin-bottom: 28px; }
.sec-head h2 { font-size: clamp(26px, 4vw, 46px); font-weight: 800; display: flex; align-items: baseline; gap: 14px; }
.sec-head h2 .count { font-family: var(--font-mono); font-size: 15px; font-weight: 500; color: var(--ink-faint); }
.sec-lead { color: var(--ink-soft); font-size: 16px; max-width: 60ch; margin: -12px 0 24px; }
.empty-note { color: var(--ink-faint); font-size: 15px; padding: 22px 0; border-top: 1px solid var(--line); }

/* scroll reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------------- ANNOUNCEMENTS ---------------- */
.ann-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 28px; }
.ann-featured { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; border-left: 5px solid var(--navy); }
.ann-featured .ann-cover { height: 360px; background-size: cover; background-position: center; }
.ann-featured .ann-body { padding: 34px 38px 38px; }
.ann-featured h3 { font-size: 38px; font-weight: 800; margin: 14px 0 14px; line-height: 1.05; }
.ann-excerpt { color: var(--ink-soft); font-size: 18px; line-height: 1.65; }
.ann-featured time, .ann-card time { font-family: var(--font-mono); font-size: 12px; color: var(--ink-faint);
  display: block; margin-top: 16px; letter-spacing: .06em; }
.cat-label { font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: .16em;
  color: var(--navy); }
.ann-rail { display: flex; flex-direction: column; gap: 14px; }
.ann-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 20px; border-left: 4px solid var(--ink-faint); transition: transform .18s, border-color .18s; }
.ann-card:hover { transform: translateX(4px); }
.ann-card h4 { font-size: 17px; font-weight: 700; margin: 8px 0 0; line-height: 1.2; }
/* category accents */
.cat-news   { border-left-color: var(--navy); }
.cat-safety { border-left-color: #d7263d; }
.cat-event  { border-left-color: var(--gold); }
.cat-safety .cat-label { color: #d7263d; }
.cat-event  .cat-label { color: var(--gold-d); }

/* ---------------- LIVE SIGNAGE PANEL ---------------- */
.hub-signage { margin-bottom: 24px; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: #000; box-shadow: 0 14px 34px rgba(0,0,0,.14); }
.signage-bar { display: flex; align-items: center; gap: 12px; padding: 10px 16px;
  background: var(--navy-dd); color: #fff; }
.signage-bar .live { display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: .18em; color: #fff; }
.signage-bar .pulse { width: 8px; height: 8px; border-radius: 50%; background: #ff3b3b;
  box-shadow: 0 0 0 0 rgba(255,59,59,.6); animation: sgPulse 1.8s ease-out infinite; }
@keyframes sgPulse { 0% { box-shadow: 0 0 0 0 rgba(255,59,59,.6); } 100% { box-shadow: 0 0 0 9px rgba(255,59,59,0); } }
.signage-bar .sg-label { font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.78); }
.signage-bar .sg-full { margin-left: auto; color: rgba(255,255,255,.7); font-size: 15px; }
.signage-bar .sg-full:hover { color: var(--gold); }
.signage-frame { position: relative; width: 100%; aspect-ratio: 16 / 9; background: #000; }
.signage-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }

/* event photo slideshow (fresh uploads play here for 7 days, random order) */
.event-slideshow { position: absolute; inset: 0; }
.es-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity .8s ease; }
.es-slide.is-active { opacity: 1; }

/* ---------------- ISO RESULTS ---------------- */
.iso-results { display: grid; gap: 10px; }
.iso-hint { border: 1px dashed var(--line); border-radius: var(--radius); text-align: center; }
.iso-item { display: flex; align-items: center; gap: 14px; background: var(--card);
  border: 1px solid var(--line); border-radius: 10px; padding: 14px 18px; transition: border-color .18s, transform .18s; }
.iso-item:hover { border-color: var(--navy); transform: translateX(3px); }
.iso-item .ref { font-family: var(--font-mono); font-size: 12px; font-weight: 600; color: var(--navy);
  background: rgba(0,51,102,.08); border-radius: 6px; padding: 3px 9px; flex-shrink: 0; }
[data-theme="dark"] .iso-item .ref { color: var(--gold); background: rgba(255,203,5,.1); }
.iso-item .ttl { font-weight: 500; }
.iso-item .kind { font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-faint); margin-left: auto; flex-shrink: 0; }
.iso-item .lock { color: var(--ink-faint); }

/* ---------------- APP GRID ---------------- */
.app-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; }
.app-tile { position: relative; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px 18px 18px; display: flex; flex-direction: column; gap: 14px;
  min-height: 132px; transition: transform .18s, box-shadow .18s, border-color .18s; overflow: hidden; }
.app-tile::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--tile); opacity: .9; }
.app-tile:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(0,0,0,.13); border-color: transparent; }
.app-tile .tile-ico { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center;
  font-size: 20px; color: #fff; background: var(--tile); }
.app-tile .tile-name { font-weight: 600; font-size: 15px; line-height: 1.25; margin-top: auto; }
.app-tile .tile-lock { position: absolute; top: 14px; right: 14px; color: var(--ink-faint); font-size: 13px; }
.app-tile.is-locked { opacity: .62; }
.app-tile.is-locked:hover { opacity: 1; }
.app-tile.hidden, .ql-card.hidden { display: none; }
.app-noresults { color: var(--ink-faint); padding: 20px 0; }

/* ---------------- PHOTO WALL ---------------- */
.hub-photos .photo-marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.photo-track { display: flex; gap: 14px; width: max-content; animation: marquee 60s linear infinite; }
.hub-photos .photo-marquee:hover .photo-track { animation-play-state: paused; }
.photo-cell { flex: 0 0 auto; width: 260px; height: 180px; border: none; padding: 0; cursor: pointer;
  border-radius: 12px; overflow: hidden; background: var(--card); }
.photo-cell img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.photo-cell:hover img { transform: scale(1.06); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------------- QUICK LINKS ---------------- */
.ql-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; }
.ql-card { display: flex; align-items: center; gap: 14px; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px 20px; font-weight: 600; transition: border-color .18s, transform .18s; }
.ql-card:hover { border-color: var(--navy); transform: translateY(-3px); }
.ql-card > .bi:first-child { font-size: 22px; color: var(--navy); }
[data-theme="dark"] .ql-card > .bi:first-child { color: var(--gold); }
.ql-card .go { margin-left: auto; color: var(--ink-faint); transition: transform .18s; }
.ql-card:hover .go { transform: translate(2px,-2px); color: var(--navy); }

/* ---------------- FOOTER ---------------- */
.hub-footer { text-align: center; padding: 40px var(--pad) 60px; color: var(--ink-faint);
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; border-top: 1px solid var(--line); }
.hub-footer .b { color: var(--ink); font-weight: 600; }
.hub-footer .sep { margin: 0 8px; opacity: .5; }

/* ---------------- LIGHTBOX ---------------- */
.hub-lightbox { position: fixed; inset: 0; z-index: 1000; background: rgba(0,10,20,.92);
  display: grid; place-items: center; padding: 4vw; }
.hub-lightbox[hidden] { display: none; } /* author display:grid otherwise overrides the hidden attribute */
.hub-lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 8px; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lb-close { position: absolute; top: 22px; right: 26px; background: none; border: none; color: #fff;
  font-size: 26px; cursor: pointer; }

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 860px) {
  .ann-grid { grid-template-columns: 1fr; }
  .hero-title { max-width: 100%; }
}
@media (max-width: 560px) {
  .hub-user .nm { display: none; }
  .photo-cell { width: 200px; height: 140px; }
}

/* ---------------- MOTION SAFETY ---------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .photo-track { width: auto; flex-wrap: wrap; }
}
