/* Breadbasket Sports — public site (Cloudflare Pages) · Brand v1.0 */
:root {
  --bb-bg: #07070A;
  --bb-surface: #0D0D12;
  --bb-elevated: #13131A;
  --bb-gold: #E8B84B;
  --bb-gold-dim: #BF942F;
  --bb-text: #EDEDF0;
  --bb-muted: #8A8A9E;
  --bb-dim: #525265;
  --bb-success: #22C55E;
  --bb-blue: #4080F0;
  --bb-border: rgba(255, 255, 255, 0.08);
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: Inter, system-ui, sans-serif;
  --max-w: 1120px;
  --header-h: 64px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bb-bg);
  color: var(--bb-text);
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--bb-gold); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
  background: rgba(7, 7, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bb-border);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--bb-text);
  text-decoration: none;
}

.logo-link:hover { text-decoration: none; color: var(--bb-gold); }

.site-nav { display: flex; align-items: center; gap: 1.25rem; }
.site-nav a {
  color: var(--bb-muted);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
}
.site-nav a:hover, .site-nav a.active { color: var(--bb-gold); text-decoration: none; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--bb-border);
  color: var(--bb-text);
  padding: 0.4rem 0.65rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.85rem;
}

/* Layout */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }
.page-main { padding: 2.5rem 0 4rem; min-height: calc(100vh - var(--header-h) - 120px); }

/* Hero */
.hero {
  text-align: center;
  padding: 4rem 0 3rem;
}

.hero-mark { width: 72px; height: 72px; margin: 0 auto 1.5rem; }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 0.75rem;
}

.hero .subtitle {
  color: var(--bb-gold);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.hero .lead {
  color: var(--bb-muted);
  max-width: 640px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.35rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-primary { background: var(--bb-gold); color: var(--bb-bg); }
.btn-primary:hover { background: #F0CA6E; color: var(--bb-bg); }

.btn-secondary {
  background: transparent;
  color: var(--bb-text);
  border: 1px solid var(--bb-border);
}
.btn-secondary:hover { border-color: var(--bb-gold); color: var(--bb-gold); }

/* Sections */
.section { padding: 3rem 0; }
.section-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}
.section-desc { color: var(--bb-muted); margin-bottom: 2rem; max-width: 560px; }

/* Cards grid */
.grid { display: grid; gap: 1rem; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.card {
  background: var(--bb-surface);
  border: 1px solid var(--bb-border);
  border-radius: 14px;
  padding: 1.35rem 1.5rem;
  transition: border-color 0.2s ease;
}

.card:hover { border-color: rgba(232, 184, 75, 0.35); }

.card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.card p { color: var(--bb-muted); font-size: 0.95rem; }

.card .tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bb-gold);
  margin-bottom: 0.5rem;
}

/* Pipeline */
.pipeline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 2rem 0;
}

.pipeline-step {
  background: var(--bb-elevated);
  border: 1px solid var(--bb-border);
  border-radius: 12px;
  padding: 1rem 2rem;
  min-width: 220px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}

.pipeline-arrow {
  color: var(--bb-gold);
  font-size: 1.25rem;
  padding: 0.35rem 0;
  line-height: 1;
}

.pipeline-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
  align-items: center;
}

.pipeline-row .pipeline-step { min-width: auto; padding: 0.65rem 1rem; font-size: 0.95rem; }
.pipeline-row .pipeline-arrow { padding: 0; }

/* Status table */
.status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.status-item {
  background: var(--bb-surface);
  border: 1px solid var(--bb-border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
}

.status-item .label { color: var(--bb-muted); font-size: 0.8rem; margin-bottom: 0.25rem; }
.status-item .value { font-weight: 600; font-size: 1.05rem; }

.badge {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}
.badge-live { background: rgba(34, 197, 94, 0.15); color: var(--bb-success); }
.badge-partial { background: rgba(232, 184, 75, 0.15); color: var(--bb-gold); }
.badge-planned { background: rgba(64, 128, 240, 0.15); color: var(--bb-blue); }
.badge-fail { background: rgba(239, 68, 68, 0.15); color: #EF4444; }

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  padding: 0.5rem 1rem;
  background: var(--bb-gold);
  color: var(--bb-bg);
  font-weight: 600;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
}
.skip-link:focus {
  top: 0;
  outline: 2px solid var(--bb-text);
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--bb-gold);
  outline-offset: 2px;
}

.nav-toggle:focus-visible { outline-offset: 2px; }

.status-error {
  color: var(--bb-gold);
  background: rgba(232, 184, 75, 0.08);
  border: 1px solid rgba(232, 184, 75, 0.25);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  margin-bottom: 1.5rem;
}

/* Roadmap */
.roadmap { list-style: none; }
.roadmap li {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--bb-border);
}
.roadmap li:last-child { border-bottom: none; }
.roadmap-phase {
  font-family: var(--font-display);
  color: var(--bb-gold);
  min-width: 5rem;
  font-weight: 700;
}
.roadmap-body h3, .roadmap-body h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.roadmap-body p { color: var(--bb-muted); font-size: 0.9rem; }

/* Prose (legal) */
.prose h1 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 0.5rem; }
.prose .meta { color: var(--bb-muted); font-size: 0.9rem; margin-bottom: 2rem; }
.prose h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--bb-gold);
  margin: 2rem 0 0.75rem;
}
.prose p, .prose li { color: var(--bb-muted); margin-bottom: 0.75rem; }
.prose ul { padding-left: 1.25rem; margin-bottom: 1rem; }
.prose strong { color: var(--bb-text); }

/* Contact form (static — mailto fallback) */
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.85rem; color: var(--bb-muted); margin-bottom: 0.35rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  max-width: 480px;
  padding: 0.65rem 0.85rem;
  background: var(--bb-surface);
  border: 1px solid var(--bb-border);
  border-radius: 10px;
  color: var(--bb-text);
  font-family: inherit;
  font-size: 0.95rem;
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--bb-border);
  padding: 2.5rem 0;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand p { color: var(--bb-muted); font-size: 0.9rem; margin-top: 0.75rem; max-width: 280px; }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
  color: var(--bb-text);
}

.footer-col a {
  display: block;
  color: var(--bb-muted);
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  text-decoration: none;
}
.footer-col a:hover { color: var(--bb-gold); }

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--bb-border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  color: var(--bb-dim);
  font-size: 0.85rem;
}

/* 404 */
.error-page { text-align: center; padding: 5rem 1rem; }
.error-page h1 { font-family: var(--font-display); font-size: 4rem; color: var(--bb-gold); }
.error-page p { color: var(--bb-muted); margin: 1rem 0 2rem; }

/* Docs links */
.doc-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--bb-surface);
  border: 1px solid var(--bb-border);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  text-decoration: none;
  color: var(--bb-text);
  transition: border-color 0.2s;
}
.doc-link:hover { border-color: var(--bb-gold); text-decoration: none; }
.doc-link span { color: var(--bb-muted); font-size: 0.9rem; }

/* Mobile */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bb-bg);
    border-bottom: 1px solid var(--bb-border);
    padding: 1rem 1.25rem 1.25rem;
    gap: 0.75rem;
  }
  .site-nav.open { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pipeline-row { flex-direction: column; }
}

/* Header — premium */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.scrolled {
  background: rgba(7, 7, 10, 0.92);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--bb-border);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header.container {
  position: sticky;
  background: rgba(7, 7, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bb-border);
}

.nav-cta {
  padding: 0.45rem 0.9rem !important;
  border-radius: 8px;
  background: rgba(232, 184, 75, 0.12) !important;
  color: var(--bb-gold) !important;
  border: 1px solid rgba(232, 184, 75, 0.25);
}

.nav-cta:hover { background: rgba(232, 184, 75, 0.2) !important; }

body.has-fixed-header { padding-top: var(--header-h); }

/* Hero premium */
.hero-premium {
  position: relative;
  padding: 5rem 0 3rem;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: -20% -10% auto;
  height: 70%;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(232, 184, 75, 0.08), transparent 70%),
    radial-gradient(ellipse 40% 30% at 80% 20%, rgba(64, 128, 240, 0.05), transparent 60%);
  pointer-events: none;
}

.hero-inner { position: relative; text-align: center; }

.eyebrow, .section-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bb-gold);
  margin-bottom: 1rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  max-width: 920px;
  margin: 0 auto 1.25rem;
  letter-spacing: -0.01em;
}

.hero-lead {
  color: var(--bb-muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 640px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}

/* Browser mockup */
.hero-preview { margin-top: 3.5rem; }

.browser-frame {
  max-width: 720px;
  margin: 0 auto;
  border-radius: 14px;
  border: 1px solid var(--bb-border);
  background: var(--bb-surface);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255,255,255,0.04) inset;
  overflow: hidden;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1rem;
  background: var(--bb-elevated);
  border-bottom: 1px solid var(--bb-border);
}

.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bb-dim);
}

.browser-bar span:nth-child(1) { background: #EF4444; opacity: 0.7; }
.browser-bar span:nth-child(2) { background: #F5A623; opacity: 0.7; }
.browser-bar span:nth-child(3) { background: #22C55E; opacity: 0.7; }

.browser-url {
  flex: 1;
  margin-left: 0.75rem;
  padding: 0.35rem 0.75rem;
  background: var(--bb-bg);
  border-radius: 6px;
  font-size: 0.75rem;
  color: var(--bb-muted);
  text-align: left;
}

.browser-body {
  display: flex;
  min-height: 200px;
  padding: 1rem;
  gap: 1rem;
}

.mock-sidebar {
  width: 56px;
  border-radius: 8px;
  background: var(--bb-elevated);
  border: 1px solid var(--bb-border);
}

.mock-main { flex: 1; display: flex; flex-direction: column; gap: 0.75rem; }

.mock-stat-row { display: flex; gap: 0.5rem; }

.mock-stat {
  flex: 1;
  height: 48px;
  border-radius: 8px;
  background: var(--bb-elevated);
  border: 1px solid var(--bb-border);
}

.mock-stat.accent { border-color: rgba(232, 184, 75, 0.35); background: rgba(232, 184, 75, 0.06); }

.mock-chart {
  flex: 1;
  min-height: 100px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(232,184,75,0.08) 0%, transparent 100%);
  border: 1px solid var(--bb-border);
}

/* Social proof strip */
.proof-strip {
  border-top: 1px solid var(--bb-border);
  border-bottom: 1px solid var(--bb-border);
  background: var(--bb-surface);
  padding: 2rem 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.proof-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--bb-text);
  line-height: 1.1;
}

.proof-suffix { font-family: var(--font-display); font-size: 1.5rem; color: var(--bb-gold); }

.proof-label {
  display: block;
  font-size: 0.85rem;
  color: var(--bb-muted);
  margin-top: 0.25rem;
}

.section-header { margin-bottom: 2.5rem; max-width: 640px; }

.section-surface {
  background: var(--bb-surface);
  border-top: 1px solid var(--bb-border);
  border-bottom: 1px solid var(--bb-border);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.check-list {
  list-style: none;
  margin-top: 1.5rem;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
  color: var(--bb-muted);
  font-size: 0.95rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--bb-gold);
  font-weight: 700;
}

.solution-visual { display: flex; justify-content: center; }

.solution-card {
  background: var(--bb-elevated);
  border: 1px solid rgba(232, 184, 75, 0.2);
  border-radius: 16px;
  padding: 2rem;
  max-width: 320px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.solution-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bb-success);
  background: rgba(34, 197, 94, 0.12);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.solution-title { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 0.5rem; }
.solution-meta { color: var(--bb-muted); font-size: 0.85rem; }

/* Pipeline v2 */
.pipeline-v2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  padding: 1rem 0;
}

.pipeline-node {
  flex: 0 0 140px;
  text-align: center;
  padding: 1.25rem 0.75rem;
  background: var(--bb-surface);
  border: 1px solid var(--bb-border);
  border-radius: 14px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.pipeline-node:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 184, 75, 0.35);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}

.pipeline-node-accent {
  border-color: rgba(232, 184, 75, 0.25);
  background: rgba(232, 184, 75, 0.04);
}

.pipeline-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 0.75rem;
  color: var(--bb-gold);
}

.pipeline-icon svg { width: 100%; height: 100%; }

.pipeline-node h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.pipeline-node p { font-size: 0.75rem; color: var(--bb-muted); line-height: 1.4; }

.pipeline-connector {
  flex: 0 0 32px;
  align-self: center;
  height: 2px;
  background: linear-gradient(90deg, var(--bb-border), var(--bb-gold-dim), var(--bb-border));
  margin: 0 0.15rem;
}

/* Feature cards elevated */
.card-elevated {
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card-elevated:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.28);
  border-color: rgba(232, 184, 75, 0.3);
}

.card-icon {
  width: 36px;
  height: 36px;
  color: var(--bb-gold);
  margin-bottom: 0.75rem;
}

.card-icon svg { width: 100%; height: 100%; }

.card-minimal {
  background: transparent;
  border-color: var(--bb-border);
}

.card-minimal h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* Tech badges */
.tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.tech-badge {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--bb-muted);
  background: var(--bb-elevated);
  border: 1px solid var(--bb-border);
  transition: border-color 0.2s, color 0.2s;
}

.tech-badge:hover {
  border-color: rgba(232, 184, 75, 0.35);
  color: var(--bb-text);
}

/* Metrics dashboard */
.metrics-dashboard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.metric-card {
  background: var(--bb-surface);
  border: 1px solid var(--bb-border);
  border-radius: 14px;
  padding: 1.25rem 1.35rem;
  transition: border-color 0.2s;
}

.metric-card:hover { border-color: rgba(232, 184, 75, 0.25); }

.metric-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.metric-label { font-size: 0.8rem; color: var(--bb-muted); font-weight: 500; }

.metric-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.metric-bar {
  height: 4px;
  background: var(--bb-elevated);
  border-radius: 999px;
  overflow: hidden;
}

.metric-fill {
  height: 100%;
  background: var(--bb-success);
  border-radius: 999px;
  transition: width 1s ease;
}

.metric-fill.partial { background: var(--bb-gold); }

/* Roadmap premium */
.roadmap-premium .roadmap-phase.done { color: var(--bb-success); }
.roadmap-premium .roadmap-phase.now { color: var(--bb-gold); }
.roadmap-premium .roadmap-phase.next { color: var(--bb-blue); }
.roadmap-premium .roadmap-phase.future { color: var(--bb-dim); }

.roadmap-body h3 { font-size: 1rem; margin-bottom: 0.25rem; font-family: var(--font-display); }

/* CTA */
.cta-section {
  padding: 5rem 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(232, 184, 75, 0.08), transparent),
    var(--bb-bg);
  border-top: 1px solid var(--bb-border);
}

.cta-inner { text-align: center; max-width: 640px; margin: 0 auto; }

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.cta-inner p { color: var(--bb-muted); margin-bottom: 2rem; font-size: 1.05rem; }

.btn-lg { padding: 0.85rem 1.75rem; font-size: 1rem; }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .card-elevated:hover, .pipeline-node:hover, .btn:hover { transform: none; }
}

/* Premium responsive */
@media (max-width: 900px) {
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .pipeline-v2 { flex-direction: column; align-items: center; }
  .pipeline-connector {
    width: 2px;
    height: 24px;
    flex: 0 0 24px;
    background: linear-gradient(180deg, var(--bb-border), var(--bb-gold-dim), var(--bb-border));
  }
  .pipeline-node { flex: 0 0 auto; width: 100%; max-width: 280px; }
}

@media (max-width: 768px) {
  .hero-premium { padding: 3.5rem 0 2rem; }
  .nav-cta { display: none; }
  .site-header[data-header] .site-nav.open .nav-cta { display: block; margin-top: 0.5rem; }
}

@media (max-width: 480px) {
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-value { font-size: 1.5rem; }
}

