/* ============================================================
   STRIVE NETWORKING — design system
   Concept: a departures board / boarding-pass built for a company
   whose entire product is "show up somewhere new and meet people."
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@600;700;800&family=Inter:ital,wght@0,400;0,500;0,600;0,700;1,500&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root{
  --ink:        #1f35a2;
  --ink-2:      #1a2c8c;
  --ink-3:      #17277d;
  --ink-4:      #23399f;
  --line:       rgba(255,255,255,0.20);
  --parchment:  #ffffff;
  --muted:      rgba(255,255,255,0.76);
  --muted-2:    rgba(255,255,255,0.52);
  --gold:       #ffffff;
  --gold-soft:  rgba(255,255,255,0.14);
  --gold-line:  rgba(255,255,255,0.4);
  --teal:       #a8bdf5;
  --coral:      #ffd166;

  --display: 'Baloo 2', sans-serif;
  --body: 'Inter', system-ui, sans-serif;
  --mono: 'IBM Plex Mono', monospace;

  --container: 1180px;
  --radius: 14px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body{
  margin:0;
  background: var(--ink);
  color: var(--parchment);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img{ max-width:100%; display:block; }
a{ color: inherit; }
.wrap{ max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.wrap-wide{ max-width: 1440px; }

h1,h2,h3,h4{ font-family: var(--display); font-weight: 700; margin: 0 0 .5em; letter-spacing: 0; }
p{ margin: 0 0 1em; color: var(--muted); }

.eyebrow{
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  display:flex; align-items:center; gap:10px;
}
.eyebrow::before{
  content:""; width:22px; height:1px; background: var(--gold-line);
}

.btn{
  display:inline-flex; align-items:center; gap:8px;
  font-family: var(--body); font-weight:600; font-size: 14.5px;
  padding: 13px 24px; border-radius: 999px; border:1px solid transparent;
  cursor:pointer; text-decoration:none; transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{ transform: translateY(-1px); }
.btn-gold{ background: var(--gold); color: var(--ink); }
.btn-gold:hover{ background:#e0b25c; }
.btn-ghost{ background: transparent; color: var(--parchment); border-color: var(--line); }
.btn-ghost:hover{ border-color: var(--gold-line); }
.btn-sm{ padding: 8px 16px; font-size: 12.5px; }

/* ---------- NAV ---------- */
header.site-nav{
  position: sticky; top:0; z-index: 50;
  background: rgba(16,26,48,0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner{ display:flex; align-items:center; justify-content:space-between; padding: 16px 28px; max-width: var(--container); margin:0 auto; }
.brand{ display:flex; align-items:center; gap:10px; text-decoration:none; }
.brand-logo{ height:48px; width:auto; border-radius:8px; display:block; }

nav.primary{ display:flex; align-items:center; gap: 30px; }
nav.primary a{ font-size:14.5px; text-decoration:none; color: var(--muted); transition: color .15s ease; }
nav.primary a:hover{ color: var(--parchment); }
.nav-cta{ display:flex; align-items:center; gap:14px; }
.nav-toggle{ display:none; background:none; border:none; color:var(--parchment); font-size:24px; cursor:pointer; }

@media (max-width: 900px){
  nav.primary{
    position:absolute; top:100%; left:0; right:0;
    background: var(--ink-2); border-bottom:1px solid var(--line);
    flex-direction:column; align-items:flex-start; gap:0;
    max-height:0; overflow:hidden; transition: max-height .25s ease;
  }
  nav.primary.open{ max-height: 480px; }
  nav.primary a{ width:100%; padding:14px 28px; border-bottom:1px solid var(--line); }
  .nav-toggle{ display:block; }
  .nav-cta .btn-ghost{ display:none; }
}

/* ---------- HERO ---------- */
.hero{
  position:relative; overflow:hidden;
  padding: 120px 0 90px;
  background:
    radial-gradient(ellipse at 15% -10%, rgba(255,255,255,0.10), transparent 55%),
    radial-gradient(ellipse at 90% 10%, rgba(255,255,255,0.08), transparent 50%),
    var(--ink);
  border-bottom: 1px solid var(--line);
}
.hero-grid{ display:grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items:center; }
.hero h1{
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.05;
  color: var(--parchment);
  text-transform: uppercase;
  font-weight: 800;
}
.hero h1 em{ font-style: italic; color: var(--parchment); font-weight: 800; text-decoration: underline; text-decoration-thickness: 3px; text-underline-offset: 6px; }
.hero-lede{ font-size: 18px; color: var(--muted); max-width: 46ch; }
.hero-actions{ display:flex; gap:14px; margin-top: 28px; flex-wrap:wrap; }
.hero-stats{ display:flex; gap: 34px; margin-top: 44px; }
.hero-stat b{ display:block; font-family: var(--display); font-size: 30px; color: var(--gold); }
.hero-stat span{ font-family: var(--mono); font-size: 11.5px; color: var(--muted-2); text-transform:uppercase; letter-spacing: .08em; }

.hero-visual{
  aspect-ratio: 1/1; border-radius: 50%;
  border: 1px dashed var(--gold-line);
  display:flex; align-items:center; justify-content:center;
  position:relative;
}
.hero-visual::before, .hero-visual::after{
  content:""; position:absolute; border-radius:50%; border:1px solid var(--line);
}
.hero-visual::before{ inset: 14%; }
.hero-visual::after{ inset: 30%; }
.hero-visual .pin{
  position:absolute; width:9px; height:9px; border-radius:50%;
  background: var(--gold); box-shadow: 0 0 0 5px var(--gold-soft);
}
.hero-visual .ticket-chip{
  position:relative; z-index:2; background: var(--ink-2);
  border:1px solid var(--gold-line); border-radius: 12px; padding: 18px 22px;
  font-family: var(--mono); font-size:12px; color: var(--muted); text-align:center;
}
.hero-visual .ticket-chip b{ display:block; color: var(--parchment); font-family: var(--display); font-size:16px; font-weight:500; margin-bottom:4px; }

@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-visual{ max-width: 320px; margin: 0 auto; }
}

/* ---------- SECTION shells ---------- */
section{ padding: 96px 0; }
section.tight{ padding: 64px 0; }
.section-head{ max-width: 640px; margin-bottom: 48px; }
.section-head h2{ font-size: clamp(28px, 3.4vw, 40px); color: var(--parchment); margin-top:.4em; }
.divider{ border:none; border-top:1px solid var(--line); margin:0; }

/* ---------- MAP / FINDER ---------- */
.finder{ background: var(--ink-2); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.finder-toolbar{
  display:flex; align-items:center; justify-content:flex-end; gap: 20px;
  flex-wrap:wrap; margin-bottom: 22px;
}

/* ---------- GLOBE ---------- */
.globe-wrap{
  position:relative; background: radial-gradient(ellipse at 50% 40%, var(--ink-3), var(--ink) 72%);
  border:1px solid var(--line); border-radius: var(--radius);
  display:flex; align-items:center; justify-content:center; overflow:hidden; aspect-ratio: 1/1;
  touch-action: none;
}
.globe-wrap svg{ width:100%; height:100%; display:block; cursor: grab; touch-action:none; }
.globe-wrap svg:active{ cursor: grabbing; }
.globe-sphere{ fill: var(--ink-3); }
.globe-graticule{ fill:none; stroke: rgba(255,255,255,0.05); stroke-width: 0.4; }
.country{ fill: var(--ink-4); stroke: rgba(255,255,255,0.4); stroke-width: 0.6; transition: fill .2s ease; cursor:pointer; }
.country:hover{ fill: #32499e; }
.country.live{ fill: #f4f7ff; stroke: rgba(15,25,80,0.55); stroke-width: 0.8; }
.country.live:hover{ fill: #ffffff; }
.country.dim{ fill: var(--ink-3); opacity:.55; }
.globe-outline{ fill:none; stroke: rgba(255,255,255,0.45); stroke-width: 1.2; }

.globe-pin{ cursor:pointer; }
.globe-pin circle.core{ fill: var(--ink); transition: r .15s ease; }
.globe-pin circle.ring{ fill:none; stroke:var(--ink); stroke-width: 0.7; opacity:.55; }
.globe-pin circle.hit{ fill: transparent; pointer-events: all; }
.globe-pin:hover circle.core, .globe-pin.active circle.core{ r: 3.4; fill: var(--coral); }
.globe-pin.active circle.ring{ stroke: var(--coral); opacity:.9; }

.globe-hint{
  position:absolute; bottom:12px; left:50%; transform:translateX(-50%);
  font-family: var(--mono); font-size:10.5px; color: var(--muted);
  background: rgba(10,20,60,0.55); padding:6px 12px; border-radius:999px; border:1px solid var(--line);
  pointer-events:none; white-space:nowrap; backdrop-filter: blur(4px);
}

.globe-loading{
  color: var(--muted); font-family: var(--mono); font-size: 13px;
  display:flex; align-items:center; justify-content:center; height:100%;
}

.globe-zoom-controls{
  position:absolute; top:14px; right:14px; display:flex; flex-direction:column; gap:6px; z-index:4;
}
.globe-zoom-controls button{
  width:32px; height:32px; border-radius:50%; border:1px solid var(--line);
  background: rgba(10,20,60,0.55); color: var(--parchment); font-size:17px; line-height:1;
  cursor:pointer; backdrop-filter: blur(4px); transition: background .15s ease, border-color .15s ease;
}
.globe-zoom-controls button:hover{ background: rgba(10,20,60,0.85); border-color: var(--gold-line); }

.country-chips{ display:flex; flex-wrap:wrap; align-items:center; gap:8px; margin-bottom: 18px; }
.country-chips .chips-label{ font-family: var(--mono); font-size:11.5px; color: var(--muted-2); text-transform:uppercase; letter-spacing:.06em; margin-right:2px; }
.country-chips button{
  font-family: var(--body); font-size:13px; padding: 7px 14px; border-radius:999px;
  border:1px solid var(--line); background: transparent; color: var(--muted); cursor:pointer;
  transition: all .15s ease;
}
.country-chips button.active{ border-color: var(--gold-line); background: var(--gold-soft); color: var(--parchment); }
.country-chips button:hover{ color: var(--parchment); }

.breadcrumb{
  display:flex; align-items:center; gap:8px; flex-wrap:wrap;
  font-family: var(--mono); font-size:12.5px; color: var(--muted-2); margin-bottom:16px;
}
.breadcrumb button{
  background:none; border:none; padding:0; font-family: var(--mono); font-size:12.5px;
  color: var(--muted); cursor:pointer; text-decoration: underline; text-underline-offset:3px;
}
.breadcrumb button:hover{ color: var(--parchment); }
.breadcrumb .current{ color: var(--parchment); }
.breadcrumb .sep{ opacity:.5; }

.state-layer path{ fill: transparent; stroke: rgba(20,30,90,0.4); stroke-width: 0.6; pointer-events: none; }
.state-layer path.state-live{ pointer-events: all; cursor:pointer; stroke: rgba(20,30,90,0.7); stroke-width: 0.8; }
.state-layer path.state-live:hover{ stroke: var(--coral); stroke-width: 1.3; fill: rgba(255,209,102,0.12); }
.state-layer path.state-dim{ opacity: .3; pointer-events: none; }
.state-layer{ display:none; }
.state-layer.show{ display:block; }

/* ---------- live attendance tracker: full-width panel under the globe ---------- */
.map-column{ display:flex; flex-direction:column; gap:20px; }
.tracker-block{
  background: var(--ink); border:1px solid var(--line); border-radius: var(--radius);
  overflow:hidden;
}
.tracker-block-head{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 18px; border-bottom:1px solid var(--line);
}
.tracker-block-head h3{ margin:0; font-size:16px; }
.tracker-close{
  background:none; border:none; color: var(--muted); font-size:20px; line-height:1; cursor:pointer; padding:4px;
}
.tracker-close:hover{ color: var(--parchment); }
.tracker-iframe{ width:100%; height:680px; border:none; display:block; background:#fff; }
.tracker-body{ position:relative; }
.tracker-loading{
  position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:12px;
  background: var(--ink); color: var(--muted); font-family: var(--mono); font-size:12.5px;
  transition: opacity .25s ease; pointer-events:none;
}
.tracker-loading.hidden{ opacity:0; }
.tracker-spinner{
  width:26px; height:26px; border-radius:50%;
  border:2px solid var(--line); border-top-color: var(--parchment);
  animation: tracker-spin 0.8s linear infinite;
}
@keyframes tracker-spin{ to{ transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce){ .tracker-spinner{ animation: none; } }

.search-box{
  position:relative; flex:1; min-width:220px; max-width:320px;
}
.search-box input{
  width:100%; background: var(--ink); border:1px solid var(--line); border-radius:999px;
  padding: 11px 16px 11px 38px; color: var(--parchment); font-family: var(--body); font-size:14px;
}
.search-box input:focus{ outline:none; border-color: var(--gold-line); }
.search-box::before{
  content:"⌕"; position:absolute; left:15px; top:50%; transform:translateY(-50%);
  color: var(--muted-2); font-size:16px;
}

.region-chips{ display:flex; flex-wrap:wrap; gap:8px; margin-bottom: 30px; }
.region-chips button{
  font-family: var(--body); font-size:13px; padding: 7px 14px; border-radius:999px;
  border:1px solid var(--line); background: transparent; color: var(--muted); cursor:pointer;
  transition: all .15s ease;
}
.region-chips button.active{ border-color: var(--gold-line); background: var(--gold-soft); color: var(--gold); }
.region-chips button:hover{ color: var(--parchment); }

.finder-grid{ display:grid; grid-template-columns: 1.65fr 1fr; gap: 32px; align-items:start; }
@media (max-width: 1100px){ .finder-grid{ grid-template-columns: 1fr; } }

.map-panel{ position:relative; max-width: 760px; margin: 0 auto; }

.dot{ cursor:pointer; }
.dot circle.core{ fill: var(--gold); transition: r .15s ease; }
.dot circle.ring{ fill: none; stroke: var(--gold); stroke-width:1; opacity:.55; }
.dot.dim circle.core{ fill: var(--muted-2); opacity:.35; }
.dot.dim circle.ring{ opacity:0; }
.dot:hover circle.core, .dot.active circle.core{ r:4.6; }
.dot.active circle.core{ fill: var(--coral); }

@keyframes pulse{
  0%{ r:2.6; opacity:.6; }
  70%{ r:9; opacity:0; }
  100%{ r:9; opacity:0; }
}
.dot .pulse{ fill:none; stroke: var(--gold); stroke-width:1; animation: pulse 2.6s ease-out infinite; transform-origin: center; }

.origin-mark text{ font-family: var(--mono); font-size: 6px; fill: var(--muted-2); }
.origin-star{ fill: var(--gold); }
.route-line{ fill:none; stroke: var(--gold); stroke-width:1; stroke-dasharray: 3 3; opacity:0; transition: opacity .2s ease; pointer-events:none; }
.route-line.show{ opacity:.8; }

.map-popover{
  position:absolute; z-index:5; width: 230px;
  background: var(--ink-2); border:1px solid var(--gold-line); border-radius:10px;
  padding: 14px 16px; box-shadow: 0 12px 30px rgba(0,0,0,.4);
  opacity:0; pointer-events:none; transform: translate(-50%,-100%) translateY(-14px);
  transition: opacity .15s ease;
}
.map-popover.show{ opacity:1; pointer-events:auto; }
.map-popover .region-tag{ font-family: var(--mono); font-size:10px; text-transform:uppercase; letter-spacing:.08em; color: var(--gold); }
.map-popover h4{ font-size:16px; margin:.25em 0 .1em; color: var(--parchment); }
.map-popover .meta{ font-family: var(--mono); font-size:11.5px; color: var(--muted); line-height:1.5; margin-bottom:10px; }
.map-popover .close{
  position:absolute; top:8px; right:10px; background:none; border:none; color: var(--muted-2);
  font-size:16px; cursor:pointer; line-height:1;
}

.map-hint{ font-family: var(--mono); font-size:11px; color: var(--muted-2); padding: 10px 16px; border-top:1px solid var(--line); }

/* ---------- mobile: card becomes a bottom sheet, bigger touch UI ---------- */
@media (max-width: 700px){
  .map-popover{
    position:fixed !important; left:0 !important; right:0 !important; bottom:0 !important; top:auto !important;
    width:100% !important; max-width:none !important; max-height:80vh; overflow-y:auto;
    border-radius:16px 16px 0 0; transform:none !important;
    padding:18px 20px calc(18px + env(safe-area-inset-bottom));
    box-shadow: 0 -12px 30px rgba(0,0,0,.45);
    z-index: 60;
  }
  .map-popover .close{ font-size:22px; top:12px; right:14px; padding:6px; }
  .map-popover .btn{ width:100%; justify-content:center; padding:14px 24px; }
  .tracker-iframe{ height:70vh; }
  .globe-zoom-controls button{ width:42px; height:42px; font-size:20px; }
  .globe-hint{ display:none; }
  .city-list{ max-height: 420px; }
}

.city-list{
  border:1px solid var(--line); border-radius: var(--radius); background: var(--ink);
  max-height: 700px; overflow-y:auto;
}
.city-list::-webkit-scrollbar{ width:8px; }
.city-list::-webkit-scrollbar-thumb{ background: var(--ink-4); border-radius: 8px; }

.ticket{
  display:flex; align-items:center; gap:14px;
  padding: 16px 18px; border-bottom:1px dashed var(--line);
  position:relative; transition: background .15s ease;
}
.ticket:last-child{ border-bottom:none; }
.ticket:hover, .ticket.active{ background: var(--ink-3); }
.ticket-stripe{ width:4px; align-self:stretch; border-radius:2px; background: var(--gold); flex-shrink:0; }
.ticket-body{ flex:1; min-width:0; }
.ticket-body .city{ font-family: var(--display); font-size:17px; color: var(--parchment); margin-bottom:2px; }
.ticket-body .tag{ font-family: var(--mono); font-size:10.5px; text-transform:uppercase; letter-spacing:.08em; color: var(--gold); }
.ticket-body .meta{ font-family: var(--mono); font-size:12px; color: var(--muted); margin-top:5px; line-height:1.5; }
.ticket .buy{
  flex-shrink:0; font-family: var(--body); font-weight:600; font-size:12.5px;
  color: var(--ink); background: var(--gold); padding: 9px 14px; border-radius:999px;
  text-decoration:none; white-space:nowrap;
}
.ticket .buy:hover{ background:#e0b25c; }
.empty-state{ padding: 40px 20px; text-align:center; color: var(--muted-2); font-family: var(--mono); font-size:13px; }

/* ---------- ABOUT / WHAT TO EXPECT ---------- */
.about-grid{ display:grid; grid-template-columns: .9fr 1.1fr; gap:56px; align-items:center; }
.about-photo{
  aspect-ratio: 4/5; border-radius: var(--radius); background: linear-gradient(160deg, var(--ink-3), var(--ink-2));
  border:1px solid var(--line); display:flex; align-items:flex-end; padding:22px; position:relative; overflow:hidden;
}
.about-photo span{ font-family: var(--mono); font-size:11px; color: var(--muted-2); }
@media (max-width: 900px){ .about-grid{ grid-template-columns:1fr; } }

.cards-3{ display:grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 900px){ .cards-3{ grid-template-columns:1fr; } }
.card{
  background: var(--ink-2); border:1px solid var(--line); border-radius: var(--radius); padding: 30px 26px;
}
.card .num{ font-family: var(--mono); color: var(--gold); font-size:12px; letter-spacing:.1em; }
.card h3{ font-size:20px; margin-top:14px; color: var(--parchment); }
.card p{ font-size: 14.5px; margin:0; }

/* ---------- FAQ ---------- */
.faq-item{ border-bottom:1px solid var(--line); }
.faq-item:first-child{ border-top:1px solid var(--line); }
.faq-q{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:20px;
  background:none; border:none; text-align:left; cursor:pointer; padding: 22px 4px;
  font-family: var(--display); font-size: 18px; color: var(--parchment);
}
.faq-q .plus{ font-family: var(--mono); color: var(--gold); font-size:18px; transition: transform .2s ease; flex-shrink:0; }
.faq-item.open .faq-q .plus{ transform: rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition: max-height .25s ease; }
.faq-item.open .faq-a{ max-height: 320px; }
.faq-a p{ padding: 0 4px 22px; max-width: 68ch; }

/* ---------- SPONSOR / CTA BAND ---------- */
.cta-band{
  background: linear-gradient(120deg, var(--ink-3), var(--ink-2));
  border:1px solid var(--gold-line); border-radius: 20px;
  padding: 56px 48px; display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap;
}
.cta-band h2{ font-size: 28px; margin:0; max-width: 30ch; }
@media (max-width:700px){ .cta-band{ padding:40px 28px; } }

/* ---------- FOOTER ---------- */
footer{ border-top:1px solid var(--line); padding: 56px 0 34px; }
.footer-grid{ display:grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
@media (max-width:800px){ .footer-grid{ grid-template-columns:1fr; } }
footer h5{ font-family: var(--mono); font-size:11.5px; text-transform:uppercase; letter-spacing:.1em; color: var(--muted-2); margin-bottom: 16px; }
footer ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:10px; }
footer a{ text-decoration:none; color: var(--muted); font-size:14px; }
footer a:hover{ color: var(--gold); }
.footer-socials{ display:flex; gap:14px; }
.footer-socials a{
  width:36px; height:36px; border:1px solid var(--line); border-radius:50%;
  display:flex; align-items:center; justify-content:center; font-size:14px;
}
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px;
  padding-top: 26px; border-top:1px solid var(--line);
  font-family: var(--mono); font-size:11.5px; color: var(--muted-2);
}
.footer-bottom a{ color: var(--muted-2); }
.footer-bottom a:hover{ color: var(--gold); }

/* ---------- simple inner pages ---------- */
.page-hero{ padding: 76px 0 50px; border-bottom:1px solid var(--line); }
.page-hero .eyebrow{ margin-bottom:14px; }
.page-hero h1{ font-size: clamp(32px,4.4vw,52px); }
.prose{ max-width: 74ch; }
.prose h2{ margin-top: 1.6em; font-size:24px; }
.prose p{ color: var(--muted); }
.gallery-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:18px; }
.gallery-cell{ aspect-ratio: 1/1; border-radius:12px; overflow:hidden; background: var(--ink-2); border:1px solid var(--line); }
.gallery-cell img, .gallery-cell iframe{ width:100%; height:100%; object-fit:cover; border:none; display:block; }
@media (max-width:800px){ .gallery-grid{ grid-template-columns: repeat(2,1fr); } }
.gallery-item{
  aspect-ratio: 1/1; border-radius:12px; background: var(--ink-2); border:1px dashed var(--line);
  display:flex; align-items:center; justify-content:center; color: var(--muted-2); font-family: var(--mono); font-size:12px; text-align:center; padding:10px;
}
