/* ==========================================================================
   IEEEC 2021 — conference theme layer
   Built on a self hosted Bulma core (assets/css/bulma.min.css).
   Every token below is either inherited from the original conference site
   (navy / gold / Poppins) or derived from the project design seed.
   Naming family: vgj-  (seed derived, unique to this site)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Bulma variable customisation (framework fingerprint removal)
   -------------------------------------------------------------------------- */
:root {
  --bulma-family-primary: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --bulma-family-secondary: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --bulma-family-code: 'IBM Plex Mono', ui-monospace, Menlo, Consolas, monospace;

  --bulma-primary-h: 220;
  --bulma-primary-s: 57%;
  --bulma-primary-l: 38%;

  --bulma-link-h: 220;
  --bulma-link-s: 57%;
  --bulma-link-l: 38%;

  --bulma-radius: 10px;
  --bulma-radius-small: 6px;
  --bulma-radius-large: 14px;

  --bulma-body-color: #59617a;
  --bulma-body-background-color: #ffffff;
  --bulma-title-color: #1b2434;
  --bulma-title-weight: 700;
  --bulma-content-heading-color: #1b2434;
  --bulma-border: #e4e8f1;
  --bulma-border-weak: #eef1f7;
}

/* --------------------------------------------------------------------------
   2. Site design tokens
   -------------------------------------------------------------------------- */
:root {
  --vgj-navy: #16294f;
  --vgj-navy-700: #1e3c72;
  --vgj-blue: #2a5298;
  --vgj-blue-600: #244a8c;
  --vgj-blue-tint: #eef3fb;
  --vgj-gold: #f4c150;
  --vgj-gold-600: #dca92f;
  --vgj-ink: #1b2434;
  --vgj-body: #59617a;
  --vgj-muted: #7a8299;
  --vgj-line: #e4e8f1;
  --vgj-paper: #ffffff;
  --vgj-mist: #f5f7fc;

  --vgj-radius: 10px;
  --vgj-radius-sm: 6px;
  --vgj-radius-lg: 18px;

  --vgj-shadow-1: 0 1px 2px rgba(22, 41, 79, .05), 0 10px 26px -16px rgba(22, 41, 79, .28);
  --vgj-shadow-2: 0 2px 6px rgba(22, 41, 79, .07), 0 26px 52px -28px rgba(22, 41, 79, .38);

  --vgj-wrap: 1180px;
  --vgj-gutter: 1.5rem;
  --vgj-section: 120px;
  --vgj-ease: cubic-bezier(.22, .61, .36, 1);

  --vgj-gradient: linear-gradient(160deg, #1e3c72 0%, #2a5298 62%, #244a8c 100%);
  --vgj-gradient-deep: linear-gradient(180deg, #16294f 0%, #1e3c72 100%);
}

/* --------------------------------------------------------------------------
   3. Base
   -------------------------------------------------------------------------- */
html { scroll-behavior: smooth; }

body {
  font-family: var(--bulma-family-primary);
  color: var(--vgj-body);
  background: var(--vgj-paper);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--vgj-ink);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.01em;
}

a { color: var(--vgj-blue); }
a:hover { color: var(--vgj-blue-600); }

::selection { background: var(--vgj-navy); color: #fff; }

.vgj-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--vgj-gold);
  color: var(--vgj-navy);
  padding: .7rem 1.1rem;
  font-weight: 600;
  border-radius: 0 0 var(--vgj-radius-sm) 0;
}
.vgj-skip:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--vgj-gold);
  outline-offset: 2px;
  border-radius: 3px;
}

.vgj-container {
  width: 100%;
  max-width: var(--vgj-wrap);
  margin-inline: auto;
  padding-inline: var(--vgj-gutter);
}

.vgj-section { padding-block: var(--vgj-section); position: relative; }
.vgj-section--mist { background: var(--vgj-mist); }
.vgj-section--tight { padding-block: 80px; }

.vgj-kicker {
  display: inline-block;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--vgj-gold-600);
  margin-bottom: .9rem;
}

.vgj-h2 {
  font-size: clamp(1.75rem, 3.1vw, 2.5rem);
  margin-bottom: 1rem;
}

.vgj-lead {
  font-size: 1.06rem;
  color: var(--vgj-body);
  max-width: 62ch;
}

.vgj-rule {
  width: 58px;
  height: 4px;
  border-radius: 4px;
  background: var(--vgj-gold);
  margin: 1.1rem 0 1.6rem;
}
.vgj-center .vgj-rule { margin-inline: auto; }
.vgj-center { text-align: center; }
.vgj-center .vgj-lead { margin-inline: auto; }

.vgj-muted { color: var(--vgj-muted); }

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.vgj-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: inherit;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 1rem 1.7rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .25s var(--vgj-ease), background-color .25s var(--vgj-ease),
              color .25s var(--vgj-ease), border-color .25s var(--vgj-ease), box-shadow .25s var(--vgj-ease);
}
.vgj-btn:hover { transform: translateY(-2px); }

.vgj-btn--navy { background: var(--vgj-blue); color: #fff; }
.vgj-btn--navy:hover { background: var(--vgj-navy); color: #fff; box-shadow: var(--vgj-shadow-1); }

.vgj-btn--gold { background: var(--vgj-gold); color: var(--vgj-navy); }
.vgj-btn--gold:hover { background: #fff; color: var(--vgj-navy); box-shadow: var(--vgj-shadow-1); }

.vgj-btn--ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .55); }
.vgj-btn--ghost:hover { background: rgba(255, 255, 255, .12); color: #fff; border-color: #fff; }

.vgj-btn--outline { background: transparent; color: var(--vgj-blue); border-color: var(--vgj-line); }
.vgj-btn--outline:hover { border-color: var(--vgj-blue); color: var(--vgj-navy); background: var(--vgj-blue-tint); }

.vgj-btn--sm { padding: .7rem 1.15rem; font-size: .7rem; }

.vgj-btnrow { display: flex; flex-wrap: wrap; gap: .9rem; }

/* --------------------------------------------------------------------------
   5. Header + navigation
   -------------------------------------------------------------------------- */
.vgj-header {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--vgj-line);
  transition: box-shadow .3s var(--vgj-ease);
}
.vgj-header.is-scrolled { box-shadow: 0 12px 30px -22px rgba(22, 41, 79, .55); }

.vgj-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}

.vgj-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  flex: 0 0 auto;
}
.vgj-brand img { width: 44px; height: 48px; object-fit: contain; }
.vgj-brand__name {
  display: block;
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: .06em;
  color: var(--vgj-navy);
  text-transform: uppercase;
  line-height: 1.05;
}
.vgj-brand__tag {
  display: block;
  font-size: .64rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--vgj-muted);
  font-weight: 500;
}

.vgj-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0 11px;
  border: 1px solid var(--vgj-line);
  border-radius: var(--vgj-radius-sm);
  background: #fff;
  cursor: pointer;
}
.vgj-burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--vgj-navy);
  border-radius: 2px;
  transition: transform .3s var(--vgj-ease), opacity .2s var(--vgj-ease);
}
.vgj-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.vgj-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.vgj-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.vgj-nav__list {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: .1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.vgj-nav__link {
  display: inline-block;
  position: relative;
  padding: .55rem .58rem;
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .05em;
  white-space: nowrap;
  text-transform: uppercase;
  color: var(--vgj-ink);
  text-decoration: none;
  border-radius: var(--vgj-radius-sm);
  transition: color .2s var(--vgj-ease), background-color .2s var(--vgj-ease);
}
.vgj-nav__link::after {
  content: "";
  position: absolute;
  left: .58rem;
  right: .58rem;
  bottom: .3rem;
  height: 2px;
  background: var(--vgj-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s var(--vgj-ease);
}
.vgj-nav__link:hover { color: var(--vgj-blue); }
.vgj-nav__link:hover::after { transform: scaleX(1); }
.vgj-nav__link[aria-current="page"] { color: var(--vgj-blue); }
.vgj-nav__link[aria-current="page"]::after { transform: scaleX(1); }

.vgj-nav__item--sub { position: relative; }
.vgj-nav__sub {
  position: absolute;
  top: calc(100% + .45rem);
  left: 0;
  min-width: 230px;
  list-style: none;
  margin: 0;
  padding: .45rem;
  background: #fff;
  border: 1px solid var(--vgj-line);
  border-radius: var(--vgj-radius);
  box-shadow: var(--vgj-shadow-2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .22s var(--vgj-ease), transform .22s var(--vgj-ease), visibility .22s;
}
.vgj-nav__item--sub:hover .vgj-nav__sub,
.vgj-nav__item--sub:focus-within .vgj-nav__sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.vgj-nav__sub a {
  display: block;
  padding: .6rem .75rem;
  border-radius: var(--vgj-radius-sm);
  font-size: .78rem;
  font-weight: 500;
  color: var(--vgj-ink);
  text-decoration: none;
  transition: background-color .2s var(--vgj-ease), color .2s var(--vgj-ease);
}
.vgj-nav__sub a:hover { background: var(--vgj-blue-tint); color: var(--vgj-blue); }

@media (max-width: 1400px) {
  .vgj-brand__tag { display: none; }
}

@media (max-width: 1200px) {
  .vgj-burger { display: flex; }
  .vgj-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    border-bottom: 1px solid var(--vgj-line);
    box-shadow: var(--vgj-shadow-2);
    max-height: 0;
    overflow: hidden;
    transition: max-height .38s var(--vgj-ease);
  }
  .vgj-nav.is-open { max-height: 80vh; overflow-y: auto; }
  .vgj-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .6rem 1.5rem 1.2rem;
  }
  .vgj-nav__link {
    display: block;
    padding: .95rem .4rem;
    font-size: .84rem;
    border-bottom: 1px solid var(--vgj-line);
    border-radius: 0;
  }
  .vgj-nav__link::after { display: none; }
  .vgj-nav__sub {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    border-left: 2px solid var(--vgj-gold);
    border-radius: 0;
    padding: 0 0 0 .8rem;
    margin: 0 0 .4rem;
  }
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.vgj-hero {
  position: relative;
  overflow: hidden;
  background: var(--vgj-gradient);
  color: #fff;
  padding-block: 96px 84px;
}
.vgj-hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: .85;
}
.vgj-hero__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(680px 340px at 82% 8%, rgba(244, 193, 80, .22), transparent 65%),
    radial-gradient(520px 300px at 6% 96%, rgba(255, 255, 255, .12), transparent 70%);
  pointer-events: none;
}
.vgj-hero__inner { position: relative; z-index: 2; }
.vgj-hero__logo {
  width: 82px;
  height: 90px;
  object-fit: contain;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: var(--vgj-radius);
  padding: .5rem;
  margin-bottom: 1.6rem;
}
.vgj-hero__eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--vgj-gold);
  margin-bottom: 1.1rem;
}
.vgj-hero__title {
  color: #fff;
  font-size: clamp(2.05rem, 4.6vw, 3.5rem);
  max-width: 20ch;
  margin-bottom: 1.2rem;
}
.vgj-hero__lead {
  font-size: 1.08rem;
  font-weight: 300;
  max-width: 58ch;
  color: rgba(255, 255, 255, .9);
  margin-bottom: 1.9rem;
}

.vgj-datetiles {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2.4rem;
  list-style: none;
  padding: 0;
}
.vgj-datetile {
  flex: 0 1 auto;
  min-width: 104px;
  padding: .9rem 1.2rem;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: var(--vgj-radius);
  text-align: center;
}
.vgj-datetile b {
  display: block;
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.vgj-datetile span {
  display: block;
  margin-top: .35rem;
  font-size: .64rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--vgj-gold);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   7. Cards
   -------------------------------------------------------------------------- */
.vgj-card {
  position: relative;
  height: 100%;
  background: #fff;
  border: 1px solid var(--vgj-line);
  border-radius: var(--vgj-radius);
  padding: 2.1rem 1.9rem;
  box-shadow: var(--vgj-shadow-1);
  transition: transform .3s var(--vgj-ease), box-shadow .3s var(--vgj-ease), border-color .3s var(--vgj-ease);
}
.vgj-card::before {
  content: "";
  position: absolute;
  left: 1.9rem;
  right: 1.9rem;
  top: -1px;
  height: 3px;
  border-radius: 3px;
  background: var(--vgj-gold);
  transform: scaleX(.22);
  transform-origin: left;
  transition: transform .35s var(--vgj-ease);
}
.vgj-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--vgj-shadow-2);
  border-color: #d6dded;
}
.vgj-card:hover::before { transform: scaleX(1); }

.vgj-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--vgj-radius-sm);
  background: var(--vgj-blue-tint);
  color: var(--vgj-blue);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}
.vgj-card h3 { font-size: 1.24rem; margin-bottom: .8rem; }
.vgj-card p { font-size: .95rem; }
.vgj-card__link {
  display: inline-block;
  margin-top: 1.1rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--vgj-blue);
  text-decoration: none;
}
.vgj-card__link:hover { color: var(--vgj-gold-600); }

/* --------------------------------------------------------------------------
   8. Timeline
   -------------------------------------------------------------------------- */
.vgj-timeline {
  position: relative;
  margin-top: 3rem;
  padding-block: .5rem;
}
.vgj-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, #cdd7ec 8%, #cdd7ec 92%, transparent);
}
.vgj-timeline__item {
  position: relative;
  width: 50%;
  padding: 0 2.6rem 2.1rem 0;
}
.vgj-timeline__item:nth-child(even) {
  margin-left: 50%;
  padding: 0 0 2.1rem 2.6rem;
}
.vgj-timeline__item::after {
  content: "";
  position: absolute;
  top: 1.35rem;
  right: -8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--vgj-gold);
  z-index: 2;
}
.vgj-timeline__item:nth-child(even)::after { right: auto; left: -8px; }
.vgj-timeline__card {
  background: #fff;
  border: 1px solid var(--vgj-line);
  border-radius: var(--vgj-radius);
  padding: 1.35rem 1.5rem;
  box-shadow: var(--vgj-shadow-1);
}
.vgj-timeline__date {
  display: inline-block;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--vgj-blue);
  margin-bottom: .35rem;
}
.vgj-timeline__card h4 { font-size: 1.05rem; margin-bottom: .2rem; }
.vgj-timeline__card p { font-size: .92rem; margin: 0; }

@media (max-width: 760px) {
  .vgj-timeline::before { left: 8px; }
  .vgj-timeline__item,
  .vgj-timeline__item:nth-child(even) {
    width: 100%;
    margin-left: 0;
    padding: 0 0 1.6rem 2.4rem;
  }
  .vgj-timeline__item::after,
  .vgj-timeline__item:nth-child(even)::after { left: 0; right: auto; }
}

/* --------------------------------------------------------------------------
   9. Track grid
   -------------------------------------------------------------------------- */
.vgj-trackgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
  gap: 1.1rem;
}
.vgj-track {
  display: flex;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--vgj-line);
  border-left: 4px solid var(--vgj-blue);
  border-radius: var(--vgj-radius);
  padding: 1.3rem 1.35rem;
  text-decoration: none;
  transition: transform .28s var(--vgj-ease), border-color .28s var(--vgj-ease), box-shadow .28s var(--vgj-ease);
}
.vgj-track:hover { transform: translateX(4px); border-left-color: var(--vgj-gold); box-shadow: var(--vgj-shadow-1); }
.vgj-track__num {
  flex: 0 0 auto;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--vgj-gold-600);
  line-height: 1;
  min-width: 2rem;
}
.vgj-track h3 { font-size: 1rem; color: var(--vgj-ink); margin-bottom: .2rem; }
.vgj-track p { font-size: .84rem; margin: 0; color: var(--vgj-muted); }

/* --------------------------------------------------------------------------
   10. Tables (Bulma table + conference skin)
   -------------------------------------------------------------------------- */
.vgj-tablewrap {
  border: 1px solid var(--vgj-line);
  border-radius: var(--vgj-radius);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: var(--vgj-shadow-1);
  background: #fff;
  margin-top: 1.4rem;
}
.vgj-tablewrap .table {
  margin: 0;
  width: 100%;
  min-width: 520px;
  background: transparent;
}
.vgj-tablewrap .table thead th {
  background: var(--vgj-navy-700);
  color: #fff;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 0;
  padding: 1rem 1.15rem;
  vertical-align: middle;
}
.vgj-tablewrap .table tbody td,
.vgj-tablewrap .table tbody th {
  border-color: var(--vgj-line);
  padding: 1rem 1.15rem;
  vertical-align: top;
  color: var(--vgj-body);
  font-size: .92rem;
}
.vgj-tablewrap .table tbody tr:nth-child(even) { background: var(--vgj-mist); }
.vgj-tablewrap .table tbody tr:hover { background: var(--vgj-blue-tint); }
.vgj-tablewrap .table tbody th { color: var(--vgj-ink); font-weight: 600; }
.vgj-tablewrap .table td strong,
.vgj-tablewrap .table td b { color: var(--vgj-ink); }

/* --------------------------------------------------------------------------
   11. Page banner + breadcrumbs
   -------------------------------------------------------------------------- */
.vgj-pagehead {
  position: relative;
  overflow: hidden;
  background: var(--vgj-gradient);
  color: #fff;
  padding-block: 78px 70px;
}
.vgj-pagehead::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 40px solid rgba(244, 193, 80, .12);
}
.vgj-pagehead__inner { position: relative; z-index: 2; }
.vgj-pagehead h1 {
  color: #fff;
  font-size: clamp(1.85rem, 4vw, 2.9rem);
  max-width: 30ch;
  margin-bottom: .7rem;
}
.vgj-pagehead p {
  color: rgba(255, 255, 255, .88);
  max-width: 66ch;
  margin: 0;
  font-weight: 300;
}
.vgj-crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0 0 1.1rem;
  font-size: .74rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.vgj-crumbs a { color: rgba(255, 255, 255, .82); text-decoration: none; }
.vgj-crumbs a:hover { color: var(--vgj-gold); }
.vgj-crumbs li + li::before { content: "/"; margin-right: .45rem; color: rgba(255, 255, 255, .45); }
.vgj-crumbs [aria-current="page"] { color: var(--vgj-gold); }

/* --------------------------------------------------------------------------
   12. Lists / prose / notes
   -------------------------------------------------------------------------- */
.vgj-prose p { font-size: 1rem; }
.vgj-prose h3 { font-size: 1.3rem; margin: 2rem 0 .8rem; }
.vgj-prose h4 { font-size: 1.08rem; margin: 1.6rem 0 .6rem; }
.vgj-prose ul, .vgj-prose ol { padding-left: 1.3rem; }
.vgj-prose li { margin-bottom: .55rem; }

.vgj-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: vgj;
}
.vgj-list li {
  position: relative;
  padding: .95rem 1.1rem .95rem 3.1rem;
  background: #fff;
  border: 1px solid var(--vgj-line);
  border-radius: var(--vgj-radius);
  margin-bottom: .7rem;
  font-size: .95rem;
}
.vgj-list li::before {
  counter-increment: vgj;
  content: counter(vgj, decimal-leading-zero);
  position: absolute;
  left: 1rem;
  top: .95rem;
  font-size: .8rem;
  font-weight: 700;
  color: var(--vgj-gold-600);
}
.vgj-list--plain li::before { content: "\2713"; color: var(--vgj-blue); }

.vgj-note {
  display: flex;
  gap: .9rem;
  background: var(--vgj-blue-tint);
  border: 1px solid #d7e2f5;
  border-left: 4px solid var(--vgj-blue);
  border-radius: var(--vgj-radius);
  padding: 1.1rem 1.3rem;
  margin: 1.6rem 0;
  font-size: .94rem;
}
.vgj-note--gold { background: #fdf6e4; border-color: #f3e2b8; border-left-color: var(--vgj-gold); }

.vgj-figure {
  border: 1px solid var(--vgj-line);
  border-radius: var(--vgj-radius);
  overflow: hidden;
  box-shadow: var(--vgj-shadow-1);
  background: #fff;
}
.vgj-figure iframe { display: block; width: 100%; height: 430px; border: 0; }
.vgj-figure figcaption { padding: .9rem 1.1rem; font-size: .84rem; color: var(--vgj-muted); }

/* --------------------------------------------------------------------------
   13. Sponsorship tiers
   -------------------------------------------------------------------------- */
.vgj-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.vgj-tier {
  background: #fff;
  border: 1px solid var(--vgj-line);
  border-radius: var(--vgj-radius);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--vgj-shadow-1);
  border-top: 4px solid var(--vgj-blue);
}
.vgj-tier:nth-child(2n) { border-top-color: var(--vgj-gold); }
.vgj-tier h3 { font-size: 1.05rem; margin-bottom: .25rem; }
.vgj-tier .vgj-tier__amt { font-size: 1.35rem; font-weight: 700; color: var(--vgj-blue); }
.vgj-tier ul { list-style: none; padding: 0; margin: 1rem 0 0; }
.vgj-tier li { font-size: .88rem; padding-left: 1.15rem; position: relative; margin-bottom: .45rem; }
.vgj-tier li::before { content: ""; position: absolute; left: 0; top: .62rem; width: 7px; height: 7px; border-radius: 50%; background: var(--vgj-gold); }

/* --------------------------------------------------------------------------
   14. CTA band
   -------------------------------------------------------------------------- */
.vgj-cta {
  position: relative;
  overflow: hidden;
  background: var(--vgj-gradient-deep);
  color: #fff;
  border-radius: var(--vgj-radius-lg);
  padding: 3.2rem 2.6rem;
}
.vgj-cta::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 193, 80, .3), transparent 68%);
}
.vgj-cta__inner { position: relative; z-index: 2; }
.vgj-cta h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: .7rem; }
.vgj-cta p { color: rgba(255, 255, 255, .86); max-width: 62ch; margin-bottom: 1.6rem; }

/* --------------------------------------------------------------------------
   15. Footer
   -------------------------------------------------------------------------- */
.vgj-footer {
  background: var(--vgj-gradient-deep);
  color: rgba(255, 255, 255, .78);
  margin-top: 0;
}
.vgj-footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.4rem;
  padding-block: 72px 56px;
}
.vgj-footer h2, .vgj-footer h3 {
  color: #fff;
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.vgj-footer p { font-size: .9rem; color: rgba(255, 255, 255, .72); }
.vgj-footer a { color: rgba(255, 255, 255, .78); text-decoration: none; }
.vgj-footer a:hover { color: var(--vgj-gold); }
.vgj-footer__brand { display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem; }
.vgj-footer__brand img { width: 40px; height: 44px; object-fit: contain; }
.vgj-footer__brand b { color: #fff; font-size: 1.05rem; letter-spacing: .06em; text-transform: uppercase; }
.vgj-footer__links { list-style: none; padding: 0; margin: 0; }
.vgj-footer__links li { margin-bottom: .6rem; font-size: .9rem; }
.vgj-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .16);
  padding-block: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.4rem;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: rgba(255, 255, 255, .62);
}
.vgj-footer__bottom p { margin: 0; font-size: .82rem; color: rgba(255, 255, 255, .62); }
.vgj-footer__seal {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--vgj-gold);
}

@media (max-width: 900px) {
  .vgj-footer__top { grid-template-columns: 1fr 1fr; gap: 1.8rem; }
}
@media (max-width: 560px) {
  .vgj-footer__top { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   16. Utilities + reveal motion
   -------------------------------------------------------------------------- */
.vgj-grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.6rem; }
.vgj-grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.5rem; }
.vgj-mt-0 { margin-top: 0; }
.vgj-mt-2 { margin-top: 1.4rem; }
.vgj-mt-4 { margin-top: 2.6rem; }
.vgj-mb-2 { margin-bottom: 1.4rem; }
.vgj-mb-4 { margin-bottom: 2.6rem; }
.vgj-mw-70 { max-width: 70ch; }

[data-vgj-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--vgj-ease), transform .7s var(--vgj-ease);
}
[data-vgj-reveal].is-visible { opacity: 1; transform: none; }
[data-vgj-reveal][data-vgj-delay="1"] { transition-delay: .1s; }
[data-vgj-reveal][data-vgj-delay="2"] { transition-delay: .2s; }
[data-vgj-reveal][data-vgj-delay="3"] { transition-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-vgj-reveal] { opacity: 1; transform: none; }
  .vgj-hero__canvas { display: none; }
}

/* --------------------------------------------------------------------------
   17. Print
   -------------------------------------------------------------------------- */
@media print {
  .vgj-header, .vgj-hero__canvas, .vgj-cta, .vgj-footer { background: #fff !important; color: #000 !important; }
  .vgj-nav, .vgj-burger { display: none !important; }
}
