/* ============================================================
   CHTIS 2026 — Master Stylesheet
   Designed & Created by softandpix.com
   
   TABLE OF CONTENTS
   1.  CSS Variables & Reset
   2.  Typography & Utilities
   3.  Buttons
   4.  Scroll Reveal Animation
   5.  Header & Navigation
   6.  Marquee Strip
   7.  Back to Top Button
   8.  HOME — Hero Section
   9.  HOME — About Strip
   10. HOME — Speaker Scroll Strip
   11. HOME — Gallery Mosaic
   12. HOME — Offer / Promo Section
   13. HOME — Agenda Section
   14. HOME — Sponsors Section
   15. HOME — Testimonials
   16. HOME — Pricing Cards
   17. SHARED — Site Footer
   18. CONTACT PAGE
   19. ABOUT PAGE
   20. TICKETS PAGE
   21. EVENT PAGE
   22. Responsive Breakpoints
   ============================================================ */


/* ============================================================
   1. CSS Variables & Reset
   ============================================================ */
:root {
  /* Brand Colors */
  --blk:  #080808;       /* primary background */
  --navy: #06112a;       /* deep navy */
  --n2:   #0b1e3d;       /* mid navy */
  --org:  #ff6b00;       /* orange accent */
  --org2: #e55a00;       /* orange hover */
  --cyn:  #00d4ff;       /* cyan accent */
  --off:  #f5f2ee;       /* off-white sections */
  --wht:  #ffffff;

  /* Subtle tones */
  --mut:  rgba(255,255,255,.55);
  --bdr:  rgba(255,255,255,.09);  /* border color */

  /* Typography */
  --fh:   'Playfair Display', Georgia, serif;  /* headlines */
  --fb:   'Poppins', system-ui, sans-serif;    /* body */

  /* Motion */
  --ease: cubic-bezier(.4,0,.2,1);
  --eout: cubic-bezier(0,.55,.45,1);
  --t:    .3s;
}

/* Box-model reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
  font-size: 16px;
}

body {
  font-family: var(--fb);
  background: var(--blk);
  color: var(--wht);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Text selection */
::selection { background: var(--org); color: #fff; }

/* Custom scrollbar */
body::-webkit-scrollbar       { width: 10px; }
body::-webkit-scrollbar-track { background: var(--blk); }
body::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--org), var(--cyn));
  border-radius: 5px;
  border: 2px solid var(--blk);
}

/* Max-width wrapper */
.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 40px;
}


/* ============================================================
   2. Typography & Utilities
   ============================================================ */

/* Section eyebrow label (small uppercase with leading rule) */
.sec-eye {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.sec-eye::before {
  content: '';
  width: 32px;
  height: 1.5px;
  border-radius: 2px;
  display: block;
}
/* Color variants */
.sec-eye.org { color: var(--org); } .sec-eye.org::before { background: var(--org); }
.sec-eye.cyn { color: var(--cyn); } .sec-eye.cyn::before { background: var(--cyn); }

/* Section heading */
.sec-h2 {
  font-family: var(--fh);
  font-size: clamp(36px, 4.8vw, 62px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -2px;
  margin-bottom: 22px;
}
.sec-h2.wht { color: var(--wht); }
.sec-h2.blk { color: var(--blk); }
.sec-h2 em  { font-style: italic; color: var(--org); }

/* Section body paragraph */
.sec-p { font-size: 15.5px; line-height: 1.8; margin-bottom: 28px; }
.sec-p.wht { color: rgba(255,255,255,.6); }
.sec-p.blk { color: rgba(0,0,0,.6); }


/* ============================================================
   3. Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 30px;
  border-radius: 6px;
  font-family: var(--fb);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--t) var(--ease);
  letter-spacing: .2px;
  white-space: nowrap;
}
.btn-org     { background: var(--org);  color: #fff; }
.btn-org:hover { background: var(--org2); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,107,0,.35); }

.btn-ghost   { background: transparent; color: var(--wht); border: 1.5px solid rgba(255,255,255,.28); }
.btn-ghost:hover { border-color: rgba(255,255,255,.8); background: rgba(255,255,255,.07); }

.btn-outline { background: transparent; color: var(--org); border: 1.5px solid var(--org); }
.btn-outline:hover { background: var(--org); color: #fff; }

.btn-blk     { background: var(--blk); color: #fff; }
.btn-blk:hover { background: var(--navy); }

.btn-lg { padding: 17px 38px; font-size: 15px; border-radius: 8px; }
.btn-sm { padding: 10px 22px; font-size: 12.5px; }


/* ============================================================
   4. Scroll Reveal Animation
   Elements with .reveal start hidden and fade up into view
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal.left  { transform: translateX(-36px); }
.reveal.right { transform: translateX(36px); }
.reveal.done  { opacity: 1; transform: translate(0); }

/* Staggered delays for child elements */
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }
.d6 { transition-delay: .6s; }


/* ============================================================
   5. Header & Navigation
   Transparent on top, glass when scrolled
   ============================================================ */
.hdr {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background .4s, box-shadow .4s;
}
.hdr.top      { background: transparent; }
.hdr.scrolled {
  background: rgba(8,8,8,.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--bdr);
}

/* Nav bar */
.nav {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  height: 104px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-logo img { height: 100px; width: auto; object-fit: contain; }

/* Centre pill nav */
.nav-pill {
  display: flex;
  align-items: center;
  gap: 1px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  padding: 5px 6px;
  margin: 0 auto;
}
.nav-pill a {
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  padding: 8px 14px;
  border-radius: 100px;
  transition: all .2s;
  white-space: nowrap;
}
.nav-pill a:hover,
.nav-pill a.on { background: rgba(255,255,255,.13); color: #fff; }

/* CTA button in nav */
.nav-reg {
  padding: 10px 22px;
  border-radius: 6px;
  background: var(--org);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  transition: all var(--t);
  box-shadow: 0 4px 18px rgba(255,107,0,.28);
  white-space: nowrap;
}
.nav-reg:hover { background: var(--org2); transform: translateY(-1px); }

/* Brochure download button in nav — sits beside Register Now */
.nav-brochure {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 6px;
  border: 1.5px solid rgba(255,255,255,.28);
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
  transition: all var(--t);
}
.nav-brochure svg { width: 13px; height: 13px; flex-shrink: 0; }
.nav-brochure:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.5); }

/* Hamburger button (mobile) */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: .3s;
}

/* Mobile drawer */
.nav-mob {
  display: none;
  flex-direction: column;
  background: rgba(8,8,8,.97);
  backdrop-filter: blur(20px);
  padding: 16px 40px 24px;
  border-top: 1px solid var(--bdr);
  gap: 4px;
}
.nav-mob a {
  color: rgba(255,255,255,.8);
  font-size: 15px;
  font-weight: 500;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.nav-mob .nav-reg {
  margin-top: 14px;
  text-align: center;
  border-radius: 6px;
  border: none;
}
.nav-mob.open { display: flex; }

/* Nav now carries 8 links + Register + Brochure buttons — collapse to
   burger earlier (1180px) so nothing overlaps/overflows on laptop widths. */
@media (max-width: 1180px) {
  .nav-pill, .nav-reg, .nav-brochure { display: none; }
  .nav-burger { display: flex; }
  .nav-logo img { height: 64px; }
  .nav { height: 80px; }
}
.nav-mob-brochure {
  display: flex; align-items: center; gap: 8px;
  color: rgba(0,212,255,.9) !important;
}


/* ============================================================
   6. Marquee Strip
   Continuous scrolling topic ticker between sections
   ============================================================ */
.mq {
  border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr);
  background: rgba(255,255,255,.02);
  padding: 14px 0;
  overflow: hidden;
}
.mq-track {
  display: flex;
  white-space: nowrap;
  animation: mqScroll 30s linear infinite;
  width: max-content;
}
.mq-track:hover { animation-play-state: paused; }
@keyframes mqScroll { to { transform: translateX(-50%); } }

.mq-item {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 0 32px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.mq-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--org);
  flex-shrink: 0;
}


/* ============================================================
   7. Back to Top Button
   ============================================================ */
.btt {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--org);
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  box-shadow: 0 4px 18px rgba(255,107,0,.38);
  z-index: 999;
}
.btt.show    { opacity: 1; pointer-events: auto; }
.btt:hover   { transform: translateY(-3px); }


/* ============================================================
   8. HOME — Hero Section
   Full-viewport hero with the CHTIS 2026 panel image
   Large editorial headline + stats sidebar
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--blk);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Background image layer */
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

/* Dark gradient overlay — heavier at bottom-left for text legibility */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8,8,8,.92) 0%, rgba(8,8,8,.65) 50%, rgba(8,8,8,.3) 100%),
    linear-gradient(0deg, rgba(8,8,8,.8) 0%, transparent 50%);
}

/* Film grain texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.055'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: .45;
  pointer-events: none;
}

/* Hero content wrapper */
.hero-body {
  position: relative;
  z-index: 4;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 80px;
}
.hero-body .container {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  gap: 60px;
}

/* Eyebrow label above headline */
.hero-eye {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--org);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.hero-eye::before {
  content: '';
  width: 36px; height: 1.5px;
  background: var(--org);
  border-radius: 2px;
}

/* Giant editorial headline — 3 lines */
.hero-h1 {
  font-family: var(--fh);
  font-size: clamp(58px, 8vw, 118px);
  font-weight: 800;
  line-height: .93;
  letter-spacing: -3px;
  color: var(--wht);
}
/* Italic orange line */
.hero-h1 .ital { display: block; font-style: italic; color: var(--org); }
/* Outline ghost line — DDD style */
.hero-h1 .outl {
  display: block;
  -webkit-text-stroke: 2px rgba(255,255,255,.45);
  color: transparent;
}

/* Event meta info row */
.hero-meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 28px;
  margin-bottom: 26px;
}
.hero-meta-i {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
  font-weight: 500;
}
.dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--cyn);
  flex-shrink: 0;
}

/* CTA buttons row */
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Right-side stats column */
.hero-stats {
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--bdr);
  padding-left: 36px;
  min-width: 160px;
}
.h-stat {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.h-stat:last-child { border-bottom: none; }
.h-stat .n {
  font-family: var(--fh);
  font-size: 38px;
  font-weight: 700;
  color: var(--wht);
  line-height: 1;
  display: block;
}
.h-stat .n em { font-style: normal; color: var(--org); }
.h-stat .l {
  font-size: 10px;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}

/* Slide indicator dots (reused if slider added later) */
.hero-dots {
  position: absolute;
  bottom: 30px; left: 40px;
  display: flex;
  gap: 10px;
  z-index: 5;
}
.h-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  cursor: pointer;
  transition: all .3s;
  border: 1px solid rgba(255,255,255,.5);
}
.h-dot.on {
  background: var(--org);
  border-color: var(--org);
  transform: scale(1.4);
}


/* ============================================================
   9. HOME — About Strip
   Two-column: editorial text left, stat grid right
   ============================================================ */
.ab-strip {
  background: var(--blk);
  padding: 110px 0;
  border-bottom: 1px solid var(--bdr);
}
.ab-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Stat grid — 2x2, ruled lines */
.ab-stats { display: flex; flex-direction: column; }
.ab-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--bdr);
}
.ab-stat-row:last-child { border-bottom: 1px solid var(--bdr); }
.ab-stat {
  padding: 26px 0;
  border-right: 1px solid var(--bdr);
}
.ab-stat:last-child { border-right: none; padding-left: 28px; }
.ab-stat .n {
  font-family: var(--fh);
  font-size: 52px;
  font-weight: 700;
  color: var(--wht);
  line-height: 1;
  letter-spacing: -2px;
  display: block;
  margin-bottom: 5px;
}
.ab-stat .n em { font-style: normal; color: var(--org); }
.ab-stat .l { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.4; }


/* ============================================================
   10. HOME — Speaker Scroll Strip (DDD-style)
   Full-width horizontal auto-scrolling portrait strip
   ============================================================ */
.spk-strip {
  background: var(--blk);
  padding: 110px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--bdr);
}

/* Header: headline left, description right */
.spk-hd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
}
.spk-desc {
  font-size: 14px;
  color: rgba(255,255,255,.45);
  max-width: 280px;
  line-height: 1.7;
  text-align: right;
}

/* Scrolling container — no container wrapper, bleeds edge to edge */
.spk-scroll {
  overflow: hidden;
  position: relative;
}
/* Fade-out gradient at right edge */
.spk-scroll::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 220px;
  background: linear-gradient(90deg, transparent, var(--blk));
  z-index: 2;
  pointer-events: none;
}

/* Infinite scroll animation */
.spk-track {
  display: flex;
  gap: 20px;
  animation: spkScroll 42s linear infinite;
  width: max-content;
}
.spk-track:hover { animation-play-state: paused; } /* Pause on hover */
@keyframes spkScroll { to { transform: translateX(-50%); } }

/* Individual speaker card */
.spk-c        { flex-shrink: 0; width: 230px; cursor: default; }
.spk-c-img    {
  width: 230px; height: 290px;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  background: var(--n2);
}
.spk-c-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(25%) brightness(.88);
  transition: filter .5s, transform .6s var(--ease);
}
.spk-c:hover .spk-c-img img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.05);
}

/* Keynote / Panellist badge */
.spk-tag {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 3px;
  background: var(--org);
  color: #fff;
}

/* Card text info */
.spk-c-info        { padding: 14px 0 0; }
.spk-c-info h4     { font-size: 15px; font-weight: 700; color: var(--wht); margin-bottom: 3px; line-height: 1.3; }
.spk-c-info .role  { font-size: 11.5px; color: var(--cyn); font-weight: 600; letter-spacing: .4px; }
.spk-c-info .org   { font-size: 11.5px; color: rgba(255,255,255,.4); margin-top: 2px; }


/* ============================================================
   11. HOME — Gallery Bento
   Asymmetric 12-column mosaic — editorial photo collage layout.
   Row 1–2: 2 large hero cells · Row 3–4: 6 medium cells
   Row 5: 4 small cells. Hover: zoom + orange/cyan gradient veil.
   ============================================================ */
.gal {
  background: var(--off);
  padding: 110px 0;
}
.gal-hd {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}
.gal-h2 {
  font-family: var(--fh);
  font-size: clamp(36px, 4.8vw, 62px);
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--blk);
  line-height: 1.04;
}
.gal-h2 em { font-style: italic; color: var(--org); }
.gal-desc {
  max-width: 420px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--blk);
  opacity: 0.72;
  margin: 0;
}
.gal-foot {
  margin-top: 44px;
  text-align: center;
}

/* 12-column bento grid */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 170px;
  gap: 12px;
}
.bc {
  overflow: hidden;
  border-radius: 6px;
  background: rgba(0,0,0,.08);
  position: relative;
  cursor: pointer;
  box-shadow: 0 2px 14px rgba(8,8,8,.04);
}
.bc img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease), filter .4s;
  filter: brightness(.93);
}
.bc:hover img     { transform: scale(1.08); filter: brightness(1); }
/* Hover colour overlay — orange → cyan, like brand accents */
.bc::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,107,0,.18), rgba(0,212,255,.1));
  opacity: 0;
  transition: opacity .35s;
}
.bc:hover::after  { opacity: 1; }

/* Asymmetric cell sizes — 12 photos in 3 visual rows */
.bc-1, .bc-2 { grid-column: span 6; grid-row: span 2; }  /* hero pair */
.bc-3, .bc-4, .bc-5,
.bc-6, .bc-7, .bc-8 { grid-column: span 4; grid-row: span 1; }
.bc-9, .bc-10, .bc-11, .bc-12 { grid-column: span 3; grid-row: span 1; }


/* ============================================================
   11b. GALLERY LIGHTBOX
   Full-screen modal that opens when a .bc cell is clicked.
   Image scales up from the clicked cell position, fades to
   centred hero, with prev/next navigation + close button.
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6, 17, 42, .96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}
.lb-stage {
  position: relative;
  max-width: min(92vw, 1400px);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transform: scale(.92);
  transition: transform .45s var(--ease);
}
.lightbox.open .lb-stage { transform: scale(1); }
.lb-img {
  max-width: 100%;
  max-height: 84vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
  background: #000;
}
.lb-cap {
  color: rgba(255,255,255,.78);
  font-size: 14px;
  letter-spacing: .3px;
  text-align: center;
  max-width: 720px;
}
.lb-close,
.lb-nav {
  position: absolute;
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s, transform .25s var(--ease);
  font-family: var(--fh);
}
.lb-close:hover, .lb-nav:hover {
  background: var(--org);
  border-color: var(--org);
  transform: scale(1.08);
}
.lb-close {
  top: 24px;
  right: 24px;
  font-size: 30px;
  font-weight: 300;
}
.lb-nav {
  top: 50%;
  transform: translateY(-50%);
  font-size: 38px;
  padding-bottom: 4px;
}
.lb-nav:hover { transform: translateY(-50%) scale(1.08); }
.lb-prev { left: 24px; }
.lb-next { right: 24px; }

/* Lock body scroll when lightbox open */
body.lb-on { overflow: hidden; }

/* Mobile lightbox tweaks */
@media (max-width: 600px) {
  .lb-close, .lb-nav { width: 40px; height: 40px; font-size: 22px; }
  .lb-nav { font-size: 30px; }
  .lb-close { top: 14px; right: 14px; }
  .lb-prev  { left: 10px; }
  .lb-next  { right: 10px; }
}


/* ============================================================
   12. HOME — Offer / Promo Section
   Dark navy — promo code reveal with copy-to-clipboard
   ============================================================ */
.offer {
  background: var(--navy);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
/* Subtle radial glows */
.offer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 50%, rgba(0,212,255,.07) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 50%, rgba(255,107,0,.06) 0%, transparent 50%);
  pointer-events: none;
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

/* Promo code dashed box — click to copy */
.offer-code {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,.05);
  border: 1px dashed rgba(255,255,255,.22);
  border-radius: 10px;
  padding: 18px 26px;
  cursor: pointer;
  margin-bottom: 30px;
  transition: border-color .25s, background .25s;
}
.offer-code:hover { border-color: var(--org); background: rgba(255,107,0,.07); }
.offer-code-lbl   { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.45); }
.offer-code-val   { font-family: 'Courier New', monospace; font-size: 28px; font-weight: 900; color: var(--org); letter-spacing: 5px; }
.offer-code-ico   { font-size: 18px; color: rgba(255,255,255,.3); transition: color .25s; }
.offer-code:hover .offer-code-ico { color: var(--org); }

/* Offer image */
.offer-img            { border-radius: 10px; overflow: hidden; aspect-ratio: 4/3; }
.offer-img img        { width: 100%; height: 100%; object-fit: cover; }


/* ============================================================
   13. HOME — Agenda Section
   Tabbed 2-column schedule grid — dark background
   ============================================================ */
.agenda {
  background: var(--blk);
  padding: 110px 0;
  border-top: 1px solid var(--bdr);
}

/* Header: title left, day tabs right */
.ag-hd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}

/* Day switcher tabs */
.ag-tabs {
  display: flex;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  overflow: hidden;
  width: fit-content;
}
.ag-tab {
  padding: 12px 30px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  background: transparent;
  cursor: pointer;
  font-family: var(--fb);
  transition: all .25s;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}
.ag-tab span { font-size: 10px; font-weight: 500; color: rgba(255,255,255,.28); letter-spacing: .8px; text-transform: uppercase; margin-top: 2px; }
.ag-tab.on   { background: var(--org); color: #fff; }
.ag-tab.on span { color: rgba(255,255,255,.65); }
.ag-tab:not(:last-child) { border-right: 1px solid rgba(255,255,255,.12); }

/* Day content — hidden unless .on */
.ag-day    { display: none; }
.ag-day.on { display: block; animation: agIn .4s var(--eout); }
@keyframes agIn { from { opacity:0; transform: translateY(14px); } to { opacity:1; transform: translateY(0); } }

/* Two-column schedule grid */
.ag-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.ag-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background .2s;
  position: relative;
}
/* Left accent bar on hover */
.ag-row::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: var(--org);
  transition: width .25s var(--ease);
}
.ag-row:hover             { background: rgba(255,255,255,.03); }
.ag-row:hover::after      { width: 2px; }

/* Time column */
.ag-time {
  padding: 20px 16px 20px 0;
  border-right: 1px solid rgba(255,255,255,.06);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.ag-t { font-size: 14.5px; font-weight: 800; color: var(--wht); }
.ag-d { font-size: 10px; color: rgba(255,255,255,.28); margin-top: 4px; }

/* Session body */
.ag-body   { padding: 18px 0 18px 22px; }
.ag-title  { font-size: 13.5px; font-weight: 600; color: var(--wht); line-height: 1.45; margin-bottom: 3px; }
.ag-sub    { font-size: 11.5px; color: rgba(255,255,255,.38); line-height: 1.5; }

/* Session type chips */
.chip { display: inline-block; font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 3px 10px; border-radius: 3px; margin-bottom: 7px; }
.ck { background: rgba(255,107,0,.18);   color: #ff9d4d; }  /* Keynote   */
.cp { background: rgba(0,164,196,.18);   color: #3fd0f0; }  /* Panel     */
.ct2{ background: rgba(99,102,241,.18);  color: #a6a8ff; }  /* Talk      */
.cm { background: rgba(16,185,129,.18);  color: #34d9a3; }  /* Masterclass */
.cb { background: rgba(255,255,255,.07); color: rgba(255,255,255,.38); } /* Break */
.cr { background: rgba(251,191,36,.18);  color: #fcd34d; }  /* Reception */
.co { background: rgba(255,107,0,.12);   color: var(--org); } /* Opening */


/* ============================================================
   14. HOME — Sponsors Section
   Off-white background, centered logo images
   ============================================================ */
.sponsors { background: var(--off); padding: 90px 0; }
.sp-logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
}
.sp-logos img { max-width: 100%; height: auto; }


/* ============================================================
   15. HOME — Testimonials
   Dark section, two card grid with large opening quote
   ============================================================ */
.testi {
  background: var(--blk);
  padding: 110px 0;
  border-top: 1px solid var(--bdr);
}
.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 56px;
}
.testi-card {
  padding: 48px 44px;
  border: 1px solid var(--bdr);
  position: relative;
  overflow: hidden;
  transition: background .3s;
}
.testi-card:hover { background: rgba(255,255,255,.025); }
/* Large decorative quote mark */
.testi-card::before {
  content: '\201C';
  font-family: var(--fh);
  font-size: 110px;
  color: var(--org);
  opacity: .1;
  position: absolute;
  top: -10px; left: 28px;
  line-height: 1;
  pointer-events: none;
}
.testi-stars  { color: var(--org); font-size: 15px; letter-spacing: 3px; margin-bottom: 18px; }
.testi-q      { font-size: 15px; color: rgba(255,255,255,.68); line-height: 1.8; font-style: italic; margin-bottom: 26px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-av     { width: 50px; height: 50px; border-radius: 50%; overflow: hidden; border: 2px solid rgba(255,107,0,.4); flex-shrink: 0; }
.testi-av img { width: 100%; height: 100%; object-fit: cover; }
.testi-name   { font-size: 14px; font-weight: 700; color: #fff; }
.testi-role   { font-size: 12px; color: rgba(255,255,255,.4); margin-top: 2px; }


/* ============================================================
   16. HOME — Pricing Cards
   Off-white section, 5-column card row, featured card elevated
   ============================================================ */
.pricing { background: var(--off); padding: 110px 0; }
.pricing-sub { font-size: 15px; color: rgba(0,0,0,.55); line-height: 1.7; margin-bottom: 56px; max-width: 560px; }
.pricing-sub strong { color: var(--org); }

/* Five equal columns */
.price-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: stretch;
}

/* Base card */
.pc {
  background: #fff;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 10px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.pc:hover { transform: translateY(-7px); box-shadow: 0 20px 50px rgba(0,0,0,.12); }

/* Featured (Premium) card — dark, elevated */
.pc.feat {
  background: var(--blk);
  border-color: var(--blk);
  transform: translateY(-14px);
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.pc.feat:hover { transform: translateY(-20px); }

/* "Most Popular" badge on featured card */
.pc-flag {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--org);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(255,107,0,.4);
}

.pc-icon  { font-size: 22px; margin-bottom: 12px; }
.pc-name  { font-size: 10.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(0,0,0,.42); margin-bottom: 10px; }
.pc.feat .pc-name { color: rgba(255,255,255,.45); }
.pc-price { font-family: var(--fh); font-size: 40px; font-weight: 700; color: var(--blk); letter-spacing: -2px; line-height: 1; margin-bottom: 4px; }
.pc.feat .pc-price { color: #fff; }
.pc-cur   { font-size: 17px; font-weight: 600; color: var(--org); vertical-align: super; }
.pc-note  { font-size: 12px; color: rgba(0,0,0,.38); margin-bottom: 18px; }
.pc.feat .pc-note { color: rgba(255,255,255,.38); }

/* Feature checklist */
.pc-list { flex: 1; margin-bottom: 20px; display: flex; flex-direction: column; gap: 8px; }
.pc-list li { font-size: 12px; color: rgba(0,0,0,.62); display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.pc-list li::before { content: '✓'; color: var(--org); font-weight: 900; font-size: 11px; flex-shrink: 0; margin-top: 1px; }
.pc.feat .pc-list li { color: rgba(255,255,255,.72); }
.pc.feat .pc-list li::before { color: var(--cyn); }
.pc .btn { width: 100%; margin-top: auto; justify-content: center; }


/* ============================================================
   17. SHARED — Site Footer
   Black background, CTA bar + 4-col grid + bottom bar
   Designed & Created by softandpix.com
   ============================================================ */
.footer {
  background: var(--blk);
  border-top: 1px solid var(--bdr);
  position: relative;
}

/* Animated gradient accent line at very top */
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--org), var(--cyn), var(--org));
  background-size: 200%;
  animation: fline 6s linear infinite;
}
@keyframes fline { to { background-position: 200%; } }

/* ── CTA bar ── */
.ft-cta { border-bottom: 1px solid var(--bdr); padding: 36px 0; }
.ft-cta-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.ft-cta-eye { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 6px; }
.ft-cta-h   { font-family: var(--fh); font-size: clamp(20px, 2.5vw, 30px); font-weight: 800; letter-spacing: -1px; color: #fff; line-height: 1.1; }
.ft-cta-h em { font-style: italic; color: var(--org); }
.ft-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* ── Main grid ── */
.ft-body { padding: 40px 0 32px; }
.ft-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.6fr;
  gap: 48px;
}

/* Brand column */
.ft-logo    { height: 52px; width: auto; object-fit: contain; margin-bottom: 14px; }
.ft-tagline { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.7; margin-bottom: 6px; max-width: 260px; }
.ft-org     { font-size: 11.5px; color: rgba(255,255,255,.28); margin-bottom: 18px; }
.ft-org strong { color: rgba(255,255,255,.5); }
.ft-social  { display: flex; gap: 8px; }
.ft-social a {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: 13px;
  font-weight: 700;
  transition: all .25s;
  text-decoration: none;
}
.ft-social a:hover { background: var(--org); border-color: var(--org); color: #fff; }

/* Nav columns */
.ft-col h5 { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 14px; }
.ft-col a {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  color: rgba(255,255,255,.48);
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: color .2s;
}
.ft-col a:hover     { color: #fff; }
.ft-col a::before   { content: ''; width: 8px; height: 1px; background: rgba(255,255,255,.18); flex-shrink: 0; }

/* Contact column — icon + text layout */
.ft-contact a         { flex-direction: row; align-items: flex-start; gap: 10px; }
.ft-contact a::before { display: none; }
.ft-contact a .ic     { color: var(--cyn); margin-top: 2px; flex-shrink: 0; font-size: 13px; }

/* Event date pill in contact column */
.ft-pill {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 14px;
  padding: 12px 14px;
  background: rgba(255,107,0,.08);
  border: 1px solid rgba(255,107,0,.2);
  border-radius: 7px;
}
.ft-pill .ic  { color: var(--org); font-size: 16px; flex-shrink: 0; }
.ft-pill strong { display: block; font-size: 13px; color: #fff; font-weight: 700; }
.ft-pill span   { font-size: 11.5px; color: rgba(255,255,255,.42); }

/* ── Bottom bar ── */
.ft-bot { border-top: 1px solid rgba(255,255,255,.06); padding: 14px 0; }
.ft-bot-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.ft-bot-in p   { font-size: 11.5px; color: rgba(255,255,255,.28); }
.ft-links      { display: flex; align-items: center; gap: 10px; }
.ft-links a    { font-size: 11.5px; color: rgba(255,255,255,.28); transition: color .2s; }
.ft-links a:hover { color: #fff; }
.ft-links span { color: rgba(255,255,255,.14); }

/* Credit line — softandpix.com */
.ft-credit {
  font-size: 11px;
  color: rgba(255,255,255,.2);
  text-align: center;
  padding: 10px 0 14px;
  border-top: 1px solid rgba(255,255,255,.04);
}
.ft-credit a {
  color: var(--org);
  font-weight: 600;
  transition: opacity .2s;
}
.ft-credit a:hover { opacity: .8; }


/* ============================================================
   18. CONTACT PAGE
   Parallax Calgary hero + enquiry strip + form + venue map
   ============================================================ */

/* Hero with layered overlays */
.ct-hero {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0 0 80px;
}
/* Parallax image container — oversized vertically for JS parallax */
.ct-par { position: absolute; inset: -18% 0; will-change: transform; }
.ct-par img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; display: block; }

/* Overlay 1: bottom fade to black */
.ct-ov1 { position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(8,8,8,.98) 0%, rgba(8,8,8,.75) 38%, rgba(8,8,8,.3) 100%); }
/* Overlay 2: left diagonal darkening for text */
.ct-ov2 { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(8,8,8,.8) 0%, rgba(8,8,8,.4) 50%, transparent 100%); }
/* Grid texture overlay */
.ct-grid-ov {
  position: absolute; inset: 0; z-index: 2;
  background-image: linear-gradient(rgba(0,212,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(0,212,255,.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(ellipse at 25% 75%, black 0%, transparent 60%);
  -webkit-mask-image: radial-gradient(ellipse at 25% 75%, black 0%, transparent 60%);
  pointer-events: none;
}

/* Content body */
.ct-body { position: relative; z-index: 3; width: 100%; }
.ct-body .container { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: flex-end; }

/* Eyebrow */
.ct-eye { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--cyn); display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.ct-eye::before { content: ''; width: 32px; height: 1.5px; background: var(--cyn); border-radius: 2px; }

/* Large heading */
.ct-h1 { font-family: var(--fh); font-size: clamp(46px, 6.5vw, 88px); font-weight: 800; letter-spacing: -3px; color: #fff; line-height: .93; margin-bottom: 22px; }
.ct-h1 em { font-style: italic; color: var(--org); display: block; }
.ct-p  { font-size: 15.5px; color: rgba(255,255,255,.58); line-height: 1.8; max-width: 420px; margin-bottom: 32px; }

/* Glassmorphic contact info card */
.ct-card {
  background: rgba(6,17,42,.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  overflow: hidden;
}
.ct-row { display: flex; align-items: flex-start; gap: 16px; padding: 20px 26px; border-bottom: 1px solid rgba(255,255,255,.07); transition: background .2s; }
.ct-row:last-child { border-bottom: none; }
.ct-row:hover { background: rgba(255,255,255,.04); }
.ct-ico { width: 40px; height: 40px; border-radius: 10px; background: linear-gradient(135deg, rgba(0,212,255,.18), rgba(255,107,0,.08)); border: 1px solid rgba(0,212,255,.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; }
.ct-lbl { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--cyn); margin-bottom: 4px; }
.ct-val { font-size: 13.5px; color: rgba(255,255,255,.78); line-height: 1.5; }
.ct-val a { color: rgba(255,255,255,.78); transition: color .2s; }
.ct-val a:hover { color: var(--org); }

/* Enquiry type strip */
.ct-eq { background: var(--n2); padding: 72px 0; border-top: 1px solid var(--bdr); border-bottom: 1px solid var(--bdr); }
.ct-eq-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 40px; }
.ct-eq-c { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: 12px; padding: 26px 20px; transition: all .3s var(--ease); position: relative; overflow: hidden; }
.ct-eq-c::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--org), var(--cyn)); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.ct-eq-c:hover { border-color: rgba(0,212,255,.22); transform: translateY(-4px); background: rgba(255,255,255,.06); }
.ct-eq-c:hover::before { transform: scaleX(1); }
.ct-eq-ico  { font-size: 26px; margin-bottom: 12px; }
.ct-eq-c h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 7px; }
.ct-eq-c p  { font-size: 12.5px; color: rgba(255,255,255,.48); line-height: 1.65; margin-bottom: 14px; }
.ct-eq-link { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--org); display: flex; align-items: center; gap: 8px; transition: gap .25s; }
.ct-eq-c:hover .ct-eq-link { gap: 14px; }

/* Contact form section */
.ct-form-sec { background: #fff; }
.ct-form-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 660px; }
.ct-form-left { padding: 72px 56px 72px 0; border-right: 1px solid rgba(0,0,0,.08); }
.ct-over { font-size: 10.5px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--org); display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.ct-over::before { content: ''; width: 28px; height: 1.5px; background: var(--org); border-radius: 2px; }
.ct-fh2 { font-family: var(--fh); font-size: clamp(30px, 4vw, 48px); font-weight: 800; letter-spacing: -1.5px; color: var(--blk); line-height: 1.05; margin-bottom: 10px; }
.ct-fh2 em { font-style: italic; color: var(--org); }
.ct-fsub { font-size: 14px; color: rgba(0,0,0,.48); line-height: 1.7; margin-bottom: 32px; max-width: 380px; }
.ct-form { display: flex; flex-direction: column; }
.ct-fr   { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ct-field { margin-bottom: 14px; }
.ct-field label { display: block; font-size: 10px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: rgba(0,0,0,.38); margin-bottom: 7px; transition: color .2s; }
.ct-field:focus-within label { color: var(--org); }
.ct-field input, .ct-field select, .ct-field textarea { width: 100%; padding: 13px 15px; background: rgba(0,0,0,.03); border: 1.5px solid rgba(0,0,0,.11); border-radius: 7px; font-family: var(--fb); font-size: 14px; color: var(--blk); outline: none; transition: all .25s; appearance: none; }
.ct-field input:focus, .ct-field select:focus, .ct-field textarea:focus { background: #fff; border-color: var(--org); box-shadow: 0 0 0 3px rgba(255,107,0,.1); }
.ct-field textarea { min-height: 118px; resize: vertical; }
.ct-submit-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 6px; }
.ct-privacy { font-size: 12px; color: rgba(0,0,0,.38); line-height: 1.5; flex: 1; }
.ct-submit { display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px; background: var(--blk); color: #fff; font-family: var(--fb); font-size: 14px; font-weight: 700; border: none; border-radius: 7px; cursor: pointer; transition: all .25s; white-space: nowrap; position: relative; overflow: hidden; }
.ct-submit::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--org), var(--org2)); opacity: 0; transition: opacity .25s; }
.ct-submit:hover::before { opacity: 1; }
.ct-submit span, .ct-submit .arr { position: relative; }

/* Form right image with stat overlay */
.ct-form-right { position: relative; overflow: hidden; }
.ct-form-right > img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ct-form-right::before { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(135deg, rgba(8,8,8,.78) 0%, rgba(8,8,8,.38) 55%, transparent 100%); }
.ct-img-stats { position: absolute; bottom: 36px; left: 36px; z-index: 2; display: flex; flex-direction: column; gap: 16px; }
.ct-is     { display: flex; align-items: center; gap: 13px; }
.ct-is-n   { font-family: var(--fh); font-size: 34px; font-weight: 700; color: #fff; line-height: 1; min-width: 68px; }
.ct-is-n em{ font-style: normal; color: var(--org); }
.ct-is-l   { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.4; max-width: 130px; }

/* Venue map section */
.ct-venue    { background: var(--blk); }
.ct-venue-in { display: grid; grid-template-columns: 1.2fr 1fr; min-height: 500px; }
.ct-map-w    { position: relative; overflow: hidden; }
.ct-map-w iframe { width: 100%; height: 100%; border: 0; display: block; min-height: 500px; filter: invert(8%) hue-rotate(180deg) brightness(.88) saturate(.6); }
.ct-map-w::after { content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 100px; background: linear-gradient(90deg, transparent, var(--blk)); pointer-events: none; }
.ct-vinfo    { padding: 52px 44px; display: flex; flex-direction: column; justify-content: center; gap: 24px; }
.ct-veye     { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--cyn); display: flex; align-items: center; gap: 10px; }
.ct-veye::before { content: ''; width: 28px; height: 1.5px; background: var(--cyn); border-radius: 2px; }
.ct-vh2      { font-family: var(--fh); font-size: clamp(24px, 3.5vw, 40px); font-weight: 800; letter-spacing: -1.5px; color: #fff; line-height: 1.05; }
.ct-vh2 em   { font-style: italic; color: var(--org); }
.ct-vdetails { display: flex; flex-direction: column; gap: 13px; }
.ct-vd       { display: flex; align-items: flex-start; gap: 12px; }
.ct-vd-ico   { width: 34px; height: 34px; border-radius: 7px; background: rgba(0,212,255,.1); border: 1px solid rgba(0,212,255,.18); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 13px; }
.ct-vd p     { font-size: 13.5px; color: rgba(255,255,255,.62); line-height: 1.6; padding-top: 5px; }
.ct-vd p strong { color: #fff; display: block; margin-bottom: 2px; }


/* ============================================================
   19. ABOUT PAGE
   ============================================================ */
.ab-hero { min-height: 90vh; background: var(--blk); position: relative; overflow: hidden; display: flex; align-items: flex-end; padding: 0 0 100px; }
.ab-bg   { position: absolute; inset: 0; }
.ab-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center right; }
.ab-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(105deg, rgba(8,8,8,.96) 0%, rgba(8,8,8,.75) 50%, rgba(8,8,8,.25) 100%); }
.ab-eye { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--cyn); display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.ab-eye::before { content: ''; width: 32px; height: 1.5px; background: var(--cyn); border-radius: 2px; }
.ab-h1  { font-family: var(--fh); font-size: clamp(50px, 7.5vw, 100px); font-weight: 800; letter-spacing: -3px; color: #fff; line-height: .93; margin-bottom: 26px; }
.ab-h1 em { font-style: italic; color: var(--org); display: block; }
.ab-p   { font-size: 16px; color: rgba(255,255,255,.58); line-height: 1.8; max-width: 480px; margin-bottom: 34px; }

.pl-sec  { background: var(--off); padding: 100px 0; }
.pl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.pl-img  { border-radius: 8px; overflow: hidden; aspect-ratio: 4/3; }
.pl-img img { width: 100%; height: 100%; object-fit: cover; }

.mvp-sec  { background: var(--blk); padding: 100px 0; border-top: 1px solid var(--bdr); }
.mvp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.mvp-items { display: flex; flex-direction: column; gap: 28px; margin-top: 36px; }
.mvp-item { display: flex; gap: 20px; padding-bottom: 28px; border-bottom: 1px solid var(--bdr); }
.mvp-item:last-child { border-bottom: none; padding-bottom: 0; }
.mvp-num { font-family: var(--fh); font-size: 46px; font-weight: 700; color: rgba(255,255,255,.06); line-height: 1; flex-shrink: 0; width: 54px; }
.mvp-txt h4 { font-family: var(--fh); font-size: 21px; font-weight: 700; color: #fff; margin-bottom: 7px; }
.mvp-txt p  { font-size: 14px; color: rgba(255,255,255,.48); line-height: 1.7; }
.mvp-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mvp-photo  { border-radius: 8px; overflow: hidden; }
.mvp-photo img { width: 100%; aspect-ratio: 1; object-fit: cover; filter: grayscale(15%); transition: filter .4s, transform .5s var(--ease); }
.mvp-photo:hover img { filter: grayscale(0%); transform: scale(1.04); }
.mvp-photo:first-child { grid-column: span 2; }
.mvp-photo:first-child img { aspect-ratio: 16/9; }

.att-sec { background: var(--off); padding: 100px 0; }
.chips-cloud { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.chip-pill { padding: 10px 22px; border-radius: 100px; border: 1px solid rgba(0,0,0,.14); font-size: 13px; color: rgba(0,0,0,.58); font-weight: 500; background: #fff; cursor: default; transition: all .25s; }
.chip-pill:hover, .chip-pill.on { background: var(--org); color: #fff; border-color: var(--org); }

.focus-sec   { background: var(--blk); padding: 100px 0; border-top: 1px solid var(--bdr); }
.focus-pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 20px; }
.fp { padding: 10px 22px; border-radius: 100px; border: 1px solid var(--bdr); font-size: 13px; color: rgba(255,255,255,.55); font-weight: 500; background: transparent; cursor: pointer; transition: all .25s; font-family: var(--fb); }
.fp:hover, .fp.on { background: var(--org); color: #fff; border-color: var(--org); }
.focus-box { background: rgba(255,255,255,.04); border: 1px solid var(--bdr); border-radius: 12px; padding: 36px; margin-top: 12px; }
.focus-box h3 { font-family: var(--fh); font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.focus-box p  { font-size: 14.5px; color: rgba(255,255,255,.55); line-height: 1.8; margin-bottom: 20px; }

.alb-sec { background: var(--navy); padding: 100px 0; position: relative; overflow: hidden; }
.alb-sec::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(0,212,255,.08) 0%, transparent 55%); pointer-events: none; }
.alb-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.07); margin-top: 50px; border: 1px solid rgba(255,255,255,.07); }
.alb-c { background: var(--navy); padding: 36px 28px; transition: background .3s; }
.alb-c:hover { background: rgba(255,255,255,.04); }
.alb-n { font-family: var(--fh); font-size: 50px; font-weight: 700; color: var(--cyn); line-height: 1; margin-bottom: 14px; opacity: .65; }
.alb-c h4 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.alb-c p  { font-size: 13px; color: rgba(255,255,255,.48); line-height: 1.7; }

.pwr-sec  { background: var(--blk); padding: 100px 0; border-top: 1px solid var(--bdr); }
.pwr-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }


/* ============================================================
   20. TICKETS PAGE
   ============================================================ */
.tk-hero { min-height: 90vh; background: var(--blk); position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; }
.tk-bg   { position: absolute; inset: 0; }
.tk-bg img { width: 100%; height: 100%; object-fit: cover; }
.tk-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,8,8,1) 0%, rgba(8,8,8,.72) 40%, rgba(8,8,8,.25) 100%); }
.tk-body { position: relative; z-index: 2; }
.tk-eye { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--org); display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.tk-eye::before { content: ''; width: 32px; height: 1.5px; background: var(--org); border-radius: 2px; }
.tk-h1  { font-family: var(--fh); font-size: clamp(46px, 7vw, 96px); font-weight: 800; letter-spacing: -3px; color: #fff; line-height: .93; margin-bottom: 30px; }
.tk-h1 em { font-style: italic; color: var(--cyn); display: block; }
.tk-stats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--bdr); }
.tk-stat  { padding: 24px 0; text-align: center; border-right: 1px solid var(--bdr); }
.tk-stat:last-child { border-right: none; }
.tk-stat:nth-child(odd) { background: rgba(255,107,0,.1); }
.tk-stat .n { font-family: var(--fh); font-size: 32px; font-weight: 700; color: #fff; display: block; }
.tk-stat .l { font-size: 11px; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }

.cd-sec { background: var(--navy); padding: 60px 0; border-bottom: 1px solid var(--bdr); }
.cd-in  { display: grid; grid-template-columns: auto 1fr; gap: 52px; align-items: center; }
.cd-digits { display: flex; gap: 12px; align-items: center; }
.cd-box { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 10px; padding: 16px 18px; text-align: center; min-width: 72px; }
.cd-box .n { font-family: var(--fh); font-size: 36px; font-weight: 700; color: #fff; display: block; line-height: 1; }
.cd-box .l { font-size: 9px; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,.38); margin-top: 4px; }
.cd-sep    { font-family: var(--fh); font-size: 32px; color: rgba(255,255,255,.28); padding-bottom: 10px; }
.cd-cta h3 { font-family: var(--fh); font-size: clamp(20px, 3vw, 32px); font-weight: 700; color: #fff; margin-bottom: 8px; }
.cd-cta p  { font-size: 14px; color: rgba(255,255,255,.48); margin-bottom: 20px; }

.notice-sec { background: var(--n2); padding: 72px 0; }
.notice-in  { display: grid; grid-template-columns: 1.2fr 1fr; border: 1px solid rgba(0,212,255,.2); border-radius: 14px; overflow: hidden; box-shadow: 0 0 60px rgba(0,212,255,.08); }
.notice-body { padding: 44px 42px; }
.notice-body h2 { font-family: var(--fh); font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--bdr); }
.notice-body ul { margin-bottom: 24px; display: flex; flex-direction: column; gap: 10px; }
.notice-body ul li { font-size: 13px; color: rgba(255,255,255,.72); display: flex; align-items: flex-start; gap: 10px; line-height: 1.6; }
.notice-body ul li::before { content: '●'; color: var(--cyn); font-size: 10px; line-height: 1.8; flex-shrink: 0; }
.notice-img img { width: 100%; height: 100%; object-fit: cover; }


/* ============================================================
   21. EVENT PAGE
   ============================================================ */
.ev-hero { min-height: 92vh; background: var(--blk); position: relative; overflow: hidden; display: flex; align-items: flex-end; padding: 0 0 80px; }
.ev-bg   { position: absolute; inset: 0; }
.ev-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.45); }
.ev-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,8,8,1) 0%, rgba(8,8,8,.6) 45%, transparent 100%); }
.ev-eye { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--org); display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.ev-eye::before { content: ''; width: 32px; height: 1.5px; background: var(--org); border-radius: 2px; }
.ev-h1  { font-family: var(--fh); font-size: clamp(50px, 7vw, 100px); font-weight: 800; letter-spacing: -3px; color: #fff; line-height: .93; margin-bottom: 26px; }
.ev-h1 em { font-style: italic; color: var(--org); display: block; }

/* Event info card on hero */
.ev-card { background: rgba(8,8,8,.7); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border: 1px solid var(--bdr); border-radius: 14px; overflow: hidden; align-self: flex-end; }
.ev-r    { display: flex; align-items: flex-start; gap: 14px; padding: 18px 24px; border-bottom: 1px solid rgba(255,255,255,.06); }
.ev-r:last-child { border-bottom: none; }
.ev-ico  { width: 36px; height: 36px; border-radius: 8px; background: rgba(0,212,255,.1); border: 1px solid rgba(0,212,255,.18); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 14px; }
.ev-rl   { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--cyn); margin-bottom: 4px; }
.ev-rv   { font-size: 13px; color: rgba(255,255,255,.78); line-height: 1.5; }

/* Timeline section */
.ev-tl   { background: var(--off); padding: 100px 0; }
.ev-tl-eye { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--org); display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.ev-tl-eye::before { content: ''; width: 32px; height: 1.5px; background: var(--org); border-radius: 2px; }
.ev-tl-h2 { font-family: var(--fh); font-size: clamp(34px, 4.5vw, 58px); font-weight: 800; letter-spacing: -2px; color: var(--blk); line-height: 1.05; margin-bottom: 48px; }
.ev-tl-h2 em { font-style: italic; color: var(--org); }
.tl-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.tl-dlbl { font-size: 11.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #fff; padding: 9px 22px; border-radius: 5px; display: inline-block; margin-bottom: 26px; }
.tl-dlbl.d1 { background: var(--org); }
.tl-dlbl.d2 { background: var(--cyn); color: var(--blk); }
.tl-col   { position: relative; padding-left: 22px; }
.tl-col::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, var(--org), var(--cyn)); border-radius: 2px; opacity: .35; }
.tl-item  { position: relative; margin-bottom: 16px; padding: 18px 20px; background: #fff; border: 1px solid rgba(0,0,0,.08); border-radius: 9px; transition: all .25s; box-shadow: 0 2px 10px rgba(0,0,0,.04); }
.tl-item::before { content: ''; position: absolute; left: -26px; top: 18px; width: 10px; height: 10px; border-radius: 50%; background: #fff; border: 2.5px solid var(--org); transition: background .25s; }
.tl-item:hover { transform: translateX(5px); border-color: var(--org); box-shadow: 0 5px 22px rgba(0,0,0,.09); }
.tl-item:hover::before { background: var(--org); }
.tl-tm { font-size: 11.5px; font-weight: 700; color: var(--org); margin-bottom: 6px; letter-spacing: .5px; }
.tl-tt { font-size: 13.5px; font-weight: 700; color: var(--blk); margin-bottom: 3px; line-height: 1.4; }
.tl-sub{ font-size: 11.5px; color: rgba(0,0,0,.48); line-height: 1.5; }
.tl-chip{ display: inline-block; font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 3px 10px; border-radius: 3px; margin-bottom: 7px; }
.tlk { background: rgba(255,107,0,.1);   color: var(--org); }
.tlp { background: rgba(0,164,196,.1);   color: #007ea8; }
.tlt { background: rgba(99,102,241,.1);  color: #4b50cc; }
.tlm { background: rgba(16,185,129,.1);  color: #058b67; }
.tlb { background: rgba(0,0,0,.06);      color: rgba(0,0,0,.42); }
.tlr { background: rgba(251,191,36,.12); color: #92600a; }

/* Focus areas grid */
.ev-focus { background: var(--blk); padding: 100px 0; border-top: 1px solid var(--bdr); }
.ev-fg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--bdr); margin-top: 50px; }
.ev-fc { background: var(--blk); padding: 34px 28px; transition: background .3s; position: relative; overflow: hidden; }
.ev-fc::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: linear-gradient(180deg, var(--org), var(--cyn)); transition: height .4s var(--ease); }
.ev-fc:hover { background: rgba(255,255,255,.03); }
.ev-fc:hover::before { height: 100%; }
.ev-fn { font-family: var(--fh); font-size: 48px; font-weight: 700; line-height: 1; color: rgba(255,255,255,.055); margin-bottom: 13px; }
.ev-fc h4 { font-size: 15.5px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.ev-fc p  { font-size: 12.5px; color: rgba(255,255,255,.48); line-height: 1.65; }


/* ============================================================
   22. Responsive Breakpoints
   ============================================================ */

/* Tablet — 900px to 1080px */
@media (max-width: 1080px) {
  .ft-grid         { grid-template-columns: 1fr 1fr; gap: 36px; }
  .price-row       { grid-template-columns: 1fr 1fr 1fr; }
  .pc.feat         { transform: none; }
  .pc.feat:hover   { transform: translateY(-7px); }
}

/* Mobile — under 900px */
@media (max-width: 900px) {
  .container { padding: 0 24px; }

  /* Hide desktop nav, show burger */
  .nav-pill, .nav-reg { display: none; }
  .nav-burger         { display: flex; }

  /* Stack hero grid */
  .hero-body .container { grid-template-columns: 1fr; }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-left: none;
    border-top: 1px solid var(--bdr);
    padding-left: 0;
    padding-top: 20px;
  }
  .h-stat { border-bottom: none; border-right: 1px solid var(--bdr); padding: 0 14px; }

  /* Stack two-column layouts */
  .ab-grid, .pl-grid, .mvp-grid, .offer-grid,
  .ct-body .container, .ct-form-grid, .ct-venue-in,
  .ev-hero .container, .pwr-grid { grid-template-columns: 1fr; }

  .tl-cols          { grid-template-columns: 1fr; }
  .alb-grid, .ev-fg { grid-template-columns: 1fr 1fr; }
  .price-row        { grid-template-columns: 1fr; }
  .ct-eq-grid       { grid-template-columns: 1fr 1fr; }
  .testi-grid       { grid-template-columns: 1fr; }
  .ct-card          { display: none; } /* Hide info card on mobile */
  .ct-form-left     { padding: 60px 0; border-right: none; }

  /* Simplify gallery bento for tablet */
  .bento { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 160px; }
  .bc-1, .bc-2, .bc-3, .bc-4, .bc-5, .bc-6, .bc-7, .bc-8,
  .bc-9, .bc-10, .bc-11, .bc-12 { grid-column: span 2; grid-row: span 1; }
  .bc-1, .bc-2 { grid-column: span 4; grid-row: span 2; } /* keep the 2 hero cells large */
  .gal-hd { flex-direction: column; align-items: flex-start; }

  /* Footer */
  .ft-cta-in { flex-direction: column; align-items: flex-start; }
  .notice-in { grid-template-columns: 1fr; }
  .cd-in     { grid-template-columns: 1fr; }
}

/* Small mobile — under 600px */
@media (max-width: 600px) {
  .hero-h1, .ab-h1, .ct-h1, .ev-h1, .tk-h1 { letter-spacing: -2px; }
  .alb-grid, .ev-fg  { grid-template-columns: 1fr; }
  .ct-eq-grid        { grid-template-columns: 1fr; }
  .ct-fr             { grid-template-columns: 1fr; }
  .ct-submit-row     { flex-direction: column; align-items: flex-start; }
  .tk-stats          { grid-template-columns: 1fr 1fr; }
  .ft-grid           { grid-template-columns: 1fr; gap: 28px; }
  .ag-list           { grid-template-columns: 1fr; }

  /* Gallery bento — 2-col on phone, hero cells stay tall */
  .bento { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; gap: 8px; }
  .bc-1, .bc-2, .bc-3, .bc-4, .bc-5, .bc-6, .bc-7, .bc-8,
  .bc-9, .bc-10, .bc-11, .bc-12 { grid-column: span 1; grid-row: span 1; }
  .bc-1, .bc-2 { grid-column: span 2; grid-row: span 2; }
}

/* ============================================================

/* ============================================================
   SECTION A — FOOTER (Calgary skyline bottom-right, cyan headers)
   ============================================================ */
.footer {
  position: relative;
  background: #06112a;
  color: rgba(255,255,255,.72);
  overflow: hidden;
  padding-top: 0;
  border-top: none;
}
.footer::before { display: none; }

.footer-skyline {
  display: block;
  position: absolute;
  bottom: 0; right: 0;
  width: 44%;
  max-width: 640px;
  height: auto;
  pointer-events: none;
  opacity: 1;
  z-index: 0;
  filter: none;
  margin: 0;
}
.footer .container { position: relative; z-index: 2; padding-top: 52px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  align-items: start;
}
.footer-brand .footer-logo { margin-bottom: 20px; }
.footer-brand .footer-logo img { height: 120px; width: auto; object-fit: contain; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.52); line-height: 1.8; max-width: 300px; }
.footer-col { display: flex; flex-direction: column; }
.footer-col h4 { font-size: 14px; font-weight: 700; color: #00d4ff; margin-bottom: 20px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,.65); padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.07); display: flex; align-items: center; gap: 10px; transition: color .2s; text-decoration: none; }
.footer-col a::before { content: '—'; color: rgba(255,255,255,.3); font-size: 11px; flex-shrink: 0; }
.footer-col a:hover { color: #fff; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; font-size: 13px; color: rgba(255,255,255,.65); padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.07); line-height: 1.5; }
.footer-contact-item i { width: 28px; height: 28px; border-radius: 50%; border: 1px solid rgba(0,212,255,.5); display: flex; align-items: center; justify-content: center; color: #00d4ff; font-size: 11px; flex-shrink: 0; background: rgba(0,212,255,.08); margin-top: 1px; }
.footer-social { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); font-size: 13px; transition: all .25s; text-decoration: none; flex-shrink: 0; padding: 0; gap: 0; }
.footer-social a::before { display: none; }
.footer-social a:hover { background: #ff6b00; border-color: #ff6b00; color: #fff; }
.footer-bottom { padding: 16px 0 14px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.3); }
.ft-credit { font-size: 11.5px; color: rgba(255,255,255,.22); text-align: center; padding: 8px 0 14px; border-top: 1px solid rgba(255,255,255,.07); }
.ft-credit a { color: #ff6b00; font-weight: 600; }
@media (max-width: 1080px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-skyline { width: 55%; } }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } .footer-skyline { width: 100%; position: relative; opacity: .35; } }

/* ============================================================
   SECTION B — PRICING: 3 cards, Square buttons, correct layout
   ============================================================ */
.price-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.pc { background: #fff; border: 1px solid rgba(0,0,0,.1); border-radius: 12px; padding: 32px 26px; display: flex; flex-direction: column; position: relative; overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s; }
.pc:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.12); }
.pc.feat { background: var(--blk); border-color: var(--blk); box-shadow: 0 28px 60px rgba(0,0,0,.45); }
.pc.feat:hover { transform: translateY(-8px); }
.pc-flag { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--org); color: #fff; font-size: 9px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; padding: 5px 18px; border-radius: 0 0 8px 8px; white-space: nowrap; box-shadow: 0 4px 16px rgba(255,107,0,.4); }
.pc-icon { font-size: 26px; margin-bottom: 14px; margin-top: 8px; }
.pc-name { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(0,0,0,.42); margin-bottom: 8px; }
.pc.feat .pc-name { color: rgba(255,255,255,.45); }
.pc-price { font-family: var(--fh); font-size: 38px; font-weight: 700; color: var(--blk); letter-spacing: -2px; line-height: 1.1; margin-bottom: 4px; }
.pc.feat .pc-price { color: #fff; }
.pc-price.enquire { font-size: 22px; letter-spacing: -1px; line-height: 1.3; }
.pc-cur { font-size: 17px; font-weight: 600; color: var(--org); vertical-align: super; }
.pc-note { font-size: 12px; color: rgba(0,0,0,.38); margin-bottom: 20px; line-height: 1.5; }
.pc.feat .pc-note { color: rgba(255,255,255,.38); }
.pc-list { flex: 1; margin-bottom: 22px; display: flex; flex-direction: column; gap: 9px; }
.pc-list li { font-size: 13px; color: rgba(0,0,0,.62); display: flex; align-items: flex-start; gap: 9px; line-height: 1.5; }
.pc-list li::before { content: '✓'; color: var(--org); font-weight: 900; font-size: 12px; flex-shrink: 0; margin-top: 1px; }
.pc.feat .pc-list li { color: rgba(255,255,255,.72); }
.pc.feat .pc-list li::before { color: var(--cyn); }

/* Square buy button */
.btn-square { display: flex; align-items: center; justify-content: center; gap: 9px; width: 100%; padding: 15px 22px; border-radius: 8px; font-family: var(--fb); font-size: 14px; font-weight: 700; cursor: pointer; border: none; text-decoration: none; transition: all .25s var(--ease); margin-top: auto; letter-spacing: .2px; white-space: nowrap; }
.btn-square.sq-outline { background: transparent; color: var(--org); border: 2px solid var(--org); }
.btn-square.sq-outline:hover { background: var(--org); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,0,.35); }
.btn-square.sq-solid { background: var(--org); color: #fff; box-shadow: 0 4px 20px rgba(255,107,0,.35); }
.btn-square.sq-solid:hover { background: var(--org2); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,107,0,.45); }
.sq-icon { width: 22px; height: 22px; flex-shrink: 0; }
.sq-secure { display: flex; align-items: center; justify-content: center; gap: 5px; margin-top: 10px; font-size: 11px; color: rgba(0,0,0,.35); }
.pc.feat .sq-secure { color: rgba(255,255,255,.32); }

@media (max-width: 900px) { .price-row { grid-template-columns: 1fr; } .pc.feat { box-shadow: 0 24px 60px rgba(0,0,0,.45); } }
@media (max-width: 1080px) { .price-row { grid-template-columns: repeat(3,1fr); gap: 16px; } }

/* ============================================================
   SECTION C — HERO: stronger overlay for text readability
   ============================================================ */
/* Heavier left-push gradient so headline area stays clean */
.hero-bg::after {
  background:
    linear-gradient(108deg,
      rgba(4,6,18,.97) 0%,
      rgba(4,6,18,.90) 30%,
      rgba(4,6,18,.60) 55%,
      rgba(4,6,18,.18) 100%),
    linear-gradient(0deg,
      rgba(4,6,18,.96) 0%,
      rgba(4,6,18,.55) 35%,
      transparent 65%);
}
.hero-bg img { opacity: .65; }

/* Strong text shadow so each letter pops off any background detail */
.hero-h1 {
  text-shadow:
    0 2px 4px rgba(0,0,0,1),
    0 4px 24px rgba(0,0,0,.85),
    0 8px 48px rgba(0,0,0,.5);
}
.hero-h1 .ital {
  text-shadow:
    0 2px 4px rgba(0,0,0,1),
    0 4px 20px rgba(255,107,0,.5),
    0 8px 40px rgba(0,0,0,.6);
}
.hero-eye, .hero-meta-i { text-shadow: 0 1px 8px rgba(0,0,0,1), 0 2px 16px rgba(0,0,0,.8); }

/* Live badge replacing old hero-eye */
.hero-eye-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,107,0,.14);
  border: 1px solid rgba(255,107,0,.4);
  border-radius: 100px;
  padding: 6px 16px 6px 12px;
  margin-bottom: 22px;
  animation: badgePop .7s cubic-bezier(0,.55,.45,1) .3s both;
}
.hero-eye-badge .badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--org);
  flex-shrink: 0;
  animation: livePulse 1.8s ease-in-out infinite;
}
.hero-eye-badge span {
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--org);
  text-shadow: 0 1px 8px rgba(0,0,0,.8);
}

/* Scroll hint at bottom of hero */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  animation: bounceDown 2.8s ease-in-out infinite;
}
.hero-scroll-hint span { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.55); text-shadow: 0 1px 4px rgba(0,0,0,.8); }
.hero-scroll-hint .scroll-arrow { width: 20px; height: 20px; border-right: 2px solid rgba(255,255,255,.55); border-bottom: 2px solid rgba(255,255,255,.55); transform: rotate(45deg); }

/* ============================================================
   SECTION D — BROCHURE DOWNLOAD BAR
   ============================================================ */
.brochure-bar {
  background: linear-gradient(135deg, #06112a 0%, #0b1e40 100%);
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 38px 0;
  position: relative; overflow: hidden;
}
.brochure-bar::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 50%, rgba(0,212,255,.08) 0%, transparent 60%); pointer-events: none; }
.brochure-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; position: relative; }
.brochure-left { display: flex; align-items: center; gap: 20px; }
.brochure-icon { width: 54px; height: 54px; background: rgba(255,107,0,.1); border: 1px solid rgba(255,107,0,.3); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.brochure-text h4 { font-family: var(--fh); font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 5px; }
.brochure-text p { font-size: 13.5px; color: rgba(255,255,255,.52); line-height: 1.5; }
.brochure-text small { font-size: 11px; color: rgba(255,255,255,.28); display: block; margin-top: 3px; }
.btn-download { display: inline-flex; align-items: center; gap: 10px; padding: 15px 30px; background: var(--org); color: #fff; border-radius: 8px; font-family: var(--fb); font-size: 14px; font-weight: 700; transition: all .25s var(--ease); white-space: nowrap; text-decoration: none; box-shadow: 0 4px 22px rgba(255,107,0,.38); flex-shrink: 0; }
.btn-download:hover { background: var(--org2); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,107,0,.48); }
@media (max-width: 900px) { .brochure-inner { flex-direction: column; align-items: flex-start; } }

/* ============================================================
   SECTION E — PDF GALLERY GRID
   ============================================================ */
.pdf-gal-sec { background: var(--off); padding: 90px 0 70px; }
.pdf-gal-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 44px; }
.pdf-gal-cell { border-radius: 8px; overflow: hidden; aspect-ratio: 9/11; position: relative; cursor: pointer; }
.pdf-gal-cell img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.93); transition: transform .6s var(--ease), filter .4s; display: block; }
.pdf-gal-cell:hover img { transform: scale(1.07); filter: brightness(1); }
.pdf-gal-cell::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,107,0,.18) 0%, rgba(0,212,255,.1) 100%); opacity: 0; transition: opacity .35s; }
.pdf-gal-cell:hover::after { opacity: 1; }
@media (max-width: 900px) { .pdf-gal-grid { grid-template-columns: repeat(2,1fr); } }

/* ============================================================
   SECTION F — ANIMATIONS (premium & dynamic feel)
   ============================================================ */

/* Keyframes */
@keyframes badgePop    { from { opacity:0; transform:scale(.8);    } to { opacity:1; transform:scale(1);    } }
@keyframes livePulse   { 0%,100%{ box-shadow:0 0 0 0 rgba(255,107,0,.8);  } 60%{ box-shadow:0 0 0 6px rgba(255,107,0,0); } }
@keyframes bounceDown  { 0%,100%{ transform:translateX(-50%) translateY(0);  opacity:.5; } 55%{ transform:translateX(-50%) translateY(9px); opacity:.75; } }
@keyframes statGlow    { 0%,100%{ text-shadow:0 0 0 rgba(255,107,0,0); } 50%{ text-shadow:0 0 28px rgba(255,107,0,.55); } }
@keyframes cardFloat   { 0%,100%{ transform:translateY(-6px);  } 50%{ transform:translateY(-13px); } }
@keyframes shimmer     { 0%{ background-position:0% 50%; } 100%{ background-position:200% 50%; } }
@keyframes ruleGrow    { from{ width:0; opacity:0; } to{ width:32px; opacity:1; } }
@keyframes dotPulse    { 0%,100%{ transform:scale(1);   opacity:1;  } 50%{ transform:scale(1.7); opacity:.5; } }
@keyframes quoteFloat  { 0%,100%{ transform:translateY(0)  rotate(-4deg); opacity:.08; } 50%{ transform:translateY(-10px) rotate(-2deg); opacity:.15; } }
@keyframes fadeSlideUp { from{ opacity:0; transform:translateY(28px); } to{ opacity:1; transform:translateY(0); } }
@keyframes flineAnim   { to{ background-position:200% center; } }

/* ── Hero stats glow pulse ── */
.h-stat .n { animation: statGlow 3.5s ease-in-out infinite; }
.h-stat:nth-child(2) .n { animation-delay:.9s; }
.h-stat:nth-child(3) .n { animation-delay:1.8s; }
.h-stat:nth-child(4) .n { animation-delay:2.7s; }

/* ── Marquee dots pulse ── */
.mq-dot { animation: dotPulse 2.2s ease-in-out infinite; }
.mq-item:nth-child(even) .mq-dot { animation-delay:.55s; }

/* ── Featured card float + shimmer border ── */
.pc.feat { animation: cardFloat 4.5s ease-in-out infinite; }
.pc.feat:hover { animation-play-state: paused; }

/* Shimmer gradient border on hover for all cards */
.pc { position: relative; }
.pc::before { content: ''; position: absolute; inset: -2px; border-radius: 14px; background: linear-gradient(135deg, var(--org), var(--cyn), var(--org)); background-size: 300% 100%; opacity: 0; z-index: -1; animation: shimmer 3s linear infinite; transition: opacity .4s; }
.pc:hover::before { opacity: 1; }

/* ── Section eyebrow rule slide-in ── */
.sec-eye::before { animation: ruleGrow .7s var(--ease) both; }

/* ── Heading italic underline grow ── */
.sec-h2 em { position: relative; display: inline-block; }
.sec-h2 em::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 2px; background: var(--org); border-radius: 2px; transition: width .9s var(--ease) .3s; }
.reveal.done .sec-h2 em::after { width: 100%; }

/* ── Nav pill underline on hover ── */
.nav-pill a { position: relative; }
.nav-pill a::after { content: ''; position: absolute; bottom: 5px; left: 50%; right: 50%; height: 1.5px; background: var(--org); border-radius: 2px; transition: left .25s var(--ease), right .25s var(--ease); }
.nav-pill a:hover::after, .nav-pill a.on::after { left: 20px; right: 20px; }

/* ── Bento gallery cells hover overlay ── */
.bc::after { background: linear-gradient(135deg, rgba(255,107,0,.2), rgba(0,212,255,.12)); transition: opacity .4s; }

/* ── Testimonial quote float ── */
.testi-card::before { animation: quoteFloat 6s ease-in-out infinite; }
.testi-card:nth-child(2)::before { animation-delay: -3s; }

/* ── Sponsor logos grayscale-to-color ── */
.sp-logos img { filter: grayscale(15%); transition: filter .45s, transform .4s var(--ease); }
.sp-logos img:hover { filter: grayscale(0%) brightness(1.05); transform: scale(1.04); }

/* ── Back-to-top button spring on hover ── */
.btt { transition: opacity .3s, transform .3s; }
.btt:hover { transform: translateY(-4px) scale(1.12); }

/* ── Footer skyline hover shimmer ── */
.footer-skyline { transition: filter .6s ease, opacity .4s; }
.footer:hover .footer-skyline { filter: brightness(1.12) saturate(1.15); }

/* ── Animated gradient line at top of footer ── */
.footer::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--org), var(--cyn), var(--org));
  background-size: 200% 100%;
  animation: flineAnim 5s linear infinite;
  z-index: 3;
}

/* ── Brochure bar icon pulse ── */
.brochure-icon { animation: statGlow 4s ease-in-out infinite; }

/* ── Timeline items ── */
.tl-item { transition: transform .3s var(--ease), border-color .25s, box-shadow .25s; }

/* ── Event focus cards left bar ── */
.ev-fc::before { transition: height .5s var(--ease); }

/* ── Agenda row accent ── */
.ag-row::after { transition: width .3s var(--ease); }

/* ── Scroll reveal transition ── */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.left { transform: translateX(-36px); }
.reveal.right { transform: translateX(36px); }
.reveal.done { opacity: 1; transform: translate(0); }
.d1{transition-delay:.1s} .d2{transition-delay:.2s} .d3{transition-delay:.3s}
.d4{transition-delay:.4s} .d5{transition-delay:.5s} .d6{transition-delay:.6s}


/* ============================================================
   NETWORKING SECTION — Dark editorial, horizontal photo strip
   with large stat callouts. Completely different from gallery.
   ============================================================ */
.network-sec {
  background: #06112a;
  padding: 100px 0 0;
  overflow: hidden;
  position: relative;
}
.network-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(0,212,255,.06) 0%, transparent 55%),
              radial-gradient(ellipse at 80% 20%, rgba(255,107,0,.05) 0%, transparent 50%);
  pointer-events: none;
}
.network-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
  position: relative;
}
.network-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  overflow: hidden;
}
.nstat {
  background: rgba(6,17,42,.9);
  padding: 28px 24px;
  transition: background .3s;
}
.nstat:hover { background: rgba(255,255,255,.04); }
.nstat .n {
  font-family: var(--fh);
  font-size: 42px;
  font-weight: 700;
  color: var(--cyn);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.nstat .l {
  font-size: 12px;
  color: rgba(255,255,255,.48);
  line-height: 1.4;
}
/* Horizontal scrolling photo strip at bottom */
.network-strip {
  display: flex;
  gap: 0;
  overflow: hidden;
  height: 340px;
  margin-top: 0;
}
.nphoto {
  flex: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: flex .5s cubic-bezier(.4,0,.2,1);
}
.nphoto:hover { flex: 1.8; }
.nphoto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(.75) saturate(.85);
  transition: filter .4s, transform .6s;
  display: block;
}
.nphoto:hover img { filter: brightness(.9) saturate(1.1); transform: scale(1.04); }
/* Caption overlay on hover */
.nphoto-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 16px 14px;
  background: linear-gradient(0deg, rgba(4,6,18,.92) 0%, transparent 100%);
  font-size: 12px;
  color: rgba(255,255,255,.8);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .35s, transform .35s;
  pointer-events: none;
}
.nphoto:hover .nphoto-cap { opacity: 1; transform: translateY(0); }

/* ============================================================
   EVENT HIGHLIGHTS — Bento-style info cards from PDF data
   Rich, varied layout with stats, quotes, key info
   ============================================================ */
.highlights-sec {
  background: var(--blk);
  padding: 100px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.hl-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 90px;
  gap: 14px;
  margin-top: 52px;
}
/* Bento cards */
.hlc {
  border-radius: 12px;
  overflow: hidden;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.hlc:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.35); }

/* Size variants */
.hlc-tall   { grid-column: span 4; grid-row: span 5; }
.hlc-wide   { grid-column: span 8; grid-row: span 2; }
.hlc-sq     { grid-column: span 4; grid-row: span 3; }
.hlc-half   { grid-column: span 6; grid-row: span 3; }
.hlc-third  { grid-column: span 4; grid-row: span 3; }
.hlc-img    { grid-column: span 4; grid-row: span 4; padding: 0; }
.hlc-full   { grid-column: span 12; grid-row: span 2; }

/* Style variants */
.hlc-navy  { background: #06112a; border: 1px solid rgba(255,255,255,.08); }
.hlc-org   { background: linear-gradient(135deg, #ff6b00 0%, #e55a00 100%); }
.hlc-dark  { background: #0b0e17; border: 1px solid rgba(255,255,255,.06); }
.hlc-cyn   { background: linear-gradient(135deg, rgba(0,212,255,.15) 0%, rgba(0,212,255,.05) 100%); border: 1px solid rgba(0,212,255,.2); }
.hlc-glass { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); backdrop-filter: blur(8px); }

/* Card content */
.hlc-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.38);
  margin-bottom: 10px;
}
.hlc-org .hlc-label { color: rgba(255,255,255,.7); }
.hlc-big {
  font-family: var(--fh);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 700; line-height: 1;
  color: #fff; letter-spacing: -2px;
}
.hlc-big em { font-style: normal; color: var(--cyn); }
.hlc-org .hlc-big em { color: rgba(255,255,255,.85); }
.hlc-title { font-size: 15px; font-weight: 700; color: #fff; line-height: 1.4; margin-bottom: 6px; }
.hlc-org .hlc-title { color: #fff; }
.hlc-body { font-size: 12.5px; color: rgba(255,255,255,.55); line-height: 1.65; }
.hlc-org .hlc-body { color: rgba(255,255,255,.8); }
.hlc-cyn .hlc-body { color: rgba(255,255,255,.65); }
.hlc-quote {
  font-family: var(--fh);
  font-size: clamp(14px, 1.8vw, 20px);
  font-style: italic;
  color: rgba(255,255,255,.85);
  line-height: 1.5;
  border-left: 3px solid var(--org);
  padding-left: 16px;
}
.hlc-tag-row {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px;
}
.hlc-tag {
  font-size: 10px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.65);
}
.hlc-org .hlc-tag { background: rgba(255,255,255,.2); color: #fff; }
.hlc-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.hlc-img:hover img { transform: scale(1.06); }
/* Overlay on photo cards */
.hlc-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,107,0,.2), transparent 60%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.hlc-img:hover::after { opacity: 1; }
.hlc-icon { font-size: 28px; margin-bottom: 12px; }
.hlc-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700;
  color: var(--cyn); margin-top: 12px;
  transition: gap .2s;
}
.hlc:hover .hlc-arrow { gap: 10px; }
.hlc-org .hlc-arrow { color: rgba(255,255,255,.9); }
.hlc-progress { width: 100%; height: 3px; background: rgba(255,255,255,.1); border-radius: 2px; margin-top: 8px; overflow: hidden; }
.hlc-bar { height: 100%; border-radius: 2px; background: var(--cyn); transition: width 1.5s var(--ease); }
.reveal.done .hlc-bar { /* width set inline */ }

/* ============================================================
   WHO ATTENDS — Attendee profile pills with icons from PDF
   ============================================================ */
.who-sec {
  background: var(--off);
  padding: 90px 0;
}
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}
.who-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.who-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 100px;
  background: #fff;
  border: 1.5px solid rgba(0,0,0,.1);
  font-size: 13px;
  color: rgba(0,0,0,.65);
  font-weight: 500;
  cursor: default;
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.who-chip:hover {
  background: var(--org);
  border-color: var(--org);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255,107,0,.3);
}
.who-chip .ico { font-size: 16px; }
.who-right { display: flex; flex-direction: column; gap: 22px; }
.who-stat {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.07);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.who-stat:hover { transform: translateX(6px); box-shadow: 0 6px 24px rgba(0,0,0,.1); }
.who-stat .n {
  font-family: var(--fh);
  font-size: 36px;
  font-weight: 700;
  color: var(--org);
  line-height: 1;
  min-width: 70px;
}
.who-stat .txt { flex: 1; }
.who-stat .txt strong { display: block; font-size: 14px; font-weight: 700; color: var(--blk); margin-bottom: 3px; }
.who-stat .txt span { font-size: 12.5px; color: rgba(0,0,0,.45); line-height: 1.5; }
.who-stat .ico { font-size: 28px; flex-shrink: 0; }

@media (max-width: 900px) {
  .network-header { grid-template-columns: 1fr; }
  .network-stats { grid-template-columns: 1fr 1fr; }
  .network-strip { height: 220px; }
  .hl-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 80px; }
  .hlc-tall,.hlc-wide,.hlc-sq,.hlc-half,.hlc-third,.hlc-full,.hlc-img { grid-column: span 2; }
  .who-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SPONSORSHIP TIERS — Full table from PDF brochure
   ============================================================ */
.sponsor-sec {
  background: var(--blk);
  padding: 100px 0;
  border-top: 1px solid rgba(255,255,255,.07);
}
.sponsor-intro {
  max-width: 760px;
  margin-bottom: 52px;
}
.sponsor-intro p {
  font-size: 15px; color: rgba(255,255,255,.55); line-height: 1.8; margin-top: 14px;
}
.sponsor-note {
  font-size: 13px; color: rgba(255,255,255,.35); margin-top: 52px;
  padding: 20px 24px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 8px;
  line-height: 1.7;
}
.sponsor-note strong { color: rgba(255,255,255,.65); }

/* Powered By — full-width dark header card */
.sp-tier-hero {
  background: #080d1a;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.sp-tier-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,212,255,.04) 0%, transparent 60%);
}
.sp-tier-hero-left { position: relative; }
.sp-tier-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  color: var(--wht); background: var(--org);
  padding: 4px 14px; border-radius: 4px; margin-bottom: 10px;
}
.sp-tier-hero-price {
  font-family: var(--fh); font-size: 22px; font-weight: 700;
  color: rgba(255,255,255,.45); letter-spacing: 1px;
  padding: 6px 18px; border: 1px solid rgba(255,255,255,.15); border-radius: 6px;
  align-self: flex-start; white-space: nowrap; position: relative;
}
.sp-tier-hero h3 {
  font-family: var(--fh); font-size: 26px; font-weight: 700;
  color: #fff; margin-bottom: 6px; letter-spacing: -0.5px;
}
.sp-tier-hero .sp-sub { font-size: 13px; color: rgba(255,255,255,.45); margin-bottom: 16px; font-style: italic; }
.sold-out-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--org); border: 1.5px solid var(--org);
  padding: 3px 12px; border-radius: 4px; margin-left: 10px;
}

/* 2-column tier grid */
.sp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.sp-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.sp-tier {
  border-radius: 12px;
  padding: 24px 26px;
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.sp-tier:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.4); }

/* Tier colour variants */
.sp-platinum { background: linear-gradient(135deg, #1a2744 0%, #0d1a35 100%); border: 1px solid rgba(148,163,184,.25); }
.sp-gold     { background: linear-gradient(135deg, #2a1f08 0%, #1a1305 100%); border: 1px solid rgba(251,191,36,.3); }
.sp-silver   { background: linear-gradient(135deg, #1a1a2a 0%, #101020 100%); border: 1px solid rgba(148,163,184,.2); }
.sp-bronze   { background: linear-gradient(135deg, #2a1408 0%, #1a0c05 100%); border: 1px solid rgba(180,83,9,.35); }
.sp-cocktail { background: linear-gradient(135deg, #1a0a2a 0%, #0f0618 100%); border: 1px solid rgba(139,92,246,.35); }
.sp-lunch    { background: linear-gradient(135deg, #08201a 0%, #051310 100%); border: 1px solid rgba(16,185,129,.35); }
.sp-lanyard  { background: linear-gradient(135deg, #08182a 0%, #051018 100%); border: 1px solid rgba(6,182,212,.35); }
.sp-booth    { background: linear-gradient(135deg, #0f1a14 0%, #081008 100%); border: 1px solid rgba(34,197,94,.3); }

/* Tier header */
.sp-tier-head {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 12px;
  margin-bottom: 12px;
}
.sp-tier-name {
  font-size: 11px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase;
}
.sp-platinum .sp-tier-name { color: #94a3b8; }
.sp-gold     .sp-tier-name { color: #fbbf24; }
.sp-silver   .sp-tier-name { color: #94a3b8; }
.sp-bronze   .sp-tier-name { color: #b45309; }
.sp-cocktail .sp-tier-name { color: #a78bfa; }
.sp-lunch    .sp-tier-name { color: #10b981; }
.sp-lanyard  .sp-tier-name { color: #06b6d4; }
.sp-booth    .sp-tier-name { color: #22c55e; }

.sp-tier-badge {
  font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 2px 9px; border-radius: 3px; white-space: nowrap; flex-shrink: 0;
}
.sp-badge-excl { background: rgba(139,92,246,.2); color: #a78bfa; border: 1px solid rgba(139,92,246,.3); }
.sp-badge-ltd3 { background: rgba(248,113,113,.15); color: #f87171; border: 1px solid rgba(248,113,113,.25); }
.sp-badge-ltd4 { background: rgba(251,191,36,.15); color: #fbbf24; border: 1px solid rgba(251,191,36,.25); }
.sp-badge-multi{ background: rgba(148,163,184,.1); color: #94a3b8; border: 1px solid rgba(148,163,184,.2); }
.sp-badge-both { background: rgba(16,185,129,.15); color: #10b981; border: 1px solid rgba(16,185,129,.25); }

.sp-tier-price {
  font-family: var(--fh); font-size: 24px; font-weight: 700;
  color: #fff; letter-spacing: -1px; margin-bottom: 8px;
}
.sp-tier-sub { font-size: 12.5px; color: rgba(255,255,255,.38); font-style: italic; margin-bottom: 16px; line-height: 1.5; }

/* Feature bullets */
.sp-list { display: flex; flex-direction: column; gap: 7px; }
.sp-list li {
  font-size: 12.5px; color: rgba(255,255,255,.68);
  display: flex; align-items: flex-start; gap: 8px; line-height: 1.5;
}
.sp-list li::before { content: '▸'; color: var(--org); font-size: 10px; flex-shrink: 0; margin-top: 2px; }
.sp-list li strong { color: #fff; }
.sp-list li em { font-style: normal; color: rgba(255,255,255,.4); font-size: 11.5px; }

/* Single-width booth card */
.sp-solo { grid-column: span 2; }
.sp-booth.sp-solo {
  display: flex; flex-direction: row; gap: 40px; align-items: flex-start;
}
.sp-booth.sp-solo .sp-list { flex-direction: row; flex-wrap: wrap; gap: 10px 24px; flex: 1; margin-top: 4px; }
.sp-booth.sp-solo .sp-list li { width: calc(50% - 12px); }

/* CTA button in sponsor section */
.sp-cta-row {
  display: flex; align-items: center; gap: 16px;
  margin-top: 40px; flex-wrap: wrap;
}

@media (max-width: 900px) {
  .sp-grid, .sp-grid-3 { grid-template-columns: 1fr; }
  .sp-booth.sp-solo { flex-direction: column; }
  .sp-booth.sp-solo .sp-list li { width: 100%; }
  .sp-solo { grid-column: span 1; }
}
