*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #ffffff;
  --bg-soft: #f5f5f3;
  --bg-dark: #0f0f0f;
  --text: #111111;
  --text-dim: #5a5a5a;
  --text-light: #888888;
  --text-muted: #b0b0b0;
  --green: #1db954;
  --green-dark: #18a349;
  --green-light: #e8f9ef;
  --coral: #e05252;
  --coral-light: #fef2f2;
  --blue: #3a6fd8;
  --blue-light: #eef2ff;
  --amber: #d97706;
  --amber-light: #fef3c7;
  --purple: #7c3aed;
  --purple-light: #f5f3ff;
  --border: #e4e4e1;
  --border-light: #ededea;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow: 0 4px 18px rgba(0,0,0,0.07);
  --shadow-lg: 0 14px 44px rgba(0,0,0,0.09);

  /* Dark near-black gradients — close to 7taps reference */
  --grad-text: linear-gradient(135deg, #2d2d2d 0%, #5a4a7a 50%, #1a1a2e 100%);
  --grad-text-warm: linear-gradient(135deg, #1a1a1a 0%, #4a3060 60%, #2d1a0e 100%);
  --grad-hero-bg: radial-gradient(ellipse 80% 60% at 20% 40%, rgba(230,225,215,0.7) 0%, transparent 60%),
                  radial-gradient(ellipse 60% 80% at 85% 70%, rgba(80,60,110,0.18) 0%, transparent 60%),
                  radial-gradient(ellipse 50% 50% at 60% 20%, rgba(200,195,210,0.25) 0%, transparent 50%),
                  #f5f5f3;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Instrument Sans', 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 28px; }

/* ─── GRADIENT TEXT — near-black like 7taps ─── */
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-text-warm {
  background: var(--grad-text-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px; /* compact */
}
.logo {
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 5px;
}
.logo-img {
  height: 32px;
  width: auto;
  max-width: 160px;
  display: block;
  object-fit: contain;
}
/* Text-based logo parts */
.logo-ai {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  color: var(--text-dim);
  font-size: 1rem;
}
.logo-maker {
  font-family: 'Instrument Sans', sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--text);
  letter-spacing: -0.03em;
}
.nav-center {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 8px;
  transition: all 0.15s;
}
.nav-link:hover { color: var(--text); background: rgba(0,0,0,0.04); }
.nav-link-dropdown { display: flex; align-items: center; gap: 4px; }
.nav-link-dropdown svg { width: 11px; height: 11px; opacity: 0.4; }
.nav-right { display: flex; align-items: center; gap: 6px; }
.btn-login {
  color: var(--text);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 8px;
  transition: all 0.15s;
}
.btn-login:hover { background: rgba(0,0,0,0.04); }
.btn-signup {
  background: var(--text);
  color: #fff;
  padding: 8px 20px;
  border-radius: 980px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 5px;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-signup:hover { background: #333; }
.btn-signup svg { width: 13px; height: 13px; }
.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  margin: 4px 0;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.mobile-menu-btn.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav-mobile-right {
  display: none;
  align-items: center;
  gap: 8px;
}
.btn-signup-mobile {
  padding: 6px 14px;
  font-size: 0.78rem;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0 20px;
}
.mobile-menu.open { display: flex; }
nav:has(.mobile-menu.open) {
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}
.mobile-menu-link {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}
.mobile-menu-divider { height: 0; }

/* ─── HERO SPLIT ─── */
.hero-split {
  padding: 136px 0 72px; /* 80px original + 56px nav height */
  overflow: hidden;
  background: var(--grad-hero-bg);
}
.hero-split-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-left .hero-badge { margin-bottom: 24px; }
.hero-left h1 { text-align: center; }
.hero-left .hero-sub { text-align: center; margin: 0 auto 36px; }
.hero-left .hero-note { text-align: center; }
.hero-left .hero-actions { justify-content: center; }

.hero-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 28px;
}
.hero-trust-text {
  font-size: 0.82rem;
  color: var(--text);
  font-weight: 600;
}
.hero-trust-sub {
  font-size: 0.74rem;
  color: var(--text-light);
}

/* Right canvas area */
.hero-right {
  position: relative;
}
.hero-canvas-wrap {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hc-titlebar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg);
  border-bottom: 1px solid var(--border-light);
}
.hc-dots { display: flex; gap: 6px; }
.hc-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dim);
  margin-left: 4px;
}
#trend-canvas {
  display: block;
  width: 100%;
  height: 320px;
}
/* Floating chips */
.hc-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-radius: 980px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  white-space: nowrap;
  pointer-events: none;
}
.hc-chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hc-chip-1 { bottom: 24px; left: 20px; animation: chipFloat 3s ease-in-out infinite; }
.hc-chip-2 { bottom: 24px; right: 20px; animation: chipFloat 3s ease-in-out 1.5s infinite; }
@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* ─── HERO (old, kept for badge etc.) ─── */
.hero {
  padding: 72px 0 56px;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 16px 5px 8px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 980px;
  font-size: 0.78rem;
  color: var(--text-dim);
  font-weight: 500;
  margin-bottom: 28px;
  animation: fadeUp 0.5s ease both;
}
.hero-badge-dot {
  width: 20px;
  height: 20px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
}
h1 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: clamp(2.6rem, 5.2vw, 4.2rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  animation: fadeUp 0.5s ease 0.05s both;
}
h1 .hero-strike {
  text-decoration: line-through;
  text-decoration-color: var(--coral);
  text-decoration-thickness: 3px;
  opacity: 0.4;
}
.hero-sub {
  font-size: 1.08rem;
  color: var(--text-dim);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.75;
  animation: fadeUp 0.5s ease 0.1s both;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
  animation: fadeUp 0.5s ease 0.15s both;
}
.btn-green {
  background: var(--green);
  color: #fff;
  padding: 14px 36px;
  border-radius: 980px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(29,185,84,0.3);
}
.hero-note {
  font-size: 0.76rem;
  color: var(--text-muted);
  animation: fadeUp 0.5s ease 0.2s both;
}

/* ─── CREDITS BADGE ─── */
.credits-hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--text-dim);
  animation: fadeUp 0.5s ease 0.18s both;
}
.credits-hint-spark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: var(--green-light);
  border-radius: 50%;
  color: var(--green);
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
}
/* CTA variant — block, centered below button */
.cta-banner .credits-hint {
  display: flex;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  margin-top: 14px;
  width: 100%;
}
.cta-banner .credits-hint-spark {
  background: rgba(46,194,126,0.18);
  color: #2ec27e;
}

/* ─── APP PREVIEW ─── */
.app-preview {
  margin-top: 56px;
  animation: fadeUp 0.5s ease 0.25s both;
}
.app-frame {
  background: var(--bg-soft);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.app-toolbar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 18px;
  background: var(--bg);
  border-bottom: 1px solid var(--border-light);
}
.app-dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #ff5f57; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }
.app-url {
  flex: 1;
  background: var(--bg-soft);
  border-radius: 8px;
  padding: 5px 14px;
  font-size: 0.7rem;
  color: var(--text-light);
  margin-left: 10px;
  text-align: center;
}
.app-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 340px;
}
.app-sidebar {
  background: var(--bg);
  border-right: 1px solid var(--border-light);
  padding: 20px 12px;
}
.app-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 2px;
  font-weight: 500;
  transition: all 0.15s;
}
.app-nav-item.active {
  background: var(--green-light);
  color: var(--green-dark);
  font-weight: 600;
}
.app-nav-icon { font-size: 0.95rem; width: 20px; text-align: center; }
.app-main { padding: 24px 28px; }
.app-main-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.app-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}
.app-stat {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 18px 16px;
  border: 1px solid var(--border-light);
}
.app-stat-label {
  font-size: 0.68rem;
  color: var(--text-light);
  margin-bottom: 6px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.app-stat-val {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.7rem;
  line-height: 1;
  margin-bottom: 6px;
}
.app-stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 600;
}
.badge-up { background: var(--green-light); color: var(--green); }
.badge-hot { background: var(--coral-light); color: var(--coral); }
.app-chart-area {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 18px;
  height: 100px;
  position: relative;
}
.sparkline { position: absolute; bottom: 14px; left: 18px; right: 18px; height: 60px; }
.sparkline svg { width: 100%; height: 100%; }

/* ─── TRUST ─── */
.trust {
  padding: 44px 0;
  border-bottom: 1px solid var(--border-light);
}
.trust-text {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 6px;
}
.trust-sub {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 24px;
}
.trust-logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.trust-logos-row + .trust-logos-row { margin-top: 16px; }
.trust-logo-item {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  opacity: 0.28;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.trust-logo-item:hover { opacity: 0.5; }

/* ─── SECTIONS COMMON ─── */
.section-label {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 8px;
}
.section-h2 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.section-desc {
  color: var(--text-dim);
  font-size: 0.95rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── FEATURES (colored border cards) ─── */
.proof {
  padding: 80px 0;
  text-align: center;
  background: var(--bg-soft);
}
.proof-header { margin-bottom: 48px; }
.feature-grid-3x2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: left;
}
.fcard {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  transition: all 0.25s;
}
.fcard:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.fcard-green  { background: #f0fdf4; border: 1.5px solid #bbf7d0; }
.fcard-coral  { background: #fff5f5; border: 1.5px solid #fecaca; }
.fcard-blue   { background: #eff6ff; border: 1.5px solid #bfdbfe; }
.fcard-amber  { background: #fffbeb; border: 1.5px solid #fde68a; }
.fcard-purple { background: #faf5ff; border: 1.5px solid #ddd6fe; }
.fcard-neutral{ background: var(--bg-soft); border: 1.5px solid var(--border); }
.fcard h3 {
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
.fcard p {
  color: var(--text-dim);
  font-size: 0.84rem;
  line-height: 1.65;
}

/* ─── PIPELINE ─── */
.pipeline-section {
  padding: 80px 0;
  background: var(--bg);
}
.pipeline-header { text-align: center; margin-bottom: 48px; }
.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pipeline-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  transition: all 0.25s;
}
.pipeline-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.pipeline-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.82rem;
  margin-bottom: 14px;
}
.pipeline-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.pipeline-card p {
  color: var(--text-dim);
  font-size: 0.84rem;
  line-height: 1.65;
}

/* ─── METRICS ─── */
.metrics-section {
  padding: 80px 0;
}
.metrics-header { text-align: center; margin-bottom: 48px; }
.metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
.metric-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.metric-val {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 8px;
}
.metric-val span { color: var(--green); }
.metric-label {
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* ─── PRESS ─── */
.press-section { padding: 80px 0; background: var(--bg-soft); }
.press-header { text-align: center; margin-bottom: 48px; }
.press-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.press-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: box-shadow 0.2s;
  border: 1px solid var(--border-light);
}
.press-card:hover { box-shadow: var(--shadow-sm); }
.press-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
}
.press-card-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 4px;
}
.press-author { font-size: 0.8rem; color: var(--text-light); }
.press-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-dim);
  flex-shrink: 0;
}
.press-card-body {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 14px;
}
.press-source {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
}
.press-source:hover { text-decoration: underline; }
.press-more { text-align: center; }
.btn-outline-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 26px;
  border: 1.5px solid var(--border);
  border-radius: 980px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: all 0.2s;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}
.btn-outline-sm:hover { border-color: var(--text); }

/* ─── PIPELINE STEP STATUS ─── */
.step-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
}
.step-live {
  background: var(--green-light);
  color: var(--green);
}
.step-live::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
.step-soon {
  background: #fef3c7;
  color: #92400e;
}
.step-soon::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #f59e0b;
  flex-shrink: 0;
}
.pipeline-card--soon {
  opacity: 0.72;
}
.pipeline-card--soon h3 {
  color: var(--text-dim);
}

/* ─── FCARD ICON ─── */
.fcard-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
  display: block;
}

/* ─── PRICING ─── */
.pricing-section {
  padding: 80px 0;
  background: var(--bg-soft);
}
.pricing-header { text-align: center; margin-bottom: 48px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.pricing-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  position: relative;
  transition: all 0.25s;
}
.pricing-card:hover { box-shadow: var(--shadow); }
.pricing-card--featured {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(29,185,84,0.08);
}
.pricing-card--muted {
  background: var(--bg-soft);
  border-style: dashed;
}
.pricing-badge-top {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  padding: 3px 14px;
  border-radius: 980px;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}
.pricing-card-head { margin-bottom: 24px; }
.pricing-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tag-soon {
  font-size: 0.65rem;
  background: #fef3c7;
  color: #92400e;
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 600;
}
.pricing-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 16px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}
.pricing-amount {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1;
}
.pricing-unit {
  font-size: 0.88rem;
  color: var(--text-dim);
}
.pricing-price-sub {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 20px;
}
.btn-outline-pricing {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px;
  border-radius: 980px;
  border: 1.5px solid var(--border);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: all 0.2s;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  margin-bottom: 24px;
}
.btn-outline-pricing:hover { border-color: var(--text); }
.pricing-card--featured .btn-green {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
}
.pricing-features {
  list-style: none;
  padding: 0;
}
.pricing-features li {
  font-size: 0.84rem;
  color: var(--text-dim);
  padding: 5px 0;
  border-bottom: 1px solid var(--border-light);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li:first-child { padding-top: 0; }
.pricing-note {
  text-align: center;
  margin-top: 28px;
  font-size: 0.84rem;
  color: var(--text-light);
}
.pricing-note a {
  color: var(--text);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ─── WHO IT'S FOR ─── */
.usecases-section { padding: 80px 0; background: var(--bg); }
.usecases-header { text-align: center; margin-bottom: 40px; }
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.who-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  transition: all 0.25s;
}
.who-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.who-icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
  display: block;
}
.who-card h3 {
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.who-card p {
  font-size: 0.84rem;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ─── CASE STUDIES ─── */
.cases-section { padding: 80px 0; background: var(--bg-soft); }
.cases-header { text-align: center; margin-bottom: 48px; }
.case-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid var(--border);
}
.case-card.reverse { direction: rtl; }
.case-card.reverse > * { direction: ltr; }
.case-image {
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
.case-image-placeholder { font-size: 3rem; opacity: 0.3; }
.case-badge {
  position: absolute;
  top: 18px; right: 18px;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.badge-new      { background: var(--green); color: #fff; }
.badge-featured { background: var(--coral); color: #fff; }
.badge-read     { background: var(--blue); color: #fff; }
.case-content {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.case-brand {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.case-content h3 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 14px;
}
.case-quote {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}
.case-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.case-link:hover { color: var(--green); }

/* ─── TEAM ─── */
.team-section { padding: 80px 0; }
.team-header { text-align: center; margin-bottom: 12px; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.team-member { text-align: center; }
.team-avatar {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--bg-soft), var(--border));
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.team-avatar-initials {
  font-weight: 700;
  color: var(--text-light);
  font-size: 1.4rem;
}
.team-linkedin {
  position: absolute;
  bottom: 8px; right: 8px;
  width: 24px; height: 24px;
  background: #0a66c2;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s;
}
.team-linkedin:hover { transform: scale(1.1); }
.team-name { font-size: 0.88rem; font-weight: 700; margin-bottom: 2px; }
.team-role { font-size: 0.75rem; color: var(--text-light); line-height: 1.4; }

/* ─── FAQ ─── */
.faq-section { padding: 80px 0; background: var(--bg-soft); }
.faq-header { text-align: center; margin-bottom: 48px; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.15s;
}
.faq-question:hover { color: var(--green); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s;
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--green);
  color: var(--green);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 200px; padding-bottom: 22px; }
.faq-answer p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.7;
  padding-right: 48px;
}

/* ─── CTA BANNER ─── */
.cta-banner {
  padding: 100px 0;
  background: var(--bg-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 600px;
  background: radial-gradient(circle, rgba(29,185,84,0.09) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(99,102,241,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: 14px;
  position: relative;
}
.cta-banner .cta-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  margin-bottom: 36px;
  position: relative;
}
.cta-banner .btn-green { position: relative; font-size: 1rem; padding: 15px 40px; }

/* ─── CTA banner headline grad fix ─── */
.cta-banner h2 .grad-text {
  -webkit-text-fill-color: transparent;
  background: linear-gradient(135deg, #2ec27e 0%, #1db954 60%, #16a34a 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

/* ─── FOOTER ─── */
footer { padding: 28px 0; border-top: 1px solid var(--border-light); }
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-left {
  font-size: 0.8rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.footer-center {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-align: center;
  flex: 1;
}
.footer-right {
  display: flex;
  gap: 20px;
  white-space: nowrap;
}
.footer-right a {
  font-size: 0.84rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-right a:hover { color: var(--text); }
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
  gap: 40px;
}
.footer-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-action-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 980px;
  border: 1px solid var(--border);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.footer-action-link:hover { border-color: var(--text); }
.footer-action-link svg { width: 13px; height: 13px; }
.btn-linkedin { background: #0a66c2; color: #fff; border-color: #0a66c2; }
.btn-linkedin:hover { background: #004182; border-color: #004182; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.footer-col h4 { font-size: 0.8rem; font-weight: 600; color: var(--text); margin-bottom: 14px; }
.footer-col a {
  display: block;
  font-size: 0.8rem;
  color: var(--text-dim);
  text-decoration: none;
  padding: 3px 0;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--text); }
.footer-awards {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.award-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  background: var(--bg-soft);
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-dim);
  white-space: nowrap;
}
.award-icon { font-size: 1rem; }
.footer-bottom { font-size: 0.75rem; color: var(--text-light); }

/* ─── SVG CARD ICONS ─── */
.fcard-icon,
.who-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.fcard-icon svg,
.who-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--text-dim);
}

/* ─── PROBLEMS SECTION ─── */
.problems-section {
  padding: 80px 0;
  background: var(--bg);
}
.problems-header {
  text-align: center;
  margin-bottom: 48px;
}
.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.problem-card {
  background: linear-gradient(145deg, #f4f4f2 0%, #ededea 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}
.problem-card:hover { box-shadow: var(--shadow); }
.problem-num {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-top: 2px;
  flex-shrink: 0;
  width: 24px;
}
.problem-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
.problem-body p {
  font-size: 0.84rem;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .pipeline-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .usecases-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(4, 1fr); }
  .case-card { grid-template-columns: 1fr; }
  .case-card.reverse { direction: ltr; }
  .case-image { min-height: 200px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero-split-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }
  .hero-left { align-items: center; text-align: center; }
  .hero-left h1 { text-align: center; }
  .hero-left .hero-sub { text-align: center; margin: 0 auto 36px; }
  .hero-left .hero-note { text-align: center; }
  .hero-left .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .feature-grid-3x2 { grid-template-columns: repeat(2, 1fr); }
  .metrics-row { grid-template-columns: 1fr; gap: 16px; }
  .press-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-row { flex-direction: column; text-align: center; }
  .footer-right { justify-content: center; }
  .app-body { grid-template-columns: 1fr; }
  .app-sidebar { display: none; }
  .app-stats { grid-template-columns: 1fr; }
  .nav-center { display: none; }
  .nav-right { display: none; }
  .nav-mobile-right { display: flex; }
  .hero-actions { flex-direction: column; }
  .hero-trust { flex-direction: column; align-items: center; }
  h1 { font-size: 2.4rem; }
  .usecases-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .problems-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .feature-grid-3x2 { grid-template-columns: 1fr; }
  .pipeline-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: 1fr; }
  .trust-logos-row { gap: 20px; }
}

/* ═══════════════════════════════════════════════
   INNER PAGES (pricing, partnership, contacts,
   privacy, terms)
═══════════════════════════════════════════════ */

/* ─── Inner Hero ─── */
.inner-hero {
  padding: 120px 0 60px;
  background: var(--grad-hero-bg);
  text-align: center;
}
.inner-hero h1 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 400;
  margin-bottom: 18px;
}
.inner-hero p {
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ─── Inner Content (privacy, terms) ─── */
.inner-content {
  padding: 64px 28px 100px;
  max-width: 820px;
  margin: 0 auto;
}
.inner-content h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 40px 0 12px;
}
.inner-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 28px 0 10px;
}
.inner-content p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 14px;
}
.inner-content ul, .inner-content ol {
  padding-left: 22px;
  margin-bottom: 14px;
}
.inner-content li {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 6px;
}
.inner-content a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.inner-content a:hover { color: var(--green); }

/* ─── Inner Section (general wrapper) ─── */
.inner-section {
  padding: 64px 0 80px;
}
.inner-section-alt {
  padding: 64px 0 80px;
  background: var(--bg-soft);
}

/* ─── Inner Grid (2 columns for FAQ, features) ─── */
.inner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .inner-grid { grid-template-columns: 1fr; }
}

/* ─── Feature Card (partnership) ─── */
.icard {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}
.icard:hover { box-shadow: var(--shadow); }
.icard-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icard-icon svg {
  width: 18px; height: 18px;
  stroke: var(--text-dim);
}
.icard h6 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.icard span {
  font-size: 0.84rem;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ─── Pipeline (partnership "how to earn") ─── */
.inner-pipeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .inner-pipeline { grid-template-columns: 1fr; }
}
.inner-pipeline-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
}
.inner-pipeline-card .pipeline-num { margin-bottom: 14px; }
.inner-pipeline-card h4 {
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.inner-pipeline-card p {
  font-size: 0.84rem;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ─── FAQ Accordion (inner pages) ─── */
.inner-faq {
  padding: 64px 0 80px;
  background: var(--bg-soft);
}
.inner-faq .faq-list {
  max-width: 100%;
}

/* ─── Contact Form ─── */
.contact-section {
  padding: 80px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 16px;
}
.contact-info p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 12px;
}
.contact-info a {
  color: var(--text);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.contact-info a:hover { color: var(--green); }
.contact-form {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}
.form-field {
  margin-bottom: 14px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.88rem;
  background: var(--bg);
  color: var(--text);
  outline: none;
  transition: border-color 0.15s;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--text);
}
.form-field textarea {
  resize: vertical;
  min-height: 120px;
}
#result { margin-top: 10px; font-size: 0.85rem; color: var(--green); }

/* ─── Principles (partnership) ─── */
.principles-section {
  padding: 64px 0;
  background: var(--bg);
}
.principles-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 28px;
}

/* ─── Nav active state ─── */
.nav-link.active {
  color: var(--text);
  background: rgba(0,0,0,0.06);
}
