/* ═══════════════════════════════════════════
   fastr Landing Page — Redesigned 2026
   Clean, modern, white theme
   ═══════════════════════════════════════════ */

:root {
  --green: #0FA36B;
  --green-dark: #0C8C5B;
  --green-deeper: #0a7a50;
  --green-light: #e6f7ef;
  --green-glow: rgba(15, 163, 107, 0.10);
  --green-glow-strong: rgba(15, 163, 107, 0.22);
  --green-gradient: linear-gradient(135deg, #0FA36B 0%, #0dd08a 100%);

  --bg: #FAFBFC;
  --bg-alt: #F4F6F8;
  --bg-warm: #F8F9FB;
  --white: #FFFFFF;
  --dark: #0F1419;
  --dark-soft: #1A2332;
  --gray: #5F6B7A;
  --gray-light: #A0AEC0;
  --gray-lighter: #CBD5E1;
  --border: rgba(0, 0, 0, 0.06);
  --border-hover: rgba(15, 163, 107, 0.30);

  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.03);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-xl: 0 24px 56px rgba(0,0,0,0.10), 0 8px 20px rgba(0,0,0,0.05);
  --shadow-green: 0 4px 24px rgba(15, 163, 107, 0.25);
  --shadow-green-lg: 0 8px 40px rgba(15, 163, 107, 0.30);

  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 8px;
  --radius-pill: 100px;

  --font-display: 'Sora', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

/* ─── NAVBAR ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(0,0,0,0.04);
}

.nav-logo {
  display: flex;
  align-items: center;
  color: var(--dark);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-brandmark {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.brand-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--green);
  border-radius: 1px;
  transition: width 0.25s ease;
}

.nav-links a:hover { color: var(--dark); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--green) !important;
  color: white !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-pill) !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  transition: all 0.25s ease !important;
  display: inline-block;
}
.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--green-dark) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-green);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}

.nav-hamburger span {
  width: 22px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-cta {
  display: none;
  background: var(--green);
  color: white;
  text-decoration: none;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.82rem;
  white-space: nowrap;
  transition: background 0.2s;
}
.nav-mobile-cta:hover { background: var(--green-dark); }

/* ─── MOBILE NAV OVERLAY ─── */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 899;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-list {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mobile-nav-list a {
  text-decoration: none;
  color: var(--dark);
  font-size: 1.25rem;
  font-weight: 600;
  transition: color 0.2s;
}

.mobile-nav-list a:hover { color: var(--green); }

.mobile-nav-btn {
  background: var(--green) !important;
  color: white !important;
  padding: 14px 36px !important;
  border-radius: var(--radius-pill) !important;
  display: inline-block;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  padding: 120px 80px 80px;
  position: relative;
  overflow: hidden;
  max-width: 1400px;
  margin: 0 auto;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(15,163,107,0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(99,102,241,0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-left { position: relative; z-index: 2; }

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  border: 1px solid rgba(15, 163, 107, 0.15);
  border-radius: var(--radius-pill);
  padding: 6px 16px 6px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 28px;
  animation: slide-in-top 0.6s ease both;
}

.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(15,163,107,0.4); }
  50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(15,163,107,0); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.8vw, 4.2rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: var(--dark);
  margin-bottom: 22px;
  animation: slide-in-top 0.6s ease 0.1s both;
}

.hero h1 .accent {
  background: var(--green-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.12rem;
  line-height: 1.75;
  color: var(--gray);
  max-width: 480px;
  margin-bottom: 36px;
  animation: slide-in-top 0.6s ease 0.2s both;
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  animation: slide-in-top 0.6s ease 0.3s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-gradient);
  color: white;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-green);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.25s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-green-lg);
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(0); }

.btn-primary-lg {
  font-size: 1.05rem;
  padding: 17px 38px;
}

.btn-primary svg { flex-shrink: 0; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--dark);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s;
  padding: 14px 8px;
}

.btn-ghost:hover { color: var(--green); }

.hero-trust {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  animation: slide-in-top 0.6s ease 0.4s both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--gray);
  font-weight: 500;
}

.trust-item span.icon { font-size: 1rem; }

.text-green { color: var(--green); }

/* ─── HERO RIGHT — BROWSER MOCKUP ─── */
.hero-right {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  animation: slide-in-right 0.7s ease 0.2s both;
}

@keyframes slide-in-top {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slide-in-right {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

.browser-mockup {
  width: 100%;
  max-width: 520px;
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

.browser-bar {
  background: var(--bg-alt);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}

.browser-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}

.browser-url {
  flex: 1;
  background: white;
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.75rem;
  color: var(--gray);
  border: 1px solid var(--border);
  margin: 0 8px;
}

.browser-content {
  display: grid;
  grid-template-columns: 1fr 260px;
  height: 360px;
}

.page-content {
  padding: 24px;
  border-right: 1px solid var(--border);
  background: #fafafa;
}

.page-content-skeleton div {
  background: linear-gradient(90deg, #edf0f3 25%, #f5f7fa 50%, #edf0f3 75%);
  background-size: 200% 100%;
  border-radius: 6px;
  margin-bottom: 10px;
  animation: skeleton-shimmer 1.8s ease infinite;
}

.skel-title { height: 16px; width: 70%; }
.skel-sub { height: 10px; width: 90%; }
.skel-sub2 { height: 10px; width: 55%; }
.skel-price { height: 24px; width: 30%; margin-top: 20px; background: var(--green-light) !important; }
.skel-img { height: 140px; width: 100%; margin-bottom: 16px; border-radius: var(--radius-sm); }

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

/* ─── CHAT SIDEBAR ─── */
.chat-sidebar {
  display: flex;
  flex-direction: column;
  background: white;
}

.chat-header {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}

.chat-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.chat-title {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--dark);
}

.online-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
}

.online-pill-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 2s ease infinite;
}

.users-row {
  display: flex;
}

.user-avatar {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid white;
  font-size: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  margin-left: -4px;
}

.chat-messages {
  flex: 1;
  padding: 12px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.msg {
  display: flex;
  flex-direction: column;
  gap: 2px;
  animation: msg-appear 0.3s ease both;
}

@keyframes msg-appear {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.msg-name {
  font-size: 0.62rem;
  color: var(--gray);
  font-weight: 500;
  padding: 0 10px;
}

.msg-bubble {
  background: var(--bg-alt);
  border-radius: 12px 12px 12px 4px;
  padding: 7px 10px;
  font-size: 0.72rem;
  line-height: 1.5;
  color: var(--dark);
  max-width: 90%;
  align-self: flex-start;
}

.msg.self .msg-bubble {
  background: var(--green);
  color: white;
  border-radius: 12px 12px 4px 12px;
  align-self: flex-end;
}

.msg.self .msg-name { text-align: right; color: var(--green); }

.typing-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 4px;
  animation: msg-appear 0.3s ease both;
}

.typing-dots {
  display: flex;
  gap: 3px;
  background: var(--bg-alt);
  padding: 8px 12px;
  border-radius: 12px;
}

.typing-dots span {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gray-light);
  animation: typing-bounce 1.2s ease infinite;
}

.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing-bounce {
  0%, 100% { transform: translateY(0); background: var(--gray-light); }
  50% { transform: translateY(-4px); background: var(--green); }
}

.chat-input-row {
  padding: 10px 12px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 8px;
  align-items: center;
}

.chat-input {
  flex: 1;
  background: var(--bg-alt);
  border: none;
  border-radius: var(--radius-pill);
  padding: 7px 12px;
  font-size: 0.72rem;
  color: var(--dark);
  font-family: var(--font-body);
  outline: none;
}

.chat-send {
  width: 28px; height: 28px;
  background: var(--green);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}

.chat-send:hover { background: var(--green-dark); transform: scale(1.08); }

/* ─── FLOATING CARD ─── */
.floating-card {
  position: absolute;
  background: white;
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  animation: float-card 5s ease-in-out infinite;
  z-index: 3;
}

.floating-card.top-left {
  top: -20px; left: -40px;
  animation-delay: 0s;
}

.floating-card.bottom-right {
  bottom: -10px; right: -30px;
  animation-delay: 2.5s;
}

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

.fc-label {
  font-size: 0.65rem;
  color: var(--gray);
  font-weight: 500;
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.fc-value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
}

.fc-value .green { color: var(--green); }

/* ─── LIVE TICKER ─── */
.live-ticker {
  background: var(--dark);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}

.ticker-track {
  display: flex;
  gap: 60px;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

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

.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  flex-shrink: 0;
}

.ticker-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
}

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--white);
  padding: 32px 80px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 32px;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.stat-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  background: var(--green-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--gray);
  margin-top: 6px;
  font-weight: 400;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* ─── SECTIONS — TAGS & HEADINGS ─── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.tag-green {
  background: var(--green-light);
  color: var(--green-dark);
}

.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--gray);
  max-width: 520px;
}

/* ─── FEATURES SECTION ─── */
.features-section {
  padding: 110px 80px;
  max-width: 1400px;
  margin: 0 auto;
  background: var(--white);
}

.features-header {
  text-align: center;
  margin-bottom: 64px;
}

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

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: default;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-hover);
}

.feature-card-accent {
  background: var(--dark);
  border-color: var(--dark);
}

.feature-card-accent .feature-title { color: white; }
.feature-card-accent .feature-desc { color: rgba(255,255,255,0.50); }
.feature-card-accent:hover { border-color: var(--green); }

.feature-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--green);
  transition: background 0.3s;
}

.feature-card:hover .feature-icon-wrap {
  background: var(--green-light);
}

.accent-bg {
  background: rgba(15, 163, 107, 0.15);
  color: var(--green);
}

.feature-card-accent .feature-icon-wrap {
  background: rgba(15, 163, 107, 0.15);
}

.feature-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--gray);
}

/* ─── HOW IT WORKS ─── */
.how-section {
  padding: 110px 80px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.how-header {
  text-align: center;
  margin-bottom: 72px;
  position: relative;
  z-index: 1;
}

.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  z-index: 1;
}

.step {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 28px;
  text-align: center;
  position: relative;
  transition: border-color 0.3s, transform 0.3s ease, box-shadow 0.3s;
}

.step:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-connector {
  flex-shrink: 0;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}

.step-number {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: var(--green-light);
  border: 1px solid rgba(15, 163, 107, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--green);
  margin: 0 auto 20px;
}

.step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--gray);
}

/* ─── BOOKMARKLET SECTION ─── */
.bookmarklet-section {
  padding: 110px 80px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.bookmarklet-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.bookmarklet-text .section-p {
  margin-bottom: 36px;
}

.bookmarklet-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bm-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.bm-step-num {
  width: 32px; height: 32px;
  min-width: 32px;
  border-radius: 10px;
  background: var(--green-light);
  color: var(--green);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bm-step-text {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.6;
  padding-top: 4px;
}

.bm-step-text strong {
  color: var(--dark);
  font-weight: 600;
}

.bookmarklet-demo {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bookmarklet-card {
  background: var(--bg-alt);
  border: 2px dashed rgba(15, 163, 107, 0.3);
  border-radius: 20px;
  padding: 36px 32px;
  text-align: center;
  transition: border-color 0.3s;
}

.bookmarklet-card:hover {
  border-color: var(--green);
}

.bookmarklet-card-label {
  font-size: 0.82rem;
  color: var(--gray);
  font-weight: 500;
  margin-bottom: 20px;
  animation: bounce-arrow 2s ease infinite;
}

@keyframes bounce-arrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

.bookmarklet-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-gradient);
  color: white;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: grab;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-green);
  animation: glow-pulse 3s ease infinite;
  user-select: none;
}

.bookmarklet-btn:active { cursor: grabbing; }

.bookmarklet-btn:hover {
  transform: scale(1.04);
  box-shadow: var(--shadow-green-lg);
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(15, 163, 107, 0.25); }
  50% { box-shadow: 0 4px 40px rgba(15, 163, 107, 0.40); }
}

.bookmarklet-hint {
  font-size: 0.75rem;
  color: var(--gray-light);
  margin-top: 16px;
}

.bookmarklet-preview {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.bp-bar {
  background: var(--bg-alt);
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}

.bp-dots {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
}

.bp-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  display: block;
}

.bp-bookmarks-bar {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.bp-bm-item {
  font-size: 0.68rem;
  color: var(--gray);
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--white);
  border: 1px solid var(--border);
  white-space: nowrap;
}

.bp-bm-fastr {
  background: var(--green-light) !important;
  color: var(--green-dark) !important;
  border-color: rgba(15, 163, 107, 0.2) !important;
  font-weight: 600;
  animation: subtle-glow 2s ease infinite;
}

@keyframes subtle-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(15, 163, 107, 0); }
  50% { box-shadow: 0 0 8px rgba(15, 163, 107, 0.2); }
}

.bp-page {
  padding: 16px;
}

.bp-url-bar {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.72rem;
  color: var(--gray);
  margin-bottom: 14px;
}

.bp-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.bp-skel {
  height: 10px;
  background: var(--bg-alt);
  border-radius: 4px;
  width: 100%;
}

.bp-skel.short { width: 75%; }
.bp-skel.shorter { width: 50%; }

.bp-arrow-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--green);
  font-weight: 600;
}

/* ─── USE CASES ─── */
.use-cases {
  padding: 110px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.use-header { text-align: center; margin-bottom: 64px; }

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

.use-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.use-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--green-gradient);
  opacity: 0;
  transition: opacity 0.3s;
}

.use-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-hover);
}

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

.use-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.use-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.use-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--gray);
}

/* ─── LIVE ACTIVITY ─── */
.live-activity {
  padding: 110px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.activity-feed {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.activity-item {
  background: white;
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.3s;
}

.activity-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-hover);
}

.activity-icon {
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.activity-info { flex: 1; min-width: 0; }

.activity-site {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--dark);
  margin-bottom: 2px;
  font-family: var(--font-display);
}

.activity-msg {
  font-size: 0.78rem;
  color: var(--gray);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.activity-count {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
}

.activity-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.12rem;
  color: var(--green);
}

.activity-sub {
  font-size: 0.65rem;
  color: var(--gray-light);
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  padding: 110px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.testi-header { text-align: center; margin-bottom: 56px; }

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

.testi-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testi-stars {
  color: #f59e0b;
  font-size: 0.88rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testi-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: 24px;
  font-style: italic;
}

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

.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
}

.testi-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--dark);
}

.testi-role {
  font-size: 0.75rem;
  color: var(--gray);
}

/* ─── FAQ SECTION ─── */
.faq-section {
  padding: 110px 80px;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 56px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item[open] {
  border-color: var(--border-hover);
}

.faq-question {
  padding: 22px 28px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  transition: color 0.2s;
  user-select: none;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--gray-light);
  transition: transform 0.3s, color 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] .faq-question::after {
  content: '−';
  color: var(--green);
}

.faq-question:hover { color: var(--green); }

.faq-answer {
  padding: 0 28px 22px;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--gray);
}

/* ─── FINAL CTA ─── */
.final-cta {
  padding: 130px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(15,163,107,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.final-cta-content { position: relative; z-index: 1; }

.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--dark);
  margin-bottom: 16px;
}

.final-cta p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 40px;
}

.final-trust-row {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.urgency-badge {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  margin-bottom: 36px;
  border: 1px solid rgba(15, 163, 107, 0.15);
}

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  padding: 64px 80px 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand { max-width: 280px; }

.footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 12px;
}

.footer-brandmark {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.footer-logo .brand-wordmark {
  color: white;
  font-size: 1.1rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}

.footer-columns {
  display: flex;
  gap: 64px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-bottom {
  padding-top: 24px;
  text-align: center;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.2);
}

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 120px 40px 60px;
    gap: 48px;
  }
  .hero::before, .hero::after { display: none; }
  .live-activity {
    grid-template-columns: 1fr;
    padding: 60px 40px;
    gap: 48px;
  }
  .bookmarklet-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .steps { flex-direction: column; }
  .step-connector {
    transform: rotate(90deg);
    width: 40px;
    height: 40px;
  }
  .features-grid,
  .use-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile-cta { display: inline-flex; }
  .features-section,
  .how-section, .use-cases, .testimonials,
  .bookmarklet-section, .faq-section, .final-cta { padding: 60px 40px; }
  .stats-bar { padding: 32px 40px; flex-wrap: wrap; }
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-brand { max-width: 100%; }
  .footer-columns { flex-wrap: wrap; gap: 40px; }
  footer { padding: 48px 40px 24px; }
}

@media (max-width: 768px) {
  nav { padding: 0 18px; }
  .hero { padding: 112px 28px 56px; gap: 40px; }
  .hero h1 { font-size: clamp(2.2rem, 8.5vw, 3rem); line-height: 1.12; }
  .hero-sub, .section-p { max-width: 100%; }
  .browser-mockup { max-width: 100%; border-radius: 16px; }
  .floating-card { display: none; }
  .features-section, .live-activity,
  .how-section, .use-cases, .testimonials,
  .bookmarklet-section, .faq-section, .final-cta { padding: 56px 28px; }
  .stats-bar { justify-content: center; }
  .bookmarklet-inner { gap: 36px; }
}

@media (max-width: 640px) {
  .hero { padding: 104px 20px 48px; gap: 34px; min-height: auto; }
  .features-section, .live-activity,
  .how-section, .use-cases, .testimonials,
  .bookmarklet-section, .faq-section, .final-cta { padding: 52px 20px; }
  .stats-bar { padding: 24px 20px; gap: 16px; justify-content: flex-start; }
  .stat-item { flex: 1 1 calc(50% - 8px); min-width: 135px; }
  .stat-divider { display: none; }
  .nav-brandmark { height: 28px; }
  .nav-mobile-cta { padding: 8px 14px; font-size: 0.78rem; }
  .floating-card { display: none; }
  .ticker-track { gap: 32px; }
  .ticker-item { font-size: 0.75rem; }
  .features-grid,
  .use-grid, .testi-grid { grid-template-columns: 1fr; }
  .hero-cta-group { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-cta-group .btn-primary,
  .hero-cta-group .btn-ghost { justify-content: center; width: 100%; }
  .hero-sub { font-size: 1rem; line-height: 1.6; }
  .live-badge { max-width: 100%; }
  .live-badge span { white-space: normal; }
  .hero-trust { flex-direction: column; gap: 12px; }
  .browser-content { grid-template-columns: 1fr; }
  .chat-sidebar { display: none; }
  .activity-item { padding: 14px; gap: 10px; align-items: flex-start; }
  .activity-count { align-items: flex-start; }
  .activity-msg {
    white-space: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
  }
  .bookmarklet-btn { font-size: 0.9rem; padding: 14px 26px; }
  .bookmarklet-card { padding: 28px 20px; }
  .footer-columns { gap: 24px; }
  footer { padding: 40px 20px 20px; }
  .final-trust-row { gap: 16px; }
}

@media (max-width: 420px) {
  nav { padding: 0 12px; height: 64px; }
  .hero { padding: 96px 14px 44px; }
  .features-section, .live-activity,
  .how-section, .use-cases, .testimonials,
  .bookmarklet-section, .faq-section, .final-cta { padding: 44px 14px; }
  .stats-bar { padding: 20px 14px; }
  footer { padding: 32px 14px 16px; }
  .nav-brandmark { height: 26px; }
  .nav-mobile-cta { padding: 7px 10px; font-size: 0.72rem; }
  .footer-columns { flex-direction: column; gap: 28px; }
  .section-h2 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
