/* ============================================
   StratIntel — Global Styles
   ============================================ */

/* Alliance No.2 — self-hosted (Palantir heading font) */
@font-face {
  font-family: 'Alliance No.2';
  src: url('Alliance%20No.2%20Regular.otf') format('opentype');
  font-weight: 300 400;
  font-style: normal;
  font-display: swap;
}

/* Reset & Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #0a0a0a;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.07);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.6);
  --text-muted: rgba(255, 255, 255, 0.35);
  --border-subtle: rgba(255, 255, 255, 0.1);
  --border-focus: rgba(255, 255, 255, 0.4);
  --accent: #4a9eff;
  --accent-glow: rgba(74, 158, 255, 0.25);
  --success: #34d399;
  --error: #f87171;
  --font-heading: 'Alliance No.2', 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
  transition: background 0.4s ease;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-primary);
}

.nav-logo span {
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--text-primary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-size: 13px !important;
  font-weight: 300 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  padding: 10px 28px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0;
  transition: all 0.3s ease !important;
}

.nav-cta:hover {
  background: var(--text-primary);
  color: var(--bg-primary) !important;
  border-color: var(--text-primary);
}

.nav-cta::after {
  display: none !important;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.15) 40%,
      rgba(0, 0, 0, 0.15) 60%,
      rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(40px, 7vw, 90px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.2s ease forwards;
  animation-delay: 0.3s;
}

.hero-subtitle {
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 300;
  color: var(--text-secondary);
  margin-top: 24px;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.8s;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 48px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 1.2s;
}

.btn-primary {
  display: inline-block;
  padding: 14px 40px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bg-primary);
  background: var(--text-primary);
  border: 1px solid var(--text-primary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: transparent;
  color: var(--text-primary);
}

.btn-outline {
  display: inline-block;
  padding: 14px 40px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-primary);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  border-color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  animation: fadeInUp 1s ease forwards, float 2.5s ease-in-out infinite;
  animation-delay: 1.8s, 2.8s;
}

.scroll-indicator svg {
  width: 24px;
  height: 24px;
  stroke: var(--text-muted);
}

/* ============================================
   About Section
   ============================================ */
.section {
  padding: 120px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 200;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.section-text {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 680px;
}

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.feature-card {
  padding: 40px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.feature-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   Engagement Page — Executive Split-Screen
   ============================================ */
.engage-split {
  display: flex;
  min-height: 100vh;
  width: 100%;
}

/* Left: Brand reinforcement with video */
.engage-left {
  position: fixed;
  top: 0;
  left: 0;
  width: 45%;
  height: 100vh;
  overflow: hidden;
}

.engage-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
}

.engage-left-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.engage-left-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 48px;
}

.engage-logo {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-primary);
}

.engage-logo span {
  font-weight: 600;
}

.engage-left-tagline {
  padding-bottom: 40px;
}

.engage-left-tagline p {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 200;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.85);
}

/* Right: Engagement form panel */
.engage-right {
  margin-left: 45%;
  flex: 1;
  background: #fafafa;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.engage-right-header {
  display: flex;
  justify-content: flex-end;
  padding: 32px 48px;
}

.engage-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #555;
  transition: color 0.3s ease;
}

.engage-close:hover {
  color: #1a1a1a;
}

.engage-right-body {
  flex: 1;
  padding: 0 64px 80px;
  max-width: 600px;
}

/* Header content */
.engage-header {
  margin-bottom: 56px;
}

.engage-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 16px;
}

.engage-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 300;
  color: #1a1a1a;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 14px;
}

.engage-credibility {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: #999;
  letter-spacing: 0.3px;
}

/* Form */
.engage-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.engage-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.engage-field {
  display: flex;
  flex-direction: column;
}

.engage-field label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 10px;
}

.engage-field label .req {
  color: #b55a30;
  font-weight: 600;
}

.engage-field input {
  width: 100%;
  padding: 12px 0;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: #1a1a1a;
  background: transparent;
  border: none;
  border-bottom: 1px solid #d0d0d0;
  border-radius: 0;
  outline: none;
  transition: border-color 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
}

.engage-field input::placeholder {
  color: #bbb;
}

.engage-field input:focus {
  border-bottom-color: #1a1a1a;
}

/* Context field — visually prominent */
.engage-field--context {
  margin-top: 8px;
}

.engage-field--context label {
  font-size: 10px;
  letter-spacing: 2px;
  line-height: 1.5;
  margin-bottom: 12px;
}

.engage-field textarea {
  width: 100%;
  padding: 16px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: #1a1a1a;
  background: #ffffff;
  border: 1px solid #d0d0d0;
  border-radius: 0;
  outline: none;
  resize: vertical;
  min-height: 140px;
  line-height: 1.7;
  transition: border-color 0.3s ease;
}

.engage-field textarea:focus {
  border-color: #1a1a1a;
}

/* Submit button */
.engage-submit {
  align-self: flex-start;
  padding: 15px 44px;
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #1a1a1a;
  background: transparent;
  border: 1px solid #1a1a1a;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.engage-submit:hover {
  background: #1a1a1a;
  color: #ffffff;
}

.engage-submit:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.engage-submit.loading {
  color: transparent;
}

.engage-submit.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  border: 2px solid #1a1a1a;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* Trust & governance */
.engage-trust {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #e5e5e5;
}

.engage-trust p {
  font-size: 12px;
  font-weight: 300;
  color: #999;
  line-height: 1.8;
  letter-spacing: 0.2px;
}

.engage-trust a {
  color: #666;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.3s ease;
}

.engage-trust a:hover {
  color: #1a1a1a;
}

/* Toast notification */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  border-radius: 4px;
  z-index: 1000;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast.success {
  background: rgba(52, 211, 153, 0.15);
  color: var(--success);
  border: 1px solid rgba(52, 211, 153, 0.3);
}

.toast.error {
  background: rgba(248, 113, 113, 0.15);
  color: var(--error);
  border: 1px solid rgba(248, 113, 113, 0.3);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-text {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--text-primary);
}

/* ============================================
   Privacy Page — Institutional Policy Layout
   ============================================ */

/* Force navbar visible on privacy page */
.navbar--privacy {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Privacy Hero */
.privacy-hero {
  padding: 180px 48px 80px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.privacy-hero-content {
  max-width: 700px;
}

.privacy-hero-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.2s;
}

.privacy-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 200;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.4s;
}

.privacy-hero-subtitle {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-secondary);
  letter-spacing: 0.3px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.6s;
}

.privacy-hero-line {
  margin-top: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--border-subtle) 0%, transparent 100%);
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.8s;
}

/* Privacy Content */
.privacy-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 48px 120px;
}

/* Each policy section */
.privacy-section {
  display: flex;
  gap: 48px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border-subtle);
  align-items: flex-start;
}

.privacy-section:last-child {
  border-bottom: none;
}

.privacy-section-number {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--accent);
  min-width: 48px;
  padding-top: 4px;
  opacity: 0.7;
}

.privacy-section-body {
  flex: 1;
}

.privacy-section-body h2 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 300;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 20px;
}

.privacy-section-body h3 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 28px;
  margin-bottom: 14px;
}

.privacy-section-body p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
  max-width: 640px;
}

.privacy-section-body p:last-child {
  margin-bottom: 0;
}

.privacy-section-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.privacy-section-body ul li {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
}

.privacy-section-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 1px;
  background: var(--accent);
}

.privacy-section-body a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(74, 158, 255, 0.3);
  transition: border-color 0.3s ease, color 0.3s ease;
}

.privacy-section-body a:hover {
  border-bottom-color: var(--accent);
  color: #fff;
}

/* Highlighted statement */
.privacy-highlight {
  color: var(--text-primary) !important;
  font-weight: 400 !important;
  border-left: 2px solid var(--accent);
  padding-left: 16px;
  margin-top: 16px !important;
}

/* Contact CTA button */
.privacy-cta {
  display: inline-block;
  margin-top: 16px;
  padding: 14px 40px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-primary);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
  cursor: pointer;
  transition: all 0.3s ease;
}

.privacy-cta:hover {
  background: var(--text-primary);
  color: var(--bg-primary) !important;
  border-color: var(--text-primary) !important;
}

/* Privacy page responsive */
@media (max-width: 650px) {
  .privacy-hero {
    padding: 140px 24px 48px;
  }

  .privacy-content {
    padding: 20px 24px 80px;
  }

  .privacy-section {
    flex-direction: column;
    gap: 12px;
    padding: 32px 0;
  }

  .privacy-section-number {
    min-width: auto;
  }
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Fade-in on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .navbar {
    padding: 20px 24px;
  }

  .section {
    padding: 80px 24px;
  }

  .engage-left {
    width: 35%;
  }

  .engage-right {
    margin-left: 35%;
  }

  .engage-right-body {
    padding: 0 32px 40px;
  }
}

@media (max-width: 650px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .engage-row {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 18px;
  }

  .nav-toggle {
    display: flex;
    z-index: 101;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }

  .footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 32px 24px;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  /* Engagement page: stack vertically on mobile */
  .engage-split {
    flex-direction: column;
  }

  .engage-left {
    position: relative;
    width: 100%;
    height: 40vh;
  }

  .engage-right {
    margin-left: 0;
    min-height: auto;
  }

  .engage-right-body {
    padding: 0 24px 40px;
  }

  .engage-right-header {
    padding: 16px 24px;
  }
}