/* =============================================================
   Community Hub — style.css
   One stylesheet, no build step. Lifted from Trafford Events (the
   club noticeboard world) and recoloured to Net Hub red. Warm
   paper, ink rules, ticket-stub calls to action.
   ============================================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:        #E73746;   /* Net Hub red: fills on paper */
  --red-bright: #FF6B77;   /* red on the dark hero and ink */
  --red-deep:   #B8202E;   /* text and icons on white (6:1) */
  --red-tint:   #FDECEE;
  --ink:          #16120F;
  --ink-2:        #2C2622;
  --muted:        #665E56;
  --paper:        #FAF6F0;
  --paper-2:      #F2ECE3;
  --white:        #FFFFFF;
  --line:         #E4DCD1;
  --line-strong:  #CFC4B6;
  --nav-h:        64px;
  --display: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  --body:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }
html, body { overflow-x: hidden; }
body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; height: auto; }
svg { display: block; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; left: -9999px; top: 10px; z-index: 300;
  background: var(--white); color: var(--ink); border: 1px solid var(--line);
  border-radius: 8px; padding: 10px 16px; font-size: 14px; font-weight: 600;
}
.skip-link:focus { left: 12px; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 28px; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ── Type ── */
h1, h2, h3, .display { font-family: var(--display); font-weight: 800; letter-spacing: -0.025em; line-height: 1.02; text-wrap: balance; }
h2 { font-size: clamp(30px, 4.2vw, 46px); }
h3 { font-size: clamp(20px, 2.3vw, 25px); font-weight: 700; letter-spacing: -0.015em; line-height: 1.15; }
.lead { font-size: clamp(16px, 1.6vw, 18.5px); line-height: 1.7; color: var(--ink-2); max-width: 62ch; }
p + p { margin-top: 14px; }
.accent { color: var(--red); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 24px; border-radius: 10px;
  font-family: var(--body); font-weight: 600; font-size: 15px; line-height: 1;
  border: 1.5px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .2s, border-color .2s, color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--red); color: var(--white); box-shadow: 0 6px 18px -6px rgba(184,32,46,.55); }
.btn-primary:hover { background: var(--red-bright); box-shadow: 0 12px 24px -8px rgba(184,32,46,.6); }
.btn-ink { background: var(--ink); color: var(--white); }
.btn-ink:hover { background: var(--ink-2); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-paper { background: var(--white); color: var(--ink); border-color: var(--line-strong); }
.btn-paper:hover { border-color: var(--ink); }
.btn svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.text-link { color: var(--red-deep); font-weight: 600; text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
.text-link:hover { color: var(--ink); }

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(22,18,15,.72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: var(--white);
}
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 28px; height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { font-family: var(--display); font-weight: 800; font-size: 21px; letter-spacing: -0.02em; display: inline-flex; align-items: baseline; gap: 6px; }
.brand em { font-style: normal; color: var(--red-bright); }
.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav-links a { white-space: nowrap; font-size: 14.5px; font-weight: 500; color: rgba(255,255,255,.82); transition: color .15s; padding: 6px 0; }
.nav-links a:hover { color: var(--white); }
.nav-links a[aria-current="page"] { color: var(--red-bright); font-weight: 600; }
.nav-mobile-only { display: none; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-actions .btn { padding: 10px 18px; font-size: 14px; border-radius: 8px; }
.nav-actions .btn-outline { border-color: rgba(255,255,255,.28); }
.nav-toggle { display: none; background: none; border: 0; color: var(--white); width: 44px; height: 44px; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }

/* ── Ticket stubs (the hero CTAs) ── */
.tickets { display: flex; flex-wrap: wrap; gap: 16px; }
.ticket {
  --notch: 11px;
  position: relative; display: grid; grid-template-columns: 96px 1fr; align-items: stretch;
  min-width: 300px; background: var(--paper); color: var(--ink);
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 18px 40px -14px rgba(0,0,0,.6);
  -webkit-mask:
    radial-gradient(circle at 96px 0, transparent var(--notch), #000 calc(var(--notch) + .5px)),
    radial-gradient(circle at 96px 100%, transparent var(--notch), #000 calc(var(--notch) + .5px));
  -webkit-mask-composite: source-in;
  mask:
    radial-gradient(circle at 96px 0, transparent var(--notch), #000 calc(var(--notch) + .5px)),
    radial-gradient(circle at 96px 100%, transparent var(--notch), #000 calc(var(--notch) + .5px));
  mask-composite: intersect;
  transition: transform .5s var(--ease-out);
}
.ticket:hover { transform: translateY(-3px) rotate(-.4deg); }
.ticket-stub {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  padding: 16px 8px; background: var(--red); color: var(--white);
  border-right: 2px dashed rgba(255,255,255,.5);
  font-family: var(--display); font-weight: 800; letter-spacing: -0.03em; line-height: .95;
}
.ticket-stub strong { font-size: 30px; }
.ticket-stub small { font-family: var(--body); font-weight: 600; font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; }
.ticket--paid .ticket-stub { background: var(--ink); color: var(--red-bright); border-right-color: rgba(255,255,255,.35); }
.ticket-body { padding: 16px 44px 16px 20px; display: flex; flex-direction: column; justify-content: center; gap: 3px; }
.ticket-body strong { font-family: var(--display); font-weight: 700; font-size: 19px; letter-spacing: -0.015em; line-height: 1.1; }
.ticket-body span { font-size: 13.5px; color: var(--muted); }
.ticket-body svg { position: absolute; right: 16px; top: 50%; width: 18px; height: 18px; margin-top: -9px; stroke: var(--ink); fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; opacity: .55; transition: opacity .2s, transform .35s var(--ease-out); }
.ticket:hover .ticket-body svg { opacity: 1; transform: translateX(3px); }

/* ── Home hero ── */
.hero {
  position: relative; min-height: 78vh; min-height: 78svh;
  display: flex; align-items: flex-start;
  color: var(--white); overflow: hidden; isolation: isolate;
  padding: calc(var(--nav-h) + 96px) 0 72px;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(22,18,15,.55) 0%, rgba(22,18,15,.15) 35%, rgba(22,18,15,.78) 100%),
    linear-gradient(90deg, rgba(22,18,15,.72) 0%, rgba(22,18,15,.25) 60%, rgba(22,18,15,0) 100%);
}
.hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 28px; width: 100%; display: flex; flex-direction: column; min-height: calc(78vh - var(--nav-h) - 168px); min-height: calc(78svh - var(--nav-h) - 168px); }
.hero h1 { font-size: clamp(38px, 5.2vw, 66px); max-width: none; }
.hero h1 em { font-style: normal; color: var(--red-bright); }
.hero .lead { color: rgba(255,255,255,.86); margin-top: 32px; max-width: 46ch; }
.hero-foot { margin-top: auto; padding-top: 56px; display: flex; justify-content: space-between; align-items: flex-end; gap: 24px 40px; flex-wrap: wrap; }
.hero-foot .tickets { justify-content: flex-start; }
.hero-foot .hero-scroll { padding-bottom: 14px; }
.hero-scroll { display: inline-flex; align-items: center; gap: 10px; color: rgba(255,255,255,.85); font-size: 14px; font-weight: 500; }
.hero-scroll svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; animation: nudge 2.4s var(--ease-out) 1s 3; }
@keyframes nudge { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(4px); } }
.photo-note { font-size: 11.5px; color: rgba(255,255,255,.5); }

/* entrance: one authored moment, hero only */
.hero h1, .hero .lead, .hero-foot { animation: rise .9s var(--ease-out) both; }
.hero .lead { animation-delay: .1s; }
.hero-foot { animation-delay: .2s; }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* ── Sections ── */
.section { padding: 104px 0; }
.section-white { background: var(--white); }
.section-tight { padding: 72px 0; }
.section-head { max-width: 62ch; margin-bottom: 44px; }
.section-head p { margin-top: 16px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .lead { margin-left: auto; margin-right: auto; }
/* Short one-line sub-text: never break a simple subtitle onto a second line
   just because of the 62ch measure — it reads as a mistake. Only for leads
   short enough to fit on one line at desktop widths. */
.section-head.one-line { max-width: none; }
.section-head.one-line .lead { max-width: none; text-wrap: pretty; }

/* ── Why (image grid + copy) ── */
.why { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }
.photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.photo-grid figure { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 4 / 3; background: var(--paper-2); box-shadow: 0 14px 30px -18px rgba(22,18,15,.45); }
.photo-grid figure:nth-child(2) { transform: translateY(28px); }
.photo-grid figure:nth-child(3) { transform: translateY(-10px); }
.photo-grid figure:nth-child(4) { transform: translateY(18px); }
.photo-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.photo-grid figure:hover img { transform: scale(1.04); }
.photo-grid figcaption {
  position: absolute; left: 12px; bottom: 12px;
  background: rgba(22,18,15,.82); color: var(--white);
  font-size: 12px; font-weight: 600; letter-spacing: .01em;
  padding: 6px 10px; border-radius: 6px; backdrop-filter: blur(4px);
}
.why-copy h2 { margin-bottom: 20px; }
.why-copy h3 { margin: 36px 0 12px; }
.why-copy p { color: var(--ink-2); line-height: 1.75; }

/* ── Events embed (Net Hub gateway) ── */
.events-embed { background: var(--white); width: 100%; }
/* Start short: the gateway reports documentElement.scrollHeight, which can never
   be less than the frame's own height, so a tall starting frame would lock in
   white space below a short list. The height message grows it to fit. */
.events-embed iframe { display: block; width: 100%; height: 320px; border: 0; }
.events-note { margin-top: 18px; color: var(--ink-2); }
#events { padding: 56px 0 72px; }
#events .section-head { margin-bottom: 24px; }

/* ── Page hero (about, organisers, contact) ── */
.page-hero {
  position: relative; background: var(--ink); color: var(--white); overflow: hidden; isolation: isolate;
  padding: calc(var(--nav-h) + 88px) 0 80px;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(60% 70% at 85% 0%, rgba(231,55,70,.28), transparent 70%);
}
.page-hero h1 { font-size: clamp(34px, 4.8vw, 60px); max-width: none; }
.page-hero h1 br { display: none; }
@media (min-width: 900px) { .page-hero h1 br { display: inline; } }
.page-hero h1 em { font-style: normal; color: var(--red-bright); }
.page-hero .lead { color: rgba(255,255,255,.8); margin-top: 22px; }
.page-hero .actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.page-hero .tickets { margin-top: 36px; }
.page-hero--photo { padding-bottom: 96px; }
.page-hero--photo .hero-bg { opacity: .55; }
.page-hero--photo::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(22,18,15,.85), rgba(22,18,15,.35)); }
.page-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: end; }
.hero-rule {
  font-family: var(--display); font-weight: 800; letter-spacing: -0.03em; line-height: 1;
  border-top: 1px solid rgba(255,255,255,.18); padding-top: 18px;
}
.hero-rule .big { font-size: clamp(64px, 9vw, 120px); color: var(--red-bright); display: block; }
.hero-rule .small { font-size: 15px; font-family: var(--body); font-weight: 500; letter-spacing: 0; color: rgba(255,255,255,.7); display: block; margin-top: 8px; }

/* ── Trust bar ── */
.trust {
  background: var(--white); border-bottom: 1px solid var(--line);
  padding: 18px 28px; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px 26px;
  font-size: 14px; font-weight: 500; color: var(--ink-2);
}
.trust span { display: inline-flex; align-items: center; gap: 9px; }
.trust svg { width: 18px; height: 18px; stroke: var(--red-deep); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ── Plan ── */
.plan {
  max-width: 980px; margin: 0 auto; background: var(--white); border: 2px solid var(--ink); border-radius: 18px;
  display: grid; grid-template-columns: 1fr 1.15fr; position: relative;
  box-shadow: 0 30px 60px -34px rgba(22,18,15,.5);
}
.plan-badge {
  position: absolute; top: -16px; left: 36px;
  background: var(--red); color: var(--white); font-family: var(--display); font-weight: 800; font-size: 14px; letter-spacing: -0.01em;
  padding: 7px 14px; border-radius: 8px; transform: rotate(-1.5deg);
}
.plan-lead { padding: 52px 40px 40px; border-right: 2px dashed var(--line-strong); display: flex; flex-direction: column; }
.plan-amount { font-family: var(--display); font-weight: 800; font-size: clamp(64px, 8vw, 96px); letter-spacing: -0.045em; line-height: .9; }
.plan-amount span { font-family: var(--body); font-weight: 500; font-size: 16px; letter-spacing: 0; color: var(--muted); margin-left: 6px; }
.plan-lead .lead { margin-top: 18px; }
.plan-lead .btn { margin-top: 28px; width: 100%; padding: 17px 24px; font-size: 16px; }
.plan-lead .note { font-size: 13px; color: var(--muted); margin-top: 14px; }
.plan-features { padding: 52px 40px 40px; }
.plan-features h3 { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; font-family: var(--body); font-weight: 700; color: var(--red-deep); margin-bottom: 18px; }
.checklist { list-style: none; }
.checklist li { display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 15.5px; line-height: 1.45; }
.checklist li:last-child { border-bottom: 0; }
.checklist svg { width: 22px; height: 22px; stroke: var(--red-deep); fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; margin-top: 1px; }
.plan-more { text-align: center; margin-top: 36px; }

/* ── Regular payments ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.split h2 { margin-bottom: 20px; }
.split p { color: var(--ink-2); line-height: 1.75; }
.ledger { border: 1.5px solid var(--ink); border-radius: 14px; background: var(--white); overflow: hidden; }
.ledger-head { display: flex; justify-content: space-between; align-items: center; padding: 14px 20px; background: var(--ink); color: var(--white); font-family: var(--display); font-weight: 700; font-size: 15px; }
.ledger-head span { font-family: var(--body); font-weight: 500; font-size: 12px; color: rgba(255,255,255,.6); }
.ledger-row { display: grid; grid-template-columns: 40px 1fr auto; gap: 14px; align-items: center; padding: 16px 20px; border-top: 1px solid var(--line); }
.ledger-row:first-of-type { border-top: 0; }
.ledger-row svg { width: 24px; height: 24px; stroke: var(--red-deep); fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.ledger-row strong { display: block; font-size: 15px; font-weight: 600; }
.ledger-row small { display: block; font-size: 13px; color: var(--muted); margin-top: 2px; }
.ledger-row .tag { font-size: 11.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 5px 9px; border-radius: 6px; background: var(--red-tint); color: var(--red-deep); white-space: nowrap; }
.ledger-foot { padding: 12px 20px; font-size: 12px; color: var(--muted); border-top: 1px dashed var(--line-strong); }

/* ── App (phone captures) ── */
.phone { border-radius: 26px; overflow: hidden; background: var(--ink); padding: 8px; box-shadow: 0 30px 60px -30px rgba(22,18,15,.55); }
.phone img { display: block; width: 100%; height: auto; border-radius: 19px; }
.eyebrow { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: var(--red-bright); margin-bottom: 16px; }
.hero-phones { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: end; max-width: 440px; margin-left: auto; }
.hero-phones .phone:first-child { transform: translateY(-24px); }
.people-grid { display: grid; grid-template-columns: 300px 1fr; gap: 64px; align-items: center; max-width: 980px; margin: 0 auto; }
.people-list { list-style: none; display: grid; gap: 22px; }
.people-list li { display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; }
.people-list svg { width: 44px; height: 44px; padding: 10px; border-radius: 12px; background: var(--red-tint); stroke: var(--red-deep); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.people-list strong { display: block; font-family: var(--display); font-weight: 700; font-size: 19px; letter-spacing: -0.01em; margin-bottom: 4px; }
.people-list span { color: var(--ink-2); line-height: 1.6; font-size: 15.5px; }
.app-screens { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 32px; }
.app-screen { margin: 0; }
.app-screen .phone { max-width: 300px; margin: 0 auto; }
.app-screen figcaption { margin-top: 20px; }
.app-screen figcaption strong { display: block; font-family: var(--display); font-weight: 700; font-size: 20px; letter-spacing: -0.01em; margin-bottom: 6px; }
.app-screen figcaption span { color: var(--ink-2); line-height: 1.6; font-size: 15px; }

/* ── Testimonial ── */
.quote-card {
  max-width: 860px; margin: 0 auto; display: grid; grid-template-columns: 96px 1fr; gap: 32px; align-items: start;
  background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 44px 44px 40px;
  box-shadow: 0 24px 48px -30px rgba(22,18,15,.4);
}
.quote-card img { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; border: 3px solid var(--red); }
.quote-card blockquote { font-family: var(--display); font-weight: 600; font-size: clamp(20px, 2.4vw, 27px); letter-spacing: -0.015em; line-height: 1.3; }
.quote-card blockquote::before { content: '\201C'; color: var(--red); margin-right: 2px; }
.quote-card blockquote::after { content: '\201D'; color: var(--red); margin-left: 2px; }
.quote-card figcaption { margin-top: 20px; font-size: 14.5px; color: var(--muted); }
.quote-card figcaption strong { color: var(--ink); font-weight: 700; }
.quote-more { text-align: center; color: var(--muted); font-size: 14px; margin-top: 22px; }

/* ── About ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-grid h2 { margin-bottom: 20px; }
.about-grid p { color: var(--ink-2); line-height: 1.75; }
.collage { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 120px; gap: 12px; }
.collage figure { border-radius: 12px; overflow: hidden; background: var(--paper-2); box-shadow: 0 14px 30px -18px rgba(22,18,15,.45); }
.collage img { width: 100%; height: 100%; object-fit: cover; }
.collage figure:nth-child(1) { grid-column: 1 / 4; grid-row: 1 / 3; }
.collage figure:nth-child(2) { grid-column: 4 / 7; grid-row: 1 / 2; }
.collage figure:nth-child(3) { grid-column: 4 / 7; grid-row: 2 / 3; }
.collage figure:nth-child(4) { grid-column: 1 / 3; grid-row: 3 / 4; }
.collage figure:nth-child(5) { grid-column: 3 / 7; grid-row: 3 / 4; }
.audience { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.audience article { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 34px 32px 30px; display: flex; flex-direction: column; gap: 12px; }
.audience h3 { font-size: 24px; }
.audience p { color: var(--ink-2); flex: 1; }
.audience .btn { align-self: flex-start; }

/* ── Contact ── */
.contact-list { display: grid; gap: 14px; margin-top: 28px; max-width: 520px; }
.contact-list a, .contact-list span { display: flex; align-items: center; gap: 14px; padding: 18px 20px; background: var(--white); border: 1px solid var(--line); border-radius: 12px; font-weight: 500; }
.contact-list a:hover { border-color: var(--ink); }
.contact-list svg { width: 22px; height: 22px; stroke: var(--red-deep); fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ── Footer ── */
.footer { background: var(--ink); color: rgba(255,255,255,.66); position: relative; }
.footer-photo { position: relative; height: 420px; overflow: hidden; }
.footer-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 68%; }
.footer-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22,18,15,.05) 0%, rgba(22,18,15,.15) 60%, rgba(22,18,15,.6) 85%, var(--ink) 100%); }
.footer-photo .photo-note { position: absolute; right: 16px; top: 12px; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; padding: 12px 0 56px; }
.footer .brand { font-size: 24px; color: var(--white); }
.footer-brand p { margin-top: 16px; max-width: 46ch; line-height: 1.7; font-size: 14.5px; }
.footer h3 { font-family: var(--body); font-size: 12.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer ul a { font-size: 14.5px; color: rgba(255,255,255,.72); transition: color .15s; }
.footer ul a:hover { color: var(--red-bright); }
.footer address { font-style: normal; display: grid; gap: 12px; }
.footer address a, .footer address span { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: rgba(255,255,255,.72); line-height: 1.5; }
.footer address a:hover { color: var(--red-bright); }
.footer address svg { width: 18px; height: 18px; stroke: var(--red-bright); fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0 30px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; font-size: 13px; }
.footer-bottom img { height: 40px; width: auto; opacity: .85; }
.footer-bottom a:hover img { opacity: 1; }

/* ── Responsive ── */
@media (max-width: 1000px) {
  .why, .split, .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .people-grid { grid-template-columns: 1fr; gap: 40px; }
  .people-grid .phone { max-width: 260px; margin: 0 auto; }
  .app-screens { grid-template-columns: 1fr 1fr; }
  .hero-phones { margin: 32px auto 0; }
  .page-hero-grid { grid-template-columns: 1fr; }
  .hero-rule { max-width: 420px; }
  .plan { grid-template-columns: 1fr; }
  .plan-lead { border-right: 0; border-bottom: 2px dashed var(--line-strong); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-links { display: none; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--ink); flex-direction: column; align-items: stretch; gap: 0; padding: 8px 0 12px; border-bottom: 1px solid rgba(255,255,255,.1); }
  .nav-links li a { display: block; padding: 14px 28px; font-size: 16px; }
  .nav.is-open .nav-links { display: flex; }
  .nav-toggle { display: inline-flex; }
  .nav-actions .btn-outline { display: none; }
  .nav-mobile-only { display: block; border-top: 1px solid rgba(255,255,255,.1); margin-top: 6px; padding-top: 6px; }
}
@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .container { padding: 0 20px; }
  .hero { padding-bottom: 56px; }
  .hero-inner { padding: 0 20px; }
  .hero h1 { font-size: clamp(36px, 10vw, 48px); }
  .hero h1 br { display: none; }
  .hero-foot { flex-direction: column; align-items: stretch; }
  .hero-foot .hero-scroll { padding-bottom: 0; }
  .tickets { flex-direction: column; }
  .ticket { min-width: 0; width: 100%; }
  .photo-grid figure:nth-child(n) { transform: none; }
  #events { padding: 40px 0 56px; }
  .plan-lead, .plan-features { padding: 44px 24px 30px; }
  .plan-badge { left: 20px; }
  .quote-card { grid-template-columns: 1fr; padding: 32px 26px; gap: 18px; }
  .quote-card img { width: 72px; height: 72px; }
  .audience { grid-template-columns: 1fr; }
  .app-screens { grid-template-columns: 1fr; }
  .hero-phones { max-width: 320px; gap: 12px; }
  .collage { grid-auto-rows: 90px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-photo { height: 260px; }
  .trust { flex-direction: column; align-items: flex-start; gap: 12px; padding: 18px 20px; }
  .trust span { align-items: flex-start; }
  .trust svg { flex-shrink: 0; margin-top: 2px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* =============================================================
   Community Hub additions
   ============================================================= */

/* ── Brand lockup: the Net Hub two-figure H stands in for the H in Hub ── */
.brand-h { display: inline-block; height: .82em; width: auto; vertical-align: -0.02em; margin: 0 .01em 0 .1em; }

/* ── Hero variant ── */
.hero--hub { min-height: min(86vh, 900px); min-height: min(86svh, 900px); }
.hero--hub h1 { max-width: 14ch; }
.hero--hub .hero-inner { min-height: min(calc(86svh - var(--nav-h) - 168px), 620px); }
.hero-kicker { display: inline-flex; align-items: center; gap: 12px; font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,.85); margin-bottom: 22px; animation: rise .9s var(--ease-out) both; }
.hero-kicker img { height: 26px; width: auto; }
.hero-kicker span { padding-left: 12px; border-left: 1px solid rgba(255,255,255,.3); }

/* ── Example hubs (cards on paper) ── */
.hubs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.hub-card { position: relative; display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out); }
.hub-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -30px rgba(22,18,15,.4); }
.hub-card figure { aspect-ratio: 16 / 10; background: var(--paper-2); overflow: hidden; position: relative; }
.hub-card figure img { width: 100%; height: 100%; object-fit: cover; }
.hub-card figure::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22,18,15,0) 40%, rgba(22,18,15,.7) 100%); }
.hub-card .hub-url { position: absolute; left: 16px; bottom: 14px; z-index: 1; font-family: var(--display); font-weight: 800; color: var(--white); font-size: 20px; letter-spacing: -0.02em; }
.hub-card .hub-url em { font-style: normal; color: var(--red-bright); }
.hub-card .hub-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.hub-card .hub-body p { color: var(--ink-2); font-size: 15px; line-height: 1.6; flex: 1; }
.hub-card .hub-meta { display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; color: var(--muted); font-weight: 500; padding-top: 12px; border-top: 1px solid var(--line); }
.hub-card .hub-meta a { color: var(--red-deep); font-weight: 600; }
.sticker { display: inline-block; background: var(--red); color: var(--white); font-family: var(--display); font-weight: 800; font-size: 12.5px; padding: 6px 11px; border-radius: 8px; transform: rotate(-1.5deg); position: absolute; top: 14px; left: 14px; z-index: 1; }
.sticker--ink { background: var(--ink); color: var(--red-bright); }

/* ── Steps (how it works) ── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
.step { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 30px 28px 28px; position: relative; }
.step::before { counter-increment: step; content: counter(step, decimal-leading-zero); font-family: var(--display); font-weight: 800; font-size: 40px; letter-spacing: -0.04em; line-height: 1; color: var(--red); display: block; margin-bottom: 6px; }
.step small { display: block; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.step h3 { font-size: 22px; margin-bottom: 10px; }
.step p { color: var(--ink-2); font-size: 15.5px; line-height: 1.65; }

/* ── The builder (name it, colour it, see it) ── */
.builder { display: grid; grid-template-columns: 380px 1fr; gap: 40px; align-items: start; }
.builder-form { background: var(--white); border: 2px solid var(--ink); border-radius: 18px; padding: 34px 28px 28px; box-shadow: 0 30px 60px -34px rgba(22,18,15,.5); position: relative; }
.builder-form .plan-badge { left: 24px; }
.builder-form h3 { font-size: 21px; margin-bottom: 6px; }
.builder-form > p { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 12.5px; font-weight: 600; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 15px; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line-strong); border-radius: 10px; padding: 12px 14px;
  transition: border-color .15s, box-shadow .15s;
}
.field textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.field-label { display: block; font-size: 12.5px; font-weight: 600; margin-bottom: 7px; }
.choice-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; max-width: 360px; }
.field .choice { display: flex; font-weight: 500; margin-bottom: 0; align-items: center; gap: 10px; font-size: 15px; color: var(--ink); background: var(--paper); border: 1px solid var(--line-strong); border-radius: 10px; padding: 12px 14px; cursor: pointer; transition: border-color .15s, box-shadow .15s, background .15s; }
.choice:hover { border-color: var(--ink); }
.choice input { width: 16px; height: 16px; flex: 0 0 16px; margin: 0; padding: 0; border: 0; box-shadow: none; background: none; accent-color: var(--red); }
.choice:has(input:checked) { border-color: var(--red); background: var(--white); box-shadow: 0 0 0 3px rgba(231,55,70,.14); }
.field-note { font-size: 12.5px; color: var(--muted); line-height: 1.6; margin-top: 7px; }
.colour-row { display: flex; gap: 10px; align-items: stretch; }
.colour-row input[type="text"] { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; text-transform: uppercase; }
.colour-row input[type="color"] {
  flex: 0 0 52px; width: 52px; padding: 4px; cursor: pointer; border-radius: 10px;
  background: var(--paper); border: 1px solid var(--line-strong);
}
.colour-row input[type="color"]::-webkit-color-swatch-wrapper { padding: 0; }
.colour-row input[type="color"]::-webkit-color-swatch { border: 0; border-radius: 6px; }
.colour-row input[type="color"]::-moz-color-swatch { border: 0; border-radius: 6px; }
@media (min-width: 640px) { .field-row:has(.field-colour) { grid-template-columns: 1fr 240px; } }
.field input::placeholder, .field textarea::placeholder { color: #A39A90; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(231,55,70,.14); background: var(--white); }
.swatches { display: flex; gap: 8px; flex-wrap: wrap; }
.swatch { width: 34px; height: 34px; border-radius: 50%; border: 3px solid transparent; cursor: pointer; padding: 0; background: var(--sw); box-shadow: inset 0 0 0 2px var(--white); transition: transform .2s; }
.swatch:hover { transform: scale(1.08); }
.swatch[aria-pressed="true"] { border-color: var(--ink); }
.builder-form .btn { width: 100%; margin-top: 8px; padding: 16px 24px; font-size: 16px; }
.builder-form .note { font-size: 12.5px; color: var(--muted); margin-top: 12px; text-align: center; }

/* the preview: a browser frame with a miniature hub site inside */
.preview { border-radius: 16px; overflow: hidden; background: var(--ink); box-shadow: 0 30px 60px -30px rgba(22,18,15,.55); border: 1px solid rgba(22,18,15,.2); }
.preview-bar { display: flex; align-items: center; gap: 10px; padding: 10px 14px; background: #2A2521; }
.preview-bar i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.22); display: block; }
.preview-bar .url { flex: 1; margin-left: 6px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.7); font-size: 12px; padding: 6px 12px; border-radius: 6px; font-family: var(--body); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.preview-site { --hub: #E73746; --hub-on: #fff; background: var(--paper); color: var(--ink); font-size: 12px; }
.preview-nav { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; background: var(--ink); color: var(--white); }
.preview-nav strong { font-family: var(--display); font-weight: 800; font-size: 15px; letter-spacing: -0.02em; }
.preview-nav strong em { font-style: normal; color: var(--hub); }
.preview-nav span { display: inline-block; background: var(--hub); color: var(--hub-on); font-weight: 600; font-size: 10.5px; padding: 6px 10px; border-radius: 6px; }
.preview-hero { position: relative; padding: 30px 20px 26px; color: var(--white); overflow: hidden; min-height: 190px; display: flex; flex-direction: column; justify-content: flex-end; }
.preview-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.preview-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22,18,15,.3), rgba(22,18,15,.82)); z-index: 1; }
.preview-hero > * { position: relative; z-index: 2; }
.preview-hero h4 { font-family: var(--display); font-weight: 800; font-size: clamp(20px, 2.6vw, 28px); letter-spacing: -0.025em; line-height: 1.05; max-width: 18ch; text-wrap: balance; }
.preview-hero h4 em { font-style: normal; color: var(--hub); }
.preview-hero p { font-size: 12px; color: rgba(255,255,255,.8); margin-top: 8px; max-width: 42ch; }
.preview-tickets { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.preview-ticket { display: grid; grid-template-columns: 44px 1fr; background: var(--paper); color: var(--ink); border-radius: 7px; overflow: hidden; min-width: 150px; }
.preview-ticket b { background: var(--hub); color: var(--hub-on); font-family: var(--display); font-weight: 800; font-size: 13px; display: flex; align-items: center; justify-content: center; border-right: 1.5px dashed rgba(255,255,255,.5); }
.preview-ticket.paid b { background: var(--ink); color: var(--hub); border-right-color: rgba(255,255,255,.35); }
.preview-ticket span { padding: 8px 10px; font-size: 10.5px; line-height: 1.3; }
.preview-ticket span strong { display: block; font-family: var(--display); font-size: 12px; font-weight: 700; }
.preview-board { padding: 18px 20px 22px; background: var(--white); }
.preview-board h5 { font-family: var(--display); font-weight: 800; font-size: 15px; letter-spacing: -0.02em; margin-bottom: 10px; }
.preview-row { display: grid; grid-template-columns: 52px 1fr auto; gap: 12px; align-items: center; padding: 9px 0; border-top: 1px solid var(--line); }
.preview-row:first-of-type { border-top: 2px solid var(--ink); }
.preview-row .d { font-family: var(--display); font-weight: 800; font-size: 15px; line-height: 1; letter-spacing: -0.02em; }
.preview-row .d small { display: block; font-family: var(--body); font-weight: 600; font-size: 8.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }
.preview-row .t { font-weight: 600; font-size: 12px; }
.preview-row .t small { display: block; font-weight: 400; color: var(--muted); font-size: 10.5px; margin-top: 1px; }
.preview-row .tag { font-size: 9.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 4px 7px; border-radius: 5px; background: var(--hub); color: var(--hub-on); }
.preview-row .tag.free { background: var(--paper-2); color: var(--ink-2); }
.preview-foot { display: flex; justify-content: space-between; align-items: center; padding: 10px 20px; background: var(--ink); color: rgba(255,255,255,.6); font-size: 10.5px; }
.preview-foot img { height: 22px; width: auto; opacity: .85; }
.preview-caption { font-size: 13px; color: var(--muted); margin-top: 14px; text-align: center; }

/* ── Money flow ── */
.flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1.5px solid var(--ink); border-radius: 14px; background: var(--white); overflow: hidden; }
.flow-step { padding: 26px 24px 24px; border-left: 1px dashed var(--line-strong); position: relative; }
.flow-step:first-child { border-left: 0; }
.flow-step svg { width: 28px; height: 28px; stroke: var(--red-deep); fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 16px; }
.flow-step strong { display: block; font-family: var(--display); font-weight: 700; font-size: 18px; letter-spacing: -0.015em; margin-bottom: 6px; }
.flow-step p { font-size: 14px; color: var(--ink-2); line-height: 1.6; }
.flow-step .who { display: inline-block; margin-bottom: 12px; font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.flow-step--you { background: var(--red-tint); }
.flow-step--you .who { color: var(--red-deep); }
.flow-foot { font-size: 13px; color: var(--muted); margin-top: 16px; }

/* ── Earnings: two tickets + calculator ── */
.earn { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.earn h2 { margin-bottom: 20px; }
.earn p { color: var(--ink-2); line-height: 1.75; }
.earn .impact { margin: 28px 0 22px; }
.earn .impact-card { background: var(--white); border: 1px solid var(--line); box-shadow: 0 18px 40px -24px rgba(22,18,15,.4); }
.calc { background: var(--white); border: 2px solid var(--ink); border-radius: 18px; padding: 32px 32px 28px; position: relative; box-shadow: 0 30px 60px -34px rgba(22,18,15,.5); }
.calc h3 { font-size: 21px; margin-bottom: 4px; }
.calc > p { font-size: 13.5px; color: var(--muted); margin-bottom: 22px; }
.calc-row { display: grid; grid-template-columns: 1fr auto; gap: 6px 16px; align-items: center; margin-bottom: 18px; }
.calc-row label { font-size: 14px; font-weight: 600; }
.calc-row label small { display: block; font-weight: 400; color: var(--muted); font-size: 12.5px; margin-top: 2px; }
.calc-row output { font-family: var(--display); font-weight: 800; font-size: 22px; letter-spacing: -0.02em; min-width: 3.2ch; text-align: right; }
.calc input[type="range"] { width: 100%; grid-column: 1 / -1; accent-color: var(--red); }
.calc-total { border-top: 2px dashed var(--line-strong); margin-top: 8px; padding-top: 20px; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 16px; }
.calc-total span { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--red-deep); }
.calc-total span small { display: block; font-weight: 400; letter-spacing: 0; text-transform: none; color: var(--muted); margin-top: 6px; font-size: 13px; }
.calc-total output { font-family: var(--display); font-weight: 800; font-size: clamp(40px, 5vw, 56px); letter-spacing: -0.045em; line-height: .9; }
.calc-total output small { font-family: var(--body); font-weight: 500; font-size: 14px; letter-spacing: 0; color: var(--muted); margin-left: 6px; }
.calc-note { font-size: 12.5px; color: var(--muted); margin-top: 18px; line-height: 1.6; }

/* ── Control (organisations keep their own account) ── */
.control { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
.control h2 { margin-bottom: 20px; }
.control p { color: var(--ink-2); line-height: 1.75; }
.shots { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start; }
.shots .phone:nth-child(2) { transform: translateY(36px); }

/* ── Dashboard mock (the hub owner's app) ── */
.dash { background: #0F1B20; color: var(--white); border-radius: 26px; padding: 18px 16px 20px; font-size: 12px; box-shadow: 0 30px 60px -30px rgba(22,18,15,.6); max-width: 340px; margin: 0 auto; }
.dash-head { display: flex; justify-content: space-between; align-items: center; padding: 6px 4px 14px; border-bottom: 1px solid rgba(255,255,255,.1); }
.dash-head strong { font-family: var(--display); font-weight: 800; font-size: 15px; }
.dash-head span { font-size: 10.5px; color: rgba(255,255,255,.55); }
.dash-tags { display: flex; gap: 6px; padding: 14px 0 6px; flex-wrap: wrap; }
.dash-tags span { font-size: 10.5px; padding: 5px 9px; border-radius: 99px; border: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.75); }
.dash-tags span.on { background: var(--red); border-color: var(--red); color: var(--white); font-weight: 600; }
.dash-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 14px 14px 12px; margin-top: 10px; }
.dash-card small { display: block; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; color: rgba(255,255,255,.5); margin-bottom: 8px; }
.dash-card .big { font-family: var(--display); font-weight: 800; font-size: 26px; letter-spacing: -0.03em; line-height: 1; }
.dash-card .big em { font-style: normal; font-size: 12px; font-family: var(--body); font-weight: 500; color: rgba(255,255,255,.55); letter-spacing: 0; margin-left: 6px; }
.dash-card .row { display: flex; justify-content: space-between; padding: 8px 0 0; font-size: 11.5px; color: rgba(255,255,255,.75); }
.dash-card .row b { color: var(--white); font-weight: 600; }
.spark { display: flex; align-items: flex-end; gap: 3px; height: 34px; margin-top: 12px; }
.spark i { flex: 1; background: rgba(255,255,255,.2); border-radius: 2px 2px 0 0; display: block; }
.spark i:last-child { background: var(--red); }
.dash-caption { text-align: center; font-size: 13px; color: var(--muted); margin-top: 18px; }

/* ── FAQ ── */
.faq { max-width: 860px; margin: 0 auto; border-top: 2px solid var(--ink); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: grid; grid-template-columns: 1fr 28px; gap: 20px; align-items: center; padding: 22px 0; font-family: var(--display); font-weight: 700; font-size: 19px; letter-spacing: -0.015em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-family: var(--display); font-weight: 800; font-size: 26px; color: var(--red-deep); line-height: 1; text-align: center; transition: transform .3s var(--ease-out); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 48px 24px 0; color: var(--ink-2); line-height: 1.75; max-width: 70ch; }

/* ── Big CTA band ── */
.cta-band { background: var(--ink); color: var(--white); padding: 96px 0; position: relative; overflow: hidden; isolation: isolate; }
.cta-band::before { content: ''; position: absolute; inset: 0; z-index: -1; background: radial-gradient(60% 80% at 90% 10%, rgba(231,55,70,.35), transparent 70%); }
.cta-band h2 { font-size: clamp(34px, 5vw, 60px); max-width: 16ch; }
.cta-band h2 em { font-style: normal; color: var(--red-bright); }
.cta-band .lead { color: rgba(255,255,255,.8); margin-top: 20px; }
.cta-band .actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

/* ── Apply page ── */
.apply-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; }
.apply-form { background: var(--white); border: 2px solid var(--ink); border-radius: 18px; padding: 36px 34px 32px; box-shadow: 0 30px 60px -34px rgba(22,18,15,.5); position: relative; }
.apply-form h3 { font-size: 22px; margin-bottom: 6px; }
.apply-form > p { font-size: 14px; color: var(--muted); margin-bottom: 22px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-hp { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.contact-submit { width: 100%; padding: 16px 24px; font-size: 16px; margin-top: 6px; }
.contact-submit[disabled] { opacity: .6; pointer-events: none; }
.contact-status { font-size: 13.5px; line-height: 1.6; margin-top: 14px; }
.contact-status:empty { display: none; }
.contact-status.is-ok { color: #1F6B3A; font-weight: 600; }
.contact-status.is-bad { color: var(--red-deep); font-weight: 600; }
.contact-status a { color: inherit; text-decoration: underline; }
.contact-small { font-size: 12.5px; color: var(--muted); line-height: 1.6; margin-top: 14px; }
.apply-copy h2 { margin-bottom: 20px; }
.apply-copy p { color: var(--ink-2); line-height: 1.75; }
.apply-copy .checklist { margin: 24px 0 32px; }

/* ── Responsive additions ── */
@media (max-width: 1000px) {
  .hubs, .steps { grid-template-columns: 1fr 1fr; }
  .builder { grid-template-columns: 1fr; }
  .builder-form { max-width: 520px; }
  .flow { grid-template-columns: 1fr 1fr; }
  .flow-step:nth-child(3) { border-left: 0; }
  .flow-step:nth-child(n+3) { border-top: 1px dashed var(--line-strong); }
  .earn, .control, .apply-grid { grid-template-columns: 1fr; gap: 44px; }
}
@media (max-width: 640px) {
  .hubs, .steps { grid-template-columns: 1fr; }
  .flow { grid-template-columns: 1fr; }
  .flow-step { border-left: 0; border-top: 1px dashed var(--line-strong); }
  .flow-step:first-child { border-top: 0; }
  .shots { gap: 10px; }
  .shots .phone:nth-child(2) { transform: translateY(18px); }
  .calc, .apply-form, .builder-form { padding: 28px 20px 24px; }
  .field-row { grid-template-columns: 1fr; }
  .faq summary { font-size: 17px; padding: 18px 0; }
  .cta-band { padding: 72px 0; }
  .hero--hub h1 { max-width: none; }
}
@media (max-width: 480px) {
  .nav-inner { padding: 0 16px; gap: 12px; }
  .brand { font-size: 19px; }
  .nav-actions { gap: 4px; }
  .nav-actions .btn-primary { padding: 10px 12px; font-size: 13px; }
}

/* ── Hero carousel ── */
.hero--hub { min-height: min(88svh, 920px); }
.hero--hub .hero-inner { min-height: min(calc(88svh - var(--nav-h) - 168px), 640px); }
.hero--hub h1 { max-width: 24ch; font-size: clamp(36px, 4.6vw, 60px); }
.hero--hub .lead { max-width: 70ch; margin-top: 24px; }
.hero-slides { position: absolute; inset: 0; z-index: -2; background: var(--ink); }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.4s ease; }
.hero-slide.is-active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
.hero--hub .hero-foot { align-items: flex-end; gap: 32px 40px; }
.hero--hub .hero-foot > div:first-child { flex: 1 1 0; min-width: 0; } /* impact cards shrink so the example card keeps its place on the right */
.hero--hub .hero-kicker { margin: 22px 0 0; animation: none; }
.hero-hub { position: relative; width: 320px; min-height: 236px; flex-shrink: 0; }
.hub-badge {
  position: absolute; left: 0; right: 0; bottom: 36px;
  background: rgba(22,18,15,.82); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.14); border-top: 4px solid var(--hub);
  border-radius: 14px; padding: 18px 20px 16px; color: var(--white);
  opacity: 0; transform: translateY(8px); pointer-events: none;
  transition: opacity .8s ease, transform .8s var(--ease-out);
}
.hub-badge.is-active { opacity: 1; transform: none; pointer-events: auto; }
.hub-badge-tag { display: inline-block; font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--hub-text, var(--hub)); filter: brightness(1.35); margin-bottom: 8px; }
.hub-badge-name { display: block; font-family: var(--display); font-weight: 800; font-size: 22px; letter-spacing: -0.02em; line-height: 1; }
.hub-badge-name em { font-style: normal; color: var(--hub-text, var(--hub)); filter: brightness(1.35); }
.hub-badge-url { display: block; font-size: 12.5px; color: rgba(255,255,255,.6); margin-top: 5px; }
.hub-badge-list { list-style: none; margin-top: 14px; border-top: 1px solid rgba(255,255,255,.14); }
.hub-badge-list li { display: grid; grid-template-columns: 34px 1fr auto; gap: 10px; align-items: center; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 12.5px; }
.hub-badge-list li:last-child { border-bottom: 0; }
.hub-badge-list b { font-family: var(--display); font-weight: 800; font-size: 13px; letter-spacing: -0.01em; color: rgba(255,255,255,.85); }
.hub-badge-list i { font-style: normal; font-size: 11px; font-weight: 700; padding: 3px 7px; border-radius: 5px; background: var(--hub); color: var(--white); }
.hero-dots { position: absolute; right: 0; bottom: 0; display: flex; gap: 8px; }
.hero-dots button { width: 10px; height: 10px; border-radius: 50%; border: 0; padding: 0; background: rgba(255,255,255,.35); cursor: pointer; transition: background .2s, transform .2s; }
.hero-dots button:hover { background: rgba(255,255,255,.7); }
.hero-dots button[aria-selected="true"] { background: var(--white); transform: scale(1.25); }
.hubs { grid-template-columns: 1fr 1fr; }
@media (max-width: 1000px) {
  .hero--hub .hero-foot { flex-direction: column; align-items: stretch; }
  .hero-hub { width: 100%; max-width: 420px; }
}
@media (max-width: 640px) {
  .hero--hub h1 { font-size: clamp(34px, 9.5vw, 46px); }
  .hero-hub { display: none; }
}
.steps-note { margin-top: 28px; font-style: italic; font-weight: 300; font-size: 15.5px; color: var(--muted); max-width: 70ch; line-height: 1.7; }
/* ── Example site cards: branded banner overlay ── */
.hubs { grid-template-columns: repeat(3, 1fr); }
.hub-card figure { border-top: 0; }
.hub-card figure::before { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 5px; background: var(--hub); z-index: 2; }
.hub-brand { position: absolute; left: 16px; right: 16px; bottom: 14px; z-index: 1; color: var(--white); display: grid; gap: 3px; }
.hub-brand strong { font-family: var(--display); font-weight: 800; font-size: 22px; letter-spacing: -0.02em; line-height: 1; }
.hub-brand strong em { font-style: normal; color: var(--hub-text, var(--hub)); filter: brightness(1.35); }
.hub-brand small { font-size: 12px; color: rgba(255,255,255,.72); }
.hub-brand::after { content: 'List your events'; position: absolute; right: 0; bottom: 2px; background: var(--hub); color: var(--white); font-family: var(--body); font-weight: 600; font-size: 10.5px; padding: 6px 10px; border-radius: 6px; }
.hub-card .sticker { top: 19px; }
@media (max-width: 1000px) { .hubs { grid-template-columns: 1fr; max-width: 520px; } }

/* ── Mobile hero: title high, compact tickets, both above the fold ── */
.brand { white-space: nowrap; }
@media (max-width: 640px) {
  .hero--hub { min-height: 0; padding: calc(var(--nav-h) + 36px) 0 40px; }
  .hero--hub .hero-inner { min-height: 0; }
  .hero--hub h1 { font-size: clamp(30px, 8.6vw, 40px); max-width: 12ch; }
  .hero--hub .lead { font-size: 15px; line-height: 1.55; margin-top: 14px; max-width: 34ch; }
  .hero--hub .hero-foot { padding-top: 28px; gap: 18px; }
  .hero--hub .impact { gap: 10px; }
  .hero--hub .impact-card { padding: 14px 16px 16px; }
  .hero--hub .impact-figure { font-size: 30px; }
  .hero--hub .impact-card strong { font-size: 15px; }
  .hero--hub .impact-sub { font-size: 12px; }
  .hero--hub .hero-kicker { margin-top: 14px; font-size: 12.5px; }
  .hero--hub .hero-kicker img { height: 22px; }
  .hero-slide img { object-position: 62% center; }
  .hero--hub::before { background: linear-gradient(180deg, rgba(22,18,15,.7) 0%, rgba(22,18,15,.45) 45%, rgba(22,18,15,.85) 100%); }
}

/* ── Apply: domain check ── */
.domain-row { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.domain-row .btn { padding: 12px 16px; font-size: 14px; white-space: nowrap; }
.domain-row .btn[disabled] { opacity: .6; pointer-events: none; }
.domain-status { font-size: 13.5px; line-height: 1.6; margin-top: 8px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.domain-status:empty { display: none; }
.domain-status.is-ok { color: var(--ink); }
.domain-status.is-bad { color: var(--red-deep); }
.domain-status.is-busy { color: var(--muted); }
.chip { font-style: normal; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 4px 8px; border-radius: 6px; }
.chip-ok { background: #E3F4E9; color: #1F6B3A; }
.chip-bad { background: var(--red-tint); color: var(--red-deep); }
.domain-alts { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; margin-top: 8px; font-size: 12.5px; color: var(--muted); }
.domain-alts button { font: inherit; font-weight: 600; color: var(--ink); background: var(--white); border: 1px solid var(--line-strong); border-radius: 999px; padding: 4px 11px; cursor: pointer; }
.domain-alts button:hover { border-color: var(--ink); }
.contact-submit[disabled] { opacity: .45; }
@media (max-width: 480px) { .domain-row { grid-template-columns: 1fr; } }

/* ── Hero accent follows the slide on show ── */
.hero--hub h1 em,
.hero--hub .impact-figure,
.hero--hub .impact-card::before { transition: color .5s var(--ease-out), background-color .5s var(--ease-out); }
.hero--hub h1 em { color: var(--accent-text, var(--red-bright)); }
.hero--hub .impact-figure { color: var(--accent, var(--red)); }
.hero--hub .impact-card::before { background: var(--accent, var(--red)); }

/* ── Nav, light variant: white bar, ink text, red brand mark ── */
.nav--light { background: rgba(255,255,255,.88); border-bottom-color: var(--line); color: var(--ink); }
.nav--light .brand em { color: var(--red); }
.nav--light .nav-links a { color: var(--ink-2); }
.nav--light .nav-links a:hover { color: var(--ink); }
.nav--light .nav-links a[aria-current="page"] { color: var(--red-deep); }
.nav--light .nav-actions .btn-outline { color: var(--ink); border-color: var(--line-strong); }
.nav--light .nav-actions .btn-outline:hover { border-color: var(--ink); background: rgba(22,18,15,.05); }
.nav--light .nav-toggle { color: var(--ink); }
@media (max-width: 1000px) {
  .nav--light .nav-links { background: var(--white); border-bottom-color: var(--line); }
  .nav--light .nav-mobile-only { border-top-color: var(--line); }
}

/* ── Impact cards: "this is what you earn", not a ticket to book ── */
.impact { display: flex; flex-wrap: wrap; gap: 16px; }
.impact-card {
  position: relative; flex: 1 1 240px; min-width: 0;
  display: flex; flex-direction: column; gap: 4px;
  padding: 18px 22px 20px; background: var(--paper); color: var(--ink);
  border-radius: 16px; overflow: hidden; text-decoration: none;
  box-shadow: 0 18px 40px -14px rgba(0,0,0,.6);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.impact-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 6px; background: var(--red); }
a.impact-card:hover { transform: translateY(-3px); box-shadow: 0 24px 46px -14px rgba(0,0,0,.65); }
.impact-eyebrow { font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.impact-figure { display: flex; align-items: baseline; gap: 6px; font-family: var(--display); font-weight: 800; font-size: 40px; letter-spacing: -0.035em; line-height: 1; color: var(--red); margin-top: 2px; }
.impact-figure small { font-family: var(--body); font-weight: 600; font-size: 13px; letter-spacing: 0; color: var(--muted); }
.impact-card strong { font-family: var(--display); font-weight: 700; font-size: 18px; letter-spacing: -0.015em; line-height: 1.15; margin-top: 6px; }
.impact-sub { font-size: 13.5px; color: var(--muted); }
@media (max-width: 640px) {
  .impact { flex-direction: column; }
  .impact-card { flex-basis: auto; }
}

/* ── Nav: the longer "Events Hub Builder" brand needs a tighter row just above the mobile breakpoint ── */
@media (max-width: 1180px) and (min-width: 1001px) {
  .nav-inner { gap: 16px; }
  .brand { font-size: 19px; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 14px; }
}
