/* ──────────────────────────────────────────────────────────────────────
   xeventsx.com -- Executive networking events + concierge
   Monochromatic Biz Dev App branding
   Palette: near-black background, white primary, muted greys, single
            warm accent (#4a6b8a) used sparingly.
   Typography: Space Grotesk display + Inter body + JetBrains Mono for
               data/eyebrows.
   ────────────────────────────────────────────────────────────────────── */

:root {
  --bg: #060B1C;
  --bg-panel: #0c1428;
  --bg-elevated: #131d36;
  --fg: #ffffff;
  --fg-muted: rgba(255, 255, 255, 0.7);
  --fg-subtle: rgba(255, 255, 255, 0.5);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --accent: #4a6b8a;
  --accent-glow: rgba(74, 107, 138, 0.24);
  --header-bg: rgba(6, 11, 28, 0.82);
  --panel-gradient-end: var(--bg);
  --mobile-panel-bg: rgba(6, 11, 28, 0.98);
  --mobile-backdrop: rgba(6, 11, 28, 0.72);
  --shadow-strong: 0 24px 80px rgba(0, 0, 0, 0.45);
  --shadow-med: 0 20px 60px rgba(0, 0, 0, 0.35);
  --scrim: rgba(6, 11, 28, 0.6);
  --img-filter: contrast(1.02) saturate(0.85);
  --radius: 14px;
  --radius-sm: 8px;
  --max: 1180px;
  --font-display: 'Fraunces', 'Instrument Serif', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

/* Light theme -- inverts the palette while preserving the accent + rhythm.
   Applied by JS with data-theme="light" on <html>. */
html[data-theme="light"] {
  --bg: #f6f5f2;
  --bg-panel: #ffffff;
  --bg-elevated: #f0eee9;
  --fg: #0d1226;
  --fg-muted: rgba(13, 18, 38, 0.72);
  --fg-subtle: rgba(13, 18, 38, 0.5);
  --border: rgba(13, 18, 38, 0.10);
  --border-strong: rgba(13, 18, 38, 0.20);
  --accent: #4a6b8a;
  --accent-glow: rgba(74, 107, 138, 0.12);
  --header-bg: rgba(246, 245, 242, 0.86);
  --panel-gradient-end: var(--bg-elevated);
  --mobile-panel-bg: rgba(246, 245, 242, 0.98);
  --mobile-backdrop: rgba(13, 18, 38, 0.32);
  --shadow-strong: 0 24px 70px rgba(13, 18, 38, 0.12);
  --shadow-med: 0 18px 50px rgba(13, 18, 38, 0.10);
  --scrim: rgba(13, 18, 38, 0.28);
  --img-filter: contrast(1.02) saturate(0.95);
  color-scheme: light;
}

html[data-theme="light"] .hero-visual::after,
html[data-theme="light"] .split-visual::after,
html[data-theme="light"] .page-hero-visual::after {
  background: linear-gradient(180deg, transparent 55%, var(--scrim));
}

html[data-theme="light"] .compare > div + div {
  background: rgba(74, 107, 138, 0.05);
}

html[data-theme="light"] .callout {
  background:
    linear-gradient(180deg, rgba(74, 107, 138, 0.06), transparent 60%),
    var(--bg-panel);
}

html[data-theme="light"] .site-header {
  background: var(--header-bg);
}

/* Colour-scheme aware inputs the browser paints (date pickers, form defaults) */
html[data-theme="light"] body { color-scheme: light; }

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ───────────────────────── Header ───────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--border);
  transition: background 200ms ease;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--fg);
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-strong);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
}

.brand-x {
  color: var(--accent);
  font-weight: 700;
}

.primary-nav {
  display: flex;
  gap: 26px;
  font-size: 14px;
  color: var(--fg-muted);
}

.primary-nav a.active {
  color: var(--fg);
}

.primary-nav a {
  text-decoration: none;
  transition: color 120ms ease;
}

.primary-nav a:hover {
  color: var(--fg);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--fg);
  color: var(--bg);
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  transition: background 120ms ease, transform 120ms ease;
}

.header-cta:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

/* ───────────────────────── Header utilities (theme + language) ─────────────────────────
   Two paired controls that live just left of the header CTA on desktop
   and inside the mobile-nav panel on small screens. */

.header-utils {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.util-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 36px;
  min-width: 36px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--fg-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 140ms ease, border-color 140ms ease, background 140ms ease;
  -webkit-tap-highlight-color: transparent;
}

.util-btn:hover,
.util-btn:focus-visible {
  color: var(--fg);
  border-color: var(--fg-muted);
  background: rgba(127, 127, 127, 0.06);
  outline: none;
}

.util-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

/* Theme toggle -- swap sun / moon icon by [data-theme] */
.util-theme .icon-sun { display: none; }
.util-theme .icon-moon { display: inline-flex; }
html[data-theme="light"] .util-theme .icon-sun { display: inline-flex; }
html[data-theme="light"] .util-theme .icon-moon { display: none; }

/* Language menu -- click-to-open popover */
.util-lang-wrap {
  position: relative;
}

.util-lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 200px;
  padding: 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: var(--bg-panel);
  box-shadow: var(--shadow-med);
  display: none;
  z-index: 60;
}

.util-lang-menu.is-open {
  display: block;
}

.util-lang-menu button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 10px 12px;
  background: transparent;
  border: 0;
  border-radius: 6px;
  color: var(--fg-muted);
  font-family: var(--font-body);
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  transition: color 120ms ease, background 120ms ease;
}

.util-lang-menu button:hover,
.util-lang-menu button:focus-visible {
  color: var(--fg);
  background: rgba(127, 127, 127, 0.08);
  outline: none;
}

.util-lang-menu button[aria-current="true"] {
  color: var(--fg);
}

.util-lang-menu button[aria-current="true"]::after {
  content: '✓';
  font-family: var(--font-mono);
  color: var(--accent);
  font-size: 13px;
}

.util-lang-menu .lang-code {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-subtle);
}

/* Utilities inside mobile nav panel */
.mobile-nav-utils {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.mobile-nav-utils .util-btn {
  flex: 1 1 auto;
  height: 44px;
  padding: 0 16px;
}

/* On mobile, keep the header utilities visible but shrink them to icon-only
   (theme toggle + globe button). The globe opens the same lang menu, which
   drops down anchored to the right edge of the header. */
@media (max-width: 780px) {
  .header-utils {
    gap: 6px;
    margin-left: auto;   /* push utils + hamburger to right cluster */
  }
  .header-utils .util-btn {
    height: 40px;
    min-width: 40px;
    padding: 0 10px;
  }
  .header-utils .util-lang-code {
    display: none;
  }
  .util-lang-menu {
    right: 12px;
    min-width: 180px;
    max-width: calc(100vw - 24px);
  }
}

/* ───────────────────────── Mobile navigation ───────────────────────── */

/* Hamburger button -- hidden on desktop, visible < 781px */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  color: var(--fg);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: var(--fg);
  background: rgba(255, 255, 255, 0.04);
  outline: none;
}

.nav-toggle-bars {
  position: relative;
  width: 18px;
  height: 12px;
  display: inline-block;
}

.nav-toggle-bars span {
  position: absolute;
  left: 0;
  right: 0;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 220ms cubic-bezier(0.4, 0, 0.2, 1),
              opacity 160ms ease,
              top 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-toggle-bars span:nth-child(1) { top: 0; }
.nav-toggle-bars span:nth-child(2) { top: 5px; }
.nav-toggle-bars span:nth-child(3) { top: 10px; }

.nav-toggle.is-open .nav-toggle-bars span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-bars span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open .nav-toggle-bars span:nth-child(3) {
  top: 5px;
  transform: rotate(-45deg);
}

/* Backdrop */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: var(--mobile-backdrop);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.mobile-nav-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

/* Slide-down panel */
.mobile-nav-panel {
  position: fixed;
  top: 64px; /* below the sticky header */
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--mobile-panel-bg);
  color: var(--fg);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-strong);
  box-shadow: var(--shadow-strong);
  padding: 20px 24px 32px;
  max-height: calc(100dvh - 64px);
  overflow-y: auto;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: transform 260ms cubic-bezier(0.32, 0.72, 0.24, 1),
              opacity 220ms ease,
              visibility 260ms ease;
  overscroll-behavior: contain;
}

.mobile-nav-panel.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 4px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 140ms ease, padding-left 200ms ease;
}

.mobile-nav-links a::after {
  content: '';
  width: 18px;
  height: 10px;
  background: currentColor;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 10"><path d="M1 5h15m0 0-4-4m4 4-4 4" stroke="black" stroke-width="1.4" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>') center / contain no-repeat;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 10"><path d="M1 5h15m0 0-4-4m4 4-4 4" stroke="black" stroke-width="1.4" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>') center / contain no-repeat;
  opacity: 0.4;
  transition: opacity 160ms ease, transform 200ms ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:focus-visible {
  color: var(--fg);
  padding-left: 8px;
  outline: none;
}

.mobile-nav-links a:hover::after,
.mobile-nav-links a:focus-visible::after {
  opacity: 1;
  transform: translateX(3px);
}

.mobile-nav-links a.active {
  color: var(--accent);
}

.mobile-nav-links a.active::after {
  opacity: 1;
}

/* Panel CTA area */
.mobile-nav-cta-wrap {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
}

.mobile-nav-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 24px;
  background: var(--fg);
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.005em;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(74, 107, 138, 0.28), 0 4px 12px rgba(0, 0, 0, 0.32);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.mobile-nav-cta:hover,
.mobile-nav-cta:focus-visible {
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(-1px);
  outline: none;
}

.mobile-nav-cta:active {
  transform: translateY(0);
}

.mobile-nav-secondary {
  display: block;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg-muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  padding: 4px 0;
}

.mobile-nav-secondary:hover,
.mobile-nav-secondary:focus-visible {
  color: var(--fg);
  outline: none;
}

/* Lock body scroll while open */
html.mobile-nav-open,
html.mobile-nav-open body {
  overflow: hidden;
}

@media (max-width: 780px) {
  .primary-nav,
  .header-cta {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .header-row {
    gap: 12px;
  }
}

/* ───────────────────────── Hero ───────────────────────── */

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 120px;
  border-bottom: 1px solid var(--border);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1000px 500px at 15% -10%, var(--accent-glow), transparent 60%),
    radial-gradient(800px 400px at 100% 100%, rgba(65, 105, 225, 0.14), transparent 60%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-muted);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 22px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fg);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.028em;
  margin: 0 0 22px;
  font-weight: 700;
}

.hero h1 .accent {
  color: var(--fg-muted);
  font-style: italic;
  font-weight: 400;
}

.hero p.lead {
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--fg-muted);
  max-width: 46ch;
  margin: 0 0 32px;
  line-height: 1.55;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--fg);
  color: var(--bg);
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--border-strong);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--fg);
}

.hero-meta {
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-subtle);
  letter-spacing: 0.02em;
}

.hero-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: linear-gradient(180deg, var(--bg-panel), var(--panel-gradient-end));
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-strong);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: var(--img-filter);
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, var(--scrim));
  pointer-events: none;
}

@media (max-width: 900px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual {
    aspect-ratio: 4/3;
    order: -1;
  }
}

/* ───────────────────────── Sections ───────────────────────── */

.section {
  padding: 96px 0;
  border-bottom: 1px solid var(--border);
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 0 12px;
  font-weight: 700;
}

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-bottom: 12px;
}

.section p.lead {
  color: var(--fg-muted);
  font-size: 17px;
  max-width: 62ch;
  margin: 0 0 48px;
}

/* Three-phase pipeline */

.pipeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.pipeline-card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg-panel), var(--panel-gradient-end));
  transition: border-color 200ms ease, transform 200ms ease;
}

.pipeline-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.pipeline-step {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-subtle);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pipeline-card h3 {
  margin: 18px 0 12px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.pipeline-card p {
  margin: 0;
  font-size: 14.5px;
  color: var(--fg-muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .pipeline {
    grid-template-columns: 1fr;
  }
}

/* Split section w/ image */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.split.reverse {
  direction: rtl;
}

.split.reverse > * {
  direction: ltr;
}

.split-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  aspect-ratio: 5/4;
  box-shadow: var(--shadow-med);
}

.split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: var(--img-filter);
}

.split-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, var(--scrim));
}

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Who this is for */

.who-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.who-card {
  padding: 22px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-panel);
}

.who-card .tier {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-subtle);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.who-card p {
  margin: 0;
  font-size: 14px;
  color: var(--fg-muted);
}

@media (max-width: 900px) {
  .who-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .who-grid {
    grid-template-columns: 1fr;
  }
}

/* Trust strip */

.trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.trust-item {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.trust-item h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.trust-item p {
  margin: 0;
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .trust {
    grid-template-columns: 1fr;
  }
}

/* FAQ */

.faq {
  display: grid;
  gap: 12px;
  max-width: 820px;
}

.faq details {
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-panel);
  cursor: pointer;
}

.faq summary {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.005em;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: '+';
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 22px;
  color: var(--fg-subtle);
  transition: transform 200ms ease;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq details p {
  margin: 14px 0 0;
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* CTA band */

.cta-band {
  padding: 96px 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

.cta-band p {
  color: var(--fg-muted);
  font-size: 18px;
  max-width: 620px;
  margin: 0 auto 32px;
}

/* Footer */

footer.site-footer {
  padding: 40px 0;
  color: var(--fg-subtle);
  font-size: 13px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-row a {
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 120ms ease;
}

.footer-row a:hover {
  color: var(--fg);
}

.footer-links {
  display: flex;
  gap: 22px;
}

/* ─────────────── Multi-page additions ─────────────── */

/* Page hero variant -- smaller than home hero, single column w/ full-width visual */

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--border);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 400px at 100% -10%, var(--accent-glow), transparent 60%),
    radial-gradient(700px 340px at 0% 110%, rgba(65, 105, 225, 0.10), transparent 60%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  letter-spacing: -0.022em;
  line-height: 1.04;
  margin: 18px 0 20px;
  font-weight: 700;
  max-width: 20ch;
}

.page-hero p.lead {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--fg-muted);
  max-width: 62ch;
  margin: 0 0 30px;
  line-height: 1.55;
}

/* Feature grid -- 3 or 4 across, dense cards */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-grid.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-panel);
  transition: border-color 200ms ease, transform 200ms ease;
}

.feature-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.feature-card .kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-subtle);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}

.feature-card p {
  margin: 0;
  color: var(--fg-muted);
  font-size: 14.5px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .feature-grid,
  .feature-grid.cols-4 {
    grid-template-columns: 1fr;
  }
}

/* Capabilities list -- compact monospace bullet style */

.capabilities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 32px;
  margin-top: 24px;
}

.capabilities .cap {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 14.5px;
  color: var(--fg-muted);
}

.capabilities .cap::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  transform: translateY(-2px);
}

.capabilities .cap strong {
  color: var(--fg);
  font-weight: 600;
  margin-right: 6px;
}

@media (max-width: 720px) {
  .capabilities {
    grid-template-columns: 1fr;
  }
}

/* Verticals map -- 10 categories as a horizontal chip cluster */

.verticals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.vertical-chip {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  background: rgba(255, 255, 255, 0.02);
  transition: color 120ms ease, border-color 120ms ease, background 120ms ease;
}

.vertical-chip:hover {
  color: var(--fg);
  border-color: var(--fg-muted);
  background: rgba(255, 255, 255, 0.05);
}

/* Callout band -- pull-quote style */

.callout {
  padding: 48px 40px;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  background:
    linear-gradient(180deg, rgba(74, 107, 138, 0.10), transparent 60%),
    var(--bg-panel);
  margin: 32px 0;
}

.callout .lead-quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin: 0 0 16px;
  font-weight: 500;
}

.callout .quote-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-subtle);
}

/* Compact inline stat strip */

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 40px 0;
}

.stat-strip .stat .n {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  display: block;
}

.stat-strip .stat .l {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-subtle);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 6px;
}

@media (max-width: 720px) {
  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Steps list -- numbered process bar */

.steps {
  counter-reset: step;
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.step {
  counter-increment: step;
  padding: 20px 24px 20px 60px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-panel);
  position: relative;
}

.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 20px;
  top: 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.12em;
}

.step h4 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.005em;
}

.step p {
  margin: 0;
  color: var(--fg-muted);
  font-size: 14.5px;
  line-height: 1.6;
}

/* Inline CTA block */

.cta-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  background: linear-gradient(90deg, var(--bg-panel), var(--bg));
  margin-top: 48px;
  flex-wrap: wrap;
}

.cta-inline p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--fg);
}

/* Section variant: no bottom border for stacking */

.section.no-border { border-bottom: 0; }
.section.tight { padding: 64px 0; }

/* Page-hero visual banner */

.page-hero-visual {
  margin-top: 40px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  aspect-ratio: 16/6;
  box-shadow: var(--shadow-strong);
  position: relative;
}

.page-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: var(--img-filter);
}

.page-hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, var(--scrim));
}

/* Header cta variant */

.header-cta.ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border-strong);
}

.header-cta.ghost:hover {
  border-color: var(--fg);
  background: rgba(255, 255, 255, 0.05);
}

/* Two-col comparison table */

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 32px;
}

.compare > div {
  padding: 28px;
  background: var(--bg-panel);
}

.compare > div + div {
  border-left: 1px solid var(--border);
  background: rgba(74, 107, 138, 0.06);
}

.compare h4 {
  margin: 0 0 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-subtle);
}

.compare ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.compare ul li {
  color: var(--fg-muted);
  font-size: 14.5px;
  padding-left: 18px;
  position: relative;
}

.compare ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fg-subtle);
}

.compare > div + div ul li::before { background: var(--accent); }

@media (max-width: 720px) {
  .compare {
    grid-template-columns: 1fr;
  }
  .compare > div + div {
    border-left: 0;
    border-top: 1px solid var(--border);
  }
}

/* ─────────────── Venue-planning-site additions ─────────────── */

/* Gallery grid -- 4-up on wide, 2-up on tablet, 1-up on phone */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.gallery-tile {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 1 / 1;
  margin: 0;
  background: var(--bg-panel);
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: var(--img-filter);
  transition: transform 400ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.gallery-tile:hover img {
  transform: scale(1.03);
}

.gallery-tile figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg);
  background: linear-gradient(180deg, transparent, rgba(6, 11, 28, 0.9));
  opacity: 0;
  transition: opacity 200ms ease;
}

.gallery-tile:hover figcaption,
.gallery-tile:focus-within figcaption {
  opacity: 1;
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* Pricing grid -- 3 tiers, middle is featured */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg-panel), var(--panel-gradient-end));
  transition: border-color 200ms ease, transform 200ms ease;
}

.pricing-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent-glow), var(--shadow-med);
}

.tier-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-bottom: 12px;
}

.pricing-card.featured .tier-badge {
  color: var(--accent);
}

.price {
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--fg);
  margin: 8px 0 12px;
}

.price .currency {
  font-size: 0.55em;
  color: var(--fg-muted);
  vertical-align: super;
  margin-right: 2px;
}

.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}

.tier-desc {
  color: var(--fg-muted);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0 0 20px;
}

.tier-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
  display: grid;
  gap: 10px;
}

.tier-includes li {
  color: var(--fg-muted);
  font-size: 14px;
  padding-left: 22px;
  position: relative;
}

.tier-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-family: var(--font-mono);
  font-weight: 500;
}

.btn-block {
  display: flex;
  justify-content: center;
  width: 100%;
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* Brand wordmark for venue sites -- accent word */
.brand-wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--fg);
}

.brand-wordmark .brand-x {
  color: var(--accent);
  font-style: italic;
  font-weight: 400;
}
