/* ============================================================
   DRAFTLY LANDING — IDEA 1: NEBULA
   Dark cosmic theme matching the app aesthetic.
   Pure CSS, no frameworks. Modular & self-contained.
   ============================================================ */

:root {
  --bg: #0b0c15;
  --bg-elevated: #11121f;
  --bg-card: #161827;
  --bg-card-hover: #1c1e32;
  --border: #252842;
  --border-light: #2e3150;
  --text: #e8eaf0;
  --text-secondary: #9ca3bf;
  --text-muted: #6b7194;
  --accent: #6c5ce7;
  --accent-light: rgba(108,92,231,0.15);
  --accent-glow: rgba(108,92,231,0.35);
  --saffron: #F9DB79;
  --saffron-dark: #e8c96a;
  --success: #00cec9;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --radius: 14px;
  --radius-sm: 8px;
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  background: rgba(11,12,21,0.75);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(11,12,21,0.92);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 68px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), #a29bfe);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: #fff; font-size: 15px;
}
.brand-text { font-weight: 700; font-size: 17px; color: var(--text); letter-spacing: -0.3px; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-link {
  padding: 8px 16px; border-radius: 8px; color: var(--text-secondary);
  text-decoration: none; font-size: 14px; font-weight: 500;
  transition: all var(--transition);
}
.nav-link:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.nav-link-cta {
  background: linear-gradient(135deg, var(--accent), #a29bfe); color: #fff !important;
  font-weight: 600; box-shadow: 0 4px 16px rgba(108,92,231,0.25);
}
.nav-link-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(108,92,231,0.35); }
.nav-menu-btn { display: none; background: none; border: none; color: var(--text); font-size: 22px; cursor: pointer; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 140px 0 80px; overflow: hidden;
}
.hero-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; opacity: 0.6;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse at 50% 0%, transparent 0%, var(--bg) 70%);
}
.hero-container { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 0 24px; width: 100%; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: 999px; font-size: 13px; font-weight: 600;
  background: rgba(108,92,231,0.1); border: 1px solid rgba(108,92,231,0.2); color: var(--accent);
  margin-bottom: 32px; animation: fadeInUp 0.8s ease both;
}
.badge-pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--success);
  box-shadow: 0 0 0 0 rgba(0,206,201,0.5); animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0,206,201,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(0,206,201,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,206,201,0); }
}
.hero-title { font-size: clamp(40px, 6vw, 72px); font-weight: 900; line-height: 1.05; letter-spacing: -2px; margin-bottom: 24px; }
.title-line { display: block; animation: fadeInUp 0.8s 0.1s ease both; }
.title-line-gradient {
  background: linear-gradient(135deg, var(--accent) 0%, #a29bfe 50%, #fd79a8 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: fadeInUp 0.8s 0.2s ease both;
}
.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px); color: var(--text-secondary); max-width: 560px; line-height: 1.7; margin-bottom: 36px;
  animation: fadeInUp 0.8s 0.3s ease both;
}
.hero-actions { display: flex; gap: 14px; margin-bottom: 56px; animation: fadeInUp 0.8s 0.4s ease both; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 10px; font-size: 15px; font-weight: 700; border: none; cursor: pointer;
  transition: all var(--transition); font-family: inherit; text-decoration: none;
}
.btn-primary {
  background: var(--saffron); color: #1a1a1a;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.5); background: #fae291; }
.btn-glow { position: relative; }
.btn-glow::after {
  content: ''; position: absolute; inset: -2px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(249,219,121,0.3), transparent 60%);
  z-index: -1; opacity: 0; transition: opacity var(--transition); filter: blur(8px);
}
.btn-glow:hover::after { opacity: 1; }
.btn-secondary {
  background: transparent; color: var(--text); border: 1px solid var(--border-light);
}
.btn-secondary:hover { background: rgba(255,255,255,0.04); border-color: var(--text-secondary); }
.w-full { width: 100%; }
.hero-stats { display: flex; gap: 40px; animation: fadeInUp 0.8s 0.5s ease both; }
.stat-item {}
.stat-number { font-size: 32px; font-weight: 800; color: var(--text); letter-spacing: -1px; }
.stat-label { font-size: 13px; color: var(--text-muted); font-weight: 500; }

/* Floating cards */
.hero-visual { position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 420px; z-index: 2; pointer-events: none; }
.floating-card {
  background: rgba(22,24,39,0.85); backdrop-filter: blur(16px); border: 1px solid var(--border);
  border-radius: 16px; padding: 20px; box-shadow: 0 24px 64px rgba(0,0,0,0.4);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.card-main { position: relative; z-index: 3; }
.card-small { position: absolute; padding: 14px; font-size: 13px; color: var(--text-secondary); }
.card-offset-1 { right: 60px; top: -40px; z-index: 2; animation-delay: -2s; width: 220px; }
.card-offset-2 { right: -20px; bottom: -30px; z-index: 4; animation-delay: -4s; width: 200px; }
.fc-header { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.fc-dots { display: flex; gap: 4px; }
.fc-dots span { width: 8px; height: 8px; border-radius: 50%; background: var(--border-light); }
.fc-dots span:first-child { background: #ff6b6b; }
.fc-dots span:nth-child(2) { background: #fdcb6e; }
.fc-title { font-weight: 700; font-size: 14px; color: var(--text); }
.fc-progress { margin-bottom: 12px; }
.fc-progress-bar { height: 6px; background: var(--bg-elevated); border-radius: 3px; margin-bottom: 6px; overflow: hidden; }
.fc-progress-fill { height: 100%; background: linear-gradient(90deg, var(--accent), #a29bfe); border-radius: 3px; }
.fc-progress span { font-size: 11px; color: var(--text-muted); }
.fc-meta { display: flex; gap: 8px; }
.fc-chip { padding: 5px 10px; background: var(--bg-elevated); border-radius: 6px; font-size: 11px; font-weight: 600; color: var(--text-secondary); display: flex; align-items: center; gap: 5px; }
.fc-mini-row { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; font-size: 12px; }
.fc-mini-dot { width: 8px; height: 8px; border-radius: 50%; }
.fc-check { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.fc-check-box { width: 16px; height: 16px; border-radius: 5px; border: 2px solid var(--border-light); }
.fc-check-box.checked { background: var(--saffron); border-color: var(--saffron); position: relative; }
.fc-check-box.checked::after { content: '✓'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 10px; color: #1a1a1a; font-weight: 800; }

/* ---------- Logos ---------- */
.logos { padding: 40px 0; border-bottom: 1px solid rgba(255,255,255,0.03); overflow: hidden; }
.logos-label { text-align: center; font-size: 12px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.logos-track { position: relative; mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent); }
.logos-inner { display: flex; gap: 60px; animation: scroll 30s linear infinite; width: max-content; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.logo-item { font-size: 15px; font-weight: 700; color: var(--text-muted); white-space: nowrap; opacity: 0.6; transition: opacity 0.3s; }
.logo-item:hover { opacity: 1; }

/* ---------- Sections ---------- */
.section-header { margin-bottom: 56px; max-width: 640px; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; max-width: 680px; }
.section-kicker {
  display: inline-block; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent); margin-bottom: 12px;
}
.section-title { font-size: clamp(28px, 4vw, 42px); font-weight: 900; line-height: 1.15; letter-spacing: -1px; margin-bottom: 16px; }
.text-gradient {
  background: linear-gradient(135deg, var(--accent), #a29bfe);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.section-desc { font-size: 17px; color: var(--text-secondary); line-height: 1.7; }

/* ---------- Features ---------- */
.features { padding: 120px 0; }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px;
  transition: all var(--transition); position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), #a29bfe); opacity: 0; transition: opacity var(--transition);
}
.feature-card:hover { transform: translateY(-4px); border-color: var(--border-light); box-shadow: 0 16px 48px rgba(0,0,0,0.3); }
.feature-card:hover::before { opacity: 1; }
.feature-large { grid-column: span 2; grid-row: span 2; display: flex; flex-direction: column; }
.feature-wide { grid-column: span 2; }
.feature-icon { font-size: 32px; margin-bottom: 16px; }
.feature-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.3px; }
.feature-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.feature-visual { margin-top: auto; padding-top: 24px; }
.mini-board { display: flex; gap: 10px; }
.mb-col { flex: 1; background: var(--bg-elevated); border-radius: 10px; padding: 12px; }
.mb-header { font-size: 11px; font-weight: 800; text-transform: uppercase; color: var(--text-muted); letter-spacing: 0.5px; margin-bottom: 10px; }
.mb-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 6px; padding: 8px 10px; font-size: 12px; font-weight: 600; margin-bottom: 6px; color: var(--text-secondary); }
.mb-card.active { border-color: var(--accent); color: var(--accent); background: var(--accent-light); }
.feature-speed { margin-top: 16px; }
.speed-bar { height: 8px; background: var(--bg-elevated); border-radius: 4px; overflow: hidden; margin-bottom: 8px; }
.speed-fill { height: 100%; background: linear-gradient(90deg, var(--success), #74b9ff); border-radius: 4px; width: 0; transition: width 1.5s ease; }

/* ---------- Showcase ---------- */
.showcase { padding: 120px 0; background: linear-gradient(to bottom, transparent, rgba(108,92,231,0.03), transparent); }
.showcase-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.showcase-tabs { display: flex; gap: 8px; margin: 28px 0; flex-wrap: wrap; }
.showcase-tab {
  padding: 10px 18px; border-radius: 8px; border: 1px solid var(--border); background: var(--bg-card); color: var(--text-secondary);
  font-size: 13px; font-weight: 600; cursor: pointer; transition: all var(--transition); font-family: inherit;
}
.showcase-tab.active { background: var(--accent); color: #fff; border-color: var(--accent); box-shadow: 0 4px 16px rgba(108,92,231,0.25); }
.showcase-tab:hover:not(.active) { border-color: var(--border-light); color: var(--text); }
.showcase-panel { display: none; animation: fadeIn 0.4s ease; }
.showcase-panel.active { display: block; }
.showcase-list { list-style: none; }
.showcase-list li { padding: 10px 0; padding-left: 28px; position: relative; color: var(--text-secondary); font-size: 15px; line-height: 1.6; }
.showcase-list li::before { content: '✓'; position: absolute; left: 0; color: var(--success); font-weight: 800; }
.showcase-visual { position: relative; }
.showcase-frame {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; box-shadow: 0 32px 80px rgba(0,0,0,0.4);
  transform: perspective(1000px) rotateY(-5deg) rotateX(3deg); transition: transform 0.6s ease;
}
.showcase-frame:hover { transform: perspective(1000px) rotateY(-2deg) rotateX(1deg); }
.frame-header { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-bottom: 1px solid var(--border); background: var(--bg-elevated); }
.frame-dots { display: flex; gap: 6px; }
.frame-dots span { width: 10px; height: 10px; border-radius: 50%; }
.frame-dots span:nth-child(1) { background: #ff6b6b; }
.frame-dots span:nth-child(2) { background: #fdcb6e; }
.frame-dots span:nth-child(3) { background: var(--success); }
.frame-nav { font-size: 12px; color: var(--text-muted); font-weight: 600; }
.frame-body { display: flex; height: 320px; }
.frame-sidebar { width: 140px; border-right: 1px solid var(--border); padding: 12px; background: var(--bg-elevated); }
.fs-item { display: flex; align-items: center; gap: 8px; padding: 8px 10px; border-radius: 6px; font-size: 12px; color: var(--text-muted); font-weight: 600; margin-bottom: 4px; }
.fs-item.active { background: var(--accent-light); color: var(--accent); }
.frame-main { flex: 1; padding: 16px; }
.frame-stats { display: flex; gap: 12px; margin-bottom: 16px; }
.fstat { flex: 1; background: var(--bg-elevated); border-radius: 8px; padding: 12px; text-align: center; }
.fstat-num { font-size: 22px; font-weight: 800; color: var(--text); }
.fstat-label { font-size: 11px; color: var(--text-muted); font-weight: 600; margin-top: 2px; }
.fp-card { background: var(--bg-elevated); border-radius: 8px; padding: 12px; margin-bottom: 8px; border: 1px solid var(--border); position: relative; overflow: hidden; }
.fp-bar { position: absolute; top: 0; left: 0; height: 3px; width: 92%; background: linear-gradient(90deg, var(--accent), #a29bfe); }
.fp-title { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.fp-meta { font-size: 11px; color: var(--text-muted); font-weight: 600; }

/* ---------- Testimonials ---------- */
.testimonials { padding: 120px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px;
  transition: all var(--transition);
}
.testimonial-card:hover { border-color: var(--border-light); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.25); }
.testimonial-stars { color: var(--saffron); font-size: 16px; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-text { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.ta-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; color: #fff; font-size: 14px; }
.ta-name { font-weight: 700; font-size: 14px; color: var(--text); }
.ta-role { font-size: 12px; color: var(--text-muted); font-weight: 600; }

/* ---------- Pricing ---------- */
.pricing { padding: 120px 0; background: linear-gradient(to bottom, transparent, rgba(108,92,231,0.03), transparent); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.pricing-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px;
  transition: all var(--transition); position: relative;
}
.pricing-card:hover { border-color: var(--border-light); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.25); }
.pricing-popular { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), 0 16px 48px rgba(108,92,231,0.15); transform: scale(1.03); }
.pricing-popular:hover { transform: scale(1.03) translateY(-4px); }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--accent), #a29bfe); color: #fff; padding: 6px 16px; border-radius: 999px; font-size: 12px; font-weight: 800; }
.pricing-name { font-size: 18px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.pricing-price { font-size: 48px; font-weight: 900; color: var(--text); letter-spacing: -2px; line-height: 1; }
.pricing-period { font-size: 13px; color: var(--text-muted); font-weight: 600; margin-bottom: 24px; }
.pricing-features { list-style: none; margin-bottom: 28px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 14px; color: var(--text-secondary); font-weight: 500; }
.pricing-features .check { color: var(--success); font-weight: 800; }

/* ---------- CTA ---------- */
.cta { padding: 100px 0 120px; }
.cta-box { position: relative; background: var(--bg-card); border: 1px solid var(--border); border-radius: 24px; padding: 64px 48px; text-align: center; overflow: hidden; }
.cta-glow { position: absolute; top: -50%; left: -20%; width: 140%; height: 100%; background: radial-gradient(circle, rgba(108,92,231,0.12), transparent 60%); pointer-events: none; }
.cta-title { font-size: clamp(28px, 4vw, 40px); font-weight: 900; margin-bottom: 16px; letter-spacing: -1px; position: relative; }
.cta-desc { color: var(--text-secondary); font-size: 17px; max-width: 480px; margin: 0 auto 32px; position: relative; line-height: 1.7; }
.cta-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto 16px; position: relative; flex-wrap: wrap; }
.cta-input { flex: 1; padding: 14px 18px; border-radius: 10px; border: 1px solid var(--border); background: var(--bg-elevated); color: var(--text); font-size: 15px; font-family: inherit; outline: none; transition: all var(--transition); min-width: 200px; }
.cta-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-light); }
.cta-input::placeholder { color: var(--text-muted); }
.cta-note { font-size: 13px; color: var(--text-muted); position: relative; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid rgba(255,255,255,0.04); padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.footer-tagline { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-col h4 { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--text); margin-bottom: 20px; }
.footer-col a { display: block; color: var(--text-muted); text-decoration: none; font-size: 14px; font-weight: 500; padding: 6px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--border); font-size: 13px; color: var(--text-muted); font-weight: 500; flex-wrap: wrap; gap: 12px; }
.footer-made { display: flex; align-items: center; gap: 6px; }

/* ---------- Modal ---------- */
.modal-overlay { position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.65); backdrop-filter: blur(4px); display: none; align-items: center; justify-content: center; padding: 24px; opacity: 0; transition: opacity 0.3s ease; }
.modal-overlay.active { display: flex; opacity: 1; }
.modal { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; width: 100%; max-width: 440px; padding: 40px; position: relative; box-shadow: 0 32px 80px rgba(0,0,0,0.5); transform: translateY(20px) scale(0.98); transition: transform 0.3s ease; }
.modal-overlay.active .modal { transform: translateY(0) scale(1); }
.modal-close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border); background: none; color: var(--text-muted); font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.modal-close:hover { border-color: var(--text-secondary); color: var(--text); }
.modal-brand { display: flex; align-items: center; gap: 10px; justify-content: center; margin-bottom: 24px; }
.modal-title { font-size: 22px; font-weight: 800; text-align: center; margin-bottom: 8px; letter-spacing: -0.5px; }
.modal-desc { text-align: center; color: var(--text-secondary); font-size: 14px; margin-bottom: 24px; }
.modal-form { display: flex; flex-direction: column; gap: 12px; }
.modal-input { padding: 12px 14px; border-radius: 10px; border: 1px solid var(--border); background: var(--bg-elevated); color: var(--text); font-size: 14px; font-family: inherit; outline: none; transition: all var(--transition); }
.modal-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-light); }
.modal-input::placeholder { color: var(--text-muted); }
.modal-note { text-align: center; font-size: 12px; color: var(--text-muted); margin-top: 16px; }

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-visual { display: none; }
  .showcase-layout { grid-template-columns: 1fr; }
  .showcase-visual { order: -1; }
  .showcase-frame { transform: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-large { grid-column: span 2; grid-row: span 1; }
  .feature-wide { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); flex-direction: column; padding: 16px; gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-menu-btn { display: block; }
  .hero { padding: 120px 0 60px; min-height: auto; }
  .hero-title { letter-spacing: -1px; }
  .hero-stats { gap: 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-large, .feature-wide { grid-column: span 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-popular { transform: none; }
  .pricing-popular:hover { transform: translateY(-4px); }
  .cta-box { padding: 40px 24px; }
  .cta-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
