/* Fantasy Cricket Prime - MIDNIGHT EDITION v4 (2026-07-06)
   Brand: Midnight purple #6B21A8 + accent #C026D3
   Layout: LAYOUT_011 HERO BOLD GRADIENT DARK
   */

:root {
  --primary: #6B21A8;
  --primary-dark: #0A0118;
  --primary-light: #8B5CF6;
  --accent: #C026D3;
  --accent-light: #E879F9;
  --text: #F3E8FF;
  --text-light: #D8B4FE;
  --muted: #A78BFA;
  --bg: #0A0118;
  --surface: #1E0938;
  --surface-2: #2D0F4D;
  --border: #4C1D95;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Space Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  padding-top: 102px;  /* topbar 32 + header 70 */
}

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--text); }
a { color: var(--accent-light); text-decoration: none; }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { position: absolute !important; left: 0 !important; top: 0 !important; background: var(--accent) !important; color: var(--bg) !important; padding: 14px 22px !important; z-index: 9999; font-weight: 900; }

.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 32px;
  background: var(--primary-dark);
  color: var(--text);
  border-bottom: 2px solid var(--accent);
  z-index: 103;
  display: flex;
  align-items: center;
  font-size: 12px;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; height: 100%; padding: 0 16px; }
.topbar .promo { display: flex; align-items: center; gap: 8px; flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.topbar .badge { background: var(--accent); color: var(--bg); padding: 2px 8px; border-radius: 3px; font-size: 11px; font-weight: 900; }
.topbar .social { display: flex; gap: 8px; }
.topbar .social a { color: var(--text); padding: 2px 8px; border: 1px solid var(--border); border-radius: 3px; font-size: 11px; }

.cta-bar {
  display: none;
  position: fixed;
  top: 102px;
  left: 0; right: 0;
  background: var(--primary-dark);
  border-bottom: 2px solid var(--accent);
  z-index: 101;
}
.cta-bar .container { display: flex; gap: 0; padding: 0; }
.cta-bar a {
  flex: 1;
  text-align: center;
  padding: 14px 12px;
  color: #fff !important;
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border-right: 1px solid var(--border);
  white-space: nowrap;
}
.cta-bar a:last-child { border-right: 0; }
.cta-bar a.primary-cta { background: var(--accent); color: var(--bg) !important; }
.cta-bar a.secondary-cta { background: var(--accent-light); color: var(--bg) !important; }

header.site {
  position: fixed;
  top: 32px;
  left: 0; right: 0;
  height: 70px;
  background: var(--primary-dark);
  border-bottom: 4px solid var(--accent);
  box-shadow: 0 2px 8px rgba(192,38,211,0.15);
  z-index: 102;
  display: flex;
  align-items: center;
}
header.site .container {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 100%;
  padding: 0 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 20px;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-display);
  flex-shrink: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.logo .mark {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 900;
  flex-shrink: 0;
}
.logo .cs {
  color: var(--accent);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-left: 4px;
  flex-shrink: 0;
}

nav.main {
  display: flex;
  gap: 14px;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
}
nav.main a {
  color: var(--text);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 6px;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}
nav.main a:hover, nav.main a.active {
  color: var(--accent-light);
  border-bottom-color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 4px;
  font-weight: 900;
  font-size: 13px;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: 0;
  flex-shrink: 0;
}
.btn-primary { background: var(--accent); color: var(--bg) !important; }
.btn-primary:hover { background: var(--accent-light); }
.btn-outline { border: 2px solid var(--text); color: var(--text) !important; background: transparent; }
.btn-outline:hover { background: rgba(255,255,255,0.1); }

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  background: var(--primary-dark);
  border: 2px solid var(--text);
  border-radius: 4px;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  position: relative;
}
.hamburger span {
  position: absolute;
  left: 10px;
  width: 22px !important;
  height: 3px !important;
  background: var(--text) !important;
  display: block !important;
  border-radius: 2px;
  transition: 0.3s;
}
.hamburger span:nth-child(1) { top: 12px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 30px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg); top: 19px; }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg); top: 19px; }

.breadcrumb {
  background: var(--surface);
  padding: 10px 0;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
}
.breadcrumb .container { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; color: var(--text-light); }
.breadcrumb a { color: var(--accent-light) !important; font-weight: 700; }
.breadcrumb span:last-child { color: var(--text); font-weight: 800; }

section { padding: 64px 0; }

.disclaimer {
  background: var(--surface);
  color: var(--text-light);
  border-left: 4px solid var(--accent);
  padding: 10px 16px;
  font-size: 12px;
  margin: 0;
  text-align: center;
}

.sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--primary); padding: 10px 12px; z-index: 90; gap: 8px; justify-content: center; border-top: 2px solid var(--accent); }
.sticky-cta .btn { flex: 1; max-width: 200px; font-size: 12px; padding: 8px 12px; }

footer { background: var(--primary-dark); color: var(--text); padding: 48px 0 20px; border-top: 4px solid var(--accent); }
footer .container { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 28px; }
footer .footer-brand p { color: var(--text-light); font-size: 13px; line-height: 1.7; margin: 10px 0 16px; }
footer .logo { color: var(--text); }
footer .cta-row { display: flex; gap: 8px; flex-wrap: wrap; }
footer .footer-heading { color: var(--accent); font-weight: 900; font-size: 11px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; border-bottom: 1px solid var(--border); padding-bottom: 6px; }
footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { margin-bottom: 6px; }
footer ul li a { color: var(--text-light); font-size: 13px; }
footer ul li a:hover { color: var(--accent-light); }
footer .legal-bar { grid-column: 1 / -1; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border); font-size: 12px; color: var(--muted); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }

a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* HERO BOLD GRADIENT DARK */
.hero {
  position: relative;
  min-height: 600px;
  background: linear-gradient(135deg, #0A0118 0%, #1E0938 50%, #2D0F4D 100%);
  color: var(--text);
  overflow: hidden;
  padding: 80px 0;
}
.hero-bg-gradient {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at top left, rgba(192,38,211,0.3) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(107,33,168,0.3) 0%, transparent 50%),
    linear-gradient(135deg, transparent 0%, rgba(192,38,211,0.1) 100%);
  pointer-events: none;
}
.hero-stars {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, white 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 50%, white 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 70%, white 0%, transparent 100%),
    radial-gradient(2px 2px at 10% 80%, white 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 20%, white 0%, transparent 100%),
    radial-gradient(2px 2px at 60% 10%, white 0%, transparent 100%);
  background-size: 100% 100%;
  opacity: 0.5;
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 0 24px;
}
.hero-content { max-width: 100%; }
.hero-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.hero-badge-pill {
  background: rgba(192,38,211,0.2);
  color: var(--text);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 1px solid var(--accent);
}
.hero-badge-pill.accent { background: var(--accent); color: var(--bg); }
.hero-title {
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #fff 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-lede {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 24px;
  color: var(--text-light);
  max-width: 580px;
}
.hero-cta-group { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-cta-primary { background: var(--accent) !important; color: var(--bg) !important; }
.hero-cta-secondary { border: 2px solid var(--text) !important; color: var(--text) !important; }
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; max-width: 580px; }
.hero-stat { text-align: left; }
.hero-stat .num { display: block; font-size: 28px; font-weight: 900; color: var(--accent); line-height: 1; font-family: var(--font-display); }
.hero-stat .label { display: block; font-size: 11px; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

.hero-floating-card {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, rgba(192,38,211,0.15) 0%, rgba(107,33,168,0.15) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(192,38,211,0.3);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(192,38,211,0.3);
}
.fc-header { font-size: 11px; color: var(--accent-light); text-transform: uppercase; letter-spacing: 2px; font-weight: 900; margin-bottom: 12px; }
.fc-player { font-size: 22px; font-weight: 900; color: #fff; margin-bottom: 4px; font-family: var(--font-display); }
.fc-meta { font-size: 12px; color: var(--text-light); margin-bottom: 16px; }
.fc-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px; }
.fc-stat { background: rgba(0,0,0,0.3); border-radius: 6px; padding: 8px; text-align: center; }
.fc-stat span { display: block; }
.fc-stat span:first-child { font-size: 16px; font-weight: 900; color: var(--accent); }
.fc-stat span:last-child { font-size: 10px; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
.fc-cta { text-align: center; }
.fc-btn { color: var(--accent-light); font-weight: 700; font-size: 13px; }

/* SECTIONS COMMON */
.section-head { text-align: center; margin-bottom: 40px; }
.section-tag { display: inline-block; background: var(--accent); color: var(--bg); padding: 6px 16px; border-radius: 30px; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px; }
.section-title { font-size: clamp(26px, 4vw, 42px); font-weight: 900; line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 14px; }
.section-desc { font-size: 16px; color: var(--text-light); max-width: 700px; margin: 0 auto; }

/* SECTIONS BG */
.section-hubs-grid { background: var(--bg); }
.section-timeline-vertical { background: var(--surface); }
.section-glass { background: linear-gradient(135deg, #1E0938 0%, #0A0118 100%); color: var(--text); }
.section-captain-vertical { background: var(--bg); }
.section-mega { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: var(--text); }
.section-news-vertical { background: var(--surface); }
.section-differentials { background: var(--bg); }
.section-how { background: var(--surface); }
.section-stats-bar { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); color: var(--text); }
.section-code { background: var(--bg); }
.section-testimonials-v { background: var(--surface); }
.section-faq { background: var(--bg); }
.section-final { background: var(--primary-dark); }

/* HUBS GRID 17 - dark glass cards */
.hubs-grid-17 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.hub-card {
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 14px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  overflow: hidden;
}
.hub-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.hub-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary), var(--accent)); }
.hub-icon { font-size: 28px; }
.hub-name { font-size: 14px; font-weight: 900; color: var(--text); text-transform: uppercase; }
.hub-desc { font-size: 11px; color: var(--text-light); line-height: 1.4; }
.hub-arrow { position: absolute; top: 18px; right: 14px; color: var(--accent); font-size: 16px; }

/* VERTICAL TIMELINE - 100% unique */
.timeline-vertical { max-width: 720px; margin: 0 auto; position: relative; }
.timeline-vertical::before { content: ''; position: absolute; left: 30px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--primary), var(--accent)); }
.timeline-v-item { display: flex; gap: 24px; align-items: flex-start; padding: 20px 0; position: relative; }
.timeline-v-num {
  flex-shrink: 0;
  width: 60px; height: 60px;
  background: var(--primary-dark);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; color: var(--accent);
  font-family: var(--font-display);
  font-size: 18px;
  z-index: 1;
}
.timeline-v-content { flex: 1; padding-top: 8px; }
.timeline-v-icon { font-size: 20px; margin-bottom: 4px; }
.timeline-v-content h3 { font-size: 18px; font-weight: 900; color: var(--text); margin-bottom: 6px; }
.timeline-v-content p { font-size: 14px; color: var(--text-light); margin: 0; line-height: 1.5; }

/* GLASSMORPHISM */
.glass-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.glass-card {
  background: linear-gradient(135deg, rgba(192,38,211,0.1) 0%, rgba(107,33,168,0.1) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(192,38,211,0.3);
  border-radius: 12px;
  padding: 24px;
  text-align: left;
}
.glass-icon { font-size: 36px; margin-bottom: 12px; }
.glass-card h3 { font-size: 18px; font-weight: 900; color: var(--text); margin-bottom: 8px; }
.glass-card p { font-size: 13px; color: var(--text-light); line-height: 1.5; margin: 0; }

/* CAPTAIN VERTICAL */
.captain-list { max-width: 900px; margin: 0 auto; }
.captain-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 16px 20px;
  background: var(--surface);
  border-radius: 8px;
  border: 1px solid var(--border);
  margin-bottom: 10px;
  transition: all 0.3s;
}
.captain-row:hover { border-color: var(--accent); }
.captain-rank { font-size: 24px; font-weight: 900; color: var(--accent); font-family: var(--font-display); }
.captain-name { font-size: 16px; font-weight: 900; color: var(--text); }
.captain-team { font-size: 12px; color: var(--text-light); }
.captain-metrics { display: flex; gap: 18px; }
.captain-metric { text-align: center; }
.cm-value { display: block; font-size: 18px; font-weight: 900; color: var(--accent); font-family: var(--font-display); }
.cm-label { display: block; font-size: 10px; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }

/* MEGA CARD */
.mega-card {
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(12px);
  border: 2px solid var(--accent);
  border-radius: 16px;
  padding: 36px;
  max-width: 800px;
  margin: 0 auto;
}
.mega-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.mega-row:last-of-type { border-bottom: 0; }
.mega-label { color: var(--text-light); font-size: 14px; text-transform: uppercase; letter-spacing: 1.5px; }
.mega-value { font-size: 20px; font-weight: 900; color: var(--accent-light); font-family: var(--font-display); }
.mega-cta { text-align: center; margin-top: 24px; }
.mega-cta .btn { padding: 16px 32px; font-size: 15px; }

/* NEWS VERTICAL */
.news-vertical-list { max-width: 900px; margin: 0 auto; }
.news-v-item {
  display: grid;
  grid-template-columns: 50px 1fr 30px;
  gap: 16px;
  align-items: center;
  padding: 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 12px;
  transition: all 0.3s;
}
.news-v-item:hover { border-color: var(--accent); transform: translateX(4px); }
.news-v-icon { font-size: 24px; }
.news-v-body h3 { font-size: 16px; font-weight: 900; color: var(--text); margin-bottom: 4px; }
.news-v-meta { font-size: 11px; color: var(--text-light); margin-bottom: 2px; }
.news-v-views { font-size: 11px; color: var(--accent); font-weight: 700; }
.news-v-arrow { color: var(--accent); font-size: 18px; }

/* DIFFERENTIALS */
.diff-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.diff-card {
  background: var(--surface);
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}
.diff-name { font-size: 16px; font-weight: 900; color: var(--text); margin-bottom: 4px; }
.diff-team { font-size: 12px; color: var(--text-light); margin-bottom: 8px; }
.diff-pts { font-size: 24px; font-weight: 900; color: var(--accent); font-family: var(--font-display); margin-bottom: 4px; }
.diff-own { font-size: 11px; color: var(--accent-light); text-transform: uppercase; letter-spacing: 1px; }

/* HOW STEPS */
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.how-step { text-align: center; padding: 28px 18px; background: var(--bg); border: 1px solid var(--border); border-radius: 8px; }
.how-num { font-size: 36px; font-weight: 900; color: var(--accent); font-family: var(--font-display); margin-bottom: 8px; }
.how-icon { font-size: 28px; margin-bottom: 8px; }
.how-step h3 { font-size: 16px; font-weight: 900; color: var(--text); margin-bottom: 6px; }
.how-step p { font-size: 13px; color: var(--text-light); margin: 0; }

/* STATS BAR */
.stats-bar-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.stat-bar-item { text-align: center; padding: 18px 8px; }
.stat-bar-num { font-size: 28px; font-weight: 900; color: var(--accent); line-height: 1; font-family: var(--font-display); }
.stat-bar-label { font-size: 11px; color: var(--text); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 6px; }

/* CODE CARD */
.code-card { background: rgba(0,0,0,0.4); border: 2px solid var(--accent); border-radius: 16px; padding: 36px; max-width: 800px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.code-row { text-align: center; }
.code-label { font-size: 11px; color: var(--text-light); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 6px; }
.code-value { font-family: monospace; font-size: 28px; color: var(--accent); font-weight: 900; letter-spacing: 3px; }
.code-amount { font-size: 48px; color: var(--accent); font-weight: 900; font-family: var(--font-display); }
.code-arrow { display: none; }
.code-terms { text-align: center; color: var(--text-light); font-size: 13px; grid-column: 1 / -1; margin-top: 8px; }

/* TESTIMONIALS VERTICAL */
.testimonial-v-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.testimonial-v-card { background: var(--bg); border: 1px solid var(--border); border-radius: 8px; padding: 20px; }
.testimonial-v-rating { color: var(--accent); font-size: 14px; margin-bottom: 10px; }
.testimonial-v-text { font-size: 15px; font-weight: 700; color: var(--text); line-height: 1.4; margin-bottom: 12px; font-style: italic; }
.testimonial-v-by { font-size: 11px; color: var(--text-light); }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 6px; margin: 10px 0; padding: 14px 18px; }
.faq-item summary { color: var(--accent-light); font-weight: 800; cursor: pointer; font-size: 15px; }
.faq-answer { margin-top: 10px; color: var(--text-light); line-height: 1.6; font-size: 14px; }

/* FINAL CTA */
.final-cta { text-align: center; padding: 40px 20px; }
.final-badge { display: inline-block; background: var(--accent); color: var(--bg); padding: 6px 16px; border-radius: 30px; font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 18px; }
.final-title { font-size: clamp(28px, 4vw, 42px); font-weight: 900; color: var(--text); margin-bottom: 12px; }
.final-desc { font-size: 16px; color: var(--text-light); margin-bottom: 24px; }
.final-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.final-btn { padding: 14px 28px; font-size: 14px; }

/* HUB HERO DARK */
.hub-hero-dark { background: linear-gradient(135deg, #0A0118 0%, #1E0938 100%); padding: 60px 0; border-bottom: 2px solid var(--accent); }
.hub-hero-title { font-size: clamp(28px, 4vw, 48px); font-weight: 900; color: var(--text); margin-bottom: 14px; }
.hub-hero-lede { font-size: 18px; color: var(--text-light); max-width: 700px; line-height: 1.5; }

/* HUB CONTENT */
.section-hub-content { background: var(--bg); }
.section-hub-content .container { max-width: 760px; }
.longform h2 { color: var(--accent-light); margin-top: 32px; text-align: left; font-size: 24px; }
.longform p { margin-bottom: 16px; line-height: 1.75; color: var(--text-light); }
.figure-inline { margin: 28px 0; border-radius: 8px; overflow: hidden; }
.figure-inline img { width: 100%; height: auto; }
.stats-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px; }
.stats-table th { background: var(--primary); color: var(--text); padding: 12px; text-align: left; border: 1px solid var(--border); }
.stats-table td { padding: 10px; border: 1px solid var(--border); color: var(--text-light); }
.stats-table tr:nth-child(even) { background: var(--surface); }

.section-cta-inline { background: var(--surface); padding: 50px 0; }
.cta-inline-card { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: var(--text); padding: 36px; text-align: center; border-radius: 12px; border: 2px solid var(--accent); }
.cta-inline-card h3 { color: var(--text); font-size: 22px; margin-bottom: 10px; }
.cta-inline-card p { color: var(--text-light); margin-bottom: 18px; }
.cta-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 768px) {
  body { padding-top: 88px; }
  .topbar { height: 28px; font-size: 11px; }
  .topbar .container { padding: 0 8px; gap: 6px; }
  .topbar .social { display: none; }
  .cta-bar { display: flex !important; top: 80px; }
  .cta-bar a { font-size: 11px; padding: 10px 8px; }
  header.site { top: 28px; height: 60px; }
  header.site .container { padding: 0 8px; gap: 6px; }
  .logo { font-size: 12px; gap: 6px; max-width: 50vw; }
  .logo .mark { padding: 3px 6px; font-size: 10px; }
  .logo .cs { display: none; }
  .hamburger { display: flex; }
  nav.main { display: none; }
  nav.main.open { display: flex; flex-direction: column; position: fixed; top: 80px; left: 0; right: 0; background: var(--primary-dark); padding: 8px; gap: 0; box-shadow: 0 8px 24px rgba(192,38,211,0.3); z-index: 100; border-bottom: 4px solid var(--accent); }
  nav.main.open a { width: 100%; padding: 14px 12px; border-bottom: 1px solid var(--border); font-size: 14px; }
  nav.main.open a:last-child { border-bottom: 0; }
  body.menu-open { overflow: hidden !important; position: fixed !important; width: 100%; height: 100%; top: 0; left: 0; }
  .header-cta { display: none !important; }
  section { padding: 40px 0; }
  .container { padding: 0 16px; }
  h1 { font-size: 28px !important; }
  h2 { font-size: 22px; }
  .hero { min-height: 400px; padding: 32px 0; }
  .hero .container { grid-template-columns: 1fr; gap: 24px; padding: 0 16px; }
  .hero-title { font-size: 28px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-floating-card { margin: 0 auto; max-width: 360px; }
  .hubs-grid-17 { grid-template-columns: repeat(2, 1fr); }
  .timeline-vertical::before { left: 22px; }
  .timeline-v-num { width: 44px; height: 44px; font-size: 14px; }
  .glass-grid { grid-template-columns: 1fr; }
  .captain-row { grid-template-columns: 40px 1fr; gap: 12px; }
  .captain-metrics { grid-column: 1 / -1; }
  .news-v-item { grid-template-columns: 40px 1fr 24px; gap: 10px; }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .how-steps { grid-template-columns: 1fr; }
  .stats-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .code-card { grid-template-columns: 1fr; gap: 16px; padding: 24px 16px; }
  .testimonial-v-list { grid-template-columns: 1fr; }
  footer .container { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .sticky-cta { display: flex !important; }
  .sticky-cta .btn { max-width: 50%; }
}
