/* ============================================================
   BRIDGEED — styles.css (Updated for WCAG AA & Enterprise Polish)
   Sections:
   1. Design Tokens (CSS Custom Properties)
   2. Reset & Base
   3. Reduced Motion
   4. Accessibility & Focus States
   5. Typography
   6. Layout
   7. Buttons
   8. Badge
   9. Card
   10. Header
   11. Mobile Menu
   12. Hero
   13. Trust Bar
   14. Platform Section
   15. Ecosystem
   16. Decision Signals
   17. Demo
   18. Compliance
   19. Implementation / Timeline
   20. Team / Leadership
   21. FAQ
   22. CTA Section
   23. Footer
   24. Animations & Reveal
   25. Utilities
   ============================================================ */

/* ===== 1. DESIGN TOKENS ===== */
:root {
  --navy: #111827;
  --navy-90: rgba(17, 24, 39, 0.9);
  --navy-70: rgba(17, 24, 39, 0.7);
  --navy-60: rgba(17, 24, 39, 0.6);
  --navy-50: rgba(17, 24, 39, 0.5);
  --navy-40: rgba(17, 24, 39, 0.4);
  --navy-20: rgba(17, 24, 39, 0.2);
  --navy-10: rgba(17, 24, 39, 0.1);
  --navy-5: rgba(17, 24, 39, 0.05);
  
  /* WCAG 2.1 AA Compliant Accent Palette */
  --teal: #007e72;       /* High-contrast dark teal for light backgrounds (passes 4.5:1) */
  --teal-light: #00b5a4; /* Vibrant light teal for dark backgrounds and focus rings */
  --teal-10: rgba(0, 126, 114, 0.1);
  --teal-20: rgba(0, 126, 114, 0.2);
  --teal-30: rgba(0, 126, 114, 0.3);
  
  --gold: #c9a84c;
  --status-critical: #cc3333;
  --status-warning: #c9a84c;
  --status-ok: #007e72;
  --warm-white: #fafaf8;
  --off-white: #f3f2ef;
  --white: #ffffff;
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 3px rgba(17, 24, 39, 0.07), 0 1px 2px rgba(17, 24, 39, 0.05);
  --shadow-md: 0 4px 12px rgba(17, 24, 39, 0.09), 0 2px 4px rgba(17, 24, 39, 0.05);
  --shadow-lg: 0 8px 32px rgba(17, 24, 39, 0.11), 0 4px 8px rgba(17, 24, 39, 0.05);
  --shadow-xl: 0 20px 60px rgba(17, 24, 39, 0.13), 0 8px 16px rgba(17, 24, 39, 0.06);
  --shadow-glow: 0 0 40px rgba(0, 126, 114, 0.18);
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --max-w: 1280px;
}

/* ===== 2. RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  color: #111827;
  background: #fafaf8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

ul {
  list-style: none;
}

section {
  padding: 56px 0;
}

@media (min-width: 1024px) {
  section {
    padding: 120px 0;
  }
}

#ecosystem,
#demo,
#implementation,
#faq {
  background: var(--off-white);
  border-top: 1px solid var(--navy-10);
  border-bottom: 1px solid var(--navy-10);
}

/* ===== 3. REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal-scale,
  .reveal-left,
  .reveal-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .trust-bar-track {
    animation: none !important;
    overflow-x: auto;
    width: 100%;
  }

  .progress-fill,
  .progress-animate {
    transition: none !important;
  }
}

/* ===== 4. ACCESSIBILITY & FOCUS STATES ===== */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--navy);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  z-index: 9999;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: top 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  border: 2px solid var(--teal-light);
}

.skip-to-content:focus {
  top: 20px;
  outline: none;
}

*:focus-visible {
  outline: 3px solid var(--teal) !important;
  outline-offset: 3px !important;
}

/* Adjust focus visible ring on dark backgrounds */
#cta *:focus-visible,
footer *:focus-visible,
#mobile-menu *:focus-visible,
.signals-list *:focus-visible,
.signal-visual-card *:focus-visible {
  outline-color: var(--teal-light) !important;
}

/* ===== 5. TYPOGRAPHY ===== */
.font-display {
  font-family: "Outfit", sans-serif;
}

.text-display-xl {
  font-size: clamp(36px, 5.5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.text-display-lg {
  font-size: clamp(28px, 4.2vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.text-display-md {
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.text-display-sm {
  font-size: clamp(20px, 2.5vw, 24px);
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.text-heading-1 {
  font-size: clamp(19px, 2.3vw, 26px);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.text-heading-2 {
  font-size: clamp(16px, 1.8vw, 21px);
  line-height: 1.35;
  letter-spacing: -0.008em;
}

.text-body-lg {
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.72;
}

.text-body-md {
  font-size: 16px;
  line-height: 1.68;
}

.text-body-sm {
  font-size: 14px;
  line-height: 1.6;
}

.text-label {
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ===== 6. LAYOUT ===== */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 48px;
  }
}

.section-header {
  margin-bottom: 56px;
}

@media (min-width: 1024px) {
  .section-header {
    margin-bottom: 80px;
  }
}

/* ===== 7. BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  min-height: 48px;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  padding: 14px 28px;
  border-radius: var(--radius-md);
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: 0 4px 14px rgba(17, 24, 39, 0.28);
}

.btn-primary:hover {
  background: var(--teal);
  border-color: var(--teal);
  box-shadow: 0 6px 20px rgba(0, 126, 114, 0.32);
}

.btn-secondary {
  padding: 14px 28px;
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--navy);
  border-color: var(--navy-20);
}

.btn-secondary:hover {
  border-color: var(--navy-40);
  background: var(--navy-5);
  color: var(--teal);
}

.btn-teal {
  padding: 14px 28px;
  border-radius: var(--radius-md);
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  box-shadow: 0 4px 14px rgba(0, 126, 114, 0.28);
}

.btn-teal:hover {
  background: var(--teal-light);
  border-color: var(--teal-light);
  box-shadow: 0 6px 20px rgba(0, 181, 164, 0.35);
}

.btn-ghost {
  padding: 10px 20px;
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--navy);
  border-color: transparent;
  min-height: 44px;
}

.btn-ghost:hover {
  border-color: var(--navy-20);
  background: var(--navy-5);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 12px;
  min-height: 44px;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 14px;
  min-height: 56px;
}

.btn-full {
  width: 100%;
}

.btn-icon {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
  transform: translateX(3px);
}

/* ===== 8. BADGE ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.badge-teal {
  background: var(--teal-10);
  color: var(--teal);
  border: 1px solid var(--teal-30);
}

.badge-navy {
  background: var(--navy-5);
  color: var(--navy);
  border: 1px solid var(--navy-10);
}

.badge-pulse::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.38; }
}

/* ===== 9. CARD ===== */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--navy-10);
  box-shadow: var(--shadow-sm);
}

.card-hover {
  transition: var(--transition);
}

.card-hover:hover {
  border-color: var(--teal-30);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* ===== 10. HEADER ===== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 64px;
  transition: var(--transition);
}

#header.scrolled {
  background: rgba(250, 250, 248, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--navy-10);
}

@supports not (backdrop-filter: blur(14px)) {
  #header.scrolled {
    background: rgba(250, 250, 248, 0.98);
  }
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .header-inner {
    padding: 0 40px;
  }
}

@media (min-width: 1024px) {
  .header-inner {
    padding: 0 48px;
  }
}

.header-logo img {
  height: 28px;
  width: auto;
}

.header-nav {
  display: none;
}

@media (min-width: 1024px) {
  .header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
  }
}

.nav-link {
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-60);
  transition: color 0.2s;
  border-radius: var(--radius-sm);
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: left;
}

.nav-link:hover {
  color: var(--navy);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--navy);
}

.header-ctas {
  display: none;
}

@media (min-width: 1024px) {
  .header-ctas {
    display: flex;
    align-items: center;
    gap: 10px;
  }
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
  color: var(--navy);
}

.mobile-menu-btn:hover {
  background: var(--navy-5);
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* ===== 11. MOBILE MENU (FOCUS TRAPPED) ===== */
#mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: var(--navy);
  background-image: radial-gradient(circle at 100% 0%, rgba(0, 126, 114, 0.12), transparent 50%),
                    radial-gradient(circle at 0% 100%, rgba(0, 126, 114, 0.05), transparent 40%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 20px 48px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

#mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.mobile-menu-logo {
  display: flex;
  align-items: center;
}

.mobile-menu-logo-img {
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1);
}

.mobile-close {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s, border-color 0.2s;
}

.mobile-close:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.mobile-menu-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
  margin-bottom: auto;
  padding-left: 12px;
}

.mobile-nav-link {
  font-family: "Outfit", sans-serif;
  font-size: 26px;
  font-weight: 500;
  color: white;
  letter-spacing: 0.02em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: color 0.2s, transform 0.2s;
}

.mobile-nav-link .nav-number {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-light);
  letter-spacing: 0.05em;
  font-family: monospace;
}

.mobile-nav-link:hover {
  color: var(--teal-light);
  transform: translateX(4px);
}

.mobile-menu-footer {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  margin-top: 40px;
  padding: 0 12px;
}

.mobile-menu-footer-info {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-menu-footer-tagline {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  font-weight: 500;
}

.mobile-menu-footer-contact {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
  align-self: flex-start;
}

.mobile-menu-footer-contact:hover {
  color: var(--teal-light);
}

/* ===== 12. HERO ===== */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--warm-white);
  padding: 96px 0 64px;
  overflow: hidden;
}

@media (min-width: 1024px) {
  #hero {
    padding: 120px 0 80px;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg-circle-1 {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid var(--navy-5);
}

.hero-bg-circle-2 {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(0, 126, 114, 0.08);
}

.hero-bg-blob {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--teal-10);
  filter: blur(80px);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.022;
  background-image: linear-gradient(var(--navy) 1px, transparent 1px),
    linear-gradient(90deg, var(--navy) 1px, transparent 1px);
  background-size: 64px 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
}

.hero-eyebrow {
  margin-bottom: 20px;
}

.hero-headline {
  font-family: "Outfit", sans-serif;
  font-size: clamp(36px, 5.5vw, 56px);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 24px;
  line-height: 1.12;
  letter-spacing: -0.015em;
  text-wrap: balance;
  max-width: 620px;
}

.hero-headline-accent {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
  font-weight: 700;
}

.hero-subtext {
  color: var(--navy-70);
  line-height: 1.68;
  margin-bottom: 36px;
  max-width: 540px;
  font-size: clamp(16px, 1.35vw, 18px);
}

@media (max-width: 768px) {
  .hero-headline {
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
  }
  .hero-subtext {
    margin-bottom: 24px;
  }
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

@media (min-width: 480px) {
  .hero-ctas {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.hero-microcopy {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
  font-size: 12px;
  color: var(--navy-60);
  letter-spacing: 0.03em;
  justify-content: center;
}

@media (min-width: 1024px) {
  .hero-microcopy {
    justify-content: flex-start;
  }
}

.hero-microcopy-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-microcopy-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--navy-10);
  margin-top: 4px;
}

@media (min-width: 768px) {
  .hero-stats {
    gap: 16px;
  }
}

.hero-stats > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 10px 6px;
  background: var(--navy-5);
  border: 1px solid var(--navy-10);
  border-radius: var(--radius-md);
  text-align: center;
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
}

.hero-stats > div:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: var(--teal-20);
}

@media (min-width: 768px) {
  .hero-stats > div {
    padding: 16px 12px;
  }
}

.hero-stat-value {
  font-family: "Outfit", sans-serif;
  font-size: clamp(24px, 4.5vw, 34px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
}

.hero-stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-70);
  margin-top: 6px;
  line-height: 1.3;
}

.hero-stat-source {
  font-size: 9px;
  color: var(--navy-50);
  margin-top: auto;
  padding-top: 4px;
  line-height: 1.2;
}

/* Hero Dashboard */
.hero-dashboard {
  position: relative;
  display: none;
}

@media (min-width: 1024px) {
  .hero-dashboard {
    display: block;
  }
}

.hero-dashboard-inner {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--navy-10);
  overflow: hidden;
}

.dashboard-header {
  background: var(--navy);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-header-dot {
  display: flex;
  gap: 6px;
}

.dashboard-header-dot span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.dashboard-title-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.dashboard-accent-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
}

.dashboard-body {
  padding: 20px;
  background: var(--off-white);
}

.dashboard-kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.kpi-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  border: 1px solid var(--navy-10);
  box-shadow: var(--shadow-sm);
}

.kpi-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-50);
  margin-bottom: 5px;
}

.kpi-value {
  font-family: "DM Sans", sans-serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.kpi-trend {
  font-size: 11px;
  margin-top: 4px;
}

.kpi-trend.up {
  color: var(--teal);
}

.kpi-trend.down {
  color: var(--status-critical);
}

.dashboard-tabs {
  display: inline-flex;
  gap: 4px;
  background: rgba(17, 24, 39, 0.06);
  padding: 4px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  border-bottom: none;
}

.db-tab {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--navy-60);
  padding: 6px 14px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  margin-bottom: 0;
}

.db-tab:hover {
  color: var(--navy);
}

.db-tab.active {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 2px 6px rgba(17, 24, 39, 0.08);
  border: none;
  margin-bottom: 0;
}

.dashboard-status-pill {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--teal-light);
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 181, 164, 0.1);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 2s infinite;
}

.db-main-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 640px) {
  .db-main-grid {
    grid-template-columns: 7fr 5fr;
  }
}

.db-alerts-panel,
.db-right-panel {
  background: var(--white);
  border: 1px solid var(--navy-10);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.db-panel-header {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-50);
  margin-bottom: 12px;
  border-bottom: 1px solid var(--navy-5);
  padding-bottom: 8px;
}

.db-alerts-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.db-alert-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--navy-5);
  background: var(--white);
  transition: all 0.2s;
}

.db-alert-item:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--navy-10);
}

.db-alert-item.warning { border-left: 3px solid var(--status-warning); }
.db-alert-item.critical { border-left: 3px solid var(--status-critical); }
.db-alert-item.success { border-left: 3px solid var(--status-ok); }

.alert-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
}

.alert-indicator.warning { background: var(--status-warning); }
.alert-indicator.critical { background: var(--status-critical); }
.alert-indicator.success { background: var(--status-ok); }

.db-alert-content { flex: 1; }

.db-alert-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
}

.db-alert-desc {
  font-size: 11px;
  color: var(--navy-60);
  margin-top: 2px;
  line-height: 1.4;
}

.db-progress-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.db-progress-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.db-progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--navy-70);
}

.db-progress-bar {
  height: 6px;
  background: var(--navy-5);
  border-radius: 3px;
  overflow: hidden;
}

.db-progress-fill {
  height: 100%;
  border-radius: 3px;
}

/* ===== 13. TRUST BAR (SLOWED & INTERACTIVE) ===== */
#trust-bar {
  background: var(--white);
  border-top: 1px solid var(--navy-10);
  border-bottom: 1px solid var(--navy-10);
  padding: 14px 0;
  overflow: hidden;
}

.trust-bar-track {
  display: flex;
  width: max-content;
  animation: marquee 45s linear infinite; /* Slowed down from 28s to 45s */
}

.trust-bar-track:hover {
  animation-play-state: paused; /* Pause on hover for accessibility */
}

.trust-bar-group {
  display: flex;
  gap: 48px;
  padding-right: 48px;
  align-items: center;
}

@keyframes marquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-60);
  white-space: nowrap;
}

.trust-bar-check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--teal-10);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
  font-weight: bold;
}

/* ===== 14. PLATFORM SECTION ===== */
#platform {
  background: var(--white);
  padding: 80px 0;
}

@media (min-width: 1024px) {
  #platform {
    padding: 120px 0;
  }
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

.section-headline {
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 18px;
  line-height: 1.08;
}

.section-subtext {
  color: var(--navy-60);
  line-height: 1.72;
  max-width: 640px;
  margin: 0 auto;
}

.platform-grid {
  display: none;
}

@media (min-width: 768px) {
  .platform-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (min-width: 1024px) {
  .platform-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.platform-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--navy-10);
  transition: var(--transition);
}

.platform-card:hover {
  border-color: var(--teal-30);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.platform-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--teal-10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: 16px;
  transition: var(--transition);
}

.platform-card:hover .platform-icon {
  background: var(--teal);
  color: white;
}

.platform-card-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
}

.platform-card-text {
  font-size: 14px;
  color: var(--navy-60);
  line-height: 1.62;
}

.platform-carousel-wrap {
  display: block;
}

@media (min-width: 768px) {
  .platform-carousel-wrap {
    display: none;
  }
}

.platform-carousel {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 2px 12px;
  scrollbar-width: none;
}

.platform-carousel::-webkit-scrollbar {
  display: none;
}

.platform-carousel .platform-card {
  flex-shrink: 0;
  width: 260px;
  scroll-snap-align: start;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: var(--navy-20);
  transition: all 0.3s;
  border: none;
  padding: 0;
}

.carousel-dot.active {
  background: var(--teal);
  width: 20px;
}

/* ===== 15. ECOSYSTEM ===== */
.ecosystem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 24px;
}

@media (min-width: 768px) {
  .ecosystem-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
  }
}

@media (min-width: 1024px) {
  .ecosystem-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }
}

.ecosystem-node {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition);
}

.ecosystem-node:hover {
  border-color: var(--teal-30);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.ecosystem-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--navy-5);
  color: var(--navy-70);
  margin-bottom: 14px;
}

.ecosystem-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
}

.ecosystem-desc {
  font-size: 13px;
  color: var(--navy-60);
  line-height: 1.6;
}

.ecosystem-connector-wrap {
  margin-top: 40px;
  position: relative;
  text-align: center;
}

.connector-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--navy-10);
  z-index: 1;
}

.connector-core {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: var(--white);
  border: 1px solid var(--navy-10);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  box-shadow: var(--shadow-sm);
}

.core-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s infinite;
}

/* ===== 16. DECISION SIGNALS ===== */
.signals-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 48px;
  align-items: start;
}

@media (min-width: 1024px) {
  .signals-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
  }
}

.signals-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 640px) {
  .signals-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .signals-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

/* --- Terminal Console Stream Polish --- */
.terminal-console-stream {
  margin-bottom: 20px;
  width: 100%;
}

.console-stream-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}

.console-pulse-dot {
  width: 6px;
  height: 6px;
  background-color: var(--teal-light);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--teal-light);
  animation: consolePulse 1.8s infinite ease-in-out;
}

@keyframes consolePulse {
  0%, 100% { opacity: 0.3; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.1); }
}

.console-stream-body {
  font-family: "SF Mono", "Fira Code", Monaco, Consolas, monospace;
  font-size: 11px;
  line-height: 1.6;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  height: 140px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
  text-align: left;
}

.console-stream-body::-webkit-scrollbar {
  width: 4px;
}

.console-stream-body::-webkit-scrollbar-track {
  background: transparent;
}

.console-stream-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
}

.log-row {
  display: flex;
  gap: 8px;
  opacity: 0;
  transform: translateY(4px);
  animation: logRowFadeIn 0.3s forwards ease-out;
  font-weight: 400;
  font-size: 11px;
}

@keyframes logRowFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

.log-timestamp {
  color: rgba(255, 255, 255, 0.3);
  user-select: none;
  flex-shrink: 0;
}

.log-tag {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 9px;
  padding: 1px 4px;
  border-radius: 3px;
  line-height: 1.2;
  flex-shrink: 0;
}

.log-tag.system {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
}

.log-tag.warn {
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold);
}

.log-tag.success {
  background: rgba(0, 181, 164, 0.15);
  color: var(--teal-light);
}

.log-tag.error {
  background: rgba(204, 51, 51, 0.15);
  color: var(--status-critical);
}

.log-text {
  color: rgba(255, 255, 255, 0.85);
  word-break: break-all;
  white-space: pre-wrap;
}

.log-highlight {
  color: var(--teal-light);
  font-weight: 500;
}


.signal-item {
  padding: 20px;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}

.signal-item:hover {
  border-color: var(--teal-20);
  background: var(--navy-5);
}

.signal-item.active {
  border-color: var(--teal-30);
  box-shadow: var(--shadow-md);
  background: var(--white);
  position: relative;
}

.signal-header-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.signal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.signal-dot.warning { background: var(--status-warning); }
.signal-dot.danger { background: var(--status-critical); }
.signal-dot.success { background: var(--status-ok); }
.signal-dot.info { background: #0070f3; }
.signal-dot.primary { background: var(--navy); }
.signal-dot.info-light { background: var(--teal-light); }

.signal-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
}

.signal-desc {
  font-size: 13px;
  color: var(--navy-60);
  line-height: 1.5;
}

.signal-visual-card {
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}

.visual-header {
  background: rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.visual-header-left {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-light);
}

.visual-header-right {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.4);
}

.visual-body {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: transparent;
  text-align: left;
}

.terminal-title {
  font-family: "Outfit", sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
  margin: 0;
  line-height: 1.25;
  transition: opacity 0.2s ease;
}

.terminal-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  min-height: 68px;
  transition: opacity 0.2s ease;
}

.terminal-metrics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 8px;
}

@media (min-width: 480px) {
  .terminal-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.terminal-metric-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all 0.3s ease;
}

.terminal-metric-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
}

.terminal-metric-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.terminal-metric-value {
  font-size: 19px;
  font-weight: 600;
  color: var(--white);
  margin: 0;
  letter-spacing: -0.01em;
}

/* ===== 17. DEMO ===== */
.demo-panel {
  padding: 32px 16px;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid var(--navy-10);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .demo-panel {
    padding: 56px 40px;
  }
}

.demo-panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(0, 126, 114, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.demo-content-wrap {
  position: relative;
  z-index: 2;
}

.demo-grid-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 1024px) {
  .demo-grid-layout {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 64px;
  }
}

.demo-content-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.demo-badge-top {
  margin-bottom: 20px;
}

.demo-headline {
  margin-bottom: 20px;
  text-align: left;
}

.demo-subtext {
  font-size: 16px;
  line-height: 1.7;
  color: var(--navy-70);
  margin-bottom: 24px;
  text-align: left;
}

.demo-features-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 8px;
}

.demo-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--navy-70);
  line-height: 1.5;
}

.demo-feature-icon {
  color: var(--teal);
  font-weight: bold;
  flex-shrink: 0;
  font-size: 16px;
  line-height: 1;
}

.demo-ctas-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 14px;
}

.demo-ctas-top {
  margin-top: 32px;
  width: 100%;
}

@media (min-width: 480px) {
  .demo-ctas-row {
    flex-direction: row;
  }
}

.demo-visual-col {
  perspective: 1000px;
  width: 100%;
}

.demo-portal-mockup {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--navy-10);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

@media (min-width: 768px) {
  .demo-portal-mockup {
    transform: rotateY(-4deg) rotateX(3deg);
  }
  .demo-portal-mockup:hover {
    transform: none;
    box-shadow: var(--shadow-glow), var(--shadow-xl);
  }
}

.portal-mock-header {
  background: var(--navy);
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.portal-mock-role {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.portal-mock-status {
  font-size: 9px;
  font-weight: 600;
  color: var(--teal-light);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.portal-mock-body {
  background: var(--off-white);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.portal-mock-card {
  background: var(--white);
  border: 1px solid var(--navy-10);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

.portal-mock-card.pm-accent-card {
  border-left: 3px solid var(--teal);
  background: rgba(0, 126, 114, 0.02);
}

.pm-card-title {
  font-size: 10px;
  font-weight: 600;
  color: var(--navy-50);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pm-timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pm-timeline-item {
  display: flex;
  gap: 12px;
  position: relative;
}

.pm-timeline-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 24px;
  bottom: -12px;
  width: 2px;
  background: var(--navy-10);
}

.pm-timeline-item.completed:not(:last-child)::after {
  background: var(--teal-20);
}

.pm-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--navy-5);
  border: 1px solid var(--navy-10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--navy-40);
  z-index: 2;
  flex-shrink: 0;
}

.pm-timeline-item.completed .pm-dot {
  background: var(--teal-10);
  border-color: var(--teal-30);
  color: var(--teal);
}

.pm-timeline-item.active .pm-dot {
  background: var(--white);
  border-color: var(--teal);
  color: var(--teal);
  animation: pulse-border 2s infinite;
}

.pm-label-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pm-label-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
}

.pm-label-desc {
  font-size: 11px;
  color: var(--navy-60);
}

.pm-boost-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pm-boost-time {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
}

.pm-boost-subject {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
}

.pm-boost-teacher {
  font-size: 11px;
  color: var(--navy-60);
}

/* ===== 18. COMPLIANCE ===== */
.compliance-layout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

@media (min-width: 1024px) {
  .compliance-layout-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
}

.compliance-info-col {
  display: flex;
  flex-direction: column;
}

.compliance-badges-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 12px;
}

@media (min-width: 480px) {
  .compliance-badges-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.comp-badge-box {
  background: var(--white);
  border: 1px solid var(--navy-10);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.comp-badge-box:hover {
  transform: translateY(-2px);
  border-color: var(--teal-30);
  box-shadow: var(--shadow-md);
}

.comp-badge-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-light), var(--teal));
  opacity: 0;
  transition: opacity 0.3s;
}

.comp-badge-box:hover::before {
  opacity: 1;
}

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

.comp-icon-box {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--teal-10);
  border: 1px solid var(--teal-10);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.comp-badge-box:hover .comp-icon-box {
  background: var(--teal-10);
  transform: scale(1.05);
}

.comp-status-tag {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-10);
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.comp-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  letter-spacing: -0.02em;
}

.comp-badge-text {
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--navy-60);
  margin: 0;
  font-weight: 400;
}

.compliance-checklist-col {
  background: var(--off-white);
  border: 1px solid var(--navy-10);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .compliance-checklist-col {
    padding: 40px;
  }
}

.checklist-header {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy-50);
  margin-bottom: 24px;
  border-bottom: 1px solid var(--navy-10);
  padding-bottom: 12px;
}

.technical-checklist {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tech-check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.tech-check-icon {
  color: var(--teal);
  font-weight: bold;
  font-size: 16px;
  line-height: 1;
  margin-top: 2px;
}

.tech-check-item strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 3px;
}

.tech-check-item p {
  font-size: 13px;
  color: var(--navy-60);
  line-height: 1.5;
}

/* ===== 19. IMPLEMENTATION / TIMELINE ===== */
.timeline-container {
  margin-top: 56px;
  position: relative;
}

.timeline-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  position: relative;
}

@media (min-width: 768px) {
  .timeline-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .timeline-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }
  .timeline-steps::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 48px;
    right: 48px;
    height: 2px;
    background: var(--navy-10);
    z-index: 1;
  }
}

.timeline-step {
  background: var(--white);
  border: 1px solid var(--navy-10);
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.timeline-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-20);
}

@media (min-width: 768px) {
  .timeline-step {
    padding: 28px 24px;
  }
}

.step-num-bubble {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.step-title-text {
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
}

.step-desc-text {
  font-size: 13px;
  color: var(--navy-60);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.step-timeline-meta {
  font-size: 11px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: auto;
}

@media (max-width: 767px) {
  .timeline-step {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 12px 14px;
    align-items: center;
  }
  .step-num-bubble {
    width: 36px;
    height: 36px;
    font-size: 16px;
    margin-bottom: 0;
    grid-row: 1;
    grid-column: 1;
  }
  .step-title-text {
    grid-row: 1;
    grid-column: 2;
    align-self: center;
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.25;
  }
  .step-desc-text {
    grid-row: 2;
    grid-column: 1 / span 2;
    margin-bottom: 8px;
    font-size: 13px;
  }
  .step-timeline-meta {
    grid-row: 3;
    grid-column: 1 / span 2;
    margin-top: 0;
  }
}

/* ===== 20. TEAM / LEADERSHIP ===== */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 36px;
}

@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 48px;
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.team-card {
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition);
}

.team-card:hover {
  border-color: var(--teal-20);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .team-card {
    padding: 32px 24px;
  }
}

.team-monogram {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: "Outfit", sans-serif;
  font-size: 22px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid var(--teal-20);
  box-shadow: var(--shadow-sm);
}

.team-name {
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 4px;
}

.team-role {
  font-size: 11px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.team-bio {
  font-size: 13px;
  color: var(--navy-60);
  line-height: 1.62;
}

@media (max-width: 767px) {
  .team-card {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 8px 14px;
    align-items: center;
  }
  .team-monogram {
    width: 44px;
    height: 44px;
    font-size: 18px;
    margin-bottom: 0;
    grid-row: 1 / span 2;
    grid-column: 1;
    align-self: center;
  }
  .team-name {
    grid-row: 1;
    grid-column: 2;
    font-size: 16px;
    margin-bottom: 0;
    line-height: 1.2;
  }
  .team-role {
    grid-row: 2;
    grid-column: 2;
    font-size: 10px;
    margin-bottom: 0;
    line-height: 1.2;
  }
  .team-bio {
    grid-row: 3;
    grid-column: 1 / span 2;
    font-size: 13px;
    margin-top: 4px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .team-card:last-child {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 12px 20px;
    align-items: center;
    padding: 28px 24px;
  }
  .team-card:last-child .team-monogram {
    grid-row: 1 / span 2;
    grid-column: 1;
    margin-bottom: 0;
    width: 56px;
    height: 56px;
    font-size: 22px;
  }
  .team-card:last-child .team-name {
    grid-row: 1;
    grid-column: 2;
    margin-bottom: 0;
    font-size: 18px;
  }
  .team-card:last-child .team-role {
    grid-row: 2;
    grid-column: 2;
    margin-bottom: 0;
    font-size: 11px;
  }
  .team-card:last-child .team-bio {
    grid-row: 3;
    grid-column: 1 / span 2;
    margin-top: 8px;
    font-size: 13px;
  }
}

@media (min-width: 1024px) {
  .team-card:last-child {
    grid-column: span 3;
    display: grid;
    grid-template-columns: 56px 220px 1fr;
    gap: 16px 28px;
    align-items: center;
    padding: 32px 40px;
  }
  .team-card:last-child .team-monogram {
    grid-row: 1 / span 2;
    grid-column: 1;
    margin-bottom: 0;
    width: 56px;
    height: 56px;
    font-size: 22px;
  }
  .team-card:last-child .team-name {
    grid-row: 1;
    grid-column: 2;
    margin-bottom: 2px;
    font-size: 18px;
  }
  .team-card:last-child .team-role {
    grid-row: 2;
    grid-column: 2;
    margin-bottom: 0;
    font-size: 11px;
  }
  .team-card:last-child .team-bio {
    grid-row: 1 / span 2;
    grid-column: 3;
    margin-top: 0;
    font-size: 13px;
    border-left: 1px solid var(--navy-10);
    padding-left: 28px;
  }
}

/* ===== 21. FAQ ===== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  border-bottom: 1px solid var(--navy-10);
}

.faq-item:first-child {
  border-top: 1px solid var(--navy-10);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 16px;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}

.faq-q {
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.4;
}

.faq-trigger:hover .faq-q {
  color: var(--teal);
}

.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--navy-5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--navy-60);
}

.faq-item.open .faq-icon {
  background: var(--teal-10);
  color: var(--teal);
  transform: rotate(45deg);
}

.faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.open .faq-body {
  max-height: 400px;
}

.faq-a {
  font-size: 15px;
  color: var(--navy-60);
  line-height: 1.72;
  padding-bottom: 20px;
}

.faq-still {
  text-align: center;
  margin-top: 40px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--navy-10);
}

.faq-still p {
  font-size: 15px;
  color: var(--navy-60);
  margin-bottom: 12px;
}

/* ===== 22. CTA SECTION ===== */
#cta {
  background: var(--navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  #cta {
    padding: 120px 0;
  }
}

.cta-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 126, 114, 0.13), transparent 70%);
  pointer-events: none;
}

.cta-bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: linear-gradient(white 1px, transparent 1px),
    linear-gradient(90deg, white 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.cta-eyebrow {
  margin-bottom: 20px;
}

.cta-badge {
  background: rgba(0, 126, 114, 0.16);
  color: var(--teal-light);
  border: 1px solid rgba(0, 126, 114, 0.32);
}

.cta-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-light);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

.cta-headline {
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  color: white;
  line-height: 1.08;
  margin-bottom: 18px;
}

.cta-subtext {
  font-size: clamp(15px, 1.5vw, 17px);
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.72;
  margin-bottom: 36px;
}

.cta-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 36px;
}

.cta-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 540px;
  margin: 0 auto 16px;
}

@media (min-width: 560px) {
  .cta-form {
    flex-direction: row;
  }
}

.cta-input {
  flex: 1;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: white;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  transition: var(--transition);
  outline: none;
  min-height: 56px;
}

.cta-input::placeholder {
  color: rgba(255, 255, 255, 0.36);
}

.cta-input:focus {
  border-color: var(--teal-light);
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 0 0 3px rgba(0, 126, 114, 0.18);
}

.cta-guarantee-row {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.03em;
}

.cta-guarantee-row a {
  color: var(--teal-light);
}

.cta-guarantee-row a:hover {
  text-decoration: underline;
}

.cta-testimonial {
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-testimonial-quote {
  font-family: "Outfit", sans-serif;
  font-size: clamp(17px, 2vw, 21px);
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin-bottom: 14px;
}

.cta-testimonial-author {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.cta-success {
  display: none;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(0, 126, 114, 0.12);
  border: 1px solid rgba(0, 126, 114, 0.3);
  text-align: center;
}

.cta-success.visible {
  display: block;
}

.cta-success-icon {
  font-size: 36px;
  margin-bottom: 12px;
  color: var(--teal-light);
}

.cta-success-title {
  font-size: 20px;
  font-weight: 500;
  color: white;
  margin-bottom: 8px;
}

.cta-success-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* ===== 23. FOOTER ===== */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 40px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 2fr;
    gap: 32px;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.2fr 2fr;
    gap: 80px;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo img {
  height: 28px;
  width: auto;
}

.footer-description {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.48);
  max-width: 320px;
}

.footer-compliance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.footer-compliance span {
  padding: 5px 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}

.footer-links-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (min-width: 480px) {
  .footer-links-group {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.58);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--teal-light);
}

.footer-bottom {
  padding-top: 28px;
  padding-bottom: 28px; /* Reset padding to standard since sticky bottom CTA is removed */
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-row-2 {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

@media (min-width: 768px) {
  .footer-row-2 {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.5;
}

.footer-tagline {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  font-weight: 500;
}

.footer-privacy-link {
  opacity: 0.6;
  transition: opacity 0.2s;
  color: inherit;
}

.footer-privacy-link:hover {
  opacity: 1;
}

.footer-privacy-sep {
  opacity: 0.4;
  margin: 0 8px;
}

/* ===== 24. ANIMATIONS & REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-22px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(22px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ===== 25. UTILITIES ===== */
.text-teal {
  color: var(--teal);
}

.text-center {
  text-align: center;
}

.max-w-prose {
  max-width: 600px;
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
