/* The Industry Link — v3, full glassmorphism dark-mode rebuild (2026-09-06).
   Ground-up redesign: one continuous dark canvas with blurred colour-glow
   orbs behind everything, and floating frosted-glass panels for all content
   instead of the old full-bleed orange/teal/cream colour blocks. Same brand
   fonts + hues as v2 (deck-accurate), new layout/material/motion language. */

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg: #07080b;
  --bg-soft: #0c0e13;
  --orange: #FF7A3D;
  --orange-deep: #F4622C;
  --teal: #2FE0C7;
  --teal-deep: #17B695;
  --ink: #F5F6FA;
  --ink-dim: #9BA0AC;
  --ink-faint: #6D7280;
  --white: #FFFFFF;

  --glass: rgba(255,255,255,0.055);
  --glass-strong: rgba(255,255,255,0.09);
  --glass-border: rgba(255,255,255,0.14);
  --glass-border-strong: rgba(255,255,255,0.24);

  --font-display: "Archivo Black", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "Archivo Black", "Helvetica Neue", Arial, sans-serif;

  --ease: cubic-bezier(.16,.84,.44,1);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 96px; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.03;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
  display: inline-block;
}
.body-copy { font-size: 16px; line-height: 1.8; max-width: 660px; color: var(--ink-dim); }
.body-copy p { margin: 0 0 16px; }
.body-copy p:last-child { margin-bottom: 0; }

/* ---- ambient background glow (fixed, sits behind every section) ---- */
.bg-glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.bg-glow .glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.34;
}
.bg-glow .g1 { top: -12%; left: -8%; width: 620px; height: 620px; background: var(--orange-deep); }
.bg-glow .g2 { top: 22%; right: -10%; width: 560px; height: 560px; background: var(--teal-deep); opacity: 0.26; }
.bg-glow .g3 { bottom: -14%; left: 20%; width: 700px; height: 700px; background: var(--orange-deep); opacity: 0.2; }
.bg-glow .g4 { bottom: 30%; right: 8%; width: 460px; height: 460px; background: var(--teal-deep); opacity: 0.2; }

/* ---- ambient particles (fixed to viewport, drift up continuously) ---- */
.particle {
  position: absolute;
  bottom: -20px;
  left: var(--x, 50%);
  width: var(--s, 5px);
  height: var(--s, 5px);
  border-radius: 50%;
  background: var(--c, var(--orange));
  box-shadow: 0 0 10px 2px var(--c, var(--orange));
  opacity: 0;
  filter: blur(0.2px);
  animation: particle-rise linear infinite;
  animation-delay: var(--d, 0s);
  animation-duration: var(--t, 14s);
}
@keyframes particle-rise {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  8%   { opacity: 0.8; }
  85%  { opacity: 0.5; }
  100% { transform: translateY(-115vh) translateX(30px); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .particle { animation: none; opacity: 0; } }

/* ---- reveal-on-scroll ---- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal="stagger"] > * { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
[data-reveal="stagger"].is-visible > * { opacity: 1; transform: translateY(0); }
[data-reveal="stagger"].is-visible > *:nth-child(1) { transition-delay: .05s; }
[data-reveal="stagger"].is-visible > *:nth-child(2) { transition-delay: .13s; }
[data-reveal="stagger"].is-visible > *:nth-child(3) { transition-delay: .21s; }
[data-reveal="stagger"].is-visible > *:nth-child(4) { transition-delay: .29s; }
[data-reveal="stagger"].is-visible > *:nth-child(5) { transition-delay: .37s; }
[data-reveal="stagger"].is-visible > *:nth-child(6) { transition-delay: .45s; }

/* ---- glass primitive ---- */
.glass {
  position: relative;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.65);
}
.glass.strong { background: var(--glass-strong); border-color: var(--glass-border-strong); }

/* ---- nav ---- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 8vw;
  background: rgba(7,8,11,0.6);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-nav .brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 15px; letter-spacing: -0.01em; text-decoration: none; color: var(--white); }
.site-nav .brand img { height: 26px; width: auto; flex-shrink: 0; }
.site-nav .links { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; }
.site-nav .links a:not(.btn) { position: relative; color: var(--ink-dim); text-decoration: none; padding-bottom: 3px; transition: color .2s; }
.site-nav .links a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1.5px; background: var(--orange); transition: right .25s var(--ease); }
.site-nav .links a:not(.btn):hover { color: var(--white); }
.site-nav .links a:not(.btn):hover::after { right: 0; }
.site-nav .btn { padding: 10px 20px; font-size: 11.5px; }

.nav-toggle { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 36px; height: 36px; padding: 0; background: none; border: none; cursor: pointer; flex-shrink: 0; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 780px) {
  .nav-toggle { display: flex; }
  .site-nav .links { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 2px; background: rgba(7,8,11,0.97); backdrop-filter: blur(18px) saturate(160%); border-bottom: 1px solid rgba(255,255,255,0.08); padding: 6px 6vw 14px; max-height: 0; overflow: hidden; opacity: 0; transition: max-height .3s var(--ease), opacity .25s var(--ease); }
  .site-nav .links.open { max-height: 420px; opacity: 1; }
  .site-nav .links a:not(.btn) { padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .site-nav .links .btn { display: inline-flex; justify-content: center; margin: 14px 0 4px; }
}

/* ---- section shell ---- */
.section {
  position: relative;
  z-index: 1;
  padding: 100px 8vw;
}
.section-inner { max-width: 1160px; margin: 0 auto; }

/* ---- hero ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 80px;
}
.hero-panel { padding: 56px clamp(28px,5vw,72px); text-align: center; margin: 0 auto; }
.hero h1 { font-size: clamp(44px, 8vw, 96px); background: linear-gradient(180deg, var(--white) 0%, rgba(245,246,250,0.6) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .lede { font-size: clamp(16px, 2vw, 19px); color: var(--ink-dim); max-width: 620px; margin: 24px auto 0; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.hero-wordmark { height: 30px; width: auto; margin: 40px auto 0; opacity: 0.8; }

/* ---- animated soundwave (brand design-guide element, kept visually
   identical to the original: solid orange bars, blue zigzag line, orange
   circular chain-mark badge — only the mobile flex-crush fix is new) ---- */
.wave-hero { position: relative; height: 260px; display: flex; align-items: center; justify-content: center; margin: 8px 0 30px; overflow: hidden; }
.wave-bars { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; gap: 5px; z-index: 1; }
.wave-bars span { flex-shrink: 0; display: block; width: 5px; height: var(--h, 30px); border-radius: 3px; background: var(--orange-deep); animation-name: wave-pulse; animation-iteration-count: infinite; animation-timing-function: ease-in-out; }
@keyframes wave-pulse { 0%, 100% { transform: scaleY(0.55); } 50% { transform: scaleY(1); } }
.wave-zigzag { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 2; opacity: 0.85; }
.wave-badge { position: relative; z-index: 3; width: 128px; height: 128px; border-radius: 50%; background: var(--orange-deep); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 10px rgba(244,98,44,0.12), 0 20px 50px -14px rgba(244,98,44,0.55); }
.wave-badge img { height: 64px; width: auto; }
@media (max-width: 700px) {
  .wave-hero { height: 190px; }
  .wave-badge { width: 92px; height: 92px; }
  .wave-badge img { height: 46px; width: auto; }
}
@media (prefers-reduced-motion: reduce) { .wave-bars span { animation: none; transform: scaleY(0.8); } }

/* ---- buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.btn.solid { background: linear-gradient(120deg, var(--orange-deep), var(--orange)); color: #14100b; font-weight: 700; box-shadow: 0 16px 34px -14px rgba(255,122,61,0.55); }
.btn.solid:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -14px rgba(255,122,61,0.7); }
.btn.ghost { background: var(--glass); border-color: var(--glass-border); color: var(--ink); backdrop-filter: blur(14px); }
.btn.ghost:hover { transform: translateY(-3px); border-color: var(--glass-border-strong); }

/* ---- section heading ---- */
.section-head { max-width: 680px; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(28px, 4.5vw, 46px); margin-top: 10px; }

/* ---- tour panel + split-flap departure board ---- */
.tour-panel { padding: 56px clamp(24px,5vw,72px) 64px; text-align: center; }
.tour-title { font-size: clamp(30px, 5.5vw, 56px); }

.board { margin: 44px auto 0; max-width: 900px; border-radius: 16px; overflow: hidden; border: 1px solid var(--glass-border); }
.board-head {
  display: grid;
  grid-template-columns: 1fr 1.3fr 2fr 1.3fr;
  gap: 2px;
  background: rgba(255,255,255,0.03);
  padding: 12px clamp(10px,2vw,20px);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.board-row {
  display: grid;
  grid-template-columns: 1fr 1.3fr 2fr 1.3fr;
  gap: 2px;
  padding: 10px clamp(10px,2vw,20px);
  border-top: 1px solid var(--glass-border);
  background: rgba(0,0,0,0.15);
}
.board-col { display: flex; gap: 3px; flex-wrap: wrap; align-items: center; justify-content: flex-start; min-width: 0; row-gap: 4px; }
.board-col.center { justify-content: center; }
.board-word { display: inline-flex; gap: 3px; flex-wrap: nowrap; }
.flap {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  background: #0d0e12;
  border-radius: 3px;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}
.flap::after { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: rgba(0,0,0,0.55); transform: translateY(-0.5px); }
.flap.flipping { animation: flap-flip 0.22s ease-in; }
@keyframes flap-flip { 0% { transform: rotateX(0deg); } 50% { transform: rotateX(-90deg); } 100% { transform: rotateX(0deg); } }
@media (prefers-reduced-motion: reduce) { .flap.flipping { animation: none; } }

@media (max-width: 700px) {
  .board-head { display: none; }
  .board-row { grid-template-columns: 1fr; gap: 8px; padding: 16px clamp(14px,3vw,20px); }
  .board-col::before { content: attr(data-label); display: block; width: 100%; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 4px; }
  .flap { width: 13px; height: 21px; line-height: 21px; font-size: 12px; }
}

/* ---- venue accordion (tour stop profiles) ---- */
.venue-accordion { max-width: 900px; margin: 0 auto; text-align: left; }
.venue-item { border: 1px solid var(--glass-border); border-radius: 14px; margin-bottom: 12px; overflow: hidden; background: rgba(0,0,0,0.15); }
.venue-toggle {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(160px,240px) 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  text-align: left;
}
.venue-toggle-main { display: flex; flex-direction: column; gap: 2px; }
.venue-toggle-city { font-family: var(--font-display); font-size: 16px; text-transform: uppercase; }
.venue-toggle-venue { font-size: 13px; color: var(--ink-dim); }
.venue-toggle-date { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal); white-space: nowrap; text-align: left; }
.venue-toggle-icon { font-family: var(--font-display); font-size: 20px; color: var(--orange); flex-shrink: 0; transition: transform .25s var(--ease); }
.venue-item.open .venue-toggle-icon { transform: rotate(45deg); }
.venue-panel { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.venue-panel-inner { padding: 4px 22px 26px; }
.venue-photo-slot {
  aspect-ratio: 16/9;
  border-radius: 12px;
  border: 1.5px dashed var(--glass-border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 16px;
}
.venue-address { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.05em; color: var(--teal); margin-bottom: 12px; }
.venue-bio { font-size: 14.5px; line-height: 1.75; color: var(--ink-dim); margin: 0; }
@media (max-width: 560px) {
  .venue-toggle { padding: 15px 16px; }
  .venue-toggle-date { display: none; }
  .venue-panel-inner { padding: 4px 16px 22px; }
}

/* ---- grids ---- */
.grid-2 { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 900px) { .grid-2 { grid-template-columns: 1fr; } .grid-3 { grid-template-columns: 1fr; } .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .grid-4 { grid-template-columns: 1fr; } }

/* ---- card ---- */
.card { padding: 28px 26px; }
.card h3 { font-size: 17px; margin-bottom: 10px; text-transform: none; letter-spacing: 0; font-family: var(--font-body); font-weight: 700; }
.card p { font-size: 14.5px; color: var(--ink-dim); margin: 0; line-height: 1.65; }
.media-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--glass-border); }
.media-frame img { width: 100%; display: block; }

/* ---- partners ---- */
.partner-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: clamp(32px,5vw,64px); margin-top: 10px; }
.partner-logo { height: 42px; width: auto; max-width: 150px; object-fit: contain; opacity: 0.88; transition: opacity .2s, transform .2s; }
.partner-logo:hover { opacity: 1; transform: translateY(-2px); }
@media (max-width: 600px) { .partner-logo { height: 32px; max-width: 120px; } }

/* ---- message bubbles (success stories) ---- */
.bubble-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 780px) { .bubble-grid { grid-template-columns: 1fr; } }
.msg-bubble { padding: 26px 26px 22px; border-radius: 22px 22px 22px 6px; }
.msg-bubble.featured { border-radius: 26px 26px 26px 8px; padding: 34px 34px 28px; }
.msg-bubble .story-tag { display: inline-block; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; background: var(--orange); color: #14100b; padding: 4px 11px; border-radius: 999px; margin-bottom: 14px; font-weight: 700; }

/* ---- generic pill (e.g. next to a heading) ---- */
.pill {
  display: inline-block;
  vertical-align: middle;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--teal);
  color: #06110e;
  padding: 5px 13px;
  border-radius: 999px;
  margin-left: 10px;
  white-space: nowrap;
}
.msg-bubble .quote { font-size: 15px; line-height: 1.75; margin: 0 0 18px; color: var(--ink); }
.msg-bubble.featured .quote { font-size: 16.5px; }
.msg-bubble .msg-by { display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.02em; color: var(--ink-dim); }
.msg-bubble .msg-by .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }

/* ---- tickets CTA (pre-footer) ---- */
.tickets-cta { text-align: center; padding: 70px clamp(24px,6vw,90px); }
.tickets-cta .eyebrow { color: var(--orange); }
.tickets-cta h2 { font-size: clamp(30px, 5vw, 54px); margin: 12px 0 18px; }
.tickets-cta p { color: var(--ink-dim); max-width: 520px; margin: 0 auto 30px; font-size: 15.5px; }

/* ---- footer ---- */
.site-footer { position: relative; z-index: 1; padding: 60px 8vw 30px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-columns { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; font-size: 13.5px; }
@media (max-width: 780px) { .footer-columns { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-columns { grid-template-columns: 1fr; } }
.footer-columns .col-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 16px; }
.footer-columns a { display: block; color: var(--ink-dim); text-decoration: none; transition: color .2s, transform .2s; margin-bottom: 11px; }
.footer-columns a:hover { color: var(--orange); transform: translateX(3px); }
.site-footer .brand-wordmark { width: 100%; max-width: 220px; height: auto; margin-bottom: 16px; }
.site-footer .brand-sub { font-size: 13px; color: var(--ink-faint); max-width: 260px; line-height: 1.6; }
.site-footer .bottom-row { max-width: 1160px; margin: 48px auto 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06); font-family: var(--font-mono); font-size: 11px; color: var(--ink-faint); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
