/* ==========================================================================
   SKOO — Create. Discover. Connect.
   Brand: navy #032047 · orange #FB9A1B · blue #1D78ED · green #11B279
   Mobile-first. No gradients anywhere — solid colour, hard shadows, patterns.
   ========================================================================== */

:root {
  --navy: #032047;
  --navy-deep: #021530;
  --orange: #FB9A1B;
  --blue: #1D78ED;
  --green: #11B279;
  --white: #FFFFFF;
  --cream: #F7F4EE;
  --ink: #0A1B33;
  --muted: #54637E;
  --line: #D8DEE9;
  --line-navy: #032047;

  --font-display: "Sora", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  --radius: 14px;
  --radius-sm: 9px;

  --header-h: 68px;
  --container: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
ul, ol { padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.08; letter-spacing: -0.02em; color: var(--navy); }
::selection { background: var(--orange); color: var(--navy); }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; border-radius: 4px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--orange); color: var(--navy); font-weight: 700;
  padding: 10px 18px; border-radius: 8px; transition: top .2s;
}
.skip-link:focus { top: 12px; }

.icon { width: 1.15em; height: 1.15em; flex: none; vertical-align: -0.2em; display: inline-block; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.container--narrow { max-width: 780px; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  padding: 12px 22px; border-radius: 12px;
  border: 2px solid var(--navy);
  transition: background .15s ease, border-color .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn .icon { width: 1.05em; height: 1.05em; }

.btn--orange { background: var(--orange); color: var(--navy); }
.btn--orange:hover { background: #EE8D0E; }
.btn--navy { background: var(--navy); color: var(--white); }
.btn--navy:hover { background: var(--navy-deep); }
.btn--blue { background: var(--blue); color: var(--white); }
.btn--blue:hover { background: #1665D1; }
.btn--green { background: var(--green); color: var(--white); }
.btn--green:hover { background: #0E9A68; }
.btn--ghost { background: var(--white); color: var(--navy); }
.btn--ghost:hover { background: var(--cream); }
.btn--ghost-light {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,.85);
}
.btn--ghost-light:hover { background: rgba(255,255,255,.12); }

.btn--sm { padding: 8px 15px; font-size: 0.85rem; border-radius: 10px; }
.btn--lg { padding: 15px 28px; font-size: 1.02rem; }
.btn--block { width: 100%; justify-content: center; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 2px solid var(--navy);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: 16px;
}
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.site-header .brand { height: 100%; }
.brand-logo { height: 100%; width: auto; display: block; object-fit: contain; }

.site-nav { display: flex; align-items: center; gap: 6px; }
.nav-link {
  font-weight: 600; font-size: 0.95rem; color: var(--ink);
  padding: 8px 13px; border-radius: 9px; position: relative;
}
.nav-link:hover { background: var(--cream); }
.nav-link.is-active { color: var(--navy); }
.nav-link.is-active::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 3px;
  height: 3px; background: var(--orange); border-radius: 2px;
}
.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none; width: 44px; height: 44px; align-items: center; justify-content: center;
  border: 2px solid var(--navy); border-radius: 10px; background: var(--white);
}
.nav-toggle .icon { width: 22px; height: 22px; }
.nav-toggle .icon--close { display: none; }
body.nav-open .nav-toggle .icon--menu { display: none; }
body.nav-open .nav-toggle .icon--close { display: block; }

/* ==========================================================================
   Flash toasts
   ========================================================================== */
.flash-stack {
  position: fixed; top: calc(var(--header-h) + 14px); right: 16px; z-index: 300;
  display: flex; flex-direction: column; gap: 10px; max-width: min(380px, calc(100vw - 32px));
}
.toast {
  display: flex; align-items: flex-start; gap: 11px;
  background: var(--white); border: 2px solid var(--navy); border-radius: 12px;
  padding: 13px 15px;
  animation: toast-in .3s ease;
}
.toast-icon {
  width: 26px; height: 26px; flex: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--white);
  background: var(--green);
}
.toast--error .toast-icon { background: #D64545; }
.toast-icon .icon { width: 14px; height: 14px; }
.toast p { font-size: 0.92rem; font-weight: 500; line-height: 1.45; }
.toast-close { margin-left: auto; opacity: .5; padding: 3px; }
.toast-close:hover { opacity: 1; }
.toast.is-leaving { opacity: 0; transform: translateX(20px); transition: .25s; }
@keyframes toast-in { from { opacity: 0; transform: translateY(-10px); } }

/* ==========================================================================
   Type helpers
   ========================================================================== */
.eyebrow {
  font-family: var(--font-display); font-weight: 700; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--navy);
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 22px; height: 3px; background: var(--navy); border-radius: 2px; }
.eyebrow--orange { color: var(--orange); } .eyebrow--orange::before { background: var(--orange); }
.eyebrow--blue { color: var(--blue); } .eyebrow--blue::before { background: var(--blue); }
.eyebrow--green { color: var(--green); } .eyebrow--green::before { background: var(--green); }

.section { padding: 76px 0; }
.section--tight { padding: 46px 0 76px; }
.section--cream { background: var(--cream); }
.section-head { max-width: 640px; margin-bottom: 46px; }
.section-head h2 { font-size: clamp(1.7rem, 4.2vw, 2.6rem); }
.section-sub { color: var(--muted); margin-top: 14px; font-size: 1.05rem; }
.section-sub--light { color: rgba(255,255,255,.72); }
.section-head--row {
  max-width: none; display: flex; align-items: flex-end;
  justify-content: space-between; gap: 20px; flex-wrap: wrap;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  background: var(--navy); color: var(--white);
  position: relative; overflow: hidden;
}
.hero-pattern {
  position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Ccircle cx='20' cy='20' r='1.6' fill='%23ffffff' fill-opacity='0.10'/%3E%3Ccircle cx='90' cy='60' r='1.6' fill='%23ffffff' fill-opacity='0.07'/%3E%3Ccircle cx='50' cy='115' r='1.6' fill='%23ffffff' fill-opacity='0.09'/%3E%3C/svg%3E");
}
.hero-inner {
  position: relative; display: grid; gap: 54px;
  padding: 72px 20px 88px;
}
.hero-title {
  font-size: clamp(3rem, 10vw, 5.6rem); font-weight: 800;
  letter-spacing: -0.035em; line-height: 0.98; color: var(--white);
}
.hero-line { display: block; }
.hero-line em { font-style: normal; }
.w-orange { color: var(--orange); }
.w-blue { color: #5B9DF5; }
.w-green { color: #2FD39A; }
.hero-sub {
  margin-top: 22px; font-size: clamp(1rem, 2.4vw, 1.18rem);
  color: rgba(255,255,255,.78); max-width: 34rem; line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-proof { display: flex; align-items: center; gap: 13px; margin-top: 34px; }
.hero-proof p { font-size: 0.92rem; color: rgba(255,255,255,.72); }
.hero-proof strong { color: var(--white); }

/* hero stage — floating cards */
.hero-stage { position: relative; min-height: 380px; }
.hero-card {
  background: var(--white); border-radius: var(--radius);
  border: 2px solid var(--navy);
  color: var(--ink); overflow: visible; position: relative;
}
.hero-card--main {
  width: min(330px, 82%); margin: 0 auto; transform: rotate(-2deg);
}
.hero-card-art {
  height: 120px; border-radius: 12px 12px 0 0; position: relative; overflow: hidden;
  border-bottom: 2px solid var(--navy);
}
.hero-card-img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-card-art-label {
  position: absolute; top: 12px; left: 12px; background: var(--navy); color: var(--white);
  font-family: var(--font-display); font-weight: 700; font-size: 0.68rem;
  letter-spacing: .14em; padding: 5px 10px; border-radius: 6px;
}
.hero-card-body { padding: 16px 18px 18px; position: relative; }
.hero-card-kicker { font-size: 0.78rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.hero-card-title { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--navy); margin-top: 4px; }
.hero-card-foot { display: flex; align-items: center; gap: 10px; margin-top: 14px; }
.hero-card-going { font-size: 0.85rem; font-weight: 600; color: var(--muted); }
.hero-card-price {
  margin-left: auto; font-family: var(--font-display); font-weight: 800;
  color: var(--navy); font-size: 1.02rem;
}
.ticket-notch {
  position: absolute; width: 26px; height: 26px; border-radius: 50%;
  background: var(--navy); border: 2px solid var(--navy); top: 108px;
}
.ticket-notch--l { left: -15px; }
.ticket-notch--r { right: -15px; }

.hero-chip {
  position: absolute; display: flex; align-items: center; gap: 10px;
  background: var(--white); border: 2px solid var(--navy); border-radius: 12px;
  padding: 10px 14px; color: var(--ink);
}
.hero-chip-icon {
  width: 34px; height: 34px; border-radius: 9px; flex: none;
  display: flex; align-items: center; justify-content: center; color: var(--white);
}
.hero-chip-title { font-weight: 700; font-size: 0.85rem; font-family: var(--font-display); color: var(--navy); }
.hero-chip-sub { font-size: 0.75rem; color: var(--muted); }
.hero-chip--stk { top: 6%; right: 2%; } .hero-chip--stk .hero-chip-icon { background: var(--green); }
.hero-chip--scan { bottom: 8%; left: 0; } .hero-chip--scan .hero-qr { color: var(--navy); }
.hero-chip--sales { bottom: 26%; right: 4%; } .hero-chip--sales .hero-chip-icon { background: var(--orange); }
.hero-qr { width: 34px; height: 34px; flex: none; }

.float-a { animation: floaty 6s ease-in-out infinite; }
.float-b { animation: floaty 5s ease-in-out .6s infinite; }
.float-c { animation: floaty 7s ease-in-out 1.1s infinite; }
.float-d { animation: floaty 5.5s ease-in-out 1.7s infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-9px); } }
.hero-card--main.float-a { animation-name: floaty-tilt; }
@keyframes floaty-tilt { 0%,100% { transform: rotate(-2deg) translateY(0); } 50% { transform: rotate(-2deg) translateY(-10px); } }

/* ==========================================================================
   Marquee
   ========================================================================== */
.marquee {
  background: var(--orange); color: var(--navy);
  border-top: 2px solid var(--navy); border-bottom: 2px solid var(--navy);
  overflow: hidden; transform: rotate(-1.1deg) scale(1.02); margin: -14px 0 8px;
  position: relative; z-index: 2;
}
.marquee-track { display: flex; width: max-content; animation: marquee 26s linear infinite; }
.marquee-group {
  display: flex; align-items: center; gap: 26px; padding: 13px 0 13px 26px;
  font-family: var(--font-display); font-weight: 800; font-size: 0.92rem; letter-spacing: .08em;
}
.marquee-sep {
  width: 15px; height: 15px; flex: none; color: var(--navy);
  animation: spark-pulse 3.6s ease-in-out infinite;
}
.marquee-group span:nth-of-type(4n) + .marquee-sep { color: rgba(3,32,71,.55); }
@keyframes spark-pulse {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(45deg) scale(.8); }
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ==========================================================================
   Pillars
   ========================================================================== */
.pillar-grid { display: grid; gap: 26px; }
.pillar-card {
  background: var(--white); border: 2px solid var(--navy); border-radius: var(--radius);
  padding: 28px 26px; position: relative;
  transition: transform .2s ease;
}
.pillar-card:hover { transform: translateY(-4px); }
.pillar-card::before {
  content: ""; position: absolute; top: -2px; left: -2px; right: -2px; height: 10px;
  border-radius: 12px 12px 0 0; border: 2px solid var(--navy); border-bottom: 0;
}
.pillar-card--orange::before { background: var(--orange); }
.pillar-card--blue::before { background: var(--blue); }
.pillar-card--green::before { background: var(--green); }

.pillar-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 18px; margin-top: 6px; }
.pillar-icon {
  width: 52px; height: 52px; border-radius: 13px; border: 2px solid var(--navy);
  display: flex; align-items: center; justify-content: center; color: var(--white);
}
.pillar-icon .icon { width: 25px; height: 25px; }
.pillar-card--orange .pillar-icon { background: var(--orange); color: var(--navy); }
.pillar-card--blue .pillar-icon { background: var(--blue); }
.pillar-card--green .pillar-icon { background: var(--green); }
.pillar-num {
  font-family: var(--font-display); font-weight: 800; font-size: 2.4rem;
  color: transparent; -webkit-text-stroke: 1.6px var(--line); line-height: 1;
}
.pillar-card h3 { font-size: 1.5rem; }
.pillar-tagline { font-weight: 700; color: var(--muted); font-size: 0.92rem; margin-top: 3px; }
.pillar-card--orange .pillar-tagline { color: #B56E00; }
.pillar-card--blue .pillar-tagline { color: var(--blue); }
.pillar-card--green .pillar-tagline { color: #0B7A54; }
.pillar-copy { margin-top: 13px; color: var(--muted); font-size: 0.95rem; }
.pillar-points { margin-top: 17px; display: grid; gap: 9px; }
.pillar-points li { display: flex; gap: 9px; align-items: flex-start; font-size: 0.9rem; font-weight: 500; }
.pillar-points .icon { width: 17px; height: 17px; margin-top: 3px; color: var(--green); }
.pillar-link {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 20px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; color: var(--navy);
  border-bottom: 2px solid var(--orange); padding-bottom: 2px;
}
.pillar-card--blue .pillar-link { border-color: var(--blue); }
.pillar-card--green .pillar-link { border-color: var(--green); }
.pillar-link:hover { gap: 11px; }

/* ==========================================================================
   Event cards
   ========================================================================== */
.event-grid { display: grid; gap: 26px; grid-template-columns: 1fr; }
.event-card {
  background: var(--white); border: 2px solid var(--navy); border-radius: var(--radius);
  overflow: hidden;
  transition: transform .18s ease;
}
.event-card:hover { transform: translateY(-4px); }
.event-card-link { display: flex; flex-direction: column; height: 100%; }

.event-art { height: 130px; position: relative; overflow: hidden; border-bottom: 2px solid var(--navy); }
.event-art-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.event-art-pattern { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .28; }
.event-art-glyph {
  position: absolute; right: 16px; bottom: -14px;
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--white); border: 2px solid var(--navy);
  display: flex; align-items: center; justify-content: center; color: var(--navy);
}
.event-art-glyph .icon { width: 26px; height: 26px; }
.event-art--dots-orange { background: var(--orange); color: var(--navy); }
.event-art--stripes-orange { background: var(--orange); color: var(--navy); }
.event-art--grid-blue { background: var(--blue); color: var(--white); }
.event-art--rings-green { background: var(--green); color: var(--navy); }

.event-card-body { padding: 18px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.event-card-top { display: flex; gap: 14px; align-items: flex-start; }
.date-badge {
  flex: none; width: 52px; text-align: center;
  border: 2px solid var(--navy); border-radius: 10px; overflow: hidden;
}
.date-badge-day { display: block; font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; padding: 5px 0 2px; color: var(--navy); }
.date-badge-month { display: block; background: var(--navy); color: var(--white); font-size: 0.68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 3px 0 4px; }
.event-card-head { min-width: 0; }
.event-card-title {
  font-size: 1.13rem; font-weight: 700; margin-top: 7px; line-height: 1.25;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.pill {
  display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 100px; border: 1.6px solid var(--navy);
}
.pill--orange { background: var(--orange); color: var(--navy); }
.pill--blue { background: var(--blue); color: var(--white); }
.pill--green { background: var(--green); color: var(--white); }
.pill--navy { background: var(--navy); color: var(--white); }

.event-card-meta { margin-top: 12px; display: grid; gap: 6px; }
.event-card-meta li { display: flex; align-items: center; gap: 8px; font-size: 0.86rem; color: var(--muted); font-weight: 500; }
.event-card-meta .icon { width: 15px; height: 15px; color: var(--navy); }

.event-card-foot {
  margin-top: auto; padding-top: 15px; display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.going { display: flex; align-items: center; gap: 9px; }
.going-count { font-size: 0.84rem; font-weight: 600; color: var(--muted); }
.event-price { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; color: var(--navy); }

/* avatars */
.avatar-stack { display: inline-flex; }
.avatar {
  width: 36px; height: 36px; border-radius: 50%; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700; font-family: var(--font-display);
  border: 2px solid var(--white); color: var(--white);
  margin-left: -9px;
}
.avatar:first-child { margin-left: 0; }
.avatar--0 { background: var(--navy); }
.avatar--1 { background: var(--orange); color: var(--navy); }
.avatar--2 { background: var(--blue); }
.avatar--3 { background: var(--green); }
.avatar--sm { width: 27px; height: 27px; font-size: 0.58rem; }
.avatar--lg { width: 52px; height: 52px; font-size: 0.95rem; margin-left: 0; border-color: var(--navy); }
.avatar--xl { width: 60px; height: 60px; font-size: 1.05rem; margin-left: 0; border: 2px solid var(--navy); }
.avatar--more { background: var(--cream); color: var(--navy); font-size: 0.7rem; }
.avatar-stack--lg .avatar { width: 40px; height: 40px; border-color: var(--navy); font-size: .8rem; }
.avatar-stack--sm .avatar { margin-left: -8px; }

/* ==========================================================================
   Steps — how it works
   ========================================================================== */
.steps { display: grid; gap: 26px; counter-reset: step; }
.step {
  background: var(--white); border: 2px solid var(--navy); border-radius: var(--radius);
  padding: 30px 26px; position: relative;
}
.step-num {
  position: absolute; top: 18px; right: 22px;
  font-family: var(--font-display); font-weight: 800; font-size: 3rem;
  color: transparent; -webkit-text-stroke: 1.7px var(--line); line-height: 1;
}
.step-icon {
  width: 54px; height: 54px; border-radius: 14px; border: 2px solid var(--navy);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.step-icon .icon { width: 26px; height: 26px; }
.step-icon--orange { background: var(--orange); color: var(--navy); }
.step-icon--blue { background: var(--blue); color: var(--white); }
.step-icon--green { background: var(--green); color: var(--white); }
.step h3 { font-size: 1.3rem; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 0.95rem; }

/* ==========================================================================
   Bands (split feature sections)
   ========================================================================== */
.band { padding: 84px 0; }
.band--navy { background: var(--navy); color: var(--white); }
.band--navy h2 { color: var(--white); }
.band--cream { background: var(--cream); }
.band-inner { display: grid; gap: 46px; align-items: center; }
.band-copy h2 { font-size: clamp(1.7rem, 4.2vw, 2.5rem); }
.band-copy > p { margin-top: 16px; font-size: 1.03rem; color: var(--muted); }
.band--navy .band-copy > p { color: rgba(255,255,255,.75); }
.band-copy .btn { margin-top: 28px; }

.check-list { margin-top: 22px; display: grid; gap: 11px; }
.check-list li { display: flex; gap: 11px; align-items: flex-start; font-weight: 500; font-size: 0.97rem; }
.check-list .icon { width: 20px; height: 20px; margin-top: 2px; color: var(--green); flex: none; }
.check-list--light li { color: rgba(255,255,255,.9); }

/* phone mock — M-Pesa checkout */
.band-visual { display: flex; justify-content: center; }
.phone-mock {
  width: min(300px, 86%); background: var(--navy-deep);
  border: 2px solid rgba(255,255,255,.25); border-radius: 30px; padding: 12px;
  transform: rotate(2deg);
}
.phone-screen {
  background: var(--white); border-radius: 20px; padding: 22px 18px;
  color: var(--ink); text-align: center;
}
.phone-kicker { font-size: 0.68rem; font-weight: 800; letter-spacing: .16em; color: var(--green); }
.phone-title { font-family: var(--font-display); font-weight: 700; margin-top: 4px; font-size: 0.95rem; color: var(--navy); }
.phone-amount { font-family: var(--font-display); font-weight: 800; font-size: 2.1rem; color: var(--navy); margin-top: 12px; }
.phone-sub { font-size: 0.8rem; color: var(--muted); margin-top: 2px; }
.phone-pin { display: flex; justify-content: center; gap: 8px; margin: 16px 0; }
.phone-pin i { width: 11px; height: 11px; border-radius: 50%; background: var(--navy); }
.phone-status {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--green); color: var(--white); font-weight: 700; font-size: 0.78rem;
  padding: 7px 14px; border-radius: 100px;
}
.phone-status .icon { width: 14px; height: 14px; }
.phone-ticket {
  margin-top: 16px; border: 2px dashed var(--navy); border-radius: 12px;
  padding: 12px; display: flex; align-items: center; gap: 12px; text-align: left;
}
.phone-qr { width: 44px; height: 44px; color: var(--navy); flex: none; }
.phone-ticket p { font-family: var(--font-display); font-weight: 700; font-size: 0.88rem; color: var(--navy); }
.phone-ticket span { font-size: 0.74rem; color: var(--muted); }

/* feed mock — community */
.feed-mock {
  width: min(400px, 100%); background: var(--white); border: 2px solid var(--navy);
  border-radius: var(--radius); padding: 14px;
  display: grid; gap: 10px; transform: rotate(-1.4deg);
}
.feed-row {
  display: flex; align-items: center; gap: 11px; padding: 10px 12px;
  border: 1.6px solid var(--line); border-radius: 11px; background: var(--white);
}
.feed-row .avatar { margin-left: 0; border-color: var(--navy); }
.feed-text { font-size: 0.84rem; color: var(--muted); line-height: 1.4; }
.feed-text strong, .feed-text b { color: var(--navy); }
.feed-time { margin-left: auto; font-size: 0.72rem; color: var(--muted); flex: none; }
.feed-stars { color: var(--orange); letter-spacing: 1px; }
.feed-row--card { display: block; padding: 0; overflow: hidden; border-color: var(--navy); border-width: 2px; }
.feed-card-art { height: 58px; overflow: hidden; }
.feed-card-art img { width: 100%; height: 100%; object-fit: cover; }
.feed-card-body { padding: 10px 12px; }
.feed-card-title { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--blue); }
.feed-card-sub { font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; color: var(--navy); margin-top: 2px; }

/* ==========================================================================
   Stats
   ========================================================================== */
.section--stats { padding: 60px 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  border: 2px solid var(--navy); border-radius: var(--radius); overflow: hidden;
  background: var(--white);
}
.stat {
  padding: 28px 20px; text-align: center;
  border-right: 2px solid var(--navy); border-bottom: 2px solid var(--navy);
}
.stat:nth-child(2n) { border-right: 0; }
.stat:nth-last-child(-n+2) { border-bottom: 0; }
.stat-num {
  display: block; font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.9rem, 5vw, 2.9rem); color: var(--navy); letter-spacing: -0.02em;
}
.stat-label { font-size: 0.84rem; font-weight: 600; color: var(--muted); }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-grid { display: grid; gap: 24px; }
.testimonial {
  background: var(--white); border: 2px solid var(--navy); border-radius: var(--radius);
  padding: 24px; display: flex; flex-direction: column; gap: 14px;
}
.testimonial-stars { display: flex; gap: 3px; color: var(--orange); }
.testimonial-stars .icon { width: 16px; height: 16px; }
.testimonial blockquote { font-size: 0.98rem; line-height: 1.6; color: var(--ink); flex: 1; }
.testimonial figcaption { display: flex; align-items: center; gap: 12px; font-size: 0.84rem; color: var(--muted); line-height: 1.35; }
.testimonial figcaption .avatar { margin-left: 0; border-color: var(--navy); }
.testimonial figcaption strong { color: var(--navy); }

/* ==========================================================================
   Fundraiser strip
   ========================================================================== */
.fundraiser-strip { background: var(--green); color: var(--white); padding: 54px 0; border-top: 2px solid var(--navy); border-bottom: 2px solid var(--navy); }
.fundraiser-inner { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.fundraiser-icon {
  width: 62px; height: 62px; flex: none; border-radius: 16px;
  background: var(--white); border: 2px solid var(--navy); color: var(--green);
  display: flex; align-items: center; justify-content: center;
}
.fundraiser-icon .icon { width: 30px; height: 30px; }
.fundraiser-copy { flex: 1; min-width: 260px; }
.fundraiser-copy h2 { color: var(--white); font-size: clamp(1.5rem, 3.6vw, 2.1rem); }
.fundraiser-copy p { margin-top: 8px; color: rgba(255,255,255,.88); max-width: 46rem; font-size: 0.98rem; }
.fundraiser-inner .btn { flex: none; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { display: grid; gap: 14px; }
.faq {
  background: var(--white); border: 2px solid var(--navy); border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  gap: 14px; padding: 18px 20px; font-family: var(--font-display); font-weight: 700;
  font-size: 1.02rem; color: var(--navy);
}
.faq summary::-webkit-details-marker { display: none; }
.faq-icon {
  width: 30px; height: 30px; flex: none; border: 2px solid var(--navy); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; transition: transform .2s, background .2s;
}
.faq-icon .icon { width: 15px; height: 15px; }
.faq[open] .faq-icon { transform: rotate(45deg); background: var(--orange); }
.faq p { padding: 0 20px 19px; color: var(--muted); font-size: 0.95rem; max-width: 60ch; }
.faq-more { margin-top: 26px; text-align: center; color: var(--muted); }
.faq-more a { color: var(--navy); font-weight: 700; border-bottom: 2px solid var(--orange); }

/* ==========================================================================
   CTA band + page hero
   ========================================================================== */
.cta-band { background: var(--navy); color: var(--white); padding: 90px 0; }
.cta-inner { text-align: center; }
.cta-inner h2 { color: var(--white); font-size: clamp(1.9rem, 5vw, 3.1rem); }
.cta-inner .btn { margin-top: 32px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }
.cta-actions .btn { margin-top: 0; }

.page-hero { padding: 70px 0 64px; }
.page-hero--navy { background: var(--navy); color: var(--white); }
.page-hero h1 { color: var(--white); font-size: clamp(2.1rem, 6vw, 3.5rem); max-width: 22ch; }
.page-hero-sub { margin-top: 16px; color: rgba(255,255,255,.75); max-width: 40rem; font-size: 1.05rem; }
.page-hero .hero-actions { margin-top: 28px; }

/* ==========================================================================
   Discover page
   ========================================================================== */
.discover-bar {
  margin-top: 30px; display: flex; gap: 10px; flex-wrap: wrap;
  background: var(--white); border: 2px solid var(--navy); border-radius: 14px;
  padding: 10px; max-width: 760px;
}
.discover-search {
  flex: 1; min-width: 200px; display: flex; align-items: center; gap: 10px;
  padding: 0 12px; color: var(--muted);
}
.discover-search input { flex: 1; border: 0; outline: 0; padding: 11px 0; background: transparent; color: var(--ink); }
.discover-select select {
  border: 0; outline: 0; padding: 11px 8px; background: transparent; font-weight: 600;
  color: var(--ink); border-left: 2px solid var(--line); cursor: pointer;
}
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.chip {
  font-weight: 600; font-size: 0.85rem; padding: 8px 16px; border-radius: 100px;
  border: 2px solid rgba(255,255,255,.4); color: var(--white); transition: .15s;
}
.chip:hover { border-color: var(--white); }
.chip.is-active { background: var(--white); color: var(--navy); border-color: var(--white); }
.chip--orange.is-active { background: var(--orange); border-color: var(--orange); }
.chip--blue.is-active { background: var(--blue); border-color: var(--blue); color: var(--white); }
.chip--green.is-active { background: var(--green); border-color: var(--green); color: var(--white); }
.chip--navy.is-active { background: var(--white); border-color: var(--white); }

.results-count { color: var(--muted); margin-bottom: 28px; font-size: 0.95rem; }
.results-count a { color: var(--blue); font-weight: 600; }
.results-count strong { color: var(--navy); }

.empty-state {
  text-align: center; padding: 70px 20px; border: 2px dashed var(--line);
  border-radius: var(--radius); max-width: 560px; margin: 0 auto;
}
.empty-icon {
  width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 16px;
  background: var(--cream); border: 2px solid var(--navy); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.empty-icon .icon { width: 28px; height: 28px; }
.empty-state h2 { font-size: 1.5rem; }
.empty-state p { color: var(--muted); margin-top: 10px; }
.empty-actions { display: flex; gap: 12px; justify-content: center; margin-top: 24px; flex-wrap: wrap; }

/* ==========================================================================
   Event detail
   ========================================================================== */
.event-hero { border-bottom: 2px solid var(--navy); }
.event-hero .container { padding-top: 22px; padding-bottom: 0; }
.event-hero .event-art { height: clamp(160px, 28vw, 260px); border: 2px solid var(--navy); border-bottom: 0; border-radius: var(--radius) var(--radius) 0 0; }
.event-hero .event-art-glyph { bottom: 16px; width: 64px; height: 64px; }
.event-hero--orange { background: var(--orange); }
.event-hero--blue { background: var(--blue); }
.event-hero--green { background: var(--green); }
.event-hero--navy { background: var(--navy); }
.event-hero .event-art--dots-orange,
.event-hero .event-art--stripes-orange { background: var(--orange); }
.event-hero .event-art { background: var(--white); }
.event-hero--orange .event-art, .event-hero--blue .event-art, .event-hero--green .event-art, .event-hero--navy .event-art {
  background: var(--white); color: var(--navy);
}
.event-hero .event-art-pattern { opacity: .8; }
.event-hero--orange .event-art-pattern { color: var(--orange); }
.event-hero--blue .event-art-pattern { color: var(--blue); }
.event-hero--green .event-art-pattern { color: var(--green); }
.event-hero--navy .event-art-pattern { color: var(--navy); }

.crumbs {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 0.85rem; font-weight: 600; color: var(--navy);
  background: var(--white); display: inline-flex; padding: 8px 14px;
  border: 2px solid var(--navy); border-radius: 100px; margin-bottom: 18px;
}
.crumbs a { color: var(--muted); } .crumbs a:hover { color: var(--navy); }
.crumbs .icon { width: 13px; height: 13px; color: var(--muted); }

.event-layout { display: grid; gap: 40px; align-items: start; }
.event-head h1 { font-size: clamp(1.7rem, 4.5vw, 2.7rem); margin-top: 12px; }
.event-meta-row { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 16px; }
.event-meta-row li { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.93rem; color: var(--ink); }
.event-meta-row .icon { width: 17px; height: 17px; color: var(--orange); }

.event-section { margin-top: 40px; }
.event-section h2 { font-size: 1.35rem; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.event-section > p { color: var(--muted); margin-bottom: 13px; font-size: 0.98rem; }
.going-inline { font-size: 0.85rem; font-family: var(--font-body); font-weight: 700; color: var(--white); background: var(--blue); padding: 3px 12px; border-radius: 100px; }

.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.tag {
  font-size: 0.8rem; font-weight: 600; color: var(--navy);
  border: 1.6px solid var(--navy); border-radius: 100px; padding: 4px 12px;
}
.tag:hover { background: var(--cream); }

.raise-card {
  margin-top: 26px; background: var(--white); border: 2px solid var(--navy);
  border-radius: var(--radius); padding: 20px 22px;
}
.raise-nums { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; font-size: 0.95rem; color: var(--muted); }
.raise-nums strong { color: var(--navy); font-family: var(--font-display); }
.raise-pct { margin-left: auto; font-family: var(--font-display); font-weight: 800; color: var(--green); font-size: 1.3rem; }
.raise-bar { height: 14px; border: 2px solid var(--navy); border-radius: 100px; margin: 12px 0; overflow: hidden; background: var(--white); }
.raise-bar span { display: block; height: 100%; background: var(--green); border-radius: 100px 0 0 100px; }
.raise-card p { font-size: 0.88rem; color: var(--muted); }

.attendees-row { display: flex; gap: 16px; flex-wrap: wrap; }
.attendee { display: grid; justify-items: center; gap: 7px; font-size: 0.78rem; font-weight: 600; color: var(--muted); }
.attendees-note { font-size: 0.82rem; color: var(--muted); margin-top: 16px; }

.organizer-card {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  background: var(--white); border: 2px solid var(--navy); border-radius: var(--radius);
  padding: 20px;
}
.organizer-info { flex: 1; min-width: 180px; }
.organizer-name { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--navy); display: flex; align-items: center; gap: 7px; }
.verified { color: var(--blue); display: inline-flex; } .verified .icon { width: 18px; height: 18px; }
.organizer-meta { font-size: 0.84rem; color: var(--muted); margin-top: 3px; }
.organizer-rating { display: flex; align-items: center; gap: 5px; margin-top: 7px; color: var(--orange); font-size: 0.8rem; }
.organizer-rating .icon { width: 14px; height: 14px; }
.organizer-rating span { color: var(--muted); margin-left: 4px; }
.btn-follow.is-following { background: var(--navy); color: var(--white); }

.share-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* buy card */
.event-side { position: sticky; top: calc(var(--header-h) + 20px); }
.buy-card {
  background: var(--white); border: 2px solid var(--navy); border-radius: var(--radius);
  padding: 22px;
}
.buy-card-head { display: flex; justify-content: space-between; align-items: baseline; }
.buy-card-label { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: var(--navy); }
.buy-card-capacity { font-size: 0.8rem; font-weight: 700; color: var(--blue); }
.capacity-bar { height: 10px; border: 1.6px solid var(--navy); border-radius: 100px; margin: 10px 0 18px; overflow: hidden; }
.capacity-bar span { display: block; height: 100%; background: var(--orange); }

.tier-list { display: grid; gap: 11px; margin-bottom: 18px; }
.tier {
  display: block; position: relative; border: 2px solid var(--line); border-radius: var(--radius-sm);
  padding: 13px 15px; cursor: pointer; transition: border-color .15s, background .15s;
}
.tier:hover { border-color: var(--navy); }
.tier input { position: absolute; opacity: 0; pointer-events: none; }
.tier:has(input:checked) { border-color: var(--navy); background: #FFF3E0; }
.tier--sold { opacity: .55; cursor: not-allowed; }
.tier-head { display: flex; justify-content: space-between; gap: 10px; align-items: baseline; }
.tier-head strong { font-family: var(--font-display); font-size: 0.95rem; color: var(--navy); }
.tier-price { font-family: var(--font-display); font-weight: 800; color: var(--navy); white-space: nowrap; }
.tier-perks { display: flex; flex-wrap: wrap; gap: 4px 14px; margin-top: 7px; }
.tier-perks span { display: inline-flex; align-items: center; gap: 5px; font-size: 0.78rem; color: var(--muted); }
.tier-perks .icon { width: 12px; height: 12px; color: var(--green); }
.tier-flag {
  position: absolute; top: -9px; right: 12px; background: var(--navy); color: var(--white);
  font-size: 0.65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 100px;
}
.buy-note { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 13px; font-size: 0.78rem; color: var(--muted); }
.buy-note .icon { width: 14px; height: 14px; color: var(--green); }

/* ==========================================================================
   Checkout modal
   ========================================================================== */
.modal { position: fixed; inset: 0; z-index: 400; display: flex; align-items: center; justify-content: center; padding: 18px; }
.modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(3, 21, 48, 0.72); }
.modal-card {
  position: relative; width: min(430px, 100%); background: var(--white);
  border: 2px solid var(--navy); border-radius: var(--radius);
  padding: 28px 24px;
  max-height: calc(100vh - 40px); overflow-y: auto;
  animation: modal-in .25s ease;
}
@keyframes modal-in { from { opacity: 0; transform: translateY(16px) scale(.97); } }
.modal-close {
  position: absolute; top: 14px; right: 14px; width: 36px; height: 36px;
  border: 2px solid var(--navy); border-radius: 9px; display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { background: var(--cream); }
.modal-step h3 { font-size: 1.35rem; margin-bottom: 4px; padding-right: 40px; }
.modal-summary {
  display: flex; justify-content: space-between; margin-top: 16px;
  background: var(--cream); border: 1.6px solid var(--navy); border-radius: 10px;
  padding: 11px 14px; font-weight: 700; font-family: var(--font-display); font-size: 0.92rem; color: var(--navy);
}
.qty-row { display: flex; justify-content: space-between; align-items: center; margin: 18px 0; font-weight: 600; font-size: 0.95rem; }
.qty-ctrl { display: flex; align-items: center; gap: 14px; }
.qty-ctrl button {
  width: 34px; height: 34px; border: 2px solid var(--navy); border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
}
.qty-ctrl button:hover { background: var(--cream); }
.qty-ctrl .icon { width: 15px; height: 15px; }
#qtyVal { font-family: var(--font-display); font-weight: 800; min-width: 20px; text-align: center; }
.field-label { display: block; font-weight: 700; font-size: 0.85rem; color: var(--navy); margin-bottom: 7px; }
.phone-input {
  display: flex; align-items: center; border: 2px solid var(--navy); border-radius: 11px;
  overflow: hidden; background: var(--white);
}
.phone-input span { padding: 12px 0 12px 14px; font-weight: 700; color: var(--muted); }
.phone-input input { flex: 1; border: 0; outline: 0; padding: 12px 14px 12px 8px; font-weight: 600; letter-spacing: .04em; }
.field-hint { font-size: 0.78rem; color: var(--muted); margin: 8px 0 16px; }
.field-hint--error { color: #D64545; font-weight: 600; }
.modal-note { text-align: center; font-size: 0.75rem; color: var(--muted); margin-top: 12px; }
.modal-wait-sub { color: var(--muted); margin-top: 8px; font-size: 0.95rem; }

.modal-step--done, #stepWait { text-align: center; }
.stk-spinner { display: flex; justify-content: center; gap: 8px; margin: 26px 0 20px; }
.stk-spinner span {
  width: 13px; height: 13px; border-radius: 50%; background: var(--green);
  animation: bounce .9s ease-in-out infinite;
}
.stk-spinner span:nth-child(2) { animation-delay: .15s; }
.stk-spinner span:nth-child(3) { animation-delay: .3s; }
@keyframes bounce { 0%,100% { transform: translateY(0); opacity: .5; } 50% { transform: translateY(-9px); opacity: 1; } }

.done-badge {
  width: 64px; height: 64px; margin: 6px auto 16px; border-radius: 50%;
  background: var(--green); color: var(--white); border: 2px solid var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.done-badge .icon { width: 30px; height: 30px; }
.done-ticket {
  display: flex; align-items: center; gap: 14px; text-align: left;
  border: 2px dashed var(--navy); border-radius: 12px; padding: 14px; margin: 20px 0;
}
.done-qr { width: 56px; height: 56px; color: var(--navy); flex: none; }
.done-code { font-family: var(--font-display); font-weight: 800; color: var(--navy); }
.done-sub { font-size: 0.78rem; color: var(--muted); }

/* ==========================================================================
   Organizers — dashboard mock
   ========================================================================== */
.dash {
  display: grid; grid-template-columns: 1fr; overflow: hidden;
  border: 2px solid var(--navy); border-radius: var(--radius);
  background: var(--white);
}
.dash-side { background: var(--navy); color: var(--white); padding: 22px 16px; display: none; }
.dash-logo { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; display: block; margin-bottom: 24px; }
.dash-logo span { color: var(--orange); }
.dash-nav-item {
  display: flex; align-items: center; gap: 10px; font-size: 0.88rem; font-weight: 600;
  padding: 10px 12px; border-radius: 9px; color: rgba(255,255,255,.7); margin-bottom: 4px;
}
.dash-nav-item .icon { width: 17px; height: 17px; }
.dash-nav-item.is-on { background: rgba(255,255,255,.12); color: var(--white); }
.dash-main { padding: 20px; background: var(--cream); }
.dash-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.dash-title { font-family: var(--font-display); font-weight: 700; color: var(--navy); }
.dash-live {
  display: inline-flex; align-items: center; gap: 7px; font-size: 0.7rem; font-weight: 800;
  letter-spacing: .12em; color: var(--green);
}
.dash-live i { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
.dash-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.dash-tile { background: var(--white); border: 1.6px solid var(--navy); border-radius: 11px; padding: 13px 14px; }
.dash-tile-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); display: block; }
.dash-tile-num { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; color: var(--navy); display: block; margin-top: 3px; }
.dash-tile-delta { font-size: 0.7rem; color: var(--muted); font-weight: 600; }
.dash-tile-delta.up { color: var(--green); }
.dash-chart { background: var(--white); border: 1.6px solid var(--navy); border-radius: 11px; padding: 15px; margin-top: 12px; }
.dash-chart-title { font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 12px; }
.dash-bars { display: flex; align-items: flex-end; gap: 7px; height: 110px; }
.dash-bars span { flex: 1; background: var(--blue); border-radius: 5px 5px 0 0; min-height: 8px; }
.dash-bars span.is-hot { background: var(--orange); }
.dash-feed { margin-top: 12px; display: grid; gap: 8px; }
.dash-feed-row {
  display: flex; align-items: center; gap: 10px; font-size: 0.8rem; color: var(--ink);
  background: var(--white); border: 1.6px solid var(--line); border-radius: 9px; padding: 9px 12px;
}
.dash-feed-row em { margin-left: auto; font-style: normal; color: var(--muted); font-size: 0.72rem; }
.dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.dot--green { background: var(--green); } .dot--blue { background: var(--blue); } .dot--orange { background: var(--orange); }

/* photo figures */
.band-figure {
  margin: 0 0 40px; border: 2px solid var(--navy); border-radius: var(--radius);
  overflow: hidden; background: var(--white);
}
.band-figure img { width: 100%; height: clamp(220px, 38vw, 420px); object-fit: cover; display: block; }
.band-figure figcaption {
  padding: 12px 18px; font-size: .84rem; font-weight: 600; color: var(--muted);
  border-top: 2px solid var(--navy);
}

/* tool grid */
.tool-grid { display: grid; gap: 20px; }
.tool-card {
  background: var(--white); border: 2px solid var(--navy); border-radius: var(--radius);
  padding: 24px;
}
.band--navy .tool-card { color: var(--ink); }
.tool-card h3 { font-size: 1.08rem; margin: 15px 0 8px; }
.tool-card p { font-size: 0.89rem; color: var(--muted); }
.tool-icon {
  width: 46px; height: 46px; border-radius: 12px; border: 2px solid var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
}
.tool-icon .icon { width: 22px; height: 22px; }
.tool-icon--orange { background: var(--orange); color: var(--navy); }
.tool-icon--blue { background: var(--blue); color: var(--white); }
.tool-icon--green { background: var(--green); color: var(--white); }

/* pricing */
.price-grid { display: grid; gap: 26px; }
.price-card {
  background: var(--white); border: 2px solid var(--navy); border-radius: var(--radius);
  padding: 30px 26px; position: relative;
  display: flex; flex-direction: column;
}
.price-card--hot { border-width: 2.5px; background: #FFF9F0; }
.price-flag {
  position: absolute; top: -14px; left: 24px; background: var(--orange); color: var(--navy);
  font-family: var(--font-display); font-weight: 800; font-size: 0.72rem; letter-spacing: .1em;
  text-transform: uppercase; padding: 6px 14px; border-radius: 100px; border: 2px solid var(--navy);
}
.price-name { font-family: var(--font-display); font-weight: 700; color: var(--muted); font-size: 0.95rem; }
.price-num { font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; color: var(--navy); margin-top: 6px; letter-spacing: -0.02em; }
.price-num span { font-size: 1rem; font-weight: 700; color: var(--muted); }
.price-sub { font-size: 0.86rem; color: var(--muted); margin-top: 4px; }
.price-card .check-list { flex: 1; margin-bottom: 24px; }

/* ==========================================================================
   About
   ========================================================================== */
.about-grid { display: grid; gap: 44px; }
.about-story h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); margin-bottom: 18px; }
.about-story p { color: var(--muted); margin-bottom: 14px; font-size: 1rem; }
.about-story strong { color: var(--navy); }
.about-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; align-content: start; }
.fact-photo { grid-column: 1 / -1; border: 2px solid var(--navy); border-radius: var(--radius); overflow: hidden; }
.fact-photo img { width: 100%; height: 190px; object-fit: cover; display: block; }
.fact {
  border: 2px solid var(--navy); border-radius: var(--radius); padding: 22px 18px;
  background: var(--white);
}
.fact-num { display: block; font-family: var(--font-display); font-weight: 800; font-size: 1.9rem; color: var(--navy); }
.fact span:last-child { font-size: 0.83rem; color: var(--muted); font-weight: 600; }
.values-grid { display: grid; gap: 20px; }
.value-card { background: var(--white); border: 2px solid var(--navy); border-radius: var(--radius); padding: 24px; }
.value-card h3 { font-size: 1.08rem; margin: 15px 0 8px; }
.value-card p { font-size: 0.9rem; color: var(--muted); }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid { display: grid; gap: 40px; }
.contact-block { margin-bottom: 26px; }
.contact-block h2 { font-size: 1.15rem; margin: 14px 0 6px; }
.contact-block p { color: var(--muted); font-size: 0.95rem; }
.contact-hours {
  border: 2px dashed var(--navy); border-radius: var(--radius-sm); padding: 16px 18px;
  font-size: 0.9rem; color: var(--muted); background: var(--cream);
}
.contact-hours strong { color: var(--navy); }
.contact-photo {
  border: 2px solid var(--navy); border-radius: var(--radius); overflow: hidden; margin-bottom: 26px;
}
.contact-photo img { width: 100%; height: 200px; object-fit: cover; display: block; }
.contact-photo figcaption {
  padding: 10px 16px; font-size: .8rem; font-weight: 600; color: var(--muted);
  border-top: 2px solid var(--navy);
}
.contact-form {
  background: var(--white); border: 2px solid var(--navy); border-radius: var(--radius);
  padding: 28px 24px;
}
.field-row { display: grid; gap: 18px; }
.field { margin-bottom: 18px; }
.field input, .field select, .field textarea {
  width: 100%; border: 2px solid var(--navy); border-radius: 11px; padding: 12px 14px;
  background: var(--white); outline: none; transition: border-color .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--orange); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { text-align: center; font-size: 0.8rem; color: var(--muted); margin-top: 12px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy); color: var(--white); }
.footer-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 20px 36px;
  flex-wrap: wrap; padding: 52px 0; border-bottom: 1.5px solid rgba(255,255,255,.14);
}
.footer-cta-copy { min-width: 0; }
.footer-cta-title { color: var(--white); font-size: clamp(1.6rem, 4vw, 2.4rem); max-width: 24ch; }
.footer-cta .eyebrow { margin-bottom: 10px; }
.footer-main {
  display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 2fr);
  gap: 44px 64px; padding: 52px 0;
}
.footer-brand { min-width: 0; }
.footer-logo {
  height: 40px; width: auto; padding: 8px 14px; box-sizing: content-box;
  background: var(--white); border-radius: 11px; display: block;
}
.footer-blurb {
  color: rgba(255,255,255,.68); font-size: 0.92rem; margin-top: 18px;
  max-width: 36ch; line-height: 1.65;
}
.newsletter-form { margin-top: 24px; max-width: 360px; }
.newsletter-label {
  display: block; font-family: var(--font-display); font-weight: 700;
  font-size: 0.9rem; margin-bottom: 10px;
}
.newsletter-fields { display: flex; gap: 9px; }
.newsletter-fields input {
  flex: 1; min-width: 0; border: 2px solid rgba(255,255,255,.4); background: rgba(255,255,255,.08);
  color: var(--white); border-radius: 10px; padding: 10px 13px; outline: none;
}
.newsletter-fields input::placeholder { color: rgba(255,255,255,.45); }
.newsletter-fields input:focus { border-color: var(--orange); }
.footer-links {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px; align-content: start;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.footer-col-title {
  font-family: var(--font-display); font-weight: 700; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: .12em; color: var(--orange); margin-bottom: 4px;
}
.footer-col a {
  color: rgba(255,255,255,.72); font-size: 0.92rem; width: fit-content;
  padding: 1px 0; line-height: 1.4;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  gap: 14px 28px; flex-wrap: wrap;
  padding: 22px 0 28px; border-top: 1.5px solid rgba(255,255,255,.14);
  font-size: 0.82rem; color: rgba(255,255,255,.55);
}
.pay-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.pay-label { font-size: .8rem; color: rgba(255,255,255,.55); font-weight: 600; }
.pay-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.pay-badge {
  height: 30px; display: inline-flex; align-items: center; padding: 0 10px;
  background: var(--white); border-radius: 7px; border: 1px solid rgba(255,255,255,.28);
}
.pay-badge svg { height: 15px; width: auto; display: block; }

/* ==========================================================================
   404
   ========================================================================== */
.notfound { padding: 110px 0; }
.notfound-inner { text-align: center; }
.notfound-code {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(4.5rem, 14vw, 8rem);
  color: transparent; -webkit-text-stroke: 2.5px var(--navy); line-height: 1;
}
.notfound h1 { font-size: clamp(1.6rem, 4.5vw, 2.4rem); margin-top: 14px; }
.notfound p { color: var(--muted); margin-top: 12px; }

/* ==========================================================================
   Reveal animations
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease var(--d, 0s), transform .6s ease var(--d, 0s); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001s !important; transition-duration: .001s !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (min-width: 560px) {
  .event-grid { grid-template-columns: repeat(2, 1fr); }
  .field-row { grid-template-columns: 1fr 1fr; }
  .field-row .field { margin-bottom: 0; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .stat { border-bottom: 0; }
  .stat:nth-child(2n) { border-right: 2px solid var(--navy); }
  .stat:last-child { border-right: 0; }
}

@media (min-width: 720px) {
  .pillar-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .tool-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .dash { grid-template-columns: 190px 1fr; }
  .dash-side { display: block; }
  .contact-grid { grid-template-columns: 1fr 1.4fr; }
  .about-grid { grid-template-columns: 1.2fr 1fr; }
}

@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1.05fr .95fr; align-items: center; padding: 96px 20px 110px; }
  .band-inner { grid-template-columns: 1fr 1fr; }
  .band-inner--flip .band-visual { order: -1; }
  .band-inner--flip { direction: rtl; }
  .band-inner--flip > * { direction: ltr; }
  .event-grid { grid-template-columns: repeat(3, 1fr); }
  .event-layout { grid-template-columns: 1fr 370px; }
  .tool-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonial-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .fundraiser-inner { flex-wrap: nowrap; }
}

@media (max-width: 899px) {
  .event-side { position: static; }
  .footer-main { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0; z-index: 95;
    background: var(--white); border-bottom: 2px solid var(--navy);
    flex-direction: column; align-items: stretch; padding: 14px 20px 22px; gap: 4px;
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .22s ease, transform .22s ease, visibility 0s .22s;
  }
  body.nav-open .site-nav {
    opacity: 1; visibility: visible; transform: translateY(0);
    transition: opacity .22s ease, transform .22s ease;
  }
  body.nav-open::after {
    content: ""; position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
    background: rgba(3,32,71,.45); z-index: 90;
  }
  .nav-link { padding: 13px 14px; font-size: 1.05rem; border-radius: 10px; }
  .nav-link.is-active::after { display: none; }
  .nav-link.is-active { background: var(--cream); }
  .nav-cta { margin: 10px 0 0; justify-content: center; }
  body.nav-open { overflow: hidden; }
}

@media (max-width: 560px) {
  .brand-logo { max-width: 62vw; }
  .hero-stage { min-height: 340px; margin-top: 8px; }
  .hero-chip--sales { display: none; }
  .section { padding: 58px 0; }
  .band { padding: 62px 0; }
  .marquee-group { font-size: 0.8rem; gap: 18px; }
  .buy-card { padding: 18px 16px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-cta { padding: 44px 0; }
}
