/* ═══════════════════════════════════════
   Salesforce Comet — Clean Minimal Styles
   Single accent. No gradients. Just clarity.
   ═══════════════════════════════════════ */

:root {
  --bg: #09090b;
  --bg-elevated: #111113;
  --bg-subtle: #18181b;
  --surface: rgba(255,255,255,0.04);
  --surface-hover: rgba(255,255,255,0.07);
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(255,255,255,0.14);
  --text: #fafafa;
  --text-secondary: #a1a1aa;
  --text-muted: #52525b;
  --accent: #7cb8c9;
  --accent-dim: rgba(124,184,201,0.1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; -webkit-font-smoothing: antialiased; }
body { background: var(--bg); color: var(--text); font-family: var(--font); font-size: 16px; line-height: 1.6; overflow-x: hidden; }
a { color: var(--accent); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: #9dd0de; }
img { max-width: 100%; display: block; }
strong { font-weight: 600; color: var(--text); }

/* ── Layout ── */
.section-wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

.section-head { text-align: center; margin-bottom: 64px; }
.section-head h2 { font-size: clamp(26px, 3.5vw, 38px); font-weight: 600; letter-spacing: -0.8px; line-height: 1.2; margin: 12px 0 14px; }
.section-head p { color: var(--text-secondary); font-size: 16px; max-width: 520px; margin: 0 auto; line-height: 1.7; }

.section-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  color: var(--text-secondary);
  border: 1px solid var(--border);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.section-tag:hover { border-color: var(--border-hover); color: var(--text); transform: translateY(-1px); }

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal.shown {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal:nth-child(6) { transition-delay: 0.5s; }

/* ═══════════════════════════════════════
   NAV
   ═══════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 64px; display: flex; align-items: center; justify-content: center;
  background: rgba(9,9,11,0.6); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled { background: rgba(9,9,11,0.95); box-shadow: 0 1px 0 var(--border); }
.nav-inner { max-width: 1100px; width: 100%; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); font-weight: 500; font-size: 14px; letter-spacing: -0.1px; transition: opacity 0.3s ease; }
.nav-brand:hover { opacity: 0.8; }
.nav-logo { width: 28px; height: 28px; border-radius: 6px; transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1); }
.nav-brand:hover .nav-logo { transform: scale(1.1); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { color: var(--text-secondary); font-size: 13px; font-weight: 500; transition: color 0.3s ease; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px; background: var(--accent); transition: width 0.4s cubic-bezier(0.16,1,0.3,1); }
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px; border-radius: 999px; background: rgba(255,255,255,0.9); color: var(--bg) !important;
  font-weight: 500; font-size: 13px; transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  line-height: 1;
  white-space: nowrap;
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(255,255,255,0.1); color: var(--bg) !important; }
.nav-cta:active { transform: translateY(0); }
.nav-cta img { width: 14px; height: 14px; flex-shrink: 0; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 20px; height: 1.5px; background: var(--text-secondary); border-radius: 1px; transition: 0.3s ease; }

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero { padding: 160px 24px 100px; text-align: center; }
.hero-badge { animation: fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.1s both; }
.hero-title { animation: fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.2s both; }
.hero-desc { animation: fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.35s both; }
.hero-actions { animation: fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.5s both; }
.hero-proof { animation: fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.65s both; }
.hero-shortcut { animation: fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.8s both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-inner { max-width: 720px; margin: 0 auto; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 16px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.03);
  color: var(--text-secondary); font-size: 12px; font-weight: 500; margin-bottom: 32px;
}
.hero-badge::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: #34d399; animation: pulse 2.5s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.85); } }

.hero-title {
  font-size: clamp(34px, 5.5vw, 56px); font-weight: 600; line-height: 1.1;
  letter-spacing: -1.5px; margin-bottom: 24px;
}
.hero-accent { color: var(--accent); }
.hero-feature-wrap {
  display: inline-flex; flex-direction: column; align-items: center;
  min-width: min(100%, 620px); min-height: 1.42em; margin-top: 2px;
  cursor: default;
}
.hero-feature {
  display: block; min-height: 1.1em;
  background: linear-gradient(100deg, #7cb8c9 0%, #75d7c0 52%, #8ab9e8 100%);
  background-size: 200% 100%; background-clip: text; -webkit-background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  animation: heroFeatureShimmer 4s ease-in-out infinite;
  transition: opacity 180ms ease, transform 180ms ease, filter 180ms ease;
}
.hero-feature.is-leaving { opacity: 0; transform: translateY(-10px); filter: blur(4px); }
.hero-feature.is-entering { animation: heroFeatureEnter 420ms cubic-bezier(0.16,1,0.3,1), heroFeatureShimmer 4s ease-in-out infinite; }
.hero-feature-meta {
  display: flex; align-items: center; gap: 10px; width: min(250px, 65%);
  margin-top: 12px; color: var(--text-muted); font-family: var(--mono);
  font-size: 9px; font-weight: 600; letter-spacing: 0.08em;
}
.hero-feature-count { min-width: 34px; text-align: right; }
.hero-feature-track {
  position: relative; flex: 1; height: 2px; overflow: hidden;
  border-radius: 999px; background: rgba(255,255,255,0.09);
}
.hero-feature-track span {
  position: absolute; inset: 0 auto 0 0; width: 0;
  border-radius: inherit; background: linear-gradient(90deg, var(--accent), #34d399);
  box-shadow: 0 0 12px rgba(124,184,201,0.5);
}
@keyframes heroCountdown { from { width: 0; } to { width: 100%; } }
@keyframes heroFeatureEnter {
  from { opacity: 0; transform: translateY(12px); filter: blur(5px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes heroFeatureShimmer { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

.hero-desc { color: var(--text-muted); font-size: 16px; line-height: 1.7; margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto; }

.hero-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }

.hero-proof { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 13px; color: var(--text-muted); }
.hero-stars { display: inline-flex; gap: 1px; align-items: center; }
.hero-proof strong { color: var(--text-secondary); font-weight: 600; }

.hero-shortcut { margin-top: 48px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.shortcut-keys { display: flex; align-items: center; gap: 10px; }
kbd {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 44px; height: 36px; padding: 0 10px; border-radius: 6px;
  background: var(--bg-subtle); border: 1px solid var(--border); border-bottom-width: 2px;
  font-family: var(--font); font-size: 12px; font-weight: 600; color: var(--text-secondary);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), border-color 0.3s ease, box-shadow 0.3s ease;
}
kbd:hover { transform: translateY(-2px); border-color: var(--border-hover); box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.kbd-plus { color: var(--text-muted); font-size: 12px; }
.shortcut-label { display: block; font-size: 11px; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 999px;
  font-weight: 600; font-size: 14px; cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1); text-decoration: none; border: none;
}
.btn-primary { background: rgba(255,255,255,0.9); color: var(--bg); }
.btn-primary:hover { opacity: 0.92; color: var(--bg); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,255,255,0.08); }
.btn-primary:active { transform: translateY(0); box-shadow: 0 2px 8px rgba(255,255,255,0.04); }
.btn-ghost { background: transparent; border: 1px solid var(--border); color: var(--text-secondary); }
.btn-ghost:hover { border-color: var(--border-hover); color: var(--text); background: var(--surface); transform: translateY(-1px); }
.btn-ghost:active { transform: translateY(0); }
.btn-lg { padding: 14px 36px; font-size: 15px; }

/* ═══════════════════════════════════════
   SHOWCASE
   ═══════════════════════════════════════ */
.showcase { padding: 100px 24px 120px; }

.browser {
  max-width: 860px; margin: 0 auto; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border-hover); background: var(--bg-elevated);
  box-shadow: 0 24px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.03);
  transition: box-shadow 0.5s ease, transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.browser:hover { box-shadow: 0 32px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05); transform: translateY(-4px); }
.browser-bar { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-bottom: 1px solid var(--border); }
.browser-dots { display: flex; gap: 7px; }
.browser-dots span { width: 10px; height: 10px; border-radius: 50%; transition: transform 0.3s ease; }
.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #febc2e; }
.browser-dots span:nth-child(3) { background: #28c840; }
.browser:hover .browser-dots span { transform: scale(1.15); }
.browser-url { flex: 1; display: flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 6px; background: var(--surface); color: var(--text-muted); font-size: 12px; font-family: var(--mono); }
.browser-url svg { color: #34d399; flex-shrink: 0; }

.browser-body { position: relative; padding: 48px 32px 64px; display: flex; align-items: center; justify-content: center; background: var(--bg-elevated); }
.browser-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.2); backdrop-filter: blur(3px); }

.palette {
  position: relative; z-index: 2; width: 480px; max-width: 100%;
  border-radius: 12px; background: rgba(15,15,18,0.98);
  border: 1px solid rgba(255,255,255,0.12); overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6), 0 0 80px rgba(56,189,248,0.04);
  animation: scaleIn 0.6s cubic-bezier(0.16,1,0.3,1) 0.3s both;
}
.palette-search { display: flex; align-items: center; gap: 10px; padding: 14px 18px; border-bottom: 1px solid var(--border); }
.palette-search svg { color: var(--accent); flex-shrink: 0; }
.palette-typed { font-size: 14px; color: var(--text-secondary); }
.palette-typed span { color: var(--text); }
.palette-cursor { width: 2px; height: 16px; background: var(--accent); border-radius: 1px; animation: blink 0.9s ease-in-out infinite; }
.palette-results { padding: 6px; }
.palette-row {
  display: flex; align-items: center; gap: 12px; padding: 10px 14px; border-radius: 8px;
  transition: background 0.3s ease, transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.palette-row.active { background: rgba(124,184,201,0.06); }
.palette-row:hover { background: rgba(255,255,255,0.03); transform: translateX(4px); }
.palette-icon { width: 28px; height: 28px; display: grid; place-items: center; font-size: 14px; opacity: 0.7; flex-shrink: 0; transition: opacity 0.3s ease, transform 0.3s ease; }
.palette-row:hover .palette-icon { opacity: 1; transform: scale(1.1); }
.palette-info { flex: 1; min-width: 0; }
.palette-info strong { font-size: 13px; font-weight: 500; }
.palette-info span { display: block; font-size: 11px; color: var(--text-muted); margin-top: 1px; }
.palette-tag { padding: 2px 8px; border-radius: 4px; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.4px; }
.tag-cyan { background: rgba(56,189,248,0.1); color: #38bdf8; }
.tag-purple { background: rgba(167,139,250,0.1); color: #a78bfa; }
.tag-teal { background: rgba(45,212,191,0.1); color: #2dd4bf; }
.tag-pink { background: rgba(244,114,182,0.1); color: #f472b6; }

.palette-footer { padding: 10px 18px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.palette-hints { display: flex; align-items: center; gap: 4px; color: var(--text-muted); font-size: 11px; }
.palette-hints kbd { min-width: auto; height: 20px; padding: 0 5px; font-size: 10px; border-bottom-width: 1px; }
.palette-brand { font-size: 11px; color: var(--text-muted); font-weight: 500; }

/* ═══════════════════════════════════════
   SCREENSHOTS SLIDESHOW
   ═══════════════════════════════════════ */
.slideshow-section { padding: 80px 24px 120px; }
.slideshow-container {
  max-width: 860px; margin: 0 auto;
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border-hover); background: var(--bg-elevated);
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
  position: relative; aspect-ratio: 16/9;
}
.slideshow-loading {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  height: 100%; gap: 12px; color: var(--text-muted); font-size: 13px;
}
.slideshow-spinner {
  width: 24px; height: 24px; border: 2px solid var(--border);
  border-top-color: var(--accent); border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.slideshow-fallback {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  height: 100%; gap: 16px; color: var(--text-muted); font-size: 13px; padding: 40px;
}
.slideshow-fallback svg { opacity: 0.3; }
.slideshow-fallback a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  color: var(--text-secondary); font-size: 13px; font-weight: 500;
  transition: all 0.3s ease;
}
.slideshow-fallback a:hover { background: rgba(255,255,255,0.1); color: var(--text); }
.slideshow-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: scale(1.02);
}
.slideshow-slide.active { opacity: 1; transform: scale(1); }
.slideshow-slide img { width: 100%; height: 100%; object-fit: cover; }
.slideshow-arrows {
  position: absolute; inset: 0; display: flex; align-items: center;
  justify-content: space-between; padding: 16px; pointer-events: none; opacity: 0;
  transition: opacity 0.3s ease;
}
.slideshow-container:hover .slideshow-arrows { opacity: 1; }
.slideshow-arrow {
  pointer-events: auto; width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.1);
  color: #fff; display: grid; place-items: center; cursor: pointer;
  transition: all 0.3s ease;
}
.slideshow-arrow:hover { background: rgba(0,0,0,0.8); border-color: rgba(255,255,255,0.2); transform: scale(1.1); }
.slideshow-nav {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px;
}
.slideshow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.3); border: none; cursor: pointer;
  transition: all 0.3s ease;
}
.slideshow-dot.active { background: #fff; transform: scale(1.3); }

/* ═══════════════════════════════════════
   STATS
   ═══════════════════════════════════════ */
.stats { padding: 64px 24px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-inner { max-width: 900px; margin: 0 auto; display: flex; justify-content: center; }
.stat { flex: 1; text-align: center; padding: 20px; }
.stat-num {
  display: block; font-size: 38px; font-weight: 600; color: var(--text); line-height: 1; letter-spacing: -1px;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.stat:hover .stat-num { transform: scale(1.05); }
.stat-label { display: block; font-size: 13px; color: var(--text-muted); margin-top: 6px; }
.stat-divider { width: 1px; background: var(--border); margin: 8px 0; }

/* ═══════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════ */
.features { padding: 120px 24px; background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 30%, var(--bg-elevated) 70%, var(--bg) 100%); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }

.card {
  padding: 28px 24px; border-radius: 10px;
  background: var(--surface); border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  position: relative;
}
.card:hover {
  border-color: var(--border-hover); background: var(--surface-hover);
  transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.card-wide { grid-column: span 2; }
.card-icon {
  width: 36px; height: 36px; border-radius: 8px; display: grid; place-items: center;
  margin-bottom: 14px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05);
  color: var(--c, var(--accent)); line-height: 0; opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.card:hover .card-icon { opacity: 1; transform: scale(1.1); }
.card-icon svg { color: var(--c, var(--accent)); }
.card h3 { font-size: 15px; font-weight: 500; margin-bottom: 8px; letter-spacing: -0.1px; }
.card p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

/* ═══════════════════════════════════════
   STEPS
   ═══════════════════════════════════════ */
.steps { padding: 120px 24px; background: var(--bg-elevated); }
.steps-row { display: flex; align-items: center; justify-content: center; gap: 0; max-width: 800px; margin: 0 auto; }
.step { flex: 1; text-align: center; padding: 0 20px; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  margin: 0 auto 20px; border: 1.5px solid var(--border-hover);
  font-weight: 700; font-size: 20px; color: var(--text); background: var(--bg);
  transition: all 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
.step:hover .step-num {
  border-color: var(--accent); box-shadow: 0 0 24px rgba(124,184,201,0.12);
  transform: scale(1.12) rotate(360deg);
}
.step h4 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.step p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; max-width: 200px; margin: 0 auto; }
.step-line { width: 48px; height: 1px; background: var(--border); flex-shrink: 0; margin-top: -28px; }

/* ═══════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════ */
.testimonials { padding: 120px 24px; background: linear-gradient(180deg, var(--bg) 0%, rgba(56,189,248,0.015) 50%, var(--bg) 100%); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.testimonial {
  padding: 24px; border-radius: 10px; background: var(--surface); border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.testimonial:hover {
  border-color: var(--border-hover); transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 12px; align-items: center; }
.testimonial p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar {
  width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center;
  font-size: 11px; font-weight: 700; color: #fff; flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.testimonial:hover .testimonial-avatar { transform: scale(1.1); }
.testimonial-author strong { display: block; font-size: 13px; font-weight: 500; }
.testimonial-author span { display: block; font-size: 11px; color: var(--text-muted); margin-top: 1px; }

/* ═══════════════════════════════════════
   PRIVACY
   ═══════════════════════════════════════ */
.privacy { padding: 120px 24px; }
.privacy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.privacy-text h2 { font-size: 30px; font-weight: 600; letter-spacing: -0.8px; margin: 12px 0 14px; line-height: 1.2; }
.privacy-text p { color: var(--text-secondary); font-size: 16px; line-height: 1.7; }
.privacy-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.privacy-card {
  display: flex; gap: 12px; padding: 18px; border-radius: 10px;
  background: var(--surface); border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1); align-items: flex-start;
}
.privacy-card:hover {
  border-color: var(--border-hover); background: var(--surface-hover);
  transform: translateY(-2px);
}
.pci {
  font-size: 18px; flex-shrink: 0; line-height: 1;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.privacy-card:hover .pci { transform: scale(1.15); }
.privacy-card h4 { font-size: 13px; font-weight: 600; margin-bottom: 3px; }
.privacy-card p { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* ═══════════════════════════════════════
   CTA
   ═══════════════════════════════════════ */
.cta { padding: 120px 24px; border-top: 1px solid var(--border); background: linear-gradient(180deg, var(--bg) 0%, rgba(56,189,248,0.02) 50%, var(--bg) 100%); }
.cta-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.cta-inner h2 { font-size: clamp(26px, 3.5vw, 36px); font-weight: 600; letter-spacing: -0.8px; margin-bottom: 14px; line-height: 1.2; }
.cta-inner p { color: var(--text-secondary); font-size: 16px; margin-bottom: 32px; line-height: 1.7; }
.cta-note { font-size: 13px !important; color: var(--text-muted) !important; margin-top: 16px !important; margin-bottom: 0 !important; }

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer { padding: 40px 24px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-brand { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; }
.footer-logo { width: 24px; height: 24px; border-radius: 5px; transition: transform 0.3s ease; }
.footer-brand:hover .footer-logo { transform: rotate(10deg); }
.footer-links { display: flex; gap: 24px; list-style: none; }
.footer-links a { color: var(--text-muted); font-size: 13px; transition: color 0.3s ease, transform 0.3s ease; }
.footer-links a:hover { color: var(--text-secondary); transform: translateY(-1px); }
.footer-copy { color: var(--text-muted); font-size: 12px; }

/* ── Animations ── */
@keyframes blink { 0%,45% { opacity: 1; } 50%,100% { opacity: 0; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ── Smooth page load ── */
@keyframes pageReveal {
  from { opacity: 0; }
  to { opacity: 1; }
}
body { animation: pageReveal 0.4s ease-out; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .card-wide { grid-column: span 2; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0;
    background: var(--bg); padding: 24px; gap: 20px; border-bottom: 1px solid var(--border);
    animation: slideDown 0.3s ease-out;
  }
  .hero { padding: 120px 24px 60px; }
  .hero-title { font-size: 34px !important; letter-spacing: -1.5px; }
  .hero-feature-wrap { min-height: 1.68em; }
  .hero-feature-meta { margin-top: 8px; width: min(210px, 72%); }
  .features-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .card-wide { grid-column: span 1; }
  .privacy-grid { grid-template-columns: 1fr; gap: 32px; }
  .privacy-cards { grid-template-columns: 1fr; }
  .steps-row { flex-direction: column; gap: 20px; }
  .step-line { width: 1px; height: 24px; margin: 0; }
  .stats-inner { flex-direction: column; gap: 16px; }
  .stat-divider { width: 40px; height: 1px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-feature, .hero-feature.is-entering, .hero-feature.is-leaving {
    animation: none; transition: none; filter: none; transform: none;
  }
  .hero-feature-track span { width: 100%; }
}
