:root {
  --vbcw-primary: #12b981;
  --vbcw-accent: #facc15;
  --vbcw-bg: #07130f;
  --vbcw-bg-soft: #0f2019;
  --vbcw-surface: #ffffff;
  --vbcw-surface-2: #f4f7f5;
  --vbcw-text: #10211a;
  --vbcw-muted: #66736d;
  --vbcw-line: rgba(16, 33, 26, 0.12);
  --vbcw-white: #ffffff;
  --vbcw-shadow: 0 28px 90px rgba(3, 18, 12, 0.16);
  --vbcw-radius-xl: 34px;
  --vbcw-radius-lg: 24px;
  --vbcw-radius-md: 16px;
  --vbcw-container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--vbcw-text);
  background: var(--vbcw-surface);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--vbcw-primary); }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font: inherit; }

.screen-reader-text,
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 20px;
  top: 20px;
  z-index: 9999;
  width: auto;
  height: auto;
  padding: 12px 16px;
  background: var(--vbcw-white);
  border-radius: 999px;
}

.container {
  width: min(100% - 40px, var(--vbcw-container));
  margin-inline: auto;
}
.container.narrow { width: min(100% - 40px, 860px); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 19, 15, 0.78);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255,255,255,0.09);
}
.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}
.brand, .footer-brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: var(--vbcw-white);
}
.brand-logo img { max-height: 52px; width: auto; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  color: #07130f;
  font-weight: 900;
  background: linear-gradient(135deg, var(--vbcw-primary), var(--vbcw-accent));
  box-shadow: 0 14px 34px rgba(18,185,129,0.34);
}
.brand-text { display: grid; line-height: 1.1; }
.brand-text small { color: rgba(255,255,255,0.58); font-size: 12px; }
.main-nav { justify-self: center; }
.nav-menu { list-style: none; display: flex; gap: 8px; align-items: center; padding: 0; margin: 0; }
.nav-menu a {
  color: rgba(255,255,255,0.78);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
}
.nav-menu a:hover { background: rgba(255,255,255,0.08); color: var(--vbcw-white); }
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  color: #07130f;
  font-weight: 850;
  background: var(--vbcw-white);
}
.header-cta:hover { color: #07130f; transform: translateY(-1px); }
.nav-toggle { display: none; }

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0 80px;
  color: var(--vbcw-white);
  background:
    radial-gradient(circle at 20% 15%, rgba(18,185,129,0.26), transparent 30%),
    radial-gradient(circle at 84% 12%, rgba(250,204,21,0.16), transparent 28%),
    linear-gradient(135deg, #06120e 0%, #0b2018 54%, #08120f 100%);
}
.hero-glow { position: absolute; filter: blur(8px); pointer-events: none; opacity: 0.7; }
.hero-glow-one { width: 280px; height: 280px; border-radius: 999px; background: rgba(18,185,129,0.18); left: -80px; bottom: 20px; }
.hero-glow-two { width: 360px; height: 360px; border-radius: 999px; background: rgba(250,204,21,0.10); right: -140px; top: 120px; }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr); gap: 54px; align-items: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--vbcw-primary);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 99px; background: var(--vbcw-primary); box-shadow: 0 0 0 5px rgba(18,185,129,.16); }
.hero-copy h1, .page-hero h1, .dashboard-hero h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: .95;
  letter-spacing: -0.06em;
}
.hero-copy p, .page-hero p, .dashboard-hero p {
  color: rgba(255,255,255,0.72);
  font-size: clamp(18px, 2vw, 22px);
  max-width: 760px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 32px 0; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #07130f; background: linear-gradient(135deg, var(--vbcw-primary), var(--vbcw-accent)); box-shadow: 0 16px 42px rgba(18,185,129,.25); }
.button-primary:hover { color: #07130f; }
.button-ghost { color: var(--vbcw-white); background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.14); }
.button-light { background: var(--vbcw-white); color: #07130f; }
.hero-proof { display: flex; gap: 18px; flex-wrap: wrap; color: rgba(255,255,255,.65); }
.hero-proof span { padding: 12px 14px; border-radius: 16px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.08); }
.hero-proof strong { display: block; color: var(--vbcw-white); font-size: 24px; }

.hero-panel { perspective: 1200px; }
.mock-browser {
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 44px 120px rgba(0,0,0,.38);
  transform: rotateX(5deg) rotateY(-6deg);
}
.browser-top { height: 52px; display: flex; align-items: center; gap: 8px; padding: 0 18px; color: rgba(255,255,255,.55); background: rgba(255,255,255,.08); }
.browser-top i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.38); }
.browser-top span { margin-left: 8px; font-size: 13px; }
.dashboard-preview { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; padding: 18px; }
.preview-card, .preview-list {
  border-radius: 22px;
  padding: 18px;
  background: rgba(255,255,255,.92);
  color: var(--vbcw-text);
}
.preview-card.large { grid-column: span 2; min-height: 140px; }
.preview-label { display: block; color: var(--vbcw-muted); font-size: 13px; font-weight: 800; }
.preview-card strong { display: block; font-size: 48px; line-height: 1; letter-spacing: -0.04em; margin: 12px 0 4px; }
.preview-list { grid-column: span 2; display: grid; gap: 12px; }
.preview-list div { display: flex; gap: 10px; align-items: center; font-weight: 750; }
.preview-list span { width: 10px; height: 10px; border-radius: 99px; background: var(--vbcw-primary); }

.section { padding: 84px 0; }
.section-muted { background: var(--vbcw-surface-2); }
.section-dark { color: var(--vbcw-white); background: radial-gradient(circle at top, rgba(18,185,129,.18), transparent 38%), #07130f; }
.section-heading { max-width: 760px; margin: 0 auto 42px; text-align: center; }
.section-heading.left { margin-inline: 0; text-align: left; }
.section-heading h2 { margin: 0; font-size: clamp(34px, 4vw, 58px); line-height: 1; letter-spacing: -0.05em; }
.section-heading p { color: var(--vbcw-muted); font-size: 18px; }
.section-dark .section-heading p { color: rgba(255,255,255,.70); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card, .content-card, .dashboard-panel, .stat-card, .workflow-item, .empty-state, .notice-card {
  border: 1px solid var(--vbcw-line);
  border-radius: var(--vbcw-radius-lg);
  background: var(--vbcw-surface);
  box-shadow: 0 18px 50px rgba(3,18,12,.06);
}
.feature-card { padding: 28px; }
.feature-icon { width: 48px; height: 48px; display: inline-grid; place-items: center; border-radius: 16px; background: rgba(18,185,129,.12); color: var(--vbcw-text); font-weight: 900; margin-bottom: 22px; }
.feature-card h3 { margin: 0 0 8px; font-size: 22px; letter-spacing: -0.03em; }
.feature-card p { margin: 0; color: var(--vbcw-muted); }

.split-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 44px; align-items: center; }
.workflow-stack { display: grid; gap: 16px; }
.workflow-item { padding: 24px; display: grid; grid-template-columns: 56px 1fr; gap: 10px 18px; align-items: start; }
.workflow-item span { grid-row: span 2; width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; background: #07130f; color: var(--vbcw-white); font-weight: 900; }
.workflow-item strong { font-size: 22px; letter-spacing: -0.03em; }
.workflow-item p { margin: 0; color: var(--vbcw-muted); }

.content-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.content-card { overflow: hidden; }
.card-media { min-height: 190px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(18,185,129,.16), rgba(250,204,21,.16)); color: var(--vbcw-text); font-size: 54px; font-weight: 950; }
.card-media img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 24px; }
.card-kicker { color: var(--vbcw-primary); font-size: 12px; text-transform: uppercase; letter-spacing: .10em; font-weight: 900; }
.card-body h3 { margin: 10px 0; font-size: 24px; line-height: 1.12; letter-spacing: -0.035em; }
.card-body p { color: var(--vbcw-muted); }
.text-link { color: var(--vbcw-primary); font-weight: 900; }

.page-hero.compact {
  padding: 82px 0;
  color: var(--vbcw-white);
  background: radial-gradient(circle at 15% 10%, rgba(18,185,129,.28), transparent 30%), #07130f;
}
.page-hero.compact h1 { font-size: clamp(42px, 5vw, 70px); }
.meta-line { color: rgba(255,255,255,.68); }
.prose-content { font-size: 18px; }
.prose-content a { color: var(--vbcw-primary); font-weight: 800; }
.prose-content h2, .prose-content h3 { line-height: 1.1; letter-spacing: -0.03em; }
.featured-media { margin: 0 0 28px; overflow: hidden; border-radius: var(--vbcw-radius-lg); }
.featured-media img { width: 100%; }
.detail-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 12px; margin-bottom: 28px; }
.detail-strip div { padding: 18px; border-radius: 18px; background: var(--vbcw-surface-2); border: 1px solid var(--vbcw-line); }
.detail-strip span { display: block; color: var(--vbcw-muted); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; font-weight: 850; }
.detail-strip strong { display: block; margin-top: 4px; }

.dashboard-hero {
  padding: 72px 0;
  color: var(--vbcw-white);
  background: radial-gradient(circle at 70% 20%, rgba(250,204,21,.12), transparent 32%), linear-gradient(135deg, #07130f, #0b2118);
}
.dashboard-hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 34px; align-items: center; }
.dashboard-hero h1 { font-size: clamp(40px, 5vw, 64px); }
.dashboard-actions-card { display: grid; gap: 10px; padding: 24px; border-radius: 28px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.13); }
.dashboard-actions-card strong { margin-bottom: 8px; }
.dashboard-actions-card a { padding: 12px 14px; border-radius: 14px; background: rgba(255,255,255,.08); color: var(--vbcw-white); font-weight: 800; }
.dashboard-actions-card a:hover { background: var(--vbcw-white); color: #07130f; }
.dashboard-section { background: var(--vbcw-surface-2); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
.stat-card { padding: 22px; }
.stat-card span { color: var(--vbcw-muted); font-weight: 800; }
.stat-card strong { display: block; font-size: 42px; line-height: 1; margin-top: 8px; letter-spacing: -0.04em; }
.dashboard-grid-main { display: grid; grid-template-columns: 1.25fr .75fr; gap: 24px; align-items: start; }
.dashboard-grid-secondary { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 24px; }
.dashboard-panel { padding: 24px; }
.panel-header { display: flex; justify-content: space-between; gap: 18px; align-items: start; margin-bottom: 18px; }
.panel-header h2 { margin: 0; font-size: 28px; letter-spacing: -0.04em; }
.panel-header a { color: var(--vbcw-primary); font-weight: 900; }
.task-list { display: grid; gap: 14px; }
.task-card { display: grid; grid-template-columns: 1fr auto; gap: 18px; padding: 18px; border-radius: 20px; background: var(--vbcw-surface-2); border: 1px solid var(--vbcw-line); border-left: 5px solid var(--vbcw-primary); }
.task-card.priority-urgent { border-left-color: #ef4444; }
.task-card.priority-high { border-left-color: var(--vbcw-accent); }
.task-card h3 { margin: 6px 0; line-height: 1.15; }
.task-card p { margin: 0; color: var(--vbcw-muted); }
.task-status { display: inline-flex; padding: 4px 9px; border-radius: 999px; color: #07130f; background: rgba(18,185,129,.18); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.task-meta { margin: 0; display: grid; gap: 8px; min-width: 180px; }
.task-meta div { display: grid; }
.task-meta dt { color: var(--vbcw-muted); font-size: 11px; text-transform: uppercase; font-weight: 900; letter-spacing: .08em; }
.task-meta dd { margin: 0; font-weight: 800; }
.club-form { display: grid; gap: 14px; }
.club-form label { display: grid; gap: 6px; color: var(--vbcw-muted); font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }
.club-form input, .club-form textarea, .club-form select {
  width: 100%;
  border: 1px solid var(--vbcw-line);
  border-radius: 14px;
  background: var(--vbcw-white);
  padding: 12px 14px;
  color: var(--vbcw-text);
  outline: none;
}
.club-form input:focus, .club-form textarea:focus, .club-form select:focus { border-color: var(--vbcw-primary); box-shadow: 0 0 0 4px rgba(18,185,129,.14); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.notice-card { padding: 14px 18px; margin-bottom: 18px; font-weight: 850; }
.notice-card.success { border-color: rgba(18,185,129,.35); background: rgba(18,185,129,.12); }
.notice-card.error { border-color: rgba(239,68,68,.35); background: rgba(239,68,68,.10); }
.login-card { padding: 18px; border-radius: 20px; background: var(--vbcw-surface-2); }
.compact-list { display: grid; gap: 10px; }
.compact-item { display: grid; gap: 3px; padding: 14px; border-radius: 16px; background: var(--vbcw-surface-2); border: 1px solid var(--vbcw-line); }
.compact-item span, .compact-item small { color: var(--vbcw-muted); }
.pill-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.pill-cloud a { padding: 10px 13px; border-radius: 999px; background: var(--vbcw-surface-2); border: 1px solid var(--vbcw-line); font-weight: 800; }
.empty-state { padding: 28px; grid-column: 1 / -1; text-align: center; }
.pagination-wrap { grid-column: 1 / -1; }

.site-footer { color: rgba(255,255,255,.72); background: #050c09; padding: 58px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr .8fr; gap: 36px; }
.footer-grid h2 { color: var(--vbcw-white); margin-top: 0; font-size: 18px; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer-grid a { color: rgba(255,255,255,.82); }
.footer-grid a:hover { color: var(--vbcw-primary); }
.footer-bottom { display: flex; justify-content: space-between; gap: 18px; margin-top: 38px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.09); font-size: 14px; }

.reveal-on-scroll { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .header-inner { grid-template-columns: auto auto; justify-content: space-between; }
  .main-nav { position: fixed; inset: 78px 20px auto 20px; display: none; padding: 18px; border-radius: 24px; background: rgba(7,19,15,.96); border: 1px solid rgba(255,255,255,.10); }
  .main-nav.is-open { display: block; }
  .nav-menu { display: grid; gap: 6px; }
  .nav-menu a { display: block; }
  .header-cta { display: none; }
  .nav-toggle { display: inline-grid; gap: 4px; border: 0; background: rgba(255,255,255,.1); border-radius: 14px; padding: 12px; }
  .nav-toggle span:not(.screen-reader-text) { width: 22px; height: 2px; background: var(--vbcw-white); border-radius: 99px; }
  .hero-grid, .split-section, .dashboard-hero-grid, .dashboard-grid-main, .dashboard-grid-secondary { grid-template-columns: 1fr; }
  .feature-grid, .content-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .mock-browser { transform: none; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--vbcw-container)); }
  .hero-section, .section, .dashboard-hero, .page-hero.compact { padding: 56px 0; }
  .feature-grid, .content-grid, .stats-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-copy h1, .page-hero h1, .dashboard-hero h1 { font-size: 42px; }
  .task-card { grid-template-columns: 1fr; }
  .task-meta { min-width: 0; grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
