/* ==========================================================================
   BMS Global Showcase Portal — Stylesheet
   Dark Glassmorphism, Luxury Cyan/Blue Cyber Accents
   ========================================================================== */
:root {
  --hub-canvas: #05070c;
  --hub-surface: #0a0e17;
  --hub-panel: rgba(14, 20, 32, 0.75);
  --hub-panel-border: rgba(0, 102, 214, 0.3);
  --hub-panel-border-hover: rgba(0, 102, 214, 0.7);
  
  --hub-accent: #0066d6;
  --hub-accent-glow: #0088ff;
  --hub-accent-hover: #1a8eff;
  --hub-accent-red: #e31837;
  
  --hub-text-primary: #f8fafc;
  --hub-text-secondary: #94a3b8;
  --hub-text-muted: #64748b;
  
  --font-display: 'Outfit', 'Syne', sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--hub-canvas);
  color: var(--hub-text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  position: relative;
  background-color: var(--hub-canvas);
  min-height: 100vh;
  overflow-x: clip;
}

/* Ambient Glow */
.ambient-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: 
    radial-gradient(circle at 10% 15%, rgba(0, 102, 214, 0.15) 0%, transparent 45%),
    radial-gradient(circle at 90% 75%, rgba(227, 24, 55, 0.1) 0%, transparent 45%);
  z-index: 1;
}

.hub-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.hub-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 18px 0;
  background: rgba(5, 7, 12, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.agency-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.agency-brand-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0, 102, 214, 0.4);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.25s ease;
}

.agency-logo:hover .agency-brand-img {
  transform: scale(1.05);
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #ffffff;
  line-height: 1.1;
}

.logo-tagline {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #0066d6;
  margin-top: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-wa-header {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 600;
  color: #25D366;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-wa-header:hover {
  background: #25D366;
  color: #060e0c;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
}

.hub-nav {
  display: flex;
  gap: 32px;
}

.hub-nav a {
  color: var(--hub-text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.hub-nav a:hover {
  color: #ffffff;
}

/* Hero Contact Quick-Connect Strip */
.hero-contact-pill-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 40px;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.25s ease;
}

.contact-pill.wa-pill {
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #ffffff;
}

.contact-pill.wa-pill:hover {
  background: #25D366;
  color: #060e0c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.contact-pill.email-pill {
  background: rgba(0, 102, 214, 0.12);
  border: 1px solid rgba(0, 102, 214, 0.4);
  color: #ffffff;
}

.contact-pill.email-pill:hover {
  background: #0066d6;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 214, 0.4);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.25s var(--ease-smooth);
}

.btn-primary {
  background: linear-gradient(135deg, #0066d6, #004da6);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(0, 102, 214, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1a8eff, #0066d6);
  box-shadow: 0 6px 24px rgba(0, 102, 214, 0.6);
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.06);
  color: var(--hub-text-primary);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.82rem;
}

.btn-block {
  width: 100%;
}

/* Hero */
.hub-hero {
  padding: 110px 0 70px;
  position: relative;
  z-index: 10;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--hub-accent-glow);
  background: rgba(0, 102, 214, 0.15);
  border: 1px solid rgba(0, 102, 214, 0.4);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(135deg, #3894ff 0%, #ffffff 50%, #ff4d67 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtext {
  font-size: 1.15rem;
  max-width: 760px;
  margin: 0 auto 40px;
  color: var(--hub-text-secondary);
  line-height: 1.65;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 600px;
  margin: 0 auto;
}

.stat-item .stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: #ffffff;
}

.stat-item .stat-lbl {
  font-size: 0.8rem;
  font-family: var(--font-mono);
  color: var(--hub-text-muted);
}

/* Showcase Section */
.showcase-section {
  padding: 80px 0;
  position: relative;
  z-index: 10;
}

.section-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.section-kicker {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--hub-accent-glow);
  letter-spacing: 0.15em;
  margin-bottom: 6px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
}

.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--hub-text-secondary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: rgba(0, 102, 214, 0.2);
  border-color: var(--hub-accent-glow);
  color: #ffffff;
}

/* Demos Grid */
.demos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(540px, 1fr));
  gap: 32px;
}

.glass-panel {
  background: var(--hub-panel);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--hub-panel-border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  transition: all 0.3s var(--ease-smooth);
}

.demo-card:hover {
  border-color: var(--hub-panel-border-hover);
  box-shadow: 0 24px 60px rgba(0, 102, 214, 0.25);
  transform: translateY(-4px);
}

.card-thumb-wrap {
  position: relative;
  width: 100%;
  height: 310px;
  background-color: #020306;
  overflow: hidden;
}

.card-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.demo-card:hover .card-thumb {
  transform: scale(1.04);
}

.thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.luxury-bg {
  background: radial-gradient(circle at 50% 50%, #1a1710 0%, #080705 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.tech-bg {
  background: radial-gradient(circle at 50% 50%, #0d1a24 0%, #04080d 100%);
  border-bottom: 1px solid rgba(0, 170, 255, 0.2);
}

.auto-bg {
  background: radial-gradient(circle at 50% 50%, #1e1215 0%, #0a0406 100%);
  border-bottom: 1px solid rgba(255, 50, 80, 0.2);
}

.concept-icon {
  font-size: 3rem;
}

.concept-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: #ffffff;
}

.live-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid rgba(34, 197, 94, 0.5);
  color: #22c55e;
  padding: 4px 10px;
  border-radius: 6px;
  backdrop-filter: blur(8px);
}

.badge-concept {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(0, 102, 214, 0.25);
  border: 1px solid rgba(0, 102, 214, 0.5);
  color: #3894ff;
  padding: 4px 10px;
  border-radius: 6px;
  backdrop-filter: blur(8px);
}

.thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 12, 0.6);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.demo-card:hover .thumb-overlay {
  opacity: 1;
}

.btn-play-demo {
  background: #ffffff;
  color: #05070c;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  transition: transform 0.2s ease;
}

.btn-play-demo:hover {
  transform: scale(1.05);
}

.card-body {
  padding: 28px;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.tag-cat {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--hub-accent-glow);
  background: rgba(0, 102, 214, 0.15);
  padding: 3px 8px;
  border-radius: 4px;
}

.tag-feat {
  font-size: 0.75rem;
  color: var(--hub-text-muted);
  background: rgba(255, 255, 255, 0.05);
  padding: 3px 8px;
  border-radius: 4px;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.card-desc {
  font-size: 0.92rem;
  color: var(--hub-text-secondary);
  line-height: 1.55;
  margin-bottom: 24px;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

/* Process Section */
.process-section {
  padding: 100px 0;
  position: relative;
  z-index: 10;
  background: rgba(10, 14, 23, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-head {
  margin-bottom: 50px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.process-card {
  padding: 32px 24px;
}

.step-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 900;
  color: rgba(0, 102, 214, 0.5);
  margin-bottom: 14px;
}

.process-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.process-card p {
  font-size: 0.9rem;
  color: var(--hub-text-secondary);
  line-height: 1.5;
}

/* Inquiry Drawer */
.inquiry-drawer {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.inquiry-drawer.open {
  opacity: 1;
  visibility: visible;
}

.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
}

.drawer-panel {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 100%;
  border-radius: 0;
  border-left: 1px solid var(--hub-panel-border-hover);
  padding: 40px 32px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-smooth);
}

.inquiry-drawer.open .drawer-panel {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
}

.drawer-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  margin-top: 6px;
}

.btn-close {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 1.1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--hub-text-secondary);
}

.hub-input,
.hub-textarea,
.hub-select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: all 0.2s ease;
}

.hub-input:focus,
.hub-textarea:focus,
.hub-select:focus {
  border-color: var(--hub-accent-glow);
  box-shadow: 0 0 12px rgba(0, 102, 214, 0.5);
}

.phone-input-group {
  display: flex;
  gap: 10px;
  width: 100%;
}

.country-select {
  width: 145px;
  flex-shrink: 0;
  background: #0c121e;
  cursor: pointer;
}

.country-select option {
  background: #0c121e;
  color: #ffffff;
  padding: 6px;
}

.phone-number-input {
  flex: 1;
  min-width: 0;
}

.form-group.has-error .hub-input,
.form-group.has-error .country-select {
  border-color: #ff4d4f !important;
  box-shadow: 0 0 10px rgba(255, 77, 79, 0.35) !important;
}

.field-error-msg {
  font-size: 0.76rem;
  color: #ff6b6b;
  margin-top: 6px;
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  animation: fadeIn 0.2s ease;
}

.drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

/* Footer */
.hub-footer {
  padding: 60px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 10;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--hub-text-muted);
  max-width: 400px;
  margin-top: 8px;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--hub-text-muted);
}

/* Responsive */
@media (max-width: 860px) {
  .hub-hero {
    padding: 70px 0 40px;
  }

  .hero-headline {
    font-size: 2.3rem;
  }

  .hero-subtext {
    font-size: 1rem;
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-item .stat-num {
    font-size: 1.6rem;
  }

  .demos-grid {
    grid-template-columns: 1fr;
  }

  .hub-nav {
    display: none;
  }

  .card-footer {
    flex-direction: column;
  }

  .card-thumb-wrap {
    height: 230px;
  }

  .card-body {
    padding: 20px;
  }

  .section-heading {
    font-size: 1.8rem;
  }

  .filter-tabs {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 8px;
    width: 100%;
  }

  .drawer-panel {
    max-width: 100%;
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .hub-header {
    padding: 12px 0;
  }

  .logo-mark {
    font-size: 1.1rem;
    padding: 3px 7px;
  }

  .logo-name {
    font-size: 1.05rem;
  }

  .header-actions .btn {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  .hero-headline {
    font-size: 1.9rem;
  }
}


/* ==========================================================================
   240-FRAME KINETIC HERO VIDEO SCROLL ENGINE STYLES
   ========================================================================== */

/* Fixed Hero Video Canvas */
.fixed-canvas-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
  background: var(--hub-canvas);
}

.fullscreen-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.scrim-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 35%, rgba(5, 7, 12, 0.75) 100%);
  pointer-events: none;
}

.scrim-vignette {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 140px rgba(0, 0, 0, 0.9);
  pointer-events: none;
}

.editorial-watermark-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(6rem, 16vw, 18rem);
  color: rgba(0, 102, 214, 0.03);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.15em;
  font-weight: 900;
}

/* Header HUD Indicator */
.journey-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  background: rgba(14, 22, 34, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 6px 14px;
  border-radius: 40px;
  border: 1px solid rgba(0, 102, 214, 0.35);
  color: #1a8eff;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0066d6;
  box-shadow: 0 0 10px #0066d6;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

/* Scroll Journey Track (380vh) */
.story-track {
  position: relative;
  height: 380vh;
  z-index: 10;
}

.story-chapter {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  padding: 0 5vw;
}

.story-chapter.active {
  opacity: 1;
  pointer-events: auto;
}

.story-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}

/* Kinetic Glass Card */
.kinetic-block {
  max-width: 500px;
  pointer-events: auto;
  background: rgba(8, 14, 24, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 30px 34px;
  border-radius: 16px;
  border: 1px solid rgba(0, 102, 214, 0.3);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75);
}

.kinetic-block.align-left {
  margin-right: auto;
}

.kinetic-block.align-right {
  margin-left: auto;
}

.kinetic-block.align-center {
  margin: 0 auto;
  text-align: center;
  max-width: 560px;
}

/* Kinetic 1-Line-at-a-Time Staggered Slide In */
.line-anim {
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.align-left .line-anim {
  transform: translateX(-30px);
}

.align-right .line-anim {
  transform: translateX(30px);
}

.align-center .line-anim {
  transform: translateY(20px);
}

/* Active Stagger Delays */
.story-chapter.active .line-anim {
  opacity: 1;
  transform: translate(0, 0);
}

.story-chapter.active .line-1 {
  transition-delay: 0.05s;
}

.story-chapter.active .line-2 {
  transition-delay: 0.15s;
}

.story-chapter.active .line-3 {
  transition-delay: 0.25s;
}

.story-chapter.active .line-4 {
  transition-delay: 0.35s;
}

.kinetic-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.70rem;
  letter-spacing: 0.14em;
  color: #1a8eff;
  margin-bottom: 12px;
  background: rgba(0, 102, 214, 0.12);
  border: 1px solid rgba(0, 102, 214, 0.3);
  padding: 4px 12px;
  border-radius: 20px;
}

.kinetic-badge.center-badge {
  margin: 0 auto 12px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0066d6;
  box-shadow: 0 0 8px #0066d6;
}

.kinetic-title {
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 1.22;
  margin-bottom: 12px;
  font-weight: 800;
  color: #ffffff;
}

.kinetic-desc {
  font-size: 0.90rem;
  line-height: 1.6;
  color: var(--hub-text-secondary);
  margin-bottom: 18px;
}

.kinetic-pills-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.spec-pill {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 600;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 6px 14px;
  border-radius: 20px;
}

.hero-intro-block {
  transform-origin: center bottom;
  will-change: transform, opacity;
}

.scroll-prompt-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.70rem;
  color: #1a8eff;
  margin-top: 14px;
  border-top: 1px dashed rgba(0, 102, 214, 0.3);
  padding-top: 10px;
}

.prompt-arrow {
  font-weight: 700;
  font-size: 0.85rem;
  display: inline-block;
  animation: bounceArrow 1.6s infinite ease-in-out;
}

@keyframes bounceArrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

.chapter-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Lower Website Content */
.website-content {
  position: relative;
  z-index: 50;
  background: var(--hub-canvas);
  box-shadow: 0 -40px 100px rgba(0, 0, 0, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Direct Contact Cards in Section */
.direct-contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 700px;
  margin: 0 auto 40px;
}

.contact-box {
  padding: 24px;
  text-decoration: none;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.25s ease;
}

.contact-box:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 102, 214, 0.5);
  box-shadow: 0 10px 30px rgba(0, 102, 214, 0.2);
}

.contact-box-icon {
  font-size: 2rem;
  background: rgba(255, 255, 255, 0.08);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-box-info {
  text-align: left;
}

.contact-box-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #1a8eff;
  letter-spacing: 0.08em;
  display: block;
}

.contact-box-val {
  font-size: 1.05rem;
  color: #ffffff;
  display: block;
  margin-top: 2px;
}

/* ==========================================================================
   MOBILE SCREEN PERFECTION (HEADER, LOGO, TYPOGRAPHY, PADDING)
   ========================================================================== */
@media (max-width: 768px) {
  .hub-header {
    padding: 8px 0;
  }

  .hub-container {
    padding: 0 14px;
  }

  .btn-wa-header {
    display: none !important; /* Hide phone number on mobile header */
  }

  .journey-indicator,
  .hub-nav {
    display: none !important;
  }

  .agency-logo {
    gap: 8px;
  }

  .agency-brand-img {
    width: 32px;
    height: 32px;
  }

  .logo-name {
    font-size: 0.88rem;
    letter-spacing: 0.02em;
  }

  .logo-tagline {
    font-size: 0.44rem;
  }

  .header-actions .btn {
    font-size: 0.70rem;
    padding: 5px 12px;
    border-radius: 20px;
  }

  .story-chapter {
    top: 50px;
    height: calc(100vh - 50px);
    align-items: flex-end;
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .story-chapter.chapter-1 {
    align-items: center !important;
    justify-content: center !important;
    padding-bottom: 0 !important;
  }

  .center-pills {
    justify-content: center !important;
  }

  .center-prompt {
    justify-content: center !important;
  }

  .kinetic-block {
    max-width: 100%;
    width: 100%;
    margin: 0 auto !important;
    padding: 16px 16px;
    border-radius: 14px;
    background: rgba(5, 8, 14, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .kinetic-badge {
    font-size: 0.58rem;
    padding: 3px 8px;
    margin-bottom: 6px;
  }

  .kinetic-title {
    font-size: 1.25rem;
    line-height: 1.22;
    margin-bottom: 5px;
  }

  .kinetic-desc {
    font-size: 0.72rem;
    line-height: 1.4;
    margin-bottom: 10px;
  }

  .kinetic-pills-row {
    gap: 6px;
  }

  .spec-pill {
    font-size: 0.62rem;
    padding: 4px 8px;
  }
}
