/* hub.css — PrismIQ marketing hub (all-demo landing page) */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #0B0E1A;
  color: #F0F2F7;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* — Shared tokens — */
:root {
  --accent: #00E5C4;
  --accent-dim: #00b398;
  --amber: #FF9F43;
  --border: rgba(255,255,255,0.07);
  --card: #0F1422;
  --fg: #F0F2F7;
  --fg-muted: #8892a4;
  --bg: #0B0E1A;
  --radius: 12px;
}

/* — Navigation — */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 40px; height: 64px;
  display: flex; align-items: center;
  background: rgba(11,14,26,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; width: 100%; }
.nav-logo {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
  margin-right: auto;
}
.nav-wordmark { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 18px; color: var(--fg); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 6px 14px; border-radius: 8px; text-decoration: none;
  font-size: 14px; font-weight: 500; color: var(--fg-muted);
  transition: all 0.15s;
}
.nav-link:hover { color: var(--fg); background: rgba(255,255,255,0.05); }
.nav-link.demo-badge { color: var(--accent); background: rgba(0,229,196,0.08); }
.nav-link.demo-badge.active { background: rgba(0,229,196,0.15); }
.nav-link.demo-badge.active::before {
  content: ''; display: inline-block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--accent); margin-right: 6px;
}

/* — Typography helpers — */
.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, #7AF0E8 50%, var(--amber) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-label {
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--accent); margin-bottom: 12px;
}
.section-heading {
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2; color: var(--fg); margin-bottom: 16px;
}

/* — Buttons — */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: 10px; font-weight: 600; font-size: 15px;
  text-decoration: none; cursor: pointer; border: none; transition: all 0.15s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent); color: #0B0E1A;
}
.btn-primary:hover { background: var(--accent-dim); transform: translateY(-1px); }
.btn-ghost {
  background: rgba(255,255,255,0.07); color: var(--fg); border: 1px solid var(--border);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); }
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-lg { padding: 16px 32px; font-size: 17px; }

/* — Hub Hero — */
.hub-hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 40px 80px; position: relative; overflow: hidden;
}
.hub-hero::before {
  content: ''; position: absolute; top: -30%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 900px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,196,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hub-hero-inner { max-width: 900px; margin: 0 auto; width: 100%; }
.hub-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,229,196,0.08); border: 1px solid rgba(0,229,196,0.2);
  border-radius: 100px; padding: 6px 16px; font-size: 13px; font-weight: 500;
  color: var(--accent); margin-bottom: 28px;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 8px var(--accent); animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--accent); }
  50% { opacity: 0.6; box-shadow: 0 0 16px var(--accent); }
}
.hub-hero-headline {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(38px, 6vw, 72px); line-height: 1.1;
  color: var(--fg); margin-bottom: 24px;
}
.hub-hero-lede {
  font-size: 19px; color: var(--fg-muted); max-width: 600px;
  line-height: 1.7; margin-bottom: 40px;
}
.hub-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 64px; }
.hub-hero-stats {
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
  padding-top: 48px; border-top: 1px solid var(--border);
}
.hub-stat { text-align: left; }
.hub-stat-num {
  display: block; font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 36px; color: var(--fg); line-height: 1;
}
.hub-stat-label { font-size: 13px; color: var(--fg-muted); margin-top: 4px; }
.hub-stat-sep {
  width: 1px; height: 40px; background: var(--border);
}

/* — Hub Demos Section — */
.hub-demos { padding: 80px 40px; }
.hub-demos-inner { max-width: 1200px; margin: 0 auto; }
.hub-demos-subtitle { font-size: 17px; color: var(--fg-muted); margin-bottom: 48px; max-width: 540px; }

/* — Demo Cards Grid — */
.demo-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px;
}
.demo-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
  display: flex; flex-direction: column;
}
.demo-card:hover { transform: translateY(-4px); border-color: rgba(0,229,196,0.3); }
.demo-card-visual {
  padding: 28px 28px 0;
  display: flex; align-items: center; justify-content: space-between;
}
.demo-card-icon {
  width: 56px; height: 56px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.demo-card-hvac .demo-card-icon { background: rgba(0,229,196,0.1); color: var(--accent); }
.demo-card-dental .demo-card-icon { background: rgba(255,159,67,0.1); color: var(--amber); }
.demo-card-law .demo-card-icon { background: rgba(138,100,255,0.1); color: #8A64FF; }
.demo-card-realestate .demo-card-icon { background: rgba(0,210,145,0.1); color: #00D291; }
.demo-card-meta { display: flex; align-items: center; gap: 8px; }
.demo-badge-hvac { background: rgba(0,229,196,0.12); color: var(--accent); font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.05em; }
.demo-badge-dental { background: rgba(255,159,67,0.12); color: var(--amber); font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.05em; }
.demo-badge-law { background: rgba(138,100,255,0.12); color: #8A64FF; font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.05em; }
.demo-badge-realestate { background: rgba(0,210,145,0.12); color: #00D291; font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.05em; }
.demo-live-dot { font-size: 11px; color: var(--accent); font-weight: 500; }
.demo-live-dot.coming-soon { color: var(--fg-muted); }
.demo-card-body { padding: 20px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.demo-card-body h3 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 20px; color: var(--fg); margin-bottom: 10px; }
.demo-card-body p { font-size: 14px; color: var(--fg-muted); line-height: 1.65; margin-bottom: 18px; flex: 1; }
.demo-card-features { list-style: none; margin-bottom: 24px; }
.demo-card-features li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--fg-muted); margin-bottom: 8px; }
.demo-card-actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.demo-card-link-next { font-size: 13px; color: var(--fg-muted); text-decoration: none; transition: color 0.15s; }
.demo-card-link-next:hover { color: var(--accent); }

/* — Social Proof — */
.social-proof {
  padding: 100px 40px;
  background: #080b15;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.social-proof-inner { max-width: 1200px; margin: 0 auto; }

.sp-label {
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--accent); margin-bottom: 12px;
}
.sp-heading {
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2; color: var(--fg); margin-bottom: 12px;
}
.sp-subheading { font-size: 17px; color: var(--fg-muted); margin-bottom: 56px; max-width: 540px; }

/* — Metrics bar — */
.sp-metrics {
  display: flex; align-items: center; gap: 32px;
  padding: 32px 40px; margin-bottom: 80px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px;
  flex-wrap: wrap;
}
.sp-metric { text-align: center; }
.sp-metric-num {
  display: block; font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 42px; color: var(--accent); line-height: 1;
}
.sp-metric-label { font-size: 13px; color: var(--fg-muted); margin-top: 6px; max-width: 140px; }
.sp-metric-sep { width: 1px; height: 48px; background: var(--border); flex-shrink: 0; }

/* — Testimonials — */
.sp-testimonials {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px;
  margin-bottom: 64px;
}
.sp-testimonial {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 24px;
  display: flex; flex-direction: column; gap: 16px;
  transition: border-color 0.2s;
}
.sp-testimonial:hover { border-color: rgba(0,229,196,0.2); }
.sp-testimonial-vertical {
  display: flex; align-items: center; justify-content: space-between;
}
.sp-vertical-tag {
  font-size: 11px; font-weight: 600; padding: 4px 10px;
  border-radius: 100px; text-transform: uppercase; letter-spacing: 0.06em;
}
.sp-tag-hvac { background: rgba(0,229,196,0.12); color: var(--accent); }
.sp-tag-dental { background: rgba(255,159,67,0.12); color: var(--amber); }
.sp-tag-law { background: rgba(138,100,255,0.12); color: #8A64FF; }
.sp-tag-realestate { background: rgba(0,210,145,0.12); color: #00D291; }
.sp-vertical-result {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 18px; color: var(--accent);
}
.sp-testimonial-quote {
  flex: 1;
}
.sp-testimonial-quote p {
  font-size: 15px; color: var(--fg); line-height: 1.7; font-style: italic;
}
.sp-testimonial-attribution { display: flex; align-items: center; gap: 12px; }
.sp-attr-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; flex-shrink: 0;
}
.sp-avatar-hvac { background: rgba(0,229,196,0.15); color: var(--accent); }
.sp-avatar-dental { background: rgba(255,159,67,0.15); color: var(--amber); }
.sp-avatar-law { background: rgba(138,100,255,0.15); color: #8A64FF; }
.sp-avatar-realestate { background: rgba(0,210,145,0.15); color: #00D291; }
.sp-testimonial-attribution strong { display: block; font-size: 14px; color: var(--fg); }
.sp-testimonial-attribution span { font-size: 12px; color: var(--fg-muted); }

/* — Case studies strip — */
.sp-case-studies {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px;
}
.sp-case-study {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; background: var(--card);
  border: 1px solid var(--border); border-radius: 12px;
}
.sp-case-study-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,229,196,0.08); color: var(--accent);
}
.sp-case-study-text { display: flex; flex-direction: column; gap: 2px; }
.sp-case-study-text strong { font-size: 14px; color: var(--fg); font-weight: 600; }
.sp-case-study-text span { font-size: 12px; color: var(--fg-muted); }

/* — Hub Pricing — */
.pricing {
  padding: 100px 40px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.pricing-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
}
.pricing .sp-label { margin-bottom: 12px; }
.pricing .sp-heading { text-align: center; margin-bottom: 12px; }
.pricing .sp-subheading { text-align: center; margin-bottom: 56px; }

/* Pricing cards grid */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  margin-bottom: 40px;
}
.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex; flex-direction: column;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.pricing-card:hover { border-color: rgba(0,229,196,0.25); transform: translateY(-2px); }
.pricing-card-featured {
  border-color: rgba(0,229,196,0.4);
  background: linear-gradient(180deg, rgba(0,229,196,0.05) 0%, var(--card) 60%);
}
.pricing-popular-tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #0B0E1A;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 4px 14px; border-radius: 100px;
}
.pricing-card-header { margin-bottom: 28px; }
.pricing-tier {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--fg-muted); margin-bottom: 12px; display: block;
}
.pricing-card-featured .pricing-tier { color: var(--accent); }
.pricing-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 10px; }
.pricing-amount {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 44px; color: var(--fg); line-height: 1;
}
.pricing-card-featured .pricing-amount { color: var(--accent); }
.pricing-period { font-size: 15px; color: var(--fg-muted); }
.pricing-desc { font-size: 13px; color: var(--fg-muted); line-height: 1.6; }

/* Feature list */
.pricing-features {
  list-style: none; flex: 1; margin-bottom: 28px;
  display: flex; flex-direction: column; gap: 12px;
}
.pricing-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--fg);
}
.pricing-features li strong { font-weight: 600; }
.pricing-feature-muted { color: var(--fg-muted) !important; }

/* Full-width CTA button */
.btn-full { width: 100%; }

/* Reassurance strip */
.pricing-reassurance {
  display: flex; align-items: center; gap: 20px;
  padding: 20px 32px; background: var(--card);
  border: 1px solid var(--border); border-radius: 12px;
  flex-wrap: wrap; justify-content: center;
}
.pricing-reassurance-item { display: flex; align-items: center; gap: 10px; }
.pricing-reassurance-item span { font-size: 14px; color: var(--fg-muted); font-weight: 500; }
.pricing-reassurance-sep { width: 1px; height: 18px; background: var(--border); }

/* Urgency callout — featured card only */
.pricing-urgency {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--amber);
  margin-top: 4px; margin-bottom: 0;
}

/* Trust badges row */
.pricing-trust-badges {
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap; justify-content: center;
  width: 100%; margin-bottom: 24px;
}
.pricing-trust-badge {
  display: flex; align-items: center; gap: 8px;
}
.pricing-trust-badge span {
  font-size: 13px; color: var(--fg-muted); font-weight: 500;
  white-space: nowrap;
}
.pricing-trust-sep {
  width: 1px; height: 16px; background: var(--border); flex-shrink: 0;
}
@media (max-width: 768px) {
  .pricing-trust-sep { display: none; }
  .pricing-trust-badges { gap: 12px; }
  .pricing-trust-badge span { white-space: normal; }
}

/* — Hub CTA — */
.hub-cta {
  padding: 100px 40px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,229,196,0.03) 100%);
}
.hub-cta-inner {
  max-width: 760px; margin: 0 auto; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 32px;
}
.hub-cta-prism {
  display: flex; align-items: center; justify-content: center;
  width: 120px; height: 120px; border-radius: 50%;
  background: rgba(0,229,196,0.06); border: 1px solid rgba(0,229,196,0.15);
}
.hub-cta-icon { animation: rotate-slow 8s linear infinite; }
@keyframes rotate-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.hub-cta-content { width: 100%; }
.hub-cta-heading {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: clamp(28px, 4vw, 44px); line-height: 1.2;
  color: var(--fg); margin-bottom: 20px;
}
.hub-cta-body { font-size: 17px; color: var(--fg-muted); line-height: 1.75; margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }
.hub-cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* — Hub CTA Form — */
#lead-form-wrap { width: 100%; max-width: 600px; margin: 0 auto; }
#lead-form {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field-full { grid-column: 1 / -1; }
.form-field label {
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--fg-muted);
}
.form-field input, .form-field select {
  background: #0B0E1A; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 12px 14px;
  font-size: 15px; color: var(--fg); font-family: 'DM Sans', sans-serif;
  outline: none; transition: border-color 0.15s;
}
.form-field input::placeholder { color: #4a5568; }
.form-field input:focus, .form-field select:focus { border-color: var(--accent); }
.form-field select { cursor: pointer; appearance: none; }
.form-submit { width: 100%; margin-top: 4px; }
.lead-form-success {
  display: none; margin-top: 16px; padding: 16px 20px;
  background: rgba(0,229,196,0.08); border: 1px solid rgba(0,229,196,0.25);
  border-radius: var(--radius); color: var(--accent); font-size: 15px;
  text-align: center;
}

/* — Case Studies Page — */
.case-studies-page {
  padding: 120px 40px 80px;
  min-height: 100vh;
}
.case-studies-header {
  max-width: 1200px; margin: 0 auto 64px;
  text-align: center;
}
.cs-metrics-strip {
  display: flex; align-items: center; justify-content: center; gap: 40px;
  padding: 28px 40px; margin-bottom: 80px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; flex-wrap: wrap;
}
.cs-metric { text-align: center; }
.cs-metric-num {
  display: block; font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 36px; color: var(--accent); line-height: 1;
}
.cs-metric-label { font-size: 13px; color: var(--fg-muted); margin-top: 6px; }
.cs-metric-sep { width: 1px; height: 40px; background: var(--border); }

/* — Case study cards grid — */
.cs-cards {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  max-width: 1200px; margin: 0 auto;
}
@media (max-width: 768px) { .cs-cards { grid-template-columns: 1fr; } }

.cs-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
}
.cs-card-header {
  padding: 24px 28px 20px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--border);
}
.cs-card-vertical { display: flex; align-items: center; gap: 10px; }
.cs-card-result {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 20px; color: var(--accent);
}
.cs-card-body { padding: 28px; display: flex; flex-direction: column; gap: 20px; }
.cs-section { display: flex; flex-direction: column; gap: 6px; }
.cs-section-label {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--fg-muted);
}
.cs-section-value { font-size: 15px; color: var(--fg); line-height: 1.6; }
.cs-card-outcome {
  margin-top: 4px; padding: 16px 20px;
  background: rgba(0,229,196,0.06); border: 1px solid rgba(0,229,196,0.15);
  border-radius: 10px; display: flex; align-items: center; gap: 12px;
}
.cs-outcome-icon {
  width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,229,196,0.1); color: var(--accent);
}
.cs-outcome-num {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 22px; color: var(--accent);
}
.cs-outcome-text { font-size: 14px; color: var(--fg-muted); }

/* — Footer — */
.footer { padding: 32px 40px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 16px; }
.footer-logo { display: flex; align-items: center; gap: 10px; color: var(--fg); font-family: 'Syne', sans-serif; font-weight: 700; font-size: 16px; }
.footer-note { font-size: 13px; color: var(--fg-muted); margin-left: auto; }

/* — Responsive — */
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hub-hero { padding: 100px 20px 60px; }
  .hub-hero-headline { font-size: 36px; }
  .hub-hero-lede { font-size: 16px; }
  .hub-demos { padding: 60px 20px; }
  .demo-cards { grid-template-columns: 1fr; }
  .hub-cta { padding: 60px 20px; }
  .hub-cta-actions { flex-direction: column; align-items: stretch; }
  .hub-hero-stats { gap: 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* — Hub Video — */
.hub-video { padding: 0 40px 80px; }
.hub-video-inner { max-width: 900px; margin: 0 auto; }
.hub-video-desc { font-size: 17px; color: var(--fg-muted); margin-bottom: 40px; }
.hub-video-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  aspect-ratio: 16/9;
}
.hub-video-el { width: 100%; height: 100%; display: block; object-fit: cover; }
.hub-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  border: none;
  cursor: pointer;
  transition: background 0.15s;
  width: 100%;
}
.hub-video-play:hover { background: rgba(0,0,0,0.5); }
.hub-video-play svg { filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6)); }
@media (max-width: 768px) { .hub-video { padding: 0 20px 60px; } }