/* ===========================================================
   Top Tier Connex — shared site styles (multipage)
   Consistent, left-aligned, full-width layout system.
   =========================================================== */

:root {
  --ink:        #07040f;
  --ink-2:      #0c0718;
  --violet:     #6c2bd9;
  --violet-2:   #8b3dff;
  --magenta:    #ff2d78;
  --orange:     #ff7a33;
  --cyan:       #19e3d6;
  --lime:       #c6ff3d;
  --grad-hot:   linear-gradient(110deg, var(--violet) 0%, var(--magenta) 55%, var(--orange) 100%);
  --maxw:       1880px;
  --gutter:     clamp(20px, 3vw, 48px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
html, body { background: var(--ink); }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}
h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; line-height: 1.08; letter-spacing: -.02em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.grad-text {
  background-image:
    linear-gradient(105deg, transparent 38%, rgba(255,255,255,.7) 50%, transparent 62%),
    var(--grad-hot);
  background-size: 220% 100%, 100% 100%;
  background-position: -60% 0, 0 0;
  background-repeat: no-repeat;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 5s ease-in-out infinite;
}
@keyframes shimmer { 0% {background-position:-60% 0,0 0;} 60% {background-position:160% 0,0 0;} 100% {background-position:160% 0,0 0;} }

/* ---------- Animated background (fixed, behind every page) ---------- */
.bg { position: fixed; inset: 0; z-index: 0; overflow: hidden;
  background: linear-gradient(125deg, #08040f 0%, #120822 18%, #1a0c2b 34%, #221029 50%, #230f1d 66%, #120822 84%, #08040f 100%);
  background-size: 400% 400%; animation: bgshift 16s linear infinite; }
@keyframes bgshift { 0% {background-position:0% 50%;} 50% {background-position:100% 50%;} 100% {background-position:0% 50%;} }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .28; will-change: transform; }
.orb.a { width: 52vw; height: 52vw; background: radial-gradient(circle at 35% 35%, var(--violet-2), transparent 62%); top: -14vw; left: -12vw; animation: drift1 20s ease-in-out infinite; }
.orb.b { width: 46vw; height: 46vw; background: radial-gradient(circle at 35% 35%, var(--magenta), transparent 62%); top: 26vh; right: -12vw; animation: drift2 23s ease-in-out infinite; }
.orb.c { width: 36vw; height: 36vw; background: radial-gradient(circle at 35% 35%, var(--orange), transparent 60%); top: 6vh; left: 14vw; opacity: .22; animation: drift3 26s ease-in-out infinite; }
@keyframes drift1 { 0%{transform:translate(0,0) scale(1);} 50%{transform:translate(38vw,16vw) scale(1.15);} 100%{transform:translate(0,0) scale(1);} }
@keyframes drift2 { 0%{transform:translate(0,0) scale(1);} 50%{transform:translate(-44vw,-10vw) scale(1.12);} 100%{transform:translate(0,0) scale(1);} }
@keyframes drift3 { 0%{transform:translate(0,0) scale(1);} 50%{transform:translate(32vw,-20vw) scale(1.18);} 100%{transform:translate(0,0) scale(1);} }
.bg .veil { position: absolute; inset: 0; background: radial-gradient(135% 100% at 50% 0%, transparent 30%, rgba(5,2,11,.84) 100%); }

/* ---------- Page scaffold ---------- */
.page { position: relative; z-index: 2; min-height: 100svh; display: flex; flex-direction: column; }
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
main { flex: 1 0 auto; }
section { padding: clamp(52px, 8vh, 96px) 0; }
section + section { border-top: 1px solid rgba(255,255,255,.06); }

/* Consistent left-aligned section header — same left edge as all content */
.section-head { max-width: none; margin-bottom: 36px; }
.eyebrow { display: inline-block; font-size: .8rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  background: var(--grad-hot); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 14px; }
h2 { font-size: clamp(1.85rem, 4vw, 2.9rem); font-weight: 700; }
h2 + .lead, .section-head .lead { margin-top: 16px; }
.lead { color: rgba(255,255,255,.76); font-size: clamp(1.02rem, 1.5vw, 1.18rem); max-width: none; }
.muted { color: rgba(255,255,255,.68); }

/* ---------- Top nav (shared) ---------- */
.nav { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(12px); background: rgba(7,4,15,.66); border-bottom: 1px solid rgba(255,255,255,.08); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 84px; gap: 18px; }
.nav-logo img { height: 60px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a { font-size: .95rem; color: rgba(255,255,255,.78); padding: .5rem .8rem; border-radius: 8px; transition: color .2s, background .2s; }
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.06); }
.nav-links a[aria-current="page"] { color: #fff; }
.nav-links a[aria-current="page"]::after { content: ""; display: block; height: 2px; border-radius: 2px; margin-top: 3px; background: var(--grad-hot); }
.nav-cta { margin-left: 6px; }
.nav-toggle { display: none; }
@media (max-width: 880px) {
  .nav-links { position: fixed; inset: 84px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(10,5,20,.98); border-bottom: 1px solid rgba(255,255,255,.1); padding: 8px var(--gutter) 16px; transform: translateY(-130%); transition: transform .25s ease; }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: .85rem .4rem; }
  .nav-links a[aria-current="page"]::after { display: none; }
  .nav-cta { margin: 8px 0 0; text-align: center; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 10px;
    background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); color: #fff; cursor: pointer; }
}

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; font-size: 1rem; font-family: inherit;
  padding: .85rem 1.5rem; border-radius: 999px; cursor: pointer; border: 0; color: #fff;
  background: var(--grad-hot); box-shadow: 0 12px 30px -10px rgba(255,45,120,.6); transition: transform .15s ease, box-shadow .15s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -10px rgba(255,45,120,.7); }
.btn.ghost { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.22); box-shadow: none; }
.btn.ghost:hover { background: rgba(255,255,255,.13); }
.btn.sm { padding: .58rem 1.05rem; font-size: .92rem; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* Add-to-calendar dropdown */
.atc { position: relative; display: inline-block; }
.atc-btn svg.chev { transition: transform .2s ease; }
.atc-btn[aria-expanded="true"] svg.chev { transform: rotate(180deg); }
/* Green accent + periodic subtle wobble to draw the eye */
.btn.ghost.atc-btn { background: rgba(52,211,123,.14); border-color: rgba(52,211,123,.5); color: #d8ffe9; animation: atc-wobble 5s ease-in-out infinite; }
.btn.ghost.atc-btn svg { color: #3ddc84; }
.btn.ghost.atc-btn:hover { background: rgba(52,211,123,.24); border-color: rgba(52,211,123,.85); color: #fff; box-shadow: 0 10px 26px -12px rgba(52,211,123,.6); }
.btn.ghost.atc-btn:hover, .btn.ghost.atc-btn[aria-expanded="true"] { animation: none; }
@keyframes atc-wobble {
  0%, 86%, 100% { transform: rotate(0deg); }
  88% { transform: rotate(-3.5deg); }
  90% { transform: rotate(3deg); }
  92% { transform: rotate(-2.4deg); }
  94% { transform: rotate(1.6deg); }
  96% { transform: rotate(-0.8deg); }
}
@media (prefers-reduced-motion: reduce) { .btn.ghost.atc-btn { animation: none; } }
.atc-menu { position: absolute; top: calc(100% + 8px); left: 0; z-index: 60; min-width: 230px;
  background: #140a20; border: 1px solid rgba(255,255,255,.16); border-radius: 14px; padding: 6px;
  box-shadow: 0 28px 64px -22px rgba(0,0,0,.85); display: grid; gap: 2px; }
.atc-menu[hidden] { display: none; }
.atc-item { display: flex; align-items: center; gap: 11px; padding: .68rem .85rem; border-radius: 9px;
  font-size: .95rem; font-weight: 500; color: rgba(255,255,255,.88); cursor: pointer; }
.atc-item:hover { background: rgba(255,255,255,.09); color: #fff; }
.atc-item .ico { flex: 0 0 22px; width: 22px; height: 22px; display: grid; place-items: center; }

/* ---------- Hero (home) ---------- */
.hero { padding-top: clamp(48px, 8vh, 96px); padding-bottom: clamp(48px, 8vh, 96px); }
.hero .pill { display: inline-flex; align-items: center; gap: .55rem; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16);
  padding: .42rem .9rem; border-radius: 999px; font-size: .84rem; font-weight: 500; color: rgba(255,255,255,.92); }
.hero .pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 0 rgba(198,255,61,.5); animation: pulse 2.4s ease-out infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(198,255,61,.5);} 70%{box-shadow:0 0 0 10px rgba(198,255,61,0);} 100%{box-shadow:0 0 0 0 rgba(198,255,61,0);} }
.hero h1 { font-size: clamp(2.3rem, 5vw, 4rem); font-weight: 700; margin: 22px 0 18px; max-width: 17ch; }
.hero .lead { max-width: 56ch; font-size: clamp(1.06rem, 1.6vw, 1.26rem); color: rgba(255,255,255,.84); }

/* Two-column hero: text/CTAs left, event panel right */
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 4vw, 60px); align-items: center; }
@media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr; gap: 34px; } .hero-aside { max-width: 480px; } }
.hero-main .cta-row { margin-top: 32px; }
.event-panel { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.13); border-radius: 22px; padding: clamp(22px, 2.4vw, 30px); box-shadow: 0 40px 90px -48px rgba(0,0,0,.85); }
.ep-count { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.ep-count .num { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(2.4rem, 5vw, 3.2rem); line-height: 1; background: var(--grad-hot); -webkit-background-clip: text; background-clip: text; color: transparent; }
.ep-count .lbl { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1.05rem; color: #fff; }
.ep-count .sub { flex-basis: 100%; color: rgba(255,255,255,.6); font-size: .92rem; margin-top: 7px; }
.ep-rows { margin-top: 18px; border-top: 1px solid rgba(255,255,255,.1); }
.ep-rows .ec-row:first-child { padding-top: 16px; }
.event-panel .atc { display: block; margin-top: 16px; }
.event-panel .atc-btn { width: 100%; justify-content: center; }
.event-panel .atc-menu { left: 0; right: 0; min-width: 0; }

/* Founder quote (Who we are section) */
.founder { margin-top: 26px; display: flex; gap: 22px; align-items: center; background: linear-gradient(150deg, rgba(108,43,217,.22), rgba(255,45,120,.13)); border: 1px solid rgba(255,255,255,.13); border-radius: 22px; padding: clamp(22px, 2.4vw, 32px); }
.founder-avatar { flex: 0 0 auto; width: 120px; height: 120px; border-radius: 50%; display: grid; place-items: center; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.35rem; color: #fff; background: var(--grad-hot); box-shadow: 0 12px 30px -12px rgba(255,45,120,.6); overflow: hidden; }
.founder-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
.founder blockquote { margin: 0; font-size: clamp(1.04rem, 1.5vw, 1.22rem); line-height: 1.55; color: rgba(255,255,255,.92); }
.founder .founder-by { margin-top: 12px; color: rgba(255,255,255,.7); font-size: .95rem; }
.founder .founder-by strong { color: #fff; font-weight: 600; }
@media (max-width: 600px) { .founder { flex-direction: column; align-items: flex-start; } }
.facts { display: flex; flex-wrap: wrap; gap: 10px 12px; margin: 26px 0 32px; }
.fact { display: inline-flex; align-items: center; gap: .5rem; padding: .55rem 1rem; border-radius: 999px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); font-size: .96rem; color: rgba(255,255,255,.9); }
.fact b { font-weight: 600; }

/* Event details card — date/time/location/giving as labelled rows */
.event-card { display: inline-block; min-width: min(420px, 100%); background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12); border-radius: 18px; padding: 4px 24px; margin: 28px 0 32px; }
.ec-row { display: grid; grid-template-columns: 34px 92px 1fr; align-items: center; gap: 14px; padding: 14px 0; }
.ec-row + .ec-row { border-top: 1px solid rgba(255,255,255,.09); }
.ec-ico { width: 34px; height: 34px; border-radius: 10px; background: rgba(255,255,255,.07); display: grid; place-items: center; color: #cbb8ff; }
.ec-ico svg { width: 18px; height: 18px; display: block; }
.ec-label { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); font-weight: 600; }
.ec-val { font-size: 1.04rem; color: #fff; font-weight: 500; }
.ec-val .muted { font-weight: 400; color: rgba(255,255,255,.6); }
@media (max-width: 480px) {
  .event-card { padding: 4px 16px; min-width: 0; width: 100%; }
  .ec-row { grid-template-columns: 30px 80px 1fr; gap: 10px; }
  .ec-val { font-size: .96rem; }
}

/* ---------- Grids & cards ---------- */
.grid { display: grid; gap: 20px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 920px) { .cols-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cols-2, .cols-3 { grid-template-columns: 1fr; } }
.card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: 18px; padding: 28px; }
.card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.card p { color: rgba(255,255,255,.74); font-size: .98rem; }
.card .big { font-size: 2.1rem; font-weight: 700; font-family: 'Space Grotesk', sans-serif; background: var(--grad-hot); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 6px; }

/* ---------- Agenda ---------- */
.agenda { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 720px) { .agenda { grid-template-columns: 1fr; } }
.slot { border-radius: 18px; padding: 30px; border: 1px solid rgba(255,255,255,.12); }
.slot.networking { background: linear-gradient(160deg, rgba(108,43,217,.28), rgba(255,255,255,.03)); }
.slot.party { background: linear-gradient(160deg, rgba(255,45,120,.28), rgba(255,122,51,.12)); }
.slot .time { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1.05rem; }
.slot h3 { font-size: 1.5rem; margin: 6px 0 10px; }
.slot p { color: rgba(255,255,255,.82); }

/* ---------- Sponsorship tiers ---------- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
@media (max-width: 920px) { .tiers { grid-template-columns: 1fr; } }
.tier { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12); border-radius: 20px; padding: 30px 28px; display: flex; flex-direction: column; }
.tier.headline { border-color: rgba(255,45,120,.55); box-shadow: 0 20px 60px -30px rgba(255,45,120,.7); background: linear-gradient(180deg, rgba(255,45,120,.1), rgba(255,255,255,.03)); }
.tier .ribbon { display: inline-block; align-self: flex-start; background: var(--grad-hot); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .25rem .7rem; border-radius: 999px; margin-bottom: 12px; }
.tier .tag { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; color: rgba(255,255,255,.7); }
.tier h3 { font-size: 1.5rem; margin: 6px 0 4px; }
.tier .price-note { font-size: .92rem; color: var(--lime); font-weight: 500; margin-bottom: 16px; }
.tier .price-note.urgent { color: #ffd166; font-weight: 600; }
.tier .tier-ctas { display: grid; gap: 10px; margin-top: auto; }
.tier.soldout-tier ul, .tier.soldout-tier h3, .tier.soldout-tier .tag { opacity: .55; }
.btn.btn-disabled { opacity: .55; pointer-events: none; cursor: default; }
.tier ul { list-style: none; display: grid; gap: 9px; margin: 4px 0 22px; }
.tier li { position: relative; padding-left: 26px; color: rgba(255,255,255,.82); font-size: .96rem; }
.tier li::before { content: ""; position: absolute; left: 0; top: .5em; width: 13px; height: 7px; border-left: 2px solid var(--lime); border-bottom: 2px solid var(--lime); transform: rotate(-45deg); }
.tier .btn { margin-top: auto; justify-content: center; }

.boltons, .audience, .charities { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { padding: .55rem 1rem; border-radius: 999px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); font-size: .92rem; color: rgba(255,255,255,.84); }
.audience .chip { background: rgba(108,43,217,.16); border-color: rgba(139,61,255,.35); }
.charities .chip { font-size: 1.02rem; padding: .7rem 1.3rem; font-weight: 500; }

/* ---------- Sponsor wall (tiered logos) ---------- */
.wall-tier { margin-top: 36px; }
.wall-tier:first-child { margin-top: 8px; }
.wall-tier .label { display: flex; align-items: center; gap: 14px; font-size: .8rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 18px; }
.wall-tier .label::after { content: ""; flex: 1; height: 1px; background: rgba(255,255,255,.12); }
.logos { display: flex; flex-wrap: wrap; gap: 18px; align-items: stretch; }
.logo { background: #fff; border-radius: 14px; display: flex; align-items: center; justify-content: center; padding: 18px 26px; transition: transform .18s ease, box-shadow .18s ease; }
.logo:hover { transform: translateY(-3px); box-shadow: 0 16px 36px -18px rgba(0,0,0,.7); }
.logo img { width: auto; object-fit: contain; display: block; }
.logo .fallback { font-family: 'Space Grotesk', sans-serif; font-weight: 600; color: #1a0c2b; text-align: center; line-height: 1.15; }
/* tier sizing — Caroline's request: headline largest, event mid, supporting smallest */
.logo.headline { min-width: 320px; height: 210px; flex: 1 1 460px; max-width: 680px; }
.logo.headline img { max-height: 150px; max-width: 540px; }
.logo.headline .fallback { font-size: 2.2rem; }
.logo.event { min-width: 200px; height: 106px; flex: 1 1 220px; max-width: 300px; }
.logo.event img { max-height: 60px; max-width: 200px; }
.logo.event .fallback { font-size: 1.15rem; }
.logo.support { min-width: 150px; height: 86px; flex: 0 1 208px; max-width: 230px; }
.logo.support img { max-height: 50px; max-width: 168px; }
.logo.support .fallback { font-size: 1.05rem; }

/* White board: the whole sponsors area is white, so logos sit directly on it
   without each needing its own white card */
.logo-board { background: #fff; border-radius: 24px; padding: clamp(24px, 3.6vw, 48px); box-shadow: 0 30px 80px -42px rgba(0,0,0,.7); }
.logo-board .wall-tier:first-child { margin-top: 0; }
.logo-board .wall-tier .label { color: #6b6475; justify-content: center; text-align: center; }
.logo-board .wall-tier .label::before { content: ""; flex: 1; height: 1px; background: rgba(0,0,0,.12); }
.logo-board .wall-tier .label::after { background: rgba(0,0,0,.12); }
.logo-board .logos { justify-content: center; }
.logo-board .logo { background: transparent; box-shadow: none; padding: 12px 18px; transform-origin: center; }
.logo-board .logo:hover { transform: translateY(-3px); box-shadow: none; }

/* Spotlight on hover: dim the page, grow the logo, show a detail card */
.sponsor-dim { position: fixed; inset: 0; background: rgba(4,2,9,.34); opacity: 0; pointer-events: none; transition: opacity .28s ease; z-index: 800; }
.sponsor-dim.show { opacity: 1; }
.logo-board .logo.is-spot { position: relative; z-index: 900; background: #fff; border-radius: 14px; box-shadow: 0 34px 80px -22px rgba(0,0,0,.7); }
.logo-board .logo.headline.is-spot { transform: scale(1.25); }
.logo-board .logo.event.is-spot { transform: scale(1.35); }
.logo-board .logo.support.is-spot { transform: scale(1.45); }
.spot-card { position: fixed; z-index: 901; width: 330px; max-width: calc(100vw - 24px); background: #140a20; border: 1px solid rgba(255,255,255,.16); border-radius: 16px; padding: 18px 20px; box-shadow: 0 34px 80px -18px rgba(0,0,0,.88); opacity: 0; transform: translateY(8px); transition: opacity .2s ease, transform .2s ease; pointer-events: none; }
.spot-card.show { opacity: 1; transform: none; pointer-events: auto; }
.spot-name { font-family: 'Space Grotesk', sans-serif; font-size: 1.12rem; font-weight: 600; margin-bottom: 7px; }
.spot-desc { font-size: .92rem; color: rgba(255,255,255,.8); line-height: 1.55; }
.spot-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 15px; font-weight: 600; font-size: .92rem; color: #fff; }
.spot-link span { border-bottom: 1px solid var(--magenta); padding-bottom: 1px; }
.spot-link:hover { color: var(--magenta); }

/* ---------- Mobile optimisation ---------- */
@media (max-width: 600px) {
  /* Sponsor wall: fluid logos so they never overflow the board */
  .logo-board { padding: 18px 14px; }
  .logos { gap: 12px; }
  .logo.headline { min-width: 0; height: 108px; flex: 1 1 100%; max-width: 100%; }
  .logo.headline img { max-height: 62px; max-width: 80%; }
  .logo.event, .logo.support { min-width: 0; max-width: calc(50% - 6px); flex: 0 1 calc(50% - 6px); }
  .logo.event { height: 82px; }
  .logo.event img { max-height: 44px; max-width: 86%; }
  .logo.support { height: 70px; }
  .logo.support img { max-height: 38px; max-width: 80%; }
  /* the hover spotlight is desktop-only; keep tiles tidy on touch */
  .logo-board .logo.is-spot { transform: none; }

  /* Tighter rhythm on small screens */
  .wall-tier { margin-top: 26px; }
  .ep-count .num { font-size: 2.6rem; }
  .cta-row .btn { flex: 1 1 auto; justify-content: center; }
  .tier { padding: 24px 20px; }
  .card { padding: 22px; }
  .cta-band { padding: 26px 20px; }
  .founder { padding: 22px; }
  .spot-card { width: calc(100vw - 28px); }
}

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(150deg, rgba(108,43,217,.32), rgba(255,45,120,.22)); border: 1px solid rgba(255,255,255,.14); border-radius: 24px; padding: clamp(26px, 2.6vw, 36px); }
.cta-band h2 { margin-bottom: 12px; }
.cta-band .lead { max-width: none; }
.deadline { display: inline-flex; align-items: center; gap: .5rem; margin: 18px 0 22px; padding: .5rem 1.05rem; border-radius: 999px; background: rgba(7,4,15,.45); border: 1px solid rgba(255,255,255,.18); font-size: .95rem; color: var(--lime); font-weight: 500; flex-wrap: wrap; }
/* Sold-out strikethrough + chip (Super Early Bird -> Early Bird) */
.deadline s, .price-note s { text-decoration-thickness: 2px; color: rgba(255,255,255,.5); font-weight: 500; }
.deadline b { color: var(--lime); font-weight: 700; }
.soldout { display: inline-block; padding: .14rem .6rem; border-radius: 999px; background: rgba(255,45,120,.16); border: 1px solid rgba(255,45,120,.5); color: #ff9dbd; font-size: .7rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; line-height: 1.4; }
.price-note .soldout { font-size: .64rem; padding: .1rem .5rem; }

/* ---------- Forms ---------- */
.notify { display: flex; gap: 10px; width: 100%; max-width: 480px; margin-top: 6px; flex-wrap: wrap; }
.notify input { flex: 1; min-width: 220px; padding: .9rem 1.25rem; border-radius: 999px; font-size: 1rem; font-family: inherit;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25); color: #fff; outline: none; transition: border-color .2s, background .2s; }
.notify input::placeholder { color: rgba(255,255,255,.55); }
.notify input:focus { border-color: var(--magenta); background: rgba(255,255,255,.15); }
.note { font-size: .9rem; color: rgba(255,255,255,.7); margin-top: 14px; min-height: 1.2em; }

/* Contact form */
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 6px; }
.contact-form .ff { display: flex; flex-direction: column; gap: 6px; }
.contact-form .ff.full { grid-column: 1 / -1; }
.contact-form label { font-size: .85rem; font-weight: 600; color: rgba(255,255,255,.85); }
.contact-form .req { color: var(--magenta); }
.contact-form .opt { color: rgba(255,255,255,.5); font-weight: 400; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: .8rem 1.05rem; border-radius: 14px; font-size: 1rem; font-family: inherit;
  color: #fff; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.22); outline: none; transition: border-color .2s, background .2s; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,.45); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--magenta); background: rgba(255,255,255,.14); }
.contact-form select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.6rem; cursor: pointer; }
.contact-form select:invalid { color: rgba(255,255,255,.45); }
.contact-form select option { color: #16233F; background: #fff; }
.contact-form textarea { resize: vertical; min-height: 96px; }
.contact-form button { grid-column: 1 / -1; justify-self: start; }
@media (max-width: 560px) { .contact-form { grid-template-columns: 1fr; } }

.contact-list { display: grid; gap: 14px; margin-top: 8px; }
.contact-list a, .contact-list span.row { display: inline-flex; align-items: center; gap: .6rem; color: rgba(255,255,255,.86); font-size: 1.05rem; }
.contact-list a { border-bottom: 1px solid transparent; width: max-content; transition: color .2s, border-color .2s; }
.contact-list a:hover { color: #fff; border-color: var(--magenta); }
.contact-list .who { font-weight: 600; color: #fff; }

/* ---------- Footer ---------- */
footer.foot { flex-shrink: 0; border-top: 1px solid rgba(255,255,255,.08); padding: 44px 0; color: rgba(255,255,255,.55); font-size: .9rem; }
.foot-grid { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 28px; }
.foot-nav { display: flex; flex-wrap: wrap; gap: 6px 20px; }
.foot-nav a { color: rgba(255,255,255,.66); transition: color .2s; }
.foot-nav a:hover { color: #fff; }
.foot .company { max-width: 64ch; line-height: 1.7; }
.foot .company strong { color: rgba(255,255,255,.8); font-weight: 600; }
.socials { display: flex; gap: 10px; }
.socials a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.07); display: grid; place-items: center; color: #fff; transition: background .2s, transform .2s; }
.socials a:hover { background: var(--violet); transform: translateY(-2px); }
.foot .legal { margin-top: 24px; font-size: .82rem; color: rgba(255,255,255,.4); }

.pagehead { padding-top: clamp(40px, 6vh, 72px); padding-bottom: 8px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .bg, .orb, .pill .dot, .grad-text { animation: none !important; }
}

/* ---------- Policy / legal pages ---------- */
.policy { max-width: 80ch; }
.policy h3 { font-size: 1.28rem; margin: 32px 0 10px; }
.policy p { color: rgba(255,255,255,.8); font-size: 1.02rem; line-height: 1.7; margin-bottom: 12px; }
.policy ul { margin: 6px 0 14px; padding-left: 22px; }
.policy li { color: rgba(255,255,255,.8); font-size: 1.02rem; line-height: 1.65; margin-bottom: 7px; }
.policy strong { color: #fff; font-weight: 600; }
.policy a { color: #fff; border-bottom: 1px solid var(--magenta); }
.policy .muted { color: rgba(255,255,255,.55); font-size: .92rem; }

/* ---------- Cookie notice ---------- */
.cookie-notice {
  position: fixed; left: 50%; bottom: 18px; z-index: 1000;
  transform: translateX(-50%) translateY(20px); opacity: 0;
  width: min(700px, calc(100% - 28px));
  display: flex; align-items: center; gap: 16px;
  background: rgba(18,9,30,.97); border: 1px solid rgba(255,255,255,.16); border-radius: 16px;
  padding: 15px 18px; box-shadow: 0 26px 64px -22px rgba(0,0,0,.85); backdrop-filter: blur(8px);
  transition: opacity .3s ease, transform .3s ease;
}
.cookie-notice.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.cookie-notice p { margin: 0; font-size: .9rem; line-height: 1.5; color: rgba(255,255,255,.82); }
.cookie-notice p a { color: #fff; border-bottom: 1px solid var(--magenta); }
.cookie-notice .btn { flex: 0 0 auto; }
@media (max-width: 560px) {
  .cookie-notice { flex-direction: column; align-items: stretch; gap: 12px; bottom: 12px; }
  .cookie-notice .btn { justify-content: center; }
}
