/* ═══════════════════════════════════════════════════════
   CSSPilot Landing Page — Stylesheet
   https://latour-creative.com/CSSPilot/
   ═══════════════════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --bg-deep: #0a0e17;
  --bg-card: #111827;
  --bg-card-hover: #1a2235;
  --accent: #3b82f6;
  --accent-glow: rgba(59, 130, 246, 0.15);
  --accent-bright: #60a5fa;
  --accent-cyan: #22d3ee;
  --accent-green: #34d399;
  --accent-orange: #fb923c;
  --accent-purple: #a78bfa;
  --accent-rose: #fb7185;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border: rgba(148, 163, 184, 0.08);
  --brand-blue: #1e3a5f;
}

/* ── RESET ── */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--bg-deep);
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ── LANG TOGGLE ── */
.lang-toggle {
  position: fixed;
  top: 24px;
  right: 28px;
  z-index: 100;
  display: flex;
  gap: 0;
  background: rgba(17, 24, 39, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.lang-btn {
  padding: 8px 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-btn.active {
  background: var(--accent);
  color: white;
}

.lang-btn:hover:not(.active) {
  color: var(--text-primary);
  background: rgba(59, 130, 246, 0.1);
}

/* ── LANGUAGE VISIBILITY ── */
[data-lang="fr"] { display: none; }
body.fr [data-lang="fr"] { display: block; }
body.fr [data-lang="en"] { display: none; }
body.fr span[data-lang="fr"],
body.fr a[data-lang="fr"] { display: inline; }
body.fr span[data-lang="en"],
body.fr a[data-lang="en"] { display: none; }
span[data-lang="fr"], a[data-lang="fr"] { display: none; }
span[data-lang="en"], a[data-lang="en"] { display: inline; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-glow 6s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.publisher-logo {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  animation: float-in 1s ease-out;
  filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.15));
}

.hero-logo {
  width: 100px;
  height: 100px;
  border-radius: 24px;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
  animation: float-in 1s ease-out;
  filter: drop-shadow(0 0 40px rgba(59, 130, 246, 0.2));
}

@keyframes float-in {
  from { opacity: 0; transform: translateY(30px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-badge {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--accent-bright);
  margin-bottom: 28px;
  animation: float-in 1s ease-out 0.15s both;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-green);
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  position: relative;
  z-index: 2;
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  animation: float-in 1s ease-out 0.3s both;
}

.hero h1 .css {
  background: linear-gradient(135deg, var(--accent-bright), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h1 .pilot { color: var(--text-primary); }

.hero-tagline {
  position: relative;
  z-index: 2;
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 40px;
  animation: float-in 1s ease-out 0.45s both;
}

.hero-desc {
  position: relative;
  z-index: 2;
  max-width: 600px;
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 48px;
  animation: float-in 1s ease-out 0.6s both;
}

.hero-cta {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: float-in 1s ease-out 0.75s both;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--accent);
  color: white;
  font-weight: 600;
  font-size: 15px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 24px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  background: var(--accent-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--accent);
  background: rgba(59, 130, 246, 0.05);
  transform: translateY(-2px);
}

/* ── SCROLL HINT ── */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-hint svg { width: 24px; height: 24px; color: var(--text-muted); }

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

/* ── SECTION COMMON ── */
section {
  position: relative;
  z-index: 1;
  padding: 100px 24px;
}

.container { max-width: 1200px; margin: 0 auto; }

.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

.section-header { margin-bottom: 64px; }

.section-divider {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* ── FEATURES GRID ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--card-accent, var(--accent)), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(148, 163, 184, 0.12);
  transform: translateY(-4px);
}

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

.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  background: var(--accent-glow);
}

.feature-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.feature-card .tech-tag {
  display: inline-block;
  margin-top: 14px;
  padding: 4px 10px;
  border-radius: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  background: rgba(59, 130, 246, 0.08);
  color: var(--accent-bright);
  border: 1px solid rgba(59, 130, 246, 0.15);
}

/* Card accent colors */
.feature-card[data-color="cyan"]   { --card-accent: var(--accent-cyan); }
.feature-card[data-color="green"]  { --card-accent: var(--accent-green); }
.feature-card[data-color="orange"] { --card-accent: var(--accent-orange); }
.feature-card[data-color="purple"] { --card-accent: var(--accent-purple); }
.feature-card[data-color="rose"]   { --card-accent: var(--accent-rose); }
.feature-card[data-color="blue"]   { --card-accent: var(--accent-bright); }

.feature-card[data-color="cyan"]   .feature-icon { background: rgba(34, 211, 238, 0.1); }
.feature-card[data-color="green"]  .feature-icon { background: rgba(52, 211, 153, 0.1); }
.feature-card[data-color="orange"] .feature-icon { background: rgba(251, 146, 60, 0.1); }
.feature-card[data-color="purple"] .feature-icon { background: rgba(167, 139, 250, 0.1); }
.feature-card[data-color="rose"]   .feature-icon { background: rgba(251, 113, 133, 0.1); }

/* ── AI / ROADMAP SECTION ── */
.ai-section {
  background: linear-gradient(180deg, transparent, rgba(59, 130, 246, 0.03), transparent);
}

.roadmap-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 40px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.roadmap-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
}

.roadmap-block:nth-child(1)::before { background: var(--accent-green); }
.roadmap-block:nth-child(2)::before { background: var(--accent-purple); }
.roadmap-block:nth-child(3)::before { background: var(--accent-cyan); }

.roadmap-header { margin-bottom: 24px; }

.roadmap-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.roadmap-short  { background: rgba(52, 211, 153, 0.1); border: 1px solid rgba(52, 211, 153, 0.2); color: var(--accent-green); }
.roadmap-medium { background: rgba(167, 139, 250, 0.1); border: 1px solid rgba(167, 139, 250, 0.2); color: var(--accent-purple); }
.roadmap-long   { background: rgba(34, 211, 238, 0.1); border: 1px solid rgba(34, 211, 238, 0.2); color: var(--accent-cyan); }

.roadmap-items { display: flex; flex-direction: column; gap: 20px; }

.roadmap-item { display: flex; align-items: flex-start; gap: 16px; }

.roadmap-dot { width: 10px; height: 10px; border-radius: 50%; margin-top: 7px; flex-shrink: 0; }

.roadmap-item strong { display: block; font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.roadmap-item p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ── SHORTCUTS ── */
.shortcuts-section {
  background: linear-gradient(180deg, transparent, rgba(34, 211, 238, 0.02), transparent);
}

.shortcuts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}

.shortcut-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.shortcut-item:hover {
  border-color: rgba(148, 163, 184, 0.15);
  background: var(--bg-card-hover);
}

.shortcut-item span { font-size: 14px; color: var(--text-secondary); }

.shortcut-item kbd {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  color: var(--accent-bright);
}

/* ── PRICING ── */
.pricing-section { text-align: center; }

.pricing-card {
  max-width: 480px;
  margin: 0 auto;
  padding: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-cyan), var(--accent-purple));
}

.pricing-amount { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 900; margin: 16px 0 8px; }
.pricing-note { color: var(--text-muted); font-size: 14px; margin-bottom: 32px; }

.pricing-features {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 14px;
}

.pricing-features li::before { content: '✓'; color: var(--accent-green); font-weight: 700; }

/* ── VIDEO SECTION ── */
.video-wrapper { max-width: 900px; margin: 0 auto; }

.video-placeholder {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.video-placeholder > * { position: absolute; left: 50%; transform: translateX(-50%); }

.video-play-btn {
  top: calc(50% - 52px);
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 4px 24px rgba(59, 130, 246, 0.3));
}

.video-play-btn:hover {
  transform: translateX(-50%) scale(1.1);
  filter: drop-shadow(0 8px 32px rgba(59, 130, 246, 0.5));
}

.video-label { top: calc(50% + 16px); font-size: 16px; font-weight: 600; color: var(--text-secondary); }
.video-hint { top: calc(50% + 46px); font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--text-muted); }

/* ── SCREENSHOTS GALLERY ── */
.screenshots-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.screenshots-grid .screenshot-hero { grid-column: 1 / -1; }

.screenshot-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.screenshot-card:hover {
  border-color: rgba(148, 163, 184, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.screenshot-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #0d1117 0%, #161b22 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 14px;
  position: relative;
  overflow: hidden;
}

.screenshot-hero .screenshot-placeholder { aspect-ratio: 21 / 9; }

.screenshot-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}

.screenshot-icon { font-size: 36px; filter: grayscale(0.3); }
.screenshot-caption { padding: 14px 18px; font-size: 13px; color: var(--text-secondary); line-height: 1.5; }
.screenshot-card img { width: 100%; height: auto; display: block; }

/* ── CODE PREVIEW ── */
.code-preview {
  background: #0d1117;
  border: 1px solid rgba(148, 163, 184, 0.08);
  border-radius: 12px;
  padding: 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  line-height: 1.8;
  overflow-x: auto;
  position: relative;
}

.code-preview .comment  { color: #6a737d; }
.code-preview .selector { color: var(--accent-cyan); }
.code-preview .property { color: var(--accent-bright); }
.code-preview .value    { color: var(--accent-orange); }
.code-preview .punct    { color: var(--text-muted); }

.code-dots { display: flex; gap: 6px; margin-bottom: 16px; }
.code-dots span { width: 10px; height: 10px; border-radius: 50%; }
.code-dots span:nth-child(1) { background: #ff5f57; }
.code-dots span:nth-child(2) { background: #ffbd2e; }
.code-dots span:nth-child(3) { background: #28c840; }

/* ── WORKFLOW ── */
.workflow-strip { display: flex; justify-content: center; gap: 0; margin-top: 48px; flex-wrap: wrap; }

.workflow-step { display: flex; align-items: center; gap: 12px; padding: 16px 24px; }

.workflow-step .step-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  background: rgba(59, 130, 246, 0.1);
  color: var(--accent-bright);
  border: 1px solid rgba(59, 130, 246, 0.2);
  flex-shrink: 0;
}

.workflow-step .step-text { font-size: 14px; color: var(--text-secondary); font-weight: 500; }

.workflow-arrow { display: flex; align-items: center; color: var(--text-muted); font-size: 18px; padding: 0 4px; }

/* ── SIGNUP / BREVO FORM ── */
.signup-section {
  background: linear-gradient(180deg, transparent, rgba(59, 130, 246, 0.04), transparent);
}

.signup-card {
  max-width: 540px;
  margin: 0 auto;
  padding: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.signup-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-green), var(--accent), var(--accent-cyan));
}

.signup-card h3 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 800; margin-bottom: 12px; color: var(--text-primary); }
.signup-card .signup-desc { font-size: 15px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 28px; }

.signup-card #sib-container { background: transparent !important; border: none !important; max-width: 100% !important; padding: 0 !important; }
.signup-card .sib-form-block p { color: var(--text-primary) !important; font-family: 'DM Sans', sans-serif !important; }
.signup-card .entry__label { color: var(--text-secondary) !important; font-family: 'DM Sans', sans-serif !important; font-size: 14px !important; font-weight: 500 !important; }

.signup-card .input {
  border-radius: 10px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 15px !important;
  padding: 12px 16px !important;
  color: black !important;
}

.signup-card .input:focus { border-color: var(--accent) !important; outline: none !important; box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15) !important; }
.signup-card .input::placeholder { color: var(--text-muted) !important; }
.signup-card .entry__specification { color: var(--text-muted) !important; font-family: 'DM Sans', sans-serif !important; font-size: 12px !important; }

.signup-card .entry__choice label { display: flex !important; align-items: flex-start !important; gap: 10px !important; }
.signup-card .entry__choice .checkbox { min-width: 18px !important; min-height: 18px !important; margin-top: 2px !important; }
.signup-card .entry__choice span,
.signup-card .entry__choice span p { color: var(--text-secondary) !important; font-family: 'DM Sans', sans-serif !important; font-size: 13px !important; }
.signup-card .entry__choice span + span { padding-left: 18px !important; }

.signup-card .sib-form-block__button {
  background: var(--accent) !important;
  border-radius: 10px !important;
  padding: 14px 32px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 24px rgba(59, 130, 246, 0.3) !important;
  width: 100% !important;
}

.signup-card .sib-form-block__button:hover {
  background: var(--accent-bright) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.4) !important;
}

.signup-card .sib-form-message-panel { border-radius: 10px !important; font-family: 'DM Sans', sans-serif !important; }

/* Hide Brevo native title/description — we use our bilingual ones */
.signup-card #sib-form > div:nth-child(1),
.signup-card #sib-form > div:nth-child(2) { display: none !important; }

.signup-card .entry__error { font-family: 'DM Sans', sans-serif !important; font-size: 13px !important; border-radius: 6px !important; }
.signup-card .g-recaptcha-v3 { display: none; }

/* ── FOOTER ── */
footer {
  position: relative;
  z-index: 1;
  padding: 48px 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-brand { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { width: 36px; height: 36px; border-radius: 8px; }
.footer-brand span { font-weight: 600; font-size: 15px; color: var(--text-secondary); }
footer p { font-size: 13px; color: var(--text-muted); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr; }
  .shortcuts-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
  section { padding: 64px 20px; }
  .roadmap-block { padding: 24px; }
  .workflow-strip { flex-direction: column; align-items: center; }
  .workflow-arrow { transform: rotate(90deg); padding: 4px 0; }
  .signup-card { padding: 28px 20px; }
}

@media (min-width: 640px) {
  .screenshots-grid { grid-template-columns: repeat(2, 1fr); }
  .screenshots-grid .screenshot-hero { grid-column: 1 / -1; }
}

@media (min-width: 960px) {
  .screenshots-grid { grid-template-columns: repeat(3, 1fr); }
  .screenshots-grid .screenshot-hero { grid-column: 1 / -1; }
}
