/* Mind Plus Six — brand fonts */
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Montserrat:wght@600;700;800&family=Source+Serif+4:ital,wght@0,300;0,400;1,400&display=swap");

:root {
  /* Brand palette — primary accent matches logo “PLUS” blue (~#0096FF) */
  --royal-rgb: 0, 150, 255;
  --royal: rgb(var(--royal-rgb));
  --royal-hover-rgb: 48, 180, 255;
  --royal-hover: rgb(var(--royal-hover-rgb));
  --royal-glow-rgb: 100, 200, 255;
  --royal-btn-top: #4dc8ff;
  --royal-muted: rgba(var(--royal-rgb), 0.22);

  --graphite: #1a1a1a;
  --silver: #bfbfbf;

  --bg: var(--graphite);
  --surface: #222222;
  --surface-soft: #2a2a2a;
  --text: #f5f5f5;
  --muted: #bfbfbf;
  --line: rgba(191, 191, 191, 0.14);
  --line-strong: rgba(191, 191, 191, 0.22);
  --accent: var(--silver);
  --highlight: var(--royal);
  --max: 1120px;

  --font-display: "Montserrat", system-ui, sans-serif;
  --font-body: "Lato", system-ui, sans-serif;
  --font-sub: "Source Serif 4", Georgia, serif;

  /* Shared hero band (matches Ventures-style minimum height site-wide) */
  --hero-min-height: 400px;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  -webkit-text-size-adjust: 100%;
  background:
    radial-gradient(ellipse 120% 80% at 50% -30%, rgba(var(--royal-rgb), 0.08) 0%, transparent 55%),
    linear-gradient(180deg, #1a1a1a 0%, #161616 50%, #1a1a1a 100%);
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 1000;
  padding: 8px 12px;
  border-radius: 8px;
  background: #0f172a;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.82rem;
}

.skip-link:focus {
  top: 10px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(var(--royal-rgb), 0.85);
  outline-offset: 2px;
}

.container {
  width: min(var(--max), calc(100% - 24px));
  margin: 0 auto;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(26, 26, 26, 0.94);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
}

.header-row {
  min-height: auto;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 6px 0;
}

.brand-wrap {
  display: flex;
  gap: 14px;
  align-items: center;
  min-width: 0;
}

.brand-logo-image {
  display: block;
  width: auto;
  max-width: 360px;
  height: 41px;
  transform: translateY(2%);
  transform-origin: left center;
  margin: 4px 0;
  padding: 0;
  max-height: 41px;
}

.logo-dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, #f2f2f2 0%, #d8d8d8 18%, #bfbfbf 45%, #6e6e6e 88%, #3a3a3a 100%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 0.35),
    inset 0 -3px 6px rgba(0, 0, 0, 0.45),
    0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Metallic, dimensional wordmark */
.brand {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(165deg, #ffffff 0%, #e4e4e4 22%, #bfbfbf 52%, #7a7a7a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.55)) drop-shadow(0 1px 0 rgba(255, 255, 255, 0.2));
}

@supports not (-webkit-background-clip: text) {
  .brand {
    color: #d8d8d8;
    -webkit-text-fill-color: unset;
    background: none;
    text-shadow:
      0 1px 0 rgba(255, 255, 255, 0.35),
      0 -1px 0 rgba(0, 0, 0, 0.55),
      0 2px 6px rgba(0, 0, 0, 0.5);
  }
}

.tagline {
  margin: 0;
  font-family: var(--font-sub);
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: none;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 34px;
  height: 30px;
  padding: 5px;
  border-radius: 8px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  cursor: pointer;
  min-height: 44px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #e0e0e0;
  border-radius: 999px;
}

.site-nav {
  display: none;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  width: 100%;
  margin: 0;
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  font-family: var(--font-display);
  text-decoration: none;
  padding: 6px 10px 6px 12px;
  border-radius: 8px;
  color: #e0e0e0;
  font-size: 0.86rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
  margin: 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  box-shadow: 0 0 0 1px var(--royal-muted);
}

.hero {
  padding: 52px 0 46px;
  border-bottom: 1px solid var(--line);
  min-height: var(--hero-min-height);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Inner pages — slightly shorter hero band than Home */
.hero:not(.hero-home) {
  padding: 42px 0 36px;
  min-height: calc(var(--hero-min-height) - 80px);
}

.hero-home {
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.78) 0%, rgba(12, 12, 12, 0.64) 48%, rgba(6, 6, 6, 0.46) 100%),
    radial-gradient(circle at 76% 34%, rgba(var(--royal-rgb), 0.18) 0%, rgba(0, 0, 0, 0) 45%);
}

/* Shared full-page background (Contact hero image) — all pages except Home */
body.page-ventures,
body.page-leadership,
body.page-business-model,
body.page-contact,
body.page-what-we-do {
  background-color: #0a0a0a;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(7, 7, 7, 0.78) 0%, rgba(8, 8, 8, 0.72) 40%, rgba(7, 7, 7, 0.78) 100%),
    url("/images/contact-hero.png");
  background-size: 40px 40px, 40px 40px, auto, cover;
  background-position: 0 0, 0 0, center, 52% 48%;
  background-repeat: repeat, repeat, no-repeat, no-repeat;
  background-attachment: scroll, scroll, scroll, scroll;
}

body.page-ventures .site-footer,
body.page-leadership .site-footer,
body.page-business-model .site-footer,
body.page-contact .site-footer,
body.page-what-we-do .site-footer {
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

body.page-what-we-do main > section:not(.hero) {
  background: rgba(12, 12, 12, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Ventures — hero band overlay (full-page image: shared subpage background) */
.hero-ventures {
  position: relative;
  overflow: hidden;
  background: transparent;
}

.hero-ventures .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-ventures-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(95deg, rgba(10, 10, 10, 0.88) 0%, rgba(14, 14, 14, 0.72) 38%, rgba(18, 18, 18, 0.4) 72%, rgba(10, 10, 10, 0.55) 100%),
    radial-gradient(ellipse 90% 70% at 78% 28%, rgba(var(--royal-rgb), 0.14) 0%, transparent 52%);
  pointer-events: none;
}

body.page-ventures .ventures-body {
  background: rgba(14, 14, 14, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

body.page-ventures .ventures-hero-centered {
  text-align: center;
}

body.page-ventures .ventures-hero-centered .page-title,
body.page-ventures .ventures-hero-centered .lead {
  margin-left: auto;
  margin-right: auto;
}

body.page-ventures .ventures-hero-centered .lead {
  max-width: min(100%, 48ch);
}

.ventures-split {
  display: grid;
  gap: 32px;
  align-items: start;
}

@media (min-width: 960px) {
  .ventures-split {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
    gap: 40px 48px;
  }
}

.ventures-split-title {
  max-width: none;
}

.ventures-split-lead {
  margin-top: 12px;
}

.ventures-mini-cards {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  margin-top: 22px;
}

@media (min-width: 520px) {
  .ventures-mini-cards {
    grid-template-columns: 1fr 1fr;
  }
}

.ventures-mini-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  background: linear-gradient(
    165deg,
    rgba(var(--royal-rgb), 0.14) 0%,
    rgba(26, 26, 26, 0.96) 100%
  );
  box-shadow:
    0 0 0 1px rgba(var(--royal-rgb), 0.08),
    0 8px 28px rgba(0, 0, 0, 0.25);
}

.ventures-mini-label {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--royal-hover);
  font-family: var(--font-display);
  font-weight: 700;
}

.ventures-mini-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.ventures-mini-hint {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 4px;
}

.ventures-mini-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--royal-hover);
  text-decoration: none;
  border-bottom: 1px solid rgba(var(--royal-rgb), 0.45);
  word-break: break-word;
}

.ventures-mini-link:hover,
.ventures-mini-link:focus-visible {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.35);
}

.leadership-hero-centered .hero-highlights,
.business-model-hero-centered .hero-highlights,
.what-we-do-hero-centered .hero-highlights,
.contact-hero-centered .hero-highlights {
  max-width: min(100%, 440px);
  margin-left: auto;
  margin-right: auto;
}

.hero-home .hero-highlights {
  max-width: min(100%, 520px);
}

.ventures-quote-block {
  margin-top: 12px;
}

.ventures-cards.two-col {
  margin-top: 0;
}

.ventures-partner-showcase {
  margin-top: 28px;
}

.ventures-partner-footnote {
  margin: 22px 0 0;
  font-size: 0.86rem;
  max-width: 72ch;
}

/* Leadership — hero overlay only; full-page image via shared subpage background */
.hero-leadership {
  position: relative;
  overflow: hidden;
  background: transparent;
}

.hero-leadership .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-leadership-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(94deg, rgba(8, 8, 8, 0.92) 0%, rgba(12, 12, 12, 0.65) 40%, rgba(10, 10, 10, 0.42) 68%, rgba(6, 6, 6, 0.7) 100%),
    radial-gradient(ellipse 95% 60% at 55% 48%, rgba(var(--royal-rgb), 0.15) 0%, transparent 58%);
  pointer-events: none;
}

body.page-leadership .leadership-panel {
  background: rgba(12, 12, 12, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

body.page-leadership .cta {
  background: rgba(14, 14, 14, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

body.page-leadership .leadership-hero-centered {
  text-align: center;
}

body.page-leadership .leadership-hero-centered .kicker {
  margin-left: auto;
  margin-right: auto;
}

body.page-leadership .leadership-hero-centered .page-title,
body.page-leadership .leadership-hero-centered h1 {
  margin-left: auto;
  margin-right: auto;
  max-width: 20ch;
}

body.page-leadership .leadership-hero-centered .lead {
  margin-left: auto;
  margin-right: auto;
  max-width: 42ch;
}

.section-heading-split {
  display: grid;
  gap: 18px 32px;
  align-items: end;
  margin-bottom: 32px;
}

@media (min-width: 880px) {
  .section-heading-split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    margin-bottom: 40px;
  }
}

.section-heading-split .label {
  margin-bottom: 6px;
}

.section-heading-split .section-title {
  margin: 0;
  max-width: none;
}

.section-heading-intro {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.65;
  color: #c8c8c8;
  max-width: 48ch;
}

.leadership-pillars {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .leadership-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .leadership-pillars {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.leadership-pillar {
  position: relative;
  min-height: 200px;
  padding: 22px 20px 24px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: linear-gradient(
    165deg,
    rgba(var(--royal-rgb), 0.16) 0%,
    rgba(30, 30, 30, 0.92) 42%,
    rgba(16, 16, 16, 0.98) 100%
  );
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

.leadership-pillar h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
}

.leadership-pillar p {
  margin: 12px 0 0;
  font-size: 0.9rem;
  color: #b8b8b8;
  line-height: 1.5;
}

.leadership-highlight {
  display: grid;
  gap: 24px;
  align-items: center;
}

@media (min-width: 900px) {
  .leadership-highlight {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }
}

.leadership-highlight .quote-block {
  margin-top: 0;
}

.leadership-highlight-visual {
  min-height: 240px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(var(--royal-rgb), 0.14) 0%, transparent 42%),
    linear-gradient(180deg, #1c1c1c 0%, #101010 100%);
}

.leadership-timeline {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 22px 28px;
}

.leadership-timeline-item {
  flex: 1 1 140px;
  min-width: 0;
  padding-left: 14px;
  border-left: 2px solid rgba(var(--royal-rgb), 0.55);
}

.leadership-timeline-item h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--highlight);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.leadership-timeline-item p {
  margin: 0;
  font-size: 0.87rem;
  color: #bdbdbd;
  line-height: 1.45;
}

.leadership-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .leadership-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .leadership-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.leadership-member {
  text-align: center;
}

.leadership-member-photo {
  aspect-ratio: 3 / 4;
  max-height: 280px;
  margin: 0 auto;
  border-radius: 8px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 40% 22%, rgba(255, 255, 255, 0.07) 0%, transparent 42%),
    linear-gradient(155deg, #2a2a2a 0%, #131313 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: rgba(255, 255, 255, 0.32);
  letter-spacing: 0.08em;
}

.leadership-member h3 {
  margin: 14px 0 4px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}

.leadership-member .role {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.leadership-member .muted {
  margin: 0 auto;
  font-size: 0.86rem;
  text-align: center;
  max-width: 32ch;
}

/* Leadership — split section headers: top-align title + intro (avoid uneven baseline) */
body.page-leadership .section-heading-split {
  align-items: start;
}

body.page-leadership .section-heading-intro {
  text-wrap: balance;
  align-self: stretch;
  width: 100%;
}

body.page-leadership .section-heading-intro-long {
  max-width: 54ch;
}

/* Business Model — hero band overlay (full-page image: shared subpage background) */
.hero-business-model {
  position: relative;
  overflow: hidden;
  background: transparent;
}

.hero-business-model .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-business-model-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(95deg, rgba(10, 10, 10, 0.88) 0%, rgba(14, 14, 14, 0.72) 38%, rgba(18, 18, 18, 0.4) 72%, rgba(10, 10, 10, 0.55) 100%),
    radial-gradient(ellipse 90% 70% at 78% 28%, rgba(var(--royal-rgb), 0.14) 0%, transparent 52%);
  pointer-events: none;
}

body.page-business-model .business-model-body {
  background: rgba(14, 14, 14, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

body.page-business-model .business-model-hero-centered,
body.page-what-we-do .what-we-do-hero-centered {
  text-align: center;
}

body.page-business-model .business-model-hero-centered .page-title,
body.page-business-model .business-model-hero-centered .lead,
body.page-what-we-do .what-we-do-hero-centered .page-title,
body.page-what-we-do .what-we-do-hero-centered .lead {
  margin-left: auto;
  margin-right: auto;
}

body.page-business-model .business-model-hero-centered .lead,
body.page-what-we-do .what-we-do-hero-centered .lead {
  max-width: min(100%, 48ch);
}

/* Business Model — tabbed panels & cards (brand tokens) */
.bm-main-panel .section-title {
  max-width: none;
}

.bm-tabs {
  position: relative;
}

.bm-tab-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.bm-tab-btn {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 12px;
  border: 2px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.bm-tab-btn:hover {
  color: var(--text);
  border-color: rgba(var(--royal-hover-rgb), 0.45);
}

#bm-tab-value:checked ~ .bm-tab-bar label[for="bm-tab-value"],
#bm-tab-revenue:checked ~ .bm-tab-bar label[for="bm-tab-revenue"],
#wtd-tab-capabilities:checked ~ .bm-tab-bar label[for="wtd-tab-capabilities"],
#wtd-tab-proof:checked ~ .bm-tab-bar label[for="wtd-tab-proof"] {
  color: #fff;
  background: linear-gradient(180deg, rgba(var(--royal-rgb), 0.38) 0%, rgba(var(--royal-rgb), 0.12) 100%);
  border-color: rgba(var(--royal-hover-rgb), 0.85);
  box-shadow: 5px 5px 0 0 rgba(var(--royal-rgb), 0.22);
}

.bm-panel {
  display: none;
  padding: 22px 20px 20px;
  border-radius: 18px;
  border: 2px solid var(--line-strong);
  background: linear-gradient(150deg, rgba(32, 32, 32, 0.55) 0%, rgba(16, 16, 16, 0.75) 100%);
  box-shadow: 10px 10px 0 0 rgba(var(--royal-rgb), 0.12);
}

#bm-tab-value:checked ~ .bm-panel-value,
#bm-tab-revenue:checked ~ .bm-panel-revenue,
#wtd-tab-capabilities:checked ~ .bm-panel-wtd-capabilities,
#wtd-tab-proof:checked ~ .bm-panel-wtd-proof {
  display: block;
}

.bm-panel-kicker {
  margin-bottom: 8px;
}

.bm-panel-kicker.wtd-kicker-stack {
  margin-top: 28px;
}

.bm-panel .two-col {
  margin-top: 20px;
}

.bm-panel-title {
  margin: 0;
  font-size: clamp(1.4rem, 3.2vw, 2.15rem);
}

.bm-panel-intro {
  margin: 14px 0 0;
  max-width: 68ch;
}

.bm-steps-masonry {
  margin-top: 24px;
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .bm-steps-masonry {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
  }
}

.bm-step-card {
  margin: 0;
  padding: 20px 20px 20px 22px;
  border-radius: 16px;
  border: 2px solid var(--line-strong);
  background: var(--surface-soft);
  box-shadow: 6px 6px 0 0 rgba(var(--royal-rgb), 0.18);
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.bm-step-card:nth-child(even) {
  box-shadow: -6px 6px 0 0 rgba(var(--royal-rgb), 0.14);
}

.bm-step-card:hover {
  border-color: rgba(var(--royal-hover-rgb), 0.4);
}

.bm-step-tag {
  display: block;
  margin: 0 0 8px;
  font-family: var(--font-display);
  color: var(--silver);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.72rem;
}

.bm-step-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
}

.bm-step-card p {
  margin: 12px 0 0;
  color: #c8c8c8;
}

.bm-revenue-grid {
  margin-top: 24px;
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .bm-revenue-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
}

.bm-offset-card {
  margin: 0;
}

/* Offset shadows for .card come from shared .card / nth-child rules above */

/* Contact — hero-only overlay for headline contrast (background: shared subpage stack) */
body.page-contact .contact-body {
  background: rgba(12, 12, 12, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-contact {
  position: relative;
  overflow: hidden;
  background: transparent;
}

.hero-contact .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

body.page-contact .hero.hero-contact {
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 44px;
}

body.page-contact .contact-hero-centered {
  text-align: center;
}

body.page-contact .contact-hero-centered .page-title,
body.page-contact .contact-hero-centered h1 {
  margin-left: auto;
  margin-right: auto;
  max-width: min(100%, 28ch);
  text-wrap: balance;
}

body.page-contact .contact-hero-centered .lead,
body.page-contact .contact-hero-sub {
  margin: 18px auto 0;
  max-width: min(100%, 48ch);
}

.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;
}

.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-turnstile-mount {
  margin-bottom: 1rem;
}

.contact-turnstile-mount:empty {
  display: none;
}

.hero-contact-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(92deg, rgba(8, 8, 8, 0.93) 0%, rgba(11, 11, 11, 0.72) 38%, rgba(10, 10, 10, 0.4) 66%, rgba(7, 7, 7, 0.65) 100%),
    radial-gradient(ellipse 90% 72% at 64% 55%, rgba(var(--royal-rgb), 0.16) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 85% 30%, rgba(var(--royal-glow-rgb), 0.08) 0%, transparent 42%);
  pointer-events: none;
}


.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-layout {
  display: grid;
  gap: 20px;
  align-items: center;
}

.hero-copy {
  min-width: 0;
  max-width: 62ch;
}

.hero-art {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo {
  width: min(100%, clamp(300px, 52vw, 620px));
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: drop-shadow(0 14px 35px rgba(var(--royal-rgb), 0.2));
}

.kicker {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--highlight);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}

.hero h1,
.hero .page-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  font-size: clamp(2rem, 4.8vw, 4.35rem);
  letter-spacing: -0.02em;
  max-width: 18ch;
  color: #fafafa;
  text-shadow: 0 2px 24px rgba(var(--royal-rgb), 0.12);
}

.hero .lead {
  margin: 20px 0 0;
  font-family: var(--font-sub);
  font-weight: 300;
  color: #d9d9d9;
  max-width: 66ch;
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
}

.hero-trust-note {
  margin: 12px 0 0;
  color: #bfbfbf;
  max-width: 66ch;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn,
.btn-outline {
  font-family: var(--font-display);
  appearance: none;
  border-radius: 8px;
  padding: 12px 18px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  width: 100%;
  min-height: 44px;
}

.btn {
  background: linear-gradient(180deg, var(--royal-hover) 0%, var(--royal) 100%);
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.15) inset,
    0 4px 14px rgba(var(--royal-rgb), 0.35);
}

.btn:hover {
  background: linear-gradient(180deg, var(--royal-btn-top) 0%, var(--royal-hover) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 6px 20px rgba(var(--royal-rgb), 0.45);
}

.btn:focus-visible {
  background: linear-gradient(180deg, var(--royal-btn-top) 0%, var(--royal-hover) 100%);
}

.btn-outline {
  border-color: var(--line-strong);
  color: #f0f0f0;
  background: rgba(255, 255, 255, 0.03);
}

.btn-outline:hover {
  border-color: rgba(var(--royal-rgb), 0.55);
  background: rgba(var(--royal-rgb), 0.08);
  box-shadow: 0 0 0 1px var(--royal-muted);
}

.btn-outline:focus-visible {
  border-color: rgba(var(--royal-rgb), 0.55);
  background: rgba(var(--royal-rgb), 0.08);
}

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

.section-tight {
  padding: 44px 0;
}

.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  font-size: clamp(1.65rem, 3.5vw, 2.8rem);
  max-width: 22ch;
  color: #fafafa;
}

.section-intro {
  margin: 18px 0 0;
  color: #d0d0d0;
  max-width: 72ch;
  font-family: var(--font-sub);
  font-weight: 300;
}

.label {
  margin: 0 0 10px;
  font-family: var(--font-display);
  color: var(--highlight);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  font-weight: 700;
}

.two-col {
  margin-top: 32px;
  display: grid;
  gap: 18px;
}

@media (min-width: 880px) {
  .two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.grid-3 {
  margin-top: 30px;
  display: grid;
  gap: 18px;
}

@media (min-width: 980px) {
  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    align-items: center;
  }
}

.card,
.leader,
.step {
  border: 2px solid var(--line-strong);
  border-radius: 12px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.045) 0%,
    rgba(255, 255, 255, 0.02) 50%,
    rgba(0, 0, 0, 0.08) 100%
  );
  padding: 22px;
  box-shadow: 6px 6px 0 0 rgba(var(--royal-rgb), 0.2);
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.card:nth-child(3n + 2),
.leader:nth-child(3n + 2),
.step:nth-child(3n + 2) {
  box-shadow: -5px 6px 0 0 rgba(var(--royal-rgb), 0.16);
}

.card:nth-child(3n),
.leader:nth-child(3n),
.step:nth-child(3n) {
  box-shadow: 6px -5px 0 0 rgba(var(--royal-rgb), 0.14);
}

.card:hover,
.leader:hover,
.step:hover {
  border-color: rgba(var(--royal-hover-rgb), 0.4);
}

.card h3,
.leader h3,
.step h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
}

.role {
  margin-top: 5px;
  font-family: var(--font-display);
  color: var(--silver);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.muted {
  color: #a8a8a8;
}

.card p,
.leader p,
.step p {
  margin: 12px 0 0;
}

.quote-block {
  margin-top: 30px;
  border-left: 3px solid var(--highlight);
  padding-left: 18px;
  max-width: 72ch;
}

.home-who-list {
  margin: 14px 0 0;
  padding-left: 20px;
  color: #d8d8d8;
  line-height: 1.7;
}

.home-who-list li + li {
  margin-top: 4px;
}

.steps {
  margin-top: 30px;
  display: grid;
  gap: 14px;
}

.step small {
  font-family: var(--font-display);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 700;
  font-size: 0.72rem;
}

.step h3 {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-weight: 700;
}

.step p {
  margin: 10px 0 0;
}

.cta {
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}

.cta-box {
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 22px;
  background: linear-gradient(
    135deg,
    rgba(var(--royal-rgb), 0.12) 0%,
    rgba(var(--royal-rgb), 0.04) 45%,
    rgba(255, 255, 255, 0.02) 100%
  );
  box-shadow:
    0 0 0 1px rgba(var(--royal-rgb), 0.12),
    0 12px 40px rgba(0, 0, 0, 0.35);
}

.cta-box h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: #fafafa;
}

.cta-box p {
  margin: 14px 0 0;
  max-width: 68ch;
  font-family: var(--font-sub);
  font-weight: 300;
  color: #d4d4d4;
}

.site-footer {
  padding: 42px 0 28px;
}

.footer-grid {
  display: grid;
  gap: 20px;
  color: #cfcfcf;
}

@media (min-width: 920px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

.footer-title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
}

.footer-brand-logo {
  display: block;
  width: auto;
  max-width: 360px;
  height: 35px;
  margin: 6px 0 10px;
  padding: 0;
}

.footer-copy {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-family: var(--font-sub);
  font-weight: 300;
}

.footer-legal-links {
  margin-top: 10px;
  font-size: 0.82rem;
}

.footer-legal-links a {
  color: #d8d8d8;
  text-decoration: none;
}

.footer-legal-links a:hover,
.footer-legal-links a:focus-visible {
  color: #fff;
  text-decoration: underline;
}

.contact-layout {
  margin-top: 0;
  display: grid;
  gap: 28px;
  align-items: start;
}

@media (min-width: 880px) {
  .contact-layout {
    grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: start;
  }
}

.contact-aside {
  min-width: 0;
}

.contact-aside-stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-aside-block {
  padding: 0;
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
}

.contact-aside-block:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-aside-block-title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fafafa;
}

.contact-aside-block-lead {
  margin: 0 0 12px;
  font-size: 0.9rem;
  line-height: 1.45;
}

.contact-aside-block-plain {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #d0d0d0;
}

.contact-aside-link-row {
  display: inline-block;
  margin-top: 2px;
}

.contact-form-panel {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.03);
}

.contact-form {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

#contactForm {
  scroll-margin-top: 5.5rem;
}

.form-row-split {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

@media (min-width: 520px) {
  .form-row-split {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field {
  min-width: 0;
}

.req {
  color: #7eb6ff;
  font-weight: 700;
}

.optional-note {
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  font-size: 0.85em;
  color: var(--muted);
}

.contact-interests {
  margin: 8px 0 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

.contact-interests-legend {
  padding: 0;
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: #d0d0d0;
}

.checkbox-grid {
  display: grid;
  gap: 10px 16px;
  grid-template-columns: 1fr;
}

@media (min-width: 480px) {
  .checkbox-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.check-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: #d4d4d4;
  line-height: 1.35;
  cursor: pointer;
}

.check-label input {
  width: auto;
  margin-top: 4px;
  accent-color: var(--royal);
  flex-shrink: 0;
}

.check-label input:focus-visible {
  outline: 3px solid rgba(var(--royal-rgb), 0.85);
  outline-offset: 2px;
}

.contact-submit-btn {
  margin-top: 6px;
  width: 100%;
  max-width: none;
}

.contact-inline-link {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--royal-hover);
  text-decoration: none;
  border-bottom: 1px solid rgba(var(--royal-rgb), 0.45);
}

.contact-inline-link:hover,
.contact-inline-link:focus-visible {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.35);
}

/* Contact — patrons grid */
.contact-patrons .label {
  margin-bottom: 6px;
}

.contact-patrons-intro {
  margin: 8px 0 0;
  max-width: 62ch;
  font-size: 0.92rem;
  color: rgba(200, 200, 200, 0.95);
}

.contact-patrons-grid {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
}

@media (min-width: 640px) {
  .contact-patrons-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.contact-patron-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 104px;
  padding: 12px 8px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  color: var(--text);
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}

.contact-patron-card:hover,
.contact-patron-card:focus-visible {
  border-color: rgba(var(--royal-rgb), 0.45);
  background: rgba(var(--royal-rgb), 0.06);
  box-shadow: 0 0 0 1px rgba(var(--royal-rgb), 0.12);
}

.contact-patron-logo {
  width: 100%;
  max-width: 100px;
  height: 34px;
  border-radius: 6px;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.25);
}

.contact-patron-url {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--royal-hover);
  line-height: 1.25;
  word-break: break-all;
  text-align: center;
}

.contact-patron-card:hover .contact-patron-url,
.contact-patron-card:focus-visible .contact-patron-url {
  color: #fff;
}

.form-row {
  margin-bottom: 14px;
}

label {
  display: inline-block;
  margin-bottom: 7px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: #d0d0d0;
}

input,
textarea {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--line-strong);
  background: #252525;
  color: #fff;
  padding: 11px 12px;
  font: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(var(--royal-rgb), 0.65);
  box-shadow: 0 0 0 3px var(--royal-muted);
}

input[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: #f87171;
  box-shadow: 0 0 0 2px rgba(248, 113, 113, 0.25);
}

.hint.error {
  color: #ffd1d1;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.meta-row {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.8rem;
}

@media (min-width: 761px) {
  .container {
    width: min(var(--max), calc(100% - 40px));
  }

  .header-row {
    min-height: 72px;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 0;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
    width: auto;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    gap: 6px;
  }

  .site-nav a {
    min-height: 36px;
    font-size: 0.78rem;
    padding: 4px 8px 4px 10px;
  }

  .brand-logo-image {
    width: auto;
    max-width: 340px;
    height: 38px;
    transform-origin: left center;
    max-height: 38px;
  }

  .btn,
  .btn-outline {
    width: auto;
    min-height: 0;
  }

  .contact-form .btn.contact-submit-btn {
    width: 100%;
  }

  .hero {
    padding: 70px 0 64px;
  }

  .hero:not(.hero-home) {
    padding: 54px 0 46px;
    min-height: calc(var(--hero-min-height) - 100px);
  }

  :root {
    --hero-min-height: 480px;
  }

  .hero-layout {
    gap: 28px;
  }

  .hero-copy {
    max-width: 68ch;
  }

  .hero .lead {
    margin: 26px 0 0;
  }

  .hero-actions {
    margin-top: 34px;
  }

  .section {
    padding: 78px 0;
  }

  .section-tight {
    padding: 56px 0;
  }

  .cta {
    padding: 76px 0;
  }

  .cta-box {
    padding: 28px;
  }

  .site-footer {
    padding: 54px 0 34px;
  }
}

.hint {
  margin: 10px 0 0;
  color: var(--muted);
  min-height: 1.2em;
  font-size: 0.88rem;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero-video {
    display: none;
  }

  .hero-home {
    background:
      radial-gradient(ellipse 120% 80% at 50% -30%, rgba(var(--royal-rgb), 0.08) 0%, transparent 55%),
      linear-gradient(180deg, #1a1a1a 0%, #161616 50%, #1a1a1a 100%);
  }
}

