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

:root {
  --blue:    #3b82f6;
  --blue-dk: #2563eb;
  --blue-lt: #1e3a5f;
  --blue-xlt:#0f2040;
  --gray-50: #0a0e1a;
  --gray-100:#1e293b;
  --gray-200:#243656;
  --gray-400:#64748b;
  --gray-500:#94a3b8;
  --gray-700:#cbd5e1;
  --gray-900:#f1f5f9;
  --green:   #22c55e;
  --amber:   #f59e0b;
  --red:     #ef4444;
  --r:       8px;
}

html { scroll-behavior: smooth; font-size: 16px; }
html { scroll-snap-type: y mandatory; overflow-y: scroll; height: 100%; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: #080c18; color: var(--gray-700); line-height: 1.6; height: 100%; }

/* ── Pages ────────────────────────────────────────────────────────────── */
.page-wrapper {}
.page { scroll-snap-align: start; height: 100dvh; overflow: hidden; position: relative; }

/* ── Page dots ────────────────────────────────────────────────────────── */
.page-dots { position: fixed; right: 20px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 10px; z-index: 9999; }
.page-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.2); cursor: pointer; transition: background .2s, transform .2s; border: none; padding: 0; }
.page-dot.active { background: var(--blue); transform: scale(1.4); }

a { text-decoration: none; color: inherit; }
.hidden { display: none !important; }
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ── Announcement bar ─────────────────────────────────────────────────── */
.annbar {
  background: #04060f; color: #fff;
  text-align: center; padding: 10px 20px; font-size: 13px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  border-bottom: 1px solid var(--gray-200);
}
.annbar-dot { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; flex-shrink: 0; }
.annbar a { color: #93c5fd; font-weight: 600; }
.annbar a:hover { text-decoration: underline; }

/* ── Nav ─────────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(8,12,24,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
}
.nav-inner {
  max-width: 1080px; margin: 0 auto; padding: 0 24px;
  height: 64px; display: flex; align-items: center; gap: 40px;
}
.nav-logo {
  font-size: 17px; font-weight: 800; color: var(--gray-900);
  display: flex; align-items: center; gap: 6px; white-space: nowrap;
}
.nav-logo-icon { color: var(--blue); font-size: 20px; }
.nav-links { display: flex; gap: 28px; flex: 1; }
.nav-links a { font-size: 14px; color: var(--gray-500); font-weight: 500; transition: color .15s; }
.nav-links a:hover { color: var(--gray-900); }
.nav-actions { display: flex; align-items: center; gap: 12px; white-space: nowrap; }
.nav-signin { font-size: 14px; color: var(--gray-700); font-weight: 500; padding: 8px 14px; border-radius: var(--r); transition: background .15s; }
.nav-signin:hover { background: var(--gray-100); }
.nav-cta {
  font-size: 14px; font-weight: 700; color: #fff;
  background: var(--blue); padding: 9px 18px; border-radius: var(--r);
  transition: background .15s, transform .1s;
}
.nav-cta:hover { background: var(--blue-dk); }

/* ── Hero ────────────────────────────────────────────────────────────── */
.hero {
  background: #080c18;
  padding: 40px 24px;
  overflow: hidden;
  text-align: center;
  position: relative;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

/* Dashboard blurred background */
.hero-dash-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
/* Subtle dot-grid background */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, #1e293b 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .6;
  pointer-events: none;
}
/* Blue glow behind content */
.hero::after {
  content: '';
  position: absolute; top: 40%; left: 50%; transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(59,130,246,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }

.hero-brand {
  font-size: clamp(36px, 5.5vw, 62px); font-weight: 800; color: var(--gray-900);
  display: flex; align-items: center; justify-content: center; gap: 12px; width: 100%;
  margin-bottom: 8px; line-height: 1.12; letter-spacing: -.5px;
}
.hero-brand .nav-logo-icon { font-size: clamp(32px, 5vw, 56px); }
.hero-eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 600; letter-spacing: .8px; text-transform: uppercase;
  color: var(--blue); background: var(--blue-xlt);
  padding: 5px 14px; border-radius: 20px; border: 1px solid var(--blue-lt);
  margin-bottom: 28px;
}
.hero-title {
  font-size: clamp(36px, 5.5vw, 62px);
  font-weight: 800; line-height: 1.12; letter-spacing: -.5px;
  color: var(--gray-900); margin-bottom: 20px;
}
.hero-title-accent { color: var(--blue); display: block; }

.hero-sub {
  font-size: 18px; color: var(--gray-500); line-height: 1.7;
  max-width: 520px; margin: 0 auto 36px;
}

.hero-form {
  display: flex; gap: 10px; justify-content: center;
  max-width: 480px; margin: 0 auto 14px;
}
.hero-form input {
  flex: 1; padding: 13px 16px; border: 1.5px solid var(--gray-200);
  border-radius: var(--r); font-size: 14px; color: var(--gray-900);
  background: rgba(255,255,255,.05);
  outline: none; transition: border-color .15s, box-shadow .15s;
}
.hero-form input::placeholder { color: var(--gray-400); }
.hero-form input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(59,130,246,.15); }
.hero-form button {
  padding: 13px 22px; background: var(--blue); color: #fff;
  border: none; border-radius: var(--r); font-size: 14px; font-weight: 700;
  cursor: pointer; white-space: nowrap; transition: background .15s;
}
.hero-form button:hover { background: var(--blue-dk); }

.hero-fine { font-size: 12px; color: var(--gray-400); margin-bottom: 56px; }

/* ── Product screenshot ───────────────────────────────────────────────── */
.hero-screenshot {
  position: absolute;
  bottom: -30px; left: 50%; transform: translateX(-50%);
  width: 85%; max-width: 900px;
  z-index: 0;
  opacity: 0.12;
  filter: blur(3px) saturate(0.5);
  pointer-events: none;
  overflow: hidden;
}
.screenshot-chrome {
  border-radius: 12px 12px 0 0;
  border: 1px solid var(--gray-200); border-bottom: none;
  box-shadow: 0 -4px 40px rgba(0,0,0,.3), 0 0 0 1px rgba(0,0,0,.2);
  overflow: hidden;
}
.chrome-bar {
  background: var(--gray-100); padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid var(--gray-200);
}
.chrome-dots { display: flex; gap: 6px; }
.chrome-dots span { width: 11px; height: 11px; border-radius: 50%; }
.chrome-dots span:nth-child(1) { background: #ef4444; }
.chrome-dots span:nth-child(2) { background: #f59e0b; }
.chrome-dots span:nth-child(3) { background: #22c55e; }
.chrome-url {
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: 6px; padding: 4px 14px;
  font-size: 12px; color: var(--gray-500); flex: 1; text-align: center;
}

.screenshot-body { display: flex; min-height: 280px; }

.dash-sidebar {
  width: 180px; flex-shrink: 0;
  background: var(--gray-50); border-right: 1px solid var(--gray-200);
  padding: 20px 12px;
}
.dash-nav-item {
  font-size: 13px; color: var(--gray-500); padding: 8px 12px;
  border-radius: 6px; margin-bottom: 2px; cursor: default;
}
.dash-nav-item--active { background: var(--blue-lt); color: var(--blue); font-weight: 600; }

.dash-main { flex: 1; padding: 20px 24px; background: #0f172a; }
.dash-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
.dash-title { font-size: 16px; font-weight: 700; color: var(--gray-900); }
.dash-sub { font-size: 12px; color: var(--gray-500); margin-top: 2px; }
.dash-status { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--green); background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.3); padding: 5px 10px; border-radius: 20px; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

.dash-stats { display: flex; gap: 16px; margin-bottom: 20px; }
.dash-stat { flex: 1; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--r); padding: 12px 16px; }
.stat-n { font-size: 22px; font-weight: 800; color: var(--blue); }
.stat-l { font-size: 11px; color: var(--gray-500); margin-top: 2px; }

.dash-offers-title { font-size: 12px; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 10px; }
.dash-offer { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: var(--r); margin-bottom: 6px; background: var(--gray-50); border: 1px solid var(--gray-200); }
.dash-offer--new { background: var(--blue-xlt); border-color: var(--blue-lt); }
.offer-badge { font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 20px; background: var(--blue); color: #fff; white-space: nowrap; }
.offer-badge--gray { background: var(--gray-200); color: var(--gray-500); }
.offer-info { flex: 1; min-width: 0; }
.offer-title { font-size: 13px; font-weight: 600; color: var(--gray-900); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.offer-meta { font-size: 11px; color: var(--gray-500); }
.offer-source { font-size: 11px; color: var(--gray-400); white-space: nowrap; }

/* ── Logos bar ───────────────────────────────────────────────────────── */
.logos-bar {
  padding: 40px 24px; text-align: center;
  border-bottom: 1px solid var(--gray-200);
}
.logos-label { font-size: 12px; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.logos-row { display: flex; justify-content: center; align-items: center; gap: 12px; flex-wrap: wrap; }
.logo-pill {
  font-size: 13px; font-weight: 600; color: var(--gray-700);
  background: var(--gray-50); border: 1px solid var(--gray-200);
  padding: 7px 16px; border-radius: 20px;
}
.logo-pill--soon { color: var(--gray-400); }
.logo-pill--soon em { font-style: normal; font-size: 11px; background: var(--amber); color: #fff; padding: 1px 6px; border-radius: 10px; margin-left: 4px; }

/* ── Sections ────────────────────────────────────────────────────────── */
.section { padding: 48px 0; height: 100dvh; display: flex; flex-direction: column; justify-content: center; box-sizing: border-box; overflow: hidden; }
.section--bg { background: var(--gray-50); }

.section-eyebrow { font-size: 12px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 1.2px; text-align: center; margin-bottom: 8px; }
.section-title { font-size: clamp(22px, 3vw, 36px); font-weight: 800; letter-spacing: -.3px; line-height: 1.2; text-align: center; color: var(--gray-900); margin-bottom: 10px; }
.section-sub { font-size: 15px; color: var(--gray-500); text-align: center; max-width: 480px; margin: 0 auto 28px; }

/* ── How it works ────────────────────────────────────────────────────── */
.how-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; align-items: center; margin-top: 20px;
}
.how-steps-col { display: flex; flex-direction: column; gap: 0; }
.how-step-v {
  background: #0f172a; border: 1px solid var(--gray-200);
  border-radius: 12px; padding: 14px 18px;
  box-shadow: 0 1px 4px rgba(0,0,0,.3);
}
.how-step-v h3 { font-size: 14px; font-weight: 700; margin-bottom: 4px; color: var(--gray-900); }
.how-step-v p  { font-size: 13px; color: var(--gray-500); line-height: 1.5; margin: 0; }
.how-arrow-v { text-align: center; color: var(--gray-400); font-size: 18px; line-height: 1.4; }
.how-num { font-size: 10px; font-weight: 800; color: var(--blue); letter-spacing: 1px; margin-bottom: 6px; }

/* ── Email preview ───────────────────────────────────────────────────── */
.email-preview {
  max-width: 600px; margin: 0 auto;
  border: 1px solid var(--gray-200); border-radius: 12px;
  overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,.4);
}
.ep-header {
  background: var(--gray-50); padding: 14px 18px;
  border-bottom: 1px solid var(--gray-200);
  display: flex; align-items: center; gap: 14px;
}
.ep-dots { display: flex; gap: 6px; }
.ep-dots span { width: 11px; height: 11px; border-radius: 50%; }
.ep-dots span:nth-child(1) { background: #ef4444; }
.ep-dots span:nth-child(2) { background: #f59e0b; }
.ep-dots span:nth-child(3) { background: #22c55e; }
.ep-from { font-size: 11px; color: var(--gray-500); }
.ep-subject { font-size: 13px; font-weight: 600; color: var(--gray-900); }
.ep-body { background: #0f172a; padding: 12px 16px; }
.ep-brand { font-size: 12px; font-weight: 700; color: var(--blue); margin-bottom: 16px; }
.ep-cards { display: flex; flex-direction: column; gap: 6px; margin-bottom: 10px; }
.ep-card { border: 1px solid var(--gray-200); border-radius: 8px; padding: 8px 12px; }
.ep-card--top { border-color: var(--blue); background: var(--blue-xlt); }
.ep-card-row1 { display: flex; justify-content: space-between; margin-bottom: 6px; }
.ep-tag { font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 20px; background: var(--blue-lt); color: var(--blue); }
.ep-tag--hotel { background: rgba(124,58,237,.2); color: #a78bfa; }
.ep-score { font-size: 11px; font-weight: 700; color: var(--amber); }
.ep-card-title { font-size: 14px; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.ep-card-meta { font-size: 11px; color: var(--gray-500); margin-bottom: 3px; }
.ep-btn { display: inline-block; margin-top: 10px; background: var(--blue); color: #fff; padding: 6px 14px; border-radius: 5px; font-size: 12px; font-weight: 600; cursor: default; }
.ep-btn--ghost { background: transparent; color: var(--blue); border: 1px solid var(--gray-200); }
.ep-footer { font-size: 11px; color: var(--gray-400); text-align: center; padding-top: 14px; border-top: 1px solid var(--gray-200); }
.ep-footer a { color: var(--gray-500); cursor: default; }

/* ── Features ────────────────────────────────────────────────────────── */
.feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; margin-top: 20px; }
.feat { background: #0f172a; border: 1px solid var(--gray-200); border-radius: 12px; padding: 28px; transition: box-shadow .2s, transform .2s; }
.feat:hover { box-shadow: 0 4px 24px rgba(59,130,246,.12); transform: translateY(-2px); border-color: var(--blue-lt); }
.feat-icon-wrap { margin-bottom: 14px; }
.feat-icon-svg { font-size: 22px; color: var(--blue); font-weight: 700; }
.feat-icon { font-size: 26px; margin-bottom: 14px; }
.feat h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--gray-900); }
.feat p  { font-size: 14px; color: var(--gray-500); line-height: 1.65; }

/* ── Reviews ─────────────────────────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; margin-top: 20px; margin-bottom: 20px; }
.review { background: #0f172a; border: 1px solid var(--gray-200); border-radius: 12px; padding: 18px; position: relative; }
.review--featured { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(59,130,246,.12); }
.review-chip { position: absolute; top: -12px; left: 20px; background: var(--blue); color: #fff; font-size: 11px; font-weight: 700; padding: 3px 12px; border-radius: 20px; }
.review-stars { color: var(--amber); margin-bottom: 14px; font-size: 15px; }
.review p { font-size: 13px; color: var(--gray-700); line-height: 1.6; margin-bottom: 12px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 10px; }
.avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--gray-200); color: var(--gray-500); font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.avatar--blue { background: var(--blue); color: #fff; }
.review-author strong { display: block; font-size: 13px; color: var(--gray-900); }
.review-author span  { font-size: 12px; color: var(--gray-400); }

.stats-row { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 0; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 12px; overflow: hidden; }
.stat-item { flex: 1; min-width: 120px; text-align: center; padding: 24px 20px; }
.stat-item span { display: block; font-size: 28px; font-weight: 800; color: var(--blue); margin-bottom: 4px; }
.stat-item { font-size: 13px; color: var(--gray-500); }
.stat-div { width: 1px; background: var(--gray-200); height: 60px; align-self: center; }

/* ── Pricing ─────────────────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 20px; align-items: start; }
.plan { background: #0f172a; border: 1px solid var(--gray-200); border-radius: 16px; padding: 20px 22px; position: relative; transition: transform .2s, box-shadow .2s; }
.plan:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(59,130,246,.1); }
.plan--featured { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(59,130,246,.15), 0 12px 40px rgba(59,130,246,.2); background: linear-gradient(160deg, #0f2040 0%, #0f172a 60%); }
.plan--featured:hover { transform: translateY(-6px); box-shadow: 0 0 0 3px rgba(59,130,246,.2), 0 20px 50px rgba(59,130,246,.25); }
.plan-chip { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(90deg, #3b82f6, #7c3aed); color: #fff; font-size: 11px; font-weight: 700; padding: 5px 16px; border-radius: 20px; white-space: nowrap; letter-spacing: .5px; }
.plan-name  { font-size: 16px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .5px; }
.plan-price { font-size: 36px; font-weight: 800; color: var(--gray-900); line-height: 1; margin-bottom: 4px; }
.plan-price span { font-size: 13px; font-weight: 500; color: var(--gray-400); }
.plan-desc  { font-size: 12px; color: var(--gray-500); margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--gray-200); }
.plan ul    { list-style: none; margin-bottom: 16px; }
.plan ul li { font-size: 12px; padding: 4px 0; color: var(--gray-700); display: flex; align-items: center; gap: 8px; }
.plan ul li.ok::before  { content: '✓'; color: var(--green); font-weight: 800; font-size: 13px; flex-shrink: 0; }
.plan ul li.no { color: var(--gray-400); }
.plan ul li.no::before  { content: '✗'; color: var(--gray-400); flex-shrink: 0; }
.featuring-tag { display: inline-block; font-size: 9px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; background: linear-gradient(90deg, rgba(124,58,237,.18), rgba(59,130,246,.12)); color: #a78bfa; border: 1px solid rgba(124,58,237,.3); border-radius: 4px; padding: 1px 5px; line-height: 1.4; flex-shrink: 0; }
.plan ul li.featuring-item { gap: 6px; }
.plan-btn { display: block; text-align: center; padding: 10px; border-radius: var(--r); font-size: 13px; font-weight: 700; cursor: pointer; border: none; transition: all .15s; }
.plan-btn--primary { background: linear-gradient(90deg, #3b82f6, #2563eb); color: #fff; box-shadow: 0 4px 14px rgba(59,130,246,.4); }
.plan-btn--primary:hover { background: linear-gradient(90deg, #2563eb, #1d4ed8); box-shadow: 0 6px 20px rgba(59,130,246,.5); transform: translateY(-1px); }
.plan-btn--outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.plan-btn--outline:hover { background: var(--blue-lt); }
.plan-note { text-align: center; font-size: 11px; color: var(--gray-400); margin-top: 12px; }

/* ── CTA final ───────────────────────────────────────────────────────── */
.cta-final {
  background: #04060f; color: #fff;
  padding: 48px 24px 0; text-align: center;
  height: 100dvh; display: flex; flex-direction: column; justify-content: space-between; box-sizing: border-box; overflow: hidden;
  border-top: 1px solid var(--gray-200);
}
.cta-final > .container { display: flex; flex-direction: column; justify-content: center; flex: 1; }
.cta-final h2 { font-size: clamp(26px, 4vw, 42px); font-weight: 800; margin-bottom: 12px; }
.cta-final > .container > p { font-size: 16px; color: var(--gray-400); margin-bottom: 36px; }
.cta-form { display: flex; gap: 10px; justify-content: center; max-width: 460px; margin: 0 auto 14px; }
.cta-form input { flex: 1; padding: 13px 16px; border: 1.5px solid rgba(255,255,255,.12); border-radius: var(--r); background: rgba(255,255,255,.05); color: #fff; font-size: 14px; outline: none; }
.cta-form input::placeholder { color: rgba(255,255,255,.35); }
.cta-form input:focus { border-color: #93c5fd; }
.cta-form button { padding: 13px 22px; background: var(--blue); color: #fff; border: none; border-radius: var(--r); font-size: 14px; font-weight: 700; cursor: pointer; white-space: nowrap; }
.cta-form button:hover { background: var(--blue-dk); }
.cta-fine { font-size: 12px; color: rgba(255,255,255,.3); }
.cta-footer { border-top: 1px solid rgba(255,255,255,.07); padding: 18px 24px; text-align: center; }
.cta-footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 20px; margin-bottom: 10px; }
.cta-footer-links a { font-size: 12px; color: rgba(255,255,255,.35); text-decoration: none; transition: color .15s; }
.cta-footer-links a:hover { color: rgba(255,255,255,.7); }
.cta-footer-copy { font-size: 11px; color: rgba(255,255,255,.18); }

/* ── Nav buttons ─────────────────────────────────────────────────────── */
.nav-pricing {
  font-size: 14px; color: var(--gray-700); font-weight: 500;
  padding: 8px 14px; border-radius: var(--r);
  transition: background .15s, color .15s;
}
.nav-pricing:hover { background: var(--gray-100); color: var(--gray-900); }

.nav-signin {
  font-size: 14px; color: var(--gray-700); font-weight: 500;
  padding: 8px 14px; border-radius: var(--r);
  background: none; border: none; cursor: pointer;
  transition: background .15s;
}
.nav-signin:hover { background: var(--gray-100); }
.nav-cta {
  font-size: 14px; font-weight: 700; color: #fff;
  background: var(--blue); padding: 9px 18px; border-radius: var(--r);
  border: none; cursor: pointer; transition: background .15s;
}
.nav-cta:hover { background: var(--blue-dk); }

/* ── Modal ───────────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.modal {
  background: #0d1525; border: 1px solid var(--gray-200); border-radius: 16px;
  width: 100%; max-width: 560px; max-height: 90vh; overflow-y: auto;
  padding: 36px 32px; position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
}
.modal-close { position: absolute; top: 16px; right: 16px; background: var(--gray-100); border: none; border-radius: 50%; width: 30px; height: 30px; font-size: 13px; cursor: pointer; color: var(--gray-500); display: flex; align-items: center; justify-content: center; }
.modal-close:hover { background: var(--gray-200); }
.modal-title { font-size: 20px; font-weight: 800; color: var(--gray-900); margin-bottom: 28px; }

/* Standalone fields (register/login — not in mform-grid) */
#pane-register .mfield,
#pane-login .mfield,
#pane-forgot .mfield { margin-bottom: 18px; }
.modal-hint { font-size: 13px; color: var(--gray-500); margin-top: 8px; line-height: 1.6; }

/* Tabs */
.modal-tabs { display: flex; border-bottom: 1px solid var(--gray-200); margin-bottom: 28px; }
.modal-tab {
  flex: 1; padding: 12px; font-size: 14px; font-weight: 600;
  color: var(--gray-400); background: none; border: none;
  border-bottom: 2px solid transparent; cursor: pointer;
  transition: color .15s, border-color .15s;
}
.modal-tab.active { color: var(--blue); border-bottom-color: var(--blue); }
.modal-tab:hover:not(.active) { color: var(--gray-700); }

.modal-switch { font-size: 13px; color: var(--gray-500); text-align: center; margin-top: 18px; }
.link-btn { background: none; border: none; color: var(--blue); font-size: 13px; font-weight: 600; cursor: pointer; padding: 0; }
.link-btn:hover { text-decoration: underline; }

/* Password field */
.pw-wrap { position: relative; display: flex; }
.pw-wrap input { flex: 1; padding-right: 56px; }
.pw-toggle {
  position: absolute; right: 0; top: 0; bottom: 0;
  background: none; border: none; padding: 0 12px;
  font-size: 12px; color: var(--gray-500); cursor: pointer;
  font-weight: 600;
}
.pw-toggle:hover { color: var(--blue); }

/* Verify icon */
.verify-icon { font-size: 40px; color: var(--blue); text-align: center; margin-bottom: 16px; font-weight: 800; }

.steps-bar { display: flex; margin-bottom: 28px; border: 1px solid var(--gray-200); border-radius: var(--r); overflow: hidden; }
.sbar-step { flex: 1; padding: 10px; text-align: center; font-size: 13px; font-weight: 500; color: var(--gray-400); border-right: 1px solid var(--gray-200); background: #0f172a; transition: all .2s; }
.sbar-step:last-child { border-right: none; }
.sbar-step.active { background: var(--blue); color: #fff; }
.sbar-step.done   { color: var(--green); background: var(--gray-50); }

.mform-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.mfield { display: flex; flex-direction: column; gap: 8px; }
.mfield.full { grid-column: 1/-1; }
.mfield label { font-size: 13px; font-weight: 500; color: var(--gray-500); margin-bottom: 6px; }
.mfield input[type=text], .mfield input[type=date], .mfield select,
.mfield input[type=email], .mfield input[type=password] {
  padding: 13px 16px; border: 1.5px solid var(--gray-200); border-radius: var(--r);
  font-size: 15px; color: var(--gray-900); background: #080c18; width: 100%;
  transition: border-color .15s, box-shadow .15s; line-height: 1.5;
}
.mfield select option { background: #0f172a; color: var(--gray-900); }
.mfield input:focus, .mfield select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(59,130,246,.12); }

.mradio-row, .mcheck-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 2px; }
.mradio, .mcheck { display: flex; align-items: center; gap: 5px; font-size: 13px; cursor: pointer; padding: 4px 10px; border: 1px solid var(--gray-200); border-radius: 20px; user-select: none; }
.mradio:hover, .mcheck:hover { border-color: var(--blue); background: var(--blue-lt); }
.mradio input, .mcheck input { accent-color: var(--blue); }

.mbtn { display: block; width: 100%; padding: 12px; margin-top: 20px; background: var(--blue); color: #fff; border: none; border-radius: var(--r); font-size: 15px; font-weight: 700; cursor: pointer; text-align: center; transition: background .15s; }
.mbtn:hover { background: var(--blue-dk); }
.mbtn--outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.mbtn--outline:hover { background: var(--blue-lt); }
.mbtns { display: flex; gap: 10px; margin-top: 20px; }
.mbtns .mbtn { margin-top: 0; flex: 1; }

.merror { color: #fca5a5; font-size: 13px; background: rgba(220,38,38,.12); border: 1px solid rgba(220,38,38,.3); border-radius: var(--r); padding: 10px 14px; margin-top: 12px; }

.summary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.summary-item { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--r); padding: 10px 14px; }
.summary-item .label { font-size: 11px; color: var(--gray-400); text-transform: uppercase; letter-spacing: .5px; }
.summary-item .value { font-size: 14px; font-weight: 600; color: var(--gray-900); margin-top: 2px; }

.success-block { text-align: center; padding: 12px 0; }
.success-icon { font-size: 52px; margin-bottom: 16px; }
.success-block h3 { font-size: 20px; font-weight: 800; margin-bottom: 10px; color: var(--gray-900); }
.success-block > p { font-size: 14px; color: var(--gray-500); line-height: 1.65; margin-bottom: 24px; }
.id-box { display: flex; align-items: center; gap: 10px; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--r); padding: 12px 14px; font-size: 13px; flex-wrap: wrap; }
.id-label { color: var(--gray-500); white-space: nowrap; }
.id-val { font-family: monospace; color: var(--blue); flex: 1; word-break: break-all; }
.id-copy { background: var(--gray-100); border: 1px solid var(--gray-200); border-radius: 4px; padding: 3px 10px; font-size: 12px; cursor: pointer; color: var(--gray-700); }

.run-result { margin-top: 14px; padding: 12px 14px; border-radius: var(--r); font-size: 13px; background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.3); color: #86efac; text-align: left; }
.run-result.error { background: rgba(220,38,38,.1); border-color: rgba(220,38,38,.3); color: #fca5a5; }

/* ── Footer ─────────────────────────────────────────────────────────── */
.footer { background: #04060f; color: #fff; padding: 60px 0 0; border-top: 1px solid var(--gray-200); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
@media (max-width: 680px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-logo { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.footer p { font-size: 13px; color: var(--gray-500); line-height: 1.7; }
.footer strong { display: block; font-size: 12px; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.footer a { display: block; font-size: 14px; color: var(--gray-500); margin-bottom: 8px; }
.footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 20px 0; font-size: 12px; color: var(--gray-400); text-align: center; }

/* ── Roadmap ─────────────────────────────────────────────────────────── */
.roadmap-sources-banner {
  display: flex; align-items: center; justify-content: space-between;
  background: #1e293b; color: #fff;
  border-radius: 16px; padding: 16px 24px; margin-bottom: 20px; gap: 16px;
  border: 1px solid var(--gray-200);
}
.rsb-left { display: flex; align-items: center; gap: 20px; flex: 1; }
.rsb-pulse {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  background: rgba(34,197,94,.15); display: flex; align-items: center; justify-content: center;
  position: relative;
}
.rsb-pulse span {
  width: 14px; height: 14px; border-radius: 50%; background: #22c55e; display: block;
}
.rsb-pulse::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: rgba(34,197,94,.3); animation: pulse-ring 1.8s ease-out infinite;
}
@keyframes pulse-ring {
  0%   { transform: scale(.6); opacity: .8; }
  100% { transform: scale(1.6); opacity: 0; }
}
.rsb-title { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.rsb-sub   { font-size: 13px; color: var(--gray-400); }
.rsb-counter { text-align: center; flex-shrink: 0; }
.rsb-count  { font-size: 36px; font-weight: 900; color: #22c55e; line-height: 1; }
.rsb-count-label { font-size: 12px; color: var(--gray-400); margin-top: 4px; }

.roadmap-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 16px;
}
.rm-card {
  border: 1px solid var(--gray-200); border-radius: 12px;
  padding: 14px 16px; background: #0f172a;
  display: flex; flex-direction: column; gap: 6px;
  transition: box-shadow .2s, transform .2s;
}
.rm-card:hover { box-shadow: 0 6px 24px rgba(59,130,246,.1); transform: translateY(-2px); }
.rm-card--soon { border-color: var(--blue-lt); background: var(--blue-xlt); }
.rm-card--dev  { border-color: rgba(245,158,11,.3); background: rgba(245,158,11,.06); }
.rm-status {
  display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .7px; color: var(--gray-500);
  background: var(--gray-100); border-radius: 20px;
  padding: 3px 10px; align-self: flex-start;
}
.rm-status--soon { color: var(--blue); background: var(--blue-lt); }
.rm-status--dev  { color: #f59e0b; background: rgba(245,158,11,.15); }
.rm-icon { font-size: 22px; color: var(--gray-700); font-weight: 300; }
.rm-card h3 { font-size: 13px; font-weight: 700; color: var(--gray-900); }
.rm-card p  { font-size: 12px; color: var(--gray-500); line-height: 1.5; }

.roadmap-cta {
  text-align: center; padding: 12px;
  border-radius: 12px; border: 1px dashed var(--gray-200);
  font-size: 14px; color: var(--gray-500);
}
.roadmap-cta a { color: var(--blue); font-weight: 600; }

@media (max-width: 900px) { .roadmap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .roadmap-grid { grid-template-columns: 1fr; } .roadmap-sources-banner { flex-direction: column; text-align: center; } .rsb-left { flex-direction: column; text-align: center; } }

/* ── Responsive mobile ───────────────────────────────────────────────── */
@media (max-width: 768px) {

  /* Désactive le scroll-snap plein écran sur mobile */
  html { scroll-snap-type: none; height: auto; overflow-y: auto; }
  body { height: auto; }
  .page { height: auto; overflow: visible; scroll-snap-align: none; }
  .page-dots { display: none; }

  /* Barre d'annonce */
  .annbar { font-size: 11px; padding: 8px 12px; flex-wrap: wrap; }

  /* Nav */
  .nav-inner { padding: 0 16px; gap: 12px; height: 56px; }
  .nav-links { display: none; }
  .nav-signin { display: flex; font-size: 12px; padding: 7px 10px; }
  .nav-cta { padding: 7px 12px; font-size: 12px; }

  /* Hero */
  .hero { height: auto; min-height: 100svh; padding: 32px 0 40px; }
  .hero-brand img { height: 140px !important; margin: 0 0 -10px !important; }
  .hero-title { font-size: 32px; }
  .hero-sub { font-size: 15px; padding: 0 8px; }
  .hero-form { flex-direction: column; padding: 0 8px; }
  .hero-form button { width: 100%; }
  .hero-eyebrow { font-size: 10px; padding: 4px 10px; }

  /* Sections */
  .section { height: auto; padding: 48px 0; }
  .section-title { font-size: 26px; }
  .section-sub { font-size: 14px; }

  /* Fonctionnement : empile gauche/droite */
  .how-layout { grid-template-columns: 1fr; gap: 20px; }
  .email-preview { max-width: 100%; }

  /* Fonctionnalités */
  .feat-grid { grid-template-columns: 1fr; }

  /* Avis */
  .reviews-grid { grid-template-columns: 1fr; }
  .stats-row { flex-direction: column; }
  .stat-div { width: 80%; height: 1px; }

  /* Tarifs */
  .pricing-grid { grid-template-columns: 1fr; }
  .plan--featured { order: -1; }

  /* Roadmap */
  .roadmap-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }

  /* Contact */
  .cta-form { flex-direction: column; }
  .cta-form button { width: 100%; }
}
