:root {
  color-scheme: light;
  --bg: #0b0b14;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --text: #f9fbff;
  --muted: rgba(249, 251, 255, 0.7);
  --accent: #5b7cfa;
  --accent-strong: #7d9eff;
  --accent-secondary: #4ecdc4;
  --accent-warm: #ffa94d;
  --gradient: linear-gradient(135deg, #5b7cfa, #4ecdc4 50%, #7d9eff);
  --gradient-warm: linear-gradient(135deg, #ffa94d, #ff8787);
  --shadow: 0 32px 80px rgba(17, 22, 58, 0.35);
  --radius: 20px;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: linear-gradient(to bottom, #ffffff, #f0f4ff);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
}

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

a:hover {
  color: var(--accent-strong);
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.site-header {
  background: #000000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 2.3em;
  width: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.nav-item {
  position: relative;
}

.nav-link,
.nav-toggle {
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-toggle:hover {
  color: var(--text);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  font: inherit;
}

.nav-toggle:focus-visible {
  outline: 2px solid rgba(125, 158, 255, 0.85);
  outline-offset: 4px;
}

.chevron {
  width: 0.6rem;
  height: 0.6rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-top: -0.1rem;
}

.nav-toggle[aria-expanded="true"] .chevron {
  transform: rotate(225deg);
}

.nav-panel {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translate(-50%, 10px);
  min-width: 620px;
  background: #0f1223;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 15;
}

.nav-panel[data-open="true"] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-panel-header {
  margin-bottom: 1.5rem;
}

.nav-panel-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(249, 251, 255, 0.6);
  margin: 0 0 0.5rem;
}

.nav-panel-description {
  margin: 0 0 1.25rem;
  color: rgba(249, 251, 255, 0.72);
  font-size: 0.9rem;
}

.nav-panel-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav-product {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-radius: 20px;
  background: #171c33;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-product:hover {
  background: #1f2542;
  border-color: rgba(91, 124, 250, 0.65);
  transform: translateY(-2px);
}

.nav-product-logo {
  width: 3rem;
  height: 3rem;
  border-radius: 18px;
  background: #232a4b;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.nav-product-logo img {
  width: 2rem;
  height: 2rem;
}

.nav-product-copy {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.nav-product-name {
  font-weight: 600;
}

.nav-product-description {
  font-size: 0.85rem;
  color: rgba(249, 251, 255, 0.65);
}

.nav-panel--list {
  min-width: 320px;
  left: 0;
  transform: translateY(10px);
  padding: 1.5rem;
}

.nav-panel--list[data-open="true"] {
  transform: translateY(0);
}

#solutions-panel {
  min-width: 620px;
}

#solutions-panel .nav-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.nav-list-item {
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: #171c33;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-list-item:hover {
  background: #222a4a;
  border-color: rgba(78, 205, 196, 0.65);
  transform: translateY(-1px);
}

.nav-list-title {
  font-weight: 600;
}

.nav-list-description {
  font-size: 0.82rem;
  color: rgba(249, 251, 255, 0.7);
}

.cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.language-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.language-switch select {
  appearance: none;
  background: #171c33;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text);
  padding: 0.45rem 2.25rem 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.language-switch select:hover {
  background: #1f2542;
  border-color: rgba(255, 255, 255, 0.2);
}

.language-switch select:focus {
  outline: none;
  border-color: rgba(125, 158, 255, 0.8);
  box-shadow: 0 0 0 3px rgba(91, 124, 250, 0.25);
}

.language-switch select option {
  background: #0f1223;
  color: var(--text);
  padding: 0.5rem;
}

.language-switch select option:checked,
.language-switch select option:hover,
.language-switch select option:focus {
  background: rgba(91, 124, 250, 0.35);
  color: var(--text);
}

.language-switch::after {
  content: "";
  position: absolute;
  right: 0.85rem;
  pointer-events: none;
  border-top: 6px solid var(--muted);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}

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

/* Hamburger Button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 1001;
  margin-left: auto;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu Container */
.mobile-menu {
  display: contents;
}

/* Responsive Styles for < 1200px */
@media (max-width: 1199px) {
  .hamburger {
    display: flex;
  }

  .mobile-menu-overlay {
    display: block;
  }

  .mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    height: 100dvh;
    background: #0f1223;
    z-index: 1000;
    padding: 5rem 2rem 2rem;
    gap: 2rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  }

  .mobile-menu.is-open {
    transform: translateX(0);
  }

  /* Sidebar width for larger screens */
  .mobile-menu {
    width: 380px;
    max-width: 100%;
  }

  .main-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    width: 100%;
  }

  .nav-item {
    width: 100%;
  }

  .nav-toggle,
  .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    transition: background 0.2s ease;
  }

  .nav-toggle:hover,
  .nav-link:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  /* Navigation panels in mobile */
  .nav-panel {
    position: static;
    transform: none !important;
    left: 0 !important;
    min-width: 100%;
    width: 100%;
    border-radius: 12px;
    margin-top: 0.5rem;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.3s ease,
      padding 0.3s ease,
      visibility 0.3s ease;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(15, 18, 35, 0.95);
  }

  .nav-panel[data-open="true"] {
    max-height: 50vh;
    opacity: 1;
    visibility: visible;
    padding: 1rem;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }

  /* Custom scrollbar for submenus */
  .nav-panel::-webkit-scrollbar {
    width: 6px;
  }

  .nav-panel::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
  }

  .nav-panel::-webkit-scrollbar-thumb {
    background: rgba(91, 124, 250, 0.4);
    border-radius: 3px;
  }

  .nav-panel::-webkit-scrollbar-thumb:hover {
    background: rgba(91, 124, 250, 0.6);
  }

  .nav-panel--products {
    min-width: 100%;
  }



  #solutions-panel {
    min-width: 100%;
  }

  #solutions-panel .nav-list {
    grid-template-columns: 1fr;
  }

  .cta-group {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .cta-group .link,
  .cta-group .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .language-switch {
    width: 100%;
  }

  .language-switch select {
    width: 100%;
  }
}

/* Full screen on mobile */
@media (max-width: 767px) {
  .mobile-menu {
    width: 100%;
    padding: 5rem 1.5rem 2rem;
  }
}

/* Body scroll lock when menu is open */
body.menu-open {
  overflow: hidden;
}

.btn {
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  background: linear-gradient(135deg, #5b7cfa, #4ecdc4);
  color: #ffffff;
  font-weight: 600;
  border: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 16px rgba(91, 124, 250, 0.4);
}

.btn:hover {
  background: linear-gradient(135deg, #4a6ef5, #3db8ad);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(91, 124, 250, 0.5);
}

.link {
  color: rgba(249, 251, 255, 0.8);
  font-weight: 500;
  transition: all 0.2s ease;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
}

.link:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

.hero .link {
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  background: #ffffff;
  color: rgba(11, 11, 20, 0.7);
  font-weight: 600;
  border: 1px solid rgba(11, 11, 20, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: inline-block;
}

.hero .link:hover {
  background: #f8f9ff;
  border-color: rgba(91, 124, 250, 0.3);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


.hero {
  padding: clamp(4rem, 12vh, 7rem) 0 5rem;
  background: var(--bg);
  color: var(--text);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(91, 124, 250, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(78, 205, 196, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 40% 70%, rgba(91, 124, 250, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(78, 205, 196, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(91, 124, 250, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 60% 10%, rgba(78, 205, 196, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 30% 50%, rgba(91, 124, 250, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(78, 205, 196, 0.25) 0%, transparent 50%);
  background-size: 400px 400px, 350px 350px, 300px 300px, 450px 450px, 380px 380px, 320px 320px, 400px 400px, 360px 360px;
  background-position:
    20% 30%, 80% 20%, 40% 70%, 90% 80%, 10% 90%, 60% 10%, 30% 50%, 70% 60%;
  background-repeat: no-repeat;
  opacity: 0.6;
  animation: sparkle 8s ease-in-out infinite;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 50% 40%, rgba(125, 158, 255, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 25% 80%, rgba(91, 124, 250, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 75% 30%, rgba(78, 205, 196, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 15% 50%, rgba(125, 158, 255, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(91, 124, 250, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 55% 15%, rgba(78, 205, 196, 0.3) 0%, transparent 50%);
  background-size: 500px 500px, 420px 420px, 380px 380px, 450px 450px, 400px 400px, 360px 360px;
  background-position:
    50% 40%, 25% 80%, 75% 30%, 15% 50%, 85% 70%, 55% 15%;
  background-repeat: no-repeat;
  opacity: 0.4;
  animation: sparkle 10s ease-in-out infinite reverse;
  pointer-events: none;
}

@keyframes sparkle {

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

  25% {
    opacity: 0.7;
    transform: scale(1.1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.95);
  }

  75% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

.hero-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
  max-width: min(1400px, 100%);
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 3rem);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
  align-items: center;
  max-width: 1100px;
}

.hero-copy .eyebrow {
  background: rgba(91, 124, 250, 0.15);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  color: var(--accent-strong);
  font-weight: 600;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  line-height: 1.1;
  margin: 0;
  color: var(--text);
}

.hero-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0;
  max-width: 800px;
}

.hero .cta-group {
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  background: linear-gradient(135deg, rgba(91, 124, 250, 0.15) 0%, rgba(78, 205, 196, 0.12) 50%, rgba(91, 124, 250, 0.08) 100%);
  border-radius: 32px;
  border: none;
  padding: clamp(1.1rem, 3vw, 2.25rem);
  box-shadow: 0 35px 80px rgba(15, 24, 48, 0.12);
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  margin-top: 0.5rem;
  max-width: min(1400px, 100%);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(91, 124, 250, 0.06), rgba(78, 205, 196, 0.04) 55%, transparent);
  pointer-events: none;
}

.dashboard {
  position: relative;
  background: #0b0b14;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0;
  display: flex;
  flex-direction: column;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.4);
  width: min(1400px, 100%);
  overflow: hidden;
}

/* Dashboard scroll animations */
[data-animate="browser-bar"],
[data-animate="transcript-header"],
[data-animate="transcript-line"],
[data-animate="chat-header"],
[data-animate="chat-message"],
[data-animate="chat-suggestion"],
[data-animate="suggestion-btn"],
[data-animate="chat-input"] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate="browser-bar"].animate-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="transcript-header"].animate-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="transcript-line"].animate-visible {
  opacity: 1;
  transform: translateY(0);
  animation: slideInFade 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

[data-animate="chat-header"].animate-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="chat-message"].animate-visible {
  opacity: 1;
  transform: translateY(0);
  animation: slideInFade 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

[data-animate="chat-suggestion"].animate-visible {
  opacity: 1;
  transform: translateY(0);
  animation: slideInFade 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

[data-animate="suggestion-btn"].animate-visible {
  opacity: 1;
  transform: translateX(-10px) translateY(0);
  animation: slideInLeft 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

[data-animate="chat-input"].animate-visible {
  opacity: 1;
  transform: translateY(0);
  animation: slideInFade 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideInFade {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

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

.browser-bar {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1.1rem;
  padding: 1rem 1.8rem;
  background: #10111a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.browser-dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.browser-dots span:nth-child(1) {
  background: #ff6464;
}

.browser-dots span:nth-child(2) {
  background: #ffb84d;
}

.browser-dots span:nth-child(3) {
  background: #63d882;
}

.browser-address {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: rgba(11, 11, 20, 0.85);
}

.address-chip {
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: #ffffff;
  color: #5b7cfa;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid rgba(91, 124, 250, 0.2);
  box-shadow: 0 4px 18px rgba(91, 124, 250, 0.25);
}

.browser-address span:last-child {
  font-weight: 500;
  color: rgba(11, 11, 20, 0.75);
}

.browser-sync {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  color: rgba(91, 124, 250, 0.85);
  justify-self: end;
}

.sync-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4ecdc4, #5b7cfa);
  box-shadow: 0 0 12px rgba(78, 205, 196, 0.7);
}

/* New 3-pane Dashboard Body */
.dash-3pane {
  display: grid;
  grid-template-columns: 68px 1fr 340px;
  background: #0b0b14;
  min-height: 480px;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
}

/* 1. Sidebar */
.dash-sidebar {
  background: #0f1019;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dash-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #9ba1a6;
  cursor: pointer;
  transition: all 0.2s;
}

.dash-nav-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #f9fbff;
}

.dash-nav-item.active {
  background: rgba(91, 124, 250, 0.1);
  color: #5b7cfa;
}

.dash-nav-item.active svg {
  color: #5b7cfa;
}

.dash-nav-item svg {
  color: #9ca3af;
}

.dash-nav-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0.75rem 0;
}

/* 2. Main Area */
.dash-main {
  display: flex;
  flex-direction: column;
  background: #0b0b14;
}

.dash-main-head {
  padding: 1rem 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dash-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #8c909b;
  font-weight: 500;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dash-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.dash-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #f9fbff;
  margin: 0;
  line-height: 1.4;
  max-width: 90%;
}

.dash-date {
  display: block;
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dash-title-actions {
  display: flex;
  gap: 0.5rem;
}

.dash-btn-icon,
.dash-btn-share {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #d1d5db;
  cursor: pointer;
  transition: all 0.2s;
}

.dash-btn-icon {
  width: 32px;
  height: 32px;
}

.dash-btn-share {
  padding: 0 1rem;
  height: 32px;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
}

.dash-btn-icon:hover,
.dash-btn-share:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.dash-tabs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: -1px;
}

.dash-tab-group {
  display: flex;
  gap: 1.5rem;
}

.dash-tab {
  padding: 0.75rem 0;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: #8c909b;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}

.dash-tab:hover {
  color: #d1d5db;
}

.dash-tab.active {
  color: #5b7cfa;
  border-bottom-color: #5b7cfa;
}

.dash-tab-right {
  display: flex;
  gap: 0.5rem;
  padding-bottom: 0.5rem;
}

.dash-btn-translate {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #1f2937;
  color: #f9fafb;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0 0.75rem;
  height: 32px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}

.dash-transcript-list {
  padding: 1rem 1.5rem;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dash-t-line {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 1rem;
}

.dash-t-line.active {
  background: rgba(91, 124, 250, 0.1);
  border-radius: 8px;
  padding: -0.5rem;
  box-shadow: 0 0 0 0.5rem rgba(91, 124, 250, 0.1);
}

.dash-t-line.active .dash-t-time {
  color: #5b7cfa;
  font-weight: 700;
}

.dash-t-time {
  font-size: 0.85rem;
  color: #6b7280;
  font-weight: 600;
  margin-top: 0.25rem;
}

.dash-t-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #d1d5db;
  margin: 0;
}

/* 3. AI Assistant Area */
.dash-right {
  background: #0f1019;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
}

.dash-chat-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 600;
  font-size: 0.95rem;
  color: #f9fbff;
  background: #0b0b14;
}

.dash-chat-icon {
  display: flex;
  color: #10b981;
}

.dash-chat-messages {
  flex: 1;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow-y: auto;
}

.dash-chat-msg {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 90%;
}

.dash-chat-msg--user {
  align-self: flex-end;
  align-items: flex-end;
  flex-direction: row-reverse;
}

.dash-chat-msg--ai {
  align-self: flex-start;
  flex-direction: row;
}

.dash-chat-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #1f2937;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  color: #9ca3af;
}

.dash-chat-msg--ai .dash-chat-avatar {
  background: linear-gradient(135deg, #5b7cfa, #4ecdc4);
  color: #ffffff;
}

.wizi-avatar-text {
  font-size: 0.8rem;
  font-weight: 700;
}

.dash-chat-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dash-chat-bubble {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #d1d5db;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
}

.dash-chat-msg--user .dash-chat-bubble {
  background: #5b7cfa;
  color: #ffffff;
  border: none;
  border-radius: 12px 12px 0 12px;
}

.dash-chat-msg--ai .dash-chat-bubble {
  border-radius: 12px 12px 12px 0;
}

.dash-chat-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.dash-action-btn,
.dash-icon-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: #9ca3af;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  transition: all 0.2s;
}

.dash-action-btn {
  padding: 0 0.75rem;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.dash-icon-btn {
  width: 28px;
}

.dash-action-btn:hover,
.dash-icon-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #f9fbff;
}

.dash-suggestions {
  padding: 0 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dash-sugg-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.85rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #9ca3af;
  cursor: pointer;
  transition: all 0.2s;
}

.dash-sugg-btn:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #f9fbff;
  transform: translateY(-1px);
}

.dash-input-area {
  padding: 0.75rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0b0b14;
  display: flex;
  align-items: center;
  border-radius: 0 0 16px 0;
}

.dash-input-area input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: #f9fbff;
}

.dash-input-area input::placeholder {
  color: #6b7280;
}

.dash-input-area input:focus {
  outline: none;
}

.dash-send-btn {
  background: #10b981;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.dash-send-btn:hover {
  background: #059669;
}

#features {
  padding: 4rem 0;
  background: var(--bg);
  color: var(--text);
}

.section-heading {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 1rem;
  color: var(--text);
}

.section-heading p {
  color: var(--muted);
}

.product-grid {
  display: grid;
  gap: 2.5rem;
}

.product-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(91, 124, 250, 0.3), rgba(78, 205, 196, 0.15) 55%, transparent);
  pointer-events: none;
}

.card-content {
  position: relative;
  z-index: 1;
}

.product-logo-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.product-logo-wrap img {
  width: 32px;
  height: 32px;
}

.product-card h3 {
  margin-top: 0;
  font-size: 1.6rem;
  color: var(--text);
}

.product-card .description {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: grid;
  gap: 0.75rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.6rem;
}

.feature-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--accent-strong);
}

.card-cta {
  color: var(--accent-strong);
  font-weight: 600;
}

#solutions {
  padding: 5rem 0;
  background: #f0f4ff;
}

#solutions .section-heading h2 {
  color: #0b0b14;
}

#solutions .section-heading p {
  color: rgba(11, 11, 20, 0.7);
}

/* Agentes destacado */
.agents-highlight {
  margin: 4rem 0;
  background: linear-gradient(135deg, rgba(91, 124, 250, 0.15), rgba(78, 205, 196, 0.12));
  border-radius: 24px;
  padding: 3rem;
  border: 2px solid rgba(91, 124, 250, 0.3);
  box-shadow: 0 12px 40px rgba(91, 124, 250, 0.15);
}

.agents-content {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.agents-icon-large {
  width: 120px;
  height: 120px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(91, 124, 250, 0.25), rgba(78, 205, 196, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(91, 124, 250, 0.4);
  flex-shrink: 0;
}

.agents-icon-large img {
  width: 72px;
  height: 72px;
}

.agents-text h3 {
  margin: 0 0 1rem;
  color: #0b0b14;
  font-size: 2rem;
  font-weight: 700;
}

.agents-t.hero-copy p {
  font-size: 1.125rem;
  color: rgba(10, 10, 35, 0.75);
  margin: 1.25rem 0 2rem;
  line-height: 1.6;
}

.gradient-text {
  background: linear-gradient(135deg, #5b7cfa, #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.agents-text p {
  margin: 0;
  color: rgba(11, 11, 20, 0.8);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Integraciones */
.integrations-section {
  margin: 4rem 0;
  text-align: center;
}

.integrations-title {
  margin: 0 0 2.5rem;
  color: #0b0b14;
  font-size: 1.75rem;
  font-weight: 700;
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Infografía del flujo - Diseño horizontal */
.workflow-infographic {
  margin: 4rem 0 0;
  padding: 2.75rem clamp(1.5rem, 4vw, 3rem);
  background: radial-gradient(circle at 15% 20%, rgba(78, 205, 196, 0.18), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(91, 124, 250, 0.25), transparent 50%),
    linear-gradient(135deg, #050914, #0f1830);
  border-radius: 28px;
  border: 1px solid rgba(91, 124, 250, 0.35);
  box-shadow: 0 20px 45px rgba(5, 7, 15, 0.4);
  color: #f5f7ff;
  position: relative;
  overflow: hidden;
}

.infographic-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: inherit;
}

.flow-source,
.flow-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  padding: 1.35rem 1.5rem;
  min-width: 140px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(4, 8, 24, 0.45);
}

.source-icon,
.center-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  width: 72px;
  height: 72px;
}

.center-icon {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
}

.source-icon img,
.center-icon img {
  width: 45px;
  height: 45px;
}

.flow-source p,
.flow-center p {
  margin: 0;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(245, 247, 255, 0.75);
}

.flow-center p {
  max-width: 180px;
}

.flow-arrow {
  position: relative;
  width: 70px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(91, 124, 250, 0.85));
  flex-shrink: 0;
}

.flow-arrow::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-top: 2px solid rgba(91, 124, 250, 0.85);
  border-right: 2px solid rgba(91, 124, 250, 0.85);
  transform: translateY(-50%) rotate(45deg);
}

.flow-integrations {
  flex: 1;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  padding-left: 1rem;
}

.flow-integrations::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(180deg, rgba(91, 124, 250, 0.2), rgba(255, 255, 255, 0.05));
}

.integration-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem 0.85rem 1.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  color: inherit;
}

.integration-item::before {
  content: "";
  position: absolute;
  left: -1.1rem;
  top: 50%;
  width: 1.4rem;
  height: 2px;
  background: linear-gradient(90deg, rgba(91, 124, 250, 0.1), rgba(91, 124, 250, 0.65));
  transform: translateY(-50%);
}

.integration-item--alert {
  background: rgba(234, 67, 53, 0.12);
  border-color: rgba(234, 67, 53, 0.35);
}

.integration-action {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(245, 247, 255, 0.9);
}

.integration-logo {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.4), 0 4px 10px rgba(5, 7, 15, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.integration-logo svg {
  width: 22px;
  height: 22px;
}

/* Responsive para Casos de uso */
@media (max-width: 768px) {
  .infographic-flow {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
  }

  .flow-arrow {
    width: 2px;
    height: 48px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(91, 124, 250, 0.7));
    margin: 0 auto;
  }

  .flow-arrow::after {
    right: 50%;
    top: auto;
    bottom: -6px;
    transform: translateX(50%) rotate(135deg);
  }

  .flow-source,
  .flow-center {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .flow-integrations {
    padding-left: 0.5rem;
  }

  .flow-integrations::before {
    left: 6px;
  }

  .integration-item {
    padding-left: 1.25rem;
  }
}

.solutions-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.solution-card {
  background: linear-gradient(135deg, rgba(91, 124, 250, 0.1), rgba(78, 205, 196, 0.08));
  padding: 2.5rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border: 1px solid rgba(91, 124, 250, 0.2);
  box-shadow: 0 8px 24px rgba(91, 124, 250, 0.12);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #5b7cfa, #4ecdc4);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(91, 124, 250, 0.2);
  border-color: rgba(91, 124, 250, 0.3);
}

.solution-card:hover::before {
  opacity: 1;
}

.solution-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(91, 124, 250, 0.15), rgba(78, 205, 196, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  border: 1px solid rgba(91, 124, 250, 0.2);
  transition: all 0.3s ease;
}

.solution-card:hover .solution-icon {
  background: linear-gradient(135deg, rgba(91, 124, 250, 0.25), rgba(78, 205, 196, 0.2));
  transform: scale(1.05);
}

.solution-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.solution-card h3 {
  margin: 0;
  color: #0b0b14;
  font-size: 1.25rem;
  font-weight: 700;
}

.solution-card p {
  color: rgba(11, 11, 20, 0.75);
  margin: 0;
  line-height: 1.6;
  font-size: 0.95rem;
}

.workflow-content p {
  color: rgba(10, 10, 35, 0.7);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* MCP Section */
.mcp-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0a0a23 0%, #1a1a3e 100%);
  position: relative;
  overflow: hidden;
}

.mcp-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(91, 124, 250, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.mcp-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.mcp-text .eyebrow {
  background: rgba(78, 205, 196, 0.2);
  color: var(--accent-secondary);
}

.mcp-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 1rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #b8c5ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mcp-text p {
  color: rgba(249, 251, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.mcp-logos {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.mcp-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mcp-logo-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(91, 124, 250, 0.3);
  transform: translateY(-4px);
}

.mcp-logo-item span {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(249, 251, 255, 0.9);
}

.mcp-visual {
  position: relative;
}

.mcp-visual img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .mcp-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .mcp-text h2 {
    font-size: 2rem;
  }

  .mcp-logos {
    flex-wrap: wrap;
    justify-content: center;
  }

  .mcp-visual {
    order: -1;
  }
}

/* Testimonials */
.highlight {
  color: var(--accent-strong);
}

#pricing {
  padding: 5rem 0 6rem;
  background: var(--bg);
  color: var(--text);
}

.pricing-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.plan-card {
  background: rgba(255, 255, 255, 0.04);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.plan-card h3 {
  margin-top: 0;
  color: var(--text);
}

.plan-card .price {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 1rem 0;
  color: var(--text);
}

.plan-card .plan-prices {
  margin: 1rem 0;
}

.plan-card .plan-prices .price {
  margin: 0;
}

.plan-card .plan-prices .price-amount {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.plan-card .plan-prices .price-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.home-pricing-toggle-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0 3rem;
}

.home-pricing[data-billing="monthly"] .price-yearly,
.home-pricing[data-billing="yearly"] .price-monthly {
  display: none;
}

.plan-card .plan-ctas {
  display: flex;
  flex-direction: column;
}

.home-pricing[data-billing="monthly"] .plan-ctas .price-yearly,
.home-pricing[data-billing="yearly"] .plan-ctas .price-monthly {
  display: none;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
  display: grid;
  gap: 0.75rem;
}

.plan-card ul li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted);
}

.plan-card ul li::before {
  content: "•";
  color: var(--accent-strong);
  font-size: 1.4rem;
}

.plan-card .btn {
  display: inline-block;
  text-align: center;
  width: 100%;
}

.trusted-by {
  padding: 3rem 0 4rem;
  text-align: center;
  color: var(--muted);
  background: var(--bg);
}

.trusted-carousel {
  margin-top: 2rem;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.trusted-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: trusted-scroll 25s linear infinite;
}

.trusted-logo {
  padding: 0.85rem 1.75rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.trusted-logo img {
  width: 120px;
  height: auto;
  opacity: 0.9;
  filter: grayscale(0.05);
}

.hero-badge-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  font-size: 0.9rem;
  color: rgba(11, 11, 20, 0.7);
}

.rating-badge,
.secure-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 24, 48, 0.08);
  background: #ffffff;
  font-weight: 600;
}

.rating-stars {
  letter-spacing: 0.15em;
  color: #fbbf24;
  font-size: 0.95rem;
  font-weight: 600;
}

.secure-badge .lock-icon {
  font-size: 1.1rem;
}

@keyframes trusted-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.site-footer {
  padding: 4rem 0 2.5rem;
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.site-footer h3 {
  margin-bottom: 1rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.subscribe-form {
  display: grid;
  gap: 0.75rem;
}

.subscribe-form input {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.subscribe-form button {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  color: #0b0b14;
  background: var(--gradient);
}

.footer-bottom {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}

.workflow {
  padding: 6rem 0;
  background: var(--bg);
  color: var(--text);
}

.workflow .section-heading h2 {
  color: var(--text);
}

.workflow .section-heading p {
  color: var(--muted);
}

.workflow-visual {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.workflow-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  position: relative;
}

.workflow-icon-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  position: relative;
}

.workflow-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(91, 124, 250, 0.2), rgba(78, 205, 196, 0.15));
  border: 2px solid rgba(91, 124, 250, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(91, 124, 250, 0.2);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.workflow-item:hover .workflow-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(91, 124, 250, 0.3);
  border-color: rgba(91, 124, 250, 0.5);
}

.workflow-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.workflow-connector {
  width: 2px;
  height: 60px;
  background: linear-gradient(180deg, rgba(91, 124, 250, 0.4), rgba(78, 205, 196, 0.3));
  margin-top: 1rem;
  position: relative;
}

.workflow-connector::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(78, 205, 196, 0.6);
  box-shadow: 0 0 12px rgba(78, 205, 196, 0.5);
}

.workflow-content {
  flex: 1;
  padding-top: 0.5rem;
}

.workflow-number {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-strong);
  background: rgba(91, 124, 250, 0.15);
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.workflow-content h3 {
  margin: 0 0 0.75rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.workflow-content p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.highlights {
  padding: 6rem 0;
}

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

.highlight-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--surface-strong);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.highlight-card:hover {
  transform: translateY(-6px);
  border-color: rgba(125, 158, 255, 0.7);
}

.highlight-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
}

.highlight-card p {
  margin: 0;
  color: var(--muted);
}

/* ─── 9. TESTIMONIALS (Premium) ─── */
.hp-testimonials {
  padding: 8rem 0;
  background: #fcfdff;
}

.hp-testimonials .section-heading {
  margin-bottom: 4rem;
}

.hp-testimonials .section-heading h2 {
  color: #0b0b14;
}

.hp-testimonials .section-heading p {
  color: rgba(11, 11, 20, 0.7);
}

.testimonial-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: stretch;
}

.testimonial-card {
  background: #ffffff;
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(91, 124, 250, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(91, 124, 250, 0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(91, 124, 250, 0.08);
  border-color: rgba(91, 124, 250, 0.2);
}

.testimonial-quote {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #1a1a2e;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.testimonial-avatar .avatar-circle {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #5b7cfa 0%, #a855f7 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 600;
  font-size: 1.1rem;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
}

.testimonial-author {
  font-weight: 700;
  color: #0b0b14;
  font-size: 1.05rem;
}

.testimonial-role {
  color: #6b7280;
  font-size: 0.9rem;
  font-weight: 500;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #5b7cfa, #4ecdc4);
  border-radius: var(--radius) 0 0 var(--radius);
  z-index: 0;
}

.testimonial-card::after {
  content: '"';
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 5rem;
  color: rgba(91, 124, 250, 0.08);
  font-family: Georgia, serif;
  line-height: 1;
  z-index: 0;
  font-weight: 300;
}

.testimonial-quote {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(11, 11, 20, 0.85);
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: flex-start;
}

.testimonial-card footer {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-top: 1rem;
  margin-top: auto;
  border-top: 1px solid rgba(91, 124, 250, 0.12);
  position: relative;
  z-index: 1;
  align-items: flex-start;
}

.testimonial-author {
  font-weight: 600;
  color: #0b0b14;
  font-size: 1rem;
  line-height: 1.4;
}

.testimonial-role {
  color: rgba(11, 11, 20, 0.65);
  font-size: 0.9rem;
  line-height: 1.4;
}

.pricing-page {
  padding: 4rem 0 8rem;
  background: var(--bg);
  color: var(--text);
}

.pricing-hero {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.pricing-hero h1 {
  color: var(--text);
}

.pricing-hero p {
  margin-bottom: 1.5rem;
  color: var(--muted);
}

.billing-toggle {
  display: inline-flex;
  padding: 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  gap: 0.35rem;
}

.billing-toggle button {
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: var(--muted);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.billing-toggle button.active {
  background: var(--gradient);
  color: #0b0b14;
}

.billing-savings {
  display: block;
  margin-top: 1rem;
  color: var(--accent-strong);
  font-weight: 600;
}

.plan-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.pricing-card {
  padding: 2.5rem 2rem;
  border-radius: calc(var(--radius) + 8px);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.pricing-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(91, 124, 250, 0.2), rgba(78, 205, 196, 0.12));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pricing-card:hover::after {
  opacity: 1;
}

.pricing-card header h2 {
  margin: 0;
  font-size: 1.4rem;
  color: var(--text);
}

.plan-best-for {
  margin: 0.35rem 0 0;
  color: var(--accent-strong);
  font-weight: 600;
  font-size: 0.9rem;
}

.plan-description {
  margin: 0;
  color: var(--muted);
}

.plan-prices {
  display: grid;
  gap: 1.25rem;
}

.price {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.price-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
}

.price-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.pricing-page[data-billing="monthly"] .price-yearly {
  display: none;
}

.pricing-page[data-billing="yearly"] .price-monthly {
  display: none;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.plan-features li::before {
  content: "✔";
  color: var(--accent-strong);
  margin-right: 0.5rem;
}

.pricing-faq {
  margin-top: 5rem;
}

.pricing-faq .section-heading h2 {
  color: var(--text);
}

.pricing-faq .section-heading .eyebrow {
  color: var(--accent-strong);
}

.pricing-faq .faq-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-faq .faq-item summary {
  color: var(--text);
}

.pricing-faq .faq-item p {
  color: var(--muted);
}

.pricing-cta {
  margin-top: 5rem;
  padding: 3rem;
  border-radius: calc(var(--radius) + 12px);
  background: linear-gradient(120deg, rgba(91, 124, 250, 0.2), rgba(78, 205, 196, 0.15));
  border: 1px solid rgba(91, 124, 250, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.pricing-cta h2 {
  margin: 0 0 0.5rem;
  color: var(--text);
}

.pricing-cta p {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.faq {
  padding: 6rem 0;
  background: var(--bg);
  color: var(--text);
}

.faq .container {
  max-width: 960px;
}

.faq .section-heading {
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.faq .section-heading h2 {
  color: var(--text);
}

.faq .section-heading .eyebrow {
  color: var(--accent-strong);
}

.faq .section-heading p {
  color: var(--muted);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 1.35rem 1.75rem;
  transition: border 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(91, 124, 250, 0.35);
  background: rgba(91, 124, 250, 0.08);
  transform: translateY(-1px);
}

.faq-item[open] {
  border-color: rgba(91, 124, 250, 0.65);
  background: linear-gradient(135deg, rgba(91, 124, 250, 0.15), rgba(78, 205, 196, 0.1));
  box-shadow: 0 15px 35px rgba(15, 24, 48, 0.15);
}

.faq-item summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  color: var(--text);
  font-size: 1.05rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
  padding-right: 2rem;
  position: relative;
  text-align: left;
}

.faq-item summary::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5b7cfa, #4ecdc4);
  box-shadow: 0 0 12px rgba(91, 124, 250, 0.45);
  flex-shrink: 0;
  margin-right: 0.35rem;
}

.faq-item summary::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5b7cfa, #4ecdc4);
  box-shadow: 0 0 12px rgba(91, 124, 250, 0.2);
  flex-shrink: 0;
  margin-right: 0.35rem;
}

.faq-item summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(91, 124, 250, 0.08);
  font-size: 1.2rem;
  color: var(--text);
  line-height: 1;
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item summary::marker,
.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  padding-left: 0;
}

.faq-item p::before {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: rgba(11, 11, 20, 0.1);
  margin-bottom: 0.75rem;
  margin-left: 0;
}

.social {
  display: flex;
  gap: 1.5rem;
}

@media (max-width: 729px) {
  .site-header .container {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .main-nav {
    width: 100%;
    justify-content: center;
  }

  .hero-stack {
    gap: 2rem;
  }

  .hero-visual {
    padding: 1.75rem;
  }

  .hero-visual .dashboard {
    display: none !important;
  }

  .hero-visual {
    align-items: center;
  }

  .hero-visual .hero-badge-row {
    justify-content: center;
    width: 100%;
  }

  .dashboard {
    padding: 1.5rem;
  }

  .browser-bar {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 0.75rem;
  }

  .browser-address {
    flex-wrap: wrap;
    justify-content: center;
  }

  .browser-sync {
    justify-content: center;
  }

  .dashboard-body {
    grid-template-columns: 1fr;
  }

  .chat-pane {
    min-height: 320px;
  }

  .cta-group {
    width: 100%;
    justify-content: center;
  }

  .pricing-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
  }

  .workflow-visual {
    gap: 2rem;
  }

  .workflow-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  .workflow-icon-wrapper {
    width: 100%;
  }

  .workflow-connector {
    height: 40px;
  }

  .workflow-content {
    padding-top: 0;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(91, 124, 250, 0.2);
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .pricing-page {
    padding: 3rem 0 6rem;
  }
}

/* ════════════════════════════════════════════════════════════
   HOME PAGE REDESIGN — New sections (Knowledge → Memory → Action)
   ════════════════════════════════════════════════════════════ */

/* Section entrance animation */
[data-section-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-section-animate].section-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── 2. METRICS ─── */
.hp-metrics {
  background: #0b0b14;
  color: #f9fbff;
  padding: 4rem 0;
  padding-top: 1px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 2;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .metrics-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }
}

.metric-card {
  text-align: center;
  padding: 1rem;
  transition: transform 0.3s ease;
}

.metric-card:hover {
  transform: translateY(-5px);
}

.metric-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.metric-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(249, 251, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

/* ─── 3. PROBLEM —  exact split layout + Wizideo colors ─── */
.hp-problem {
  background: #f5f4ff;
  color: #111827;
  padding: 88px 0 80px;
}

/* Split grid */
.hp-prob-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Left: Copy */
.hp-prob-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 1rem;
}

.hp-prob-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: #111827;
  margin: 0 0 1.5rem;
}

.hp-prob-title-accent {
  display: block;
  background: linear-gradient(135deg, #5b7cfa, #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* CTA button — solid purple pill like  */
.hp-prob-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #5b7cfa, #4ecdc4);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  margin-bottom: 2.5rem;
  transition: opacity 0.2s ease, transform 0.15s ease;
  border: none;
  cursor: pointer;
}

.hp-prob-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* 2×2 feature grid */
.hp-prob-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
}

.hp-prob-feat {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.hp-prob-feat-icon {
  flex-shrink: 0;
  color: #5b7cfa;
  margin-top: 1px;
  line-height: 1;
}

.hp-prob-feat strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.2rem;
}

.hp-prob-feat p {
  font-size: 0.8rem;
  color: #9ca3af;
  line-height: 1.4;
  margin: 0;
}

/* Right: white panel */
.hp-prob-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hp-prob-panel {
  width: 100%;
  max-width: 440px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(124, 58, 237, 0.1), 0 2px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

/* Panel header */
.hp-prob-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid #f3f4f6;
  background: #fafafa;
}

.hp-prob-panel-title {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #374151;
}

.hp-prob-panel-sub {
  font-size: 0.72rem;
  color: #9ca3af;
}

/* Message thread entries */
.hp-prob-thread {
  padding: 1rem 1.25rem;
  display: grid;
  gap: 0.9rem;
}

.hp-prob-msg {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.hp-prob-msg--faded {
  opacity: 0.55;
}

.hp-prob-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  margin-top: 2px;
}

.hp-prob-msg-body {
  flex: 1;
}

.hp-prob-msg-name {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #374151;
  margin-bottom: 0.2rem;
}

.hp-prob-msg-time {
  font-size: 0.68rem;
  font-weight: 400;
  color: #9ca3af;
  margin-left: 0.4rem;
}

.hp-prob-msg-bubble {
  font-size: 0.82rem;
  color: #374151;
  line-height: 1.5;
}

/* Audio player mockup */
.hp-prob-audio {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 1.25rem 1.25rem;
  padding: 0.75rem 1rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  color: #4b5563;
}

.hp-prob-audio-bar {
  flex: 1;
  height: 4px;
  background: #e5e7eb;
  border-radius: 2px;
  position: relative;
}

.hp-prob-audio-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 45%;
  background: #5b7cfa;
  border-radius: 2px;
}

.hp-prob-audio-progress::after {
  content: "";
  position: absolute;
  right: -4px;
  top: -3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #5b7cfa;
  box-shadow: 0 0 0 2px #fff;
}

.hp-prob-audio-time {
  font-size: 0.75rem;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

/* Responsive */
@media (max-width: 900px) {
  .hp-prob-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hp-prob-feats {
    grid-template-columns: 1fr 1fr;
  }

  .hp-prob-panel {
    max-width: 100%;
  }
}

@media (max-width: 500px) {
  .hp-prob-feats {
    grid-template-columns: 1fr;
  }
}



/* Centered heading */
.hp-ff-center-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.hp-ff-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 1rem;
}

/* Accent tag for light section 4 */
.hp-ff-tag--purple {
  background: rgba(91, 124, 250, 0.12);
  color: #5b7cfa;
  border: 1px solid rgba(91, 124, 250, 0.25);
}

.hp-ff-center-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #f9fbff;
  /* default: for dark section 3 */
  margin: 0;
}

/* ─── 4. KNOWLEDGE ENGINE — Capture layout ─── */
.hp-ke {
  background: #0b0b14;
  color: #f9fbff;
  padding: 88px 0 72px;
}

/* Wizideo green→blue gradient for dark section 3 */
.hp-ff-grad {
  background: linear-gradient(90deg, #5bfab0, #5b7cfa 50%, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hp-ff-grad--blue {
  background: linear-gradient(135deg, #5b7cfa, #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.hp-ke-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.hp-ke-card {
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 2.25rem 2.25rem 0;
  /* no bottom padding to let mockups flush if needed */
}

.hp-ke-card--light,
.hp-ke-card--yellow {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hp-ke-card-copy {
  margin-bottom: 2.5rem;
}

.hp-ke-card-title-icon {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #f9fbff;
  margin-bottom: 0.5rem;
}

.hp-ke-card-title-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.hp-ke-card-copy strong:not(.hp-ke-card-title-icon) {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #f9fbff;
  margin-bottom: 0.5rem;
}

.hp-ke-card-copy p {
  font-size: 0.9rem;
  color: rgba(249, 251, 255, 0.7);
  line-height: 1.5;
  margin: 0;
}

.hp-ke-card-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 2.25rem;
}

.hp-ke-card-visual--meet {
  padding-bottom: 0;
  align-items: flex-end;
}

/* Upload Box Mockup */
.hp-ke-upload-box {
  width: 100%;
  max-width: 320px;
  background: rgba(255, 255, 255, 0.02);
  border: 2px dashed rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
}

.hp-ke-upload-box:hover {
  border-color: #5b7cfa;
  background: rgba(255, 255, 255, 0.04);
}

.hp-ke-upload-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(249, 251, 255, 0.7);
  margin-bottom: 1rem;
}

.hp-ke-upload-icon svg {
  width: 24px;
  height: 24px;
}

.hp-ke-upload-text {
  font-size: 0.95rem;
  color: #f9fbff;
  margin-bottom: 0.35rem;
}

.hp-ke-upload-text b {
  color: #5b7cfa;
  font-weight: 600;
  text-decoration: underline;
}

.hp-ke-upload-sub {
  font-size: 0.75rem;
  color: rgba(249, 251, 255, 0.5);
}

/* Chrome Extension Meet Mockup */
.hp-ke-meet-mockup {
  position: relative;
  width: 100%;
  max-width: 400px;
  background: #1f2937;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  overflow: hidden;
  padding: 1.5rem 1.5rem 0;
  height: 240px;
}

.hp-ke-meet-video {
  background: #111827;
  border-radius: 12px;
  border: 2px solid #5b7cfa;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hp-ke-meet-video-bg {
  width: 56%;
  height: 115%;
}


.hp-ke-meet-person {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
}

.hp-ke-meet-person svg {
  width: 14px;
  height: 14px;
}

.hp-ke-meet-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0 1.5rem 1rem;
}

.hp-ke-meet-recording {
  background: #10b981;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: -0.5rem;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
  z-index: 2;
}

.hp-ke-meet-rec-dot {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: agent-pulse 1.2s infinite;
}

.hp-ke-meet-panel {
  background: #fff;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  width: 85%;
  position: relative;
  z-index: 1;
}

.hp-ke-meet-icon {
  width: 28px;
  height: 28px;
  background: #f0f9ff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hp-ke-meet-icon img {
  width: 16px;
  height: 16px;
}

.hp-ke-meet-info {
  flex: 1;
}

.hp-ke-meet-info strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.hp-ke-meet-info span {
  font-size: 0.68rem;
  color: #6b7280;
}

.hp-ke-meet-stop {
  width: 24px;
  height: 24px;
  background: #fee2e2;
  color: #ef4444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ── Integration banner (bottom Section 4) ── */
.hp-ke-integration-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 3.5rem;
  text-align: center;
}

.hp-ke-integration-banner p {
  font-size: 1.1rem;
  font-weight: 600;
  color: #f9fbff;
  max-width: 600px;
  margin: 0;
}

.hp-ke-integration-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.hp-ke-logo-box {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hp-ke-logo-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.15);
}

.hp-ke-logo-box img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* Responsive Capture Layout */
@media (max-width: 900px) {
  .hp-ke-cards {
    grid-template-columns: 1fr;
  }

  .hp-ke-integration-banner {
    padding-top: 2.5rem;
  }
}



.hp-ff-split--reverse {
  direction: rtl;
}

.hp-ff-split--reverse>* {
  direction: ltr;
}

.hp-ff-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 0.75rem;
}

.hp-ff-eyebrow--accent {
  color: #5b7cfa;
}

.hp-ff-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #111827;
  margin: 0 0 1.25rem;
}

.hp-ff-title--dark {
  color: #111827;
}

.hp-ff-title-highlight {
  color: #6d28d9;
  display: block;
}

.hp-ff-title-highlight--accent {
  color: #5b7cfa;
}

.hp-ff-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: #6b7280;
  margin: 0 0 1.5rem;
  max-width: 480px;
}

.hp-ff-desc--dark {
  color: #6b7280;
}

.hp-ff-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #6d28d9;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-bottom: 2rem;
  text-decoration: none;
  transition: gap 0.15s ease;
}

.hp-ff-cta:hover {
  gap: 0.55rem;
  color: #5b21b6;
}

.hp-ff-cta--dark {
  color: #5b7cfa;
}

.hp-ff-cta--dark:hover {
  color: #4361ee;
}

/* 2×2 feature grid */
.hp-ff-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  margin-top: 0.5rem;
}

.hp-ff-feat {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.hp-ff-feat strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.2rem;
}

.hp-ff-feat p {
  font-size: 0.82rem;
  color: #9ca3af;
  line-height: 1.4;
  margin: 0;
}

.hp-ff-feat--dark strong {
  color: #111827;
}

.hp-ff-feat-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 1px;
}


/* ─── Visual right side ─── */
.hp-ff-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Scatter mockup (section 3) */
.hp-scatter-mockup {
  position: relative;
  width: 100%;
  max-width: 480px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.hp-scatter-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1rem 1.1rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease;
}

.hp-scatter-card:hover {
  transform: translateY(-2px);
}

.hp-scatter-app {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: #9ca3af;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hp-scatter-card p {
  font-size: 0.85rem;
  color: #374151;
  line-height: 1.4;
  margin: 0;
}

.hp-scatter-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to bottom, transparent, #fff);
  pointer-events: none;
}

/* Slight tilt on each card */
.hp-scatter-card--1 {
  transform: rotate(-0.8deg);
}

.hp-scatter-card--2 {
  transform: rotate(0.6deg);
}

.hp-scatter-card--3 {
  transform: rotate(-0.5deg);
}

.hp-scatter-card--4 {
  transform: rotate(1deg);
}

.hp-scatter-lost {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem;
  background: #fef3c7;
  border: 1px solid #fde68a;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #92400e;
}

/* Pipeline mockup (section 4) */
.hp-ke-mockup {
  width: 100%;
  max-width: 400px;
  display: grid;
  gap: 0;
}

.hp-ke-pipe-step {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.1rem 1.25rem;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  position: relative;
  transition: border-color 0.2s ease;
}

.hp-ke-pipe-step+.hp-ke-pipe-step {
  margin-top: 0;
  border-radius: 12px;
}

.hp-ke-pipe-step--capture {
  border-left: 3px solid #10b981;
}

.hp-ke-pipe-step--understand {
  border-left: 3px solid #5b7cfa;
}

.hp-ke-pipe-step--act {
  border-left: 3px solid #f59e0b;
}

.hp-ke-pipe-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1;
}

.hp-ke-pipe-step div {
  flex: 1;
}

.hp-ke-pipe-step strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.2rem;
}

.hp-ke-pipe-step p {
  font-size: 0.78rem;
  color: #9ca3af;
  margin: 0;
}

.hp-ke-pipe-badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  flex-shrink: 0;
  letter-spacing: 0.04em;
}

.hp-ke-pipe-badge--done {
  background: #d1fae5;
  color: #065f46;
}

.hp-ke-pipe-badge--running {
  background: #dbeafe;
  color: #1e40af;
}

.hp-ke-pipe-badge--queued {
  background: #fef3c7;
  color: #92400e;
}

.hp-ke-pipe-arrow {
  text-align: center;
  padding: 0.45rem 0;
  font-size: 1.1rem;
  color: #d1d5db;
  line-height: 1;
}

.hp-ke-pipe-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.3rem;
  align-items: center;
}

.hp-ke-pipe-actions span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: #374151;
  background: #f3f4f6;
  padding: 2px 8px;
  border-radius: 6px;
}

.hp-ke-pipe-actions img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  border-radius: 3px;
}

/* Responsive */
@media (max-width: 900px) {
  .hp-ff-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hp-ff-split--reverse {
    direction: ltr;
  }

  .hp-ff-features {
    grid-template-columns: 1fr 1fr;
  }

  .hp-scatter-mockup {
    max-width: 100%;
  }

  .hp-ke-mockup {
    max-width: 100%;
  }
}

@media (max-width: 540px) {
  .hp-ff-features {
    grid-template-columns: 1fr;
  }
}

/* ─── 5. SEMANTIC BRAIN ─── */
.hp-brain {
  background: #ffffff;
  color: #111827;
  padding: 96px 0 80px;
}

.hp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hp-split-copy .eyebrow {
  color: #5b7cfa;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.hp-split-copy h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem;
  color: #111827;
}

.hp-split-desc {
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 2rem;
}

.hp-query-list {
  display: grid;
  gap: 0.6rem;
}

.hp-query-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #1f2937;
  cursor: pointer;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.02),
    0 2px 4px -2px rgba(0, 0, 0, 0.03),
    inset 0 0 0 1px rgba(255, 255, 255, 1);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hp-query-item:hover {
  transform: translateY(-2px);
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.04),
    0 4px 6px -4px rgba(0, 0, 0, 0.02),
    inset 0 0 0 1px rgba(255, 255, 255, 1);
}

.hp-query-item svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.hp-query-item:hover svg {
  transform: scale(1.15);
}

/* Premium Color Variations for the 5 Prompt Boxes */

/* 1. Brand Blue */
.hp-query-item:nth-child(1) {
  background: rgba(91, 124, 250, 0.04);
  border-color: rgba(91, 124, 250, 0.15);
}

.hp-query-item:nth-child(1) svg {
  color: #5b7cfa;
  filter: drop-shadow(0 2px 4px rgba(91, 124, 250, 0.2));
}

.hp-query-item:nth-child(1):hover {
  background: rgba(91, 124, 250, 0.08);
  box-shadow: 0 10px 20px -5px rgba(91, 124, 250, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 1);
  border-color: rgba(91, 124, 250, 0.3);
}

/* 2. Vibrant Purple */
.hp-query-item:nth-child(2) {
  background: rgba(168, 85, 247, 0.04);
  border-color: rgba(168, 85, 247, 0.15);
}

.hp-query-item:nth-child(2) svg {
  color: #a855f7;
  filter: drop-shadow(0 2px 4px rgba(168, 85, 247, 0.2));
}

.hp-query-item:nth-child(2):hover {
  background: rgba(168, 85, 247, 0.08);
  box-shadow: 0 10px 20px -5px rgba(168, 85, 247, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 1);
  border-color: rgba(168, 85, 247, 0.3);
}

/* 3. Accent Teal */
.hp-query-item:nth-child(3) {
  background: rgba(20, 184, 166, 0.04);
  border-color: rgba(20, 184, 166, 0.15);
}

.hp-query-item:nth-child(3) svg {
  color: #14b8a6;
  filter: drop-shadow(0 2px 4px rgba(20, 184, 166, 0.2));
}

.hp-query-item:nth-child(3):hover {
  background: rgba(20, 184, 166, 0.08);
  box-shadow: 0 10px 20px -5px rgba(20, 184, 166, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 1);
  border-color: rgba(20, 184, 166, 0.3);
}

/* 4. Warm Coral */
.hp-query-item:nth-child(4) {
  background: rgba(249, 115, 22, 0.04);
  border-color: rgba(249, 115, 22, 0.15);
}

.hp-query-item:nth-child(4) svg {
  color: #f97316;
  filter: drop-shadow(0 2px 4px rgba(249, 115, 22, 0.2));
}

.hp-query-item:nth-child(4):hover {
  background: rgba(249, 115, 22, 0.08);
  box-shadow: 0 10px 20px -5px rgba(249, 115, 22, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 1);
  border-color: rgba(249, 115, 22, 0.3);
}

/* 5. Pink / Rose */
.hp-query-item:nth-child(5) {
  background: rgba(236, 72, 153, 0.04);
  border-color: rgba(236, 72, 153, 0.15);
}

.hp-query-item:nth-child(5) svg {
  color: #ec4899;
  filter: drop-shadow(0 2px 4px rgba(236, 72, 153, 0.2));
}

.hp-query-item:nth-child(5):hover {
  background: rgba(236, 72, 153, 0.08);
  box-shadow: 0 10px 20px -5px rgba(236, 72, 153, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 1);
  border-color: rgba(236, 72, 153, 0.3);
}

/* Chat mockup */
.hp-chat-mockup {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
  border: 1px solid #f3f4f6;
  max-width: 460px;
}

.hp-chat-bar {
  background: #f3f4f6;
  padding: 0.55rem 1rem;
  display: flex;
  gap: 5px;
  align-items: center;
}

.hp-chat-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d5db;
  display: inline-block;
}

.hp-chat-header-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid #f3f4f6;
}

.hp-chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hp-chat-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.hp-chat-header-row strong {
  color: #111;
  font-size: 0.9rem;
  display: block;
}

.hp-chat-status {
  color: #10b981;
  font-size: 0.72rem;
}

.hp-chat-body {
  padding: 1rem 1.25rem;
  display: grid;
  gap: 0.75rem;
}

.hp-bubble {
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  line-height: 1.55;
  max-width: 90%;
}

.hp-bubble--user {
  background: #eff6ff;
  color: #1e40af;
}

.hp-bubble--ai {
  background: #f0fdf4;
  color: #166534;
  display: grid;
  gap: 0.4rem;
}

.hp-bubble-source {
  font-size: 0.75rem;
  color: #6b7280;
  padding-top: 0.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  display: block;
}

.hp-chat-input {
  padding: 0.75rem 1.25rem 1rem;
  border-top: 1px solid #f3f4f6;
}

.hp-chat-input input {
  width: 100%;
  padding: 0.55rem 0.9rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.85rem;
  color: #374151;
  background: #f9fafb;
  outline: none;
  box-sizing: border-box;
}

/* ─── 6. AUTOMATIONS ─── */
.hp-auto {
  background: #0f1220;
  color: #f9fbff;
  padding: 96px 0 80px;
}

.hp-auto-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.hp-auto-header .eyebrow {
  color: #5bfab0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.hp-auto-header h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem;
  color: #f9fbff;
}

.hp-auto-desc {
  color: rgba(249, 251, 255, 0.6);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

/* Use-case tab rail */
.hp-auto-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hp-auto-tab {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0.7rem 1.1rem;
  cursor: pointer;
  text-align: left;
  transition: background 0.18s ease, border-color 0.18s ease;
  min-width: 160px;
}

.hp-auto-tab:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
}

.hp-auto-tab--active {
  background: #5b7cfa;
  border-color: transparent;
}

.hp-auto-tab-who {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}

.hp-auto-tab--active .hp-auto-tab-who {
  color: rgba(255, 255, 255, 0.75);
}

.hp-auto-tab-action {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #f9fbff;
  line-height: 1.3;
}

/* Node-flow canvas */
.hp-flow-canvas {
  position: relative;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  background: #0a0c1a;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

/* Dotted grid */
.hp-flow-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

/* SVG connector layer */
.hp-flow-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hp-flow-line {
  fill: none;
  stroke: rgba(91, 124, 250, 0.35);
  stroke-width: 1.5;
  stroke-dasharray: 5 4;
}

.hp-flow-pulse--1 {
  fill: #5bfab0;
}

.hp-flow-pulse--2 {
  fill: #5b7cfa;
}

.hp-flow-pulse--3 {
  fill: #fbbf24;
}

/* Flow nodes */
.hp-fnode {
  position: absolute;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  backdrop-filter: blur(8px);
  min-width: 145px;
  max-width: 190px;
}

.hp-fnode-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.hp-fnode-logo {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: contain;
  background: #fff;
  padding: 2px;
  flex-shrink: 0;
}

.hp-fnode-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hp-fnode-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(249, 251, 255, 0.4);
}

.hp-fnode-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: #f9fbff;
  line-height: 1.3;
}

.hp-fnode--trigger {
  border-left: 3px solid #5bfab0;
}

.hp-fnode--agent {
  border: 1px solid rgba(91, 124, 250, 0.5);
  background: rgba(10, 12, 30, 0.95);
  padding: 0;
  min-width: 230px;
  max-width: 260px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(91, 124, 250, 0.2), 0 16px 40px rgba(91, 124, 250, 0.15);
}

.hp-fnode-agent-inner {
  width: 100%;
}

.hp-fnode-agent-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1rem 0.5rem;
}

.hp-fnode-agent-avatar {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.hp-fnode-agent-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.hp-fnode-agent-title {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #f9fbff;
  line-height: 1;
}

.hp-fnode-agent-status {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.68rem;
  color: #5bfab0;
  margin-top: 2px;
}

.hp-fnode-agent-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #5bfab0;
  animation: agent-pulse 1.4s ease-in-out infinite;
}

@keyframes agent-pulse {

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

  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.hp-fnode-agent-bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0 1rem 0.7rem;
  border-radius: 2px;
  overflow: hidden;
}

.hp-fnode-agent-bar-fill {
  height: 100%;
  width: 65%;
  background: linear-gradient(90deg, #5b7cfa, #a78bfa);
  border-radius: 2px;
  animation: bar-sweep 2.5s ease-in-out infinite alternate;
}

@keyframes bar-sweep {
  from {
    width: 30%;
  }

  to {
    width: 85%;
  }
}

.hp-fnode-agent-tags {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.5rem 1rem 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.hp-fnode-agent-tag {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  color: #f9fbff;
}

.hp-fnode-agent-tag--1 {
  background: rgba(91, 250, 176, 0.15);
  border: 1px solid rgba(91, 250, 176, 0.25);
  color: #5bfab0;
}

.hp-fnode-agent-tag--2 {
  background: rgba(91, 124, 250, 0.15);
  border: 1px solid rgba(91, 124, 250, 0.3);
  color: #a5b4fc;
}

.hp-fnode-agent-tag--3 {
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.25);
  color: #fbbf24;
}

.hp-fnode-agent-tag-arrow {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.25);
}

.hp-fnode--output {
  border-left: 3px solid #fbbf24;
}


/* Canvas responsive */
@media (max-width: 768px) {
  .hp-flow-canvas {
    height: 260px;
  }

  .hp-fnode {
    min-width: 110px;
    max-width: 140px;
    font-size: 0.8rem;
  }

  .hp-fnode-name {
    font-size: 0.75rem;
  }

  .hp-auto-tab {
    min-width: 130px;
  }
}

@media (max-width: 500px) {
  .hp-flow-canvas {
    height: 220px;
  }

  .hp-fnode {
    display: none;
  }

  .hp-fnode--agent {
    display: flex;
  }

  .hp-auto-tabs {
    gap: 0.4rem;
  }

  .hp-auto-tab {
    min-width: 100%;
  }
}

.hp-integrations {
  background-color: #0b0b14;
  background-image:
    radial-gradient(1.5px 1.5px at 40px 70px, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(2px 2px at 130px 80px, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1px 1px at 160px 120px, rgba(255, 255, 255, 0.7), transparent),
    radial-gradient(1.5px 1.5px at 200px 180px, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1px 1px at 10px 160px, rgba(255, 255, 255, 0.3), transparent);
  background-size: 250px 250px;
  background-repeat: repeat;
  color: #f9fbff;
  padding: 96px 0 80px;
  text-align: center;
  position: relative;
}

.hp-integrations h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  margin: 0 0 1rem;
  color: #f9fbff;
}

.hp-int-desc {
  color: rgba(249, 251, 255, 0.6);
  font-size: 1rem;
  margin: 0 auto 2.5rem;
  max-width: 560px;
}

/* Category card row (top) */
.hp-int-cats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
  text-align: left;
}

.hp-int-cat-card {
  padding: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hp-int-cat-logos {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 0.85rem;
  flex-wrap: wrap;
}

.hp-int-cat-logo {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.12);
  padding: 2px;
}

.hp-int-cat-logo--text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #f9fbff;
}

.hp-int-cat-more {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(249, 251, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2px 7px;
  line-height: 24px;
}

.hp-int-cat-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 0.3rem;
  color: #f9fbff;
}

.hp-int-cat-card p {
  font-size: 0.82rem;
  color: rgba(249, 251, 255, 0.5);
  line-height: 1.45;
  margin: 0;
}

/* Orbital zone — flat, no frame */
.hp-int-orbital {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}

/* Floating icon sides */
.hp-int-orbit-side {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

@keyframes orb-float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  30% {
    transform: translateY(-6px) rotate(1deg);
  }

  60% {
    transform: translateY(-3px) rotate(-1deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

.hp-orb-icon {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: orb-float 4s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Stagger each icon's animation so they float out of sync */
.hp-orb-icon:nth-child(1) {
  animation-delay: 0s;
  animation-duration: 4.2s;
}

.hp-orb-icon:nth-child(2) {
  animation-delay: -1.1s;
  animation-duration: 3.8s;
}

.hp-orb-icon:nth-child(3) {
  animation-delay: -2.4s;
  animation-duration: 4.5s;
}

.hp-orb-icon:nth-child(4) {
  animation-delay: -0.7s;
  animation-duration: 3.6s;
}

.hp-orb-icon:nth-child(5) {
  animation-delay: -1.9s;
  animation-duration: 4.8s;
}

.hp-orb-icon:nth-child(6) {
  animation-delay: -3.1s;
  animation-duration: 4.0s;
}

.hp-orb-icon:hover {
  animation-play-state: paused;
  transform: scale(1.16);
  box-shadow: 0 8px 32px rgba(120, 80, 255, 0.4);
}

.hp-orb-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 6px;
}

/* Central card */
.hp-int-central-card {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 16px;
  width: 340px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  text-align: left;
}

.hp-int-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #f0f0f0;
  color: #111;
  font-weight: 600;
  font-size: 0.9rem;
}

.hp-int-card-header svg {
  color: #7c3aed;
  flex-shrink: 0;
}

.hp-int-card-body {
  padding: 1rem 1.25rem;
}

.hp-int-card-section-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9ca3af;
  margin: 0 0 0.4rem;
}

.hp-int-card-summary {
  font-size: 0.88rem;
  color: #374151;
  line-height: 1.5;
  margin: 0 0 0.75rem;
}

.hp-int-card-divider {
  height: 1px;
  background: #f0f0f0;
  margin: 0.75rem 0;
}

.hp-int-card-actions {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

.hp-int-card-actions li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #374151;
}

.hp-int-action-tag {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 4px;
  flex-shrink: 0;
}

.hp-int-action-tag--notion {
  background: #f3f4f6;
  color: #111;
}

.hp-int-action-tag--slack {
  background: #4a154b;
  color: #fff;
}

.hp-int-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  background: #f9fafb;
  border-top: 1px solid #f0f0f0;
  font-size: 0.75rem;
  color: #9ca3af;
}

.hp-int-card-status {
  color: #10b981;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 900px) {
  .hp-int-cats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .hp-int-orbital {
    height: 300px;
  }

  .hp-int-orbit-side {
    display: none;
  }

  .hp-int-central-card {
    width: 90%;
    max-width: 360px;
  }
}

@media (max-width: 600px) {
  .hp-int-cats-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* ─── 8. SECURITY ─── */
.hp-security {
  background: #fbfbfc;
  color: #0b0b14;
  padding: 120px 0;
}

.hp-security .container {
  max-width: 1200px;
}

.hp-security-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
  gap: 2rem;
}

.hp-security-title-wrap {
  max-width: 700px;
}

.hp-security h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: #0b0b14;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.hp-security h2 .lock-icon-title {
  color: #10b981;
  font-size: 2rem;
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.5rem;
}

.hp-security h2 .gradient-text {
  background: linear-gradient(135deg, #5b7cfa, #4ecdc4);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hp-security-desc {
  color: #4b5563;
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}

.hp-security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2.5rem;
}

.hp-security-badge {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hp-badge-icon {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1.25rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.hp-security-badge:nth-child(1) .hp-badge-icon {
  background: #e0e7ff;
  color: #4f46e5;
}

.hp-security-badge:nth-child(2) .hp-badge-icon {
  background: #dbeafe;
  color: #2563eb;
}

.hp-security-badge:nth-child(3) .hp-badge-icon {
  background: #e0e7ff;
  color: #3730a3;
}

.hp-security-badge:nth-child(4) .hp-badge-icon {
  background: #d1fae5;
  color: #059669;
}

.hp-security-badge:nth-child(5) .hp-badge-icon {
  background: #fce7f3;
  color: #db2777;
}

.hp-security-badge:nth-child(6) .hp-badge-icon {
  background: #fef3c7;
  color: #d97706;
}

.hp-security-badge strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.hp-security-badge p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* hp-security responsive */
@media (max-width: 900px) {
  .hp-security {
    padding: 4rem 0;
  }

  .hp-security-top {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 3rem;
    gap: 1.5rem;
  }

  .hp-security-top .btn {
    align-self: stretch;
    text-align: center;
  }

  .hp-security-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }
}

@media (max-width: 600px) {
  .hp-security {
    padding: 3rem 0;
  }

  .hp-security-top {
    margin-bottom: 2.5rem;
  }

  .hp-security h2 {
    font-size: clamp(1.75rem, 5vw, 2.2rem);
  }

  .hp-security h2 .lock-icon-title {
    font-size: 1.5rem;
    margin-left: 0.35rem;
  }

  .hp-security-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .hp-security-badge {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hp-security-badge .hp-badge-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
    font-size: 1.25rem;
  }
}

/* ─── TESTIMONIALS overrides (for light bg) ─── */
.testimonials {
  background: #fff;
  color: #0b0b14;
}

.testimonials .eyebrow--light {
  color: #5b7cfa;
}

.testimonials h2 {
  color: #0b0b14;
}

.testimonial-card {
  color: #374151;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
}

.testimonial-quote {
  color: #374151;
}

.testimonial-author {
  color: #111827;
  font-weight: 600;
}

.testimonial-role {
  color: #6b7280;
}

/* ─── 10. FINAL CTA ─── */
.hp-cta {
  background: linear-gradient(135deg, #0b0b14 0%, #141828 100%);
  color: #f9fbff;
  padding: 112px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hp-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(91, 124, 250, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hp-cta h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 auto 1rem;
  max-width: 700px;
  color: #f9fbff;
  position: relative;
}

.hp-cta p {
  color: rgba(249, 251, 255, 0.65);
  font-size: 1.05rem;
  margin: 0 auto 2.5rem;
  max-width: 520px;
  position: relative;
}

.hp-cta .cta-group {
  justify-content: center;
  position: relative;
}

.hp-cta .link {
  color: rgba(249, 251, 255, 0.7);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hp-ke-pillars {
    grid-template-columns: 1fr;
  }

  .hp-ke-arrow {
    display: none;
  }

  .hp-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hp-int-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hp-security-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .hp-flow {
    grid-template-columns: 1fr;
  }

  .hp-flow-arrow {
    text-align: center;
    padding: 0.25rem 0;
  }

  .hp-int-grid {
    grid-template-columns: 1fr;
  }

  .hp-security-grid {
    grid-template-columns: 1fr;
  }
}
