/* LinkUp marketing site — landing, terms, privacy.
   Professional and on-brand with the iOS app: the brand blue→dark-blue gradient,
   clean white/cool-grey surfaces, crisp Inter type, refined shadows. Premium, not
   playful; distinctive through the brand, not through gimmicks. */

:root {
  --blue: #2455f0;
  --blue-dark: #1636b0;
  --grad: linear-gradient(135deg, #2455f0, #1636b0);
  --ink: #0f1422;
  --ink-2: #46506580;        /* unused alpha guard */
  --text: #0f1422;
  --text-2: #4a566b;
  --text-3: #7b8499;
  --line: #e6e9f1;
  --line-2: #d8deea;
  --bg: #ffffff;
  --bg-2: #f5f8fd;
  --bg-3: #eef2fb;
  --radius: 16px;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --serif: "Canela", "Canela Text", "Canela Deck", "Fraunces", "Iowan Old Style", Georgia, serif;
  --wrap: 1200px;
  /* layered, low-spread shadows — softer + more deliberate than the default
     "big blurry drop" look most AI templates ship with */
  --shadow-sm: 0 1px 2px rgba(15, 20, 34, .05), 0 2px 8px rgba(15, 20, 34, .04);
  --shadow: 0 2px 6px rgba(20, 30, 60, .06), 0 12px 28px rgba(20, 30, 60, .08);
  --shadow-lg: 0 4px 12px rgba(20, 30, 60, .08), 0 28px 56px rgba(20, 30, 60, .12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--sans); color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased; line-height: 1.6; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { line-height: 1.12; margin: 0; letter-spacing: -.025em; font-weight: 800; }
/* Display headings use Fraunces (already loaded) for a bespoke, editorial feel
   that reads as a real product, not a generic sans-serif template. Optical
   sizing makes large sizes more refined. */
.hero h1, .section-head h2, .split h2, .quote, .cta-band h2, .evp-hero h1, .legal h1 {
  font-family: var(--serif); font-weight: 600; font-optical-sizing: auto;
  letter-spacing: -.018em; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.wrap-wide { max-width: 1340px; }
em { font-style: normal; color: var(--blue-dark); font-weight: 700; }
::selection { background: rgba(36, 85, 240, .16); }

.btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; padding: 13px 24px; border-radius: 12px; border: 1px solid transparent; cursor: pointer; font-size: 15px; transition: filter .15s ease, box-shadow .15s ease, transform .08s ease, background .15s ease; }
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 8px 20px rgba(36, 85, 240, .28); }
.btn-primary:hover { filter: brightness(1.06); text-decoration: none; box-shadow: 0 12px 26px rgba(36, 85, 240, .34); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line-2); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { background: var(--bg-2); text-decoration: none; }
.btn-light { background: #fff; color: var(--blue-dark); border-color: #fff; box-shadow: 0 8px 20px rgba(0,0,0,.18); }
.btn-light:hover { background: #eef2fb; text-decoration: none; }

/* brand wordmark — gradient text like the app's launch screen */
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 21px; letter-spacing: -.02em; color: var(--blue-dark); }
.brand { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.brand:hover { text-decoration: none; }
.brand .mark { width: 30px; height: 30px; object-fit: contain; display: block; }

/* nav */
.nav { position: sticky; top: 0; z-index: 30; background: rgba(255, 255, 255, .82); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav-in { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--text-2); font-weight: 500; font-size: 14.5px; }
.nav-links a:not(.btn):hover { color: var(--ink); text-decoration: none; }
.nav-links .btn { padding: 9px 17px; font-size: 14px; }
/* keep the primary nav button's label white (beats .nav-links a colour) */
.nav-links a.btn-primary { color: #fff; }
@media (max-width: 860px) { .nav-links a:not(.btn) { display: none; } }

/* thin scroll-progress bar pinned to the very top */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 60; pointer-events: none; background: transparent; }
.scroll-progress i { display: block; height: 100%; width: 0; background: var(--grad); box-shadow: 0 0 10px rgba(36,85,240,.5); transform-origin: left center; transition: width .08s linear; }

/* hero — two columns: copy + product preview (fills the space, kills the margins) */
.hero { position: relative; background: linear-gradient(180deg, #f6f9ff 0%, #ffffff 70%); border-bottom: 1px solid var(--line); padding: 84px 0 96px; overflow: hidden; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }

/* soft brand-gradient depth orbs behind the hero (true multi-layer parallax) */
.hero-orbs { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.hero-orbs .orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .4; }
.orb-1 { width: 520px; height: 520px; top: -200px; right: -140px; background: radial-gradient(circle at 30% 30%, rgba(36,85,240,.38), rgba(36,85,240,0) 70%); }
.orb-2 { width: 360px; height: 360px; bottom: -160px; left: -100px; background: radial-gradient(circle at 50% 50%, rgba(22,54,176,.30), rgba(22,54,176,0) 70%); opacity: .3; }
.orb-3 { width: 280px; height: 280px; top: 32%; left: 44%; background: radial-gradient(circle at 50% 50%, rgba(122,91,240,.22), rgba(122,91,240,0) 70%); opacity: .26; }
.orb-grid { position: absolute; inset: -10% -5%; opacity: .5;
  background-image: linear-gradient(rgba(36,85,240,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(36,85,240,.06) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse 95% 80% at 55% 12%, #000 0%, transparent 62%);
          mask-image: radial-gradient(ellipse 95% 80% at 55% 12%, #000 0%, transparent 62%); }
@media (max-width: 920px) { .orb-1 { width: 360px; height: 360px; } .orb-2, .orb-3 { display: none; } }

/* hero trust row — honest wordmark credibility (no fake faces) */
.hero-trust { margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line); max-width: 560px; }
.hero-trust-label { margin: 0 0 12px; font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); }
.trust-marks { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px; }
.trust-marks span { font-size: 14px; font-weight: 700; letter-spacing: -.01em; color: var(--text-2); position: relative; opacity: .85; }
.trust-marks span:not(:last-child)::after { content: ""; position: absolute; right: -9.5px; top: 50%; width: 3px; height: 3px; border-radius: 50%; background: var(--line-2); transform: translateY(-50%); }
.hero h1 { font-size: clamp(38px, 5.4vw, 60px); font-weight: 800; }
.hero h1 .hl { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero .sub { font-size: clamp(16px, 1.5vw, 19px); color: var(--text-2); max-width: 540px; margin: 22px 0 30px; }
.hero-cta { display: flex; gap: 13px; flex-wrap: wrap; }
.hero-badges { margin-top: 28px; color: var(--text-3); font-size: 13.5px; display: flex; gap: 22px; flex-wrap: wrap; font-weight: 500; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--blue-dark); background: #fff; border: 1px solid var(--line-2); font-weight: 700; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; padding: 6px 14px 6px 11px; border-radius: 20px; margin-bottom: 24px; box-shadow: var(--shadow-sm); }
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--grad); box-shadow: 0 0 0 3px rgba(36,85,240,.14); }
@media (max-width: 920px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } .app-preview { order: 2; } }

/* product preview (right of hero) */
.app-preview { position: relative; min-height: 430px; }
.ap-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-lg); padding: 18px; }
.ap-back { position: absolute; top: 0; right: 0; width: 60%; padding: 14px; display: grid; gap: 8px; transform: translateY(-6px); }
.ap-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; background: var(--bg-2); border: 1px solid var(--line); border-radius: 9px; padding: 8px 11px; font-size: 12px; color: var(--text-2); }
.ap-pill { font-size: 10px; font-weight: 800; letter-spacing: .04em; color: #fff; background: #e8920a; padding: 2px 8px; border-radius: 10px; }
.ap-pill.green { background: #0f9d58; } .ap-pill.blue { background: var(--blue); }
.ap-amt { font-weight: 700; color: var(--ink); }
.ap-front { position: relative; width: 74%; margin-top: 92px; z-index: 2; transform-origin: 60% 30%; }
.ap-banner { position: relative; overflow: hidden; background: linear-gradient(135deg, #2a5cf2 0%, #1636b0 60%, #122a8c 100%); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .06em; padding: 40px 16px 12px; border-radius: 12px; margin: -2px -2px 14px; display: flex; align-items: flex-end; }
.ap-banner::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 18% 20%, rgba(255,255,255,.22), transparent 42%), linear-gradient(120deg, rgba(255,255,255,.10) 0 14%, transparent 14% 50%, rgba(255,255,255,.06) 50% 64%, transparent 64%); pointer-events: none; }
.ap-banner > * { position: relative; }
.ap-title { font-weight: 800; font-size: 17px; letter-spacing: -.01em; }
.ap-meta { color: var(--text-3); font-size: 13px; margin-top: 4px; }
.ap-going { display: flex; align-items: center; gap: 8px; margin-top: 14px; font-size: 12.5px; font-weight: 700; color: var(--blue-dark); }
.ap-ava { width: 28px; height: 28px; border-radius: 50%; border: 2px solid #fff; margin-left: -10px; box-shadow: 0 0 0 1px var(--line); background: var(--bg-3); display: inline-flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 800; color: #fff; letter-spacing: 0; }
.ap-ava:first-child { margin-left: 0; }
.ap-ava.a1 { background: #2455f0; } .ap-ava.a2 { background: #0f9d58; } .ap-ava.a3 { background: #e8920a; } .ap-ava.a4 { background: #7a5bf0; }
.ap-ticket { display: flex; align-items: center; gap: 12px; margin-top: 16px; padding-top: 14px; border-top: 1px dashed var(--line-2); }
.ap-ticket > div { display: flex; flex-direction: column; }
.ap-ticket b { font-size: 13px; } .ap-ticket span { font-size: 11px; color: var(--text-3); }
.ap-qr { width: 46px; height: 46px; border-radius: 8px; flex: none;
  background: url("assets/ticket-qr.svg") center / 100% 100% no-repeat, #fff;
  border: 3px solid #fff; box-shadow: 0 0 0 1px var(--line); }
.ap-qr.big { width: 92px; height: 92px; }

/* floating notification card — balances the lower-left of the preview cluster */
.ap-notif { position: absolute; left: -26px; bottom: -22px; z-index: 3; width: 286px; max-width: 90%;
  display: flex; align-items: flex-start; gap: 11px; background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 14px; padding: 12px 14px; box-shadow: var(--shadow-lg); }
.ap-notif-ic { flex: none; width: 30px; height: 30px; border-radius: 9px; background: var(--grad); color: #fff; display: grid; place-items: center; box-shadow: 0 6px 14px rgba(36,85,240,.3); }
.ap-notif > div { display: flex; flex-direction: column; min-width: 0; }
.ap-notif b { font-size: 12.5px; color: var(--ink); letter-spacing: -.01em; }
.ap-notif span { font-size: 11.5px; color: var(--text-3); line-height: 1.4; margin-top: 2px; }
@media (max-width: 920px) { .ap-notif { left: auto; right: 0; bottom: -16px; } }

/* stat strip */
.stat-strip { background: var(--ink); color: #fff; }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding: 40px 0; }
.stat b { display: block; font-size: clamp(28px, 3.4vw, 38px); font-weight: 800; letter-spacing: -.02em;
  background: linear-gradient(135deg, #8fb0ff, #ffffff); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat span { display: block; color: #b9c2d6; font-size: 14px; margin-top: 6px; line-height: 1.5; }
@media (max-width: 760px) { .stat-grid { grid-template-columns: 1fr; gap: 18px; } }

/* sections */
section.block { padding: 86px 0; }
section.alt { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 660px; margin: 0 0 52px; }
.section-head h2 { font-size: clamp(29px, 4vw, 42px); }
.section-head p { color: var(--text-2); font-size: 17px; margin-top: 16px; max-width: 600px; }
.kicker { display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: 12px; margin-bottom: 14px; }
.kicker::before { content: ""; width: 18px; height: 2px; border-radius: 2px; background: var(--grad); }

/* feature grid */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow-sm); transition: transform .18s cubic-bezier(.16,.7,.2,1), box-shadow .18s ease, border-color .18s ease; }
.feature::after { content: ""; position: absolute; left: 24px; right: 24px; top: 0; height: 2px; border-radius: 2px; background: var(--grad); opacity: 0; transition: opacity .18s ease; }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-2); }
.feature:hover::after { opacity: 1; }
.feature .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--grad); color: #fff; display: grid; place-items: center; margin-bottom: 18px; box-shadow: 0 6px 16px rgba(36, 85, 240, .22); }
.feature .ic svg { width: 23px; height: 23px; }
.feature h3 { font-size: 16.5px; font-weight: 700; margin-bottom: 7px; letter-spacing: -.01em; }
.feature p { color: var(--text-2); font-size: 14px; margin: 0; }
@media (max-width: 1000px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }

/* split sections */
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.split.reverse { grid-template-columns: .9fr 1.1fr; }
.split h2 { font-size: clamp(26px, 3.4vw, 36px); font-weight: 800; }
.split p { color: var(--text-2); font-size: 16px; margin: 16px 0; }
.split ul { list-style: none; padding: 0; margin: 0 0 26px; display: flex; flex-direction: column; gap: 13px; }
.split li { position: relative; padding-left: 30px; color: var(--text); font-size: 15px; line-height: 1.55; }
.split li::before { content: ""; position: absolute; left: 0; top: 3px; width: 18px; height: 18px; border-radius: 6px; background: var(--bg-3);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%232455f0' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }
@media (max-width: 860px) { .split, .split.reverse { grid-template-columns: 1fr; gap: 32px; } .split.reverse .ticket-art { order: 2; } }

/* portal mock */
.mock { background: #0e1118; border: 1px solid #20283a; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); }
.mock-bar { display: flex; gap: 7px; padding: 12px 14px; border-bottom: 1px solid #222a3d; }
.mock-bar i { width: 11px; height: 11px; border-radius: 50%; background: #2b344a; }
.mock-body { padding: 16px; display: grid; gap: 9px; }
.mock-group { border-left: 3px solid var(--gc); padding-left: 10px; }
.mock-group b { color: var(--gc); font-size: 13px; }
.mock-rows { margin-top: 6px; display: grid; gap: 5px; }
.mock-row { display: grid; grid-template-columns: 1.4fr 1fr .7fr; gap: 8px; background: #1a2030; border: 1px solid #222a3d; border-radius: 6px; padding: 7px 10px; font-size: 12px; color: #c7cee0; }
.mock-chip { justify-self: start; font-size: 10.5px; font-weight: 700; color: #fff; padding: 2px 8px; border-radius: 12px; background: var(--cc); }

/* ticket art (ticketing section) */
.ticket-art { display: grid; place-items: center; }
.ticket-card { width: 300px; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 22px; box-shadow: var(--shadow-lg); }
.ticket-top { display: flex; align-items: center; justify-content: space-between; }
.tt-cat { font-size: 11px; font-weight: 800; letter-spacing: .07em; color: var(--blue-dark); }
.tt-checked { font-size: 11px; font-weight: 700; color: #0f9d58; background: rgba(15,157,88,.12); padding: 3px 9px; border-radius: 20px; }
.tt-title { font-size: 21px; font-weight: 800; margin-top: 12px; letter-spacing: -.02em; }
.tt-meta { color: var(--text-3); font-size: 13px; margin-top: 4px; }
.ticket-perf { border-top: 2px dashed var(--line-2); margin: 18px -22px; }
.ticket-card .ap-qr { margin: 0 auto; display: block; }
.tt-admit { text-align: center; font-size: 12px; font-weight: 800; letter-spacing: .18em; color: var(--text-3); margin-top: 12px; }

/* quote band */
.quote-band { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 64px 0; text-align: center; }
.quote { font-size: clamp(25px, 3.5vw, 36px); font-weight: 500; letter-spacing: -.015em; color: var(--ink); max-width: 860px; margin: 0 auto; line-height: 1.28; }
.quote-by { color: var(--text-2); font-size: 16px; margin-top: 18px; font-weight: 500; }

/* cta band — depth via a layered radial highlight, not a flat gradient slab */
.cta-band { position: relative; overflow: hidden; background: var(--grad); color: #fff; border-radius: 24px; padding: 60px 48px; text-align: center; box-shadow: var(--shadow-lg); }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 120% at 50% -20%, rgba(255,255,255,.22), transparent 60%); pointer-events: none; }
.cta-band > * { position: relative; }
.cta-band h2 { font-size: clamp(26px, 3.6vw, 38px); font-weight: 600; color: #fff; }
.cta-band p { color: #dbe4ff; margin: 16px auto 30px; font-size: 17px; max-width: 560px; }

/* footer */
.footer { background: var(--ink); color: #aab6d0; padding: 56px 0 30px; font-size: 14px; }
.footer-grid { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; margin-bottom: 30px; }
.footer .brand { -webkit-text-fill-color: initial; background: none; color: #fff; }
.footer h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; }
.footer a { color: #aab6d0; display: block; margin-bottom: 8px; }
.footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); padding-top: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: #7c89a8; font-size: 13px; }

/* legal pages */
.legal { padding: 60px 0 84px; }
.legal-wrap { max-width: 800px; }
.legal h1 { font-size: clamp(34px, 5vw, 46px); font-weight: 800; }
.legal .updated { color: var(--text-3); margin: 10px 0 28px; }
.legal .intro { font-size: 16.5px; color: var(--text-2); padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.legal section { margin-top: 28px; }
.legal h2 { font-size: 21px; font-weight: 700; margin-bottom: 10px; }
.legal p { color: var(--text); margin: 0 0 11px; }
.legal .bullet { display: flex; gap: 10px; margin: 0 0 8px; padding-left: 4px; }
.legal .bullet::before { content: "•"; color: var(--blue); font-weight: 800; }
.legal .disclaimer { margin-top: 34px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--text-3); font-size: 13.5px; }
.legal-toc { background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; margin: 22px 0; }
.legal-toc a { font-size: 13.5px; }

/* ---------- scroll-driven motion (Apple-style reveals + parallax) ---------- */
/* Only animate when the user hasn't asked for reduced motion. The hidden state
   lives here, so reduced-motion users always see content (and the script just
   marks it shown). */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(30px);
    transition: opacity .8s cubic-bezier(.16,.7,.2,1) var(--rd, 0ms),
                transform .8s cubic-bezier(.16,.7,.2,1) var(--rd, 0ms);
    will-change: opacity, transform; }
  .reveal.in { opacity: 1; transform: none; }

  /* directional reveals — split sections slide in from the side they sit on */
  .reveal-left  { transform: translateX(-44px); }
  .reveal-right { transform: translateX(44px); }
  .reveal-left.in, .reveal-right.in { transform: none; }

  [data-parallax] { will-change: transform; }
}

/* under reduced motion the scroll bar is harmless (it just sizes a div), but
   keep it from drawing attention: no glow, instant. */
@media (prefers-reduced-motion: reduce) {
  .scroll-progress i { transition: none; box-shadow: none; }
}

/* ===========================================================================
   FOOTER — inline link row for the slim legal-page footer.
   Fixes the orphan "·" bug: previously `.footer a { display:block }` forced the
   inline "Home · Privacy · Contact" links onto their own lines, stranding the
   "·" separators. Now the links are a flex row with CSS dot separators that
   live ON the links, so they can never wrap onto a line by themselves.
   =========================================================================== */
.footer-slim { padding: 28px 0; }
.footer-inline { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 18px; }
.footer-inline a { display: inline; margin: 0; position: relative; color: #aab6d0; }
.footer-inline a:not(:last-child)::after { content: ""; position: absolute; right: -9.5px; top: 50%; width: 3px; height: 3px; border-radius: 50%; background: #4a5675; transform: translateY(-50%); }
.footer-inline a:hover { color: #fff; }

/* ===========================================================================
   PUBLIC EVENT BROWSING — shared by index.html (#events) and events.html.
   =========================================================================== */

/* events.html hero — lighter sibling of the landing hero */
.evp-hero { position: relative; overflow: hidden; background: linear-gradient(180deg, #f6f9ff 0%, #ffffff 80%); border-bottom: 1px solid var(--line); padding: 64px 0 56px; }
.evp-hero-orbs { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.evp-hero-orbs .orb { position: absolute; border-radius: 50%; filter: blur(60px); }
.evp-hero-orbs .orb-1 { width: 480px; height: 480px; top: -200px; right: -120px; background: radial-gradient(circle at 30% 30%, rgba(36,85,240,.30), transparent 70%); opacity: .5; }
.evp-hero-in { position: relative; z-index: 1; max-width: 720px; }
.evp-hero h1 { font-size: clamp(34px, 5vw, 52px); }
.evp-hero h1 .hl { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.evp-hero .sub { font-size: clamp(16px, 1.5vw, 18px); color: var(--text-2); max-width: 580px; margin: 20px 0 28px; }
.evp-hero-cta { display: flex; gap: 13px; flex-wrap: wrap; }

.evp-main { padding-top: 56px; }
.evp-bar { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 26px; }
.evp-bar h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(24px, 3vw, 32px); letter-spacing: -.018em; }
.evp-bar-note { color: var(--text-3); font-size: 13.5px; font-weight: 500; }

/* section head with a side CTA (index #events) */
.evp-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; max-width: none; }
.evp-head > div { max-width: 660px; }
.evp-head-cta { flex: none; }
@media (max-width: 760px) { .evp-head { flex-direction: column; align-items: flex-start; } }

/* notice (empty / fallback / error states) */
.evp-notice { margin: 0 0 22px; padding: 13px 16px; border-radius: 12px; font-size: 14.5px; }
.evp-notice-info { background: var(--bg-3); border: 1px solid var(--line-2); color: var(--text-2); }
.evp-notice a { font-weight: 600; white-space: nowrap; }
.evp-loading { color: var(--text-3); padding: 24px 0; }

/* the grid */
.evp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 980px) { .evp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .evp-grid { grid-template-columns: 1fr; } }

.evp-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .18s cubic-bezier(.16,.7,.2,1), box-shadow .18s ease, border-color .18s ease; }
.evp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-2); }

.evp-banner { position: relative; aspect-ratio: 2 / 1; background-size: cover; background-position: center; }
.evp-cat { position: absolute; left: 14px; top: 14px; font-size: 10.5px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: #fff; background: rgba(15,20,34,.42); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,.25); padding: 4px 10px; border-radius: 20px; }
.evp-sample { position: absolute; right: 14px; top: 14px; font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: #fff; background: rgba(15,20,34,.5); padding: 4px 9px; border-radius: 20px; }

.evp-body { display: flex; flex-direction: column; gap: 10px; padding: 18px; flex: 1; }
.evp-title { font-size: 17px; font-weight: 700; letter-spacing: -.015em; line-height: 1.25; color: var(--ink); }
.evp-host { display: flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 600; color: var(--text-2); }
.evp-avatar { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--c, var(--blue)); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 10.5px; font-weight: 800; }
.evp-meta { display: flex; flex-direction: column; gap: 6px; margin-top: 2px; }
.evp-meta span { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-2); }
.evp-meta svg { flex: none; color: var(--text-3); }
.evp-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); }
.evp-going { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600; color: var(--text-2); }
.evp-going svg { color: var(--blue); }
.evp-price { font-size: 13px; font-weight: 800; color: var(--ink); padding: 3px 11px; border-radius: 20px; background: var(--bg-3); }
.evp-price.free { color: #0f7d4d; background: rgba(15,125,77,.10); }

/* loading skeleton */
.evp-skeleton { pointer-events: none; }
.evp-skeleton .evp-banner { background: linear-gradient(100deg, var(--bg-3) 30%, var(--bg-2) 50%, var(--bg-3) 70%); background-size: 200% 100%; }
.evp-skeleton .sk { height: 12px; border-radius: 6px; background: var(--bg-3); margin: 0 18px; }
.evp-skeleton .sk-1 { margin-top: 18px; width: 70%; }
.evp-skeleton .sk-2 { margin-top: 12px; width: 45%; }
.evp-skeleton .sk-3 { margin-top: 12px; width: 60%; }
@media (prefers-reduced-motion: no-preference) {
  .evp-skeleton .evp-banner { animation: evp-shimmer 1.3s linear infinite; }
}
@keyframes evp-shimmer { to { background-position: -200% 0; } }

/* price tag on the banner (replaces the old foot price chip position) */
.evp-price-tag { position: absolute; right: 14px; top: 14px; font-size: 11px; font-weight: 800; letter-spacing: .02em; color: var(--ink); background: rgba(255,255,255,.92); backdrop-filter: blur(4px); padding: 4px 10px; border-radius: 20px; box-shadow: 0 2px 6px rgba(15,20,34,.12); }
.evp-price-tag.free { color: #0f7d4d; }

/* register / going / paid-app buttons */
.evp-reg { display: inline-flex; align-items: center; gap: 6px; font-family: var(--sans); font-size: 13px; font-weight: 700; padding: 8px 15px; border-radius: 10px; border: 1px solid transparent; cursor: pointer; background: var(--grad); color: #fff; box-shadow: 0 6px 14px rgba(36,85,240,.24); transition: filter .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, transform .08s ease; white-space: nowrap; text-decoration: none; }
.evp-reg:hover { filter: brightness(1.06); text-decoration: none; }
.evp-reg:active { transform: translateY(1px); }
.evp-reg:disabled { opacity: .6; cursor: default; }
.evp-reg svg { flex: none; }
.evp-reg-on { background: rgba(15,125,77,.10); color: #0f7d4d; border-color: rgba(15,125,77,.25); box-shadow: none; }
.evp-reg-on:hover { filter: none; background: rgba(15,125,77,.16); }
.evp-reg-paid { background: #fff; color: var(--blue-dark); border-color: var(--line-2); box-shadow: var(--shadow-sm); }
.evp-reg-paid:hover { filter: none; background: var(--bg-2); }

/* empty state */
.evp-empty { text-align: center; max-width: 460px; margin: 24px auto; padding: 44px 28px; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); }
.evp-empty-ic { width: 52px; height: 52px; border-radius: 14px; background: var(--grad); color: #fff; display: grid; place-items: center; margin: 0 auto 16px; box-shadow: 0 8px 18px rgba(36,85,240,.22); }
.evp-empty-ic svg { width: 24px; height: 24px; }
.evp-empty h3 { font-size: 19px; font-weight: 700; letter-spacing: -.01em; }
.evp-empty p { color: var(--text-2); font-size: 15px; margin: 10px 0 20px; }
.evp-notice-error { background: rgba(207,58,58,.08); border: 1px solid rgba(207,58,58,.22); color: #a52a2a; }

/* ===========================================================================
   SITE AUTH — nav control, login button, logged-in chip, and the modal.
   =========================================================================== */
.auth-control { display: inline-flex; align-items: center; }
.auth-login-btn { font-family: var(--sans); font-size: 14px; font-weight: 600; color: var(--text-2); background: none; border: none; cursor: pointer; padding: 6px 4px; }
.auth-login-btn:hover { color: var(--ink); }
.auth-chip { display: inline-flex; align-items: center; gap: 9px; background: #fff; border: 1px solid var(--line-2); border-radius: 22px; padding: 4px 6px 4px 5px; box-shadow: var(--shadow-sm); }
.auth-ava { width: 28px; height: 28px; border-radius: 50%; background: var(--grad); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; flex: none; }
.auth-name { font-size: 13.5px; font-weight: 600; color: var(--ink); max-width: 110px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.auth-logout { font-family: var(--sans); font-size: 12.5px; font-weight: 600; color: var(--text-3); background: var(--bg-2); border: 1px solid var(--line); border-radius: 14px; padding: 4px 10px; cursor: pointer; }
.auth-logout:hover { color: var(--ink); background: var(--bg-3); }
@media (max-width: 860px) { .auth-control { display: none; } }

.auth-overlay { position: fixed; inset: 0; z-index: 80; display: grid; place-items: center; padding: 20px; background: rgba(15,20,34,.45); backdrop-filter: blur(4px); }
.auth-overlay[hidden] { display: none; }
.auth-modal { position: relative; width: 100%; max-width: 420px; background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 30px 28px 24px; box-shadow: var(--shadow-lg); }
@media (prefers-reduced-motion: no-preference) { .auth-modal { animation: auth-pop .22s cubic-bezier(.16,.7,.2,1); } }
@keyframes auth-pop { from { opacity: 0; transform: translateY(10px) scale(.98); } to { opacity: 1; transform: none; } }
.auth-close { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; border-radius: 9px; border: none; background: var(--bg-2); color: var(--text-2); display: grid; place-items: center; cursor: pointer; }
.auth-close:hover { background: var(--bg-3); color: var(--ink); }
.auth-head { padding-right: 30px; }
.auth-head h2 { font-family: var(--serif); font-weight: 600; font-size: 24px; letter-spacing: -.015em; }
.auth-sub { color: var(--text-2); font-size: 14px; margin: 8px 0 0; line-height: 1.5; }
.auth-tabs { display: inline-flex; background: var(--bg-2); border: 1px solid var(--line); border-radius: 11px; padding: 4px; gap: 4px; margin: 20px 0 18px; }
.auth-tab { font-family: var(--sans); font-size: 13.5px; font-weight: 600; color: var(--text-2); background: none; border: none; border-radius: 8px; padding: 7px 18px; cursor: pointer; }
.auth-tab.is-on { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.auth-form { display: flex; flex-direction: column; gap: 13px; }
.auth-field { display: flex; flex-direction: column; gap: 6px; }
.auth-field[hidden] { display: none; }
.auth-field span { font-size: 12.5px; font-weight: 600; color: var(--text-2); }
.auth-field input { font-family: var(--sans); font-size: 15px; color: var(--ink); padding: 11px 13px; border: 1px solid var(--line-2); border-radius: 10px; background: #fff; transition: border-color .15s ease, box-shadow .15s ease; }
.auth-field input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(36,85,240,.14); }
.auth-error { margin: 0; font-size: 13px; color: #cf3a3a; font-weight: 500; }
.auth-ok { margin: 0; font-size: 13px; color: #0f7d4d; font-weight: 500; line-height: 1.5; }
.auth-submit { width: 100%; justify-content: center; margin-top: 4px; }
.auth-fine { margin: 16px 0 0; font-size: 12px; color: var(--text-3); text-align: center; line-height: 1.5; }

/* ===========================================================================
   DOWNLOAD-THE-APP (coming soon) section + App Store badge.
   =========================================================================== */
.app-cta { background: var(--bg-2); border-top: 1px solid var(--line); }
/* Apple-style pinned scroll: the phone stays centred while you scroll through
   the stage, and its on-screen feed + scale animate (driven by scroll.js). */
.app-cta-stage { position: relative; height: 200vh; }
.app-cta-pin { position: sticky; top: 0; min-height: 100vh; display: grid; align-items: center; padding: 48px 0; }
.iphone { will-change: transform; }
@media (max-width: 860px) { .app-cta-stage { height: auto; } .app-cta-pin { position: static; min-height: 0; padding: 56px 0; } }
/* Reduced motion: no pin / tall scroll region — just a normal static section. */
@media (prefers-reduced-motion: reduce) { .app-cta-stage { height: auto; } .app-cta-pin { position: static; min-height: 0; padding: 56px 0; } }
.app-cta-band { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.app-cta-copy h2 { font-size: clamp(26px, 3.4vw, 38px); }
.app-cta-copy p { color: var(--text-2); font-size: 17px; margin: 16px 0 24px; max-width: 520px; }
.app-cta-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.app-badge { display: inline-flex; border-radius: 12px; line-height: 0; transition: transform .12s ease, filter .15s ease; }
.app-badge img { border-radius: 12px; display: block; }
.app-badge:hover { transform: translateY(-2px); filter: brightness(1.08); text-decoration: none; }
.app-cta-note { font-size: 12.5px; color: var(--text-3); margin: 14px 0 0; }
.app-cta-art { display: grid; place-items: center; }

/* iPhone 17 Pro mockup — titanium frame, Dynamic Island, side buttons.
   The on-screen feed scrolls as the page scrolls (Apple-style), driven by scroll.js. */
.iphone { position: relative; width: 286px; aspect-ratio: 1 / 2.04; margin: 0 auto;
  background: linear-gradient(135deg, #3a4150 0%, #5b6273 13%, #20242e 34%, #474e5d 60%, #1b1f28 82%, #3a4150 100%);
  border-radius: 56px; padding: 5px;
  box-shadow: 0 1px 3px rgba(0,0,0,.4), 0 40px 70px -28px rgba(20,30,60,.5),
              inset 0 0 0 1.5px rgba(255,255,255,.14), inset 0 0 0 5px #10141c; }
.ip-screen { position: relative; width: 100%; height: 100%; background: linear-gradient(180deg, #eef2fb 0%, #ffffff 34%); border-radius: 51px; overflow: hidden; }
/* soft white fade at the top so the feed cleanly scrolls under the status bar */
.ip-screen::after { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 46px; background: linear-gradient(180deg, #eef2fb 55%, transparent); z-index: 4; pointer-events: none; }
.ip-island { position: absolute; top: 13px; left: 50%; transform: translateX(-50%); width: 90px; height: 27px; background: #06080c; border-radius: 16px; z-index: 6; }
.ip-status { position: absolute; top: 16px; left: 0; right: 0; display: flex; align-items: center; justify-content: space-between; padding: 0 25px; z-index: 5; font-size: 12.5px; font-weight: 700; color: var(--ink); }
.ip-bat { width: 22px; height: 11px; border: 1.4px solid var(--ink); border-radius: 3px; position: relative; opacity: .85; }
.ip-bat::before { content: ""; position: absolute; inset: 1.5px; right: 6px; background: var(--ink); border-radius: 1px; }
.ip-bat::after { content: ""; position: absolute; top: 3px; right: -3px; width: 2px; height: 5px; background: var(--ink); border-radius: 0 2px 2px 0; }

.ip-scroll { position: absolute; top: 0; left: 0; right: 0; padding: 52px 12px 64px; display: flex; flex-direction: column; gap: 9px; will-change: transform; }
/* bottom tab bar (mirrors the app: Discover · Search · Events · Network · Profile) */
.ip-tabbar { position: absolute; left: 0; right: 0; bottom: 0; z-index: 7; display: flex; justify-content: space-around; align-items: flex-start;
  padding: 8px 4px 13px; background: rgba(255,255,255,.94); backdrop-filter: blur(12px); border-top: 1px solid var(--line); }
.ip-tab { display: flex; flex-direction: column; align-items: center; gap: 3px; font-size: 8px; font-weight: 600; color: var(--text-3); letter-spacing: -.01em; }
.ip-tab svg { width: 20px; height: 20px; }
.ip-tab.is-on { color: var(--blue); }
/* App-style event cards (mirrors the iOS EventRow: photo banner with overlaid
   category + title, overlapping host avatar, attendees, price badge). */
.ipa-head { display: flex; align-items: baseline; justify-content: space-between; padding: 0 4px 4px; }
.ipa-head b { font-size: 22px; font-weight: 800; letter-spacing: -.02em; color: var(--ink); }
.ipa-loc { font-size: 11px; font-weight: 600; color: var(--text-3); }
.ipc { background: #fff; border-radius: 16px; box-shadow: 0 1px 2px rgba(15,20,34,.05), 0 6px 18px rgba(20,30,60,.07); overflow: hidden; }
.ipc-ban { height: 92px; background-size: cover; background-position: center; position: relative; display: flex; flex-direction: column; gap: 2px; justify-content: flex-start; padding: 10px 12px; }
.ipc-cat { font-size: 8px; font-weight: 800; letter-spacing: .09em; color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,.4); }
.ipc-ttl { font-size: 14px; font-weight: 800; letter-spacing: -.01em; color: #fff; line-height: 1.15; text-shadow: 0 1px 3px rgba(0,0,0,.5); }
.ipc-body { position: relative; display: flex; align-items: center; gap: 8px; padding: 12px 12px 11px 50px; }
.ipc-ava { position: absolute; left: 12px; top: -16px; width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; color: #fff; background: linear-gradient(135deg, var(--c, #2455f0), #1636b0); border: 2.5px solid #fff; box-shadow: 0 2px 6px rgba(20,30,60,.18); }
.ipc-info { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.ipc-info b { font-size: 12.5px; font-weight: 700; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ipc-date { font-size: 10.5px; color: var(--text-3); }
.ipc-stat { display: inline-flex; align-items: center; gap: 4px; font-size: 10px; color: var(--text-2); margin-top: 1px; }
.ipc-stat svg { color: var(--text-3); }
.ipc-price { margin-left: auto; flex: none; font-size: 11px; font-weight: 800; color: var(--ink); background: var(--surface-2, #f1f4fa); border-radius: 8px; padding: 4px 9px; }
.ipc-price.free { color: var(--green); background: rgba(15,157,88,.12); }
.ip-tkt { display: flex; flex-direction: column; align-items: center; gap: 5px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 12px; box-shadow: 0 1px 2px rgba(15,20,34,.05); margin-top: 3px; }
.ip-tkt-top { width: 100%; display: flex; justify-content: space-between; font-size: 8.5px; font-weight: 800; letter-spacing: .04em; }
.ip-tkt-top span:first-child { color: var(--blue); }
.ip-chk { color: var(--green); }
.ip-tkt b { font-size: 14px; color: var(--ink); }
.ip-tkt-meta { font-size: 9.5px; color: var(--text-3); }
.ip-tkt .ap-qr.big { width: 84px; height: 84px; margin: 3px 0; }
.ip-admit { font-size: 9px; letter-spacing: .2em; font-weight: 700; color: var(--text-3); }

/* titanium side buttons */
.ip-side { position: absolute; background: linear-gradient(180deg,#5a6172,#2a2f3a); z-index: 1; box-shadow: inset 0 1px 1px rgba(255,255,255,.2); }
.ip-action { left: -2.5px; top: 116px; width: 3.5px; height: 26px; border-radius: 3px 0 0 3px; }
.ip-vup { left: -2.5px; top: 160px; width: 3.5px; height: 50px; border-radius: 3px 0 0 3px; }
.ip-vdn { left: -2.5px; top: 220px; width: 3.5px; height: 50px; border-radius: 3px 0 0 3px; }
.ip-power { right: -2.5px; top: 172px; width: 3.5px; height: 76px; border-radius: 0 3px 3px 0; }
.ip-cam { right: -2.5px; top: 262px; width: 3.5px; height: 30px; border-radius: 0 3px 3px 0; }
@media (max-width: 860px) { .iphone { width: 250px; } }
@media (max-width: 860px) { .app-cta-band { grid-template-columns: 1fr; gap: 32px; } .app-cta-art { order: -1; } }

/* ===========================================================================
   ORGANIZERS PAGE (organizers.html) — reuses the hero shell with a CRM preview.
   The display-heading serif rule already covers .org-hero h1 + .app-cta-copy h2.
   =========================================================================== */
.org-hero h1 .hl { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
/* In the org hero the right column holds the CRM board mock (not the phone
   preview), so let it fill the column height nicely. */
.org-preview { min-height: 0; display: grid; align-items: center; }
.org-preview .mock { width: 100%; }
@media (max-width: 920px) { .org-preview { order: 2; } }

/* ===========================================================================
   EVENTS-FIRST landing hero + filter toolbar (search / category / price /
   pagination). Aesthetic inspired by evelya.co: an editorial serif hero, a
   warm off-white surface, flat cards, and one bright accent — kept premium and
   credible while staying genuinely functional for a growing event catalogue.
   =========================================================================== */

/* centered, editorial events-led hero */
.events-hero { position: relative; overflow: hidden; background: linear-gradient(180deg, #f6f4f9 0%, #ffffff 100%); padding: 30px 0 0; text-align: center; }
.events-hero .hero-orbs { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.events-hero-in { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.events-hero .eyebrow { margin-bottom: 18px; }
.events-hero h1 { font-family: var(--serif); font-weight: 600; font-optical-sizing: auto; letter-spacing: -.02em; font-size: clamp(30px, 3.7vw, 44px); line-height: 1.05; }
.events-hero h1 .hl { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.events-hero .sub { font-size: clamp(15px, 1.4vw, 17px); color: var(--text-2); max-width: 560px; margin: 14px auto 0; }
.events-hero-aside { margin-top: 22px; }

/* sticky filter toolbar — centered, search-dominant */
/* At rest the toolbar is transparent so the hero gradient flows behind the
   search bar; it only fades to opaque white + blur + divider once it pins
   (.is-stuck, toggled in scroll.js) so feed items don't show through. */
.evp-tools { position: sticky; top: 68px; z-index: 20; background: transparent; border-bottom: 1px solid transparent; margin-top: 14px; transition: background .2s ease, border-color .2s ease, backdrop-filter .2s ease; }
.evp-tools.is-stuck { background: rgba(255,255,255,.9); backdrop-filter: blur(12px); border-bottom-color: var(--line); }
.evp-tools-in { padding: 14px 0 12px; }
.evp-toolbar { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; max-width: 700px; margin: 0 auto; }

/* dominant search bar — shares the centered row with the Filters button */
.evp-search { flex: 1 1 420px; max-width: 520px; display: flex; align-items: center; gap: 12px; background: #fff; border: 1.5px solid var(--line-2); border-radius: 16px; padding: 0 18px; min-height: 58px; box-shadow: var(--shadow); transition: border-color .15s ease, box-shadow .15s ease; }

/* Filters toggle button + collapsible panel */
.evp-filters-btn { flex: none; display: inline-flex; align-items: center; gap: 8px; min-height: 58px; padding: 0 20px; border-radius: 16px; border: 1.5px solid var(--line-2); background: #fff; box-shadow: var(--shadow-sm); font-family: var(--sans); font-weight: 600; font-size: 14.5px; color: var(--ink); cursor: pointer; transition: border-color .15s ease, color .15s ease; }
.evp-filters-btn:hover { border-color: var(--text-3); }
.evp-filters-btn.is-open { border-color: var(--blue); color: var(--blue); }
.evp-filters-count { background: var(--grad); color: #fff; font-size: 11px; font-weight: 700; line-height: 1; border-radius: 20px; padding: 3px 7px; }
.evp-filters-panel { display: flex; flex-direction: column; align-items: center; gap: 14px; margin: 16px auto 0; }
.evp-filters-panel[hidden] { display: none; }
.evp-filters-row { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.evp-search:focus-within { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(36,85,240,.16), var(--shadow); }
.evp-search svg { color: var(--text-3); flex: none; width: 20px; height: 20px; }
.evp-search input { flex: 1; border: none; outline: none; background: none; font-family: var(--sans); font-size: 16.5px; color: var(--ink); padding: 14px 0; min-width: 0; }
.evp-search input::placeholder { color: var(--text-3); }

/* host filter dropdown */
.evp-select { position: relative; display: inline-flex; align-items: center; flex: none; }
.evp-select > svg:first-child { position: absolute; left: 13px; color: var(--text-3); pointer-events: none; }
.evp-select .evp-chev { position: absolute; right: 11px; color: var(--text-3); pointer-events: none; }
.evp-select select { appearance: none; -webkit-appearance: none; font-family: var(--sans); font-size: 14px; font-weight: 600; color: var(--ink); background: #fff; border: 1px solid var(--line-2); border-radius: 12px; padding: 0 34px 0 36px; min-height: 50px; cursor: pointer; box-shadow: var(--shadow-sm); max-width: 200px; }
.evp-select select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(36,85,240,.14); }

.evp-price-seg { display: inline-flex; background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px; padding: 4px; gap: 3px; flex: none; }
.evp-seg { font-family: var(--sans); font-size: 13.5px; font-weight: 600; color: var(--text-2); background: none; border: none; border-radius: 8px; padding: 11px 18px; cursor: pointer; transition: background .15s ease, color .15s ease; }
.evp-seg.is-on { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }

.evp-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 16px; }
.evp-chip { display: inline-flex; align-items: center; gap: 7px; font-family: var(--sans); font-size: 13px; font-weight: 600; color: var(--text-2); background: #fff; border: 1px solid var(--line-2); border-radius: 20px; padding: 7px 14px; cursor: pointer; transition: border-color .15s ease, color .15s ease, background .15s ease; }
.evp-chip::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--c, var(--line-2)); }
.evp-chip[data-cat="all"]::before { display: none; }
.evp-chip:hover { border-color: var(--text-3); color: var(--ink); }
.evp-chip.is-on { background: var(--ink); color: #fff; border-color: var(--ink); }
.evp-chip.is-on::before { background: #fff; }

.evp-resultbar { margin-top: 14px; text-align: center; }
.evp-resultbar span { font-size: 13px; font-weight: 600; color: var(--text-3); }

/* the events feed section under the toolbar */
.events-feed { padding: 34px 0 80px; }

/* load-more + "see all" */
.evp-more { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-top: 34px; }
.evp-more .btn { min-width: 240px; justify-content: center; }
.evp-seeall { display: grid; place-items: center; margin-top: 30px; }
.evp-seeall .btn { min-width: 260px; justify-content: center; }

/* host/organizer avatar photo on cards */
.evp-avatar-img { overflow: hidden; padding: 0; }
.evp-avatar-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }

/* filter empty state variant */
.evp-empty-filter .evp-empty-ic { background: var(--bg-3); color: var(--text-2); box-shadow: none; }

@media (max-width: 760px) {
  .evp-tools { top: 60px; }
  .evp-search { flex-basis: 100%; max-width: none; }
  .evp-select, .evp-select select { width: 100%; max-width: none; }
  .evp-price-seg { flex: 1; } .evp-seg { flex: 1; }
}

/* ===== Cookie / analytics consent banner (Law 25) ===================== */
.consent-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 9999;
  display: flex; justify-content: center;
  animation: consent-in .25s ease both;
}
@keyframes consent-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.consent-in {
  width: min(720px, 100%);
  display: flex; align-items: center; gap: 18px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 16px; padding: 16px 18px;
  box-shadow: 0 12px 40px rgba(15, 20, 34, .16);
}
.consent-copy { margin: 0; font-size: 13.5px; line-height: 1.5; color: var(--text-2); }
.consent-copy a { color: var(--brand, #2455f0); text-decoration: underline; }
.consent-actions { display: flex; gap: 10px; flex-shrink: 0; }
@media (max-width: 620px) {
  .consent-in { flex-direction: column; align-items: stretch; gap: 12px; }
  .consent-actions { justify-content: stretch; }
  .consent-actions .btn { flex: 1; }
}
.btn-sm { padding: 9px 16px; font-size: 13.5px; border-radius: 10px; }
