:root {
  --bg: #050814;
  --bg-card: #0f172a;
  --bg-soft: #111a2b;
  --accent: #3b82f6;
  --accent-soft: rgba(59, 130, 246, 0.35);
  --accent-strong: #38bdf8;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --danger: #f97316;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.65);
  --border-glow: 0 0 0 1px rgba(148, 163, 184, 0.4);
  --transition-fast: 180ms ease-out;
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: radial-gradient(circle at top left, #1e293b 0, var(--bg) 45%, #020617 100%);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  overflow-x: hidden;
  position: relative;
  padding: 56px 16px 32px;
}

/* --- BACKGROUND EFFECTS --- */

.bg-grid {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(to right, rgba(148, 163, 184, 0.1) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 23, 42, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: translateZ(0);
  z-index: 0;
}

/* Effet scan façon laser */
.scan-line {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,
      transparent,
      rgba(96, 165, 250, 0.8) 45%,
      rgba(96, 165, 250, 1) 50%,
      rgba(96, 165, 250, 0.8) 55%,
      transparent);
  box-shadow: 0 0 20px rgba(96, 165, 250, 0.8);
  z-index: 0;
  pointer-events: none;
  animation: scan 6s linear infinite;
}

@keyframes scan {
  0% {
    transform: translateY(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(100vh);
    opacity: 0;
  }
}

.orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(0);
  opacity: 0.55;
  background: radial-gradient(circle at 30% 20%, var(--accent-strong), transparent 60%);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: -1;
}

.orb.orb-1 {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -120px;
  opacity: 0.42;
}

.orb.orb-2 {
  width: 360px;
  height: 360px;
  bottom: -120px;
  left: -80px;
  background: radial-gradient(circle at 30% 20%, var(--danger), transparent 60%);
  opacity: 0.35;
}

.orb.orb-3 {
  width: 260px;
  height: 260px;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle at 30% 20%, var(--accent-soft), transparent 65%);
  opacity: 0.5;
}

/* --- HEADER DOMAINE --- */

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  padding: 10px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: radial-gradient(circle at top left, #f97316, #eab308, #f97316);
  color: #0b1320;
  border: none;
  box-shadow:
    0 10px 40px rgba(249, 115, 22, 0.65),
    0 0 0 1px rgba(248, 250, 252, 0.14);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(0);
}

.site-header span.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #22c55e, #166534);
  box-shadow: 0 0 14px rgba(22, 163, 74, 0.9);
}

/* --- LAYOUT --- */

.page {
  max-width: 1120px;
  margin: 2em auto;
  position: relative;
  z-index: 1;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  margin-bottom: 32px;
}

@media (max-width: 880px) {
  body {
    padding-inline: 14px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
  }
}

.hero-left {
  padding: 24px;
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.95));
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.5);
  position: relative;
  overflow: hidden;
}

.hero-left::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius-xl) - 1px);
  border: 1px solid rgba(148, 163, 184, 0.45);
  opacity: 0.6;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent);
  pointer-events: none;
}

.hero-left::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top center, rgba(56, 189, 248, 0.1), transparent 60%);
  opacity: 0.55;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero-logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.hero-logo {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 20%, #ffffff, #e5e7eb 40%, #9ca3af 100%);
  padding: 2px;
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.9),
    0 0 20px rgba(56, 189, 248, 0.4);
  overflow: hidden;
}

.hero-logo img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  display: block;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 11px;
  border-radius: 999px;
  border: 1px solid rgba(96, 165, 250, 0.5);
  background: linear-gradient(to right, rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0.75));
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  overflow: hidden;
}

.pill span.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #22c55e, #166534);
  box-shadow: 0 0 12px rgba(22, 163, 74, 0.8);
}

.pill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(148, 163, 184, 0.35), transparent);
  transform: translateX(-100%);
  animation: shimmer 2.2s linear infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-110%);
  }

  100% {
    transform: translateX(110%);
  }
}

.hero-title {
  margin-top: 12px;
  font-size: clamp(1.9rem, 3vw + 0.5rem, 2.5rem);
  line-height: 1.15;
  font-weight: 650;
  letter-spacing: -0.03em;
  color: #f9fafb;
  position: relative;
  z-index: 1;
}

.hero-title span.highlight {
  background: linear-gradient(to right, var(--accent-strong), #a855f7, #f97316);
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 0 18px rgba(56, 189, 248, 0.45);
}

.hero-subtitle {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 32rem;
  position: relative;
  z-index: 1;
}

.hero-subtitle strong {
  color: #e5e7eb;
}

.type-line {
  margin-top: 16px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  opacity: 0.9;
}

.type-label {
  font-weight: 600;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.65);
  background: rgba(15, 23, 42, 0.9);
}

.typed-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-strong);
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid var(--accent-strong);
  animation: caret 1s steps(1) infinite;
}

@keyframes caret {
  0%,
  49% {
    border-color: var(--accent-strong);
  }

  50%,
  100% {
    border-color: transparent;
  }
}

.hero-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  color: #0b1320;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 11px;
  background: radial-gradient(circle at top left, #f97316, #eab308, #f97316);
  box-shadow:
    0 10px 40px rgba(249, 115, 22, 0.6),
    0 0 0 1px rgba(248, 250, 252, 0.08);
  overflow: hidden;
  text-decoration: none;
}

.btn-primary span.icon {
  font-size: 13px;
  transform: translateY(0);
  transition: transform var(--transition-fast);
}

.btn-primary span.label {
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.25), transparent 60%);
  opacity: 0;
  transition: opacity 200ms ease-out;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover span.icon {
  transform: translateY(-1px) translateX(2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.85);
  color: var(--muted);
  font-size: 12px;
  cursor: pointer;
  transition: border-color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast), color var(--transition-fast);
  text-decoration: none;
}

.btn-outline span.icon {
  font-size: 16px;
}

.btn-outline:hover {
  border-color: var(--accent-strong);
  background: rgba(15, 23, 42, 0.98);
  color: #e5e7eb;
  transform: translateY(-1px);
}

.hero-meta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 11px;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

.hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(51, 65, 85, 0.9);
}

.hero-meta-item span.dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent-strong);
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.8);
}

/* --- HERO RIGHT PREVIEW --- */

.hero-right {
  position: relative;
  perspective: 1200px;
  min-height: 260px;
}

.preview-card {
  position: relative;
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.95));
  box-shadow: var(--shadow-soft);
  padding: 16px 16px 18px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  transform-style: preserve-3d;
  transform: rotateX(10deg) rotateY(-14deg);
  transition: transform 260ms ease-out, box-shadow 260ms ease-out, border-color 260ms ease-out;
  overflow: hidden;
}

.preview-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(56, 189, 248, 0.18), transparent 55%);
  opacity: 0.9;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.preview-dots {
  display: inline-flex;
  gap: 6px;
}

.preview-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #22c55e;
}

.preview-dot:nth-child(1) {
  background: #f97316;
}

.preview-dot:nth-child(2) {
  background: #facc15;
}

.preview-dot:nth-child(3) {
  background: #22c55e;
}

.preview-url {
  font-family: "SF Mono", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 11px;
  color: var(--muted);
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(51, 65, 85, 0.9);
  display: flex;
  align-items: center;
  gap: 8px;
}

.preview-url span.dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.8);
}

.preview-body {
  border-radius: 14px;
  background: radial-gradient(circle at top center, rgba(15, 23, 42, 1), rgba(15, 23, 42, 1));
  border: 1px solid rgba(30, 64, 175, 0.75);
  padding: 16px 18px 20px;
  position: relative;
  overflow: hidden;
}

.preview-body::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(30, 64, 175, 0.55) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 23, 42, 0.5) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.33;
  mix-blend-mode: screen;
  pointer-events: none;
}

.preview-highlight {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-strong);
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(56, 189, 248, 0.7);
  margin-bottom: 8px;
}

.preview-highlight span.spark {
  font-size: 12px;
}

.preview-title {
  position: relative;
  z-index: 1;
  font-size: 17px;
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 5px;
}

.preview-text {
  position: relative;
  z-index: 1;
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 260px;
  margin-bottom: 12px;
}

.preview-status-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 10px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 10px;
  font-size: 11px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.95);
  color: var(--muted);
}

.status-pill span.badge {
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.18);
  border: 1px solid rgba(34, 197, 94, 0.6);
  color: #bbf7d0;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.status-pill span.icon {
  font-size: 13px;
}

.preview-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 4px;
}

.metric-card {
  border-radius: 11px;
  border: 1px solid rgba(37, 99, 235, 0.75);
  background: radial-gradient(circle at top, rgba(37, 99, 235, 0.16), rgba(15, 23, 42, 0.96));
  padding: 8px 8px 9px;
  font-size: 10px;
  color: var(--muted);
  position: relative;
  overflow: hidden;
}

.metric-label {
  opacity: 0.8;
}

.metric-value {
  font-size: 13px;
  margin-top: 4px;
  color: #f9fafb;
  font-weight: 600;
}

.metric-trend {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-top: 4px;
  font-size: 9px;
  color: #22c55e;
}

.metric-trend.negative {
  color: #f97316;
}

.preview-glow {
  position: absolute;
  inset-inline: -30%;
  bottom: -18%;
  height: 140px;
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.5), transparent 60%);
  opacity: 0.65;
  filter: blur(32px);
  pointer-events: none;
}

.preview-card:hover {
  transform: rotateX(4deg) rotateY(-6deg) translateY(-4px);
  box-shadow:
    0 28px 70px rgba(15, 23, 42, 0.95),
    0 0 0 1px rgba(148, 163, 184, 0.6);
  border-color: rgba(56, 189, 248, 0.9);
}

/* --- SECTION TECH --- */

.section {
  margin-top: 24px;
  padding: 18px 18px 16px;
  border-radius: var(--radius-lg);
  background: linear-gradient(to bottom right, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.98));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(30, 64, 175, 0.85);
  position: relative;
  overflow: hidden;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.35), transparent 60%),
    radial-gradient(circle at bottom right, rgba(248, 113, 113, 0.25), transparent 55%);
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-title span.bar {
  width: 40px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, var(--accent-strong), transparent);
}

.section-subtitle {
  margin-top: 6px;
  font-size: 15px;
  color: #e5e7eb;
  font-weight: 500;
}

.chips {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.65);
  background: rgba(15, 23, 42, 0.96);
  font-size: 12px;
  color: var(--muted);
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 1);
  transform: translateY(0);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}

.chip span.bullet {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(to bottom right, var(--accent-strong), #a855f7);
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.8);
}

.chip.chip-hot span.bullet {
  background: linear-gradient(to bottom right, #f97316, #facc15);
  box-shadow: 0 0 10px rgba(248, 113, 22, 0.8);
}

.chip:hover {
  transform: translateY(-2px);
  border-color: var(--accent-strong);
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.15), rgba(15, 23, 42, 0.98));
  color: #e5e7eb;
  box-shadow:
    0 10px 30px rgba(15, 23, 42, 0.9),
    0 0 18px rgba(56, 189, 248, 0.5);
}

/* Étapes / process */

.steps {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  position: relative;
  z-index: 1;
}

@media (max-width: 880px) {
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .steps {
    grid-template-columns: minmax(0, 1fr);
  }
}

.step-card {
  border-radius: 14px;
  border: 1px solid rgba(30, 64, 175, 0.84);
  background: radial-gradient(circle at top, rgba(30, 64, 175, 0.25), rgba(15, 23, 42, 0.96));
  padding: 10px 11px 11px;
  font-size: 12px;
  color: var(--muted);
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  transition: transform 200ms ease-out, box-shadow 200ms ease-out, border-color 200ms ease-out;
}

.step-badge {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #93c5fd;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.step-badge span.step-index {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #e5e7eb;
  background: rgba(15, 23, 42, 0.98);
}

.step-title {
  font-size: 13px;
  color: #e5e7eb;
  font-weight: 500;
  margin-bottom: 4px;
}

.step-desc {
  font-size: 11px;
  line-height: 1.5;
  opacity: 0.9;
}

.step-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.95),
    0 0 20px rgba(56, 189, 248, 0.4);
  border-color: rgba(56, 189, 248, 0.9);
}

/* --- NEWSLETTER "SOYEZ INFORMÉ" --- */

.newsletter {
  margin-top: 28px;
  padding: 20px 18px 18px;
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(96, 165, 250, 0.3);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(96, 165, 250, 0.18), transparent 60%);
  opacity: 0.7;
  pointer-events: none;
}

.newsletter-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  align-items: center;
}

@media (min-width: 720px) {
  .newsletter-inner {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
    gap: 18px;
  }
}

.newsletter h3 {
  font-size: 1.15rem;
  color: #60a5fa;
  margin-bottom: 4px;
}

.newsletter-desc {
  font-size: 0.95rem;
  color: rgba(230, 237, 243, 0.8);
}

.newsletter-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 180px;
  padding: 0.75rem 1rem;
  background: rgba(15, 23, 42, 0.9);
  border-radius: 999px;
  border: 1px solid rgba(96, 165, 250, 0.5);
  color: #e6edf3;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.newsletter-form input::placeholder {
  color: rgba(148, 163, 184, 0.8);
}

.newsletter-form input:focus {
  border-color: #60a5fa;
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.25);
  background: rgba(15, 23, 42, 0.98);
}

.newsletter-form button {
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 6px 18px rgba(96, 165, 250, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.newsletter-form button span.arrow {
  transition: transform 0.2s ease;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(96, 165, 250, 0.5);
}

.newsletter-form button:hover span.arrow {
  transform: translateX(3px);
}

.newsletter-note {
  margin-top: 6px;
  font-size: 0.8rem;
  color: rgba(148, 163, 184, 0.9);
}

/* --- FOOTER --- */

.footer {
  margin-top: 22px;
  padding: 18px 4px 0;
  font-size: 11px;
  color: var(--muted);
  border-top: 1px solid rgba(148, 163, 184, 0.23);
}

.footer-content {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  justify-content: space-between;
}

.footer a {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.footer a:hover {
  text-shadow: 0 0 8px rgba(96, 165, 250, 0.7);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-size: 11px;
}

.footer-links span.sep {
  color: rgba(148, 163, 184, 0.6);
}

.footer-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.96);
}

.footer-pill span.dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
}

@media (max-width: 720px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* --- SCROLL REVEAL --- */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 450ms ease-out, transform 450ms ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
