/* ============================== LANDING PAGE ============================== */

html { scroll-behavior: smooth; }
body { background: #FFFFFF; color: #0A0A0B; }

/* ============================== HERO MESH ============================== */
.hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 15% 10%, rgba(139, 92, 246, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 5%,  rgba(99, 102, 241, 0.14) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(79, 70, 229, 0.10) 0%, transparent 65%);
}
.dot-field {
  background-image: radial-gradient(rgba(10, 10, 11, 0.07) 1px, transparent 1px);
  background-size: 24px 24px;
  background-position: 12px 12px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 40%, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 40%, black 0%, transparent 80%);
}

/* ============================== TEXT ============================== */
.display {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.02;
  text-wrap: balance;
}
.display .accent {
  color: #5E5E67;
  font-weight: 500;
}
.display.on-dark .accent { color: rgba(255,255,255,0.55); font-weight: 500; }
.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6366F1;
}

/* ============================== BUTTONS ============================== */
.btn-ink {
  background: #0A0A0B;
  color: #fff;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 200ms cubic-bezier(0.22, 1, 0.36, 1), background 160ms;
}
.btn-ink:hover { background: #2A2A2E; transform: translateY(-1px); }
.btn-line {
  border: 1px solid rgba(10,10,11,0.18);
  color: #0A0A0B;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: white;
  transition: all 160ms;
}
.btn-line:hover { border-color: #0A0A0B; background: #FAFAFB; }
.btn-grad {
  background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 50%, #4F46E5 100%);
  color: #fff;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 550;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 24px -8px rgba(99, 102, 241, 0.6);
  transition: transform 200ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 200ms;
}
.btn-grad:hover { transform: translateY(-1px); box-shadow: 0 12px 30px -8px rgba(99, 102, 241, 0.7); }

/* ============================== NAV ============================== */
.landing-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 220ms, background 220ms;
}
.landing-nav.scrolled {
  border-bottom-color: rgba(10,10,11,0.06);
  background: rgba(255,255,255,0.92);
}
.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: #44444B;
  padding: 6px 12px;
  border-radius: 7px;
  transition: color 140ms;
}
.nav-link:hover { color: #0A0A0B; }

/* ============================== PRODUCT FRAME ============================== */
.frame {
  background: #fff;
  border: 1px solid rgba(10,10,11,0.08);
  border-radius: 18px;
  box-shadow:
    0 50px 100px -25px rgba(10, 10, 11, 0.18),
    0 30px 60px -30px rgba(99, 102, 241, 0.18),
    0 0 0 1px rgba(255,255,255,0.5) inset;
  overflow: hidden;
}
.frame-bar {
  height: 36px;
  background: #FAFAFB;
  border-bottom: 1px solid rgba(10,10,11,0.06);
  display: flex; align-items: center;
  padding: 0 14px;
  gap: 10px;
}
.frame-dot { width: 10px; height: 10px; border-radius: 999px; }

/* ============================== STAT NUMBERS ============================== */
.stat-num {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.95;
  background: linear-gradient(180deg, #0A0A0B 60%, #5E5E67 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================== FEATURE CARD ============================== */
.feat {
  border: 1px solid rgba(10, 10, 11, 0.06);
  border-radius: 18px;
  padding: 28px;
  background: #fff;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 220ms;
  position: relative;
  overflow: hidden;
}
.feat:hover { transform: translateY(-3px); box-shadow: 0 16px 40px -16px rgba(10,10,11,0.12); }
.feat-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}

/* ============================== DARK BAND ============================== */
.dark-band {
  background:
    radial-gradient(ellipse 60% 80% at 8% 20%, rgba(139, 92, 246, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 95% 10%, rgba(99, 102, 241, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 70% 55% at 50% 110%, rgba(79, 70, 229, 0.16) 0%, transparent 60%),
    linear-gradient(135deg, #0F0F12 0%, #17171C 100%);
  color: #fff;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}

/* ============================== SCROLL FADE-IN ============================== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 800ms cubic-bezier(0.22, 1, 0.36, 1), transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================== TICKER ============================== */
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-track {
  display: flex; gap: 64px;
  animation: tickerScroll 50s linear infinite;
  width: max-content;
}

/* ============================== COMPARE ============================== */
.compare-card {
  border: 1px solid rgba(10,10,11,0.07);
  border-radius: 22px;
  padding: 32px;
  background: #fff;
}
.compare-row {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(10,10,11,0.05);
  font-size: 14px;
  color: #44444B;
}
.compare-row:last-child { border-bottom: 0; }

/* ============================== TRUST PILLS ============================== */
.trust-pill {
  border: 1px solid rgba(10,10,11,0.08);
  background: #fff;
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ============================== TIMELINE NARRATIVE ============================== */
.narrative-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(10,10,11,0.06);
}
.narrative-row:last-child { border-bottom: 0; }
.narrative-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: #85858D;
  font-weight: 500;
  padding-top: 2px;
}

/* ============================== UTIL ============================== */
.section { padding: 96px 0; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 920px; margin: 0 auto; padding: 0 32px; }
.divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(10,10,11,0.08), transparent); }

/* ============================== HERO PREVIEW MINI-UI ============================== */
.mini-card {
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(10,10,11,0.06);
  padding: 14px;
}
.mini-bar {
  height: 6px; border-radius: 99px; background: rgba(10,10,11,0.08);
}
.mini-pulse {
  width: 7px; height: 7px; border-radius: 99px; background: #8B5CF6;
  box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.55);
  animation: pulseDotL 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulseDotL {
  0%, 100% { box-shadow: 0 0 0 0 rgba(139,92,246,0.55); }
  50%      { box-shadow: 0 0 0 8px rgba(139,92,246,0); }
}

/* ============================== FLOAT ============================== */
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.float-y { animation: floatY 7s ease-in-out infinite; }

/* ============================== BLINK CURSOR ============================== */
@keyframes blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}
.cursor { display: inline-block; width: 2px; height: 0.95em; background: #6366F1; vertical-align: -0.1em; margin-left: 2px; animation: blink 1s steps(2) infinite; }

/* ============================== FOOTER ============================== */
footer.landing-footer {
  border-top: 1px solid rgba(10,10,11,0.06);
  padding: 56px 0 40px;
  background: #FAFAF9;
}
