/* ============================================================
   GMC Auditor — Marketing Page CSS
   Design system: deep navy bg, indigo/violet gradient, Inter font
   ============================================================ */

/* ---------- Custom Properties ---------- */
:root {
  --bg-base:        #080C18;
  --bg-surface:     rgba(255, 255, 255, 0.04);
  --bg-surface-md:  rgba(255, 255, 255, 0.07);
  --bg-surface-hi:  rgba(255, 255, 255, 0.10);
  --border-subtle:  rgba(255, 255, 255, 0.08);
  --border-mid:     rgba(255, 255, 255, 0.14);

  --primary-start:  #6366F1;
  --primary-end:    #8B5CF6;
  --accent-pink:    #EC4899;
  --accent-green:   #10B981;
  --accent-amber:   #F59E0B;
  --accent-red:     #EF4444;

  --text-heading:   #F1F5F9;
  --text-body:      #94A3B8;
  --text-muted:     #64748B;
  --text-white:     #FFFFFF;

  --grad-text:      linear-gradient(135deg, var(--primary-start), var(--primary-end), var(--accent-pink));
  --grad-btn:       linear-gradient(135deg, var(--primary-start), var(--primary-end));
  --grad-green-btn: linear-gradient(135deg, #059669, var(--accent-green));

  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --shadow-card:  0 4px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow:  0 0 40px rgba(99, 102, 241, 0.25);

  --transition-fast:   0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset scoped to marketing page ---------- */
.mkt-page *,
.connect-page * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.mkt-page,
.connect-page {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg-base);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Import Inter from Google Fonts (loaded via preconnect in base.html) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================================
   ANIMATED BACKGROUND MESH
   ============================================================ */
.mkt-bg {
  /* Removed 2026-05-29: the fixed mesh + floating orbs created a translucent
     wash over the whole viewport that dimmed every section, including white
     ones. Body bg #0B0F19 still handles the dark base for dark sections. */
  display: none;
}

.mkt-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(99, 102, 241, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(139, 92, 246, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse 70% 40% at 50% 80%, rgba(236, 72, 153, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 40% 30% at 90% 70%, rgba(16, 185, 129, 0.06) 0%, transparent 50%);
  animation: meshShift 20s ease-in-out infinite alternate;
}

@keyframes meshShift {
  0%   { opacity: 1; transform: scale(1) rotate(0deg); }
  50%  { opacity: 0.8; transform: scale(1.05) rotate(1deg); }
  100% { opacity: 1; transform: scale(1.02) rotate(-0.5deg); }
}

/* Floating orbs */
.mkt-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  animation: orbFloat 12s ease-in-out infinite;
}
.mkt-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #6366F1 0%, transparent 70%);
  top: -200px; left: -150px;
  animation-delay: 0s;
}
.mkt-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #EC4899 0%, transparent 70%);
  top: 30%; right: -180px;
  animation-delay: -4s;
}
.mkt-orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #8B5CF6 0%, transparent 70%);
  bottom: 20%; left: 20%;
  animation-delay: -8s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -40px) scale(1.05); }
  66%       { transform: translate(-20px, 20px) scale(0.95); }
}

/* ============================================================
   NAV
   ============================================================ */
.mkt-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 68px;
  transition: background var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

.mkt-nav.scrolled {
  background: rgba(8, 12, 24, 0.82);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: var(--border-subtle);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.mkt-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-heading);
  letter-spacing: -0.02em;
}

.mkt-nav-logo-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--grad-btn);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  box-shadow: 0 0 16px rgba(99, 102, 241, 0.5);
}

.mkt-nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

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

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

.mkt-nav-cta {
  text-decoration: none;
  padding: 9px 22px;
  background: var(--grad-btn);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 8px;
  transition: opacity var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35);
}

.mkt-nav-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(99, 102, 241, 0.5);
}

/* Hamburger (mobile) */
.mkt-nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.mkt-nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-heading);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.mkt-nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mkt-nav-hamburger.open span:nth-child(2) { opacity: 0; }
.mkt-nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mkt-nav-mobile {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(8, 12, 24, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1.5rem 5%;
  border-bottom: 1px solid var(--border-subtle);
  z-index: 999;
  flex-direction: column;
  gap: 1.25rem;
}

.mkt-nav-mobile.open { display: flex; }

.mkt-nav-mobile a {
  text-decoration: none;
  color: var(--text-body);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-subtle);
  transition: color var(--transition-fast);
}

.mkt-nav-mobile a:hover { color: var(--text-heading); }

/* ============================================================
   COMMON SECTION STYLES
   ============================================================ */
.mkt-section {
  position: relative;
  z-index: 1;
  padding: 100px 5%;
}

.mkt-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.mkt-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #818CF8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.mkt-section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.mkt-section-sub {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 560px;
  line-height: 1.7;
}

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

.mkt-text-center .mkt-section-sub {
  margin: 0 auto;
}

/* Gradient text utility */
.grad {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* Failsafe: if JS doesn't run or motion is reduced, never leave content invisible. */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
.no-js .reveal { opacity: 1; transform: none; }

/* ============================================================
   HERO
   ============================================================ */
.mkt-hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 5% 80px;
}

.mkt-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

/* Left column */
.mkt-hero-content {}

.mkt-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #818CF8;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.mkt-hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #818CF8;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

.mkt-hero-h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900;
  color: var(--text-heading);
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 1.4rem;
}

.mkt-hero-sub {
  font-size: 1.1rem;
  color: var(--text-body);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2.2rem;
}

/* Hero form */
.mkt-hero-form {
  display: flex;
  gap: 10px;
  margin-bottom: 1rem;
  max-width: 480px;
}

.mkt-hero-form-input {
  flex: 1;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-md);
  color: var(--text-heading);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
}

.mkt-hero-form-input::placeholder {
  color: var(--text-muted);
}

.mkt-hero-form-input:focus {
  border-color: var(--primary-start);
  background: rgba(99, 102, 241, 0.06);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.mkt-hero-form-btn {
  padding: 14px 24px;
  background: var(--grad-btn);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  white-space: nowrap;
  transition: opacity var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.mkt-hero-form-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.55);
}

.mkt-hero-trust {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.mkt-hero-trust-item {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.mkt-hero-trust-item::before {
  content: '✓';
  color: var(--accent-green);
  font-weight: 700;
}

/* Right column — Dashboard preview card */
.mkt-hero-visual {
  display: flex;
  justify-content: center;
}

.mkt-dashboard-card {
  width: 100%;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-xl);
  padding: 28px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  animation: cardFloat 6s ease-in-out infinite;
}

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

.mkt-dc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.mkt-dc-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-body);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mkt-dc-score-ring {
  position: relative;
  width: 72px; height: 72px;
}

.mkt-dc-score-ring svg {
  transform: rotate(-90deg);
  width: 72px; height: 72px;
}

.mkt-dc-score-ring-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 5;
}

.mkt-dc-score-ring-fill {
  fill: none;
  stroke: url(#scoreGrad);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 188;
  stroke-dashoffset: 50;
  animation: ringFill 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes ringFill {
  from { stroke-dashoffset: 188; }
  to   { stroke-dashoffset: 50; }
}

.mkt-dc-score-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.mkt-dc-score-num {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1;
}

.mkt-dc-score-label {
  font-size: 0.55rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Category bars */
.mkt-dc-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.mkt-dc-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mkt-dc-bar-label {
  font-size: 0.75rem;
  color: var(--text-body);
  width: 100px;
  flex-shrink: 0;
}

.mkt-dc-bar-track {
  flex: 1;
  height: 5px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  overflow: hidden;
}

.mkt-dc-bar-fill {
  height: 100%;
  border-radius: 100px;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.mkt-dc-bar-fill.good   { background: var(--accent-green); }
.mkt-dc-bar-fill.warn   { background: var(--accent-amber); }
.mkt-dc-bar-fill.danger { background: var(--accent-red); }

.mkt-dc-bar-pct {
  font-size: 0.7rem;
  color: var(--text-muted);
  width: 28px;
  text-align: right;
  flex-shrink: 0;
}

/* Audit items */
.mkt-dc-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mkt-dc-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
}

.mkt-dc-item-icon {
  width: 22px; height: 22px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.mkt-dc-item-icon.pass { background: rgba(16, 185, 129, 0.15); color: var(--accent-green); }
.mkt-dc-item-icon.fail { background: rgba(239, 68, 68, 0.15); color: var(--accent-red); }
.mkt-dc-item-icon.warn { background: rgba(245, 158, 11, 0.15); color: var(--accent-amber); }

.mkt-dc-item-text {
  flex: 1;
}

.mkt-dc-item-check {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 2px;
}

.mkt-dc-item-detail {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.mkt-dc-badge {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 100px;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.mkt-dc-badge.pass { background: rgba(16, 185, 129, 0.15); color: var(--accent-green); }
.mkt-dc-badge.fail { background: rgba(239, 68, 68, 0.15); color: var(--accent-red); }
.mkt-dc-badge.warn { background: rgba(245, 158, 11, 0.15); color: var(--accent-amber); }

/* ============================================================
   STATS BAR
   ============================================================ */
.mkt-stats-bar {
  position: relative;
  z-index: 1;
  padding: 0 5%;
  margin: -10px 0;
}

.mkt-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.mkt-stat {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid var(--border-subtle);
  transition: background var(--transition-fast);
}

.mkt-stat:last-child { border-right: none; }
.mkt-stat:hover { background: var(--bg-surface-md); }

.mkt-stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-heading);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mkt-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================================
   PROBLEMS SECTION
   ============================================================ */
.mkt-problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 3rem;
}

.mkt-problem-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth), background var(--transition-smooth);
  cursor: default;
}

.mkt-problem-card:hover {
  transform: translateY(-5px);
  border-color: rgba(239, 68, 68, 0.35);
  box-shadow: 0 8px 40px rgba(239, 68, 68, 0.12), var(--shadow-card);
  background: var(--bg-surface-md);
}

.mkt-problem-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
  display: block;
}

.mkt-problem-headline {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
  line-height: 1.35;
}

.mkt-problem-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.mkt-problem-card:nth-child(2):hover { border-color: rgba(245, 158, 11, 0.35); box-shadow: 0 8px 40px rgba(245, 158, 11, 0.10), var(--shadow-card); }
.mkt-problem-card:nth-child(3):hover { border-color: rgba(245, 158, 11, 0.35); box-shadow: 0 8px 40px rgba(245, 158, 11, 0.10), var(--shadow-card); }
.mkt-problem-card:nth-child(4):hover { border-color: rgba(239, 68, 68, 0.35); box-shadow: 0 8px 40px rgba(239, 68, 68, 0.10), var(--shadow-card); }
.mkt-problem-card:nth-child(5):hover { border-color: rgba(239, 68, 68, 0.35); box-shadow: 0 8px 40px rgba(239, 68, 68, 0.10), var(--shadow-card); }
.mkt-problem-card:nth-child(6):hover { border-color: rgba(245, 158, 11, 0.35); box-shadow: 0 8px 40px rgba(245, 158, 11, 0.10), var(--shadow-card); }

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.mkt-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 3rem;
}

.mkt-feature-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), background var(--transition-smooth);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.mkt-feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: var(--grad-btn);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.mkt-feature-card:hover::before {
  opacity: 1;
}

.mkt-feature-card:hover {
  transform: translateY(-4px);
  background: var(--bg-surface-md);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.15), var(--shadow-card);
}

.mkt-feature-icon-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(99, 102, 241, 0.15);
  color: #818CF8;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.mkt-feature-card:nth-child(2) .mkt-feature-icon-pill { background: rgba(139, 92, 246, 0.15); color: #A78BFA; }
.mkt-feature-card:nth-child(3) .mkt-feature-icon-pill { background: rgba(16, 185, 129, 0.15); color: var(--accent-green); }
.mkt-feature-card:nth-child(4) .mkt-feature-icon-pill { background: rgba(236, 72, 153, 0.15); color: var(--accent-pink); }
.mkt-feature-card:nth-child(5) .mkt-feature-icon-pill { background: rgba(245, 158, 11, 0.15); color: var(--accent-amber); }
.mkt-feature-card:nth-child(6) .mkt-feature-icon-pill { background: rgba(99, 102, 241, 0.15); color: #818CF8; }

.mkt-feature-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
  line-height: 1.3;
}

.mkt-feature-desc {
  font-size: 0.845rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.mkt-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 4rem;
  position: relative;
}

.mkt-how-grid::before {
  content: '';
  position: absolute;
  top: 30px;
  left: calc(16.66% + 30px);
  right: calc(16.66% + 30px);
  height: 2px;
  background: linear-gradient(90deg,
    var(--primary-start),
    var(--primary-end) 50%,
    rgba(99, 102, 241, 0.2) 100%);
  z-index: 0;
}

.mkt-how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.mkt-how-step-num {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--grad-btn);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 32px rgba(99, 102, 241, 0.45);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.mkt-how-step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 10px;
}

.mkt-how-step-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 250px;
}

/* ============================================================
   PLATFORM SECTION
   ============================================================ */
.mkt-platforms-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(5, 1fr);
  gap: 14px;
  margin-top: 3rem;
  align-items: stretch;
}

/* Shopify live card */
.mkt-platform-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.mkt-platform-card.live {
  border-color: rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.04);
}

.mkt-platform-card.live:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.15);
}

.mkt-platform-card.coming {
  opacity: 0.45;
  filter: blur(0.5px);
  cursor: not-allowed;
}

.mkt-platform-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

.mkt-platform-logo {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.02em;
}

.mkt-platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mkt-platform-badge.live {
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-green);
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.mkt-platform-badge.live::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-green);
  animation: pulse-dot 2s ease-in-out infinite;
}

.mkt-platform-badge.soon {
  background: rgba(100, 116, 139, 0.15);
  color: var(--text-muted);
  border: 1px solid rgba(100, 116, 139, 0.2);
}

.mkt-platform-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mkt-platform-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-body);
}

.mkt-platform-feature-item i {
  color: var(--accent-green);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.mkt-platform-card.coming .mkt-platform-logo {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.mkt-platform-coming-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.mkt-platform-coming-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.7;
}

.mkt-platforms-footnote {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.mkt-cta-section {
  padding: 100px 5%;
  position: relative;
  z-index: 1;
}

.mkt-cta-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.mkt-cta-h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--text-heading);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.mkt-cta-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.mkt-cta-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.mkt-cta-form input {
  flex: 1;
  max-width: 340px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-md);
  color: var(--text-heading);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.mkt-cta-form input::placeholder { color: var(--text-muted); }
.mkt-cta-form input:focus {
  border-color: var(--primary-start);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.mkt-cta-form button {
  padding: 15px 28px;
  background: var(--grad-btn);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  white-space: nowrap;
  transition: opacity var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: 0 4px 24px rgba(99, 102, 241, 0.45);
}

.mkt-cta-form button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.6);
}

/* ============================================================
   FOOTER
   ============================================================ */
.mkt-footer {
  position: relative;
  z-index: 1;
  padding: 40px 5% 32px;
  border-top: 1px solid var(--border-subtle);
  background: rgba(0, 0, 0, 0.2);
}

.mkt-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.mkt-footer-brand {}

.mkt-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-heading);
  margin-bottom: 6px;
}

.mkt-footer-logo-icon {
  width: 28px; height: 28px;
  border-radius: 7px;
  background: var(--grad-btn);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
}

.mkt-footer-tagline {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.mkt-footer-platform-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.mkt-footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.mkt-footer-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.83rem;
  transition: color var(--transition-fast);
}

.mkt-footer-links a:hover { color: var(--text-body); }

.mkt-footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: right;
  line-height: 1.5;
}

/* ============================================================
   DIVIDERS
   ============================================================ */
.mkt-divider {
  position: relative;
  z-index: 1;
  height: 1px;
  margin: 0 5%;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--border-subtle) 20%,
    var(--border-mid) 50%,
    var(--border-subtle) 80%,
    transparent 100%);
}

/* ============================================================
   CONNECT PAGE
   ============================================================ */
.connect-page {
  min-height: 100vh;
  background: var(--bg-base);
  display: flex;
  flex-direction: column;
}

/* Connect header */
.connect-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 20px 5%;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(8, 12, 24, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.connect-back {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--bg-surface-md);
  border: 1px solid var(--border-mid);
  color: var(--text-body);
  text-decoration: none;
  font-size: 0.9rem;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.connect-back:hover {
  background: var(--bg-surface-hi);
  color: var(--text-heading);
  transform: translateX(-2px);
}

.connect-header-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-heading);
}

.connect-header-logo-icon {
  width: 30px; height: 30px;
  border-radius: 7px;
  background: var(--grad-btn);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
}

/* Connect body layout */
.connect-body {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 5%;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

/* Connect background glow */
.connect-body::before {
  content: '';
  position: fixed;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Left form column */
.connect-form-col {
  flex: 0 0 560px;
  max-width: 560px;
  position: relative;
  z-index: 1;
}

.connect-domain-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-green);
  margin-bottom: 1.5rem;
}

.connect-domain-badge i {
  font-size: 0.75rem;
}

.connect-form-title {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.connect-form-sub {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 2.2rem;
}

.connect-form-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-xl);
  padding: 32px 30px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
}

.connect-field {
  margin-bottom: 1.5rem;
}

.connect-field:last-of-type {
  margin-bottom: 0;
}

.connect-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-body);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}

.connect-input-wrap {
  position: relative;
}

.connect-input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.85rem;
  pointer-events: none;
}

.connect-input {
  width: 100%;
  padding: 13px 14px 13px 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-md);
  color: var(--text-heading);
  font-size: 0.92rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
}

.connect-input::placeholder { color: var(--text-muted); }

.connect-input:focus {
  border-color: var(--primary-start);
  background: rgba(99, 102, 241, 0.06);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.connect-input.has-error {
  border-color: var(--accent-red);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.connect-btn {
  width: 100%;
  padding: 15px;
  background: var(--grad-btn);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: opacity var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: 0 4px 24px rgba(99, 102, 241, 0.4);
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
}

.connect-btn:hover:not(:disabled) {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.55);
}

.connect-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.connect-btn-spinner {
  display: none;
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.connect-btn.loading .connect-btn-text { display: none; }
.connect-btn.loading .connect-btn-spinner { display: block; }

@keyframes spin {
  to { transform: rotate(360deg); }
}

.connect-error {
  display: none;
  margin-top: 1rem;
  padding: 12px 16px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: var(--radius-sm);
  color: #FCA5A5;
  font-size: 0.85rem;
  line-height: 1.5;
}

.connect-error.show { display: block; }

/* Right info column */
.connect-info-col {
  flex: 0 0 340px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
  padding-top: 8px;
}

.connect-info-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.connect-info-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.connect-info-title i {
  color: #818CF8;
}

.connect-token-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.connect-token-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.connect-token-step-num {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.2);
  border: 1px solid rgba(99, 102, 241, 0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: #818CF8;
  flex-shrink: 0;
  margin-top: 1px;
}

.connect-token-step-text {
  font-size: 0.8rem;
  color: var(--text-body);
  line-height: 1.55;
}

.connect-token-step-text strong {
  color: var(--text-heading);
  font-weight: 600;
}

.connect-scope-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 6px;
}

.connect-scope-pill {
  padding: 3px 8px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 5px;
  font-size: 0.68rem;
  font-family: 'Menlo', 'Monaco', 'Courier New', monospace;
  color: #A5B4FC;
}

/* Security card */
.connect-security-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.8rem;
  color: var(--text-body);
  line-height: 1.5;
}

.connect-security-item:last-child { border-bottom: none; }

.connect-security-item i {
  color: var(--accent-green);
  font-size: 0.8rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .mkt-platforms-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .mkt-platforms-grid .mkt-platform-card.live {
    grid-column: span 3;
  }
}

@media (max-width: 900px) {
  .mkt-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mkt-hero-visual {
    order: -1;
  }

  .mkt-dashboard-card {
    max-width: 380px;
  }

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

  .mkt-how-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mkt-how-grid::before {
    display: none;
  }

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

  .mkt-stat:nth-child(2) { border-right: none; }
  .mkt-stat:nth-child(1),
  .mkt-stat:nth-child(2) { border-bottom: 1px solid var(--border-subtle); }

  .mkt-platforms-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mkt-platforms-grid .mkt-platform-card.live {
    grid-column: span 2;
  }

  .mkt-footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .mkt-footer-links {
    justify-content: center;
  }

  .mkt-footer-copy { text-align: center; }

  /* Connect page */
  .connect-body {
    flex-direction: column;
    align-items: center;
    padding: 40px 5%;
  }

  .connect-form-col,
  .connect-info-col {
    flex: none;
    max-width: 560px;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .mkt-nav-links,
  .mkt-nav-cta {
    display: none;
  }

  .mkt-nav-hamburger {
    display: flex;
  }

  .mkt-hero {
    padding: 100px 5% 60px;
    text-align: center;
  }

  .mkt-hero-form {
    flex-direction: column;
    max-width: 100%;
  }

  .mkt-hero-trust {
    justify-content: center;
  }

  .mkt-hero-sub {
    max-width: 100%;
  }

  .mkt-problems-grid,
  .mkt-features-grid {
    grid-template-columns: 1fr;
  }

  .mkt-section { padding: 70px 5%; }

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

  .mkt-cta-form {
    flex-direction: column;
    align-items: center;
  }

  .mkt-cta-form input {
    max-width: 100%;
    width: 100%;
  }

  .mkt-platforms-grid {
    grid-template-columns: 1fr;
  }
  .mkt-platforms-grid .mkt-platform-card.live {
    grid-column: span 1;
  }

  .mkt-footer-links {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

/* ── Testimonials ─────────────────────────────────────────── */
.mkt-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.mkt-testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.2s, transform 0.2s;
}
.mkt-testimonial-card:hover {
  border-color: rgba(99,102,241,0.35);
  transform: translateY(-3px);
}

.mkt-testimonial-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
}

.mkt-testimonial-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
  font-style: italic;
  flex: 1;
}

.mkt-testimonial-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-primary);
}
.mkt-testimonial-role {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── FAQ ──────────────────────────────────────────────────── */
.mkt-faq-list {
  max-width: 780px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mkt-faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.mkt-faq-item.open,
.mkt-faq-item:hover {
  border-color: rgba(99,102,241,0.35);
}

.mkt-faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  line-height: 1.45;
}
.mkt-faq-q i {
  flex-shrink: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: transform 0.25s;
}
.mkt-faq-item.open .mkt-faq-q i {
  transform: rotate(180deg);
}

.mkt-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.4rem;
}
.mkt-faq-item.open .mkt-faq-a {
  max-height: 400px;
  padding: 0 1.4rem 1.2rem;
}
.mkt-faq-a p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ── Responsive additions ─────────────────────────────────── */
@media (max-width: 900px) {
  .mkt-testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   LANDING VISUAL UPGRADE — added 2026-05-29
   Illustrations, product gallery, animated counters, fact cards
   ============================================================ */

/* ---- Animated stat counter ---- */
.mkt-stat-num.is-counting { font-variant-numeric: tabular-nums; }
.mkt-stat-source {
  font-size: 0.62rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.65;
}

/* ---- Inline SVG illustration container ---- */
.mkt-illust {
  width: 100%;
  max-width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
  background: linear-gradient(135deg, rgba(99,102,241,0.10), rgba(139,92,246,0.04));
  border-radius: 18px;
  border: 1px solid rgba(99,102,241,0.18);
  transition: transform 0.4s cubic-bezier(.2,.9,.3,1.1), box-shadow 0.3s;
}
.mkt-illust svg { width: 56px; height: 56px; display: block; }
.mkt-feature-card:hover .mkt-illust,
.mkt-step:hover .mkt-illust {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 28px -10px rgba(99,102,241,0.45);
}
.mkt-illust--lg { max-width: 120px; height: 120px; border-radius: 24px; }
.mkt-illust--lg svg { width: 80px; height: 80px; }

/* ---- Hero depth: floating fragment cards behind dashboard ---- */
.mkt-hero-visual { position: relative; }
.mkt-hero-fragment {
  position: absolute;
  background: linear-gradient(140deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 12px 14px;
  color: var(--text-body);
  font-size: 0.72rem;
  z-index: 0;
  pointer-events: none;
  animation: mktFragmentFloat 6s ease-in-out infinite;
}
.mkt-hero-fragment-1 {
  top: -30px;
  left: -40px;
  width: 160px;
  animation-delay: 0s;
}
.mkt-hero-fragment-2 {
  bottom: -20px;
  right: -30px;
  width: 180px;
  animation-delay: -3s;
}
.mkt-hero-fragment .mkt-hf-label {
  font-size: 0.6rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.mkt-hero-fragment .mkt-hf-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-heading);
  display: flex;
  align-items: center;
  gap: 6px;
}
.mkt-hero-fragment .mkt-hf-bar {
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.08);
  margin-top: 8px;
  overflow: hidden;
}
.mkt-hero-fragment .mkt-hf-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-start), var(--primary-end));
  border-radius: 2px;
}
.mkt-dashboard-card { position: relative; z-index: 1; }
@keyframes mktFragmentFloat {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50%      { transform: translateY(-8px) rotate(1deg); }
}
@media (max-width: 1100px) {
  .mkt-hero-fragment { display: none; }
}

/* ---- Light "window" card (browser frame, Linear/Vercel pattern) ---- */
.mkt-window-card {
  background: linear-gradient(180deg, #FAFBFF, #F2F4FB);
  border-radius: 14px;
  box-shadow: 0 24px 60px -20px rgba(99,102,241,0.50),
              0 0 0 1px rgba(255,255,255,0.06);
  overflow: hidden;
  color: #0A0F1C;
  font-family: -apple-system, "Segoe UI", system-ui, sans-serif;
}
.mkt-window-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: linear-gradient(180deg, #E8EBF4, #DEE1EE);
  border-bottom: 1px solid rgba(10,15,28,0.07);
}
.mkt-window-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #FF5F57;
  flex-shrink: 0;
}
.mkt-window-dot:nth-child(2) { background: #FEBC2E; }
.mkt-window-dot:nth-child(3) { background: #28C840; }
.mkt-window-url {
  flex: 1;
  margin-left: 14px;
  font-size: 0.72rem;
  color: #6B7280;
  background: rgba(255,255,255,0.7);
  border-radius: 6px;
  padding: 4px 10px;
  letter-spacing: 0.01em;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
}
.mkt-window-body { padding: 22px 22px 26px; min-height: 260px; }

/* ---- Gallery rotator ---- */
.mkt-gallery {
  position: relative;
  max-width: 880px;
  margin: 3rem auto 0;
}
.mkt-gallery-stage {
  position: relative;
  min-height: 420px;
}
.mkt-gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s, transform 0.6s;
  pointer-events: none;
}
.mkt-gallery-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mkt-gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.mkt-gallery-tab {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-body);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.mkt-gallery-tab:hover { background: var(--bg-surface-md); color: var(--text-heading); }
.mkt-gallery-tab.is-active {
  background: rgba(99,102,241,0.20);
  border-color: rgba(99,102,241,0.55);
  color: #C7CBFF;
}

/* ---- Mockup primitives used inside .mkt-window-body ---- */
.mw-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(10,15,28,0.06);
}
.mw-row:last-child { border-bottom: 0; }
.mw-row-label { font-size: 0.82rem; color: #1F2937; font-weight: 500; }
.mw-row-meta  { font-size: 0.7rem; color: #6B7280; }
.mw-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.66rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.mw-pill--pass { background: rgba(16,185,129,0.14); color: #047857; }
.mw-pill--warn { background: rgba(245,158,11,0.16); color: #B45309; }
.mw-pill--fail { background: rgba(239,68,68,0.14);  color: #B91C1C; }
.mw-section-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: #0A0F1C;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.mw-score-block {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 6px 0 16px;
}
.mw-score-ring {
  width: 78px;
  height: 78px;
  position: relative;
  flex-shrink: 0;
}
.mw-score-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: #6366F1;
}
.mw-score-meta { font-size: 0.78rem; color: #4B5563; line-height: 1.55; }
.mw-bar-row {
  display: grid;
  grid-template-columns: 110px 1fr 36px;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
}
.mw-bar-label { font-size: 0.74rem; color: #374151; }
.mw-bar-track {
  height: 6px;
  background: rgba(10,15,28,0.07);
  border-radius: 3px;
  overflow: hidden;
}
.mw-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #6366F1, #8B5CF6);
  border-radius: 3px;
}
.mw-bar-pct { font-size: 0.7rem; color: #6B7280; text-align: right; font-weight: 600; }
.mw-checklist-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(10,15,28,0.05);
}
.mw-checklist-row:last-child { border-bottom: 0; }
.mw-toggle {
  width: 32px;
  height: 18px;
  background: #6366F1;
  border-radius: 9px;
  position: relative;
  flex-shrink: 0;
}
.mw-toggle::after {
  content:'';
  position: absolute;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  top: 2px;
  right: 2px;
}
.mw-toggle--off { background: #D1D5DB; }
.mw-toggle--off::after { right: auto; left: 2px; }
.mw-docx-page {
  border: 1px solid rgba(10,15,28,0.10);
  border-radius: 6px;
  padding: 16px 18px;
  background: #fff;
  box-shadow: 0 8px 18px -10px rgba(10,15,28,0.15);
}
.mw-docx-line {
  height: 6px;
  background: rgba(10,15,28,0.08);
  border-radius: 2px;
  margin-bottom: 9px;
}
.mw-docx-line--heading { height: 10px; width: 60%; background: rgba(99,102,241,0.40); margin-bottom: 14px; }
.mw-docx-line--short { width: 75%; }
.mw-docx-line--shorter { width: 55%; }

/* ---- Fact card (replaces fake testimonials) ---- */
.mkt-fact-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.6rem;
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
}
.mkt-fact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(99,102,241,0.40);
  background: var(--bg-surface-md);
}
.mkt-fact-num {
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0.4rem 0 0.2rem;
}
.mkt-fact-suffix {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-body);
  margin-left: 3px;
  -webkit-text-fill-color: var(--text-body);
}
.mkt-fact-title {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.4rem;
}
.mkt-fact-desc {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.55;
}
.mkt-fact-source {
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 0.9rem;
  font-family: ui-monospace, "SF Mono", monospace;
  opacity: 0.7;
}
.mkt-facts-footnote {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2rem;
  font-style: italic;
}

/* ---- CTA section motion ---- */
.mkt-cta-section { overflow: hidden; }
.mkt-cta-orb {
  /* Removed 2026-05-29 — same wash problem as .mkt-bg. */
  display: none;
}
.mkt-cta-orb-1 {
  width: 320px; height: 320px;
  background: var(--primary-start);
  top: -80px; left: -60px;
  animation: mktOrbDrift1 14s ease-in-out infinite;
}
.mkt-cta-orb-2 {
  width: 280px; height: 280px;
  background: var(--accent-pink);
  bottom: -100px; right: -40px;
  animation: mktOrbDrift2 16s ease-in-out infinite;
}
.mkt-cta-inner { position: relative; z-index: 1; }
@keyframes mktOrbDrift1 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(40px, 20px) scale(1.1); }
}
@keyframes mktOrbDrift2 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(-30px, -25px) scale(1.08); }
}

/* ---- Steps illustration (how it works) ---- */
.mkt-step { display: flex; flex-direction: column; align-items: center; text-align: center; }
.mkt-step .mkt-illust { margin-bottom: 1rem; }

/* ---- Responsive ---- */
@media (max-width: 760px) {
  .mkt-gallery-stage { min-height: 480px; }
  .mw-bar-row { grid-template-columns: 90px 1fr 30px; gap: 8px; }
  .mkt-fact-num { font-size: 2.2rem; }
}

/* ============================================================
   LIGHT-SECTION VARIANT — added 2026-05-29 (round 2)
   Overrides all colors/surfaces when .mkt-section--light is on
   a section element. Lets us alternate dark and light bands.
   ============================================================ */
.mkt-section--light {
  background: #FFFFFF;
  color: #1F2937;
  position: relative;
  isolation: isolate;
}
.mkt-section--light::before {
  /* Removed muddy radial overlay 2026-05-29 — was killing card contrast. */
  display: none;
}
.mkt-section--light > * { position: relative; z-index: 1; }

/* Headings + body */
.mkt-section--light .mkt-section-title,
.mkt-section--light .mkt-feature-name,
.mkt-section--light .mkt-how-step-title,
.mkt-section--light .mkt-fact-title,
.mkt-section--light .mkt-problem-headline,
.mkt-section--light .mkt-faq-q {
  color: #0B1124;
}
.mkt-section--light .mkt-section-sub,
.mkt-section--light .mkt-feature-desc,
.mkt-section--light .mkt-how-step-desc,
.mkt-section--light .mkt-fact-desc,
.mkt-section--light .mkt-problem-desc,
.mkt-section--light .mkt-faq-a p {
  color: #4B5563;
}
.mkt-section--light .mkt-fact-source,
.mkt-section--light .mkt-facts-footnote {
  color: #6B7280;
}
.mkt-section--light .mkt-fact-suffix { -webkit-text-fill-color: #6B7280; color: #6B7280; }

/* Eyebrow label pill */
.mkt-section--light .mkt-section-label {
  background: rgba(99,102,241,0.10);
  color: #4F46E5;
  border-color: rgba(99,102,241,0.20);
}

/* Cards on light bg — strengthened 2026-05-29 so white cards lift off white section bg */
.mkt-section--light .mkt-feature-card,
.mkt-section--light .mkt-problem-card,
.mkt-section--light .mkt-fact-card,
.mkt-section--light .mkt-faq-item,
.mkt-section--light .mkt-how-step {
  background: #FFFFFF;
  border: 1px solid #D1D5DB;
  box-shadow: 0 4px 12px rgba(10,15,28,0.06),
              0 1px 3px rgba(10,15,28,0.04);
}
.mkt-section--light .mkt-feature-card:hover,
.mkt-section--light .mkt-fact-card:hover,
.mkt-section--light .mkt-problem-card:hover {
  border-color: rgba(99,102,241,0.55);
  background: #FFFFFF;
  box-shadow: 0 18px 36px -16px rgba(99,102,241,0.35),
              0 4px 12px rgba(10,15,28,0.06);
}

/* Illustrations on light bg */
.mkt-section--light .mkt-illust {
  background: linear-gradient(135deg, rgba(99,102,241,0.10), rgba(139,92,246,0.06));
  border-color: rgba(99,102,241,0.18);
}

/* FAQ icon + chevron on light */
.mkt-section--light .mkt-faq-q i { color: #6B7280; }

/* Step numbers on light */
.mkt-section--light .mkt-how-step-num {
  color: #FFFFFF;
}

/* Mockup window cards in light section — flatten the heavy shadow */
.mkt-section--light .mkt-window-card {
  box-shadow: 0 18px 50px -22px rgba(10,15,28,0.25),
              0 0 0 1px rgba(10,15,28,0.06);
}

/* Divider visibility on light — only fade the divider itself, never the section.
   The selector `.mkt-divider + .mkt-section--light` previously hit the *section*
   (sibling selectors target the second element), turning every light section
   that followed a divider down to opacity 0.45 — i.e. the entire viewport wash. */
.mkt-section--light + .mkt-divider {
  opacity: 0.45;
}

/* Problem card icon contrast on light bg */
.mkt-section--light .mkt-problem-icon {
  filter: none;
}

/* ============================================================
   "BUILT FOR OPERATORS" SECTION
   ============================================================ */
.mkt-operators-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}
.mkt-operator-photo {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 60px -20px rgba(99,102,241,0.35),
              0 0 0 1px rgba(10,15,28,0.06);
  background: #EEF1FA;
}
.mkt-operator-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mkt-operator-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 50%, rgba(99,102,241,0.20));
  pointer-events: none;
}
.mkt-operator-overlay {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 0.78rem;
  font-weight: 600;
  color: #0B1124;
}
.mkt-operator-overlay i { color: #10B981; }
.mkt-operator-points { margin: 1.6rem 0; padding: 0; list-style: none; }
.mkt-operator-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.55;
}
.mkt-operator-points li i {
  color: #6366F1;
  margin-top: 4px;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.mkt-operator-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-btn);
  color: #FFFFFF;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  transition: transform 0.15s, box-shadow 0.2s;
}
.mkt-operator-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px -10px rgba(99,102,241,0.50);
}
@media (max-width: 900px) {
  .mkt-operators-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
  .mkt-operator-photo { aspect-ratio: 5 / 4; max-width: 480px; margin: 0 auto; }
}

/* ============================================================
   HERO TRUST THUMBNAIL ROW
   ============================================================ */
.mkt-hero-trust-people {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.mkt-hero-trust-stack {
  display: flex;
  position: relative;
}
.mkt-hero-trust-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg-base);
  overflow: hidden;
  margin-left: -10px;
  background: var(--bg-surface);
  flex-shrink: 0;
}
.mkt-hero-trust-avatar:first-child { margin-left: 0; }
.mkt-hero-trust-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   VERTICALS STOREFRONT GRID
   ============================================================ */
.mkt-verticals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
  margin-top: 3rem;
}
.mkt-vertical-card {
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #E5E7EB;
  box-shadow: 0 12px 28px -16px rgba(10,15,28,0.18);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.mkt-vertical-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -16px rgba(99,102,241,0.28);
}
.mkt-vertical-chrome {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 9px 12px;
  background: linear-gradient(180deg, #E8EBF4, #DEE1EE);
  border-bottom: 1px solid rgba(10,15,28,0.06);
}
.mkt-vertical-chrome .mkt-window-dot { width: 9px; height: 9px; }
.mkt-vertical-chrome .mkt-window-url {
  font-size: 0.66rem;
  margin-left: 10px;
}
.mkt-vertical-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #F3F4F6;
}
.mkt-vertical-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.mkt-vertical-card:hover .mkt-vertical-photo img { transform: scale(1.04); }
.mkt-vertical-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #FFFFFF;
}
.mkt-vertical-name {
  font-size: 0.98rem;
  font-weight: 700;
  color: #0B1124;
}
.mkt-vertical-focus {
  font-size: 0.78rem;
  color: #4B5563;
  line-height: 1.5;
}
.mkt-vertical-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(99,102,241,0.10);
  color: #4F46E5;
  font-size: 0.66rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  align-self: flex-start;
  margin-top: 4px;
}
