/* Stripe-inspired visual enhancements */

/* Gradient overlays - adds subtle depth to sections */
.gradient-overlay {
  position: relative;
}

.gradient-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,140,0,0.015) 0%, transparent 40%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.gradient-overlay > * {
  position: relative;
  z-index: 1;
}

/* Dark mode gradient overlay - more subtle to avoid visible box */
.dark .gradient-overlay::before {
  background: linear-gradient(180deg, rgba(20,184,166,0.008) 0%, transparent 40%, transparent 100%);
}

/* Diagonal lines pattern - Stripe signature */
.diagonal-lines {
  position: relative;
  background-image: 
    linear-gradient(135deg, rgba(255,140,0,0.05) 1px, transparent 1px),
    linear-gradient(225deg, rgba(255,140,0,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: 0 0, 30px 30px;
}

.dark .diagonal-lines {
  background-image: 
    linear-gradient(135deg, rgba(20,184,166,0.05) 1px, transparent 1px),
    linear-gradient(225deg, rgba(20,184,166,0.05) 1px, transparent 1px);
}

/* Grid pattern - subtle sophistication */
.grid-pattern {
  position: relative;
  background-image: 
    linear-gradient(rgba(0,0,0,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.015) 1px, transparent 1px);
  background-size: 32px 32px;
}

.dark .grid-pattern {
  background-image: 
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
}

/* Fade-in animation on scroll */
/* Progressive enhancement: visible by default, JS adds animation */
.fade-in-section {
  opacity: 1;
  transform: translateY(0);
}

/* When JS controller is ready, prepare elements for animation */
[data-controller="scroll-animations"] .fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-section.fade-in-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation delays */
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* Hover glow effect - premium feel */
.hover-glow {
  position: relative;
  transition: all 0.3s ease;
}

.hover-glow::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,140,0,0.4), rgba(255,140,0,0));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  filter: blur(12px);
}

.hover-glow:hover::after {
  opacity: 1;
}

.dark .hover-glow::after {
  background: linear-gradient(135deg, rgba(20,184,166,0.4), rgba(20,184,166,0));
}

/* Product screenshot lift effect - Stripe signature */
.product-screenshot {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.product-screenshot:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 20px 40px -12px rgba(0,0,0,0.15),
    0 0 0 1px rgba(255,140,0,0.1),
    0 0 60px -10px rgba(255,140,0,0.2);
}

.dark .product-screenshot:hover {
  box-shadow: 
    0 20px 40px -12px rgba(0,0,0,0.4),
    0 0 0 1px rgba(20,184,166,0.2),
    0 0 60px -10px rgba(20,184,166,0.3);
}

/* Animated numbers */
.animated-number {
  font-variant-numeric: tabular-nums;
  transition: all 0.3s ease;
}

/* Section divider lines - elegant transitions */
.section-divider {
  position: relative;
}

.section-divider::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  max-width: 400px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
}

.dark .section-divider::after {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

/* Feature card enhanced hover */
.feature-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -10px rgba(0,0,0,0.1);
}

.dark .feature-card:hover {
  box-shadow: 0 12px 24px -10px rgba(0,0,0,0.3);
}

/* Pulse animation for CTA */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 
                0 2px 4px -1px rgba(0, 0, 0, 0.06),
                0 0 0 0 rgba(255,140,0,0.4);
  }
  50% {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 
                0 4px 6px -2px rgba(0, 0, 0, 0.05),
                0 0 0 8px rgba(255,140,0,0);
  }
}

.pulse-on-load {
  animation: pulse-glow 2s ease-in-out 3;
}

/* Smooth reveal from bottom */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  animation: revealUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

/* Subtle shine effect on hover */
.shine-effect {
  position: relative;
  overflow: hidden;
}

.shine-effect::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}

.shine-effect:hover::before {
  left: 100%;
}

/* Floating animation for decorative elements */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

/* Text gradient effect - Stripe style */
.text-gradient {
  background: linear-gradient(135deg, var(--color-brand-primary), var(--color-brand-secondary), var(--color-brand-primary));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Progress bar animation */
.progress-bar {
  position: relative;
  overflow: hidden;
  background: rgba(0,0,0,0.05);
  border-radius: 9999px;
}

.dark .progress-bar {
  background: rgba(255,255,255,0.05);
}

/* Frontpage redesign */
.marketing-hero-shell {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(203, 213, 225, 0.95);
  background:
    radial-gradient(circle at top left, rgba(20, 184, 166, 0.08), transparent 24%),
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.06), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(248, 250, 252, 0.98) 100%);
  box-shadow:
    0 20px 60px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  padding: 2rem;
}

.marketing-hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.55), transparent 85%);
  pointer-events: none;
}

.marketing-hero-shell > * {
  position: relative;
  z-index: 1;
}

.marketing-eyebrow-pill,
.marketing-subtle-pill,
.marketing-proof-pill,
.marketing-flag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

.marketing-eyebrow-pill {
  border: 1px solid rgba(15, 118, 110, 0.16);
  background: rgba(20, 184, 166, 0.1);
  color: #115e59;
  padding: 0.75rem 1rem;
}

.marketing-subtle-pill {
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(255, 255, 255, 0.72);
  color: #334155;
  padding: 0.75rem 1rem;
}

.marketing-proof-pill,
.marketing-flag-pill {
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(255, 255, 255, 0.72);
  color: #334155;
  padding: 0.875rem 1rem;
  backdrop-filter: blur(12px);
}

.marketing-proof-pill svg {
  color: #0f766e;
}

.marketing-flag-pill:hover {
  border-color: rgba(15, 118, 110, 0.22);
  color: #0f172a;
}

.marketing-answer-capsule {
  max-width: 48rem;
  border: 1px solid rgba(203, 213, 225, 0.9);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  color: #475569;
  line-height: 1.75;
  padding: 1.25rem 1.5rem;
  backdrop-filter: blur(16px);
}

.marketing-answer-capsule strong {
  color: #0f172a;
}

.marketing-browser-frame {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(203, 213, 225, 0.9);
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    0 20px 48px rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.5);
}

.marketing-browser-topbar {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(248, 250, 252, 0.98);
  padding: 0.65rem 0.85rem;
}

.marketing-browser-url {
  flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.96);
  color: #64748b;
  font-size: 0.6875rem;
  line-height: 1;
  padding: 0.45rem 0.75rem;
}

.marketing-browser-body {
  background: #f8fafc;
}

.dark .marketing-browser-body {
  background: #0f172a;
}

.marketing-stat-card {
  border: 1px solid rgba(203, 213, 225, 0.88);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 1.25rem;
  backdrop-filter: blur(16px);
}

.marketing-stat-value {
  color: #0f172a;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.marketing-stat-label {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-top: 0.35rem;
}

.marketing-stat-strip {
  background: rgba(203, 213, 225, 0.88);
  border: 1px solid rgba(203, 213, 225, 0.88);
  border-radius: 16px;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
}

.marketing-stat-item {
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.98);
  display: flex;
  gap: 0.75rem;
  padding: 1rem 1.125rem;
}

.marketing-stat-icon {
  color: #0f766e;
  flex-shrink: 0;
  height: 1.25rem;
  margin-top: 0.15rem;
  width: 1.25rem;
}

.marketing-stat-value-compact {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.marketing-stat-label-compact {
  color: #475569;
  font-size: 0.8125rem;
  line-height: 1.45;
  margin-top: 0.2rem;
}

.marketing-ecosystem-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.95));
  border: 1px solid rgba(203, 213, 225, 0.85);
  border-radius: 24px;
  padding: 1.75rem 1.5rem;
}

.marketing-ecosystem-eyebrow {
  color: #0f766e;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.marketing-logo-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.marketing-logo-chip {
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(203, 213, 225, 0.9);
  border-radius: 14px;
  color: #334155;
  display: inline-flex;
  font-size: 0.875rem;
  font-weight: 600;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.5rem 0.875rem;
}

.marketing-ecosystem-panel .marketing-integration-logo-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
}

.marketing-logo-row {
  border: 1px solid rgba(203, 213, 225, 0.85);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.95));
  padding: 1.5rem;
}

.marketing-integration-row {
  border: 1px solid rgba(203, 213, 225, 0.82);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  padding: 1.5rem;
}

.marketing-integration-logo-grid {
  display: grid;
  gap: 1.25rem 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.25rem;
}

.marketing-integration-logo {
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(203, 213, 225, 0.9);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  min-height: 2.75rem;
  opacity: 1;
  padding: 0.5rem 0.875rem;
}

.marketing-integration-logo img {
  display: block;
  filter: grayscale(1);
  max-height: 1.75rem;
  max-width: 100%;
  opacity: 0.88;
}

.dark .marketing-logo-row {
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.55));
}

.dark .marketing-integration-row {
  background: rgba(15, 23, 42, 0.66);
}

.marketing-section-label,
.marketing-proof-eyebrow {
  color: #0f766e;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dark .marketing-section-label,
.dark .marketing-proof-eyebrow {
  color: #5eead4;
}

.marketing-inline-proof {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  padding-top: 1rem;
}

.marketing-inline-proof svg {
  color: #0f766e;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.dark .marketing-inline-proof svg {
  color: #5eead4;
}

.marketing-inline-proof h3 {
  color: #111827;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.dark .marketing-inline-proof h3 {
  color: white;
}

.marketing-inline-proof p {
  color: #6b7280;
  line-height: 1.7;
  margin: 0.25rem 0 0;
}

.dark .marketing-inline-proof p {
  color: #cbd5e1;
}

.marketing-proof-card,
.marketing-faq-card {
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 24px;
  background: white;
  box-shadow: 0 16px 50px rgba(15, 23, 42, 0.06);
}

.dark .marketing-proof-card,
.dark .marketing-faq-card {
  background: rgba(15, 23, 42, 0.72);
  box-shadow: 0 16px 50px rgba(2, 6, 23, 0.18);
}

.marketing-proof-card {
  padding: 1.75rem;
}

.marketing-proof-card h3 {
  color: #111827;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0.9rem 0 0;
}

.dark .marketing-proof-card h3 {
  color: white;
}

.marketing-proof-card p {
  color: #6b7280;
  line-height: 1.75;
  margin: 1rem 0 0;
}

.dark .marketing-proof-card p {
  color: #cbd5e1;
}

.marketing-trust-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(203, 213, 225, 0.95);
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(34, 197, 94, 0.06), transparent 18%),
    radial-gradient(circle at top left, rgba(20, 184, 166, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(248, 250, 252, 0.97) 100%);
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

.marketing-trust-card,
.marketing-link-panel {
  border: 1px solid rgba(203, 213, 225, 0.9);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 1.25rem;
}

.marketing-trust-rail {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.marketing-badge-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
}

.marketing-badge-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 6.5rem;
}

.marketing-badge-item img {
  height: auto;
  max-width: 100%;
  max-height: 6.25rem;
}

.marketing-trust-card h3 {
  color: #0f172a;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.marketing-trust-card p {
  color: #475569;
  line-height: 1.7;
  margin: 0.6rem 0 0;
}

.marketing-link-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.marketing-link-panel-compact {
  margin-left: auto;
  margin-right: auto;
  max-width: 18.5rem;
}

.marketing-link-panel-muted {
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(203, 213, 225, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  padding: 0.9rem 1rem;
}

.marketing-link-panel a {
  color: #0f172a;
}

.marketing-link-panel a:hover {
  color: #0f766e;
}

.marketing-faq-trigger {
  width: 100%;
  align-items: center;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: flex;
  font-size: 1.125rem;
  font-weight: 600;
  justify-content: space-between;
  padding: 1.5rem;
  text-align: left;
}

.marketing-faq-trigger:hover {
  background: rgba(148, 163, 184, 0.04);
}

.marketing-faq-trigger:focus-visible {
  outline: 2px solid #14b8a6;
  outline-offset: -2px;
}

.marketing-final-cta {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(203, 213, 225, 0.95);
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(20, 184, 166, 0.08), transparent 24%),
    radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.06), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 250, 252, 0.96));
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
  padding: 2.5rem;
  text-align: center;
}

.marketing-device-stage {
  display: grid;
  gap: 1.5rem;
}

.marketing-device-heading {
  display: grid;
  gap: 0.75rem;
}

.marketing-device-overline {
  color: #0f766e;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin: 0;
  text-transform: uppercase;
}

.marketing-device-heading h3 {
  color: #111827;
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0;
}

.marketing-device-caption {
  color: #475569;
  line-height: 1.7;
  margin: 0;
  max-width: 26rem;
}

.marketing-device-render {
  align-items: center;
  background: transparent;
  display: flex;
  isolation: isolate;
  justify-content: center;
  min-height: 28rem;
  padding: 1rem 1.5rem 0;
  position: relative;
}

.marketing-device-render::before {
  background:
    radial-gradient(circle at 50% 30%, rgba(148, 163, 184, 0.34), transparent 45%),
    radial-gradient(circle at 50% 78%, rgba(15, 23, 42, 0.18), transparent 52%);
  border-radius: 999px;
  content: "";
  filter: blur(34px);
  inset: 14% 18% 4%;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.marketing-device-render img {
  display: block;
  filter: drop-shadow(0 28px 42px rgba(15, 23, 42, 0.28));
  height: auto;
  margin: 0 auto;
  max-width: min(19rem, 100%);
  position: relative;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  width: 100%;
  z-index: 1;
}

.marketing-device-stage:hover .marketing-device-render img {
  filter:
    drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15))
    drop-shadow(0 0 0 rgba(255, 140, 0, 0.1))
    drop-shadow(0 0 30px rgba(255, 140, 0, 0.2));
  transform: translateY(-12px) scale(1.02);
}

.marketing-site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  margin-top: 2rem;
}

.marketing-footer-shell {
  padding: 0;
}

.marketing-footer-panel {
  display: grid;
  gap: 1.5rem;
}

.marketing-footer-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.marketing-footer-brand {
  display: grid;
  gap: 1.25rem;
}

.marketing-footer-kicker {
  color: #0f766e;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin: 0;
  text-transform: uppercase;
}

.marketing-footer-title {
  color: #0f172a;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
}

.marketing-footer-summary {
  color: #475569;
  line-height: 1.7;
  margin: 0;
  max-width: 38rem;
}

.marketing-footer-groups {
  display: grid;
  gap: 1.5rem;
}

.marketing-footer-group {
  display: grid;
  gap: 0.85rem;
}

.marketing-footer-heading {
  color: #0f766e;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
}

.marketing-footer-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.marketing-footer-link {
  color: #334155;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.2s ease;
}

.marketing-footer-link-with-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
}

.marketing-footer-link-meta {
  color: #64748b;
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.3;
}

.marketing-footer-link:hover {
  color: #0f172a;
}

.marketing-footer-meta {
  display: grid;
  gap: 0.75rem;
  border-top: 1px solid rgba(203, 213, 225, 0.7);
  padding-top: 1rem;
}

.marketing-footer-languages {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

.marketing-footer-legal {
  color: #64748b;
  font-size: 0.78rem;
  line-height: 1.8;
  border-top: 1px solid rgba(203, 213, 225, 0.7);
  margin: 0;
  padding-top: 1rem;
}

.marketing-hero-shell h1,
.marketing-trust-shell h2,
.marketing-final-cta h2 {
  color: #0f172a;
}

.marketing-hero-shell p:not(.marketing-stat-label),
.marketing-trust-shell p:not(.marketing-section-label),
.marketing-final-cta p:not(.marketing-section-label) {
  color: #475569;
}

.marketing-hero-shell a.text-sm {
  color: #334155;
}

.marketing-hero-shell a.text-sm:hover {
  color: #0f172a;
}

.dark .marketing-hero-shell {
  background:
    radial-gradient(circle at top left, rgba(20, 184, 166, 0.2), transparent 28%),
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.98) 0%, rgba(15, 23, 42, 0.94) 100%);
  box-shadow:
    0 32px 80px rgba(2, 6, 23, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.dark .marketing-hero-shell::before {
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
}

.dark .marketing-eyebrow-pill {
  border: 1px solid rgba(20, 184, 166, 0.35);
  background: rgba(20, 184, 166, 0.12);
  color: #ccfbf1;
}

.dark .marketing-subtle-pill {
  background: rgba(255, 255, 255, 0.05);
  color: #e2e8f0;
}

.dark .marketing-proof-pill,
.dark .marketing-flag-pill {
  background: rgba(15, 23, 42, 0.45);
  color: #e2e8f0;
}

.dark .marketing-proof-pill svg {
  color: #5eead4;
}

.dark .marketing-flag-pill:hover {
  border-color: rgba(94, 234, 212, 0.35);
  color: white;
}

.dark .marketing-answer-capsule {
  background: rgba(255, 255, 255, 0.04);
  color: #cbd5e1;
}

.dark .marketing-answer-capsule strong {
  color: white;
}

.dark .marketing-browser-frame {
  background: rgba(15, 23, 42, 0.9);
  box-shadow:
    0 24px 80px rgba(15, 23, 42, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.03);
}

.dark .marketing-browser-topbar {
  background: rgba(2, 6, 23, 0.82);
}

.dark .marketing-browser-url {
  background: rgba(15, 23, 42, 0.9);
  color: #94a3b8;
}

.dark .marketing-stat-card {
  background: rgba(255, 255, 255, 0.05);
}

.dark .marketing-stat-value {
  color: white;
}

.dark .marketing-stat-label {
  color: #94a3b8;
}

.dark .marketing-stat-strip {
  background: rgba(51, 65, 85, 0.65);
  border-color: rgba(51, 65, 85, 0.65);
}

.dark .marketing-stat-item {
  background: rgba(15, 23, 42, 0.92);
}

.dark .marketing-stat-icon {
  color: #5eead4;
}

.dark .marketing-stat-value-compact {
  color: #f8fafc;
}

.dark .marketing-stat-label-compact {
  color: #94a3b8;
}

.dark .marketing-ecosystem-panel {
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.72));
  border-color: rgba(51, 65, 85, 0.75);
}

.dark .marketing-ecosystem-eyebrow {
  color: #5eead4;
}

.dark .marketing-logo-chip {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(148, 163, 184, 0.24);
  color: #0f172a;
}

.dark .marketing-trust-shell {
  background:
    radial-gradient(circle at top right, rgba(34, 197, 94, 0.12), transparent 22%),
    radial-gradient(circle at top left, rgba(20, 184, 166, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.98) 0%, rgba(17, 24, 39, 0.96) 100%);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.22);
}

.dark .marketing-trust-card,
.dark .marketing-link-panel {
  background: rgba(255, 255, 255, 0.05);
}

.dark .marketing-link-panel-muted {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(148, 163, 184, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.dark .marketing-integration-logo {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 14px;
  box-shadow:
    0 14px 32px rgba(2, 6, 23, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  min-height: 3.25rem;
  opacity: 1;
  padding: 0.5rem 1rem;
}

.dark .marketing-integration-logo img {
  filter: none;
  opacity: 1;
}

.dark .marketing-trust-card h3 {
  color: white;
}

.dark .marketing-trust-card p {
  color: #cbd5e1;
}

.dark .marketing-link-panel a {
  color: white;
}

.dark .marketing-link-panel a:hover {
  color: #99f6e4;
}

.dark .marketing-final-cta {
  background:
    radial-gradient(circle at top left, rgba(20, 184, 166, 0.22), transparent 28%),
    radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.92));
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.22);
}

.dark .marketing-device-overline {
  color: #5eead4;
}

.dark .marketing-device-heading h3 {
  color: white;
}

.dark .marketing-device-caption {
  color: #cbd5e1;
}

.dark .marketing-device-render::before {
  background:
    radial-gradient(circle at 50% 28%, rgba(45, 212, 191, 0.16), transparent 42%),
    radial-gradient(circle at 50% 82%, rgba(15, 23, 42, 0.54), transparent 58%);
}

.dark .marketing-device-stage:hover .marketing-device-render img {
  filter:
    drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4))
    drop-shadow(0 0 0 rgba(20, 184, 166, 0.2))
    drop-shadow(0 0 30px rgba(20, 184, 166, 0.3));
}

.dark .marketing-site-footer {
  border-top-color: rgba(51, 65, 85, 0.72);
}

.dark .marketing-footer-title {
  color: white;
}

.dark .marketing-footer-summary,
.dark .marketing-footer-languages,
.dark .marketing-footer-legal {
  color: #cbd5e1;
}

.dark .marketing-footer-link {
  color: #e2e8f0;
}

.dark .marketing-footer-link-meta {
  color: #94a3b8;
}

.dark .marketing-footer-link:hover {
  color: white;
}

.dark .marketing-footer-meta {
  border-top-color: rgba(51, 65, 85, 0.78);
}

.dark .marketing-footer-legal {
  border-top-color: rgba(51, 65, 85, 0.78);
}

.dark .marketing-hero-shell h1,
.dark .marketing-trust-shell h2,
.dark .marketing-final-cta h2 {
  color: white;
}

.dark .marketing-hero-shell p:not(.marketing-stat-label),
.dark .marketing-trust-shell p:not(.marketing-section-label),
.dark .marketing-final-cta p:not(.marketing-section-label) {
  color: #cbd5e1;
}

.dark .marketing-hero-shell a.text-sm {
  color: #cbd5e1;
}

.dark .marketing-hero-shell a.text-sm:hover {
  color: white;
}

@media (min-width: 768px) {
  .marketing-stat-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .marketing-ecosystem-panel {
    padding: 2rem 2.25rem;
  }

  .marketing-ecosystem-panel .marketing-integration-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .marketing-hero-shell,
  .marketing-trust-shell,
  .marketing-final-cta {
    border-radius: 24px;
    padding: 1.5rem;
  }

  .marketing-badge-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .marketing-badge-item img {
    max-height: 5.5rem;
  }

  .marketing-integration-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .marketing-footer-shell {
    padding: 0;
  }

  .marketing-device-render img {
    max-width: min(18rem, 84vw);
  }
}

@media (min-width: 1024px) {
  .marketing-integration-logo-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .marketing-footer-grid {
    grid-template-columns: minmax(0, 1.45fr) minmax(18rem, 0.8fr);
  }

  .marketing-footer-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .fade-in-section,
  [data-controller="scroll-animations"] .fade-in-section,
  .product-screenshot,
  .hover-glow,
  .shine-effect::before,
  .reveal-up,
  .text-gradient,
  .float-animation {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .marketing-device-render img,
  .marketing-device-stage:hover .marketing-device-render img {
    filter: drop-shadow(0 28px 42px rgba(15, 23, 42, 0.28)) !important;
    transform: none !important;
    transition: none !important;
  }
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-brand-primary), var(--color-brand-secondary));
  border-radius: inherit;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.progress-fill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .fade-in-section,
  .product-screenshot,
  .feature-card,
  .hover-glow,
  .shine-effect,
  .float-animation,
  .text-gradient,
  .progress-fill {
    animation: none !important;
    transition: none !important;
  }
  
  .fade-in-section {
    opacity: 1;
    transform: none;
  }
}

