/* ============================================
   GOKITE — Automation Infrastructure
   Stripe-style Design System
   ============================================ */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #635BFF;
  --primary-hover: #7A73FF;
  --text-dark: #0A2540;
  --text-mid: #425466;
  --text-light: #6B7C93;
  --bg: #FFFFFF;
  --bg-dark: #0A2540;
  --bg-light: #F6F9FC;
  --border: #E6E9ED;
  --card-bg: #F6F9FC;
  --shadow-sm: 0 2px 8px rgba(10, 37, 64, 0.04);
  --shadow-md: 0 6px 24px rgba(10, 37, 64, 0.06);
  --shadow-lg: 0 12px 48px rgba(10, 37, 64, 0.08);
  --radius: 12px;
  --radius-lg: 16px;
  --transition: 0.25s ease;
}

html, body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-dark);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography Helpers ---------- */
.t-bold {
  color: var(--text-dark);
}

.t-light {
  color: var(--text-light);
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(10, 37, 64, 0.06);
  transition: var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
}

.navbar-logo {
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--text-dark);
}

.nav-link-cta {
  color: var(--primary) !important;
  font-weight: 600 !important;
}

section[id] {
  scroll-margin-top: 80px;
}

.btn-nav {
  background: var(--text-dark) !important;
  color: #FFFFFF !important;
  padding: 10px 18px !important;
  border-radius: 20px !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  white-space: nowrap;
}

.btn-nav:hover {
  background: #132F4C !important;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 20px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #FFFFFF;
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(99, 91, 255, 0.3);
}

.btn-outline-dark {
  background: #FFFFFF;
  color: var(--text-dark);
  border: 1px solid var(--border);
}

.btn-outline-dark:hover {
  border-color: #CDD3DA;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn-ghost-light {
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-ghost-light:hover {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.02rem;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* ---------- Hero V2 (Dashboard) ---------- */
.hero-v2 {
  padding: 160px 0 110px;
}

.hero-v2-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.hero-v2-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 8px;
  background: rgba(99, 91, 255, 0.08);
  border: 1px solid rgba(99, 91, 255, 0.15);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 28px;
}

.hero-v2-title {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1.2px;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.hero-v2-title .t-gradient {
  background: linear-gradient(135deg, var(--primary), #0EA5E9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-v2-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-v2-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

/* Dashboard card */
.hero-v2-dashboard {
  position: relative;
}

.dash-window {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.dash-titlebar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.dash-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.dash-dot--red { background: #FF5F57; }
.dash-dot--yellow { background: #FFBD2E; }
.dash-dot--green { background: #28CA42; }

.dash-titlebar-text {
  margin-left: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* Stats */
.dash-week {
  padding: 20px 20px 0;
}

.dash-week-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.dash-week-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-dark);
}

.dash-week-range {
  font-size: 0.72rem;
  color: var(--text-mid);
}

.dash-week-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.dash-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 0;
  border-radius: 10px;
  background: #F7F8FA;
  transition: background 0.2s, box-shadow 0.2s;
}

.dash-day-name {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.dash-day-num {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dark);
}

.dash-day--today {
  background: rgba(16, 185, 129, 0.08);
}

.dash-day--today .dash-day-name {
  color: #10B981;
}

.dash-day--today .dash-day-num {
  background: #10B981;
  color: #fff;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.dash-day--past {
  opacity: 0.5;
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 20px 20px 0;
}

.dash-stat {
  background: #F7F8FA;
  border-radius: 12px;
  padding: 18px 14px;
  text-align: center;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}

.dash-stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 4px;
}

.dash-stat--accent .dash-stat-value { color: #10B981; }
.dash-stat--accent2 .dash-stat-value { color: var(--primary); }

.dash-stat-label {
  font-size: 0.72rem;
  color: var(--text-mid);
  font-weight: 500;
}

/* Mini stats */
.dash-mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 12px 20px;
}

.dash-mini {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #F7F8FA;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.82rem;
  color: var(--text-mid);
}

.dash-mini strong {
  color: var(--text-dark);
  font-size: 0.95rem;
}

/* Feed */
.dash-feed-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  padding: 8px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.dash-feed {
  padding: 8px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dash-feed-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.dash-feed-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
}

.dash-feed-dot--green { background: #10B981; }
.dash-feed-dot--blue { background: var(--primary); }
.dash-feed-dot--gray { background: #CBD5E1; }

.dash-feed-content {
  flex: 1;
}

.dash-feed-content strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.dash-feed-content span {
  font-size: 0.78rem;
  color: var(--text-mid);
}

.dash-feed-time {
  font-size: 0.78rem;
  color: var(--text-light);
  white-space: nowrap;
  margin-top: 2px;
}

/* Float badge */
.dash-float-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 12px 20px;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  z-index: 3;
}

.dash-float-badge strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
}

.dash-float-badge span {
  font-size: 0.75rem;
  color: var(--text-mid);
}

.mobile-br { display: none; }

@media (max-width: 900px) {
  .mobile-br { display: block; }
  .hero-v2-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-v2-title {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
  }
  .hero-v2-dashboard {
    display: none;
  }
  .dash-float-badge {
    left: 10px;
    bottom: -16px;
  }
}

@media (max-width: 480px) {
  .dash-stats {
    grid-template-columns: 1fr;
  }
  .dash-mini-stats {
    grid-template-columns: 1fr;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 180px 0 30px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-center {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.hero-title-center {
  font-size: clamp(2.86rem, 5.85vw, 4.16rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -1.2px;
  margin-bottom: 48px;
}

.hero-title-center .t-bold,
.hero-title-center .t-light {
  display: block;
}

.hero-title-center .t-bold {
  font-weight: 700;
}

.hero-title-center .t-light {
  font-weight: 400;
  font-size: 0.7em;
  line-height: 1.4;
  max-width: 720px;
  margin: 0 auto;
  white-space: normal;
  text-align: center;
}

/* Hero subtext & CTAs */
.hero-subtitle {
  max-width: 660px;
  margin: 0 auto 40px;
  font-size: clamp(1.1rem, 1.8vw, 1.25rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-mid);
  text-align: center;
}

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

.hero-trust {
  margin-top: 24px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  text-align: center;
  letter-spacing: 0.2px;
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 36px;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: inherit;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  border: none;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(99, 91, 255, 0.25);
  transition: transform 250ms ease, box-shadow 250ms ease;
  cursor: pointer;
}

.primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(99, 91, 255, 0.35);
}

.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 36px;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--text-dark);
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  text-decoration: none;
  transition: border-color 250ms ease, color 250ms ease, transform 250ms ease;
  cursor: pointer;
}

.secondary-cta:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* Word fly-in animation */
.word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  margin-right: 0.25em;
}

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

/* Hero Input */
.hero-input-wrap {
  position: relative;
  max-width: 560px;
  width: 100%;
  height: 196px;
  margin: 0 auto;
}

.hero-input {
  width: 100%;
  height: 196px;
  min-height: 196px;
  max-height: 196px;
  padding: 24px 24px 60px 24px;
  border: 1px solid var(--border);
  border-radius: 16px;
  font-size: 1.05rem;
  font-family: inherit;
  color: var(--text-light);
  font-weight: 600;
  background: var(--bg);
  box-shadow: var(--shadow-md), 0 0 0 0 rgba(99, 91, 255, 0);
  outline: none;
  resize: none;
  overflow-y: auto;
  line-height: 1.5;
  vertical-align: top;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.hero-input::placeholder {
  color: var(--text-light);
}

.hero-input:focus {
  border-color: var(--primary);
  box-shadow: var(--shadow-md), 0 0 0 4px rgba(99, 91, 255, 0.1);
}

.hero-send {
  position: absolute;
  right: 14px;
  bottom: 14px;
  border: none;
  background: none;
  color: var(--primary);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  font-size: 1.7rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 0;
  transition: transform 200ms ease-out;
}

.hero-send:hover {
  transform: scale(1.1);
}

/* Hero Secondary (below textbox) */
.hero-secondary {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 48px;
}

.hero-secondary-text {
  font-size: 1.08rem;
  color: var(--text-light);
  text-align: center;
  max-width: 520px;
  line-height: 1.5;
}

.hero-scroll-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-top: 20px;
  border: none;
  border-radius: 12px;
  background: var(--primary);
  color: #FFFFFF;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  animation: subtleBounce 1.6s ease-in-out infinite;
}

.hero-scroll-btn:hover {
  background: var(--primary-hover);
}

@keyframes subtleBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* ---------- Hero Gradient (Stripe-style) ---------- */
.hero-gradient {
  position: absolute;
  top: -100px;
  right: -200px;
  width: 900px;
  height: 900px;
  z-index: 0;
  overflow: visible;
}

.gradient-layer {
  position: absolute;
  border-radius: 40% 60% 50% 50% / 50% 40% 60% 50%;
}

.g-purple {
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, #A480FF, #7B61FF);
  top: 60px;
  left: 50px;
  opacity: 0.7;
  filter: blur(40px);
  animation: morph-1 20s ease-in-out infinite;
}

.g-pink {
  width: 480px;
  height: 480px;
  background: linear-gradient(160deg, #FF6B9D, #C84DFF);
  top: 20px;
  left: 200px;
  opacity: 0.6;
  filter: blur(35px);
  animation: morph-2 18s ease-in-out infinite;
}

.g-orange {
  width: 400px;
  height: 400px;
  background: linear-gradient(180deg, #FF9A56, #FF6B35);
  top: -40px;
  left: 350px;
  opacity: 0.55;
  filter: blur(30px);
  animation: morph-3 22s ease-in-out infinite;
}

.g-magenta {
  width: 350px;
  height: 350px;
  background: linear-gradient(200deg, #E040FB, #7C4DFF);
  top: 150px;
  left: 100px;
  opacity: 0.5;
  filter: blur(45px);
  animation: morph-1 16s ease-in-out infinite reverse;
}

@keyframes morph-1 {
  0%, 100% {
    border-radius: 40% 60% 50% 50% / 50% 40% 60% 50%;
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    border-radius: 50% 40% 60% 40% / 40% 60% 40% 60%;
    transform: translate(15px, -20px) rotate(5deg);
  }
  66% {
    border-radius: 60% 50% 40% 50% / 60% 40% 50% 40%;
    transform: translate(-10px, 10px) rotate(-3deg);
  }
}

@keyframes morph-2 {
  0%, 100% {
    border-radius: 50% 50% 40% 60% / 60% 40% 50% 50%;
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    border-radius: 40% 60% 60% 40% / 50% 50% 50% 50%;
    transform: translate(-20px, 15px) rotate(4deg);
  }
}

@keyframes morph-3 {
  0%, 100% {
    border-radius: 60% 40% 50% 50% / 40% 60% 50% 50%;
    transform: translate(0, 0);
  }
  50% {
    border-radius: 50% 50% 60% 40% / 50% 50% 40% 60%;
    transform: translate(10px, -15px);
  }
}

/* ---------- Trust Metrics ---------- */

/* ---------- Charlot Intro ---------- */
.charlot-intro {
  padding: 60px 0 100px;
  background: var(--bg);
}

.charlot-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.8px;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.charlot-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-mid);
  line-height: 1.5;
  max-width: 600px;
  margin-bottom: 12px;
}

.charlot-body {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.65;
  max-width: 600px;
  margin-bottom: 48px;
}

.charlot-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
}

.charlot-stat {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}

.charlot-stat-value {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  margin-bottom: 2px;
}

.charlot-stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

.charlot-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .charlot-stats {
    flex-wrap: wrap;
    padding: 28px 20px;
    gap: 24px 0;
  }

  .charlot-stat {
    flex: 0 0 50%;
    padding: 0 12px;
  }

  .charlot-stat-divider {
    display: none;
  }
}

/* ---------- Trust Metrics (original) ---------- */
.metrics {
  padding: 0 0 100px;
  position: relative;
  z-index: 1;
}

.metrics-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
}

.metric {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}

.metric-value {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  margin-bottom: 2px;
}

.metric-label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

.metric-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* ---------- Sections ---------- */
.section {
  padding: 120px 0;
}

.section:first-of-type {
  padding-top: 0;
}

.section-light {
  background: var(--bg-light);
}

.section-heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.8px;
  max-width: 600px;
  margin-bottom: 64px;
}

.section-title-center {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -1px;
  text-align: center;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.section-sub {
  text-align: center;
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.section-dark {
  background: var(--bg-dark);
  padding: 40px 0 40px;
}

.section-dark .section-title-center {
  color: #FFFFFF;
}

.section-dark .section-sub {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 28px;
}

/* ---------- Bento Stats Section ---------- */
.bento-section {
  background: var(--bg-light);
  padding-top: 120px !important;
  position: relative;
}

.bento-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(180deg, #F6F9FC, transparent);
  pointer-events: none;
  z-index: 1;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.bento-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bento-number {
  display: block;
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 12px;
}

.bento-unit {
  font-size: 0.55em;
  color: var(--primary);
  letter-spacing: -1px;
}

.bento-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* Chat card — WhatsApp style */
.bento-card--chat {
  grid-row: 1 / 3;
  padding: 0;
  display: flex;
  flex-direction: column;
  background: #ECE5DD;
  border: 1px solid var(--border);
  overflow: hidden;
}

.wa-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #F0F2F5;
  color: #111;
}

.wa-header-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.wa-header-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.wa-header-info {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1;
}

.wa-header-info strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #111;
  line-height: 1;
  margin: 0;
  padding: 0;
}

.wa-header-info span {
  display: block;
  font-size: 0.72rem;
  color: #667781;
  line-height: 1;
  margin: 0;
  padding: 0;
}

.wa-messages {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 16px;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.wa-msg {
  max-width: 85%;
  padding: 8px 12px 4px;
  border-radius: 8px;
  position: relative;
}

.wa-msg--in {
  background: #fff;
  align-self: flex-start;
  border-top-left-radius: 0;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06);
}

.wa-msg--out {
  background: #D9FDD3;
  align-self: flex-end;
  border-top-right-radius: 0;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06);
}

.wa-msg p {
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--text-dark);
  margin: 0 0 2px;
}

.wa-time {
  display: block;
  text-align: right;
  font-size: 0.65rem;
  color: var(--text-light);
  margin-top: 2px;
}

.bento-chat-link {
  display: block;
  text-align: center;
  padding: 14px 16px;
  background: #fff;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.bento-chat-link:hover {
  background: var(--bg-light);
  color: var(--primary-hover);
}

.bento-chat-link span {
  display: inline-block;
  transition: transform 0.2s;
}

.bento-chat-link:hover span {
  transform: translateX(3px);
}

/* WhatsApp fake input bar */
.wa-input-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: #F0F2F5;
  border-top: 1px solid var(--border);
}

.wa-input-plus {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  cursor: default;
}

.wa-input-field {
  flex: 1;
  background: #fff;
  border: none;
  outline: none;
  border-radius: 20px;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-family: inherit;
  color: var(--text-dark);
}

.wa-input-field::placeholder {
  color: #8696a0;
}

.wa-input-mic {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  cursor: default;
}

.wa-input-send {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #25D366;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.wa-input-send:hover {
  background: #1ebe5b;
}

/* CTA buttons below bento grid */
.bento-cta-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
  flex-wrap: wrap;
}

/* Chat animation */
.bento-chat-anim {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.bento-chat-anim.bento-chat-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Partner card */
.bento-card--partner {
  padding: 32px;
}

.bento-partner-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.bento-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(99, 91, 255, 0.08);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.bento-partner-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 12px;
}

.bento-partner-title em {
  font-style: italic;
  color: var(--primary);
}

/* Stat card */
.bento-card--stat {
  background: var(--text-dark);
}

.bento-card--stat .bento-number {
  color: #fff;
}

.bento-card--stat .bento-unit {
  color: var(--primary-hover);
}

.bento-card--stat .bento-desc {
  color: rgba(255, 255, 255, 0.6);
}

/* ROI card */
.bento-card--roi {
  background: linear-gradient(135deg, var(--primary), #0EA5E9);
}

.bento-card--roi .bento-number {
  color: #fff;
}

.bento-card--roi .bento-unit {
  color: rgba(255, 255, 255, 0.7);
}

.bento-card--roi .bento-desc {
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bento-card--chat {
    grid-row: auto;
    grid-column: 1 / -1;
  }
}

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

  .bento-card {
    padding: 28px 24px;
  }

  .bento-number {
    font-size: 2.6rem;
  }
}

/* ---------- Capabilities Intro ---------- */
.cap-intro {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}

.cap-intro-text .section-heading {
  margin-bottom: 0;
}

.cap-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* ---------- Capabilities Grid ---------- */

/* ---------- Cap Phone Link ---------- */
.cap-phone-link {
  display: block;
  font-size: clamp(1.3rem, 2.8vw, 1.75rem);
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  text-align: center;
  margin-top: 16px;
  letter-spacing: -0.5px;
}

.cap-phone-link:hover {
  color: var(--primary-hover);
}

.cap-phone-link--dark {
  color: var(--text-dark);
}

.cap-phone-link--dark:hover {
  color: var(--text-dark);
}

/* ---------- WhatsApp Button ---------- */
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 12px 24px;
  border-radius: 20px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-mid);
  background: var(--bg);
  border: 1px solid var(--border);
  text-decoration: none;
  text-align: center;
  transition: all 250ms ease;
}

.btn-wa:hover {
  color: #1FAF5A;
  background: var(--bg);
  border-color: #1FAF5A;
  transform: translateY(-2px);
}

.btn-wa--purple:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.btn-wa--orange:hover {
  color: #FF9A56;
  border-color: #FF9A56;
}

/* ---------- ChatGPT vs Agents ---------- */
.section-versus {
  background: var(--bg-light);
}

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

.versus-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-light);
  margin-bottom: 16px;
}

.versus-heading {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 400;
  letter-spacing: -0.5px;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 28px;
  font-family: Georgia, 'Times New Roman', serif;
}

.versus-text {
  max-width: 540px;
}

.versus-text p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.versus-text p:last-child {
  margin-bottom: 24px;
}

.versus-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s ease;
}

.versus-link:hover {
  color: var(--text-dark);
}

.versus-link span {
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.versus-link:hover span {
  transform: translateX(3px);
}

.versus-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.versus-visual-bg {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(160deg, #eef1f6 0%, #e8edf4 40%, #e2e8f0 100%);
  z-index: 0;
}

.pyramid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 85%;
  padding: 48px 32px;
}

.pyramid-layer {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.pyramid-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0;
}

.pyramid-top {
  width: 50%;
  padding: 18px 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
}

.pyramid-top .pyramid-label {
  color: var(--text-dark);
  font-weight: 700;
}

.pyramid-mid {
  width: 75%;
  padding: 16px 24px;
}

.pyramid-base {
  width: 100%;
  padding: 16px 24px;
}

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

  .versus-text {
    max-width: 100%;
  }

  .versus-visual {
    min-height: 320px;
  }

  .pyramid {
    width: 90%;
  }
}

/* ---------- Integrations ---------- */
.section-integrations {
  background: var(--bg-light);
}

.integrations-eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary);
  text-align: center;
  margin-bottom: 12px;
}

.integrations-heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 12px;
}

.integrations-sub {
  text-align: center;
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 56px;
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 820px;
  margin: 0 auto;
}

.integration-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  animation: logoFloat 9s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.integration-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.integration-logo img {
  max-width: 100px;
  max-height: 36px;
  object-fit: contain;
  filter: none;
}

.integration-logo img.logo-lg {
  max-width: 130px;
  max-height: 47px;
}

.integration-logo img.logo-sm {
  max-width: 90px;
  max-height: 32px;
}

.integration-logo img.logo-xl {
  max-width: 156px;
  max-height: 56px;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@media (max-width: 768px) {
  .integrations-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .integrations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .integration-logo {
    padding: 20px 16px;
  }
}

/* ---------- Ecosystem ---------- */
/* ---------- Ecosystem ---------- */
#ecosystem-section {
  display: none;
}

#ecosystem-section .eco-orbit {
  position: relative;
  max-width: 900px;
  min-height: 520px;
  margin: 0 auto;
}

#ecosystem-section .eco-center {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 140px 60px;
}

#ecosystem-section .eco-eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 12px;
}

#ecosystem-section .eco-heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

#ecosystem-section .eco-sub {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 460px;
  margin: 0 auto;
}

#ecosystem-section .eco-logo {
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  will-change: transform;
}

#ecosystem-section .eco-logo img {
  max-width: 80px;
  max-height: 30px;
  object-fit: contain;
}

/* Positions — arranged around center text */
#ecosystem-section .eco-logo--1 { top: 6%;  left: 4%;  animation: ecoF1 8s ease-in-out infinite; }
#ecosystem-section .eco-logo--2 { top: 2%;  left: 42%; animation: ecoF2 10s ease-in-out 1s infinite; }
#ecosystem-section .eco-logo--3 { top: 8%;  right: 6%; animation: ecoF3 9s ease-in-out 0.5s infinite; }
#ecosystem-section .eco-logo--4 { top: 42%; left: 0%;  animation: ecoF4 11s ease-in-out 2s infinite; }
#ecosystem-section .eco-logo--5 { top: 44%; right: 0%; animation: ecoF5 7s ease-in-out 1.5s infinite; }
#ecosystem-section .eco-logo--6 { bottom: 8%; left: 8%;  animation: ecoF6 12s ease-in-out 0.8s infinite; }
#ecosystem-section .eco-logo--7 { bottom: 4%; left: 40%; animation: ecoF7 9s ease-in-out 2.5s infinite; }
#ecosystem-section .eco-logo--8 { bottom: 10%; right: 6%; animation: ecoF8 10s ease-in-out 1.2s infinite; }
#ecosystem-section .eco-logo--9 { top: 14%; left: 22%; animation: ecoF9 9s ease-in-out 0.3s infinite; }
#ecosystem-section .eco-logo--10 { top: 12%; right: 32%; animation: ecoF10 11s ease-in-out 1.8s infinite; }
#ecosystem-section .eco-logo--11 { bottom: 22%; left: 24%; animation: ecoF11 8s ease-in-out 0.6s infinite; }
#ecosystem-section .eco-logo--12 { bottom: 20%; right: 22%; animation: ecoF12 10s ease-in-out 2.2s infinite; }

@keyframes ecoF1 {
  0%, 100% { transform: translate(0, 0); }
  50%  { transform: translate(0, -14px); }
}
@keyframes ecoF2 {
  0%, 100% { transform: translate(0, 0); }
  50%  { transform: translate(0, -10px); }
}
@keyframes ecoF3 {
  0%, 100% { transform: translate(0, 0); }
  50%  { transform: translate(0, -16px); }
}
@keyframes ecoF4 {
  0%, 100% { transform: translate(0, 0); }
  50%  { transform: translate(0, -12px); }
}
@keyframes ecoF5 {
  0%, 100% { transform: translate(0, 0); }
  50%  { transform: translate(0, -18px); }
}
@keyframes ecoF6 {
  0%, 100% { transform: translate(0, 0); }
  50%  { transform: translate(0, -11px); }
}
@keyframes ecoF7 {
  0%, 100% { transform: translate(0, 0); }
  50%  { transform: translate(0, -15px); }
}
@keyframes ecoF8 {
  0%, 100% { transform: translate(0, 0); }
  50%  { transform: translate(0, -13px); }
}
@keyframes ecoF9 {
  0%, 100% { transform: translate(0, 0); }
  50%  { transform: translate(0, -11px); }
}
@keyframes ecoF10 {
  0%, 100% { transform: translate(0, 0); }
  50%  { transform: translate(0, -15px); }
}
@keyframes ecoF11 {
  0%, 100% { transform: translate(0, 0); }
  50%  { transform: translate(0, -12px); }
}
@keyframes ecoF12 {
  0%, 100% { transform: translate(0, 0); }
  50%  { transform: translate(0, -14px); }
}

@media (max-width: 768px) {
  #ecosystem-section .eco-orbit {
    min-height: auto;
  }
  #ecosystem-section .eco-center {
    padding: 0 0 40px;
  }
  #ecosystem-section .eco-logo {
    position: static;
    animation: none !important;
  }
  #ecosystem-section .eco-orbit {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  #ecosystem-section .eco-center {
    width: 100%;
    order: -1;
    margin-bottom: 8px;
  }
  #ecosystem-section .eco-logo img {
    max-width: 64px;
    max-height: 24px;
  }
}

/* ---------- Demo CTA ---------- */
#demo-cta {
  display: none;
}

.demo-cta-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
  align-items: center;
}

.demo-cta-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.demo-cta-heading {
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 28px;
}

.demo-cta-line-dark {
  display: block;
  color: var(--text-dark);
}

.demo-cta-line-accent {
  display: block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.demo-cta-scroll-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 20px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-mid);
  text-decoration: none;
  border: 1px solid var(--border);
  background: var(--bg);
  transition: all 250ms ease;
}

.demo-cta-scroll-btn svg {
  transition: transform 250ms ease;
}

.demo-cta-scroll-btn:hover {
  color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(99, 91, 255, 0.12);
}

.demo-cta-scroll-btn:hover svg {
  transform: translateY(2px);
}

@media (max-width: 768px) {
  .demo-cta-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ---------- Live Demo Call ---------- */
.demo-call-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.demo-call-text .section-heading {
  margin-bottom: 24px;
}

.demo-call-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 32px;
}

.demo-call-body {
  margin-bottom: 0;
}

.demo-call-intro {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 14px;
}

.demo-call-desc {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.demo-call-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  padding: 48px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(99, 91, 255, 0.06) 0%, rgba(122, 115, 255, 0.12) 50%, rgba(99, 91, 255, 0.04) 100%);
  border: 1px solid rgba(99, 91, 255, 0.10);
  box-shadow: 0 4px 24px rgba(99, 91, 255, 0.06);
  transition: transform 250ms ease, box-shadow 250ms ease;
  cursor: pointer;
}

.demo-call-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(99, 91, 255, 0.14);
}

.demo-call-card:hover .demo-call-number {
  transform: scale(1.03);
  text-shadow: 0 0 24px rgba(99, 91, 255, 0.35);
}

.demo-call-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.demo-call-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 0 rgba(99, 91, 255, 0.5);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(99, 91, 255, 0.5);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(99, 91, 255, 0);
  }
}

.demo-call-number {
  display: block;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
  text-shadow: 0 0 20px rgba(99, 91, 255, 0.15);
  margin-bottom: 16px;
  transition: transform 250ms ease, text-shadow 250ms ease;
}

.demo-call-connect {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 24px;
  line-height: 1.6;
}

.demo-call-footer {
  font-size: 0.85rem;
  color: var(--text-light);
  padding-top: 20px;
  border-top: 1px solid rgba(99, 91, 255, 0.08);
  width: 100%;
}

.cap-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
}

.cap-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(10, 37, 64, 0.12);
}

.cap-card-inner {
  position: relative;
  z-index: 2;
}

.cap-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.cap-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
  letter-spacing: -0.3px;
}

.cap-card p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.6;
  max-width: 400px;
}

/* Card visual accents */
.cap-card-visual {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 60%;
  pointer-events: none;
  overflow: hidden;
}

.card-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.15;
}

.cs-1 {
  width: 180px;
  height: 180px;
  background: var(--primary);
  bottom: -40px;
  right: -20px;
}

.cs-2 {
  width: 120px;
  height: 120px;
  background: #FF6B9D;
  bottom: 20px;
  right: 60px;
}

.cs-3 {
  width: 140px;
  height: 140px;
  background: #00D4AA;
  bottom: -30px;
  right: -10px;
}

.cs-4 {
  width: 140px;
  height: 140px;
  background: #FF9A56;
  bottom: -30px;
  right: -10px;
}

.cs-5 {
  width: 140px;
  height: 140px;
  background: var(--primary);
  bottom: -30px;
  right: -10px;
}

/* ---------- Process Steps ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.process-step {
  padding: 0;
}

.process-number {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: var(--border);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 20px;
}

.process-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.process-step p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ---------- Demo ---------- */
.demo-intro {
  max-width: 600px;
  margin: 0 auto;
}

.demo-card {
  max-width: 520px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  text-align: center;
}

.demo-idle {
  padding: 8px 0;
}

.demo-idle-text {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.92rem;
  margin-bottom: 20px;
}

/* ---------- Demo Form ---------- */
.demo-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.demo-form-group {
  width: 100%;
}

.demo-form-input,
.demo-form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.06);
  outline: none;
  transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.demo-form-input::placeholder,
.demo-form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.demo-form-input:focus,
.demo-form-textarea:focus {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(99, 91, 255, 0.15);
}

.demo-form-textarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.5;
}

.demo-form-btn {
  width: 100%;
  margin-top: 2px;
}

.demo-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.demo-steps.hidden,
.hidden {
  display: none;
}

.demo-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.demo-step.visible {
  opacity: 1;
  transform: translateY(0);
}

.check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  position: relative;
  margin-top: 2px;
}

.check::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 5px;
  border-left: 2px solid #FFFFFF;
  border-bottom: 2px solid #FFFFFF;
  transform: translate(-50%, -60%) rotate(-45deg);
}

.demo-step-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.demo-step-text {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.95rem;
}

.demo-step-detail {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.82rem;
  font-weight: 400;
}

#demo-reset {
  margin-top: 20px;
}

/* ---------- Reasons Grid ---------- */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}

.reason h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.reason p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ---------- Final CTA ---------- */
.section-cta {
  padding: 140px 0;
  border-top: 1px solid var(--border);
}

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

.cta-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.cta-sub {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 32px;
}

.cta-note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ---------- Pricing Section ---------- */
.pricing-section {
  padding: 120px 0;
  background: var(--bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
  align-items: center;
}

.pricing-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px 36px;
  display: flex;
  flex-direction: column;
  transition: transform 350ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pricing-card-highlight {
  background: linear-gradient(135deg, #f8f7ff 0%, #f0eeff 100%);
  border: 2px solid var(--primary);
  padding: 48px 32px 40px;
  box-shadow: var(--shadow-md);
  z-index: 1;
}

.pricing-card-highlight:hover {
  box-shadow: 0 16px 56px rgba(99, 91, 255, 0.14);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-card-header {
  margin-bottom: 28px;
}

.pricing-card-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.pricing-card-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.pricing-card-price span {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-light);
}

.pricing-card-features {
  list-style: none;
  flex: 1;
  margin-bottom: 32px;
}

.pricing-card-features li {
  position: relative;
  padding-left: 22px;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.5;
  margin-bottom: 12px;
}

.pricing-card-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
}

.pricing-button {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--border);
  color: var(--text-dark);
  background: var(--bg);
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.pricing-button:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}

.pricing-button-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.pricing-button-primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  color: #fff;
}

/* ---------- Footer ---------- */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.3px;
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--text-light);
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.footer-newsletter-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

.footer-newsletter {
  position: relative;
  display: flex;
  align-items: center;
  width: 340px;
}

.footer-newsletter-input {
  width: 100%;
  padding: 14px 56px 14px 22px;
  border: 1px solid var(--border);
  border-radius: 9999px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--bg-light);
  outline: none;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.footer-newsletter-input::placeholder {
  color: var(--text-light);
}

.footer-newsletter-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99, 91, 255, 0.1);
}

.footer-newsletter-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: #FFFFFF;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(99, 91, 255, 0.25);
  transition: transform 200ms ease, box-shadow 200ms ease, filter 200ms ease;
}

.footer-newsletter-btn:hover {
  transform: translateY(calc(-50% - 1px));
  box-shadow: 0 4px 14px rgba(99, 91, 255, 0.35);
  filter: brightness(1.06);
}

/* ---------- Vision Quote ---------- */
.section-vision {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  background:
    radial-gradient(
      circle at -8% 105%,
      rgba(170, 120, 255, 0.16) 0%,
      rgba(255, 140, 90, 0.13) 20%,
      rgba(255, 120, 180, 0.08) 35%,
      rgba(255, 255, 255, 0) 55%
    ),
    #F8F9FB;
}

.vision-gradient { display: none; }

.section-vision .container {
  position: relative;
  z-index: 1;
}

.vision-heading {
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.6px;
  color: var(--text-dark);
  max-width: 780px;
  margin: 0 0 20px;
}

.vision-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 640px;
  margin: 0;
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .cap-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cap-intro-image {
    display: none;
  }

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

  .cap-card {
    padding: 28px 24px;
    min-height: auto;
  }

  .hero-gradient {
    right: -350px;
    top: -80px;
    opacity: 0.7;
  }

  .vision-gradient { display: none; }

  .section-heading {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
  }

  .section-title-center {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }
}

@media (max-width: 900px) {
  .hero {
    padding: 160px 0 100px;
    min-height: auto;
  }

  .hero-gradient {
    top: -50px;
    right: -300px;
    width: 700px;
    height: 700px;
  }

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

  .process-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .reasons-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }

  .metrics-bar {
    flex-wrap: wrap;
    gap: 20px;
    padding: 28px 20px;
  }

  .metric-divider {
    display: none;
  }

  .metric {
    flex: 0 0 calc(50% - 10px);
    padding: 10px 0;
  }

  .demo-call-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .demo-call-card {
    padding: 36px 28px;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 20px;
  }

  .hero {
    padding: 140px 0 80px;
  }

  .hero-title-center {
    font-size: 2.47rem;
    white-space: normal;
    min-height: 10rem;
  }

  .hero-title-center .t-light {
    max-width: 100%;
    min-height: 3em; /* allow for wrapping on small screens */
  }

  .hero-gradient {
    right: -350px;
    top: -80px;
    opacity: 0.7;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .section {
    padding: 80px 0;
  }

  .section-cta {
    padding: 100px 0;
  }

  .nav-links {
    gap: 16px;
  }

  .nav-links li:first-child,
  .nav-links li:nth-child(2),
  .nav-links li:nth-child(3) {
    display: none;
  }

  .nav-link-cta {
    display: none !important;
  }

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

  .cap-card {
    padding: 28px 24px;
    min-height: auto;
  }

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

  .demo-call-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .demo-call-card {
    padding: 36px 24px;
  }

  .demo-call-number {
    font-size: 1.5rem;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 28px;
    text-align: center;
  }

  .footer-left {
    flex-direction: column;
    gap: 8px;
  }

  .footer-right {
    align-items: center;
    width: 100%;
    gap: 12px;
  }

  .footer-newsletter-title {
    text-align: center;
  }

  .footer-newsletter {
    width: 100%;
    max-width: 340px;
  }
}

/* ---------- Packages Section ---------- */
#packages-section .pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 12px;
}

#packages-section .pkg-card {
  display: flex;
  flex-direction: column;
  padding: 36px 32px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

#packages-section .pkg-card:hover {
  border-color: #C5C8CE;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

#packages-section .pkg-number {
  display: block;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--border);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 20px;
}

#packages-section .pkg-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.4px;
  margin-bottom: 4px;
}

#packages-section .pkg-tagline {
  font-size: 0.88rem;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: -0.2px;
  margin-bottom: 20px;
}

#packages-section .pkg-body {
  flex: 1;
}

#packages-section .pkg-body p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 12px;
}

#packages-section .pkg-body p:last-child {
  margin-bottom: 0;
}

#packages-section .pkg-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}

#packages-section .pkg-list li {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.65;
  padding-left: 16px;
  position: relative;
}

#packages-section .pkg-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--text-light);
}

#packages-section .pkg-price {
  display: block;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: -0.2px;
}

@media (max-width: 768px) {
  #packages-section .pkg-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ---------- Reality Section ---------- */
#reality-section {
  background-color: #FFFFFF;
}

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

.reality-visual {
  order: -1;
}

.reality-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.reality-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -1.2px;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 28px;
}

.reality-text p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 16px;
}

.reality-text em {
  font-style: italic;
}

.reality-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.reality-usecases {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.reality-usecases li {
  position: relative;
  padding-left: 20px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-mid);
}

.reality-usecases li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.reality-usecases li strong {
  color: var(--text-dark);
}

.reality-link:hover {
  opacity: 0.75;
}

.reality-link span {
  font-size: 1.1rem;
}

.reality-visual {
  position: relative;
  overflow: visible;
  border-radius: 20px;
  padding: 32px;
}

.reality-visual-bg {
  position: absolute;
  inset: -20px;
  border-radius: 28px;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.reality-visual-bg::before,
.reality-visual-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
}

.reality-visual-bg::before {
  width: 280px;
  height: 280px;
  bottom: -40px;
  left: -30px;
  background: radial-gradient(circle, rgba(99, 91, 255, 0.45) 0%, rgba(122, 80, 220, 0.3) 40%, transparent 70%);
}

.reality-visual-bg::after {
  width: 220px;
  height: 220px;
  top: -30px;
  right: -20px;
  background: radial-gradient(circle, rgba(80, 160, 255, 0.4) 0%, rgba(14, 165, 233, 0.25) 40%, transparent 70%);
}

.reality-visual-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(35px);
  z-index: 0;
  pointer-events: none;
}

.reality-visual-blob--1 {
  width: 180px;
  height: 180px;
  top: 30%;
  right: -10px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.35) 0%, rgba(139, 92, 246, 0.2) 50%, transparent 70%);
}

.reality-visual-blob--2 {
  width: 160px;
  height: 160px;
  bottom: 10%;
  left: 40%;
  background: radial-gradient(circle, rgba(34, 201, 160, 0.3) 0%, rgba(16, 185, 129, 0.15) 50%, transparent 70%);
}

.reality-img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.reality-grid--reversed .reality-visual {
  order: 0;
}

/* ---------- Dashboard Card ---------- */
.dash-card {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px 22px 20px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  max-width: 400px;
  margin: 0 auto;
}

.dash-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.dash-icon {
  font-size: 1.4rem;
}

.dash-title {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.dash-desc {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
}

.dash-highlight {
  margin-bottom: 20px;
}

.dash-number {
  display: block;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.dash-unit {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 2px;
}

.dash-chart {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

/* Donut chart */
.dash-donut-wrap {
  display: flex;
  gap: 20px;
  align-items: center;
}

.dash-donut {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
}

.donut-svg {
  width: 100%;
  height: 100%;
}

.dash-legend {
  flex: 1;
  min-width: 0;
}

.dash-legend-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: var(--text-light);
  margin-bottom: 10px;
}

.dash-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-mid);
  margin-bottom: 6px;
  white-space: nowrap;
}

.dash-legend-item strong {
  margin-left: auto;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.75rem;
}

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

.dash-bar-group {
  display: grid;
  grid-template-columns: 120px 1fr 36px;
  gap: 10px;
  align-items: center;
}

.dash-bar-label {
  font-size: 0.82rem;
  color: var(--text-mid);
  white-space: nowrap;
}

.dash-bar-track {
  height: 8px;
  background: var(--bg-light);
  border-radius: 4px;
  overflow: hidden;
}

.dash-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-hover));
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.dash-bar-val {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: right;
}

.dash-footer {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

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

.dash-stat-val {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
}

.dash-stat-lbl {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 2px;
}

@media (max-width: 600px) {
  .dash-card {
    padding: 20px 18px 16px;
  }

  .dash-header {
    margin-bottom: 16px;
  }

  .dash-highlight {
    display: flex;
    align-items: baseline;
    gap: 24px;
    margin-bottom: 16px;
  }

  .dash-highlight .dash-number {
    font-size: 1.8rem;
    flex-shrink: 0;
  }

  .dash-donut-wrap {
    flex-direction: row;
    gap: 16px;
  }

  .dash-donut {
    width: 100px;
    height: 100px;
  }

  .dash-legend-title {
    margin-bottom: 6px;
  }

  .dash-legend-item {
    margin-bottom: 4px;
    font-size: 0.75rem;
  }
}

/* ---------- AI-Ethiek Section ---------- */
.section-ethics {
  background: var(--bg);
}

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

.ethics-visual {
  position: relative;
}

.ethics-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  background: #E6E9ED;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #B0B8C4;
  font-size: 0.85rem;
  font-weight: 500;
}

.ethics-text p {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.ethics-text p + p {
  margin-top: 12px;
}

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

/* ---------- AI Pyramid Visual ---------- */
.reality-visual--pyramid {
  background: #f0eeff;
  border-radius: 20px;
  padding: 48px 32px 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

/* Organic gradient blobs */
.pyr-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  opacity: 0.7;
}

.pyr-blob--1 {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(99, 91, 255, 0.30), rgba(99, 91, 255, 0.06));
  top: -30px;
  right: -40px;
}

.pyr-blob--2 {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(122, 115, 255, 0.30), rgba(80, 120, 255, 0.08));
  bottom: -20px;
  left: -30px;
}

.pyr-blob--3 {
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(100, 80, 220, 0.25), rgba(99, 91, 255, 0.06));
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
}

/* Pyramid stack */
.pyramid-stack {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.pyr-tier {
  opacity: 0;
  transform: translateY(16px) scale(0.97);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.pyr-tier.pyr-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.pyr-tier-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
  padding: 14px 24px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.5s ease, border-color 0.5s ease, background 0.5s ease;
}

.pyr-tier.pyr-active .pyr-tier-inner {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(99, 91, 255, 0.35);
  box-shadow: 0 8px 32px rgba(99, 91, 255, 0.15), 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Tier sizing — narrower at top, wider at bottom */
.pyr-tier--3 { width: 55%; }
.pyr-tier--2 { width: 78%; }
.pyr-tier--1 { width: 100%; }

.pyr-tier-inner {
  width: 100%;
}

.pyr-tier-num {
  position: absolute;
  top: 6px;
  left: 10px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--primary);
  opacity: 0.4;
}

.pyr-tier.pyr-active .pyr-tier-num {
  opacity: 0.65;
}

.pyr-tier-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.pyr-tier-sub {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-mid);
  opacity: 0.7;
}

@media (max-width: 768px) {
  .reality-visual--pyramid {
    min-height: 320px;
    padding: 32px 20px;
  }

  .pyr-tier--3 { width: 55%; }
  .pyr-tier--2 { width: 78%; }
  .pyr-tier--1 { width: 100%; }

  .pyr-tier-inner {
    padding: 12px 16px;
    gap: 10px;
  }

  .pyr-blob--1 { width: 160px; height: 160px; }
  .pyr-blob--2 { width: 130px; height: 130px; }
  .pyr-blob--3 { width: 100px; height: 100px; }
}

#reality-section-2 {
  padding-top: 0;
}

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

  .reality-visual {
    order: -1;
  }

  #reality-section .reality-visual {
    order: 1;
  }

  .reality-visual-bg {
    top: -20px;
    right: -20px;
  }
}

/* ---------- Showcase: AI Workflow Visualizer ---------- */
.showcase-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #FFFFFF 0%, #F6F9FC 40%);
  padding-top: 90px;
  padding-bottom: 10px;
}

.showcase-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(180deg, transparent, #F6F9FC);
  pointer-events: none;
  z-index: 1;
}

.showcase-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse, rgba(99, 91, 255, 0.08) 0%, rgba(99, 91, 255, 0.02) 50%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.showcase-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.showcase-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.showcase-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -1.2px;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.showcase-sub {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* Showcase slider */
.showcase-slider {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
}

.showcase-slides {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-slide {
  min-width: 100%;
  flex-shrink: 0;
  overflow: visible;
}

.showcase-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 25px;
  padding-bottom: 30px;
}

.showcase-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, color 0.2s, opacity 0.2s;
}

.showcase-arrow:hover:not(:disabled) {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 2px 12px rgba(99, 91, 255, 0.12);
}

.showcase-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

.showcase-dots {
  display: flex;
  gap: 8px;
}

.showcase-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.showcase-dot--active {
  background: var(--primary);
  transform: scale(1.25);
}

.showcase-canvas {
  position: relative;
  z-index: 1;
}

/* Workflow pipeline */
.wf-pipeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 40px 0 0;
}

.wf-node {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  width: 160px;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.wf-node.wf-active {
  opacity: 1;
  transform: translateY(0);
}

.wf-node.wf-highlight {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99, 91, 255, 0.1), var(--shadow-md);
}

.wf-node-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--bg-light);
  color: var(--primary);
}

.wf-node--trigger .wf-node-icon { background: rgba(99, 91, 255, 0.08); color: var(--primary); }
.wf-node--process .wf-node-icon { background: rgba(16, 185, 129, 0.08); color: #10B981; }
.wf-node--action .wf-node-icon { background: rgba(14, 165, 233, 0.08); color: #0EA5E9; }
.wf-node--output .wf-node-icon { background: rgba(99, 91, 255, 0.08); color: var(--primary); }

.wf-node-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.wf-node-detail {
  display: block;
  font-size: 0.72rem;
  color: var(--text-mid);
}

/* Pulse on trigger node */
.wf-pulse {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #10B981;
  opacity: 0;
  transition: opacity 0.3s;
}

.wf-node.wf-highlight .wf-pulse {
  opacity: 1;
  animation: wfPulse 1.5s ease-in-out infinite;
}

@keyframes wfPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}

/* Connectors */
.wf-connector {
  width: 48px;
  display: flex;
  align-items: center;
  position: relative;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.wf-connector.wf-line-active {
  opacity: 1;
}

.wf-connector-line {
  height: 2px;
  width: 100%;
  background: var(--border);
  position: relative;
  overflow: hidden;
}

.wf-connector-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: var(--primary);
  transition: width 0.5s ease;
}

.wf-connector.wf-line-active .wf-connector-line::after {
  width: 100%;
}

.wf-connector-dot {
  position: absolute;
  right: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: background 0.3s ease;
}

.wf-connector.wf-line-active .wf-connector-dot {
  background: var(--primary);
}

/* Floating cards */
.showcase-floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.sf-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(10, 37, 64, 0.08);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  white-space: nowrap;
}

.sf-card.sf-visible {
  opacity: 1;
  transform: translateY(0);
}

.sf-card strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
}

.sf-card span {
  font-size: 0.72rem;
  color: var(--text-mid);
}

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

.sf-card-dot--green { background: #10B981; }
.sf-card-dot--blue { background: #0EA5E9; }
.sf-card-dot--purple { background: var(--primary); }

.sf-card--1 {
  top: -6px;
  left: 5%;
  animation: sfFloat1 6s ease-in-out infinite;
}

.sf-card--2 {
  bottom: 8%;
  right: 5%;
  animation: sfFloat2 7s ease-in-out infinite;
}

@keyframes sfFloat1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes sfFloat2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes sfFloat3 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Particles */
.showcase-particles {
  display: none;
}

.sp {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.15;
}

.sp--1 { top: 15%; left: 10%; animation: spDrift 8s ease-in-out infinite; }
.sp--2 { top: 60%; left: 85%; animation: spDrift 10s ease-in-out infinite 1s; }
.sp--3 { top: 80%; left: 30%; animation: spDrift 7s ease-in-out infinite 0.5s; width: 6px; height: 6px; opacity: 0.1; }
.sp--4 { top: 25%; left: 75%; animation: spDrift 9s ease-in-out infinite 2s; }
.sp--5 { top: 70%; left: 55%; animation: spDrift 11s ease-in-out infinite 1.5s; width: 5px; height: 5px; }
.sp--6 { top: 40%; left: 20%; animation: spDrift 8.5s ease-in-out infinite 0.8s; width: 3px; height: 3px; opacity: 0.2; }

@keyframes spDrift {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(8px, -12px); }
  50% { transform: translate(-4px, -20px); }
  75% { transform: translate(12px, -8px); }
}

/* Responsive */
@media (max-width: 768px) {
  .wf-pipeline {
    flex-direction: column;
    gap: 0;
    padding: 20px 0 16px;
  }

  .wf-node {
    width: 200px;
  }

  .wf-connector {
    width: 2px;
    height: 32px;
    flex-direction: column;
  }

  .wf-connector-line {
    width: 2px;
    height: 100%;
  }

  .wf-connector-line::after {
    width: 100%;
    height: 0%;
    transition: height 0.5s ease;
  }

  .wf-connector.wf-line-active .wf-connector-line::after {
    height: 100%;
  }

  .wf-connector-dot {
    right: auto;
    bottom: -4px;
    top: auto;
  }

  .sf-card--1 { top: -6px; left: 5%; right: auto; bottom: auto; }
  .sf-card--2 { right: 5%; bottom: 30%; }
  .sf-card--3 { left: 5%; bottom: 10%; }
}

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

  .pricing-card:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    justify-self: center;
  }
}

@media (max-width: 600px) {
  .pricing-section {
    padding: 80px 0;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .pricing-card:last-child {
    max-width: none;
  }
}

/* ---------- Hero CTA Responsive ---------- */
@media (max-width: 600px) {
  .hero-cta {
    flex-direction: column;
    gap: 12px;
  }

  .primary-cta,
  .secondary-cta {
    width: 100%;
    max-width: 320px;
  }

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

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .hero-support {
    font-size: 0.92rem;
  }
}
