:root {
  --bg: #0B1628;
  --bg-alt: #0F1D32;
  --surface: #162840;
  --border: #1E3A5F;
  --fg: #E8F0FF;
  --fg-muted: #7A9CC6;
  --lime: #B4FF00;
  --lime-dim: rgba(180, 255, 0, 0.12);
  --red: #FF6B6B;
  --yellow: #FFD166;
  --green: #06D6A0;
  --font-head: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(11, 22, 40, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
}
.nav-accent { color: var(--lime); }
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 120px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.hero-left { display: flex; flex-direction: column; gap: 32px; }
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lime);
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--fg);
}
.lime { color: var(--lime); }
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
}

/* Widget */
.hero-widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  max-width: 500px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}
.widget-header {
  background: var(--bg-alt);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}
.widget-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.widget-dot.red { background: var(--red); }
.widget-dot.yellow { background: var(--yellow); }
.widget-dot.green { background: var(--green); }
.widget-title {
  font-size: 0.7rem;
  color: var(--fg-muted);
  margin-left: 8px;
  font-family: var(--font-head);
}
.widget-body { padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.email-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
}
.email-row.new { border-left: 3px solid var(--green); }
.email-row.cold { border-left: 3px solid var(--lime); background: var(--lime-dim); }
.email-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  font-weight: 600;
  font-family: var(--font-head);
  color: var(--fg-muted);
  flex-shrink: 0;
}
.email-meta { flex: 1; min-width: 0; }
.email-name { display: block; font-size: 0.8rem; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.email-subject { display: block; font-size: 0.72rem; color: var(--fg-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.badge {
  font-size: 0.65rem;
  padding: 3px 8px;
  border-radius: 20px;
  font-weight: 500;
  flex-shrink: 0;
  white-space: nowrap;
}
.badge-green { background: rgba(6, 214, 160, 0.15); color: var(--green); }
.badge-lime { background: rgba(180, 255, 0, 0.15); color: var(--lime); }
.badge-muted { background: rgba(122, 156, 198, 0.15); color: var(--fg-muted); }

/* Hero right stats */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}
.hero-stat-block {
  padding: 28px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--lime);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-top: 8px;
  line-height: 1.5;
}

/* ── TRACKING ── */
.tracking {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px;
}
.tracking-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.tracking-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-weight: 500;
}
.tracking-icon { color: var(--lime); display: flex; }
.tracking-sep {
  width: 1px;
  height: 20px;
  background: var(--border);
  margin: 0 24px;
}

/* ── SHARED SECTION ── */
.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 48px;
}

/* ── HOW ── */
.how { padding: 96px 24px; }
.how-inner { max-width: 1200px; margin: 0 auto; }
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  width: 80px;
}
.step-content h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.step-content p { color: var(--fg-muted); max-width: 600px; line-height: 1.7; }

/* ── FEATURES ── */
.features {
  background: var(--bg-alt);
  padding: 96px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.features-inner { max-width: 1200px; margin: 0 auto; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.feature-card {
  background: var(--bg-alt);
  padding: 36px 32px;
  transition: background 0.2s;
}
.feature-card:hover { background: var(--surface); }
.feature-icon {
  width: 48px; height: 48px;
  background: var(--lime-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.feature-card p { font-size: 0.88rem; color: var(--fg-muted); line-height: 1.65; }

/* ── OUTCOMES ── */
.outcomes { padding: 96px 24px; }
.outcomes-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.outcomes-body {
  color: var(--fg-muted);
  line-height: 1.7;
  font-size: 1rem;
  max-width: 420px;
  margin-top: 20px;
}
.outcomes-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.outcome-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.outcome-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--lime);
  line-height: 1;
  min-width: 80px;
}
.outcome-label { font-size: 0.9rem; color: var(--fg-muted); }

/* ── CLOSING ── */
.closing {
  background: linear-gradient(135deg, var(--bg) 0%, #0D2B1E 100%);
  padding: 120px 24px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.closing-inner { max-width: 640px; margin: 0 auto; }
.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--fg);
}
.closing-sub { font-size: 1.1rem; color: var(--fg-muted); line-height: 1.7; }

/* ── FOOTER ── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 32px 24px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
}
.footer-copy { font-size: 0.8rem; color: var(--fg-muted); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; padding-top: 100px; gap: 40px; }
  .hero-right { display: none; }
  .nav-tagline { display: none; }
  .tracking-inner { flex-direction: column; gap: 16px; }
  .tracking-sep { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .outcomes-inner { grid-template-columns: 1fr; }
  .step-num { font-size: 2rem; width: 48px; }
  .footer-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 2.2rem; }
  .outcomes-right { gap: 8px; }
  .outcome-stat { padding: 16px 20px; }
}

/* ── DEMO ── */
.demo {
  background: var(--bg-alt);
  padding: 96px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.demo-inner { max-width: 1200px; margin: 0 auto; }
.demo-sub {
  color: var(--fg-muted);
  font-size: 1rem;
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.demo-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
  min-height: 420px;
}
.demo-input-pane {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-right: 1px solid var(--border);
  gap: 16px;
}
.demo-samples { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.demo-samples-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-weight: 500;
  flex-basis: 100%;
}
.demo-sample-btn {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.78rem;
  color: var(--fg-muted);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  font-family: var(--font-body);
}
.demo-sample-btn:hover { border-color: var(--lime); color: var(--fg); }
.demo-sample-btn.active { border-color: var(--lime); color: var(--lime); background: var(--lime-dim); }
.demo-textarea {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.6;
  padding: 14px 16px;
  resize: none;
  outline: none;
  transition: border-color 0.2s;
  min-height: 200px;
}
.demo-textarea:focus { border-color: var(--lime); }
.demo-textarea::placeholder { color: var(--fg-muted); opacity: 0.6; }
.demo-input-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.demo-hint { font-size: 0.75rem; color: var(--fg-muted); }
.demo-generate-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--lime);
  color: #0B1628;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 700;
  font-family: var(--font-head);
  cursor: pointer;
  transition: opacity 0.2s, transform 0.1s;
  white-space: nowrap;
}
.demo-generate-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.demo-generate-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.btn-icon { font-size: 1rem; }

/* Output pane */
.demo-output-pane {
  display: flex;
  align-items: stretch;
  position: relative;
  padding: 28px;
}
.demo-output-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  color: var(--fg-muted);
  font-size: 0.9rem;
  width: 100%;
}
.placeholder-icon { font-size: 2rem; color: var(--border); }
.placeholder-hint { font-size: 0.8rem; color: var(--border); }
.demo-output-result {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}
.demo-output-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.demo-output-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
}
.demo-copy-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--fg-muted);
  font-size: 0.78rem;
  padding: 4px 10px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  font-family: var(--font-body);
}
.demo-copy-btn:hover { border-color: var(--lime); color: var(--lime); }
.demo-draft-text {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--fg);
  white-space: pre-wrap;
  word-break: break-word;
  flex: 1;
  overflow-y: auto;
  max-height: 260px;
}
.demo-output-cta {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.demo-cta-text {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 10px;
}
.demo-waitlist-trigger-btn {
  background: transparent;
  border: 1px solid var(--lime);
  border-radius: 8px;
  color: var(--lime);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 18px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: var(--font-head);
  width: 100%;
  text-align: left;
}
.demo-waitlist-trigger-btn:hover { background: var(--lime-dim); }
.demo-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--fg-muted);
  font-size: 0.9rem;
  width: 100%;
}
.demo-spinner {
  width: 36px; height: 36px;
  border: 3px solid var(--border);
  border-top-color: var(--lime);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.demo-error {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: var(--red);
  font-size: 0.9rem;
  text-align: center;
}

/* Modal */
.demo-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.demo-modal {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 36px;
  max-width: 460px;
  width: 100%;
  position: relative;
}
.demo-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: transparent;
  border: none;
  color: var(--fg-muted);
  font-size: 1rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 4px;
  transition: color 0.2s;
}
.demo-modal-close:hover { color: var(--fg); }
.demo-modal-title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.demo-modal-sub {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 24px;
}
.demo-modal-form { display: flex; flex-direction: column; gap: 12px; }
.demo-modal-input {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s;
}
.demo-modal-input:focus { border-color: var(--lime); }
.demo-modal-input::placeholder { color: var(--fg-muted); opacity: 0.6; }
.demo-modal-submit {
  background: var(--lime);
  color: #0B1628;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-head);
  cursor: pointer;
  transition: opacity 0.2s;
  margin-top: 4px;
}
.demo-modal-submit:hover { opacity: 0.9; }
.demo-modal-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.demo-modal-success-icon {
  width: 48px; height: 48px;
  background: var(--lime-dim);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--lime);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.demo-modal-research-ask {
  margin-top: 20px;
  padding: 16px;
  background: rgba(180,255,0,0.06);
  border: 1px solid rgba(180,255,0,0.2);
  border-radius: 10px;
  font-size: 0.88rem;
  color: var(--fg);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .demo-card { grid-template-columns: 1fr; }
  .demo-input-pane { border-right: none; border-bottom: 1px solid var(--border); }
  .demo-output-pane { min-height: 280px; }
  .demo-modal { padding: 28px 20px; }
}

/* ── FORWARD-TO-TRACK SECTION ── */
.forward-section {
  padding: 96px 24px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.forward-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.forward-header {
  text-align: center;
  margin-bottom: 56px;
}
.forward-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 16px auto 0;
  line-height: 1.7;
}
.forward-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}
.forward-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.fwd-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.fwd-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--bg);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.fwd-step-body strong {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  color: var(--fg);
  margin-bottom: 6px;
}
.fwd-step-body p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}
.fwd-address-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  margin-top: 10px;
}
.fwd-address {
  font-family: monospace;
  font-size: 0.875rem;
  color: var(--lime);
  flex: 1;
  user-select: all;
}
.fwd-copy-btn {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--fg-muted);
  cursor: pointer;
  padding: 4px 10px;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s;
}
.fwd-copy-btn:hover { color: var(--lime); border-color: var(--lime); }

/* Preview mock email */
.fwd-preview { display: flex; flex-direction: column; gap: 10px; }
.fwd-preview-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.fwd-email-mock {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  flex: 1;
}
.fwd-email-header {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.fwd-email-meta { display: flex; flex-direction: column; gap: 3px; }
.fwd-from { font-size: 0.78rem; color: var(--fg-muted); }
.fwd-subject { font-size: 0.88rem; font-weight: 600; color: var(--fg); }
.fwd-email-body { padding: 18px; display: flex; flex-direction: column; gap: 12px; }
.fwd-email-line { font-size: 0.83rem; color: var(--fg-muted); }
.fwd-draft-block {
  background: var(--surface);
  border-radius: 8px;
  padding: 16px;
  font-size: 0.85rem;
  color: var(--fg);
  line-height: 1.65;
  font-family: Georgia, serif;
  border-left: 3px solid var(--lime);
}
.fwd-cta-block {
  background: rgba(180, 255, 0, 0.07);
  border: 1px solid rgba(180, 255, 0, 0.2);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 0.83rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Bottom CTA */
.forward-bottom-cta {
  text-align: center;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.forward-bottom-cta p {
  font-size: 0.95rem;
  color: var(--fg-muted);
}
.btn-forward-mail {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--lime);
  color: var(--bg);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity 0.15s;
}
.btn-forward-mail:hover { opacity: 0.88; }

@media (max-width: 900px) {
  .forward-card { grid-template-columns: 1fr; }
  .fwd-preview { display: none; }
}