/* ========================================
   BASE TEMPLATE STYLES
   Only global components - NO section-specific styles
   ======================================== */

/* ========================================
   GLOBAL SECTION STYLES
   ======================================== */

/* Section Badge - Universal */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(246, 114, 20, 0.1);
  border: 1px solid rgba(246, 114, 20, 0.28);
  color: #f67214;
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.badge-dot-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  z-index: 3;
  background: #f67214;
  box-shadow: 0 0 0 7px rgba(246, 114, 20, 0.12);
  animation: badgePulse 2s ease-in-out infinite;
}

/* Section Title - Universal */
.section-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #0f172a;
  font-weight: 800;
  margin: 0 0 16px;
}

.title-highlight {
  color: #f67214;
}

@keyframes badgePulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.2);
  }
}

/* Responsive Section Badge Styles */
@media (max-width: 768px) {
  .section-badge {
    font-size: 10px;
    padding: 7px 16px;
    gap: 7px;
  }

  .badge-dot-pulse {
    width: 7px;
    height: 7px;
  }

  .section-title {
    font-size: clamp(1.5rem, 5vw, 2.25rem);
  }
}

@media (max-width: 480px) {
  .section-badge {
    font-size: 9px;
    padding: 6px 14px;
    gap: 6px;
  }

  .badge-dot-pulse {
    width: 6px;
    height: 6px;
  }

  .section-title {
    font-size: clamp(2rem, 4.5vw, 1.75rem);
  }
}

/* ========================================
   CSS VARIABLES & BASE STYLES
   ======================================== */

:root {
  --color-accent: #f67214;
  --color-accent-deep: #d85f0f;
  --color-bg: #fffdf9;
  --color-bg-dark: #0b1118;
  --color-bg-warm: #fff3ec;
  --color-surface: #ffffff;
  --color-text: #111111;
  --color-text-muted: #555b63;
  --color-text-inverse: #f5efe8;
  --color-border: rgba(17, 17, 17, 0.08);
  --shadow-xl: 0 32px 70px rgba(12, 18, 28, 0.12);
  --shadow-lg: 0 18px 45px rgba(12, 18, 28, 0.1);
  --container-max: 1180px;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4.5rem;
  --space-8: 6rem;
  --ease-standard: cubic-bezier(0.22, 1, 0.36, 1);
  --duration-fast: 180ms;
  --duration-base: 320ms;
  --duration-slow: 620ms;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fffdfa;
  color: var(--color-text);
  font-family: "Instrument Sans", system-ui, sans-serif;
  line-height: 1.5;
  padding-top: 74.6px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 991px) {
  body {
    padding-top: 70px;
  }
}

@media (max-width: 767px) {
  body {
    padding-top: 64px;
  }
}

@media (max-width: 575px) {
  body {
    padding-top: 60px;
  }
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.page-shell {
  position: relative;
  overflow: clip;
}

.container {
  width: min(calc(100% - 2rem), var(--container-max));
  margin: 0 auto;
}

/* ========================================
   HEADER STYLES
   ======================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 74.6px;
  padding: 12px 3vw;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}

.site-header.is-scrolled,
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.logo-container {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-container img {
  display: block;
  width: auto;
}

.site-logo {
  display: block;
  height: 40px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  position: relative;
  color: #1f2a3b;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-menu li a:hover {
  color: #ea6d13;
}

.nav-menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #ea6d13;
  transition: width 0.3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
  width: 100%;
}

.nav-menu li a.active {
  color: #ea6d13;
}

.login-btn {
  background: #ea6d13;
  color: #fff;
  border: none;
  padding: 12px 50px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(234, 109, 19, 0.2);
  transition: all 0.3s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(234, 109, 19, 0.35);
  color: #fff;
  filter: brightness(1.05);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
  position: relative;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #172033;
  border-radius: 3px;
  transition: all 0.3s ease;
  display: block;
  position: absolute;
}

.hamburger span:nth-child(1) {
  top: 10px;
}

.hamburger span:nth-child(2) {
  top: 18px;
}

.hamburger span:nth-child(3) {
  top: 26px;
}

.hamburger.active span:nth-child(1) {
  top: 18px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: 18px;
  transform: rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 74.6px;
  left: 0;
  width: 100%;
  height: calc(100vh - 74.6px);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  padding: 32px 20px;
  transform: translateX(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu ul li a {
  display: block;
  padding: 16px 0;
  color: #172033;
  font-weight: 600;
  font-size: 18px;
  border-bottom: none;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-menu ul li a:hover,
.mobile-menu ul li a.active {
  color: #ea6d13;
  text-decoration: none;
}

.mobile-menu .login-btn {
  width: 100% !important;
  margin-top: 48px !important;
  display: block !important;
  padding: 16px 32px !important;
  background: #f67214 !important;
  color: #ffffff !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 17px !important;
  text-align: center !important;
  text-decoration: none !important;
  border: none !important;
  box-shadow: 0 2px 8px rgba(246, 114, 20, 0.2) !important;
  transition: all 0.3s ease !important;
}

.mobile-menu .login-btn:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(246, 114, 20, 0.3) !important;
  background: #ea6d13 !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

/* ========================================
   FOOTER STYLES
   ======================================== */

.site-footer {
  background: #f8f9fa;
  padding: 16px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: 0;
}

.footer-content {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.footer-copyright {
  margin: 0;
  color: #64748b;
  font-size: 15px;
  font-weight: 600;
}

.footer-link {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--color-accent-deep);
  text-decoration: underline;
}

/* ========================================
   WAITLIST MODAL STYLES
   ======================================== */

.modal-content-premium {
  border-radius: 24px;
  border: none;
  padding: 40px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
}

.modal-title {
  font-family: "Outfit", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
}

.text-orange {
  color: var(--color-accent);
}

.modal-subtitle {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
}

.form-label {
  font-weight: 600;
  font-size: 14px;
  color: #334155;
  margin-bottom: 8px;
  display: block;
}

.premium-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 15px;
  transition: all 0.3s ease;
  background: #ffffff;
}

.premium-input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(246, 114, 20, 0.1);
}

/* Minimal intl-tel-input styling to match form design */
.iti {
  width: 100%;
  display: block;
}

.iti__input {
  width: 100%;
  padding: 14px 16px;
  padding-left: 52px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 15px;
  transition: all 0.3s ease;
  background: #ffffff;
}

.iti__input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(246, 114, 20, 0.1);
}

.btn-waitlist {
  background: linear-gradient(135deg, var(--color-accent), #ff8c42);
  color: #ffffff;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(246, 114, 20, 0.25);
}

.btn-waitlist:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(59, 130, 246, 0.35);
}

.waitlist-modal-message {
  font-size: 14px;
  font-weight: 500;
}

.modal-footer-text {
  font-size: 13px;
  color: #94a3b8;
  text-align: center;
}

.btn-close {
  background: transparent;
  border: none;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.btn-close:hover {
  opacity: 1;
}

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */

.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--color-accent);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  z-index: 3;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(246, 114, 20, 0.3);
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(246, 114, 20, 0.4);
}

.back-to-top.show {
  display: flex;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

@media (max-width: 991px) {
  .header-nav {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
  }

  .site-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    padding: 16px 24px !important;
    min-height: 70px !important;
  }

  .logo-container {
    flex-shrink: 0;
    max-width: 70%;
  }

  .site-logo {
    max-width: 100%;
    height: 36px !important;
  }
}

@media (max-width: 767px) {
  .site-header {
    padding: 14px 20px !important;
    min-height: 64px !important;
  }

  .site-logo {
    height: 32px !important;
    width: auto !important;
  }

  .logo-container {
    max-width: 70%;
  }

  .hamburger {
    margin-left: auto;
    flex-shrink: 0;
  }

  .modal-content-premium {
    padding: 28px 20px;
  }

  .modal-title {
    font-size: 22px;
  }

  /* Ensure form inputs stack properly on tablet */
  .row.g-3>.col-md-6 {
    width: 100%;
  }

  .premium-input,
  .iti__input {
    font-size: 14px;
    padding: 12px 14px;
  }

  .iti__input {
    padding-left: 50px;
  }

  .btn-waitlist {
    padding: 14px 28px;
    font-size: 14px;
  }

  .mobile-menu {
    top: 64px !important;
    height: calc(100vh - 64px) !important;
  }
}

@media (max-width: 575px) {
  .site-header {
    padding: 12px 16px !important;
    min-height: 60px !important;
  }

  .site-logo {
    height: 28px !important;
    width: auto !important;
  }

  .logo-container {
    max-width: 65%;
  }

  .hamburger {
    width: 40px;
    height: 40px;
    margin-left: auto;
  }

  .hamburger span {
    width: 28px;
    height: 2.5px;
  }

  .hamburger span:nth-child(1) {
    top: 12px;
  }

  .hamburger span:nth-child(2) {
    top: 19px;
  }

  .hamburger span:nth-child(3) {
    top: 26px;
  }

  .mobile-menu {
    top: 60px !important;
    height: calc(100vh - 60px) !important;
    padding: 24px 16px;
  }

  .modal-content-premium {
    padding: 24px 16px;
  }

  .modal-title {
    font-size: 20px;
  }

  .modal-subtitle {
    font-size: 14px;
  }

  .form-label {
    font-size: 13px;
  }

  .premium-input,
  .iti__input {
    font-size: 14px;
    padding: 12px 14px;
  }

  .iti__input {
    padding-left: 48px;
  }

  .btn-waitlist {
    padding: 14px 24px;
    font-size: 14px;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}

/* ========================================
   CINEMATIC HERO — MEETING AI
   ======================================== */
.hero-section {
  padding: 0;
  background: linear-gradient(135deg, #fffdfa 0%, #fff7ef 42%, #f8fbff 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(15, 23, 42, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 23, 42, .045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 66% 42%, #000 0, transparent 68%);
  opacity: .75;
  pointer-events: none;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(86px, 8vw, 118px) 32px clamp(54px, 6vw, 84px);
  display: grid;
  grid-template-columns: minmax(320px, .8fr) minmax(0, 1.2fr);
  gap: clamp(64px, 7.5vw, 110px);
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-left {
  display: flex;
  flex-direction: column;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(246, 114, 20, 0.1);
  border: 1px solid rgba(246, 114, 20, 0.28);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 1.5px;
  color: #f67214;
  width: fit-content;
  margin-bottom: 18px;
  text-transform: uppercase;
  font-family: "Outfit", sans-serif;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f67214;
  box-shadow: 0 0 0 7px rgba(246, 114, 20, 0.12);
  animation: emailPulse 2s ease-in-out infinite;
}

@keyframes emailPulse {
  50% {
    transform: scale(1.2);
    opacity: .75;
  }
}

.hero-h1 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin: 0 0 16px;
}

.hero-grad {
  color: #f67214;
}

.hero-desc {
  font-size: clamp(16px, 1.45vw, 18px);
  line-height: 1.55;
  color: #0f172a;
  margin: 0 0 20px;
  font-weight: 700;
  max-width: 90%;
}

.hero-desc strong {
  color: #0f172a;
  font-weight: 700;
}

/* Steps - moved BEFORE CTA button */
.hero-steps {
  display: grid;
  gap: 11px;
  margin: 0 0 36px;
  /* Space below steps, before button */
}

.hero-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  padding: 13px 14px;
  text-align: left;
  border: 1px solid rgba(226, 232, 240, .95);
  border-radius: 15px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 12px 28px rgba(15, 23, 42, .055);
  cursor: pointer;
  transition: .35s ease;
}

.hero-step:hover,
.hero-step.active {
  border-color: rgba(246, 114, 20, .42);
  background: #fff;
  transform: translateX(4px);
  box-shadow: 0 18px 42px rgba(246, 114, 20, .11);
}

.hs-num-circle {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #fff3ec;
  color: #f67214;
  font: 900 12px/1 "Outfit", sans-serif;
  flex: 0 0 auto;
  transition: all 0.35s ease;
}

.hero-step.active .hs-num-circle {
  background: linear-gradient(135deg, #f67214, #ff914d);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(246, 114, 20, .28);
}

.hs-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.hs-title {
  display: block;
  color: #111827;
  font: 850 15.5px/1.2 "Outfit", sans-serif;
  margin-bottom: 4px;
}

.hs-desc {
  display: block;
  color: #64748b;
  font-size: 13px;
  line-height: 1.48;
  font-weight: 500;
}

/* CTA Button - moved AFTER steps */
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 0;
  /* No margin needed, steps have margin-bottom */
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f67214, #ff914d);
  color: #fff;
  text-decoration: none;
  font: 850 16px/1 "Outfit", sans-serif;
  box-shadow: 0 18px 38px rgba(246, 114, 20, .28);
  transition: .3s;
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 52px rgba(246, 114, 20, .36);
  color: #fff;
}

.hero-btn-ghost {
  color: #334155;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.hero-btn-ghost:hover {
  color: #f67214;
}

/* DASHBOARD WRAP */
.hero-right {
  position: relative;
  perspective: 1400px;
}

.dash-wrap {
  position: relative;
  height: 590px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, .9);
  border-radius: 22px;
  box-shadow: 0 32px 86px rgba(15, 23, 42, .16);
  overflow: hidden;
  transform: rotateX(1.5deg) rotateY(-2deg);
  transition: .6s ease;
}

.dash-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 42px 104px rgba(15, 23, 42, .2);
}

.dash-bar {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 18px;
  background: linear-gradient(180deg, #fff, #f8fafc);
  border-bottom: 1px solid rgba(226, 232, 240, .9);
}

.dash-dots {
  display: flex;
  gap: 6px;
}

.dd {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dd.r {
  background: #ff5f56;
}

.dd.y {
  background: #ffbd2e;
}

.dd.g {
  background: #27c93f;
}

.dash-pill {
  flex: 1;
  text-align: center;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
}

.dash-live {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dash-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: emailPulse 2s infinite;
}

.dash-live-txt {
  font-size: 12px;
  font-weight: 700;
  color: #22c55e;
}

/* VIEWPORT & SCENES */
.dash-viewport {
  position: relative;
  height: 540px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}

.dash-scene {
  position: absolute;
  inset: 0;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  overflow: hidden;
}

.dash-scene.active {
  opacity: 1;
  pointer-events: auto;
}

.ds-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
  padding: 28px 28px 24px;
}

/* ── SCENE 1: Record / Upload ─────────────────────────────── */
.s1-lottie-intro {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  z-index: 2;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.s1-lottie-intro.hidden {
  opacity: 0;
  pointer-events: none;
}

.s1-lottie-badge {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  color: #ef4444;
}

.s1-rec-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  animation: emailPulse 1.2s ease-in-out infinite;
}

.s1-dashboard {
  position: relative;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.s1-dashboard.visible {
  opacity: 1;
}

/* ── SCENE 1: Record / Upload ─────────────────────────────── */
.s1-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  padding: 22px 24px;
  overflow: hidden;
}

/* Header row */
.s1-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.s1-rec-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 900;
  color: #ef4444;
  letter-spacing: 0.05em;
}

.s1-rec-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ef4444;
  animation: pulse-dot 1.2s ease-in-out infinite;
}

.s1-meeting-name {
  flex: 1;
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
}

.s1-timer {
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
  font-variant-numeric: tabular-nums;
  background: #f1f5f9;
  padding: 4px 10px;
  border-radius: 6px;
}

/* Source chips */
.s1-sources {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.s1-src-label {
  font-size: 10px;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.s1-src-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.s1-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #475569;
}

.s1-chip-live {
  background: #fff5ed;
  border-color: #fdba74;
  color: #c2410c;
}

.s1-chip-dot-live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f67214;
  animation: pulse-dot 1.5s infinite;
}

.s1-chip-upload {
  background: #f8fafc;
  color: #64748b;
}

.s1-chip-upload svg {
  opacity: 0.6;
}

/* Waveform */
.s1-wave-row {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 12px 14px;
}

.s1-waveform {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 36px;
}

.wave-bar {
  flex: 1;
  background: #f67214;
  border-radius: 2px;
  opacity: 0.75;
  animation: wave var(--dur) ease-in-out infinite alternate;
}

.wave-bar:nth-child(odd) {
  background: #fb923c;
  opacity: 0.9;
}

@keyframes wave {
  0% {
    height: var(--min);
  }

  100% {
    height: var(--max);
  }
}

/* Transcript */
.s1-transcript {
  background: #fff;
  border-radius: 12px;
  flex: 1;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 14px;
  overflow: hidden;
}

.s1-tx-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.s1-tx-label {
  font-size: 14px;
  font-weight: 800;
  color: #334155;
}

.s1-ai-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #f67214;
  background: #fff5ed;
  padding: 4px 10px;
  border-radius: 20px;
}

.s1-ai-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f67214;
  animation: pulse-dot 1.5s infinite;
}

.s1-tx-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.s1-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.s1-spk {
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  flex-shrink: 0;
}

.s1-spk-a {
  color: #3b82f6;
}

.s1-spk-b {
  color: #10b981;
}

.s1-spk-c {
  color: #f59e0b;
}

.s1-txt {
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
}

.s1-cursor {
  display: inline-block;
  animation: blink 1s infinite;
  color: #f67214;
  font-weight: 300;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* AI Output tags row */
.s1-output-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.s1-out-label {
  font-size: 10px;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 0.08em;
  margin-right: 4px;
}

.s1-out-tag {
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
}

.s1-out-green {
  background: #dcfce7;
  color: #166534;
}

.s1-out-blue {
  background: #dbeafe;
  color: #1e40af;
}

.s1-out-orange {
  background: #ffedd5;
  color: #9a3412;
}

/* Scene 2 */
.ds-agent-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.ds-agent-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f67214, #ff914d);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.ds-agent-name {
  font-weight: 700;
  color: #0f172a;
  font-size: 15px;
}

.ds-agent-sub {
  font-size: 12px;
  color: #64748b;
}

.ds-search-box {
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #0f172a;
}

.ds-search-icon {
  color: #94a3b8;
}

.ds-searching {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #64748b;
  margin-top: 8px;
}

.ds-searching.visible {
  display: flex;
}

.ds-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid #e2e8f0;
  border-top-color: #f67214;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.ds-cards {
  display: none;
  flex-direction: column;
  gap: 10px;
}

.ds-cards.visible {
  display: flex;
  animation: fadeUp 0.4s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.ds-card {
  background: #fff;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.ds-card-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}

.ds-tag {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
}

.ds-tag.coord {
  background: #e0e7ff;
  color: #4338ca;
}

.ds-tag.bim {
  background: #fce7f3;
  color: #be185d;
}

.ds-card-date {
  font-size: 12px;
  color: #94a3b8;
}

.ds-card-text {
  font-size: 13px;
  color: #334155;
  margin-bottom: 10px;
}

.ds-rel-bar {
  height: 4px;
  background: #f1f5f9;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 4px;
}

.ds-rel-fill {
  height: 100%;
  background: #22c55e;
}

.ds-rel-lbl {
  font-size: 11px;
  color: #64748b;
  text-align: right;
}

/* Scene 3 */
.ds-echo {
  background: #fff;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  font-size: 14px;
  color: #334155;
  display: flex;
  gap: 10px;
}

.ds-answer {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(246, 114, 20, 0.2);
  box-shadow: 0 8px 24px rgba(246, 114, 20, 0.08);
  overflow: hidden;
}

.ds-answer-head {
  background: #fff5ed;
  padding: 12px 18px;
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  color: #c2410c;
  font-size: 13px;
  border-bottom: 1px solid rgba(246, 114, 20, 0.1);
}

.ds-src-count {
  font-weight: 600;
  color: #f67214;
  background: #fff;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 11px;
}

.ds-answer-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ds-ans-row {
  display: flex;
  gap: 12px;
}

.ds-ans-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.ds-ans-label {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 3px;
}

.ds-ans-text {
  font-size: 13px;
  color: #0f172a;
  line-height: 1.5;
}

.ds-answer-tags {
  padding: 10px 18px;
  background: #f8fafc;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 8px;
}

.ds-atag {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
}

.ds-atag.green {
  background: #dcfce7;
  color: #166534;
}

.ds-atag.blue {
  background: #e0f2fe;
  color: #075985;
}

.ds-atag.orange {
  background: #ffedd5;
  color: #9a3412;
}

/* Hero responsive */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .dash-wrap {
    max-width: 680px;
    margin: 0 auto;
  }
}

@media (max-width: 991px) {
  .hero-container {
    padding: clamp(70px, 7vw, 90px) 24px clamp(40px, 5vw, 60px);
  }

  .hero-h1 {
    font-size: clamp(2rem, 5vw, 2.75rem);
  }

  .hero-desc {
    font-size: clamp(15px, 1.4vw, 17px);
  }

  .dash-wrap {
    height: 520px;
    transform: none;
  }

  .dash-wrap:hover {
    transform: translateY(-2px);
  }

  .dash-viewport {
    height: 470px;
  }
}

@media (max-width: 768px) {
  .hero-container {
    padding: 80px 20px 60px;
    gap: 40px;
  }

  .hero-badge {
    font-size: 10px;
    padding: 7px 16px;
    margin-bottom: 16px;
  }

  .hero-badge-dot {
    width: 7px;
    height: 7px;
  }

  .hero-h1 {
    font-size: clamp(1.75rem, 6vw, 2.35rem);
    line-height: 1.12;
    margin-bottom: 14px;
  }

  .hero-desc {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .hero-steps {
    gap: 10px;
    margin-bottom: 28px;
  }

  .hero-step {
    padding: 12px;
    gap: 12px;
  }

  .hs-num-circle {
    width: 34px;
    height: 34px;
    font-size: 11px;
  }

  .hs-title {
    font-size: 14.5px;
  }

  .hs-desc {
    font-size: 12px;
  }

  .hero-btn-primary {
    padding: 14px 24px;
    font-size: 15px;
  }

  .dash-wrap {
    height: 520px;
    border-radius: 18px;
  }

  .dash-bar {
    height: 44px;
    padding: 0 14px;
  }

  .dash-pill {
    font-size: 11px;
  }

  .dash-viewport {
    height: 476px;
  }

  .s1-wrap {
    padding: 14px;
    gap: 10px;
  }

  .s1-header {
    padding-bottom: 10px;
  }

  .s1-meeting-name {
    font-size: 13px;
  }

  .s1-timer {
    font-size: 12px;
    padding: 3px 8px;
  }

  .s1-sources {
    gap: 8px;
  }

  .s1-src-chips {
    flex-wrap: wrap;
    gap: 6px;
  }

  .s1-chip {
    padding: 6px 12px;
    font-size: 12px;
  }

  .s1-wave-row {
    padding: 10px 12px;
  }

  .s1-waveform {
    height: 32px;
  }

  .s1-transcript {
    padding: 12px;
  }

  .s1-tx-bar {
    margin-bottom: 10px;
  }

  .s1-tx-label {
    font-size: 13px;
  }

  .s1-ai-chip {
    font-size: 11px;
    padding: 3px 8px;
  }

  .s1-tx-body {
    gap: 8px;
  }

  .s1-line {
    gap: 6px;
  }

  .s1-spk {
    font-size: 12px;
  }

  .s1-txt {
    font-size: 12px;
  }

  .s1-output-row {
    padding-top: 10px;
    gap: 6px;
  }

  .s1-out-tag {
    font-size: 11px;
    padding: 4px 10px;
  }

  /* Scene 2 - Compact */
  .ds-agent-header {
    gap: 10px;
    margin-bottom: 6px;
  }

  .ds-agent-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .ds-agent-name {
    font-size: 14px;
  }

  .ds-agent-sub {
    font-size: 11px;
  }

  .ds-search-box {
    padding: 12px;
    font-size: 13px;
  }

  .ds-card {
    padding: 12px;
  }

  .ds-card-text {
    font-size: 12px;
  }

  /* Scene 3 - Compact */
  .ds-echo {
    padding: 12px;
    font-size: 13px;
  }

  .ds-answer-head {
    padding: 10px 14px;
    font-size: 12px;
  }

  .ds-answer-body {
    padding: 14px;
    gap: 12px;
  }

  .ds-ans-text {
    font-size: 12px;
  }

  .ds-answer-tags {
    padding: 8px 14px;
  }

  .ds-atag {
    font-size: 11px;
    padding: 3px 8px;
  }
}

@media (max-width: 575px) {
  .hero-container {
    padding: 70px 16px 50px;
    gap: 36px;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-badge {
    font-size: 9px;
    padding: 6px 14px;
    margin-bottom: 14px;
  }

  .hero-badge-dot {
    width: 6px;
    height: 6px;
  }

  .hero-h1 {
    font-size: clamp(1.5rem, 7vw, 2rem);
    margin-bottom: 12px;
  }

  .hero-desc {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .hero-steps {
    gap: 8px;
    margin-bottom: 24px;
  }

  .hero-step {
    padding: 10px 12px;
    gap: 10px;
    border-radius: 12px;
  }

  .hs-num-circle {
    width: 32px;
    height: 32px;
    font-size: 10px;
  }

  .hs-title {
    font-size: 13.5px;
  }

  .hs-desc {
    font-size: 11px;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-btn-primary {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 14px;
  }

  .dash-wrap {
    height: 480px;
    border-radius: 16px;
  }

  .dash-bar {
    height: 42px;
    padding: 0 12px;
  }

  .dash-dots {
    gap: 5px;
  }

  .dd {
    width: 9px;
    height: 9px;
  }

  .dash-pill {
    font-size: 10px;
  }

  .dash-live-dot {
    width: 7px;
    height: 7px;
  }

  .dash-live-txt {
    font-size: 11px;
  }

  .dash-viewport {
    height: 438px;
  }

  .s1-wrap {
    padding: 12px;
    gap: 9px;
  }

  .s1-header {
    gap: 10px;
    padding-bottom: 9px;
  }

  .s1-rec-pill {
    padding: 3px 8px;
    font-size: 10px;
  }

  .s1-rec-dot {
    width: 6px;
    height: 6px;
  }

  .s1-meeting-name {
    font-size: 12px;
  }

  .s1-timer {
    font-size: 11px;
    padding: 3px 7px;
  }

  .s1-sources {
    gap: 7px;
  }

  .s1-src-label {
    font-size: 9px;
  }

  .s1-src-chips {
    gap: 5px;
  }

  .s1-chip {
    padding: 5px 10px;
    font-size: 11px;
  }

  .s1-chip-dot-live {
    width: 6px;
    height: 6px;
  }

  .s1-wave-row {
    padding: 9px 10px;
  }

  .s1-waveform {
    height: 28px;
  }

  .s1-transcript {
    padding: 10px;
  }

  .s1-tx-bar {
    margin-bottom: 9px;
  }

  .s1-tx-label {
    font-size: 12px;
  }

  .s1-ai-chip {
    font-size: 10px;
    padding: 3px 7px;
  }

  .s1-ai-dot {
    width: 5px;
    height: 5px;
  }

  .s1-tx-body {
    gap: 7px;
  }

  .s1-line {
    gap: 6px;
    flex-wrap: wrap;
  }

  .s1-spk {
    font-size: 11px;
  }

  .s1-txt {
    font-size: 11px;
  }

  .s1-output-row {
    padding-top: 9px;
    gap: 5px;
  }

  .s1-out-label {
    font-size: 9px;
  }

  .s1-out-tag {
    font-size: 10px;
    padding: 3px 8px;
  }

  /* Scene 2 - Mobile Optimized */
  .ds-inner {
    padding: 12px;
    gap: 10px;
  }

  .ds-agent-header {
    gap: 9px;
    margin-bottom: 5px;
  }

  .ds-agent-icon {
    width: 34px;
    height: 34px;
    font-size: 15px;
    border-radius: 10px;
  }

  .ds-agent-name {
    font-size: 13px;
  }

  .ds-agent-sub {
    font-size: 10px;
  }

  .ds-search-box {
    padding: 11px;
    font-size: 12px;
  }

  .ds-searching {
    font-size: 12px;
    margin-top: 6px;
  }

  .ds-spinner {
    width: 12px;
    height: 12px;
  }

  .ds-cards {
    gap: 8px;
  }

  .ds-card {
    padding: 11px;
  }

  .ds-card-top {
    margin-bottom: 5px;
  }

  .ds-tag {
    font-size: 10px;
    padding: 2px 7px;
  }

  .ds-card-date {
    font-size: 11px;
  }

  .ds-card-text {
    font-size: 11px;
    margin-bottom: 8px;
  }

  .ds-rel-bar {
    height: 3px;
    margin-bottom: 3px;
  }

  .ds-rel-lbl {
    font-size: 10px;
  }

  /* Scene 3 - Mobile Optimized */
  .ds-echo {
    padding: 11px;
    font-size: 12px;
    gap: 8px;
  }

  .ds-answer {
    border-radius: 14px;
  }

  .ds-answer-head {
    padding: 9px 12px;
    font-size: 11px;
  }

  .ds-src-count {
    font-size: 10px;
    padding: 2px 7px;
  }

  .ds-answer-body {
    padding: 12px;
    gap: 10px;
  }

  .ds-ans-row {
    gap: 10px;
  }

  .ds-ans-icon {
    font-size: 16px;
  }

  .ds-ans-label {
    font-size: 10px;
    margin-bottom: 2px;
  }

  .ds-ans-text {
    font-size: 11px;
  }

  .ds-answer-tags {
    padding: 7px 12px;
    gap: 6px;
  }

  .ds-atag {
    font-size: 10px;
    padding: 3px 7px;
  }

  /* Lottie intro adjustments */
  .s1-lottie-intro {
    padding: 10px;
  }

  .s1-lottie-badge {
    bottom: 30px;
    padding: 6px 12px;
    font-size: 11px;
  }

  .s1-header {
    flex-wrap: wrap;
    gap: 8px;
  }

  .s1-meeting-name {
    font-size: 11px;
    flex-basis: 100%;
  }

  .s1-timer {
    font-size: 11px;
  }
}

@media (max-width: 400px) {
  .hero-h1 {
    font-size: 1.5rem;
  }

  .hero-desc {
    font-size: 13px;
  }

  .hero-btn-primary {
    font-size: 13px;
    padding: 12px 18px;
  }

  .dash-wrap {
    height: 380px;
  }

  .dash-viewport {
    height: 336px;
  }
}

/* Global CTA button */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #f67214, #e05a00);
  color: #ffffff;
  border-radius: 100px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(246, 114, 20, 0.3);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(246, 114, 20, 0.4);
  color: #ffffff;
  filter: brightness(1.05);
}

/* 2. WORKFLOW SECTION */
.workflow-section {
  padding: clamp(64px, 8vw, 100px) 0;
  background: #ffffff;
}

.workflow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 48px;
  align-items: center;
}

.workflow-intro {
  font-size: 1.15rem;
  color: #555b63;
  line-height: 1.6;
  margin-bottom: 32px;
}

.meeting-types {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.type-pill {
  padding: 10px 20px;
  background: #f8fafc;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  color: #334155;
  transition: all 0.3s ease;
}

.type-pill:hover {
  background: #ffffff;
  border-color: #f67214;
  color: #f67214;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(246, 114, 20, 0.1);
}

.content-box {
  background: #fffdfa;
  border: 1px solid rgba(246, 114, 20, 0.1);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(246, 114, 20, 0.04);
}

.content-box h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 24px;
}

.workflow-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.workflow-list li {
  display: flex;
  gap: 16px;
  font-size: 15px;
  color: #64748b;
  line-height: 1.5;
}

.list-icon {
  flex-shrink: 0;
  font-size: 18px;
  margin-top: -2px;
}

.workflow-list li strong {
  color: #1e293b;
  display: block;
  font-size: 16px;
}

@media (max-width: 991px) {
  .workflow-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 575px) {
  .content-box {
    padding: 24px;
  }

  .workflow-intro {
    font-size: 1rem;
  }
}

/* 3. PROBLEM SECTION */
.problem-section {
  padding: clamp(64px, 10vw, 120px) 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.text-white {
  color: #ffffff !important;
}

.text-gray {
  color: #94a3b8 !important;
}

.badge-dark {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 56px;
  align-items: flex-start;
}

.problem-intro {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

.question-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.question-card {
  background: #fffdfa;
  border: 1px solid rgba(246, 114, 20, 0.1);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(246, 114, 20, 0.04);
}

.question-card:hover {
  background: #ffffff;
  border-color: rgba(246, 114, 20, 0.4);
  transform: translateX(8px);
  box-shadow: 0 10px 25px rgba(246, 114, 20, 0.08);
}

.q-icon {
  font-size: 20px;
  opacity: 0.6;
}

.question-card p {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #334155;
  margin: 0;
}

.impact-box {
  background: rgba(246, 114, 20, 0.05);
  border: 1px solid rgba(246, 114, 20, 0.15);
  border-radius: 32px;
  padding: 48px;
}

.warning-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.warning-icon {
  font-size: 24px;
}

.warning-header h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

.impact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.impact-title {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #f67214;
  margin-bottom: 6px;
}

.impact-list p {
  font-size: 15px;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .impact-box {
    padding: 32px;
  }
}

@media (max-width: 575px) {
  .question-card {
    padding: 16px;
  }

  .impact-box {
    padding: 24px;
  }
}

/* 4. INTRO SECTION */
.intro-section {
  padding: clamp(64px, 8vw, 100px) 0;
  background: #ffffff;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 48px;
  align-items: center;
}

.intro-text {
  font-size: 1.15rem;
  color: #555b63;
  line-height: 1.6;
  margin-bottom: 32px;
}

.platform-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.platform-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  padding: 12px 20px;
  background: #f8fafc;
  border-radius: 12px;
  width: fit-content;
}

.intro-action-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.action-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.step {
  display: flex;
  gap: 24px;
}

.step-num {
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: rgba(246, 114, 20, 0.2);
  line-height: 1;
}

.step-content h4 {
  font-family: "Outfit", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 991px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 575px) {
  .intro-action-card {
    padding: 24px;
  }
}

/* 5. PROCESS SECTION */
.process-section {
  padding: clamp(64px, 8vw, 100px) 0;
  background: #fffdfa;
}

.section-intro {
  max-width: 700px;
  font-size: 1.15rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 56px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

.process-step {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  padding: 32px;
  transition: all 0.3s ease;
}

.process-step:hover {
  border-color: rgba(246, 114, 20, 0.2);
  box-shadow: 0 12px 30px rgba(246, 114, 20, 0.05);
  transform: translateY(-4px);
}

.p-step-icon {
  width: 56px;
  height: 56px;
  background: #fff8f1;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
}

.p-step-content h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}

.p-step-content p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.deliverables-box {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  padding: 32px 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.deliverables-box h4 {
  font-family: "Outfit", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

.deliverables-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.deliverable {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
}

.d-icon {
  font-size: 20px;
}

@media (max-width: 991px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 575px) {
  .deliverables-box {
    padding: 24px;
  }

  .deliverables-grid {
    gap: 24px;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* 6. AGENT SECTION */
.agent-section {
  padding: clamp(64px, 10vw, 120px) 0;
  background: #fffdfa;
  position: relative;
}

.badge-orange {
  background: rgba(246, 114, 20, 0.15) !important;
  border-color: rgba(246, 114, 20, 0.4) !important;
  color: #f67214 !important;
}

.agent-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  margin-top: 56px;
  align-items: center;
}

.search-interface {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.05);
}

.search-bar {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 100px;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.search-query {
  font-size: 14px;
  color: #94a3b8;
}

.room-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.room-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 100px;
  background: #ffffff;
  color: #64748b;
  border: 1px solid #e2e8f0;
}

.chat-bubbles {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.chat-bubble {
  max-width: 90%;
  padding: 16px 20px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.6;
}

.chat-bubble.user {
  align-self: flex-end;
  background: #f67214;
  color: #ffffff;
  font-weight: 600;
  border-bottom-right-radius: 4px;
}

.chat-bubble.ai {
  align-self: flex-start;
  background: #ffffff;
  color: #334155;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom-left-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.ai-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 11px;
}

.ai-badge {
  color: #f67214;
  font-weight: 800;
  text-transform: uppercase;
}

.ai-source {
  color: #64748b;
}

.chat-bubble.ai strong {
  color: #0f172a;
}

.agent-intro {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

.example-queries {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 48px;
}

.query-item {
  display: flex;
  gap: 16px;
  align-items: center;
}

.q-bullet {
  font-size: 18px;
}

.query-item p {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #334155;
  margin: 0;
}

.agent-highlight {
  background: linear-gradient(135deg, rgba(246, 114, 20, 0.1), transparent);
  border-left: 4px solid #f67214;
  padding: 24px;
  border-radius: 0 16px 16px 0;
}

.agent-highlight p {
  font-size: 16px;
  color: #475569;
  margin: 0;
  line-height: 1.6;
}

.agent-highlight strong {
  color: #f67214;
}

@media (max-width: 991px) {
  .agent-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }
}

@media (max-width: 575px) {
  .search-interface {
    padding: 20px;
  }

  .chat-bubble {
    max-width: 100%;
  }
}

/* 7. OUTPUT SECTION */
.output-section {
  padding: clamp(64px, 8vw, 100px) 0;
  background: #ffffff;
}

.output-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.output-card {
  padding: 40px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.output-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.card-header {
  margin-bottom: 24px;
}

.card-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 16px;
}

.output-card h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-list li {
  font-size: 15px;
  color: #64748b;
  padding-left: 24px;
  position: relative;
}

.card-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: inherit;
  font-weight: bold;
}

.card-text {
  font-size: 15px;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 24px;
}

.card-tag {
  margin-top: auto;
  padding: 6px 14px;
  background: rgba(246, 114, 20, 0.1);
  color: #f67214;
  font-size: 12px;
  font-weight: 700;
  border-radius: 100px;
  width: fit-content;
}

/* Color Accents */
.card-blue {
  border-top: 6px solid #3b82f6;
}

.card-green {
  border-top: 6px solid #10b981;
}

.card-orange {
  border-top: 6px solid #f67214;
}

@media (max-width: 991px) {
  .output-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 575px) {
  .output-card {
    padding: 32px 24px;
  }
}

/* 8. SHIFT SECTION (DARK GLASSMORPHISM - COMPACT & PREMIUM) */
.shift-section.shift-dark {
  padding: clamp(60px, 8vw, 100px) 0;
  background: #080c17;
  /* Deep premium dark background */
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.shift-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.shift-main-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.title-arrow {
  color: #f67214;
  /* Brand orange */
  display: inline-block;
  padding: 0 8px;
}

.shift-sub-title {
  font-size: clamp(1.05rem, 1.8vw, 1.15rem);
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

.shift-panels-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  max-width: 980px;
  /* Perfectly compact container */
  margin: 0 auto;
  position: relative;
}

.shift-panel-box {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.panel-box-before {
  border: 1px solid rgba(239, 68, 68, 0.25);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 35px rgba(239, 68, 68, 0.08);
}

.panel-box-before:hover {
  border-color: rgba(239, 68, 68, 0.45);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 45px rgba(239, 68, 68, 0.15);
  transform: translateY(-4px);
}

.panel-box-after {
  border: 1px solid rgba(16, 185, 129, 0.3);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 35px rgba(16, 185, 129, 0.08);
}

.panel-box-after:hover {
  border-color: rgba(16, 185, 129, 0.55);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 45px rgba(16, 185, 129, 0.15);
  transform: translateY(-4px);
}

.panel-box-header {
  padding: 24px 28px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.panel-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 999px;
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  width: fit-content;
}

.pill-before {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.pill-after {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.panel-flow-path {
  font-size: 0.95rem;
  font-style: italic;
  color: #94a3b8;
  line-height: 1.4;
}

.panel-box-body {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  /* Tightly framed, compact steps */
}

.shift-step-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  /* Tightly framed padding */
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  /* Sleek rounded corners */
  transition: all 0.3s ease;
}

.step-before:hover {
  background: rgba(239, 68, 68, 0.06);
  border-color: rgba(239, 68, 68, 0.2);
  transform: translateX(4px);
}

.step-after:hover {
  background: rgba(16, 185, 129, 0.06);
  border-color: rgba(16, 185, 129, 0.2);
  transform: translateX(4px);
}

.step-icon-box {
  width: 38px;
  height: 38px;
  /* Compact icon box */
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-icon-box svg {
  width: 18px;
  height: 18px;
}

.icon-before {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.icon-after {
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.step-text-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.step-text-col h4 {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  /* Compact title */
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.step-text-col p {
  font-size: 0.85rem;
  /* Compact description */
  color: #94a3b8;
  margin: 0;
  line-height: 1.35;
}

.panel-box-footer {
  padding: 16px 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-before {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.footer-after {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

/* VS Glowing Badge */
.shift-vs-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  /* Compact VS badge */
  border-radius: 50%;
  background: linear-gradient(135deg, #f67214, #d85f0f);
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  box-shadow: 0 0 25px rgba(246, 114, 20, 0.6);
  z-index: 10;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .shift-panels-container {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 680px;
  }

  .shift-vs-badge {
    margin: 8px auto;
  }
}

@media (max-width: 575px) {
  .shift-section.shift-dark {
    padding: 50px 0;
  }

  .panel-box-header {
    padding: 20px 20px 16px;
  }

  .panel-box-body {
    padding: 20px;
    gap: 12px;
  }

  .shift-step-card {
    padding: 12px 16px;
    gap: 14px;
  }

  .step-icon-box {
    width: 36px;
    height: 36px;
  }

  .step-icon-box svg {
    width: 16px;
    height: 16px;
  }

  .step-text-col h4 {
    font-size: 0.95rem;
  }

  .step-text-col p {
    font-size: 0.8rem;
  }

  .panel-box-footer {
    padding: 14px 20px;
    font-size: 0.8rem;
  }

  .shift-main-title {
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }
}

/* 9. WHY IT MATTERS SECTION (PREMIUM SAAS) */
.matters-section {
  padding: clamp(80px, 10vw, 120px) 0;
  background-color: #ffffff;
  background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
  background-size: 24px 24px;
  position: relative;
}

.matters-container {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.matters-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.matters-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
  margin-bottom: 20px;
}

.matters-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: #64748b;
  margin-bottom: 24px;
}

.fragment-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.f-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #475569;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.f-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  border-color: #94a3b8;
  color: #0f172a;
}

.f-tag svg {
  width: 18px;
  height: 18px;
  color: #f67214;
  /* Orange accent */
}

/* Premium Split Content Container */
.matters-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 32px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(0, 0, 0, 0.02);
  overflow: hidden;
}

/* Left Side: Impact Panel */
.impact-panel {
  padding: 48px;
  background: #f8fafc;
  border-right: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.impact-title {
  font-family: "Outfit", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 32px;
  line-height: 1.3;
}

.impact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.impact-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.5;
}

.check-icon-pro {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(246, 114, 20, 0.1);
  color: #f67214;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-icon-pro svg {
  width: 14px;
  height: 14px;
}

.impact-list strong {
  color: #0f172a;
  font-weight: 700;
}

/* Right Side: Benefits Panel */
.benefits-panel {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.b-panel-title {
  font-family: "Outfit", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 24px;
}

.b-grid-pro {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.b-card-pro {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
}

.b-card-pro:hover {
  border-color: #cbd5e1;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  transform: translateY(-2px);
}

.b-icon-pro {
  width: 44px;
  height: 44px;
  background: #f1f5f9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #334155;
}

.b-icon-pro svg {
  width: 20px;
  height: 20px;
}

.b-card-pro p {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .matters-content {
    grid-template-columns: 1fr;
  }

  .impact-panel {
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
  }
}

@media (max-width: 575px) {
  .matters-section {
    padding: 60px 0;
  }

  .impact-panel,
  .benefits-panel {
    padding: 32px 24px;
  }

  .b-grid-pro {
    grid-template-columns: 1fr;
  }

  .impact-title {
    font-size: 1.35rem;
  }
}

/* 10. BUILT FOR PROJECT TEAMS SECTION (LIGHT & PREMIUM) */
.teams-section {
  padding: clamp(80px, 10vw, 120px) 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.teams-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(246, 114, 20, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 0;
}

.teams-split-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Left Side */
.teams-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.teams-main-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: #0f172a;
  margin-top: 24px;
  margin-bottom: 40px;
}

.audience-list-light {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.audience-list-light li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #334155;
  transition: all 0.3s ease;
}

.audience-list-light li:hover {
  color: #0f172a;
  transform: translateX(8px);
}

.a-icon-light {
  width: 28px;
  height: 28px;
  background: #fff4ed;
  color: #f67214;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px #fffdfa;
}

.a-icon-light svg {
  width: 14px;
  height: 14px;
}

/* Right Side */
.teams-right {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 32px;
  padding: 48px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

.workflows-title-light {
  font-family: "Outfit", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 32px;
}

.workflows-grid-light {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.workflow-card-light {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 20px 24px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.workflow-card-light:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
  border-color: #cbd5e1;
}

.w-icon-light {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.w-icon-light svg {
  width: 22px;
  height: 22px;
}

.icon-blue {
  background: #eff6ff;
  color: #3b82f6;
}

.icon-green {
  background: #ecfdf5;
  color: #10b981;
}

.icon-purple {
  background: #f5f3ff;
  color: #8b5cf6;
}

.icon-orange {
  background: #fff7ed;
  color: #f97316;
}

.w-text-light h4 {
  font-family: "Outfit", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 4px 0;
}

.w-text-light p {
  font-size: 0.95rem;
  color: #64748b;
  margin: 0;
}

@media (max-width: 991px) {
  .teams-split-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .teams-right {
    padding: 40px 32px;
  }
}

@media (max-width: 575px) {
  .teams-right {
    padding: 32px 20px;
  }

  .workflow-card-light {
    padding: 16px;
    gap: 16px;
  }

  .w-icon-light {
    width: 40px;
    height: 40px;
  }

  .w-icon-light svg {
    width: 18px;
    height: 18px;
  }

  .w-text-light h4 {
    font-size: 1.05rem;
  }

  .w-text-light p {
    font-size: 0.85rem;
  }

  .audience-list-light li {
    font-size: 1.1rem;
  }
}

/* FINAL CTA SECTION */
.cta-section {
  padding: clamp(80px, 10vw, 120px) 0;
  background: #ffffff;
}

.cta-card {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 64px 40px;
  background: #fffdfa;
  border: 1px solid rgba(246, 114, 20, 0.1);
  border-radius: 40px;
  box-shadow: 0 30px 60px rgba(246, 114, 20, 0.05);
}

.cta-description {
  font-size: 1.25rem;
  color: #64748b;
  margin: 24px 0 40px;
}

@media (max-width: 767px) {
  .cta-card {
    padding: 48px 24px;
    border-radius: 24px;
  }
}

/* ── ANIMATIONS ─────────────────────────────────────────── */
@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

@keyframes pulse-dot {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(246, 114, 20, 0.4);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(246, 114, 20, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(246, 114, 20, 0);
  }
}

/* Specific pulse for red REC dot */
.s1-rec-dot {
  animation: pulse-red 1.5s infinite;
}

@keyframes pulse-red {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

.ds-searching.visible {
  display: flex;
  opacity: 1;
  animation: fadeIn 0.3s ease forwards;
}

.ds-cards.visible {
  display: flex;
  opacity: 1;
}

.ds-card {
  animation: slideInUp 0.5s ease backwards;
}

.ds-card:nth-child(2) {
  animation-delay: 0.15s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

/* ── SCENE 1 LOTTIE INTRO ───────────────────────────────── */
.s1-lottie-intro {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: linear-gradient(160deg, #fff9f5 0%, #ffffff 50%, #fff5ee 100%);
  z-index: 2;
  transition: opacity 0.9s ease;
  overflow: hidden;
  border-radius: 0 0 20px 20px;
}

.s1-lottie-intro.hidden {
  opacity: 0;
  pointer-events: none;
}

.s1-lottie-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #f67214;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(246, 114, 20, 0.25);
  padding: 9px 20px;
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(246, 114, 20, 0.12);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.6s ease 0.3s both;
}

/* Dashboard layer — hidden until Lottie fades out */
.s1-dashboard {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s ease;
  z-index: 1;
}

.s1-dashboard.visible {
  opacity: 1;
  pointer-events: auto;
}


/* ========================================
   BREADCRUMB NAVIGATION
   ======================================== */

.breadcrumb-nav {
  margin-bottom: 40px;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-link {
  position: relative;
  font-family: "Instrument Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link:hover {
  color: var(--color-accent);
}

.breadcrumb-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}

.breadcrumb-link:hover::after {
  width: 100%;
}

.breadcrumb-separator {
  font-size: 14px;
  color: #cbd5e1;
  font-weight: 400;
  user-select: none;
}

.breadcrumb-current {
  font-family: "Instrument Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.breadcrumb-link-current {
  position: relative;
  font-family: "Instrument Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  text-decoration: none;
}

.breadcrumb-link-current::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-accent);
}

/* ========================================
   BREADCRUMB IN CTA SECTION (DARK THEME)
   ======================================== */

.breadcrumb-cta {
  margin-top: 48px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.breadcrumb-cta.breadcrumb-left {
  justify-content: flex-start;
}

.breadcrumb-cta .breadcrumb-link {
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-cta .breadcrumb-link:hover {
  color: var(--color-accent);
}

.breadcrumb-cta .breadcrumb-separator {
  color: rgba(255, 255, 255, 0.3);
}

.breadcrumb-cta .breadcrumb-link-current {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-cta .breadcrumb-link-current::after {
  background: var(--color-accent);
}

.breadcrumb-cta .breadcrumb-link-current-plain {
  position: relative;
  font-family: "Instrument Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

/* ========================================
   SECTION 9 — FINAL CTA (DARK THEME)
   ======================================== */

.final-cta-dark {
  position: relative;
  padding: 100px 0 0 0;
  background: linear-gradient(180deg, #0a0e1a 0%, #0f1419 50%, #1a1f2e 100%);
  overflow: hidden;
}

/* Animated Stars Background */
.cta-stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(2px 2px at 60% 70%, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1px 1px at 80% 10%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(2px 2px at 90% 60%, rgba(255, 255, 255, 0.7), transparent),
    radial-gradient(1px 1px at 33% 80%, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(1px 1px at 15% 90%, rgba(255, 255, 255, 0.4), transparent);
  background-size: 200% 200%;
  animation: starsMove 60s linear infinite;
  opacity: 0.6;
  pointer-events: none;
}

@keyframes starsMove {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 100% 100%;
  }
}

/* Glowing Orbs */
.cta-glow-orb {
  position: absolute;
  z-index: 3;
  filter: blur(80px);
  opacity: 0.3;
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite;
}

.cta-glow-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(246, 114, 20, 0.4), transparent);
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}

.cta-glow-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 140, 66, 0.3), transparent);
  bottom: -150px;
  left: -100px;
  animation-delay: 2s;
}

.cta-glow-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(246, 114, 20, 0.25), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 4s;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -30px) scale(1.1);
  }

  66% {
    transform: translate(-30px, 30px) scale(0.9);
  }
}

/* Content */
.cta-content-dark {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  z-index: 1;
}

/* Badge */
.cta-badge-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(246, 114, 20, 0.1);
  border: 2px solid rgba(246, 114, 20, 0.3);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 32px;
  box-shadow: 0 0 30px rgba(246, 114, 20, 0.2);
  animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {

  0%,
  100% {
    box-shadow: 0 0 30px rgba(246, 114, 20, 0.2);
  }

  50% {
    box-shadow: 0 0 50px rgba(246, 114, 20, 0.4);
  }
}

.badge-pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  z-index: 3;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(246, 114, 20, 0.7);
  }

  50% {
    transform: scale(1.2);
    box-shadow: 0 0 0 10px rgba(246, 114, 20, 0);
  }
}

/* Title */
.cta-title-dark {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0 0 16px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Subtitle */
.cta-subtitle-dark {
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 48px;
  line-height: 1.6;
  font-weight: 500;
}

.cta-accent-text {
  background: linear-gradient(135deg, var(--color-accent), #ff8c42);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  position: relative;
  display: inline-block;
}

/* Button Group */
.cta-button-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

/* Primary Button with Shine Effect */
.btn-cta-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 48px;
  background: linear-gradient(135deg, var(--color-accent), #ff8c42);
  color: #ffffff;
  border: none;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow:
    0 0 0 0 rgba(246, 114, 20, 0.4),
    0 12px 40px rgba(246, 114, 20, 0.4),
    inset 0 -2px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  z-index: 1;
}

/* Shine Effect */
.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
  z-index: -1;
}

.btn-cta-primary:hover .btn-shine {
  left: 100%;
}

.btn-cta-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 0 0 8px rgba(246, 114, 20, 0.2),
    0 20px 60px rgba(246, 114, 20, 0.6),
    inset 0 -2px 8px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary:active {
  transform: translateY(-2px) scale(1);
}

.btn-cta-primary svg {
  transition: transform 0.3s ease;
}

.btn-cta-primary:hover svg {
  transform: translateX(5px);
}

/* Note */
.cta-note-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-weight: 500;
}

.cta-note-dark svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

/* Responsive Breadcrumb in CTA */
@media (max-width: 767px) {
  .breadcrumb-cta {
    margin-top: 36px;
  }

  .breadcrumb-cta .breadcrumb-link,
  .breadcrumb-cta .breadcrumb-link-current,
  .breadcrumb-cta .breadcrumb-link-current-plain {
    font-size: 13px;
  }
}

@media (max-width: 575px) {
  .breadcrumb-cta {
    margin-top: 32px;
  }

  .breadcrumb-cta .breadcrumb-link,
  .breadcrumb-cta .breadcrumb-link-current,
  .breadcrumb-cta .breadcrumb-link-current-plain {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .breadcrumb-nav {
    margin-bottom: 25px;
    padding: 0 16px;
  }

  .breadcrumb-list {
    gap: 6px;
  }

  .breadcrumb-link,
  .breadcrumb-separator,
  .breadcrumb-current {
    font-size: 11px;
  }
}

/* Responsive CTA Dark Theme */
@media (max-width: 991px) {
  .final-cta-dark {
    padding: 80px 0 0 0;
  }

  .cta-badge-dark {
    margin-bottom: 28px;
  }

  .cta-title-dark {
    margin-bottom: 20px;
  }

  .cta-subtitle-dark {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .final-cta-dark {
    padding: 70px 0 0 0;
  }

  .cta-badge-dark {
    padding: 8px 20px;
    font-size: 11px;
    margin-bottom: 24px;
  }

  .cta-title-dark {
    margin-bottom: 18px;
  }

  .cta-subtitle-dark {
    margin-bottom: 36px;
  }

  .btn-cta-primary {
    padding: 18px 40px;
    font-size: 17px;
  }

  .cta-button-group {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 575px) {
  .final-cta-dark {
    padding: 60px 0 0 0;
  }

  .cta-badge-dark {
    padding: 7px 18px;
    font-size: 10px;
  }

  .btn-cta-primary {
    width: 100%;
    justify-content: center;
    padding: 16px 36px;
    font-size: 16px;
  }

  .cta-note-dark {
    font-size: 13px;
  }

  .cta-glow-1,
  .cta-glow-2,
  .cta-glow-3 {
    filter: blur(60px);
  }
}


/* Extra Small Screens - Ultra Compact Dashboard */
@media (max-width: 400px) {
  .dash-wrap {
    height: 460px;
  }

  .dash-bar {
    height: 40px;
    padding: 0 10px;
  }

  .dash-dots {
    gap: 4px;
  }

  .dd {
    width: 8px;
    height: 8px;
  }

  .dash-pill {
    font-size: 9px;
  }

  .dash-live-dot {
    width: 6px;
    height: 6px;
  }

  .dash-live-txt {
    font-size: 10px;
  }

  .dash-viewport {
    height: 420px;
  }

  .s1-wrap {
    padding: 10px;
    gap: 8px;
  }

  .s1-header {
    gap: 8px;
    padding-bottom: 8px;
  }

  .s1-rec-pill {
    padding: 2px 7px;
    font-size: 9px;
  }

  .s1-meeting-name {
    font-size: 11px;
  }

  .s1-timer {
    font-size: 10px;
    padding: 2px 6px;
  }

  .s1-sources {
    gap: 6px;
  }

  .s1-src-label {
    font-size: 8px;
  }

  .s1-src-chips {
    gap: 4px;
  }

  .s1-chip {
    padding: 4px 8px;
    font-size: 10px;
  }

  .s1-wave-row {
    padding: 8px;
  }

  .s1-waveform {
    height: 24px;
  }

  .s1-transcript {
    padding: 8px;
  }

  .s1-tx-bar {
    margin-bottom: 8px;
  }

  .s1-tx-label {
    font-size: 11px;
  }

  .s1-ai-chip {
    font-size: 9px;
    padding: 2px 6px;
  }

  .s1-tx-body {
    gap: 6px;
  }

  .s1-spk {
    font-size: 10px;
  }

  .s1-txt {
    font-size: 10px;
  }

  .s1-output-row {
    padding-top: 8px;
    gap: 4px;
  }

  .s1-out-label {
    font-size: 8px;
  }

  .s1-out-tag {
    font-size: 9px;
    padding: 2px 7px;
  }

  /* Scene 2 - Extra Small */
  .ds-inner {
    padding: 10px;
    gap: 8px;
  }

  .ds-agent-header {
    gap: 8px;
  }

  .ds-agent-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .ds-agent-name {
    font-size: 12px;
  }

  .ds-agent-sub {
    font-size: 9px;
  }

  .ds-search-box {
    padding: 10px;
    font-size: 11px;
  }

  .ds-card {
    padding: 10px;
  }

  .ds-tag {
    font-size: 9px;
  }

  .ds-card-date {
    font-size: 10px;
  }

  .ds-card-text {
    font-size: 10px;
  }

  /* Scene 3 - Extra Small */
  .ds-echo {
    padding: 10px;
    font-size: 11px;
  }

  .ds-answer-head {
    padding: 8px 10px;
    font-size: 10px;
  }

  .ds-src-count {
    font-size: 9px;
  }

  .ds-answer-body {
    padding: 10px;
    gap: 8px;
  }

  .ds-ans-icon {
    font-size: 14px;
  }

  .ds-ans-label {
    font-size: 9px;
  }

  .ds-ans-text {
    font-size: 10px;
  }

  .ds-answer-tags {
    padding: 6px 10px;
    gap: 5px;
  }

  .ds-atag {
    font-size: 9px;
    padding: 2px 6px;
  }

  .s1-lottie-badge {
    bottom: 25px;
    padding: 5px 10px;
    font-size: 10px;
  }
}

/* ========================================
   SECTION 2 - FRAGMENTATION WALL
   ======================================== */
.frag-section {
  padding: 120px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.frag-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

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

.frag-text-blocks {
  margin-top: 40px;
}

.frag-p-lead {
  font-size: 1.25rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 90%;
}

.frag-meeting-intel-clean {
  margin-bottom: 40px;
}

.frag-intel-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.frag-list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.frag-list-clean li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #334155;
  background: #f8fafc;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  transition: all 0.2s ease;
}

.frag-list-clean li:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.f-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #f67214;
}


.frag-reveal-text {
  opacity: 0;
  transform: translateY(20px);
  margin-top: 40px;
  padding: 20px 24px;
  background: rgba(239, 68, 68, 0.04);
  border-left: 4px solid #ef4444;
  border-radius: 0 12px 12px 0;
}

.frag-p-heavy {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.frag-p-buried {
  font-size: 1.05rem;
  font-weight: 500;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.frag-silence-box {
  opacity: 0;
  margin-top: 40px;
  position: relative;
  padding-left: 30px;
}

.frag-silence-line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--color-accent);
  border-radius: 4px;
}

.frag-p-final {
  font-size: 2rem;
  font-weight: 900;
  color: #0f172a;
  font-family: "Outfit", sans-serif;
  letter-spacing: -0.03em;
  margin: 0;
}

/* --- VISUAL RIGHT SIDE --- */
.frag-visual {
  position: relative;
  height: 560px;
  width: 100%;
  border-radius: 32px;
  background: #fdfdfd;
  border: 1px solid #edf2f7;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.frag-visual.is-fragmented {
  filter: grayscale(1) contrast(0.9);
  background: #f8fafc;
}

.frag-state {
  position: absolute;
  inset: 0;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* STATE 1: ACTIVE MEETING */
.frag-meeting-ui {
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03), 0 1px 3px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(17, 17, 17, 0.05);
  display: flex;
  flex-direction: column;
}

.f-topbar {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #f1f5f9;
  gap: 16px;
}

.f-dots {
  display: flex;
  gap: 6px;
}

.f-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.f-dot.red {
  background: #ef4444;
}

.f-dot.yellow {
  background: #f59e0b;
}

.f-dot.green {
  background: #10b981;
}

.f-title {
  font-weight: 600;
  font-size: 0.9rem;
  color: #334155;
  flex: 1;
}

.f-rec-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.2);
  animation: pulseRec 1.5s infinite;
}

@keyframes pulseRec {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

.f-body {
  flex: 1;
  padding: 24px;
  position: relative;
  /* Key for absolute children */
  display: flex;
  flex-direction: column;
}

.f-waveform-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 80px;
  margin-bottom: 30px;
}

.f-waveform {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 40px;
}

.f-bar {
  width: 4px;
  background: var(--color-accent);
  border-radius: 2px;
  animation: wavePulse 1s ease-in-out infinite alternate;
}

.f-bar:nth-child(2n) {
  animation-delay: 0.2s;
}

.f-bar:nth-child(3n) {
  animation-delay: 0.4s;
}

@keyframes wavePulse {
  0% {
    height: 10px;
    opacity: 0.5;
  }

  100% {
    height: 35px;
    opacity: 1;
  }
}

.f-waveform-lbl {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.f-chips {
  position: absolute;
  inset: 0;
  /* Take up full body area */
  pointer-events: none;
}

.f-chip {
  position: absolute;
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #f1f5f9;
  z-index: 10;
  white-space: nowrap;
}

.f-chip .f-icon {
  font-size: 1.2rem;
}

/* Spread them out properly across the 100% width/height of the body */
#fc1 {
  top: 15%;
  left: 15%;
}

#fc2 {
  top: 30%;
  right: 12%;
}

#fc3 {
  bottom: 25%;
  left: 10%;
}

#fc4 {
  bottom: 15%;
  right: 15%;
}

#fc5 {
  top: 50%;
  left: 45%;
  transform: translateX(-50%);
}

.scatter-state {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 20;
}

.f-file-card {
  position: absolute;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08), 0 2px 6px rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(226, 232, 240, 0.8);
  opacity: 0;
  /* GSAP will reveal */
  min-width: 280px;
}

.f-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: #f1f5f9;
}

.file-mp4 {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
}

.file-pdf {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.1);
}

.file-mail {
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.1);
}

.file-txt {
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
}

.file-slack {
  color: #8b5cf6;
  background: rgba(139, 92, 246, 0.1);
}

.f-file-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.f-file-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
}

.f-file-size {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 500;
}

/* File destination coordinates - carefully staggered to create a beautiful floating arrangement without ugly overlaps */
#ff1 {
  top: 8%;
  left: 5%;
  z-index: 1;
}

#ff3 {
  top: 18%;
  right: 5%;
  z-index: 2;
}

#ff5 {
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

#ff4 {
  bottom: 18%;
  left: 5%;
  z-index: 3;
}

#ff2 {
  bottom: 8%;
  right: 5%;
  z-index: 4;
}

/* RE-PURPOSED: Light Mesh Gradient Overlay for "Chaos" State */
.frag-overlay-dark {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(246, 114, 20, 0.05) 0%, transparent 40%),
    radial-gradient(circle at bottom left, rgba(59, 130, 246, 0.05) 0%, transparent 40%),
    rgba(248, 250, 252, 0.7);
  backdrop-filter: blur(8px);
  z-index: 10;
  opacity: 0;
  pointer-events: none;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .frag-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .frag-visual {
    height: 500px;
  }

  /* Increased height for breathing room */

  /* Scale down cards on tablet so they fit perfectly */
  .f-file-card {
    min-width: 240px;
    padding: 12px 16px;
  }

  .f-icon-box {
    width: 36px;
    height: 36px;
  }

  .f-file-title {
    font-size: 0.9rem;
  }

  /* Tablet specific staggered scatter */
  #ff1 {
    top: 8%;
    left: 2%;
    z-index: 1;
  }

  #ff3 {
    top: 22%;
    right: 2%;
    z-index: 2;
  }

  #ff5 {
    top: 45%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
  }

  #ff4 {
    bottom: 22%;
    left: 2%;
    z-index: 3;
  }

  #ff2 {
    bottom: 8%;
    right: 2%;
    z-index: 4;
  }
}

@media (max-width: 575px) {
  .frag-section {
    padding: 60px 0;
  }

  .frag-visual {
    height: 350px;
  }

  .f-chip {
    font-size: 0.75rem;
    padding: 8px 12px;
  }

  /* Mobile File Cards */
  .f-file-card {
    min-width: 200px;
    padding: 10px 14px;
    gap: 10px;
  }

  .f-file-title {
    font-size: 0.8rem;
  }

  .f-file-size {
    font-size: 0.65rem;
  }

  .f-icon-box {
    width: 32px;
    height: 32px;
    font-size: 1rem;
    border-radius: 8px;
  }

  #fc1 {
    top: 10%;
    left: 5%;
  }

  #fc2 {
    top: 25%;
    right: 5%;
  }

  #fc3 {
    bottom: 20%;
    left: 5%;
  }

  #fc4 {
    bottom: 10%;
    right: 5%;
  }

  #fc5 {
    top: 45%;
    left: 50%;
    transform: translateX(-50%);
  }

  /* Scatter State scaled down to prevent overlap */
  #ff1 {
    top: 5%;
    left: 2%;
    transform: scale(0.9);
  }

  #ff2 {
    bottom: 5%;
    right: 2%;
    transform: scale(0.9);
  }

  #ff3 {
    top: 35%;
    right: -5%;
    transform: scale(0.85);
    z-index: 1;
  }

  #ff4 {
    bottom: 30%;
    left: -5%;
    transform: scale(0.85);
    z-index: 2;
  }

  #ff5 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.05);
    z-index: 10;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  }
}

/* ==========================================================================
   SECTION 3: WHY IT BREAKS (FRAGMENTED WORKSPACE)
   ========================================================================== */

.s3-section {
  background-color: #0b0f19;
  /* Dark graphite */
  background-image:
    radial-gradient(circle at 50% 0%, rgba(246, 114, 20, 0.08) 0%, transparent 60%),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 100% 100%, 48px 48px, 48px 48px;
  background-position: top center, center top, center top;
  padding: 80px 0;
  color: #f8fafc;
  overflow: hidden;
  position: relative;
}

.s3-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Top Header Area --- */
.s3-header {
  text-align: center;
  max-width: 900px;
  /* Increased to prevent wrapping */
  margin: 0 auto 60px;
}

.s3-badge {
  background: rgba(246, 114, 20, 0.1);
  color: #f67214;
  border: 1px solid rgba(246, 114, 20, 0.2);
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.s3-title {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.s3-title-top {
  display: block;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .s3-title-top {
    white-space: normal;
  }
}

.s3-title-bottom {
  display: block;
  color: #f67214;
  /* Brand orange */
  margin-top: 8px;
}

.s3-desc {
  font-size: 1rem;
  line-height: 1.5;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
}

/* --- Main Visual Experience: Sequenced Storytelling --- */
.s3-workspace {
  position: relative;
  width: 100%;
  height: 520px;
  /* Increased for breathing room */
  background: radial-gradient(circle at 50% 50%, rgba(30, 41, 59, 0.4) 0%, rgba(15, 23, 42, 0) 80%);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.8);
  margin-bottom: 50px;
  overflow: hidden;
}

.s3-phase-label {
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.85rem;
  font-weight: 900;
  color: #f67214;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(246, 114, 20, 0.4);
  padding: 8px 24px;
  border-radius: 50px;
  box-shadow: 0 0 25px rgba(246, 114, 20, 0.2);
  z-index: 50;
  white-space: nowrap;
}

/* Step 1: The Questions */
.s3-step-1 {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* Push content down to avoid overlap with top label */
  padding-bottom: 80px;
  align-items: center;
  z-index: 10;
}

.s3-q-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 450px;
}

.s3-q-card {
  background: rgba(30, 41, 59, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transform: translateY(20px);
  opacity: 0;
}

.s3-q-card p {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.q-svg {
  color: #f67214;
  flex-shrink: 0;
}

/* Step 2: The Fragmentation - Dashboard Grid to prevent overlap */
.s3-step-2 {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 24px;
  padding: 100px 40px 40px;
  /* Space for the top label */
  opacity: 0;
  pointer-events: none;
}

.s3-panel {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  padding: 24px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Remove Absolute Positions to let Grid handle it */
#sp1,
#sp2,
#sp3,
#sp4 {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  width: 100%;
  z-index: 5;
}

/* Reusable Card Components */
.s3-notes-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 12px;
}

.s3-card-svg {
  color: #f67214;
  width: 18px;
  height: 18px;
}

.s3-card-title {
  font-size: 0.85rem;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.s3-card-body {
  font-size: 0.8rem;
  color: #f1f5f9;
  font-weight: 700;
  line-height: 1.6;
}

/* Card 1: Notes */
.s3-note-line {
  margin-bottom: 6px;
  padding-left: 12px;
  position: relative;
}

.s3-note-line::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #f67214;
}

.s3-faded {
  opacity: 0.4;
  filter: blur(1px);
}

/* Card 2: Recording */
.s3-rec-visual {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 12px;
}

.s3-rec-wave {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 35px;
  justify-content: center;
}

.s3-wave-bar {
  width: 5px;
  background: #3b82f6;
  border-radius: 3px;
  animation: wavePulse 1s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

@keyframes wavePulse {

  0%,
  100% {
    height: 12px;
    opacity: 0.6;
  }

  50% {
    height: 30px;
    opacity: 1;
  }
}

.s3-rec-timer {
  font-size: 0.75rem;
  color: #94a3b8;
  text-align: center;
  font-weight: 900;
}

/* Card 3: Email */
.s3-email-bubble {
  background: rgba(30, 41, 59, 0.8);
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 10px;
  border-left: 3px solid #3b82f6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.s3-email-reply {
  margin-left: 20px;
  border-left: 3px solid #f67214;
  opacity: 1;
  color: #ffffff;
}

/* Card 4: Memory */
.s3-memory-visual {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 18px;
}

.s3-mem-q {
  font-size: 2rem;
  color: #f67214;
  font-weight: 900;
  opacity: 0.3;
  animation: memBlink 1.5s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(246, 114, 20, 0.4));
}

.s3-mem-q:nth-child(2) {
  animation-delay: 0.4s;
}

.s3-mem-q:nth-child(3) {
  animation-delay: 0.8s;
}

@keyframes memBlink {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

.s3-mem-text {
  font-style: italic;
  text-align: center;
  color: #cbd5e1;
  font-weight: 800;
  font-size: 0.85rem;
}

/* --- Bottom Impact Grid --- */
.s3-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.s3-impact-card {
  background: rgba(30, 41, 59, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-top: 1px solid rgba(246, 114, 20, 0.15);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  gap: 14px;
  transition: all 0.3s ease;
}

.s3-impact-card:hover {
  background: rgba(30, 41, 59, 0.7);
  transform: translateY(-4px);
  border-top-color: #f67214;
}

.s3-ic-icon {
  color: #f67214;
  margin-top: 3px;
  flex-shrink: 0;
}

.s3-ic-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.s3-ic-desc {
  font-size: 0.8rem;
  font-weight: 500;
  color: #94a3b8;
  line-height: 1.4;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .s3-workspace {
    height: auto;
    min-height: auto;
    padding: 40px 20px;
  }

  .s3-step-1,
  .s3-step-2 {
    position: relative;
    opacity: 1 !important;
    pointer-events: auto;
    transform: none !important;
  }

  /* Fix layout overlap by stacking natively */
  .s3-step-1 {
    padding-bottom: 20px;
    justify-content: flex-start;
    align-items: center;
  }

  .s3-phase-label {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    display: inline-block;
    margin: 0 auto 24px auto;
    order: -1;
    grid-column: 1 / -1;
    justify-self: center;
    align-self: start;
    /* Prevents vertical stretching in grids */
  }

  .s3-step-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
    gap: 20px;
    margin-top: 20px;
    padding: 0;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .s3-panel {
    position: relative;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: 100% !important;
    margin: 0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  }

  .s3-q-card {
    opacity: 1 !important;
    transform: none !important;
    margin-bottom: 12px;
  }

  .s3-impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .s3-title {
    font-size: 1.8rem;
  }

  .s3-step-2 {
    grid-template-columns: 1fr;
  }

  .s3-impact-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   SECTION 4 — INTRODUCING MEETING AI
   "Meetings In → Intelligence Out"
   ======================================== */

/* ── Section Shell ── */
.s4-section {
  position: relative;
  background: #fafafa;
  padding: 100px 0 80px;
  overflow: hidden;
}

/* Radial ambient glow */
.s4-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(246, 114, 20, .06) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(246, 114, 20, .04) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(37, 99, 235, .03) 0%, transparent 60%);
  pointer-events: none;
}

/* Subtle grid texture */
.s4-grid-texture {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(17, 17, 17, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, .035) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* ── Container ── */
.s4-container {
  position: relative;
  z-index: 1;
  max-width: 1440px !important;
  width: 100%;
  margin: 0 auto;
  padding: 0 4vw;
}

/* ── TOP CONTENT ── */
.s4-top {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

/* Badge */
.s4-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(246, 114, 20, .09);
  border: 1px solid rgba(246, 114, 20, .25);
  color: #f67214;
  font-family: 'Outfit', sans-serif;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

/* Heading */
.s4-heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #111;
  margin: 0 0 18px;
}

.s4-heading-accent {
  color: #f67214;
}

/* Subtext */
.s4-subtext {
  font-family: 'Instrument Sans', system-ui, sans-serif;
  font-size: clamp(.95rem, 1.6vw, 1.08rem);
  color: #555;
  line-height: 1.7;
  margin: 0;
}

.s4-br-desktop {
  display: inline;
}

/* ── WORKFLOW GRID ── */
.s4-workflow {
  display: grid;
  grid-template-columns: minmax(0, 420px) auto minmax(0, 420px);
  gap: 0 100px;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Dynamic SVG overlay — JS draws real bezier paths here */
.s4-svg-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

/* ── COLUMNS ── */
.s4-col {
  position: relative;
  z-index: 1;
}

.s4-col-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 18px;
}

.s4-col-center .s4-col-label {
  margin-bottom: 48px;
}

.s4-col-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(246, 114, 20, .12);
  color: #f67214;
  font-size: 9px;
  font-weight: 900;
  flex-shrink: 0;
}

/* ── LEFT: SOURCE CARDS ── */
.s4-col-left {
  min-width: 0;
  max-width: 420px;
  width: 420px;
}

.s4-col-right {
  min-width: 0;
  max-width: 420px;
  width: 420px;
}

.s4-source-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Source card base */
.s4-src-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, .07);
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(12, 18, 28, .05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  cursor: default;
}

.s4-src-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(12, 18, 28, .09);
  border-color: rgba(246, 114, 20, .2);
}

/* Icon wrap */
.s4-src-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.s4-src-icon-wrap img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

.s4-icon-ifmeets {
  background: rgba(246, 114, 20, .1);
}

.s4-icon-zoom {
  background: rgba(37, 99, 235, .08);
}

.s4-icon-teams {
  background: rgba(124, 58, 237, .08);
}

.s4-icon-meet {
  background: rgba(22, 163, 74, .08);
}

/* Source info */
.s4-src-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.s4-src-name {
  font-family: 'Outfit', sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  color: #111;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.s4-src-sub {
  font-size: 13px;
  color: #888;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Status badges */
.s4-src-status {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10.5px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  letter-spacing: .3px;
}

.s4-status-live {
  color: #16a34a;
  background: rgba(22, 163, 74, .1);
  border: 1px solid rgba(22, 163, 74, .2);
  border-radius: 999px;
  padding: 3px 9px;
}

.s4-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #16a34a;
  animation: s4Pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes s4Pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .6;
    transform: scale(1.3);
  }
}

.s4-status-done {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(22, 163, 74, .12);
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.s4-status-processing {
  color: #f67214;
}

.s4-spin {
  animation: s4Spin 1.2s linear infinite;
}

@keyframes s4Spin {
  to {
    transform: rotate(360deg);
  }
}

.s4-status-upload {
  color: #888;
}

/* Upload drop zone */
.s4-upload-zone {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  border: 1.5px dashed rgba(246, 114, 20, .3);
  border-radius: 16px;
  background: rgba(246, 114, 20, .03);
  color: #888;
  font-size: 13.5px;
  font-family: 'Instrument Sans', system-ui, sans-serif;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}

.s4-upload-zone:hover {
  border-color: rgba(246, 114, 20, .55);
  background: rgba(246, 114, 20, .06);
  color: #f67214;
}

/* ── CENTER: AI CORE ── */
.s4-col-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 280px;
  flex-shrink: 0;
  overflow: visible;
}

.s4-ai-core {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

/* Pulsing rings */
.s4-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(246, 114, 20, .15);
  animation: s4RingPulse 3s ease-in-out infinite;
}

.s4-ring-1 {
  inset: 20px;
  animation-delay: 0s;
}

.s4-ring-2 {
  inset: 8px;
  border-color: rgba(246, 114, 20, .1);
  animation-delay: .6s;
}

.s4-ring-3 {
  inset: -6px;
  border-color: rgba(246, 114, 20, .06);
  animation-delay: 1.2s;
}

@keyframes s4RingPulse {

  0%,
  100% {
    opacity: .6;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.03);
  }
}

/* Core inner */
.s4-core-inner {
  position: relative;
  z-index: 2;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(246, 114, 20, .22);
  box-shadow:
    0 0 0 10px rgba(246, 114, 20, .06),
    0 16px 48px rgba(246, 114, 20, .14),
    0 6px 18px rgba(12, 18, 28, .09);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-align: center;
  animation: s4CoreFloat 4s ease-in-out infinite;
}

@keyframes s4CoreFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

.s4-core-icon {
  animation: s4StarSpin 8s linear infinite;
}

@keyframes s4StarSpin {
  to {
    transform: rotate(360deg);
  }
}

.s4-core-label {
  font-family: 'Outfit', sans-serif;
  font-size: 14.5px;
  font-weight: 800;
  color: #111;
  letter-spacing: -.01em;
}

.s4-core-sub {
  font-size: 12.5px;
  color: #f67214;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  letter-spacing: .5px;
}

/* Floating labels around core */
.s4-float-label {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #fff;
  border: 1.5px solid rgba(246, 114, 20, 0.4);
  border-radius: 999px;
  font-size: 13px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: #0f172a;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(246, 114, 20, 0.15);
  animation: s4LabelFloat 3s ease-in-out infinite;
}

/* Float labels — top/bottom only; side connections drawn by SVG JS */
.s4-fl-top {
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.s4-fl-bottom {
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: .75s;
}

/* Side labels hidden — visual connection is the animated SVG paths */
.s4-fl-left {
  display: none;
}

.s4-fl-right {
  display: none;
}

@keyframes s4LabelFloat {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-3px);
  }
}

/* col-right width set above alongside col-left */

.s4-output-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.s4-out-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 22px;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, .07);
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(12, 18, 28, .05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  cursor: default;
  animation: s4CardIn .5s ease both;
}

.s4-out-card:hover {
  transform: translateX(3px);
  box-shadow: 0 8px 24px rgba(12, 18, 28, .09);
  border-color: rgba(246, 114, 20, .18);
}

.s4-out-card-1 {
  animation-delay: .1s;
}

.s4-out-card-2 {
  animation-delay: .2s;
}

.s4-out-card-3 {
  animation-delay: .3s;
}

.s4-out-card-4 {
  animation-delay: .4s;
}

@keyframes s4CardIn {
  from {
    opacity: 0;
    transform: translateX(12px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.s4-out-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.s4-out-orange {
  background: rgba(246, 114, 20, .12);
  color: #f67214;
}

.s4-out-green {
  background: rgba(22, 163, 74, .1);
  color: #16a34a;
}

.s4-out-blue {
  background: rgba(37, 99, 235, .09);
  color: #2563eb;
}

.s4-out-purple {
  background: rgba(124, 58, 237, .09);
  color: #7c3aed;
}

.s4-out-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.s4-out-name {
  font-family: 'Outfit', sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  color: #111;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.s4-out-desc {
  font-size: 13px;
  color: #888;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.s4-out-chevron {
  color: #ccc;
  flex-shrink: 0;
  transition: color .2s;
}

.s4-out-card:hover .s4-out-chevron {
  color: #f67214;
}

/* Mobile output cards — hidden on desktop */
.s4-output-mobile {
  display: none;
}

/* ── BOTTOM TRUST STRIP ── */
.s4-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 38px;
  padding-top: 0px;
  border-top: 1px solid rgba(17, 17, 17, .07);
}

.s4-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, .12);
  border-radius: 999px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #111111;
  box-shadow: 0 1px 3px rgba(12, 18, 28, .03);
  white-space: nowrap;
  transition: all .2s ease;
}

.s4-trust-item svg {
  color: #f67214;
  width: 14px;
  height: 14px;
  stroke-width: 2.5px;
}

.s4-trust-item:hover {
  background: rgba(246, 114, 20, .03);
  border-color: rgba(246, 114, 20, .3);
  color: #f67214;
  box-shadow: 0 2px 6px rgba(246, 114, 20, .08);
}

/* ─────────────────────────────────────────
   SECTION 4 — RESPONSIVE BREAKPOINTS
   ───────────────────────────────────────── */

/* ── TABLET (≤ 1024px) ── */
@media (max-width: 1024px) {
  .s4-section {
    padding: 80px 0 64px;
  }

  .s4-top {
    margin-bottom: 48px;
  }

  .s4-workflow {
    grid-template-columns: minmax(0, 290px) auto minmax(0, 290px);
    gap: 0 40px;
  }

  .s4-col-center {
    width: 200px;
  }

  .s4-ai-core {
    width: 190px;
    height: 190px;
  }

  .s4-core-inner {
    width: 115px;
    height: 115px;
  }

  .s4-col-left,
  .s4-col-right {
    width: 290px;
    max-width: 290px;
  }

  .s4-svg-overlay {
    display: none;
  }
}

/* ── SEMI-STACKED TABLET (≤ 900px) ── */
@media (max-width: 900px) {
  .s4-workflow {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 40px;
    justify-content: stretch;
  }

  .s4-col-left,
  .s4-col-right {
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }

  .s4-col-center {
    width: 100%;
    align-items: center;
  }

  .s4-ai-core {
    width: 200px;
    height: 200px;
  }

  .s4-core-inner {
    width: 120px;
    height: 120px;
  }

  .s4-fl-top {
    top: -24px;
  }

  .s4-fl-bottom {
    bottom: -24px;
  }

  .s4-svg-overlay {
    display: none;
  }

  /* Vertical connector line */
  .s4-col-left::after {
    content: '';
    display: block;
    width: 2px;
    height: 36px;
    border-left: 2px dashed rgba(246, 114, 20, .55);
    margin: 15px auto 0;
    position: relative;
    z-index: 2;
  }

  .s4-col-center::after {
    content: '';
    display: block;
    width: 2px;
    height: 36px;
    border-left: 2px dashed rgba(246, 114, 20, .55);
    margin: 28px auto 0;
    /* Pushed down to start cleanly below the Indexing Discussions capsule */
    position: relative;
    z-index: 2;
  }
}

/* ── MOBILE (≤ 640px) ── */
@media (max-width: 640px) {
  .s4-section {
    padding: 64px 0 48px;
  }

  .s4-top {
    margin-bottom: 36px;
  }

  .s4-heading {
    font-size: clamp(1.75rem, 7vw, 2.2rem);
  }

  .s4-subtext {
    font-size: .93rem;
  }

  .s4-br-desktop {
    display: none;
  }

  /* Source cards — compact */
  .s4-src-card {
    padding: 9px 12px;
    gap: 9px;
  }

  .s4-src-icon-wrap {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }

  .s4-src-name {
    font-size: 12px;
  }

  .s4-src-sub {
    font-size: 10px;
  }

  /* Upload zone */
  .s4-upload-zone {
    font-size: 11px;
    padding: 9px 12px;
  }

  /* AI Core */
  .s4-ai-core {
    width: 190px;
    height: 190px;
  }

  .s4-core-inner {
    width: 115px;
    height: 115px;
  }

  .s4-core-label {
    font-size: 12px;
  }

  .s4-core-sub {
    font-size: 10px;
  }

  .s4-col-center .s4-col-label {
    margin-bottom: 42px;
  }

  .s4-fl-left {
    left: -95px;
    font-size: 11.5px;
    padding: 6px 12px;
  }

  .s4-fl-right {
    right: -95px;
    font-size: 11.5px;
    padding: 6px 12px;
  }

  .s4-fl-top {
    top: -24px;
    font-size: 11.5px;
    padding: 6px 12px;
  }

  .s4-fl-bottom {
    bottom: -24px;
    font-size: 11.5px;
    padding: 6px 12px;
  }

  /* HIDE desktop output list, SHOW mobile swipeable */
  .s4-output-list {
    display: none;
  }

  .s4-output-mobile {
    display: block;
  }

  .s4-col-right {
    max-width: 100%;
  }

  /* Mobile swipe track */
  .s4-mobile-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 2px 16px;
  }

  .s4-mobile-track::-webkit-scrollbar {
    display: none;
  }

  .s4-mobile-card {
    scroll-snap-align: center;
    flex: 0 0 72vw;
    max-width: 260px;
    background: #fff;
    border: 1px solid rgba(17, 17, 17, .07);
    border-radius: 16px;
    padding: 20px 18px;
    box-shadow: 0 4px 16px rgba(12, 18, 28, .07);
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .s4-mc-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .s4-mc-orange .s4-mc-icon {
    background: rgba(246, 114, 20, .12);
    color: #f67214;
  }

  .s4-mc-green .s4-mc-icon {
    background: rgba(22, 163, 74, .1);
    color: #16a34a;
  }

  .s4-mc-blue .s4-mc-icon {
    background: rgba(37, 99, 235, .09);
    color: #2563eb;
  }

  .s4-mc-purple .s4-mc-icon {
    background: rgba(124, 58, 237, .09);
    color: #7c3aed;
  }

  .s4-mc-title {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #111;
    margin: 0;
  }

  .s4-mc-desc {
    font-size: 12px;
    color: #666;
    margin: 0;
    line-height: 1.5;
  }

  /* Colored bottom bar */
  .s4-mc-bar {
    height: 3px;
    border-radius: 999px;
    margin-top: auto;
  }

  .s4-bar-orange {
    background: #f67214;
  }

  .s4-bar-green {
    background: #16a34a;
  }

  .s4-bar-blue {
    background: #2563eb;
  }

  .s4-bar-purple {
    background: #7c3aed;
  }

  /* Swipe dots */
  .s4-mobile-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 4px;
  }

  .s4-mdot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(17, 17, 17, .15);
    transition: background .25s ease, width .25s ease;
  }

  .s4-mdot-active {
    background: #f67214;
    width: 18px;
    border-radius: 999px;
  }

  /* Trust strip on mobile */
  .s4-trust-strip {
    gap: 8px 12px;
    margin-top: 40px;
    padding-top: 24px;
  }

  .s4-trust-item {
    font-size: 10.5px;
    padding: 6px 11px;
  }
}

/* ── VERY SMALL MOBILE (≤ 400px) ── */
@media (max-width: 400px) {
  .s4-mobile-card {
    flex: 0 0 82vw;
  }

  .s4-fl-left,
  .s4-fl-right {
    display: none;
  }
}

/* ========================================
   SECTION 5 — THE X-RAY SCANNER (WHAT HAPPENS)
   ======================================== */
.s5-section {
  padding: 120px 0;
  background: #fdfdfd;
  position: relative;
  overflow: hidden;
}

.s5-header {
  text-align: center;
  margin-bottom: 60px;
}

.s5-header .section-intro {
  margin: 20px auto 0;
  max-width: 700px;
  font-size: 1.1rem;
  font-weight: 500;
  color: #475569;
  line-height: 1.6;
}

/* --- THE UNIFIED DASHBOARD CONTAINER --- */
.s5-dashboard {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 40px 100px -20px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(15, 23, 42, 0.02);
  padding: 40px;
  overflow: hidden;
  /* Subtle internal mesh grid to make it feel like a workspace */
  background-image: radial-gradient(rgba(246, 114, 20, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* SVG Line Connector layer */
.s5-dash-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.s5-dash-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 280px 300px;
  gap: 40px;
  align-items: center;
}

/* --- COL 1: CHAT UI --- */
.s5-chat-window {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.s5-chat-topbar {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  gap: 12px;
}

.s5-chat-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #334155;
  flex: 1;
  text-align: center;
}

.s5-chat-timer {
  font-size: 0.75rem;
  font-weight: 600;
  color: #ef4444;
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: center;
}

.s5-chat-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.s5-msg {
  display: flex;
  gap: 12px;
  opacity: 0.4;
  /* Dimmed initially, GSAP will highlight */
  transition: opacity 0.3s ease;
  position: relative;
  padding-right: 120px;
  /* Give room for absolute tags so they never overlap text */
}

.s5-msg.highlight {
  opacity: 1;
}

.s5-msg-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #3b82f6;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.s5-msg-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.s5-msg-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: #1e293b;
}

.s5-msg-time {
  font-size: 0.7rem;
  font-weight: 500;
  color: #94a3b8;
  margin-left: 6px;
}

.s5-msg-bubble {
  font-size: 0.9rem;
  color: #334155;
  background: #f1f5f9;
  padding: 10px 14px;
  border-radius: 0 12px 12px 12px;
  line-height: 1.4;
  max-width: 100%;
}

/* Floating Tags */
.s5-float-tag {
  position: absolute;
  top: 50%;
  right: 0px;
  /* Align precisely to the padded edge */
  transform: translateY(-50%) scale(0.8);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  opacity: 0;
  z-index: 10;
}

.s5-tag-topic {
  background: #eff6ff;
  color: #2563eb;
  border: 1px solid #bfdbfe;
}

.s5-tag-decision {
  background: #f0fdf4;
  color: #16a34a;
  border: 1px solid #bbf7d0;
}

.s5-tag-action {
  background: #fff7ed;
  color: #f67214;
  border: 1px solid #ffedd5;
}

/* --- COL 2: THE AI CORE --- */
.s5-engine-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.s5-terminal {
  background: #0f172a;
  border-radius: 14px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.3);
  border: 1px solid #334155;
  transform: scale(1.05);
  /* Highlight the terminal as the hero piece */
}

.s5-term-header {
  background: #1e293b;
  padding: 8px 12px;
  font-family: monospace;
  font-size: 0.7rem;
  color: #94a3b8;
  text-align: center;
  border-bottom: 1px solid #334155;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.s5-term-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: 'Consolas', 'Courier New', monospace;
  font-size: 0.75rem;
}

.s5-term-line {
  color: #64748b;
  display: flex;
  justify-content: space-between;
  opacity: 0.3;
  transition: all 0.2s ease;
}

.s5-term-line.active {
  color: #e2e8f0;
  opacity: 1;
}

.s5-cursor {
  color: #f67214;
  margin-right: 6px;
  font-weight: bold;
}

.s5-t-done {
  color: #10b981;
  font-weight: bold;
  opacity: 0;
}

.s5-term-line.active .s5-t-done {
  opacity: 1;
}

/* --- COL 3: RICH DOCUMENTS --- */
.s5-docs-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.s5-doc-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(145deg, #ffffff, #f8fafc);
  padding: 16px 20px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 15px 35px -5px rgba(15, 23, 42, 0.06), 0 0 0 1px rgba(15, 23, 42, 0.02);
  width: 100%;
  position: relative;
  opacity: 0;
  transform: translateX(20px);
  overflow: hidden;
}

/* Beautiful colored side indicator */
.s5-doc-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
}

.doc-blue::before {
  background: #3b82f6;
}

.doc-green::before {
  background: #10b981;
}

.doc-orange::before {
  background: #f67214;
}

.s5-doc-icon {
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #edf2f7;
  color: #64748b;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

/* Color-coded icons matching the side border */
.doc-blue .s5-doc-icon {
  color: #3b82f6;
  background: #eff6ff;
  border-color: #bfdbfe;
}

.doc-green .s5-doc-icon {
  color: #10b981;
  background: #f0fdf4;
  border-color: #bbf7d0;
}

.doc-orange .s5-doc-icon {
  color: #f67214;
  background: #fff7ed;
  border-color: #ffedd5;
}

.s5-doc-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.s5-doc-info strong {
  font-size: 0.9rem;
  font-weight: 800;
  color: #0f172a;
}

.s5-doc-info span {
  font-size: 0.75rem;
  font-weight: 500;
  color: #64748b;
}

.s5-doc-badge {
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 6px;
  background: #e2e8f0;
  color: #64748b;
  letter-spacing: 0.5px;
}

/* Responsive Unified Dashboard */
@media (max-width: 991px) {
  .s5-dash-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .s5-dashboard {
    padding: 24px;
  }

  .s5-engine-col {
    max-width: 300px;
    margin: 0 auto;
    width: 100%;
  }

  .s5-float-tag {
    right: 10px;
  }

  /* Pull tags in on mobile */
}

/* ========================================
   SECTION 6 — CHAT-BASED MEETING AGENT
   ======================================== */
.s6-section {
  padding: 100px 0;
  background: #080c17;
  /* Deep dark premium theme */
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.s6-container {
  position: relative;
  z-index: 2;
}

.s6-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  /* Give right side slightly more room */
  gap: 80px;
  align-items: center;
}

/* --- LEFT COLUMN: VISUALS (GLASSMORPHISM) --- */
.s6-visual-col {
  position: relative;
  width: 100%;
}

.s6-float-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  opacity: 0.5;
}

.s6-float-orb.orb-1 {
  width: 300px;
  height: 300px;
  background: #f67214;
  top: -50px;
  left: -50px;
  animation: s6OrbFloat 15s ease-in-out infinite alternate;
}

.s6-float-orb.orb-2 {
  width: 250px;
  height: 250px;
  background: #3b82f6;
  bottom: -30px;
  right: -30px;
  animation: s6OrbFloat 12s ease-in-out infinite alternate-reverse;
}

@keyframes s6OrbFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(30px, 40px) scale(1.1);
  }
}

.s6-glass-panel {
  position: relative;
  z-index: 2;
  max-width: 580px;
  /* Constrain width so it looks like a real app window */
  margin: 0 auto;
  /* Center it within its column */
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.s6-glass-header {
  padding: 16px 20px;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
}

.s6-mac-dots {
  display: flex;
  gap: 6px;
}

.s6-mac-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.s6-mac-dots span:nth-child(1) {
  background: #ff5f56;
}

.s6-mac-dots span:nth-child(2) {
  background: #ffbd2e;
}

.s6-mac-dots span:nth-child(3) {
  background: #27c93f;
}

.s6-header-title {
  flex: 1;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
  padding-right: 46px;
  /* offset for dots to center text */
}

.s6-glass-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.s6-rooms-wrapper {
  overflow-x: auto;
  scrollbar-width: none;
}

.s6-rooms-wrapper::-webkit-scrollbar {
  display: none;
}

.s6-rooms {
  display: flex;
  gap: 12px;
}

.s6-room {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #94a3b8;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease;
}

.s6-room:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.s6-room.active {
  background: rgba(246, 114, 20, 0.15);
  border-color: rgba(246, 114, 20, 0.5);
  color: #f67214;
}

.s6-chat-area {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 280px;
}

.s6-chat-bubble {
  max-width: 85%;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.3;
  /* Default state before GSAP */
}

.s6-user-bubble {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.s6-ai-bubble {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: #cbd5e1;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.s6-ai-header {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
  align-items: center;
}

.s6-ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #60a5fa;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.s6-source-badge {
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.s6-typing-dots {
  display: flex;
  gap: 4px;
  padding: 4px 0;
}

.s6-typing-dots span {
  width: 6px;
  height: 6px;
  background: #64748b;
  border-radius: 50%;
  animation: s6Typing 1.4s infinite both;
}

.s6-typing-dots span:nth-child(1) {
  animation-delay: -0.32s;
}

.s6-typing-dots span:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes s6Typing {

  0%,
  80%,
  100% {
    transform: scale(0);
    opacity: 0.5;
  }

  40% {
    transform: scale(1);
    opacity: 1;
  }
}

.s6-search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-top: 10px;
}

.s6-search-icon {
  color: #94a3b8;
}

.s6-search-placeholder {
  color: #64748b;
  font-size: 0.95rem;
}

/* --- RIGHT COLUMN: CONTENT --- */
.s6-badge {
  margin-bottom: 24px;
  background: rgba(246, 114, 20, 0.1) !important;
  color: #f67214 !important;
  border: 1px solid rgba(246, 114, 20, 0.2) !important;
}

.s6-title {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.s6-intro {
  font-size: 1.15rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 40px;
}

.s6-features {
  margin-bottom: 40px;
}

.s6-f-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 20px;
}

.s6-f-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.s6-f-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 1.05rem;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.03);
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.2s ease;
}

.s6-f-list li:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.s6-f-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.s6-cta-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(246, 114, 20, 0.15) 0%, rgba(246, 114, 20, 0.05) 100%);
  border: 1px solid rgba(246, 114, 20, 0.3);
  border-radius: 16px;
}

.s6-cta-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #f67214;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.s6-cta-text {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #e2e8f0;
}

.s6-cta-text strong {
  color: #fff;
}

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
  .s6-section {
    padding: 60px 0;
    overflow-x: hidden;
    width: 100vw;
    box-sizing: border-box;
  }

  .s6-container {
    padding: 0 15px;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .s6-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    width: 100%;
  }

  .s6-visual-col,
  .s6-content-col {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .s6-visual-col {
    order: 2;
    /* visual on bottom for mobile */
  }

  .s6-content-col {
    order: 1;
    /* content on top for mobile */
    max-width: 380px;
    /* Match the compact width of the glass panel */
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }

  .s6-glass-panel {
    max-width: 380px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .s6-rooms-wrapper {
    max-width: 100%;
  }

  .s6-glass-body {
    padding: 16px;
    gap: 16px;
  }

  .s6-chat-bubble {
    max-width: 100%;
    padding: 12px 14px;
    font-size: 0.9rem;
    word-break: break-word;
  }

  .s6-ai-badge {
    font-size: 0.7rem;
  }

  .s6-title {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
    margin-bottom: 16px;
    text-align: left;
    /* Left-align heading on mobile */
    word-break: break-word;
  }

  .s6-f-title {
    text-align: left;
    /* Left-align feature title on mobile */
  }

  .s6-intro {
    font-size: 1rem;
    word-break: break-word;
    text-align: left;
    /* Left-align intro on mobile */
  }

  .s6-f-list li {
    font-size: 1rem;
    word-break: break-word;
    box-sizing: border-box;
    /* Prevent padding from causing overflow */
    width: 100%;
  }

  .s6-cta-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    padding: 20px 16px;
  }

  .s6-cta-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* ========================================
   SECTION 7 — OUTPUTS (BENTO BOX)
   ======================================== */
.s7-section {
  padding: 100px 0;
  /* Reduced padding so it's not so bulky */
  background: #f8fafc;
  color: #0f172a;
  position: relative;
  overflow: hidden;
}

/* Background Glowing Orbs for depth */
.s7-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  opacity: 0.05;
  pointer-events: none;
}

.s7-bg-orb.s7-orb-1 {
  width: 600px;
  height: 600px;
  background: #f67214;
  top: -100px;
  left: -200px;
}

.s7-bg-orb.s7-orb-2 {
  width: 500px;
  height: 500px;
  background: #3b82f6;
  bottom: -100px;
  right: -100px;
}

.s7-container {
  max-width: 1200px;
  /* Wider container for 3 cards */
  margin: 0 auto;
  padding: 0 5%;
  position: relative;
  z-index: 2;
}

.s7-header {
  text-align: center;
  margin-bottom: 64px;
}

.s7-badge {
  background: rgba(246, 114, 20, 0.1);
  color: #f67214;
  border: 1px solid rgba(246, 114, 20, 0.2);
  display: inline-flex;
  margin-bottom: 24px;
}

.s7-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  /* Slightly smaller than before so it fits */
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.s7-intro {
  font-size: 1.15rem;
  color: #64748b;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

/* 3 Column Grid */
.s7-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Card Styling */
.s7-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px 28px;
  /* Reduced padding to not feel massive */
  border: 1px solid rgba(15, 23, 42, 0.04);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.04), 0 10px 20px -5px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  /* for GSAP */
  transform: translateY(30px);
  /* for GSAP */
}

/* Hover effects with colored glow */
.s7-card:hover {
  transform: translateY(-8px) !important;
}

.s7-card-blue:hover {
  box-shadow: 0 30px 60px -15px rgba(59, 130, 246, 0.25), 0 0 40px rgba(59, 130, 246, 0.1);
}

.s7-card-green:hover {
  box-shadow: 0 30px 60px -15px rgba(16, 185, 129, 0.25), 0 0 40px rgba(16, 185, 129, 0.1);
}

.s7-card-orange:hover {
  box-shadow: 0 30px 60px -15px rgba(246, 114, 20, 0.25), 0 0 40px rgba(246, 114, 20, 0.1);
}

.s7-card-header {
  margin-bottom: 20px;
}

.s7-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.s7-card-blue .s7-icon-wrap {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  color: #3b82f6;
}

.s7-card-green .s7-icon-wrap {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  color: #10b981;
}

.s7-card-orange .s7-icon-wrap {
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
  color: #f67214;
}

.s7-card-title {
  font-family: "Outfit", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
}

.s7-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.s7-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.05rem;
  color: #334155;
}

.s7-check {
  margin-top: 3px;
  flex-shrink: 0;
}

.s7-card-blue .s7-check {
  color: #3b82f6;
}

.s7-card-green .s7-check {
  color: #10b981;
}

.s7-card-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 24px;
  flex-grow: 1;
}

.s7-card-tag {
  display: inline-block;
  padding: 6px 14px;
  background: #fff7ed;
  color: #f67214;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
}

@media (max-width: 991px) {
  .s7-cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}