/* ===========================
   itemIQ Landing Page
   Blue theme — inspired by ToDesktop + Hyros
   =========================== */

:root {
  /* Brand blues from logo */
  --blue-100: #e8f4fd;
  --blue-200: #b8dff5;
  --blue-300: #7cc8ed;
  --blue-400: #5bc0eb;
  --blue-500: #3a9fd4;
  --blue-600: #2b7caa;
  --blue-700: #1e5f85;
  --blue-800: #143f5a;
  --blue-900: #0b2640;
  --blue-950: #061525;

  /* Accent — the darker "IQ" blue */
  --accent: #2d6da3;
  --accent-light: #3a8cc7;
  --accent-dark: #1f4f7a;

  /* Cyan from the "item" part */
  --cyan: #5bc0eb;
  --cyan-light: #8dd6f2;
  --cyan-dark: #3aa4d1;

  /* Neutrals */
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  /* Semantic */
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;

  /* Typography */
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing */
  --section-pad: clamp(80px, 10vw, 140px);
  --container-max: 1200px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

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

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

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

@keyframes orbMove2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-25px, 20px) scale(0.95); }
  66% { transform: translate(20px, -10px) scale(1.05); }
}

@keyframes flowDots {
  0% { opacity: 0; transform: translateX(-4px); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: translateX(4px); }
}

.animate-in {
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease-out) forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.35s; }
.delay-4 { animation-delay: 0.5s; }
.delay-5 { animation-delay: 0.65s; }
.delay-6 { animation-delay: 0.85s; }

[data-scroll] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
[data-scroll].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   NAV
   =========================== */
.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 32px);
  max-width: 880px;
  animation: fadeIn 0.6s var(--ease-out) 0.1s both;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  box-shadow:
    0 1px 3px rgba(11, 38, 64, 0.06),
    0 8px 24px rgba(11, 38, 64, 0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  overflow: visible;
}

.logo-img {
  height: 32px;
  width: auto;
  overflow: visible;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.2s;
  letter-spacing: -0.01em;
}

.nav-links a:hover {
  color: var(--blue-700);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 16px;
  right: 16px;
  z-index: 999;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 12px 40px rgba(11, 38, 64, 0.12);
  flex-direction: column;
  gap: 4px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-link {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
  transition: background 0.2s;
}

.mobile-link:hover {
  background: var(--blue-100);
}

/* ===========================
   BUTTONS
   =========================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--accent) 100%);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  border-radius: 12px;
  letter-spacing: -0.01em;
  transition: all 0.25s var(--ease-out);
  box-shadow: 0 2px 8px rgba(43, 124, 170, 0.25);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(43, 124, 170, 0.35);
  background: linear-gradient(135deg, var(--cyan-dark) 0%, var(--accent-dark) 100%);
}


.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: transparent;
  color: var(--gray-700);
  font-weight: 600;
  font-size: 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
  letter-spacing: -0.01em;
  transition: all 0.25s var(--ease-out);
}

.btn-outline:hover {
  border-color: var(--blue-400);
  color: var(--blue-700);
  background: var(--blue-50, #eff8ff);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: 10px;
  transition: all 0.2s;
}

.btn-ghost:hover {
  color: var(--gray-800);
  background: var(--gray-100);
}

.btn-sm { padding: 8px 18px; font-size: 13px; border-radius: 10px; }
.btn-lg { padding: 14px 30px; font-size: 15px; border-radius: 14px; }
.btn-block { width: 100%; justify-content: center; text-align: center; }

/* ===========================
   SECTION HELPERS
   =========================== */
.section-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  color: var(--blue-900);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  padding: calc(80px + var(--section-pad)) 0 80px;
  overflow: hidden;
  background: var(--blue-950);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(91, 192, 235, 0.25) 0%, transparent 70%);
  top: -15%;
  left: -10%;
  animation: orbMove1 12s ease-in-out infinite;
}

.hero-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(45, 109, 163, 0.3) 0%, transparent 70%);
  top: 10%;
  right: -5%;
  animation: orbMove2 15s ease-in-out infinite;
}

.hero-orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(91, 192, 235, 0.15) 0%, transparent 70%);
  bottom: 20%;
  left: 30%;
  animation: orbMove1 18s ease-in-out infinite reverse;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(91, 192, 235, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 192, 235, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-bottom: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(91, 192, 235, 0.1);
  border: 1px solid rgba(91, 192, 235, 0.2);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--cyan);
  margin-bottom: 28px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse 2s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.hero-title-accent {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-light) 50%, var(--white) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  max-width: 560px;
  margin: 0 auto 24px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.backed-section {
  background: var(--white);
  padding: 36px 0 32px;
  position: relative;
  overflow: hidden;
}


/* Backed by logos */
.hero-backed {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.hero-backed-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-backed-logos {
  display: flex;
  align-items: center;
  gap: 60px;
  justify-content: center;
}

.backed-logo {
  height: 36px;
  width: auto;
  opacity: 0.4;
  transition: opacity 0.25s ease;
}


.backed-logo:hover {
  opacity: 0.7;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}

.hero-ctas .btn-outline {
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
}

.hero-ctas .btn-outline:hover {
  border-color: rgba(91, 192, 235, 0.4);
  color: var(--white);
  background: rgba(91, 192, 235, 0.08);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 40px 36px 0;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

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

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--white);
  letter-spacing: -0.02em;
}

.hero-stat-plus {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--cyan);
}

.hero-stat-label {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.hero-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
}

/* Hero Screenshot */
.hero-screenshot-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-screenshot-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: radial-gradient(ellipse, rgba(91, 192, 235, 0.25) 0%, transparent 60%);
  filter: blur(80px);
  pointer-events: none;
}

.hero-screenshot {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.2),
    0 24px 80px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  background: var(--gray-900);
  transform: perspective(1400px) rotateX(4deg);
  transition: transform 0.8s var(--ease-out);
}

.hero-screenshot:hover {
  transform: perspective(1400px) rotateX(0deg);
}

.screenshot-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: #1e1e1e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px 16px 0 0;
}

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

.screenshot-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.screenshot-dots span:first-child { background: #ff5f57; }
.screenshot-dots span:nth-child(2) { background: #febc2e; }
.screenshot-dots span:last-child { background: #28c840; }

.screenshot-url {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
  padding: 4px 16px;
  border-radius: 6px;
}

.screenshot-img-wrapper {
  position: relative;
  cursor: none;
}

.screenshot-img {
  width: 100%;
  display: block;
  border-radius: 0 0 16px 16px;
}

.magnifier {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 6px solid #2b7caa;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 10;
  left: 0;
  top: 0;
  opacity: 0;
  will-change: transform;
  transition: opacity 0.15s ease;
}

.magnifier::after {
  content: '';
  position: absolute;
  right: 3px;
  bottom: -18px;
  width: 6px;
  height: 24px;
  background: #2b7caa;
  border-radius: 3px;
  transform: rotate(-45deg);
  transform-origin: top center;
}

.screenshot-img-wrapper:hover .magnifier {
  opacity: 1;
}

.screenshot-img-wrapper:hover {
  cursor: none;
}

/* ===========================
   PAIN POINTS
   =========================== */
.pain-section {
  padding: var(--section-pad) 0;
  background: var(--white);
  position: relative;
}


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

.pain-content {
  position: sticky;
  top: 120px;
}

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

.pain-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: all 0.3s var(--ease-out);
}

.pain-card:hover {
  border-color: var(--blue-300);
  box-shadow: 0 4px 20px rgba(91, 192, 235, 0.08);
}

.pain-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--blue-100);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pain-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--blue-900);
  margin-bottom: 6px;
}

.pain-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ===========================
   FEATURES BENTO
   =========================== */
.features-section {
  padding: var(--section-pad) 0;
  background: var(--gray-50);
}

.features-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--accent));
  opacity: 0;
  transition: opacity 0.35s;
}

.feature-card:hover {
  border-color: var(--blue-300);
  box-shadow: 0 8px 32px rgba(91, 192, 235, 0.1);
  transform: translateY(-3px);
}

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

.feature-card-lg {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-100) 0%, rgba(91, 192, 235, 0.15) 100%);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--blue-900);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 14.5px;
  color: var(--gray-500);
  line-height: 1.65;
}

.feature-screenshot {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top left;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.feature-screenshot-sm {
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: top left;
  border-radius: 10px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature-mini-visual {
  margin-top: 24px;
}

/* Profit visual */
.profit-visual {
  background: var(--gray-50);
  border-radius: 14px;
  padding: 24px;
  border: 1px solid var(--gray-200);
}

.profit-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
}

.profit-label {
  color: var(--gray-500);
}

.profit-value {
  font-weight: 600;
  color: var(--gray-800);
  font-family: var(--font-mono);
  font-size: 13px;
}

.profit-value.negative { color: var(--danger); }
.profit-value.positive { color: var(--success); }

.profit-divider {
  height: 1px;
  background: var(--gray-200);
  margin: 8px 0;
}

.profit-row.total .profit-label {
  font-weight: 600;
  color: var(--gray-700);
}

.profit-bar-container {
  display: flex;
  height: 28px;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 16px;
}

.profit-bar {
  width: var(--width);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  color: white;
  background: var(--blue-400);
}

.profit-bar.fees {
  background: var(--blue-700);
}

.profit-bar.profit {
  background: var(--success);
}

/* Opportunity alerts */
.opportunity-alerts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.opp-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--gray-50);
  border-radius: 10px;
  font-size: 12.5px;
  color: var(--gray-600);
  border: 1px solid var(--gray-100);
  font-family: var(--font-mono);
}

.opp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.opp-dot.red { background: var(--danger); }
.opp-dot.yellow { background: var(--warning); }
.opp-dot.blue { background: var(--blue-500); }

/* Restock visual */
.restock-visual {
  padding: 12px 0;
}

.restock-bar-group {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  height: 100px;
  padding: 0 20px;
}

.restock-bar {
  flex: 1;
  height: var(--h);
  background: linear-gradient(to top, var(--blue-400), var(--cyan));
  border-radius: 6px 6px 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
  transition: height 0.5s var(--ease-out);
}

.restock-bar span {
  font-size: 11px;
  font-weight: 700;
  color: white;
}

.restock-bar.warn {
  background: linear-gradient(to top, var(--warning), #fcd34d);
}

.restock-bar.danger {
  background: linear-gradient(to top, var(--danger), #fca5a5);
}

.restock-labels {
  display: flex;
  gap: 16px;
  padding: 8px 20px 0;
}

.restock-labels span {
  flex: 1;
  text-align: center;
  font-size: 11px;
  color: var(--gray-400);
}

/* BSR chart */
.bsr-chart {
  padding: 8px 0;
}

.bsr-line-chart {
  width: 100%;
  height: 60px;
}

.bsr-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 11px;
  color: var(--gray-400);
}

/* Fee reclamation */
.fee-reclaim {
  text-align: center;
}

.fee-compare {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fee-box {
  flex: 1;
  padding: 14px;
  border-radius: 12px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
}

.fee-box.new {
  border-color: rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.04);
}

.fee-size {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-400);
  margin-bottom: 4px;
}

.fee-dim {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gray-600);
  margin-bottom: 6px;
}

.fee-amount {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-700);
  font-family: var(--font-mono);
}

.fee-amount.positive {
  color: var(--success);
}

.fee-arrow {
  color: var(--gray-300);
  flex-shrink: 0;
}

.fee-savings {
  margin-top: 12px;
  padding: 8px 16px;
  background: rgba(16, 185, 129, 0.08);
  color: var(--success);
  font-weight: 700;
  font-size: 13px;
  border-radius: 8px;
  display: inline-block;
}

/* Catalog visual */
.catalog-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.catalog-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
}

.catalog-amazon-logo {
  height: 40px;
  width: auto;
}

.catalog-icon.amazon {
  background: #232f3e;
  color: #ff9900;
}

.catalog-icon.iq {
  background: linear-gradient(135deg, var(--cyan), var(--accent));
  color: white;
  font-family: var(--font-body);
}

.catalog-arrow-flow {
  display: flex;
  gap: 6px;
}

.catalog-arrow-flow span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-300);
  animation: flowDots 1.5s ease-in-out infinite;
}

.catalog-arrow-flow span:nth-child(2) {
  animation-delay: 0.3s;
}

.catalog-arrow-flow span:nth-child(3) {
  animation-delay: 0.6s;
}

/* Cash Flow visual */
.cashflow-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.cashflow-chart-img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 10px;
}

/* ===========================
   HOW IT WORKS
   =========================== */
.how-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.step-card {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 32px 24px;
}

.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--blue-200);
  margin-bottom: 16px;
  line-height: 1;
}

.step-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--blue-900);
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14.5px;
  color: var(--gray-500);
  line-height: 1.6;
}

.step-connector {
  display: flex;
  align-items: center;
  padding-top: 52px;
  color: var(--gray-300);
  flex-shrink: 0;
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials-section {
  padding: var(--section-pad) 0;
  background: var(--gray-50);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 20px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s var(--ease-out);
}

.testimonial-card:hover {
  border-color: var(--blue-300);
  box-shadow: 0 8px 28px rgba(91, 192, 235, 0.08);
}

.testimonial-card.featured {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-950) 100%);
  border-color: transparent;
  grid-row: span 1;
}

.testimonial-card.featured .testimonial-quote {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
}

.testimonial-card.featured .testimonial-name {
  color: var(--white);
}

.testimonial-card.featured .testimonial-role {
  color: rgba(255, 255, 255, 0.5);
}

.testimonial-card.featured .testimonial-avatar {
  background: linear-gradient(135deg, var(--cyan), var(--accent));
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--gray-700);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--blue-200);
  color: var(--blue-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--gray-800);
}

.testimonial-role {
  font-size: 12.5px;
  color: var(--gray-400);
}

/* ===========================
   PRICING
   =========================== */
.pricing-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 36px 32px;
  transition: all 0.3s var(--ease-out);
  position: relative;
}

.pricing-card:hover {
  border-color: var(--blue-300);
  box-shadow: 0 8px 32px rgba(91, 192, 235, 0.08);
}

.pricing-card.popular {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-950) 100%);
  border-color: transparent;
  box-shadow: 0 12px 48px rgba(11, 38, 64, 0.25);
  transform: scale(1.03);
}

.pricing-card.popular:hover {
  transform: scale(1.04);
  box-shadow: 0 16px 56px rgba(11, 38, 64, 0.3);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--cyan), var(--accent));
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 18px;
  font-weight: 600;
  color: var(--blue-900);
  margin-bottom: 6px;
}

.pricing-card.popular .pricing-tier {
  color: var(--white);
}

.pricing-desc {
  font-size: 13.5px;
  color: var(--gray-500);
  margin-bottom: 24px;
}

.pricing-card.popular .pricing-desc {
  color: rgba(255, 255, 255, 0.5);
}

.pricing-price {
  display: none;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--blue-900);
  letter-spacing: -0.03em;
  line-height: 1;
}

.pricing-card.popular .pricing-amount {
  color: var(--white);
}

.pricing-period {
  font-size: 15px;
  color: var(--gray-400);
}

.pricing-card.popular .pricing-period {
  color: rgba(255, 255, 255, 0.4);
}

.pricing-card.popular .btn-outline {
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.pricing-card.popular .btn-outline:hover {
  border-color: rgba(91, 192, 235, 0.4);
  background: rgba(91, 192, 235, 0.1);
}

.pricing-features {
  list-style: none;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-100);
}

.pricing-card.popular .pricing-features {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.pricing-features li {
  padding: 8px 0;
  font-size: 13.5px;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-card.popular .pricing-features li {
  color: rgba(255, 255, 255, 0.65);
}

.pricing-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 8.5l3 3 6-7' stroke='%232b7caa' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  flex-shrink: 0;
}

.pricing-card.popular .pricing-features li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 8.5l3 3 6-7' stroke='%235bc0eb' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* ===========================
   FAQ
   =========================== */
.faq-section {
  padding: var(--section-pad) 0;
  background: var(--gray-50);
}

.faq-grid {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: var(--blue-300);
}

.faq-item.open {
  border-color: var(--blue-400);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--blue-900);
  text-align: left;
  transition: color 0.2s;
}

.faq-question svg {
  flex-shrink: 0;
  color: var(--gray-400);
  transition: transform 0.3s var(--ease-out);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
  color: var(--blue-500);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 14.5px;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ===========================
   CTA
   =========================== */
.cta-section {
  position: relative;
  padding: var(--section-pad) 0;
  background: var(--blue-950);
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.cta-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(91, 192, 235, 0.2) 0%, transparent 70%);
  top: -30%;
  right: -10%;
  animation: orbMove1 10s ease-in-out infinite;
}

.cta-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(45, 109, 163, 0.25) 0%, transparent 70%);
  bottom: -20%;
  left: -5%;
  animation: orbMove2 12s ease-in-out infinite;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 52px);
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 36px;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  padding: 64px 0 32px;
  background: var(--blue-950);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer .logo-img {
  height: 28px;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  margin-top: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  padding: 5px 0;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--cyan);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .features-bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card-lg {
    grid-column: span 2;
  }

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

  .testimonial-card:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 48px;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .hero {
    padding: calc(80px + 48px) 0 40px;
  }

  .hero-title {
    font-size: clamp(36px, 8vw, 48px);
  }

  .hero-subtitle {
    margin-bottom: 12px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
  }

  .hero-stat-divider {
    display: none;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }

  .hero-ctas .btn-lg {
    width: 100%;
    justify-content: center;
  }

  .backed-section {
    padding: 24px 0 20px;
  }

  .pain-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .pain-content {
    position: static;
  }

  .features-bento {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card-lg {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .steps-grid {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .step-connector {
    transform: rotate(90deg);
    padding-top: 0;
  }

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

  .testimonial-card:last-child {
    grid-column: span 1;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
    gap: 16px;
  }

  .pricing-card.popular {
    transform: none;
  }

  .pricing-card.popular:hover {
    transform: none;
  }

  .cta-section {
    padding: 40px 0;
  }

  .faq-section {
    padding-bottom: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .hero-backed-logos {
    gap: 24px;
  }

  .backed-logo {
    height: 28px;
  }

  .hero-stats {
    gap: 24px;
    padding: 32px 20px 0;
  }

  .hero-stat-number {
    font-size: 32px;
  }

  .hero-stat-plus {
    font-size: 26px;
  }

  .hero-stat-label {
    font-size: 12px;
  }

  .hero-stat-divider {
    height: 36px;
  }
}

@media (max-width: 480px) {
  :root {
    --section-pad: 36px;
  }

  .hero {
    padding-top: calc(80px + 40px);
  }

  .section-header {
    margin-bottom: 28px;
  }

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

  .footer-brand {
    grid-column: span 1;
  }

  .fee-compare {
    flex-direction: column;
    gap: 8px;
  }

  .fee-arrow {
    transform: rotate(90deg);
  }
}
