/* ZolnaPay Landing — World-Class Fintech Redesign with Dynamic Mesh & Connected Pipeline */
:root {
  --bg: #ffffff;
  --bg-subtle: #f8fafc;
  --bg-muted: #f1f5f9;
  --border: rgba(15, 23, 42, 0.08);
  --border-strong: rgba(15, 23, 42, 0.14);
  --border-glow: rgba(27, 109, 224, 0.35);
  --text: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --primary: #1b6de0;
  --primary-dark: #0f4fb3;
  --primary-glow: rgba(27, 109, 224, 0.25);
  --accent: #06b6d4;
  --accent-glow: rgba(6, 182, 212, 0.3);
  --purple: #8b5cf6;
  --success: #10b981;
  --success-glow: rgba(16, 185, 129, 0.25);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --container: 1240px;
  --pad-x: clamp(20px, 4vw, 24px);
  --section-lg: clamp(72px, 10vw, 120px);
  --section-md: clamp(56px, 8vw, 96px);
  --section-sm: clamp(40px, 6vw, 72px);
  --font: 'Outfit', 'IBM Plex Sans Arabic', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --t: 0.25s var(--ease);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 80px; background: var(--bg); }
body { font-family: var(--font); color: var(--text); line-height: 1.6; overflow-x: hidden; min-height: 100dvh; background: var(--bg); position: relative; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.wrap {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: max(var(--pad-x), env(safe-area-inset-left)) max(var(--pad-x), env(safe-area-inset-right));
}

/* ── Animated Ambient Background Atmosphere ── */
.ambient-scene {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.aurora-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  will-change: transform;
}

.aurora-orb-1 {
  width: min(650px, 90vw);
  height: min(650px, 90vw);
  background: radial-gradient(circle, rgba(27, 109, 224, 0.22) 0%, rgba(6, 182, 212, 0.12) 60%, transparent 80%);
  top: -120px;
  right: -80px;
  animation: floatOrb1 20s ease-in-out infinite alternate;
}

.aurora-orb-2 {
  width: min(550px, 85vw);
  height: min(550px, 85vw);
  background: radial-gradient(circle, rgba(139, 92, 246, 0.18) 0%, rgba(27, 109, 224, 0.1) 60%, transparent 80%);
  top: 35%;
  left: -140px;
  animation: floatOrb2 25s ease-in-out infinite alternate;
}

.aurora-orb-3 {
  width: min(700px, 95vw);
  height: min(700px, 95vw);
  background: radial-gradient(circle, rgba(6, 182, 212, 0.16) 0%, rgba(16, 185, 129, 0.1) 60%, transparent 80%);
  bottom: 5%;
  right: 15%;
  animation: floatOrb3 22s ease-in-out infinite alternate;
}

.ambient-grid {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 50% 50%, rgba(15, 79, 179, 0.04) 1.5px, transparent 1.5px),
    linear-gradient(to right, rgba(15, 23, 42, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 23, 42, 0.02) 1px, transparent 1px);
  background-size: 32px 32px, 64px 64px, 64px 64px;
  opacity: 0.8;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 40%, transparent 95%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 40%, transparent 95%);
}

@keyframes floatOrb1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-80px, 120px) scale(1.15); }
  100% { transform: translate(60px, 80px) scale(0.95); }
}

@keyframes floatOrb2 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(110px, -70px) scale(1.12); }
  100% { transform: translate(-40px, 90px) scale(0.92); }
}

@keyframes floatOrb3 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-90px, -90px) scale(1.1); }
  100% { transform: translate(70px, 60px) scale(1); }
}

/* ── Nav ── */
.nav-bar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}
.nav-bar .wrap { position: relative; }
.nav-bar.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: rgba(27, 109, 224, 0.15);
  box-shadow: 0 10px 30px -10px rgba(15, 79, 179, 0.08);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 16px; }
.brand {
  font-size: 1.45rem; font-weight: 800; letter-spacing: -0.03em; color: var(--text);
  display: inline-flex; align-items: center; gap: 2px;
}
.brand span {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-links { display: flex; gap: 4px; margin-inline: 24px auto 0; }
.nav-links a {
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 0.86rem; font-weight: 600; color: var(--text-secondary); transition: var(--t);
  position: relative;
}
.nav-links a:hover, .nav-links a.is-active {
  color: var(--primary-dark);
  background: rgba(27, 109, 224, 0.07);
}
.nav-actions { display: flex; gap: 8px; align-items: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 20px; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.86rem;
  min-height: 42px; transition: all 0.25s var(--ease); border: 1px solid transparent;
  cursor: pointer; user-select: none;
}
.btn-primary {
  background: linear-gradient(135deg, #1B6DE0 0%, #0F4FB3 100%);
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(15, 79, 179, 0.5);
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.25), transparent);
  transform: translateX(-100%); transition: transform 0.6s ease;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px -6px rgba(15, 79, 179, 0.6);
}
.btn-primary:hover::after {
  transform: translateX(100%);
}
.btn-ghost {
  color: var(--text); border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  border-color: var(--primary); color: var(--primary-dark);
  background: rgba(27, 109, 224, 0.05); transform: translateY(-1px);
}
.btn-ghost-light { color: var(--text); border-color: var(--border-strong); background: transparent; }
.btn-ghost-light:hover { background: var(--bg-subtle); }
.lang {
  width: 40px; height: 40px; border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm); background: rgba(255, 255, 255, 0.85); color: var(--text);
  display: inline-flex; align-items: center; justify-content: center;
  transition: var(--t);
}
.lang:hover { border-color: var(--primary); color: var(--primary); }
.lang-code { font-family: var(--mono); font-size: 0.72rem; font-weight: 700; }
.menu-btn {
  display: none; width: 40px; height: 40px; border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm); background: rgba(255, 255, 255, 0.85); flex-direction: column;
  align-items: center; justify-content: center; gap: 4px;
}
.menu-btn span { display: block; width: 18px; height: 2px; background: var(--text); border-radius: 1px; transition: var(--t); }
.menu-btn.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-btn.is-open span:nth-child(2) { opacity: 0; }
.menu-btn.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-panel {
  display: none; border-top: 1px solid var(--border); background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 12px var(--pad-x) 20px; position: absolute; top: 100%; inset-inline: 0;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
}
.mobile-panel.is-open { display: flex !important; flex-direction: column; }
.mobile-panel a { padding: 14px 4px; font-size: 0.96rem; font-weight: 600; color: var(--text-secondary); border-bottom: 1px solid var(--border); }
.mobile-panel a:last-child { border-bottom: none; }

/* ── Section System ── */
.section { padding-block: var(--section-md); position: relative; z-index: 1; }
.section--lg { padding-block: var(--section-lg); }
.section--sm { padding-block: var(--section-sm); }
.section--alt {
  background: rgba(248, 250, 252, 0.75);
  backdrop-filter: blur(8px);
  border-block: 1px solid var(--border);
}
.section-head { max-width: 680px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head--center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary);
  background: rgba(27, 109, 224, 0.08); padding: 4px 12px; border-radius: 999px;
  margin-bottom: 14px; border: 1px solid rgba(27, 109, 224, 0.16);
}
.eyebrow .dot-ping {
  width: 6px; height: 6px; border-radius: 50%; background: var(--primary);
  box-shadow: 0 0 0 0 rgba(27, 109, 224, 0.7);
  animation: dotPing 2s infinite;
}
@keyframes dotPing {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(27, 109, 224, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(27, 109, 224, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(27, 109, 224, 0); }
}
.section-head h2 {
  font-size: clamp(1.85rem, 3.8vw, 2.75rem); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.16; margin-bottom: 14px;
}
.section-head p { color: var(--text-secondary); font-size: clamp(0.96rem, 1.5vw, 1.1rem); max-width: 54ch; line-height: 1.65; }
.section-head--center p { margin-inline: auto; }

/* ── Hero Section ── */
.hero { padding-block: clamp(40px, 7vw, 84px) clamp(48px, 6vw, 80px); position: relative; z-index: 1; }
.hero-grid {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(36px, 6vw, 72px);
  align-items: center;
}
.hero-copy { max-width: 580px; }
.hero-pill-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(27, 109, 224, 0.2);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-dark);
  box-shadow: 0 4px 14px rgba(27, 109, 224, 0.08);
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}
.hero-pill-badge .sparkle { color: #f59e0b; }
.hero h1 {
  font-size: clamp(2.3rem, 5.6vw, 4.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero h1 span {
  display: block;
  line-height: 1.25;
}
html[lang="ar"] .hero h1,
html[dir="rtl"] .hero h1 {
  letter-spacing: normal;
  line-height: 1.42;
  gap: clamp(14px, 2.2vw, 24px);
}
html[lang="ar"] .hero h1 span,
html[dir="rtl"] .hero h1 span {
  letter-spacing: normal;
  line-height: 1.42;
  padding-block: 2px;
}
.hero h1 .gradient-text {
  background: linear-gradient(135deg, #0F4FB3 0%, #1B6DE0 50%, #06B6D4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero h1 .line-muted { color: var(--text-secondary); font-weight: 700; }
.hero .lede {
  color: var(--text-secondary); font-size: clamp(1rem, 1.6vw, 1.18rem);
  max-width: 48ch; line-height: 1.65; margin-bottom: 28px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.hero-telemetry-strip {
  display: flex; flex-wrap: wrap; gap: 14px 20px;
  padding-top: 20px; border-top: 1px solid var(--border);
}
.telemetry-item {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.78rem; font-weight: 600; color: var(--text-secondary);
}
.telemetry-item i { color: var(--primary); font-style: normal; font-weight: 700; }

/* ── Interactive Hero Terminal Visual (True 3D Spatial Architecture) ── */
.hero-visual-wrapper {
  position: relative;
  perspective: 1200px;
  transform-style: preserve-3d;
}

/* Ambient 3D Backlight Glow */
.hero-visual-wrapper::before {
  content: "";
  position: absolute;
  inset: -15px -20px;
  border-radius: 40px;
  background: radial-gradient(circle at 65% 35%, rgba(27, 109, 224, 0.28) 0%, rgba(6, 182, 212, 0.18) 45%, transparent 75%);
  filter: blur(45px);
  pointer-events: none;
  z-index: 0;
  animation: pulseGlowHero 8s ease-in-out infinite alternate;
}

/* 3D Ambient Floor Drop Shadow */
.hero-visual-wrapper::after {
  content: "";
  position: absolute;
  bottom: -22px;
  left: 6%;
  right: 6%;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(15, 79, 179, 0.35) 0%, rgba(15, 23, 42, 0.2) 45%, transparent 75%);
  filter: blur(14px);
  pointer-events: none;
  z-index: 0;
  transform: translateZ(-20px);
}

@keyframes pulseGlowHero {
  0% { opacity: 0.7; transform: scale(0.96); }
  100% { opacity: 1; transform: scale(1.04); }
}

.terminal-card {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: 
    0 2px 4px rgba(15, 23, 42, 0.03),
    0 12px 32px -8px rgba(15, 23, 42, 0.08),
    0 30px 70px -15px rgba(27, 109, 224, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.terminal-card:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 4px 8px rgba(15, 23, 42, 0.04),
    0 18px 40px -10px rgba(15, 23, 42, 0.1),
    0 40px 90px -20px rgba(27, 109, 224, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.terminal-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 20px;
  background: #f8fafc;
  border-bottom: 1px solid var(--border);
}
.terminal-controls { display: flex; gap: 6px; }
.terminal-controls span { width: 9px; height: 9px; border-radius: 50%; }
.terminal-controls span:nth-child(1) { background: #ef4444; }
.terminal-controls span:nth-child(2) { background: #f59e0b; }
.terminal-controls span:nth-child(3) { background: #10b981; }

.terminal-live-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 0.72rem; font-weight: 700;
  padding: 3px 10px; border-radius: 999px;
  background: rgba(16, 185, 129, 0.1); color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.25);
}
.terminal-live-pill .radar-ping {
  width: 6px; height: 6px; border-radius: 50%; background: #10b981;
  position: relative;
}
.terminal-live-pill .radar-ping::after {
  content: ""; position: absolute; inset: -3px; border-radius: 50%;
  background: #10b981; opacity: 0.4;
  animation: radarPing 1.8s infinite;
}
@keyframes radarPing {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(2.2); opacity: 0; }
}

.terminal-body { 
  padding: 22px; 
}

/* ── Realistic Live Payment Session Card ── */
.intent-session-card {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 16px;
  padding: 18px 20px;
  border: 1px solid var(--border-strong);
  margin-bottom: 18px;
  position: relative;
  box-shadow: 0 4px 16px -4px rgba(15, 23, 42, 0.05);
}

.intent-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.intent-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--primary-dark);
  background: rgba(27, 109, 224, 0.08);
  padding: 3px 8px;
  border-radius: 5px;
  border: 1px solid rgba(27, 109, 224, 0.15);
}

.intent-rails-preview {
  display: flex;
  align-items: center;
  gap: 8px;
}

.intent-rails-preview img {
  height: 15px;
  width: auto;
}

.intent-main-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--border-strong);
}

.intent-amount-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 2px;
}

.intent-amount-val {
  font-family: var(--mono);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.intent-order-meta {
  text-align: end;
  font-size: 0.72rem;
  color: var(--text-secondary);
}

.intent-order-meta strong {
  display: block;
  font-family: var(--mono);
  color: var(--text);
  font-size: 0.76rem;
}

.intent-foot-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.intent-foot-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #059669;
  font-weight: 600;
}

/* Simulator Controls & Currency Picker */
.sim-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 12px;
}

.sim-currency-picker {
  display: flex;
  gap: 4px;
  background: var(--bg-muted);
  padding: 3px;
  border-radius: 8px;
}

.currency-btn {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  color: var(--text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: var(--t);
}

.currency-btn.is-active {
  background: #ffffff;
  color: var(--primary-dark);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.sim-lifecycle-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.sim-step-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  border-radius: 8px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-secondary);
  transition: all 0.25s ease;
}

.sim-step-row.is-done {
  background: rgba(16, 185, 129, 0.05);
  border-color: rgba(16, 185, 129, 0.2);
  color: var(--text);
}

.sim-step-row.is-current {
  background: rgba(27, 109, 224, 0.06);
  border-color: rgba(27, 109, 224, 0.3);
  color: var(--primary-dark);
}

.sim-step-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.sim-icon-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
}

.sim-step-row.is-done .sim-icon-dot {
  background: #10b981;
  color: #ffffff;
}

.sim-step-row.is-current .sim-icon-dot {
  background: var(--primary);
  color: #ffffff;
  animation: radarPing 1.2s infinite;
}

.sim-step-tag {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--text-muted);
}

.sim-step-row.is-done .sim-step-tag {
  color: #059669;
  font-weight: 700;
}

.btn-sim-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 11px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--primary-dark);
  box-shadow: 0 4px 14px -3px rgba(27, 109, 224, 0.4);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-sim-trigger:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-sim-trigger.is-done {
  background: #059669;
  border-color: #047857;
}

.terminal-footer {
  padding: 12px 20px;
  background: #f8fafc;
  border-top: 1px solid var(--border);
  font-size: 0.74rem; color: var(--text-muted); font-family: var(--mono);
  display: flex; justify-content: space-between; align-items: center;
}

/* Floating Badges on Hero Visual with 3D Pop */
.hero-floating-pill {
  position: absolute;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 
    0 16px 36px -8px rgba(15, 79, 179, 0.24),
    0 4px 12px rgba(0, 0, 0, 0.06);
  font-size: 0.78rem; font-weight: 700;
  display: flex; align-items: center; gap: 8px;
  z-index: 3;
  transform: translateZ(48px);
  animation: floatPill 6s ease-in-out infinite alternate;
}
.hero-floating-pill-1 { top: -16px; inset-inline-end: 14px; color: var(--success); }
.hero-floating-pill-2 { bottom: 18px; inset-inline-start: -24px; color: var(--primary-dark); animation-delay: -3s; }
@keyframes floatPill {
  0% { transform: translateZ(48px) translateY(0); }
  100% { transform: translateZ(48px) translateY(-10px); }
}

/* ── Hero Telemetry Single-Line Pill Strip ── */
.hero-telemetry-compact {
  margin-top: 24px;
}
.telemetry-pill-strip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(27, 109, 224, 0.18);
  border-radius: 9999px;
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 20px -8px rgba(15, 79, 179, 0.15);
  white-space: nowrap;
  font-size: 0.84rem;
  font-weight: 600;
}
.telemetry-pill-strip .t-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.telemetry-pill-strip .t-sep {
  color: rgba(15, 23, 42, 0.2);
  font-weight: 900;
}
.telemetry-pill-strip .t-icon {
  font-style: normal;
}

/* ── Cyber-Grade Security & Trust Infrastructure ── */
.trust-strip-cyber {
  padding-block: clamp(28px, 4.5vw, 48px);
  position: relative;
  z-index: 2;
}

.cyber-card-wrapper {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 36px);
  box-shadow: 
    0 2px 4px rgba(15, 23, 42, 0.03),
    0 12px 32px -8px rgba(15, 23, 42, 0.06),
    0 25px 60px -15px rgba(27, 109, 224, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  position: relative;
}

.cyber-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.cyber-title-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cyber-shield-icon {
  font-size: 2.2rem;
}

.cyber-pre-badge {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--primary);
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}

.cyber-title {
  color: var(--text);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cyber-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #059669;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}

.cyber-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.6);
  animation: dotPing 1.8s infinite;
}

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

.cyber-box {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: 
    0 2px 4px rgba(15, 23, 42, 0.03),
    0 6px 18px -4px rgba(15, 23, 42, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
}

.cyber-box:hover {
  transform: translateY(-4px);
  border-color: rgba(27, 109, 224, 0.25);
  box-shadow: 
    0 4px 8px rgba(15, 23, 42, 0.04),
    0 16px 36px -8px rgba(15, 23, 42, 0.1),
    0 24px 48px -12px rgba(27, 109, 224, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.cyber-box-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.cyber-box-code {
  font-family: var(--mono);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.cyber-box-badge {
  font-size: 0.66rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(27, 109, 224, 0.08);
  color: var(--primary-dark);
  border: 1px solid rgba(27, 109, 224, 0.15);
}

.cyber-box h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.cyber-box p {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .cyber-grid { grid-template-columns: repeat(2, 1fr); }
  .cyber-header-row { flex-direction: column; align-items: flex-start; }
}

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

/* ── THE CONNECTED PAYMENT PIPELINE (Flow Section) ── */
.flow-pipeline-container {
  position: relative;
  margin-top: 20px;
}

/* Animated SVG Beams between Steps */
.pipeline-beam-svg {
  position: absolute;
  top: 48px;
  inset-inline: 4%;
  width: 92%;
  height: 4px;
  z-index: 0;
  pointer-events: none;
}
.beam-track {
  stroke: rgba(27, 109, 224, 0.15);
  stroke-width: 2;
  stroke-dasharray: 6 6;
}
.beam-energy {
  stroke: url(#beamGradient);
  stroke-width: 3;
  stroke-dasharray: 20 80;
  animation: energyFlow 2.8s linear infinite;
}
html[dir="rtl"] .beam-energy {
  animation-direction: reverse;
}
@keyframes energyFlow {
  from { stroke-dashoffset: 100; }
  to { stroke-dashoffset: 0; }
}

.flow-grid-interactive {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.flow-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: 0 10px 25px -8px rgba(15, 79, 179, 0.06);
  transition: all 0.35s var(--ease);
  position: relative;
  display: flex; flex-direction: column;
}

.flow-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 
    0 20px 40px -10px rgba(27, 109, 224, 0.18),
    0 0 0 1px rgba(27, 109, 224, 0.2);
}

.flow-step-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px;
}

.flow-step-num {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--mono);
  font-size: 0.85rem; font-weight: 800; background: #fff;
  border: 2px solid var(--primary); color: var(--primary);
  box-shadow: 0 0 0 4px rgba(27, 109, 224, 0.1);
  transition: all 0.3s ease;
}
.flow-card:hover .flow-step-num {
  background: var(--primary); color: #fff;
  box-shadow: 0 0 0 8px rgba(27, 109, 224, 0.2);
}

.flow-arrow-indicator {
  font-size: 1.25rem; font-weight: 800; color: var(--primary);
  opacity: 0.6; transition: transform 0.3s ease, opacity 0.3s ease;
}
html[dir="rtl"] .flow-arrow-indicator { transform: scaleX(-1); }
.flow-card:hover .flow-arrow-indicator {
  opacity: 1;
  transform: translateX(4px);
}
html[dir="rtl"] .flow-card:hover .flow-arrow-indicator {
  transform: scaleX(-1) translateX(4px);
}

.flow-card-tag {
  font-family: var(--mono); font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 8px;
}
.flow-card h3 {
  font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--text);
}
.flow-card p {
  font-size: 0.85rem; color: var(--text-secondary); line-height: 1.55;
  margin-bottom: 14px; flex-grow: 1;
}

.flow-card-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 0.7rem; font-weight: 600;
  padding: 4px 10px; border-radius: 6px;
  background: var(--bg-subtle); color: var(--text-muted);
  border: 1px solid var(--border);
}
.flow-card:hover .flow-card-badge {
  background: rgba(27, 109, 224, 0.08); color: var(--primary-dark);
  border-color: rgba(27, 109, 224, 0.2);
}

/* Flow Vertical for Mobile */
.flow-vertical {
  display: none; flex-direction: column; gap: 14px;
}
.flow-v-item {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  display: grid; grid-template-columns: 40px 1fr; gap: 14px;
  position: relative;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
}
.flow-v-item::before {
  content: ""; position: absolute;
  top: 56px; inset-inline-start: 35px; bottom: -14px;
  width: 2px; background: dashed var(--border-strong);
}
.flow-v-item:last-child::before { display: none; }
.flow-v-item .flow-step-num { width: 38px; height: 38px; font-size: 0.78rem; }
.flow-v-item h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.flow-v-item p { font-size: 0.84rem; color: var(--text-secondary); margin-bottom: 8px; }

/* ── Marquee ── */
.marquee {
  overflow: hidden; border-block: 1px solid var(--border);
  background: rgba(248, 250, 252, 0.7); backdrop-filter: blur(8px);
  padding: 14px 0;
}
.marquee-track {
  display: flex; gap: 36px; width: max-content;
  animation: marquee 40s linear infinite;
}
html[dir="rtl"] .marquee-track { animation-direction: reverse; }
.marquee-track span {
  font-family: var(--mono); font-size: 0.72rem; font-weight: 600;
  color: var(--text-muted); letter-spacing: 0.06em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
}
.marquee-track b { color: var(--text-secondary); }
.chip-brands { display: inline-flex; align-items: center; gap: 6px; }
.chip-brands img { height: 16px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Platform Showcase ── */
.platform-showcase { display: flex; flex-direction: column; gap: 28px; }
.browser {
  border: 1px solid var(--border-strong); border-radius: var(--radius-xl);
  background: var(--bg); overflow: hidden;
  box-shadow: 0 24px 60px -15px rgba(15, 79, 179, 0.12);
}
.browser-bar {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 18px; background: var(--bg-muted); border-bottom: 1px solid var(--border);
}
.browser-dots { display: flex; gap: 6px; }
.browser-dots i { width: 9px; height: 9px; border-radius: 50%; }
.browser-dots i:nth-child(1) { background: #ef4444; }
.browser-dots i:nth-child(2) { background: #eab308; }
.browser-dots i:nth-child(3) { background: #22c55e; }
.browser-url {
  flex: 1; background: var(--bg); border: 1px solid var(--border);
  border-radius: 6px; padding: 5px 12px; font-family: var(--mono);
  font-size: 0.72rem; color: var(--text-muted); direction: ltr; text-align: left;
}
.browser-stage { aspect-ratio: 16/10; position: relative; background: var(--bg-subtle); overflow: hidden; }
.browser-stage img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 0.4s ease;
}
.browser-stage img.is-active { opacity: 1; }

/* ── Flagship Smartphone Mockup Showcase for Mobile Checkout ── */
.phone-showcase-container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 50%, rgba(27, 109, 224, 0.04) 0%, #f8fafc 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: scale(0.98);
  padding: clamp(14px, 2.5vw, 24px);
  overflow: hidden;
}

.phone-showcase-container.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.phone-ambient-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27, 109, 224, 0.12) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.phone-device {
  width: min(276px, 68vw);
  height: min(530px, 94%);
  aspect-ratio: 9 / 18.8;
  background: #0b1120;
  border-radius: 42px;
  padding: 8px;
  position: relative;
  box-shadow: 
    0 0 0 1px rgba(255, 255, 255, 0.2),
    0 0 0 2px #1e293b,
    0 0 0 4px #0f172a,
    0 30px 70px -15px rgba(15, 23, 42, 0.4),
    0 12px 30px -6px rgba(27, 109, 224, 0.2);
  display: flex;
  flex-direction: column;
  z-index: 2;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.phone-device:hover {
  transform: translateY(-6px) scale(1.01);
}

/* Hardware buttons on chassis */
.phone-btn-action {
  position: absolute;
  left: -4px;
  top: 64px;
  width: 3px;
  height: 22px;
  background: #334155;
  border-radius: 2px 0 0 2px;
}

.phone-btn-vol-up {
  position: absolute;
  left: -4px;
  top: 98px;
  width: 3px;
  height: 38px;
  background: #334155;
  border-radius: 2px 0 0 2px;
}

.phone-btn-vol-down {
  position: absolute;
  left: -4px;
  top: 144px;
  width: 3px;
  height: 38px;
  background: #334155;
  border-radius: 2px 0 0 2px;
}

.phone-btn-power {
  position: absolute;
  right: -4px;
  top: 110px;
  width: 3px;
  height: 52px;
  background: #334155;
  border-radius: 0 2px 2px 0;
}

/* Specular Glass Glare Sheen across screen */
.phone-glass-glare {
  position: absolute;
  inset: 8px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.03) 38%, transparent 55%);
  pointer-events: none;
  z-index: 7;
}

.phone-island {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 78px;
  height: 18px;
  background: #000000;
  border-radius: 999px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-inline-end: 8px;
  gap: 5px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.island-camera {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1e293b;
  box-shadow: inset 0 0 2px #000, 0 0 1px rgba(255,255,255,0.2);
}

.island-sensor {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #0f172a;
}

.phone-status-bar {
  position: absolute;
  top: 12px;
  left: 22px;
  right: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: #0f172a;
  z-index: 9;
  pointer-events: none;
}

.phone-time {
  font-family: var(--mono);
  letter-spacing: -0.01em;
}

.phone-icons {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--mono);
  font-size: 0.6rem;
}

.phone-battery {
  width: 18px;
  height: 9px;
  border: 1px solid currentColor;
  border-radius: 3px;
  padding: 1px;
  display: flex;
  align-items: center;
  position: relative;
}

.phone-battery::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 2px;
  bottom: 2px;
  width: 2px;
  background: currentColor;
  border-radius: 0 1px 1px 0;
}

.battery-level {
  display: block;
  height: 100%;
  width: 85%;
  background: #10b981;
  border-radius: 1px;
}

.phone-screen-content {
  flex: 1;
  border-radius: 34px;
  overflow: hidden;
  background: #ebf3ff;
  position: relative;
  box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
}

.phone-status-spacer {
  height: 32px;
  background: #ebf3ff;
  flex-shrink: 0;
}

.phone-screenshot-img {
  width: 100%;
  flex: 1;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.phone-home-bar {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 104px;
  height: 4px;
  background: #0f172a;
  border-radius: 999px;
  opacity: 0.55;
  box-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
  z-index: 10;
}

/* Floating chips around the phone */
.phone-floating-chips {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px clamp(20px, 8vw, 60px);
}

.phone-chip {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: 
    0 4px 6px -1px rgba(15, 23, 42, 0.04),
    0 16px 36px -8px rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.9) inset;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 250px;
  animation: phoneChipFloat 4s ease-in-out infinite alternate;
}

.phone-chip-2 {
  animation-delay: -2s;
}

@keyframes phoneChipFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-7px); }
}

.phone-chip strong {
  display: block;
  font-size: 0.84rem;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 2px;
}

.phone-chip span {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.p-chip-icon {
  font-size: 1.35rem;
}

@media (max-width: 768px) {
  .browser-stage { min-height: 480px; }
  .phone-floating-chips { display: none; }
  .phone-device { width: min(240px, 80vw); height: 440px; border-radius: 34px; padding: 6px; }
  .phone-screen-content { border-radius: 28px; }
}

@media (max-width: 480px) {
  .browser-stage { min-height: 430px; }
  .phone-device { width: 220px; height: 395px; border-radius: 28px; padding: 5px; }
  .phone-screen-content { border-radius: 24px; }
  .phone-island { width: 66px; height: 15px; }
  .phone-status-spacer { height: 26px; }
  .phone-status-bar { left: 16px; right: 16px; font-size: 0.6rem; }
}

.shot-nav {
  display: flex; flex-wrap: wrap; gap: 6px; border-bottom: 1px solid var(--border);
}
.shot-tab {
  flex: 1; min-width: 130px; padding: 14px 16px; text-align: start;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: var(--t); cursor: pointer; position: relative;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.shot-tab:hover { background: var(--bg-subtle); }
.shot-tab.is-active { border-bottom-color: var(--primary); background: var(--bg-subtle); }
.shot-tab .idx {
  font-family: var(--mono); font-size: 0.68rem; font-weight: 700;
  color: var(--text-muted); display: block; margin-bottom: 2px;
}
.shot-tab.is-active .idx { color: var(--primary); }
.shot-tab strong { display: block; font-size: 0.86rem; font-weight: 700; margin-bottom: 4px; }
.shot-tab .tab-desc { font-size: 0.74rem; color: var(--text-muted); line-height: 1.4; display: block; }
.shot-tab .bar { display: none; }

/* ── Methods Editorial ── */
.methods-editorial {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border: 1px solid var(--border-strong); border-radius: var(--radius-lg); overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 40px -10px rgba(15, 79, 179, 0.06);
}
.method-cell {
  padding: 24px 26px; border-inline-end: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: all 0.25s var(--ease);
}
.method-cell:hover {
  background: rgba(27, 109, 224, 0.04);
}
.method-cell:nth-child(3n) { border-inline-end: none; }
.method-cell:nth-last-child(-n+3) { border-bottom: none; }
.method-cell--featured { grid-column: span 1; background: var(--bg-subtle); }
.method-cell .method-brands { display: flex; gap: 10px; align-items: center; min-height: 32px; margin-bottom: 12px; }
.method-cell .method-brands img { height: 26px; width: auto; }
.method-cell h3 { font-size: 0.98rem; font-weight: 700; margin-bottom: 4px; }
.method-cell p { font-size: 0.82rem; color: var(--text-secondary); }

/* ── Sleek Single-Line Section Headers ── */
.section-head-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(32px, 4.5vw, 52px);
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px -15px rgba(15, 79, 179, 0.06);
}

.head-inline-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
}

.pill-cyber-glow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(27, 109, 224, 0.08);
  border: 1px solid rgba(27, 109, 224, 0.2);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.head-inline-title {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  white-space: nowrap;
  margin: 0;
}

.head-inline-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.head-inline-desc {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.4;
  margin: 0;
}

.pipeline-speed-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width: 960px) {
  .section-head-inline {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .head-inline-left {
    flex-wrap: wrap;
  }
  .head-inline-title {
    white-space: normal;
  }
}

/* ── Audiences ── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.audience-item {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px -10px rgba(15, 79, 179, 0.05);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.audience-item:hover {
  transform: translateY(-4px);
  border-color: rgba(27, 109, 224, 0.3);
  box-shadow: 0 16px 36px -12px rgba(15, 79, 179, 0.12);
}

.audience-num {
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--primary);
  background: rgba(27, 109, 224, 0.08);
  display: inline-block;
  padding: 2px 8px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.audience-item h3 {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 8px;
}

.audience-item p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Capabilities Stack ── */
/* ── Capabilities Stack ── */
.feat-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vw, 68px);
}

.feat-row {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  position: relative;
  padding: clamp(32px, 5vw, 54px);
  border-radius: 32px;
  backdrop-filter: blur(36px) saturate(200%);
  -webkit-backdrop-filter: blur(36px) saturate(200%);
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  isolation: isolate;
}

.feat-row--reverse .feat-copy { order: 2; }
.feat-row--reverse .feat-visual { order: 1; }

/* ── 1. Commerce Custom Frosted Glass Background ── */
.feat-row--commerce {
  background: 
    radial-gradient(110% 130% at 85% 15%, rgba(6, 182, 212, 0.28) 0%, rgba(13, 38, 76, 0.72) 48%, rgba(7, 18, 38, 0.88) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(56, 189, 248, 0.32);
  box-shadow: 
    0 35px 85px -20px rgba(6, 182, 212, 0.32),
    0 16px 36px -10px rgba(0, 0, 0, 0.5),
    inset 0 1px 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -1px 1px 0 rgba(6, 182, 212, 0.2);
}

.feat-row--commerce::before {
  content: '';
  position: absolute;
  top: 0;
  left: -20%;
  width: 140%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #06b6d4, #38bdf8, #2563eb, transparent);
  animation: beamSweepCommerce 8s ease-in-out infinite alternate;
  z-index: 1;
}

.feat-row--commerce::after {
  content: '';
  position: absolute;
  width: 480px;
  height: 480px;
  top: -80px;
  right: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.28) 0%, rgba(37, 99, 235, 0.16) 50%, transparent 70%);
  filter: blur(65px);
  animation: orbDriftCommerce 14s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

.feat-row--commerce:hover {
  border-color: rgba(56, 189, 248, 0.65);
  box-shadow: 
    0 45px 105px -20px rgba(6, 182, 212, 0.45),
    0 0 45px rgba(6, 182, 212, 0.28),
    inset 0 1px 2px 0 rgba(255, 255, 255, 0.65);
  transform: translateY(-5px);
}

/* ── 2. Finance Custom Frosted Glass Background ── */
.feat-row--finance {
  background: 
    radial-gradient(110% 130% at 15% 15%, rgba(16, 185, 129, 0.3) 0%, rgba(8, 44, 32, 0.72) 48%, rgba(5, 22, 16, 0.88) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(16, 185, 129, 0.35);
  box-shadow: 
    0 35px 85px -20px rgba(16, 185, 129, 0.32),
    0 16px 36px -10px rgba(0, 0, 0, 0.5),
    inset 0 1px 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -1px 1px 0 rgba(16, 185, 129, 0.2);
}

.feat-row--finance::before {
  content: '';
  position: absolute;
  top: 0;
  left: -20%;
  width: 140%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #34d399, #10b981, #059669, transparent);
  animation: beamSweepFinance 8s ease-in-out infinite alternate;
  z-index: 1;
}

.feat-row--finance::after {
  content: '';
  position: absolute;
  width: 480px;
  height: 480px;
  top: -80px;
  left: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, rgba(5, 150, 105, 0.16) 50%, transparent 70%);
  filter: blur(65px);
  animation: orbDriftFinance 14s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

.feat-row--finance:hover {
  border-color: rgba(16, 185, 129, 0.68);
  box-shadow: 
    0 45px 105px -20px rgba(16, 185, 129, 0.45),
    0 0 45px rgba(16, 185, 129, 0.28),
    inset 0 1px 2px 0 rgba(255, 255, 255, 0.65);
  transform: translateY(-5px);
}

/* ── 3. Developers Custom Frosted Glass Background ── */
.feat-row--dev {
  background: 
    radial-gradient(110% 130% at 85% 15%, rgba(99, 102, 241, 0.3) 0%, rgba(20, 30, 68, 0.72) 48%, rgba(8, 14, 34, 0.88) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(99, 102, 241, 0.35);
  box-shadow: 
    0 35px 85px -20px rgba(99, 102, 241, 0.32),
    0 16px 36px -10px rgba(0, 0, 0, 0.5),
    inset 0 1px 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -1px 1px 0 rgba(99, 102, 241, 0.2);
}

.feat-row--dev::before {
  content: '';
  position: absolute;
  top: 0;
  left: -20%;
  width: 140%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #818cf8, #6366f1, #3b82f6, transparent);
  animation: beamSweepDev 8s ease-in-out infinite alternate;
  z-index: 1;
}

.feat-row--dev::after {
  content: '';
  position: absolute;
  width: 480px;
  height: 480px;
  top: -80px;
  right: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.28) 0%, rgba(59, 130, 246, 0.16) 50%, transparent 70%);
  filter: blur(65px);
  animation: orbDriftDev 14s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

.feat-row--dev:hover {
  border-color: rgba(99, 102, 241, 0.68);
  box-shadow: 
    0 45px 105px -20px rgba(99, 102, 241, 0.45),
    0 0 45px rgba(99, 102, 241, 0.28),
    inset 0 1px 2px 0 rgba(255, 255, 255, 0.65);
  transform: translateY(-5px);
}

/* ── 4. Recurring Custom Frosted Glass Background ── */
.feat-row--recurring {
  background: 
    radial-gradient(110% 130% at 15% 15%, rgba(168, 85, 247, 0.3) 0%, rgba(36, 18, 68, 0.72) 48%, rgba(14, 8, 28, 0.88) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(168, 85, 247, 0.35);
  box-shadow: 
    0 35px 85px -20px rgba(168, 85, 247, 0.32),
    0 16px 36px -10px rgba(0, 0, 0, 0.5),
    inset 0 1px 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -1px 1px 0 rgba(168, 85, 247, 0.2);
}

.feat-row--recurring::before {
  content: '';
  position: absolute;
  top: 0;
  left: -20%;
  width: 140%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c084fc, #a855f7, #9333ea, transparent);
  animation: beamSweepRecurring 8s ease-in-out infinite alternate;
  z-index: 1;
}

.feat-row--recurring::after {
  content: '';
  position: absolute;
  width: 480px;
  height: 480px;
  top: -80px;
  left: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, rgba(147, 51, 234, 0.16) 50%, transparent 70%);
  filter: blur(65px);
  animation: orbDriftRecurring 14s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

.feat-row--recurring:hover {
  border-color: rgba(168, 85, 247, 0.68);
  box-shadow: 
    0 45px 105px -20px rgba(168, 85, 247, 0.45),
    0 0 45px rgba(168, 85, 247, 0.28),
    inset 0 1px 2px 0 rgba(255, 255, 255, 0.65);
  transform: translateY(-5px);
}

/* ── Background Motion Keyframes ── */
@keyframes beamSweepCommerce {
  0% { transform: translateX(-35%); opacity: 0.5; }
  50% { transform: translateX(15%); opacity: 1; }
  100% { transform: translateX(45%); opacity: 0.5; }
}

@keyframes beamSweepFinance {
  0% { transform: translateX(45%); opacity: 0.5; }
  50% { transform: translateX(-15%); opacity: 1; }
  100% { transform: translateX(-35%); opacity: 0.5; }
}

@keyframes beamSweepDev {
  0% { transform: translateX(-35%); opacity: 0.5; }
  50% { transform: translateX(15%); opacity: 1; }
  100% { transform: translateX(45%); opacity: 0.5; }
}

@keyframes beamSweepRecurring {
  0% { transform: translateX(45%); opacity: 0.5; }
  50% { transform: translateX(-15%); opacity: 1; }
  100% { transform: translateX(-35%); opacity: 0.5; }
}

@keyframes orbDriftCommerce {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, 35px) scale(1.15); }
  100% { transform: translate(35px, -25px) scale(0.95); }
}

@keyframes orbDriftFinance {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(45px, -35px) scale(1.15); }
  100% { transform: translate(-35px, 25px) scale(0.95); }
}

@keyframes orbDriftDev {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-45px, -30px) scale(1.18); }
  100% { transform: translate(40px, 25px) scale(0.92); }
}

@keyframes orbDriftRecurring {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(45px, 35px) scale(1.16); }
  100% { transform: translate(-30px, -35px) scale(0.94); }
}

/* ── Left Side (feat-copy) High Contrast & Distinct Glass Cards ── */
.feat-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.feat-visual {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feat-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 6px 15px;
  border-radius: 999px;
  background: rgba(27, 109, 224, 0.18);
  border: 1px solid rgba(56, 189, 248, 0.38);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 800;
  color: #38bdf8;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.feat-badge-pill.is-finance {
  background: rgba(16, 185, 129, 0.16);
  border-color: rgba(16, 185, 129, 0.38);
  color: #34d399;
}

.feat-badge-pill.is-dev {
  background: rgba(99, 102, 241, 0.16);
  border-color: rgba(99, 102, 241, 0.38);
  color: #818cf8;
}

.feat-badge-pill.is-recurring {
  background: rgba(168, 85, 247, 0.16);
  border-color: rgba(168, 85, 247, 0.38);
  color: #c084fc;
}

.feat-copy h3 {
  font-size: clamp(1.6rem, 2.8vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.34;
  margin-bottom: 16px;
  color: #ffffff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.85);
}

.feat-lead {
  font-size: 1.04rem;
  color: #f1f5f9;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 24px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.65);
}

/* Feature bullet specs: High-contrast individual frosted glass cards */
.feat-specs-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.feat-spec-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.94rem;
  color: #f8fafc;
  line-height: 1.65;
  background: rgba(10, 20, 40, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.feat-spec-item:hover {
  background: rgba(10, 20, 40, 0.85);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -6px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.25);
}

.feat-spec-item span[data-i18n] {
  color: #ffffff;
  font-weight: 500;
}

.feat-row--commerce .feat-spec-item {
  border-color: rgba(56, 189, 248, 0.3);
  background: rgba(6, 18, 40, 0.65);
}
.feat-row--commerce .feat-spec-item:hover {
  border-color: rgba(56, 189, 248, 0.55);
}
.feat-row--commerce .feat-spec-item strong {
  color: #38bdf8;
  font-weight: 800;
  text-shadow: 0 0 10px rgba(56, 189, 248, 0.35);
}

.feat-row--finance .feat-spec-item {
  border-color: rgba(16, 185, 129, 0.3);
  background: rgba(4, 22, 16, 0.65);
}
.feat-row--finance .feat-spec-item:hover {
  border-color: rgba(16, 185, 129, 0.55);
}
.feat-row--finance .feat-spec-item strong {
  color: #34d399;
  font-weight: 800;
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.35);
}

.feat-row--dev .feat-spec-item {
  border-color: rgba(99, 102, 241, 0.3);
  background: rgba(10, 16, 38, 0.65);
}
.feat-row--dev .feat-spec-item:hover {
  border-color: rgba(99, 102, 241, 0.55);
}
.feat-row--dev .feat-spec-item strong {
  color: #818cf8;
  font-weight: 800;
  text-shadow: 0 0 10px rgba(99, 102, 241, 0.35);
}

.feat-row--recurring .feat-spec-item {
  border-color: rgba(168, 85, 247, 0.3);
  background: rgba(18, 10, 36, 0.65);
}
.feat-row--recurring .feat-spec-item:hover {
  border-color: rgba(168, 85, 247, 0.55);
}
.feat-row--recurring .feat-spec-item strong {
  color: #c084fc;
  font-weight: 800;
  text-shadow: 0 0 10px rgba(168, 85, 247, 0.35);
}

.spec-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.18);
  color: #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.25);
}

.spec-check.is-finance {
  background: rgba(16, 185, 129, 0.18);
  color: #34d399;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.25);
}

.spec-check.is-dev {
  background: rgba(99, 102, 241, 0.18);
  color: #818cf8;
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.25);
}

.spec-check.is-recurring {
  background: rgba(168, 85, 247, 0.18);
  color: #c084fc;
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.25);
}

.feat-foot-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 0.76rem;
  color: #cbd5e1;
  font-weight: 600;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.feat-sla-badge {
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.25);
  padding: 3px 10px;
  border-radius: 6px;
}

.feat-sla-badge.is-finance {
  color: #34d399;
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.25);
}

.feat-sla-badge.is-dev {
  color: #818cf8;
  background: rgba(99, 102, 241, 0.12);
  border-color: rgba(99, 102, 241, 0.25);
}

.feat-sla-badge.is-recurring {
  color: #c084fc;
  background: rgba(168, 85, 247, 0.12);
  border-color: rgba(168, 85, 247, 0.25);
}

/* Feature 1: Smart Payment Link Live Card */
.feat-widget-link {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: 
    0 2px 4px rgba(15, 23, 42, 0.03),
    0 12px 32px -8px rgba(15, 23, 42, 0.07),
    0 28px 64px -15px rgba(27, 109, 224, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  color: var(--text);
  position: relative;
  overflow: hidden;
}

.widget-head-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.widget-live-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  color: var(--primary-dark);
  font-weight: 700;
}

.widget-live-tag .pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.6);
  animation: pulseGlow 1.8s infinite;
}

.widget-badge-secure {
  font-family: var(--mono);
  font-size: 0.68rem;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: 4px;
  color: var(--text-secondary);
}

.link-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  margin-bottom: 18px;
}

.link-url-text {
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.btn-copy-link {
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 999px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  border: none;
  flex-shrink: 0;
}

.btn-copy-link:hover {
  background: var(--primary-dark);
  transform: scale(1.04);
}

.btn-copy-link.is-copied {
  background: #059669;
}

.link-preview-box {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 14px;
  box-shadow: 0 4px 14px -4px rgba(15, 23, 42, 0.05);
}

.link-qr-wrap {
  position: relative;
  width: 86px;
  height: 86px;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.link-qr-wrap svg {
  width: 100%;
  height: 100%;
  color: #0f172a;
}

.link-details-col {
  flex: 1;
  min-width: 0;
}

.link-item-title {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.link-item-amount {
  font-family: var(--mono);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
}

.cur-tag {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

.link-pay-chips {
  display: flex;
  gap: 6px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.pay-chip {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 5px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.link-foot-action {
  font-size: 0.74rem;
  color: var(--text-muted);
  text-align: center;
  padding-top: 6px;
  font-weight: 500;
}

/* Feature 2: Executive Fintech Wallet & Balances Widget */
.feat-widget-wallet {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: 
    0 2px 4px rgba(15, 23, 42, 0.03),
    0 12px 32px -8px rgba(15, 23, 42, 0.07),
    0 28px 64px -15px rgba(16, 185, 129, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  color: var(--text);
}

.wallet-top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.wallet-header-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wallet-org-name {
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--text);
}

.wallet-acct-num {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  padding: 2px 7px;
  border-radius: 4px;
}

.wallet-live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: #059669;
  font-weight: 700;
}

.dot-ping--emerald {
  background: #10b981;
}

.wallet-balances-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.w-bal-card {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  transition: all 0.2s ease;
}

.w-bal-card:hover {
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.w-bal-card.is-avail {
  background: rgba(16, 185, 129, 0.06);
  border-color: rgba(16, 185, 129, 0.25);
}

.w-bal-card.is-pending {
  background: rgba(245, 158, 11, 0.06);
  border-color: rgba(245, 158, 11, 0.22);
}

.w-bal-card.is-reserved {
  background: rgba(99, 102, 241, 0.06);
  border-color: rgba(99, 102, 241, 0.22);
}

.w-bal-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.w-bal-card.is-avail .w-bal-label { color: #059669; }
.w-bal-card.is-pending .w-bal-label { color: #d97706; }
.w-bal-card.is-reserved .w-bal-label { color: #4f46e5; }

.w-bal-val {
  font-family: var(--mono);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
}

.w-bal-card.is-avail .w-bal-val {
  color: #059669;
  font-size: 1.25rem;
}

.w-bal-subtext {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.trend-up {
  color: #059669;
  font-weight: 700;
}

.wallet-ledger-stream {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.ledger-stream-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}

.ledger-stream-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  padding-block: 4px;
}

.ledger-stream-row:not(:last-child) {
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
}

.ledger-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.ledger-name-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ledger-title {
  color: var(--text);
  font-weight: 600;
  font-size: 0.82rem;
}

.ledger-chip {
  font-family: var(--mono);
  font-size: 0.65rem;
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 1px 6px;
  border-radius: 4px;
  color: var(--text-muted);
}

.ledger-time {
  font-size: 0.68rem;
  color: var(--text-muted);
}

.ledger-badge-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

.ledger-badge-icon.in { background: rgba(16, 185, 129, 0.12); color: #059669; }
.ledger-badge-icon.out { background: rgba(244, 63, 94, 0.12); color: #e11d48; }

.ledger-amount-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.ledger-amount-pos {
  font-family: var(--mono);
  font-weight: 800;
  color: #059669;
  font-size: 0.88rem;
}

.ledger-amount-neg {
  font-family: var(--mono);
  font-weight: 800;
  color: #e11d48;
  font-size: 0.88rem;
}

.ledger-status-tag {
  font-size: 0.62rem;
  font-weight: 600;
  padding: 1px 5px;
  border-radius: 3px;
}

.ledger-status-tag.ok {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}

.ledger-status-tag.out {
  background: rgba(244, 63, 94, 0.1);
  color: #e11d48;
}

.wallet-bottom-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
}

.wallet-progress-col {
  flex: 1;
}

.progress-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-bottom: 5px;
}

.progress-track {
  height: 6px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: #10b981;
  border-radius: 999px;
}

.btn-wallet-action {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #059669;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-wallet-action:hover {
  background: #10b981;
  color: #ffffff;
}

/* Feature 3: Developer Terminal Webhooks Visual */
.feat-widget-terminal {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: 
    0 2px 4px rgba(15, 23, 42, 0.03),
    0 12px 32px -8px rgba(15, 23, 42, 0.07),
    0 28px 64px -15px rgba(27, 109, 224, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  overflow: hidden;
  font-family: var(--mono);
}

.terminal-top-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: #f8fafc;
  border-bottom: 1px solid var(--border);
  font-size: 0.72rem;
  color: var(--text-muted);
}

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

.terminal-dots-row span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #10b981; }

.terminal-title-center {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.72rem;
}

.terminal-status-live {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.68rem;
}

.dot-ping--cyan {
  background: #06b6d4;
}

.terminal-tabs-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border);
}

.term-tab {
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 6px;
  color: var(--text-muted);
  cursor: pointer;
  background: transparent;
  transition: all 0.2s ease;
}

.term-tab.is-active {
  background: #ffffff;
  color: var(--primary-dark);
  font-weight: 700;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.term-env-badge {
  margin-inline-start: auto;
  font-size: 0.62rem;
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
}

.terminal-events-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.term-event-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.75rem;
  transition: all 0.2s ease;
}

.term-event-row:hover {
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.term-event-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.term-status-code {
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 4px;
  font-size: 0.72rem;
  flex-shrink: 0;
}

.code-200 { background: rgba(16, 185, 129, 0.12); color: #059669; }
.code-201 { background: rgba(27, 109, 224, 0.12); color: var(--primary-dark); }

.term-event-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.term-event-name {
  color: var(--text);
  font-weight: 700;
  font-size: 0.8rem;
}

.term-event-payload {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.term-event-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  flex-shrink: 0;
}

.term-event-lat {
  color: var(--primary-dark);
  font-size: 0.68rem;
  font-weight: 700;
}

.term-hmac-badge {
  color: var(--text-muted);
  font-size: 0.62rem;
}

.term-footer-line {
  padding: 10px 16px;
  border-top: 1px solid var(--border);
  background: #f8fafc;
  color: var(--text-secondary);
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.term-prompt-sym {
  color: var(--primary);
  font-weight: 700;
}

.term-cmd {
  color: var(--text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.term-cursor {
  color: var(--primary);
  animation: blinkCursor 1s infinite;
}

@keyframes blinkCursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Feature 4: Subscriptions & Recurring Revenue Widget */
.feat-widget-sub {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: 
    0 2px 4px rgba(15, 23, 42, 0.03),
    0 12px 32px -8px rgba(15, 23, 42, 0.07),
    0 28px 64px -15px rgba(139, 92, 246, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  color: var(--text);
}

.sub-cycle-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.sub-cycle-pill {
  display: inline-flex;
  background: var(--bg-muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px;
  font-size: 0.75rem;
  font-weight: 600;
}

.cycle-btn {
  padding: 5px 14px;
  border-radius: 999px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  background: transparent;
  font-size: 0.75rem;
  font-weight: 600;
}

.cycle-btn.is-active {
  background: var(--primary);
  color: #fff;
  font-weight: 700;
}

.sub-mrr-tag {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: #7c3aed;
  background: rgba(139, 92, 246, 0.08);
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  display: flex;
  align-items: center;
  gap: 6px;
}

.mrr-num {
  font-weight: 800;
}

.mrr-sep {
  opacity: 0.5;
}

.sub-card-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 16px;
}

.sub-card-left {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.sub-plan-badge {
  font-size: 0.65rem;
  font-family: var(--mono);
  color: #7c3aed;
  text-transform: uppercase;
  font-weight: 700;
}

.sub-plan-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
}

.sub-plan-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 2px;
  margin-bottom: 8px;
}

.sub-plan-price {
  font-family: var(--mono);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text);
}

.sub-plan-cycle {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

.sub-features-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.sub-chip {
  font-size: 0.65rem;
  color: var(--text-secondary);
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 2px 7px;
  border-radius: 4px;
}

.sub-card-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.sub-active-badge {
  font-size: 0.72rem;
  color: #059669;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.badge-check {
  width: 14px;
  height: 14px;
  background: #10b981;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
}

.sub-next-date {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.sub-card-meta {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.sub-growth-strip {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
}

.sub-health-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.health-score {
  font-family: var(--mono);
  font-weight: 700;
  color: #059669;
}

.sub-health-bar {
  height: 6px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 8px;
}

.health-bar-fill {
  height: 100%;
  background: #10b981;
  border-radius: 999px;
}

.sub-subscribers-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--text-secondary);
}

.ui-log .ok { color: #059669; font-weight: 700; }

/* ── 3D Floating Space Cards (feat-compact-grid) ── */
.feat-compact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  perspective: 1200px;
}

.feat-compact {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: 
    0 4px 6px -1px rgba(15, 23, 42, 0.03),
    0 12px 28px -4px rgba(15, 23, 42, 0.08),
    0 24px 50px -10px rgba(27, 109, 224, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  position: relative;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform: translateZ(0);
}

.feat-compact:hover {
  transform: translateY(-9px) translateZ(10px) scale(1.02);
  border-color: rgba(27, 109, 224, 0.28);
  box-shadow: 
    0 8px 16px rgba(15, 23, 42, 0.05),
    0 22px 44px -6px rgba(15, 23, 42, 0.12),
    0 40px 75px -12px rgba(27, 109, 224, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.feat-compact-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.feat-compact-icon {
  font-size: 1.25rem;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.feat-compact .feat-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-dark);
  background: rgba(27, 109, 224, 0.08);
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 0;
}

.feat-compact h4 {
  font-size: 0.96rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}

.feat-compact p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ── Activation + API Split ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 64px); align-items: start; }
.steps-activate { display: flex; flex-direction: column; gap: 0; }
.step-item {
  display: grid; grid-template-columns: 36px 1fr; gap: 14px 18px;
  padding-bottom: 22px; position: relative;
}
.step-item:not(:last-child)::before {
  content: ""; position: absolute; top: 36px; inset-inline-start: 17px; bottom: 0;
  width: 2px; background: var(--border-strong);
}
.step-item .n {
  width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--mono); font-size: 0.78rem; font-weight: 800;
  border: 1px solid var(--border-strong); color: var(--primary); background: var(--bg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.step-item h4 { font-size: 0.94rem; font-weight: 700; margin-bottom: 4px; }
.step-item p { font-size: 0.84rem; color: var(--text-secondary); line-height: 1.55; }

.activate-h {
  display: none; grid-template-columns: repeat(5, 1fr); gap: 10px;
  margin-bottom: 36px; position: relative;
}
.activate-h::before {
  content: ""; position: absolute; top: 18px; inset-inline: 5%; height: 2px;
  background: var(--border-strong); z-index: 0;
}
.activate-h-item { text-align: center; position: relative; z-index: 1; }
.activate-h-item .n {
  width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--mono); font-size: 0.76rem; font-weight: 800; margin: 0 auto 8px;
  background: var(--bg); border: 2px solid var(--border-strong); color: var(--primary);
  transition: all 0.25s ease;
}
.activate-h-item:hover .n { border-color: var(--primary); transform: scale(1.1); }
.activate-h-item span { font-size: 0.74rem; font-weight: 600; color: var(--text-secondary); display: block; line-height: 1.35; }

/* ── Modern API Terminal Console ── */
.api-panel {
  border: 1px solid #1e293b; border-radius: var(--radius-xl);
  overflow: hidden; background: #0b1329; color: #e2e8f0;
  box-shadow: 0 24px 60px -10px rgba(0, 0, 0, 0.4);
}
.api-tabs-bar {
  display: flex; align-items: center; justify-content: space-between;
  background: #070d1e; border-bottom: 1px solid #1e293b; padding: 8px 16px;
}
.api-lang-tabs { display: flex; gap: 4px; }
.api-tab-btn {
  padding: 4px 10px; font-family: var(--mono); font-size: 0.72rem; font-weight: 700;
  border-radius: 6px; color: #64748b; transition: var(--t);
}
.api-tab-btn.is-active { background: #1e293b; color: #38bdf8; }
.api-tab-btn:hover:not(.is-active) { color: #cbd5e1; }

.api-head {
  display: flex; align-items: center; gap: 10px; padding: 12px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08); direction: ltr;
}
.api-method { font-family: var(--mono); font-size: 0.72rem; font-weight: 800; color: #34d399; }
.api-path { font-family: var(--mono); font-size: 0.78rem; color: #94a3b8; flex: 1; }
.api-copy {
  font-size: 0.74rem; font-weight: 600; padding: 5px 12px; border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.15); color: #cbd5e1; transition: var(--t);
}
.api-copy:hover { background: rgba(255,255,255,0.08); }
.api-copy.is-ok { color: #34d399; border-color: #34d399; }
.api-pre {
  padding: 18px; font-family: var(--mono); font-size: 0.78rem; line-height: 1.75;
  direction: ltr; text-align: left; overflow-x: auto;
}
.api-pre .ck { color: #7dd3fc; }
.api-pre .cs { color: #86efac; }
.api-pre .cn { color: #fcd34d; }
.code-line { opacity: 0; transform: translateY(4px); transition: opacity 0.3s ease, transform 0.3s ease; }
.code-line.is-on { opacity: 1; transform: none; }
.cursor-blink { animation: blink 1s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }
.api-response {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 14px 18px; direction: ltr; text-align: left;
  background: rgba(15, 23, 42, 0.6);
}
.api-response-label {
  font-family: var(--mono); font-size: 0.68rem; color: #64748b; margin-bottom: 6px;
  display: flex; justify-content: space-between;
}
.api-response-label span { color: #34d399; font-weight: 700; }
.api-response pre { font-family: var(--mono); font-size: 0.74rem; color: #94a3b8; line-height: 1.6; }
.api-foot {
  padding: 14px 18px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
}
.api-foot p { font-size: 0.8rem; color: #64748b; }
.api-docs { font-size: 0.8rem; font-weight: 600; color: #7dd3fc; }
.api-docs:hover { text-decoration: underline; }

/* ── FAQ ── */
.faq { max-width: 760px; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--border); transition: var(--t); }
.faq summary {
  padding: 20px 0; font-size: 1rem; font-weight: 600; cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 1.25rem; color: var(--primary); font-weight: 400; flex-shrink: 0;
  transition: transform 0.25s ease;
}
.faq details[open] summary::after { content: "−"; transform: rotate(180deg); }
.faq .ans { padding: 0 0 20px; font-size: 0.92rem; color: var(--text-secondary); line-height: 1.7; }

/* ── CTA ── */
.cta-band {
  padding: clamp(56px, 9vw, 84px) 0;
  text-align: center; border-top: 1px solid var(--border);
  position: relative;
}
.cta-band h2 { font-size: clamp(1.65rem, 3.2vw, 2.3rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 14px; }
.cta-band p { color: var(--text-secondary); font-size: 1rem; max-width: 50ch; margin: 0 auto 28px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ── Footer ── */
.site-footer {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 44px;
  padding-block: 48px; border-top: 1px solid var(--border);
}
.foot-brand { font-size: 1.3rem; font-weight: 800; margin-bottom: 12px; display: inline-block; }
.foot-brand span { color: var(--primary); }
.foot-brand-col p { font-size: 0.86rem; color: var(--text-secondary); line-height: 1.65; max-width: 38ch; margin-bottom: 14px; }
.foot-mail { display: inline-flex; align-items: center; gap: 8px; font-size: 0.86rem; color: var(--text-secondary); }
.foot-mail svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.foot-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.foot-cols h5 { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px; }
.foot-cols .links { display: flex; flex-direction: column; gap: 10px; }
.foot-cols a { font-size: 0.86rem; color: var(--text-secondary); transition: var(--t); }
.foot-cols a:hover { color: var(--primary); }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
  padding-block: 20px 28px; font-size: 0.82rem; color: var(--text-muted);
  border-top: 1px solid var(--border);
}
.foot-status { display: inline-flex; align-items: center; gap: 8px; color: var(--text-secondary); }
.foot-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--success); }

/* ── Utilities & Reveals ── */
.to-top {
  position: fixed; bottom: 24px; inset-inline-end: 24px; width: 42px; height: 42px;
  border: 1px solid var(--border-strong); border-radius: var(--radius-sm);
  background: #fff; color: var(--text); display: grid; place-items: center;
  opacity: 0; pointer-events: none; transform: translateY(10px); transition: var(--t); z-index: 90;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.to-top.is-show { opacity: 1; pointer-events: auto; transform: none; }
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  transition-delay: var(--d, 0s);
}
html.js-ready .reveal:not(.is-in) {
  opacity: 0;
  transform: translateY(20px);
}
html.js-ready .reveal.is-in {
  opacity: 1;
  transform: none;
}
.hero-copy, .hero-visual-wrapper {
  opacity: 1 !important;
  transform: none !important;
}
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── Responsive Rules ── */
@media (min-width: 901px) {
  .flow-vertical { display: none !important; }
  .flow-grid-interactive { display: grid !important; }
  .pipeline-beam-svg { display: block !important; }
  .trust-list { display: none; }
  .trust-strip-items { display: flex; }
  .activate-h { display: grid; }
  .steps-activate { display: none; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .menu-btn { display: inline-flex; }
  .nav-actions .btn-ghost { display: none !important; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-copy { text-align: start; max-width: none; }
  .hero .lede { max-width: none; }
  .pipeline-beam-svg { display: none !important; }
  .flow-grid-interactive { display: none !important; }
  .flow-vertical { display: flex !important; }
  .trust-strip-items { display: none; }
  .trust-list { display: flex; }
  .methods-editorial { grid-template-columns: repeat(2, 1fr); }
  .method-cell:nth-child(3n) { border-inline-end: 1px solid var(--border); }
  .method-cell:nth-child(2n) { border-inline-end: none; }
  .method-cell:nth-last-child(-n+3) { border-bottom: 1px solid var(--border); }
  .method-cell:nth-last-child(-n+2) { border-bottom: none; }
  .audience-grid { grid-template-columns: 1fr; gap: 0; }
  .audience-item { border-inline-end: none; border-bottom: 1px solid var(--border); padding: 22px 0; }
  .audience-item:last-child { border-bottom: none; }
  .feat-row, .feat-row--reverse { grid-template-columns: 1fr; gap: 24px; }
  .feat-row--reverse .feat-copy, .feat-row--reverse .feat-visual { order: unset; }
  .feat-compact-grid { grid-template-columns: 1fr; gap: 16px; }
  .split { grid-template-columns: 1fr; }
  .activate-h { display: none; }
  .steps-activate { display: flex; }
  .site-footer { grid-template-columns: 1fr; }
  .shot-nav { flex-direction: column; }
  .shot-tab { min-width: 0; border-bottom: 1px solid var(--border); border-inline-end: none; }
  .shot-tab.is-active { border-bottom-color: var(--primary); }
  .hero-floating-pill-2 { inset-inline-start: 10px; }
}

@media (max-width: 640px) {
  .methods-editorial { grid-template-columns: 1fr; }
  .method-cell { border-inline-end: none !important; border-bottom: 1px solid var(--border) !important; }
  .method-cell:last-child { border-bottom: none !important; }
  .hero-cta .btn { flex: 1; min-width: 140px; }
  .foot-cols { grid-template-columns: 1fr; }
  .card-number { font-size: 0.95rem; letter-spacing: 0.12em; }
}

@media (prefers-reduced-motion: reduce) {
  *, .reveal, .marquee-track, .beam-energy, .aurora-orb {
    animation: none !important; transition-duration: 0s !important; scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
