/* ============================================
   LinkAid by Dual Track — Premium Landing Page
   Bold & Modern Direction
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Backgrounds */
  --bg-dark: #0A0A0F;
  --bg-dark-secondary: #111118;
  --bg-light: #0A0A0F;
  --bg-white: #0A0A0F;

  /* Primary */
  --primary: #6366F1;
  --primary-light: #818CF8;
  --primary-dark: #4F46E5;
  --primary-glow: rgba(99, 102, 241, 0.3);

  /* Accent */
  --accent: #F59E0B;
  --accent-bright: #FBBF24;
  --accent-dark: #D97706;
  --accent-glow: rgba(245, 158, 11, 0.3);

  /* Gradient */
  --gradient-primary: linear-gradient(135deg, #6366F1, #8B5CF6);
  --gradient-accent: linear-gradient(135deg, #F59E0B, #F97316);
  --gradient-text: linear-gradient(135deg, #818CF8, #6366F1, #8B5CF6);

  /* Success */
  --success: #10B981;
  --success-glow: rgba(16, 185, 129, 0.3);

  /* Text */
  --text-white: #FFFFFF;
  --text-dark: #1A1A2E;
  --text-secondary: #94A3B8;
  --text-secondary-light: #64748B;
  --text-muted: #475569;

  /* Borders */
  --border-dark: #1E1E2E;
  --border-light: rgba(255, 255, 255, 0.1);
  --border-subtle: rgba(255, 255, 255, 0.06);

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-bg-hover: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.08);

  /* Spacing */
  --section-padding: 120px;
  --container-max: 1200px;
  --container-narrow: 800px;

  /* Typography */
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-glow-primary: 0 0 40px rgba(99, 102, 241, 0.15);
  --shadow-glow-accent: 0 0 40px rgba(245, 158, 11, 0.15);
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-white);
  background-color: var(--bg-dark);
  overflow-x: hidden;
}

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

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

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

/* --- Focus Indicators (Accessibility) --- */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

.section--light :focus-visible {
  outline-color: var(--primary-dark);
}

/* Remove default outline only when :focus-visible is supported */
:focus:not(:focus-visible) {
  outline: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
}

h4 {
  font-size: 1.125rem;
  font-weight: 600;
}

p {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  max-width: 65ch;
}

.text-secondary {
  color: var(--text-secondary);
}

.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.font-mono {
  font-family: var(--font-mono);
}

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

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section--dark {
  background-color: var(--bg-dark);
  color: var(--text-white);
}

.section--light {
  background-color: var(--bg-dark);
  color: var(--text-white);
}

.section__header {
  margin-bottom: 64px;
}

.section__label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 16px;
}

.section--light .section__label {
  color: var(--primary-light);
}

.section__subtitle {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  font-weight: 400;
  margin-top: 16px;
  max-width: 60ch;
}

.section--dark .section__subtitle {
  color: var(--text-secondary);
}

.section--light .section__subtitle {
  color: var(--text-secondary);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 12px 0;
}

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

.nav__wordmark {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: -0.02em;
}

.nav__wordmark span {
  color: var(--primary-light);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s var(--ease-out);
}

.nav__link:hover {
  color: var(--text-white);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  background: var(--gradient-accent);
  color: var(--bg-dark);
  transition: all 0.3s var(--ease-out);
}

.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow-accent);
}

.nav__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav__mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 10px;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--gradient-accent);
  color: var(--bg-dark);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.3);
}

.btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn--primary:hover::after {
  opacity: 1;
}

.btn--ghost {
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
}

.btn--ghost:hover {
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--glass-bg-hover);
  transform: translateY(-2px);
}

.btn__arrow {
  transition: transform 0.3s var(--ease-out);
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

/* Pulse glow animation for primary CTA */
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2); }
  50% { box-shadow: 0 4px 30px rgba(245, 158, 11, 0.35); }
}

.btn--primary {
  animation: pulseGlow 3s ease-in-out infinite;
}

.btn--primary:hover {
  animation: none;
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 140px 0 var(--section-padding);
  overflow: hidden;
}

.hero--canvas {
  min-height: 80vh;
  background: #02040a;
  justify-content: center;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.8;
}

.hero__shell {
  position: relative;
  z-index: 1;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Animated mesh gradient */
.hero__mesh {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  will-change: transform;
}

.hero__mesh-blob--1 {
  width: 600px;
  height: 600px;
  background: var(--primary);
  top: -200px;
  right: -100px;
  opacity: 0.15;
}

.hero__mesh-blob--2 {
  width: 400px;
  height: 400px;
  background: #8B5CF6;
  bottom: -100px;
  left: -50px;
  opacity: 0.1;
}

.hero__mesh-blob--3 {
  width: 300px;
  height: 300px;
  background: var(--accent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.06;
}

/* Grid overlay */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 40%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 40%, black, transparent);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero__content--centered {
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
}

.hero__headline {
  margin-bottom: 24px;
  line-height: 1.08;
}

.hero__headline--tight {
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--text-white);
  margin-bottom: 2rem;
  line-height: 1.15;
}

.hero__highlight {
  color: var(--primary-light);
}

.hero__headline .text-gradient {
  display: inline;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subheadline {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 600px;
}

.hero__subheadline--centered {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
}

.hero__trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid var(--border-subtle);
  background: var(--glass-bg);
}

.hero__trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--success-glow);
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__ctas--centered {
  align-items: center;
  justify-content: center;
}

.hero__cta-glass {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 9999px;
  text-decoration: none;
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out),
    border-color 0.3s var(--ease-out);
  background:
    radial-gradient(
      140% 140% at 20% 20%,
      rgba(255, 255, 255, 0.08),
      transparent 40%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06),
      rgba(0, 0, 0, 0.22)
    ),
    rgba(30, 41, 59, 0.4);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.1),
    0 8px 20px -4px rgba(0, 0, 0, 0.4);
}

.hero__cta-glass:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.1),
    0 14px 30px -8px rgba(0, 0, 0, 0.48);
  border-color: rgba(255, 255, 255, 0.12);
}

.hero__cta-glass-inner {
  position: absolute;
  inset: 4px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
  background:
    radial-gradient(
      120% 120% at 25% 30%,
      rgba(255, 255, 255, 0.06),
      transparent 48%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.45),
      rgba(255, 255, 255, 0.02)
    ),
    rgba(15, 23, 42, 0.6);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero__cta-glass-reflection {
  position: absolute;
  inset: 4px;
  border-radius: 9999px;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.4;
}

.hero__cta-glass-sheen {
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 160%;
  filter: blur(1px);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
}

.hero__cta-glass-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

/* Nano Banana Asset Placeholder */
.hero__asset {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  z-index: 1;
}

.hero__asset-placeholder {
  width: 100%;
  height: 100%;
  border: 2px dashed var(--border-dark);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-align: center;
  background: var(--glass-bg);
}

/* --- Problem Section --- */
.problem__content {
  max-width: 680px;
  margin-bottom: 64px;
}

.problem__content p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.problem__content p:last-child {
  font-weight: 500;
  color: var(--text-white);
  font-style: italic;
}

.proof-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.proof-card {
  padding: 32px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--bg-dark-secondary);
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.proof-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s;
}

.proof-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

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

.proof-card__country {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 12px;
}

.proof-card__stat {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 4px;
  line-height: 1.2;
}

.proof-card__stat-detail {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--primary-light);
  margin-bottom: 16px;
  font-weight: 500;
}

.proof-card__text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.proof-card__source {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-style: italic;
}


/* --- Solution Feature Scroll: unified card stacking via GSAP scrub ---
   Layout: 200px nav | flexible card stage. Each item is one unified
   bordered card containing a vivid gradient visual on the left and the
   text content on the right. Cards are absolutely positioned inside an
   overflow-hidden stage; GSAP translates each subsequent card from
   yPercent:100 to yPercent:0 as the user scrolls, creating a true
   "rising and covering" stacking effect. --- */

.solution .section__header {
  margin-bottom: 40px;
}

/* Section B header — compact so the first item is visible quickly */
/* Section B header — generous top margin so it feels like its own
   space, separate from Section A's last card. Larger heading size
   matches the main section header so it reads as a distinct section. */
.section__header--mid {
  margin-top: 160px;
  margin-bottom: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section__header--mid h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 24px;
}

.section__header--mid .section__subtitle {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  margin-top: 16px;
}

.feature-scroll {
  position: relative;
  min-width: 0;
}

/* Two-column grid: nav | cards. Both columns are CSS sticky elements
   bounded by this layout, so when the layout ends they unstick together
   and scroll away — neither can escape into Section B. */
.feature-scroll__layout {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  min-width: 0;
}

/* --- Column 1: sticky nav.
   Bounded by .feature-scroll__layout (its parent grid). When the layout
   ends, the nav unsticks and scrolls away with it — it can never escape
   into Section B because the layout is its containing block. --- */
.feature-scroll__nav-wrap {
  position: sticky;
  top: 110px;
  align-self: start;
  width: 200px;
  max-width: 100%;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 15, 23, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  z-index: 20;
}

.feature-scroll__nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.feature-scroll__nav-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 14px;
  border-radius: 10px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out);
}

.feature-scroll__nav-item:hover {
  color: var(--text-secondary);
}

.feature-scroll__nav-item.is-active {
  background: rgba(99, 102, 241, 0.18);
  color: var(--text-white);
  font-weight: 600;
}

.feature-scroll__nav-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text-muted);
  font-size: 0.6875rem;
  font-weight: 600;
  flex-shrink: 0;
  transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out), color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.feature-scroll__nav-item.is-active .feature-scroll__nav-num {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--text-white);
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.5);
}

/* --- Cards: pure-CSS sticky stacking (Composio's actual technique) ---

   Cards are flow siblings inside .feature-scroll__cards (a flex column
   with gap:0). Each card is `position: sticky; top: 110px` with an
   increasing z-index. As you scroll:
     1. Card 0 stops at top:110 and sticks
     2. Card 1 (which was below in flow) rises until its top hits 110
     3. At that moment, card 1 occupies the same y as card 0; higher
        z-index means card 1 paints over and covers card 0
     4. Same for card 2
   No JS animation, no absolute positioning, no overflow tricks. The
   stacking emerges naturally from sticky + z-index + opaque backgrounds. */

.feature-scroll__cards {
  /* Block layout (not flex) for the most reliable sticky-child behavior
     across browsers. Each card is a flow sibling. */
  display: block;
  min-width: 0;
}

.feature-scroll__card {
  position: sticky;
  top: 110px;
  display: grid;
  /* Visual ~57%, text ~43% */
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  /* CRITICAL: explicit min-height on the card itself (not just the inner
     visual) so each card occupies real flow space. Without this, grid
     row sizing can collapse the card height and all 3 cards end up at
     near-identical y positions, which makes them all stick at top:110
     simultaneously and the highest-z-index card covers the others. */
  min-height: 540px;
  /* OPAQUE so a higher-z card fully covers a lower-z card stuck below it */
  background: var(--bg-dark-secondary);
  /* Sharp edges (Composio uses border-radius:0 on its cards too) */
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(99, 102, 241, 0.35);
  /* Space between cards so they read as distinct units. During scroll
     this creates a brief window where the previous stuck card's bottom
     and the rising card's top are both visible with the page background
     in between — matches Composio's visual feel. */
  margin: 0 0 40px 0;
  min-width: 0;
  max-width: 100%;
}

.feature-scroll__card:last-child {
  margin-bottom: 0;
}

/* z-index ladder: later DOM order paints on top */
.feature-scroll__card[data-index="0"] { z-index: 1; }
.feature-scroll__card[data-index="1"] { z-index: 2; }
.feature-scroll__card[data-index="2"] { z-index: 3; }
.feature-scroll__card[data-index="3"] { z-index: 4; }

/* --- Left half: vivid gradient visual ---
   Padding 40px on all sides, content centered. min-height matches the
   tallest mock so all cards share the same height across the deck. */
.feature-scroll__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 14px;
  padding: 40px;
  min-height: 460px;
  /* Default vivid gradient — overridden per card below */
  background:
    radial-gradient(ellipse at 0% 0%,   #6366F1 0%, transparent 55%),
    radial-gradient(ellipse at 100% 0%, #06B6D4 0%, transparent 55%),
    radial-gradient(ellipse at 50% 100%, #8B5CF6 0%, transparent 60%),
    #0F1729;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.55);
  min-width: 0;
}

/* Reduce contrast on all text inside the visual panel so the right-side
   copy stands out more. Override explicit colors on child elements. */
.feature-scroll__visual *:not(svg):not(svg *) {
  color: rgba(255, 255, 255, 0.45) !important;
}

/* Keep borders/pills subtler too */
.feature-scroll__visual .mock-pill {
  opacity: 0.7;
}

/* Subtle separator between the gradient half and the text half */
.feature-scroll__visual::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

/* Section A (For People): vivid per-card gradients */
.feature-scroll[data-feature="people"] .feature-scroll__card[data-index="0"] .feature-scroll__visual {
  background:
    radial-gradient(ellipse at 0% 0%,   #3B82F6 0%, transparent 55%),
    radial-gradient(ellipse at 100% 0%, #06B6D4 0%, transparent 55%),
    radial-gradient(ellipse at 50% 100%, #6366F1 0%, transparent 60%),
    #0B1530;
}
.feature-scroll[data-feature="people"] .feature-scroll__card[data-index="1"] .feature-scroll__visual {
  background:
    radial-gradient(ellipse at 0% 0%,   #8B5CF6 0%, transparent 55%),
    radial-gradient(ellipse at 100% 0%, #EC4899 0%, transparent 55%),
    radial-gradient(ellipse at 50% 100%, #6366F1 0%, transparent 60%),
    #1A0B2E;
}
.feature-scroll[data-feature="people"] .feature-scroll__card[data-index="2"] .feature-scroll__visual {
  background:
    radial-gradient(ellipse at 0% 0%,   #14B8A6 0%, transparent 55%),
    radial-gradient(ellipse at 100% 0%, #06B6D4 0%, transparent 55%),
    radial-gradient(ellipse at 50% 100%, #6366F1 0%, transparent 60%),
    #0B2A2F;
}

/* Section B (For Institutions): vivid per-card gradients */
.feature-scroll[data-feature="institutions"] .feature-scroll__card[data-index="0"] .feature-scroll__visual {
  background:
    radial-gradient(ellipse at 0% 0%,   #6366F1 0%, transparent 55%),
    radial-gradient(ellipse at 100% 0%, #3B82F6 0%, transparent 55%),
    radial-gradient(ellipse at 50% 100%, #8B5CF6 0%, transparent 60%),
    #0F1733;
}
.feature-scroll[data-feature="institutions"] .feature-scroll__card[data-index="1"] .feature-scroll__visual {
  background:
    radial-gradient(ellipse at 0% 0%,   #F59E0B 0%, transparent 55%),
    radial-gradient(ellipse at 100% 0%, #EC4899 0%, transparent 55%),
    radial-gradient(ellipse at 50% 100%, #8B5CF6 0%, transparent 60%),
    #2A1408;
}
.feature-scroll[data-feature="institutions"] .feature-scroll__card[data-index="2"] .feature-scroll__visual {
  background:
    radial-gradient(ellipse at 0% 0%,   #10B981 0%, transparent 55%),
    radial-gradient(ellipse at 100% 0%, #14B8A6 0%, transparent 55%),
    radial-gradient(ellipse at 50% 100%, #6366F1 0%, transparent 60%),
    #082A1F;
}

/* --- Right half: text content --- */
.feature-scroll__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  background: var(--bg-dark-secondary);
  min-width: 0;
}

.feature-scroll__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 20px;
  transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out), color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

/* When the card is the active (top of the visible stack), light up
   its right-side number badge to mirror the left-nav active state. */
.feature-scroll__card.is-active .feature-scroll__badge {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--text-white);
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.5);
}

.feature-scroll__heading {
  font-size: clamp(1.875rem, 2.6vw, 2.375rem);
  font-weight: 700;
  color: var(--text-white);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.feature-scroll__desc {
  font-size: 1rem;
  color: var(--text-white);
  margin-bottom: 28px;
  line-height: 1.65;
}

.feature-scroll__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-scroll__bullets li {
  position: relative;
  padding: 4px 0 4px 18px;
  border-left: 2px solid var(--primary);
  font-size: 0.9375rem;
  color: var(--text-white);
  line-height: 1.55;
}

/* --- Bento grid (Section B: For Institutions) --- */

.bento {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  /* Bottom row stretches to tallest card (#10) */
  grid-template-rows: auto auto 1fr;
  gap: 0;
  background: var(--bg-dark);
  min-width: 0;
}

/* Vertical divider — full height of container at center */
.bento::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 2;
}

/* Horizontal divider between rows with generous vertical space (#5) */
.bento__divider {
  grid-column: 1 / -1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 24px 0;
}

/* --- Cards base --- */
.bento__card {
  display: flex;
  background: var(--bg-dark);
  overflow: hidden;
  /* Each card has its own complete border on all 4 sides (#4, #6) */
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s var(--ease-out);
  min-width: 0;
}

.bento__card:hover {
  background: rgba(255, 255, 255, 0.015);
}

/* --- Top row: text-left, visual-right --- */
.bento__card--row {
  flex-direction: row;
  align-items: stretch;
  min-height: 260px;
}

.bento__card--row .bento__text {
  flex: 0 0 48%;
  padding: 36px 32px;
}

/* Top row titles — 20px (#3) */
.bento__card--row .bento__title {
  font-size: 1.25rem;
}

.bento__card--row .bento__visual {
  flex: 1 1 auto;
  min-width: 0;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(99, 102, 241, 0.35), transparent 55%),
    radial-gradient(ellipse at 80% 90%, rgba(56, 189, 248, 0.25), transparent 55%),
    radial-gradient(ellipse at 50% 50%, rgba(139, 92, 246, 0.12), transparent 70%),
    #0E1530;
}

/* --- Bottom row: title, inner panel, gray footer --- */
.bento__card--stack {
  flex-direction: column;
  padding: 0;
}

/* Card-level title at top */
.bento__card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  margin: 0;
  padding: 32px 36px 20px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* Inner panel for the visual mockup — subtle border (#8) */
.bento__panel {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.02);
  padding: 24px;
  /* Gap between panel and gray footer (#2) */
  margin: 0 24px 20px;
  flex: 1 1 auto;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.bento__panel > * {
  width: 100%;
}

.bento__card--stack .bento__visual {
  display: none;
}

/* Gray description footer (#1) — visibly different bg with separator line */
.bento__card--stack .bento__text {
  padding: 24px 36px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #151922;
}

/* Description text in footer — 75% opacity white on #151922 bg
   gives ~11:1 contrast ratio, well above WCAG AA (4.5:1). */
.bento__card--stack .bento__text .bento__desc {
  color: rgba(255, 255, 255, 0.75);
}

/* Hide the duplicate title inside .bento__text for stack cards */
.bento__card--stack .bento__text .bento__title {
  display: none;
}

/* --- Text half --- */
.bento__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.bento__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-white);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.bento__desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.bento__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  align-self: flex-start;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0;
  transition: all 0.3s var(--ease-out);
}

.bento__cta:hover {
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

.bento__cta svg {
  transition: transform 0.3s var(--ease-out);
}

/* --- Visual half --- */
.bento__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  overflow: hidden;
  /* Unified subtle indigo glow — same for every card */
  background:
    radial-gradient(ellipse at 30% 20%, rgba(99, 102, 241, 0.12), transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(59, 130, 246, 0.08), transparent 60%),
    var(--bg-dark-secondary);
}

.bento__visual > * {
  position: relative;
  z-index: 1;
  width: 100%;
}

/* All gradient variants now resolve to the same base — the class names
   are kept in HTML for future per-card customization but render identically. */
.bento__visual--gradient-blue,
.bento__visual--gradient-emerald,
.bento__visual--gradient-violet {
  /* inherits from .bento__visual */
}

/* Early warning card — brightest visual in the grid */
.bento__visual--gradient-amber {
  background:
    radial-gradient(ellipse at 20% 10%, rgba(168, 85, 247, 0.3), transparent 55%),
    radial-gradient(ellipse at 80% 90%, rgba(34, 211, 238, 0.25), transparent 55%),
    radial-gradient(ellipse at 50% 50%, rgba(99, 102, 241, 0.15), transparent 70%),
    #0C1228;
}

/* --- Outcome tracking funnel mock --- */
.mock-funnel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.mock-funnel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.mock-funnel__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-white);
}

.mock-funnel__sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-mono);
  margin-top: 2px;
}

.mock-funnel__steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mock-funnel__step {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mock-funnel__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.92);
}

.mock-funnel__pct {
  font-family: var(--font-mono);
  color: var(--text-white);
  font-weight: 600;
}

.mock-funnel__bar {
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.mock-funnel__fill {
  height: 100%;
  background: linear-gradient(90deg, rgba(99, 102, 241, 0.5), #818CF8);
  border-radius: 4px;
}

/* --- Network / flow diagram (Resource optimization) --- */
.mock-network {
  width: 100%;
}

.mock-network__svg {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Tapered funnel (Outcome tracking) --- */
.mock-funnel-v2 {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.mock-funnel-v2__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.mock-funnel-v2__shape {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.mock-funnel-v2__band {
  width: var(--w, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: var(--c, rgba(99, 102, 241, 0.3));
  transition: width 0.3s var(--ease-out);
}

.mock-funnel-v2__label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.9);
}

.mock-funnel-v2__pct {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-white);
}

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

  .bento::before {
    display: none;
  }

  .bento__card--row {
    flex-direction: column;
    min-height: 0;
  }

  .bento__card--row .bento__text,
  .bento__card--stack .bento__text {
    flex: none;
    padding: 24px;
  }

  .bento__card--row .bento__visual {
    min-height: 200px;
  }

  .bento__card--stack {
    min-height: 0;
  }

  .bento__card-title {
    padding: 24px 24px 16px;
  }

  .bento__panel {
    margin: 0 16px;
  }

  .bento__card--stack .bento__text {
    padding: 20px 24px 24px;
  }

  .bento__divider {
    height: 1px;
  }
}

/* --- Mock card visuals (Section A: For People) --- */
.mock-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 18px 20px;
}

.mock-card--faded {
  opacity: 0.55;
}

.mock-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.mock-card__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-white);
}

.mock-card__sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-mono);
  margin-top: 2px;
}

.mock-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mock-row:last-of-type {
  border-bottom: none;
}

.mock-key {
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mock-val {
  color: rgba(255, 255, 255, 0.92);
}

.mock-card__foot {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  color: #34D399;
}

.mock-card__foot--warn {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 0;
  padding-top: 0;
  border: none;
}

.mock-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.mock-pill--green {
  background: rgba(16, 185, 129, 0.12);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.mock-pill--blue {
  background: rgba(99, 102, 241, 0.12);
  color: var(--primary-light);
  border: 1px solid rgba(99, 102, 241, 0.3);
}

.mock-pill--alert {
  background: rgba(192, 132, 252, 0.18);
  color: #E9D5FF;
  border: 1px solid rgba(192, 132, 252, 0.4);
  text-shadow: 0 0 8px rgba(192, 132, 252, 0.5);
}

.mock-pill--muted {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  border: 1px solid var(--glass-border);
}

/* Contextual chat */
.mock-chat__bubble {
  padding: 14px 18px;
  border-radius: 14px 14px 14px 4px;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.2);
  color: var(--text-white);
  font-size: 0.9375rem;
  line-height: 1.5;
  max-width: 85%;
  margin-bottom: 4px;
}

.mock-result {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 14px 18px;
}

.mock-result__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.mock-result__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-white);
}

.mock-result__why {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.mock-result__why span {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-right: 6px;
}

/* Channels */
.mock-channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mock-channel {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 110px;
}

.mock-channel__icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
}

.mock-channel__icon--whatsapp { background: rgba(37, 211, 102, 0.18); color: #25D366; }
.mock-channel__icon--sms { background: rgba(99, 102, 241, 0.18); color: var(--primary-light); }
.mock-channel__icon--voice { background: rgba(245, 158, 11, 0.18); color: var(--accent-bright); }
.mock-channel__icon--web { background: rgba(139, 92, 246, 0.18); color: #B794F6; }

.mock-channel__name {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.8);
}

.mock-channel__msg {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.45;
}

.mock-channel__waveform {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 24px;
}

.mock-channel__waveform span {
  display: block;
  width: 3px;
  background: var(--accent-bright);
  border-radius: 2px;
  opacity: 0.7;
}

.mock-channel__waveform span:nth-child(1)  { height: 30%; }
.mock-channel__waveform span:nth-child(2)  { height: 60%; }
.mock-channel__waveform span:nth-child(3)  { height: 90%; }
.mock-channel__waveform span:nth-child(4)  { height: 50%; }
.mock-channel__waveform span:nth-child(5)  { height: 80%; }
.mock-channel__waveform span:nth-child(6)  { height: 40%; }
.mock-channel__waveform span:nth-child(7)  { height: 70%; }
.mock-channel__waveform span:nth-child(8)  { height: 95%; }
.mock-channel__waveform span:nth-child(9)  { height: 55%; }
.mock-channel__waveform span:nth-child(10) { height: 35%; }
.mock-channel__waveform span:nth-child(11) { height: 75%; }
.mock-channel__waveform span:nth-child(12) { height: 45%; }

/* --- Mock dashboards (Section B: For Institutions) --- */
.mock-dash {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.mock-dash__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.mock-dash__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-white);
}

.mock-dash__sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-mono);
  margin-top: 2px;
}

.mock-heat {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

/* Heatmap cells: wider contrast range — low cells nearly transparent,
   high cells vivid saturated indigo. */
.mock-heat__cell {
  aspect-ratio: 1.6;
  border-radius: 2px;
  position: relative;
  background-color: rgba(99, 102, 241, calc(0.04 + var(--h, 0) * 0.85));
  box-shadow: inset 0 0 0 1px rgba(129, 140, 248, calc(0.03 + var(--h, 0) * 0.25));
}

.mock-dash__legend {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.82);
}

.mock-dash__spacer { flex: 1; }

.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
}

.mock-dot--low  { background: rgba(99, 102, 241, 0.2); }
.mock-dot--high { background: rgba(129, 140, 248, 0.9); }

.mock-spike {
  width: 100%;
  height: 90px;
  display: block;
}

.mock-alert {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 0;
  background: rgba(168, 85, 247, 0.08);
  border: 1px solid rgba(168, 85, 247, 0.2);
}

.mock-alert__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #C084FC;
  box-shadow: 0 0 8px rgba(168, 85, 247, 0.4), 0 0 0 4px rgba(168, 85, 247, 0.15);
  flex-shrink: 0;
}

.mock-alert__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-white);
}

.mock-alert__sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-mono);
}

.mock-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mock-bar {
  display: grid;
  grid-template-columns: 110px 1fr 38px;
  align-items: center;
  gap: 12px;
  font-size: 0.8125rem;
}

.mock-bar__name {
  color: rgba(255, 255, 255, 0.92);
}

.mock-bar__track {
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.mock-bar__fill {
  height: 100%;
  border-radius: 4px;
}

.mock-bar__fill--over {
  background: linear-gradient(90deg, rgba(99, 102, 241, 0.5), #818CF8);
}

.mock-bar__fill--ok {
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.4), #38BDF8);
}

.mock-bar__val {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  text-align: right;
}

.mock-flow {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.92);
}

.mock-flow svg { color: rgba(255, 255, 255, 0.85); flex-shrink: 0; }

.mock-flow__src,
.mock-flow__dst {
  color: var(--text-white);
  font-weight: 500;
}

.mock-flow__tag {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.85);
}

/* --- Responsive feature scroll --- */
@media (max-width: 1100px) {
  .feature-scroll__layout {
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 32px;
  }

  .feature-scroll__nav-wrap {
    width: 180px;
  }

  .feature-scroll__visual {
    padding: 40px 32px;
  }

  .feature-scroll__text {
    padding: 40px 32px 40px 28px;
  }
}

@media (max-width: 860px) {
  .feature-scroll {
    overflow-x: hidden;
  }

  .feature-scroll__layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-scroll__nav-wrap {
    position: static;
    width: 100%;
    top: auto;
  }

  .feature-scroll__nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    overflow: visible;
    padding-bottom: 0;
  }

  .feature-scroll__nav-item {
    flex-shrink: 1;
    min-width: 0;
    justify-content: center;
    padding: 12px 10px;
    gap: 10px;
  }

  /* Disable sticky stacking on mobile — cards just stack normally
     as a vertical list of full-width unified cards. */
  .feature-scroll__cards {
    overflow-x: hidden;
  }

  .feature-scroll__card {
    position: static;
    grid-template-columns: 1fr;
    min-height: 0;
    margin-bottom: 24px;
    width: 100%;
  }

  .feature-scroll__visual {
    padding: 32px;
    min-height: 280px;
  }

  .feature-scroll__visual::after {
    display: none;
  }

  .feature-scroll__text {
    padding: 32px;
  }

  .feature-scroll__heading {
    font-size: clamp(1.625rem, 7vw, 2rem);
  }
}

/* --- How It Works Section --- */
.comparison {
  max-width: 900px;
  margin: 0 auto;
}

.comparison__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--bg-dark-secondary);
  box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.5);
}

.comparison__table thead th {
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-align: left;
}

.comparison__table thead th:first-child {
  width: 100px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 600;
}

.comparison__table thead th:nth-child(2) {
  background: rgba(239, 68, 68, 0.08);
  color: #FCA5A5;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison__table thead th:nth-child(3) {
  background: rgba(16, 185, 129, 0.08);
  color: #6EE7B7;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison__table tbody td {
  padding: 16px 24px;
  font-size: 0.9375rem;
  vertical-align: top;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  line-height: 1.5;
}

.comparison__table tbody td:first-child {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.03);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.comparison__table tbody td:nth-child(2) {
  color: var(--text-secondary);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison__table tbody td:nth-child(3) {
  color: var(--text-white);
  font-weight: 500;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison__table tbody tr:last-child td {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.125rem;
}

.comparison__table tbody tr:last-child td:nth-child(2) {
  color: #FCA5A5;
}

.comparison__table tbody tr:last-child td:nth-child(3) {
  color: #6EE7B7;
}

/* --- Contexts Section --- */
.contexts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.context-card {
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  transition: all 0.4s var(--ease-out);
}

.context-card:hover {
  background: var(--glass-bg-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-primary);
}

.context-card--hidden {
  border-style: dashed;
  opacity: 0;
  pointer-events: none;
}

.context-card__flag {
  font-size: 2rem;
  margin-bottom: 16px;
}

.context-card__country {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 8px;
}

.context-card__stat {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 4px;
  line-height: 1.2;
}

.context-card__stat-detail {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--primary-light);
  margin-bottom: 12px;
  font-weight: 500;
}

.context-card__stat-sub {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 8px;
}

.context-card__source {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.context-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 16px;
}

.context-card__text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- Case Study Cards (redesigned) --- */
.cases__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.2);
}

.case-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-dark);
  padding: 48px 44px;
}

.case-card__flag {
  font-size: 2rem;
  margin-bottom: 16px;
}

.case-card__country {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 24px;
}

.case-card__stat {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 6px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.case-card__stat-label {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--primary-light);
  margin-bottom: 28px;
  font-weight: 500;
}

.case-card__body {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1 1 auto;
}

.case-card__source {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  font-style: italic;
  margin-bottom: 28px;
}

.case-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  align-self: flex-start;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s var(--ease-out);
}

.case-card__cta:hover {
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

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

  .case-card {
    padding: 36px 28px;
  }

  .case-card__stat {
    font-size: 2.5rem;
  }
}

/* --- Trust / Privacy Section (auto-cycling + accordion) --- */

.trust-cycle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

/* Left: visual preview — dashed border, high contrast, fills full height */
.trust-cycle__preview {
  position: relative;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px dashed rgba(129, 129, 129, 0.5);
  margin: 0;
  padding: 24px;
  overflow: hidden;
}

/* Holographic frame — Composio-style trapezoid animation */
.trust-holo {
  position: relative;
  width: 100%;
  aspect-ratio: 508 / 420;
}

.trust-holo__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Trapezoid clip region */
.trust-holo__clip {
  position: absolute;
  inset: 0;
  clip-path: polygon(24.17% 34.76%, 75.83% 19.52%, 75.83% 80.48%, 24.17% 65.24%);
  overflow: hidden;
}

/* Background gradients that crossfade */
.trust-holo__grad {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.trust-holo__grad--cool {
  background: linear-gradient(135deg, #312e81 0%, #4c1d95 30%, #831843 60%, #9a3412 100%);
}

.trust-holo__grad--warm {
  background: linear-gradient(145deg, #6366f1 0%, #a855f7 30%, #ec4899 60%, #f97316 100%);
}

/* Holographic texture images */
.trust-holo__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  mix-blend-mode: plus-lighter;
  opacity: 1;
}

/* Light sweep bar */
.trust-holo__sweep {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 700px;
  transform: translate(-90px, -20px) rotate(-10deg);
  mix-blend-mode: overlay;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.15) 20%,
    rgba(255, 255, 255, 0.6) 40%,
    white 50%,
    rgba(255, 255, 255, 0.6) 60%,
    rgba(255, 255, 255, 0.15) 80%,
    transparent 100%
  );
  opacity: 1;
}

/* Border sheen SVG overlay */
.trust-holo__border {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Right: accordion — fixed height so CTA never jumps */
.trust-cycle__points {
  display: flex;
  flex-direction: column;
  background: var(--bg-dark);
  min-height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-cycle__point {
  cursor: pointer;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.3s var(--ease-out);
  position: relative;
}

.trust-cycle__point::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: transparent;
  transition: background 0.3s var(--ease-out);
}

.trust-cycle__point.is-active::before {
  background: var(--primary-light);
}

.trust-cycle__point:hover {
  background: rgba(255, 255, 255, 0.02);
}

.trust-cycle__point-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 32px;
}

.trust-cycle__point-head h4 {
  font-size: 24px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
  transition: color 0.3s var(--ease-out);
  line-height: 1.3;
}

.trust-cycle__point.is-active .trust-cycle__point-head h4 {
  color: var(--text-white);
  font-weight: 600;
}

.trust-cycle__toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.3s, border-color 0.3s;
}

.trust-cycle__point.is-active .trust-cycle__toggle {
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.2);
}

.trust-cycle__point-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

.trust-cycle__point.is-active .trust-cycle__point-body {
  max-height: 100px;
}

.trust-cycle__point-body p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  padding: 0 32px 20px;
  margin: 0;
}

/* CTA pinned at bottom of the right column */
.trust-cycle__cta-wrap {
  margin-top: auto;
  padding: 24px 32px 28px;
}

.trust-cta {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.3s var(--ease-out);
}

.trust-cta:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--text-white);
}

@media (max-width: 860px) {
  .trust-cycle {
    grid-template-columns: 1fr;
  }

  .trust-cycle__preview {
    min-height: 280px;
  }

  .trust-cycle__points {
    min-height: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .trust-cycle__point-head {
    padding: 20px 24px;
  }

  .trust-cycle__point-head h4 {
    font-size: 1.25rem;
  }

  .trust-cycle__point-body p {
    font-size: 1rem;
    padding: 0 24px 18px;
  }

  .trust-cycle__cta-wrap {
    padding: 20px 24px 24px;
  }
}

/* --- Contact Section --- */
.contact {
  position: relative;
}

.contact__bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 100%, rgba(99, 102, 241, 0.08), transparent);
  pointer-events: none;
}

.contact__content {
  position: relative;
  z-index: 1;
}

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

.contact__info h2 {
  margin-bottom: 16px;
}

.contact__info p {
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.contact__download {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--text-secondary);
  font-size: 0.9375rem;
  transition: all 0.3s var(--ease-out);
}

.contact__download:hover {
  background: var(--glass-bg-hover);
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.15);
}

.contact__download-icon {
  font-size: 1.5rem;
}

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

.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form__label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.form__input,
.form__textarea {
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid var(--border-dark);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: all 0.3s var(--ease-out);
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--text-secondary);
  opacity: 0.5;
}

.form__textarea {
  min-height: 120px;
  resize: vertical;
}

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

.form__submit {
  margin-top: 8px;
  width: 100%;
  justify-content: center;
}


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

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

.footer__brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.footer__brand span {
  color: var(--primary-light);
}

.footer__legal {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  opacity: 0.6;
}

/* --- Scroll Animations (initial states) --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  will-change: transform, opacity;
}

.reveal--left {
  opacity: 0;
  transform: translateX(-40px);
  will-change: transform, opacity;
}

.reveal--right {
  opacity: 0;
  transform: translateX(40px);
  will-change: transform, opacity;
}

.reveal--scale {
  opacity: 0;
  transform: scale(0.95);
  will-change: transform, opacity;
}

/* --- Mobile Navigation --- */
.nav__mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 15, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}

.nav__mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.nav__mobile-menu a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-white);
}

.nav__mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2rem;
  color: var(--text-white);
  background: none;
  border: none;
  cursor: pointer;
}

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

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

  .hero__mesh-blob {
    animation: none !important;
  }

  .btn--primary {
    animation: none;
  }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }

  .hero__asset {
    display: none;
  }

  .hero__content {
    max-width: 100%;
  }

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

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

@media (max-width: 768px) {
  :root {
    --section-padding: 64px;
  }

  .section__header {
    margin-bottom: 40px;
  }

  .nav__links {
    display: none;
  }

  .nav__cta.desktop-only {
    display: none;
  }

  .nav__mobile-toggle {
    display: flex;
  }

  .nav__mobile-menu {
    display: flex;
  }

  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }

  .hero {
    min-height: auto;
    padding: 120px 0 80px;
  }

  .hero__headline--tight {
    font-size: clamp(2.125rem, 9vw, 3rem);
  }

  .section__header--mid {
    margin-top: 96px;
    margin-bottom: 40px;
    padding-top: 20px;
  }

  .section__subtitle {
    margin-top: 12px;
  }

  .solution .container {
    overflow-x: clip;
  }

  .hero__ctas {
    flex-direction: column;
  }

  .hero__ctas .btn,
  .hero__cta-glass {
    width: 100%;
    justify-content: center;
  }

  .proof-cards {
    grid-template-columns: 1fr;
  }

  .comparison__table {
    font-size: 0.875rem;
    border-radius: 12px;
  }

  .comparison__table thead th,
  .comparison__table tbody td {
    padding: 12px 14px;
  }

  .comparison__table thead th:first-child,
  .comparison__table tbody td:first-child {
    width: 70px;
    font-size: 0.6875rem;
  }

  .trust-cycle__preview {
    padding: 16px;
  }

  .contact__grid {
    gap: 32px;
  }

  .contact__info p {
    margin-bottom: 24px;
  }

  .mock-channels {
    grid-template-columns: 1fr;
  }

  .mock-dash__legend {
    flex-wrap: wrap;
  }

  .mock-bar {
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
  }

  .mock-bar__val {
    text-align: left;
  }

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

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

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

  .footer__inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

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

  .hero__headline,
  .hero__headline--tight {
    font-size: 2rem;
  }

  .nav {
    padding: 12px 0;
  }

  .nav__inner {
    padding: 0 16px;
  }

  .hero__shell {
    padding: 0 16px;
  }

  .hero__subheadline--centered {
    font-size: 1rem;
  }

  .hero__cta-glass-label {
    width: 100%;
    padding: 12px 18px;
  }

  .feature-scroll__visual,
  .feature-scroll__text {
    padding: 24px 20px;
  }

  .feature-scroll__visual {
    min-height: 240px;
  }

  .feature-scroll__nav {
    grid-template-columns: 1fr;
  }

  .feature-scroll__nav-item {
    justify-content: flex-start;
  }

  .bento__card--row .bento__text,
  .bento__card--stack .bento__text {
    padding: 20px;
  }

  .bento__card-title {
    padding: 20px 20px 14px;
  }

  .bento__panel {
    margin: 0 12px 14px;
    padding: 14px;
  }

  .bento__visual {
    padding: 18px;
  }

  .mock-card,
  .mock-result,
  .mock-channel,
  .mock-dash,
  .mock-funnel,
  .mock-funnel-v2,
  .mock-network {
    min-width: 0;
    max-width: 100%;
  }

  .mock-card__head,
  .mock-result__head,
  .mock-funnel__head,
  .mock-funnel-v2__head,
  .mock-dash__head,
  .mock-alert,
  .mock-flow,
  .contact__download,
  .footer__inner {
    gap: 10px;
  }

  .mock-card__head,
  .mock-result__head {
    flex-wrap: wrap;
  }

  .mock-row {
    gap: 12px;
    align-items: flex-start;
  }

  .mock-val {
    text-align: right;
  }

  .mock-dash__legend {
    gap: 6px 10px;
  }

  .mock-flow {
    padding: 10px 12px;
  }

  .mock-flow__tag {
    width: 100%;
  }

  .mock-funnel-v2__band {
    padding: 8px 10px;
  }

  .mock-funnel-v2__label,
  .mock-funnel-v2__pct,
  .mock-alert__title {
    font-size: 0.75rem;
  }

  .mock-alert__sub,
  .mock-dash__sub,
  .mock-bar__val {
    font-size: 0.6875rem;
  }

  .trust-cycle__preview {
    min-height: 220px;
  }

  .trust-cycle__point-head {
    padding: 18px 20px;
  }

  .trust-cycle__point-head h4 {
    font-size: 1.125rem;
  }

  .trust-cycle__point-body p {
    padding: 0 20px 16px;
  }

  .contact__download {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .proof-card {
    padding: 24px;
  }

  .context-card {
    padding: 28px;
  }
}
