/* ============================================================
   CyTix Website - Design System v2
   Brand: Light lavender base, purple accent (#7c3aed)
   Stack: Pure HTML/CSS + minimal JS, target 100 Lighthouse
   ============================================================ */

/* ---------- 1. Tokens ---------- */
:root {
  /* Brand purples */
  --purple-50:  #faf5ff;
  --purple-100: #f3e8ff;
  --purple-200: #e9d5ff;
  --purple-300: #d8b4fe;
  --purple-400: #c084fc;
  --purple-500: #a855f7;
  --purple-600: #9333ea;
  --purple-700: #7c3aed;
  --purple-800: #6b21a8;
  --purple-900: #4c1d95;

  /* Navy (headings + dark CTA) */
  --navy-900: #1e1b4b;
  --navy-800: #2d1b69;
  --navy-700: #3b1f8c;

  /* Neutral grays */
  --gray-50:  #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #111827;

  /* Semantic aliases */
  --bg-base:        #f5f4fb;
  --bg-white:       #ffffff;
  --bg-section-alt: #f0eef9;
  --bg-dark:        var(--navy-900);

  --text-heading: var(--navy-900);
  --text-body:    var(--gray-600);
  --text-muted:   var(--gray-400);
  --text-purple:  var(--purple-700);

  --brand-primary: var(--purple-700);
  --brand-light:   var(--purple-500);

  /* Gradients */
  --gradient-hero:    linear-gradient(145deg, #ddd6fe 0%, #c4b5fd 30%, #a78bfa 65%, #8b5cf6 100%);
  --gradient-cta:     linear-gradient(135deg, #1e1b4b 0%, #2d1b69 100%);
  --gradient-subtle:  linear-gradient(135deg, rgba(124,58,237,.08), rgba(168,85,247,.05));
  --gradient-card-hover: linear-gradient(135deg, rgba(124,58,237,.06), rgba(168,85,247,.03));

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:   0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg:   0 10px 40px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.06);
  --shadow-purple: 0 8px 32px rgba(124,58,237,.25);

  /* Layout */
  --container: 1200px;
  --nav-h: 88px;

  /* Radii */
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-full: 9999px;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Transitions */
  --ease:     cubic-bezier(0.23, 1, 0.32, 1);
   --ease-enter: cubic-bezier(0.23, 1, 0.32, 1);
   --ease-move:  cubic-bezier(0.77, 0, 0.175, 1);
  --duration: 200ms;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip; /* clip without creating scroll container — keeps sticky working */
}

body {
  background: var(--bg-base);
  color: var(--text-body);
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ---------- 3. Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Outfit', 'DM Sans', system-ui, sans-serif;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-heading);
}

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero-title em {
  font-style: normal;
  color: rgba(255,255,255,.85);
}

.section-title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  color: var(--text-heading);
}

.section-title .accent {
  color: var(--purple-700);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-body);
  max-width: 54ch;
  margin: 0 auto;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple-700);
}

/* ---------- 4. Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.section       { padding: var(--space-24) 0; }
.section--sm   { padding: var(--space-16) 0; }
.section--xs   { padding: var(--space-12) 0; }

.section--white    { background: var(--bg-white); }
.section--alt      { background: var(--bg-section-alt); }
.section--dark     { background: var(--gradient-cta); }

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

.stack     { display: flex; flex-direction: column; }
.stack--sm { gap: var(--space-4); }
.stack--md { gap: var(--space-6); }
.stack--lg { gap: var(--space-10); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.split--reverse > *:first-child { order: 2; }
.split--reverse > *:last-child  { order: 1; }

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: var(--space-10); }
  .split--reverse > * { order: unset; }
}

/* ---------- 5. Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,.07);
  transition: box-shadow var(--duration) var(--ease);
}

.nav.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: 'Outfit', sans-serif;
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.03em;
}

.nav__logo-mark {
  width: 84px;
  height: 84px;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color var(--duration) var(--ease);
}

.nav__link:hover,
.nav__link[aria-current="page"] {
  color: var(--navy-900);
}

.nav__cta {
  margin-left: var(--space-4);
}

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: transform var(--duration) var(--ease), opacity var(--duration) var(--ease);
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

@media (max-width: 768px) {
  .nav__toggle { display: flex; }
  .nav__links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--gray-200);
    padding: var(--space-4) var(--space-6);
    box-shadow: var(--shadow-md);
  }
  .nav__links.is-open { display: flex; }
  .nav__link {
    padding: var(--space-3) 0;
    width: 100%;
    font-size: 1rem;
    border-bottom: 1px solid var(--gray-100);
  }
  .nav__cta { margin: var(--space-4) 0 0; width: 100%; }
  .nav__cta .btn { width: 100%; justify-content: center; }
}

/* ---------- 6. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.72em 1.6em;
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'Outfit', 'DM Sans', sans-serif;
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
  cursor: pointer;
}

.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform var(--duration) var(--ease);
}

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

.btn--primary {
  background: linear-gradient(135deg, #a78bfa 0%, #8b55f0 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 20px rgba(139,85,240,.32);
  letter-spacing: 0.01em;
}

.btn--primary:hover {
  background: linear-gradient(135deg, #8b55f0 0%, #7c3aed 100%);
  box-shadow: 0 8px 28px rgba(124,58,237,.4);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--purple-700);
  border: 2px solid var(--purple-700);
}

.btn--outline:hover {
  background: var(--purple-700);
  color: #fff;
  transform: translateY(-1px);
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.6);
}

.btn--outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
  transform: translateY(-1px);
}

.btn--white {
  background: #fff;
  color: var(--purple-700);
  border: 2px solid #fff;
  box-shadow: var(--shadow-md);
}

.btn--white:hover {
  background: var(--purple-50);
  transform: translateY(-1px);
}

.btn--lg {
  padding: 0.9em 2.2em;
  font-size: 1rem;
}

/* ---------- 7. Hero ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(255,255,255,.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(109,40,217,.3) 0%, transparent 50%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: var(--space-20) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: var(--radius-full);
  padding: 0.4em 1.2em;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: var(--space-6);
  backdrop-filter: blur(8px);
}

.hero__title {
  max-width: 14ch;
  margin: 0 auto var(--space-6);
}

.hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,.85);
  max-width: 52ch;
  margin: 0 auto var(--space-8);
}

.hero__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--space-16);
}

/* Floating social cards */
.hero__cards {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 200px;
  margin: 0 auto;
}

.social-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  max-width: 260px;
  animation: floatCard 4s ease-in-out infinite;
}

.social-card--1 { left: 0%;     top: 10px;   animation-delay: 0s;    animation-duration: 4.5s; }
.social-card--2 { left: 15%;    top: 90px;   animation-delay: 0.8s;  animation-duration: 5s;   }
.social-card--3 { left: 35%;    top: 0px;    animation-delay: 1.4s;  animation-duration: 4.2s; }
.social-card--4 { right: 15%;   top: 80px;   animation-delay: 0.4s;  animation-duration: 4.8s; }
.social-card--5 { right: 0%;    top: 10px;   animation-delay: 1.1s;  animation-duration: 5.2s; }

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

.social-card__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient-hero);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
}

.social-card__content { flex: 1; min-width: 0; }

.social-card__name {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.3;
}

.social-card__handle {
  font-size: 0.65rem;
  color: var(--gray-400);
  margin-bottom: 4px;
}

.social-card__text {
  font-size: 0.72rem;
  color: var(--gray-600);
  line-height: 1.4;
}

.social-card__platform {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 16px;
  height: 16px;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .hero__cards { display: none; }
  .hero__inner { padding: var(--space-12) 0; }
}

/* ---------- 8. "We don't post" section ---------- */
.tagline-section {
  background: var(--bg-white);
  padding: var(--space-20) 0;
  text-align: center;
}

.tagline-section__title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: var(--space-6);
  color: var(--navy-900);
}

.tagline-section__title .accent {
  color: var(--purple-700);
}

.tagline-section__body {
  font-size: 1.1rem;
  color: var(--text-body);
  max-width: 58ch;
  margin: 0 auto var(--space-8);
}

/* ---------- 9. Cards ---------- */
.card {
  background: var(--bg-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--duration) var(--ease), transform var(--duration) var(--ease);
}

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

.card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--purple-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  color: var(--purple-700);
}

.card__icon svg {
  width: 26px;
  height: 26px;
}

.card__number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--purple-200);
  line-height: 1;
  margin-bottom: var(--space-3);
}

.card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: var(--space-3);
}

.card__body {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* ---------- 10. Grid helpers ---------- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 640px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

/* ---------- 11. Value props with SVG icons ---------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: var(--space-10);
}

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

.value-item__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-5);
  color: var(--purple-700);
}

.value-item__icon svg {
  width: 100%;
  height: 100%;
}

.value-item__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--purple-700);
  margin-bottom: var(--space-3);
}

.value-item__body {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 28ch;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .value-grid { grid-template-columns: 1fr; gap: var(--space-8); }
}

/* ---------- 12. Steps / flow ---------- */
.steps {
  display: flex;
  gap: var(--space-4);
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 26px;
  right: 26px;
  height: 1px;
  background: var(--gray-200);
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
}

.step__num {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background: var(--purple-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 auto var(--space-4);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--purple-100);
}

.step__title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: var(--space-2);
}

.step__body {
  font-size: 0.82rem;
  color: var(--text-body);
  line-height: 1.55;
}

@media (max-width: 640px) {
  .steps { flex-direction: column; gap: var(--space-6); }
  .steps::before { display: none; }
  .step { display: flex; gap: var(--space-4); text-align: left; align-items: flex-start; }
  .step__num { flex-shrink: 0; margin: 0; }
}

/* ---------- 13. Product mockup ---------- */
.product-mockup {
  background: linear-gradient(135deg, #c4b5fd 0%, #a78bfa 50%, #8b5cf6 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.product-mockup::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
}

.mock-post {
  background: rgba(255,255,255,.95);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  margin-bottom: var(--space-3);
}

.mock-post__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: var(--space-2);
}

.mock-post__header {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
}

.mock-post__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-200);
  flex-shrink: 0;
}

.mock-post__name {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-900);
}

.mock-post__handle {
  font-size: 0.68rem;
  color: var(--gray-400);
}

.mock-post__text {
  font-size: 0.78rem;
  color: var(--gray-700);
  line-height: 1.5;
}

.mock-post__meta {
  font-size: 0.65rem;
  color: var(--gray-400);
  margin-top: var(--space-2);
  display: flex;
  gap: var(--space-4);
}

.mock-post--ai {
  background: linear-gradient(135deg, rgba(255,255,255,.97), rgba(237,233,254,.9));
  border-left: 3px solid var(--purple-400);
}

.mock-post__ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--purple-700);
  background: var(--purple-100);
  border-radius: var(--radius-full);
  padding: 2px 8px;
  margin-bottom: var(--space-2);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ---------- 14. Flow diagram ---------- */
.flow-diagram {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

.flow-node {
  background: var(--purple-700);
  color: #fff;
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  position: relative;
}

.flow-node__icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.flow-node__icon svg {
  width: 18px;
  height: 18px;
  color: #fff;
}

.flow-node__title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
}

.flow-node__sub {
  font-size: 0.7rem;
  opacity: .75;
  line-height: 1.3;
}

.flow-connector {
  display: flex;
  align-items: center;
  padding-left: 18px;
  margin-bottom: var(--space-3);
}

.flow-connector__line {
  width: 2px;
  height: 24px;
  background: var(--purple-200);
  margin-right: var(--space-3);
}

.flow-platforms {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-top: var(--space-4);
}

.flow-platform-badge {
  background: var(--purple-50);
  border: 1px solid var(--purple-200);
  color: var(--purple-700);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 600;
}

/* ---------- 15. Section dividers ---------- */
.gradient-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--purple-700), var(--purple-400));
  border-radius: var(--radius-full);
  width: 52px;
  margin: var(--space-4) auto 0;
}

.section-header {
  margin-bottom: var(--space-12);
}

/* ---------- 16. CTA Banner ---------- */
.cta-banner {
  background: var(--gradient-cta);
  border-radius: var(--radius-xl);
  padding: var(--space-16) var(--space-8);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.cta-banner__eyebrow {
  color: var(--purple-300);
  margin-bottom: var(--space-4);
}

.cta-banner__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: var(--space-4);
  position: relative;
}

.cta-banner__sub {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
  margin-bottom: var(--space-8);
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-banner .btn { position: relative; }

/* ---------- 17. Stats strip ---------- */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--bg-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.stat {
  padding: var(--space-8);
  text-align: center;
  border-right: 1px solid var(--gray-100);
}

.stat:last-child { border-right: none; }

.stat__value {
  font-family: 'Outfit', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--purple-700);
  line-height: 1.1;
  margin-bottom: var(--space-2);
}

.stat__label {
  font-size: 0.875rem;
  color: var(--text-body);
}

@media (max-width: 640px) {
  .stats-strip { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--gray-100); }
  .stat:last-child { border-bottom: none; }
}

/* ---------- 18. Footer ---------- */
.footer {
  background: var(--bg-white);
  border-top: 1px solid var(--gray-100);
  padding: var(--space-16) 0 var(--space-8);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}

.footer__brand-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy-900);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.footer__brand-logo img {
  width: 30px;
  height: 30px;
}

.footer__brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 28ch;
  line-height: 1.6;
}

.footer__col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: var(--space-5);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__link {
  font-size: 0.875rem;
  color: var(--gray-500);
  transition: color var(--duration) var(--ease);
}

.footer__link:hover { color: var(--purple-700); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-8);
  border-top: 1px solid var(--gray-100);
  font-size: 0.8rem;
  color: var(--gray-400);
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer__social a {
  font-size: 0.875rem;
  color: var(--gray-400);
  transition: color var(--duration) var(--ease);
}

.footer__social a:hover { color: var(--purple-700); }

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

@media (max-width: 540px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ---------- 19. Page header (inner pages) ---------- */
.page-header {
  padding: calc(var(--nav-h) + var(--space-16)) 0 var(--space-16);
  text-align: center;
  background: var(--bg-white);
  border-bottom: 1px solid var(--gray-100);
}

.page-header__eyebrow { margin-bottom: var(--space-4); }

.page-header__title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  margin-bottom: var(--space-5);
}

.page-header__sub {
  font-size: 1.1rem;
  color: var(--text-body);
  max-width: 55ch;
  margin: 0 auto;
}

/* ---------- 20. Prose (terms/privacy) ---------- */
.prose {
  max-width: 72ch;
  margin: 0 auto;
  color: var(--text-body);
}

.prose h2 {
  font-size: 1.4rem;
  color: var(--text-heading);
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
}

.prose h3 {
  font-size: 1.1rem;
  color: var(--text-heading);
  margin-top: var(--space-6);
  margin-bottom: var(--space-3);
}

.prose p { margin-bottom: var(--space-4); }

.prose ul {
  list-style: disc;
  padding-left: var(--space-6);
  margin-bottom: var(--space-4);
}

.prose ul li { margin-bottom: var(--space-2); }

.prose a {
  color: var(--purple-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- 21. Badge ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 0.3em 0.9em;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--purple-100);
  color: var(--purple-700);
  border: 1px solid var(--purple-200);
}

/* ---------- 22. FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

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

.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-6) 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-heading);
  gap: var(--space-4);
  text-align: left;
  transition: color var(--duration) var(--ease);
  font-family: 'Outfit', sans-serif;
}

.faq-btn:hover { color: var(--purple-700); }

.faq-btn__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--duration) var(--ease), background var(--duration) var(--ease), border-color var(--duration) var(--ease);
  font-size: 1rem;
  color: var(--purple-700);
}

.faq-btn[aria-expanded="true"] .faq-btn__icon {
  transform: rotate(45deg);
  background: var(--purple-100);
  border-color: var(--purple-300);
}

.faq-answer {
  display: none;
  padding-bottom: var(--space-6);
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-answer.is-open { display: block; }

/* ---------- 23. Contact form ---------- */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-heading);
}

.form-input,
.form-textarea,
.form-select {
  background: var(--bg-white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  color: var(--gray-900);
  font: inherit;
  font-size: 0.95rem;
  padding: 0.75em 1em;
  width: 100%;
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--purple-500);
  box-shadow: 0 0 0 3px rgba(124,58,237,.12);
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--gray-400); }

.form-textarea {
  resize: vertical;
  min-height: 130px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}

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

/* ---------- 24. Feature list ---------- */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.feature-item {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
}

.feature-item__check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: var(--radius-full);
  background: var(--purple-100);
  border: 1.5px solid var(--purple-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--purple-700);
  margin-top: 3px;
  font-weight: 700;
}

/* ---------- 25. Coming soon ---------- */
.coming-soon {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--space-6);
}

.coming-soon__icon {
  width: 80px;
  height: 80px;
  background: var(--purple-100);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-700);
  margin: 0 auto;
}

.coming-soon__icon svg {
  width: 40px;
  height: 40px;
}

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

.mt-4  { margin-top: var(--space-4); }
.mt-6  { margin-top: var(--space-6); }
.mt-8  { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }
.mb-4  { margin-bottom: var(--space-4); }
.mb-6  { margin-bottom: var(--space-6); }
.mb-8  { margin-bottom: var(--space-8); }
.mb-12 { margin-bottom: var(--space-12); }

/* ============================================================
   COMPONENT EXTENSIONS - added to support index.html v2
   ============================================================ */

/* --- Nav additions --- */
.nav__logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.03em;
}
.nav__links li a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color var(--duration) var(--ease);
}
.nav__links li a:hover { color: var(--navy-900); }
.nav__actions { display: flex; align-items: center; gap: var(--space-3); }

.btn--sm {
  padding: 0.5em 1.25em;
  font-size: 0.82rem;
}
.btn--ghost-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.5);
}
.btn--ghost-white:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
  transform: translateY(-1px);
}

/* --- Hero content / badge / cta --- */
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-16) 0 var(--space-8);
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255,255,255,.22);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: var(--radius-full);
  padding: 0.4em 1.2em;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: var(--space-5);
  backdrop-filter: blur(8px);
}
.hero__title {
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-6);
}
.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  max-width: 52ch;
  margin: 0 auto var(--space-8);
}
.hero__cta {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  justify-content: center;
}

/* --- Social cards restructure --- */
.social-card {
  flex-direction: column;
  gap: var(--space-2);
  min-width: 200px;
  max-width: 240px;
  font-size: 0.78rem;
}
.social-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-1);
}
.social-card__avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}
.social-card__avatar--blue  { background: #dbeafe; color: #1d4ed8; }
.social-card__avatar--pink  { background: #fce7f3; color: #be185d; }
.social-card__avatar--dark  { background: #f3f4f6; color: #111827; }
.social-card__avatar--green { background: #dcfce7; color: #15803d; }
.social-card__avatar--teal  { background: #ccfbf1; color: #0f766e; }
.social-card__name {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
}
.social-card__platform {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.62rem;
  color: var(--gray-400);
  margin-top: 1px;
  position: static; /* override old absolute */
  width: auto; height: auto; opacity: 1;
}
.social-card__text {
  font-size: 0.72rem;
  color: var(--gray-700);
  line-height: 1.45;
  font-style: italic;
}
.social-card__reply {
  background: var(--purple-50);
  border-left: 2px solid var(--purple-400);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: var(--space-2) var(--space-3);
  margin-top: var(--space-2);
}
.social-card__reply-label {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--purple-600);
  margin-bottom: 3px;
}
.social-card__reply p {
  font-size: 0.68rem;
  color: var(--gray-700);
  line-height: 1.4;
}

/* --- Stats strip (container-based) --- */
.stats-strip {
  display: block; /* override old grid */
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: var(--space-8) 0;
}
.stats-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--bg-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.stat-item {
  flex: 1;
  padding: var(--space-6) var(--space-8);
  text-align: center;
}
.stat-item__value {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--purple-700);
  line-height: 1.1;
  margin-bottom: var(--space-1);
}
.stat-item__label {
  font-size: 0.82rem;
  color: var(--text-body);
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--gray-200);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .stats-strip__inner { flex-direction: column; }
  .stat-divider { width: 80%; height: 1px; }
}

/* --- Section semantic helpers --- */
.section__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple-700);
  display: block;
  margin-bottom: var(--space-3);
}
.section__title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.2;
  margin-bottom: var(--space-5);
}
.section__subtitle {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}
.section__body {
  font-size: 0.97rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: var(--space-5);
}

/* --- Split layout --- */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.split-layout--reverse .split-layout__text { order: 2; }
.split-layout--reverse .split-layout__visual { order: 1; }
.split-layout__text { }
.split-layout__visual { }
@media (max-width: 900px) {
  .split-layout { grid-template-columns: 1fr; gap: var(--space-10); }
  .split-layout--reverse .split-layout__text,
  .split-layout--reverse .split-layout__visual { order: unset; }
}

/* --- Feature list (checkmark style) --- */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-5);
  margin-bottom: var(--space-8);
}
.feature-list__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.92rem;
  color: var(--gray-700);
  font-weight: 500;
}
.feature-list__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--purple-600);
}

/* --- Product mockup (browser frame) --- */
.product-mockup {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
}
.product-mockup__header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
}
.product-mockup__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.product-mockup__dot--red    { background: #ff5f57; }
.product-mockup__dot--yellow { background: #febc2e; }
.product-mockup__dot--green  { background: #28c840; }
.product-mockup__label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-400);
  margin-left: auto;
}
.product-mockup__body {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

/* --- Inbox messages --- */
.inbox-msg {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.inbox-msg__meta {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.inbox-msg__meta--right {
  flex-direction: row-reverse;
}
.inbox-msg__avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}
.inbox-msg__name {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-800);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
}
.inbox-msg__time {
  font-size: 0.65rem;
  color: var(--gray-400);
}
.inbox-msg__bubble {
  font-size: 0.8rem;
  line-height: 1.55;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  max-width: 90%;
}
.inbox-msg__bubble--in {
  background: var(--gray-100);
  color: var(--gray-800);
  border-top-left-radius: 4px;
}
.inbox-msg__bubble--out {
  background: var(--purple-700);
  color: #fff;
  border-top-right-radius: 4px;
  align-self: flex-end;
}
.inbox-msg--ai .inbox-msg__bubble--out { margin-left: auto; }
.inbox-msg__status {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.7rem;
  font-weight: 600;
  color: #10b981;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-sm);
  padding: var(--space-2) var(--space-3);
}

/* --- Badges --- */
.badge--fb { background: #eff6ff; color: #1d4ed8; border-color: #bfdbfe; }
.badge--li { background: #e0f0ff; color: #0A66C2; border-color: #bae0fd; }
.badge--ai { background: var(--purple-100); color: var(--purple-700); border-color: var(--purple-200); }

/* --- Flow diagram (richer nodes) --- */
.flow-node {
  background: linear-gradient(135deg, var(--purple-700), var(--purple-800));
}
.flow-node--active {
  background: linear-gradient(135deg, var(--purple-600), var(--purple-700));
  box-shadow: var(--shadow-purple);
}
.flow-node__icon {
  background: rgba(255,255,255,.18);
}
.flow-node__icon svg {
  stroke: #fff;
}
.flow-node__content {
  flex: 1;
  min-width: 0;
}
.flow-node__title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
}
.flow-node__desc {
  font-size: 0.72rem;
  color: rgba(255,255,255,.75);
  line-height: 1.4;
  margin-top: 2px;
}
.flow-node__platforms {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-top: var(--space-2);
  padding-left: calc(36px + var(--space-3));
}
.flow-connector {
  padding-left: 18px;
  margin-bottom: 0;
}
.flow-connector__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple-300);
  margin-top: 2px;
}
.platform-badge {
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
}
.platform-badge--fb { background: #eff6ff; color: #1877F2; }
.platform-badge--li { background: #e0f0ff; color: #0A66C2; }
.platform-badge--ig { background: #fdf2f8; color: #e1306c; }
.platform-badge--x  { background: #f3f4f6; color: #111; }
.platform-badge--wa { background: #f0fdf4; color: #25D366; }
.platform-badge--tg { background: #eff6ff; color: #229ED9; }

/* --- Value grid icon-wrap --- */
.value-item__icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-lg);
  background: var(--purple-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  transition: background var(--duration) var(--ease);
}
.value-item:hover .value-item__icon-wrap {
  background: var(--purple-200);
}
.value-item__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: var(--space-3);
}

/* --- Features grid --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .features-grid { grid-template-columns: 1fr; }
}
.feature-card {
  background: var(--bg-white);
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--purple-200);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem 2.25rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.05);
  transition: box-shadow var(--duration) var(--ease), transform var(--duration) var(--ease), border-color var(--duration) var(--ease);
}
.feature-card:hover {
  box-shadow: 0 8px 24px rgba(124,58,237,0.12), 0 2px 8px rgba(0,0,0,0.06);
  transform: translateY(-4px);
  border-color: var(--purple-300, #c4b5fd);
  border-top-color: var(--purple-500, #8b5cf6);
}
.feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
  border: 1.5px solid var(--purple-200);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  transition: background var(--duration) var(--ease), border-color var(--duration) var(--ease);
}
.feature-card:hover .feature-card__icon { background: linear-gradient(135deg, #e9d5ff, #ddd6fe); border-color: var(--purple-300, #c4b5fd); }
.feature-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: var(--space-3);
}
.feature-card__body {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.75;
}

/* --- CTA banner (full-width section) --- */
.cta-banner {
  background: var(--gradient-cta);
  padding: var(--space-20) 0;
  position: relative;
  overflow: hidden;
  border-radius: 0;
}
.cta-banner__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.cta-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-8);
  position: relative;
  z-index: 1;
}
.cta-banner__text { width: 100%; }
.cta-banner__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: var(--space-3);
  text-align: center;
}
.cta-banner__subtitle {
  text-align: center;
  color: rgba(255,255,255,.72);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 52ch;
  margin: 0 auto;
}
.cta-banner__actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}

/* --- Footer brand column --- */
.footer__brand { }
.footer__logo-link {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: var(--space-3);
  letter-spacing: -0.02em;
}
.footer__tagline {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}
.footer__social {
  display: flex;
  gap: var(--space-3);
}
.footer__social-link {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  transition: background var(--duration) var(--ease), color var(--duration) var(--ease);
}
.footer__social-link:hover {
  background: var(--purple-100);
  color: var(--purple-700);
}
.footer__col {}
.footer__links li { margin-bottom: var(--space-3); }
.footer__links li a {
  font-size: 0.875rem;
  color: var(--gray-500);
  transition: color var(--duration) var(--ease);
}
.footer__links li a:hover { color: var(--purple-700); }


/* ── Language toggle button ─────────────────────────────── */
.lang-toggle {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--purple-300, #c4b5fd);
  background: transparent;
  color: var(--purple-700);
  cursor: pointer;
  transition: background var(--duration) var(--ease), color var(--duration) var(--ease);
  line-height: 1;
}
.lang-toggle:hover {
  background: var(--purple-100);
  color: var(--purple-700);
}

/* ── RTL adjustments ─────────────────────────────────────── */
html[dir="rtl"] body {
  font-family: 'Heebo', sans-serif;
}
html[dir="rtl"] .hero__title,
html[dir="rtl"] .section__title,
html[dir="rtl"] .section__eyebrow,
html[dir="rtl"] .section__subtitle,
html[dir="rtl"] .section__body,
html[dir="rtl"] .cta-banner__title,
html[dir="rtl"] .cta-banner__subtitle {
  font-family: 'Heebo', sans-serif;
}
html[dir="rtl"] .hero__content {
  text-align: right;
}
html[dir="rtl"] .hero__cta {
  justify-content: flex-start;
  flex-direction: row-reverse;
}
html[dir="rtl"] .section__eyebrow,
html[dir="rtl"] .section__title,
html[dir="rtl"] .section__subtitle,
html[dir="rtl"] .section__body {
  text-align: right;
}
html[dir="rtl"] .text-center .section__eyebrow,
html[dir="rtl"] .text-center .section__title,
html[dir="rtl"] .text-center .section__subtitle {
  text-align: center;
}
html[dir="rtl"] .split-layout {
  direction: rtl;
}
html[dir="rtl"] .feature-list__item {
  text-align: right;
}
html[dir="rtl"] .feature-card {
  text-align: right;
}
html[dir="rtl"] .value-item {
  text-align: center;
}
html[dir="rtl"] .flow-node {
  flex-direction: row-reverse;
  text-align: right;
}
html[dir="rtl"] .flow-node__content {
  text-align: right;
}
html[dir="rtl"] .flow-node__platforms {
  margin-right: auto;
  margin-left: 0;
}
html[dir="rtl"] .stat-item {
  text-align: center;
}
html[dir="rtl"] .cta-banner__inner {
  direction: rtl;
}
html[dir="rtl"] .cta-banner__text {
  text-align: right;
}
html[dir="rtl"] .footer__tagline {
  text-align: right;
}
html[dir="rtl"] .footer__grid {
  direction: rtl;
}
html[dir="rtl"] .nav__links li a {
  font-family: 'Heebo', sans-serif;
}
html[dir="rtl"] .hero__badge {
  font-family: 'Heebo', sans-serif;
}
html[dir="rtl"] .hero__subtitle {
  text-align: right;
}
                              

/* ============================================================
   MOTION SYSTEM v2 - Premium interactions
   Source: web-motion-principles.md + web-design-directives.md
   ============================================================ */

/* RTL body: use Heebo for all text */
html[dir="rtl"] body {
  font-family: 'Heebo', sans-serif;
}

/* Stat numbers: monospace for technical credibility */
.stat-item__value {
  font-family: 'JetBrains Mono', monospace;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

/* Button interactions - press feedback on all buttons */
.btn {
  transition:
    transform 160ms cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 200ms cubic-bezier(0.23, 1, 0.32, 1),
    background-color 200ms ease,
    color 200ms ease,
    border-color 200ms ease;
}

.btn:active {
  transform: scale(0.97);
  transition-duration: 80ms;
}

@media (hover: hover) and (pointer: fine) {
  .btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.35);
  }
  .btn--white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  }
  .btn--outline:hover {
    transform: translateY(-2px);
  }
}

/* Card hover physics - lift with shadow */
@media (hover: hover) and (pointer: fine) {
  .feature-card {
    transition:
      transform 220ms cubic-bezier(0.23, 1, 0.32, 1),
      box-shadow 220ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
  }

  .social-card {
    transition:
      transform 220ms cubic-bezier(0.23, 1, 0.32, 1),
      box-shadow 220ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .social-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
  }

  .value-item {
    transition:
      transform 200ms cubic-bezier(0.23, 1, 0.32, 1),
      box-shadow 200ms cubic-bezier(0.23, 1, 0.32, 1);
    cursor: default;
  }
  .value-item:hover {
    transform: translateY(-3px);
  }
}

/* Scroll reveal: upgrade easing to premium curve */
@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

[data-reveal].in-view {
  animation: revealUp 600ms cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/* Nav link hover with underline slide */
@media (hover: hover) and (pointer: fine) {
  .nav__links a {
    position: relative;
  }
  .nav__links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0; right: 0;
    height: 1.5px;
    background: var(--purple-700);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 200ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .nav__links a:hover::after {
    transform: scaleX(1);
  }
}

/* Prefers-reduced-motion: kill all animations */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* Logo size — targets all pages regardless of img class */
.nav__logo img {
  width: 84px;
  height: 84px;
  object-fit: contain;
}

/* Value card icon top margin (was 0) */
.value-item__icon-wrap {
  margin-top: var(--space-5);
}

/* ============================================================
   Motion System — shared across all pages
   Added: 2026-06-01 (motionsites-reference.md)
   ============================================================ */

/* ── Scroll progress bar ── */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--purple-700), var(--purple-400));
  width: 0%; z-index: 9999; pointer-events: none;
  will-change: width;
}

/* ── Page-hero entrance — inner pages (.page-hero__*) ── */
@keyframes pageHeroReveal {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.page-hero__eyebrow {
  animation: pageHeroReveal 0.65s cubic-bezier(0.23,1,0.32,1) both;
}
.page-hero__title {
  animation: pageHeroReveal 0.65s cubic-bezier(0.23,1,0.32,1) 0.09s both;
}
.page-hero__subtitle {
  animation: pageHeroReveal 0.65s cubic-bezier(0.23,1,0.32,1) 0.18s both;
}

/* ── js-motion: set initial hidden state only when JS has loaded ── */
.js-motion [data-reveal],
.js-motion [data-reveal-group] > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s cubic-bezier(0.23,1,0.32,1),
              transform 0.55s cubic-bezier(0.23,1,0.32,1);
}
.js-motion [data-reveal].is-visible,
.js-motion [data-reveal-group] > *.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Animated gradient (hero background) ── */
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}
.hero--animated-bg {
  background-size: 200% 200% !important;
  animation: gradientShift 14s ease infinite;
}

/* ── Continuous card float ── */
@keyframes cardFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25%       { transform: translateY(-14px) rotate(1.2deg); }
  50%       { transform: translateY(-18px) rotate(-0.8deg); }
  75%       { transform: translateY(-10px) rotate(0.5deg); }
}
.card-float { animation: cardFloat 5s ease-in-out infinite; }
.card-float--delay-1 { animation-delay: 1.2s; }
.card-float--delay-2 { animation-delay: 2.4s; }

/* ── Card hover lift (inner pages) ── */
.feature-card,
.pipeline-card,
.company-value,
.value-item {
  transition: transform 220ms cubic-bezier(0.23,1,0.32,1),
              box-shadow 220ms cubic-bezier(0.23,1,0.32,1);
}
.feature-card:hover,
.pipeline-card:hover,
.company-value:hover,
.value-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(124,58,237,0.13), 0 4px 12px rgba(124,58,237,0.07);
}

/* ── Organic blob SVG (hero — index.html) ── */
.hero-blob {
  position: absolute;
  top: -60px;
  right: -80px;
  width: 52%;
  pointer-events: none;
  z-index: 0;
  animation: blobFloat 9s ease-in-out infinite;
}
/* RTL: blob stays on right side — same position as LTR (behind cards, which are also right in RTL) */
html[dir="rtl"] .hero-blob {
  right: -80px;
  left: auto;
}
@keyframes blobFloat {
  0%   { transform: translateY(0px) rotate(0deg) scale(1); }
  20%  { transform: translateY(-18px) rotate(3deg) scale(1.03); }
  45%  { transform: translateY(-30px) rotate(-2deg) scale(0.97); }
  70%  { transform: translateY(-12px) rotate(4deg) scale(1.04); }
  100% { transform: translateY(0px) rotate(0deg) scale(1); }
}
@media (max-width: 767px) {
  .hero-blob { width: 80%; top: -20px; right: -30px; opacity: 0.6; }
  html[dir="rtl"] .hero-blob { right: auto; left: -30px; }
}


/* ============