﻿/* Sonezia — Design tokens & shared styles */

:root {
  /* Palette stricte */
  --marine: #0F172A;
  --marine-85: rgba(15, 23, 42, 0.85);
  --marine-60: rgba(15, 23, 42, 0.6);
  --accent: #2563EB;
  --accent-soft: rgba(37, 99, 235, 0.12);
  --accent-line: rgba(37, 99, 235, 0.25);
  --creme: #F5F5F1;
  --white: #FFFFFF;
  --slate: #64748B;
  --slate-soft: #94A3B8;
  --border: #E2E8F0;
  --border-dark: rgba(148, 163, 184, 0.18);

  /* Motion intensity (tweakable: off / light / marked) */
  --motion-scale: 1;
  --motion-duration: 700ms;

  /* Radii & shadows */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-pill: 999px;
  --shadow-card: 0 1px 2px rgba(15, 23, 42, 0.04), 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-card-hover: 0 2px 4px rgba(15, 23, 42, 0.06), 0 20px 40px rgba(15, 23, 42, 0.1);
  --shadow-nav: 0 1px 0 rgba(255, 255, 255, 0.04), 0 10px 30px rgba(15, 23, 42, 0.35);

  /* Rythme */
  --content-w: 1200px;
  --gutter: clamp(20px, 4vw, 48px);
  --section-y: clamp(72px, 10vw, 140px);
}

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

html, body { margin: 0; padding: 0; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-optical-sizing: auto;
  color: var(--marine);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; border: 0; background: none; }

/* Reduced motion respect */
@media (prefers-reduced-motion: reduce) {
  :root { --motion-scale: 0; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* ─── Layout primitives ─────────────────────────────────────── */

.container {
  width: 100%;
  max-width: var(--content-w);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }

.section--marine { background: var(--marine); color: var(--white); position: relative; overflow: hidden; }
.section--creme { background: var(--creme); }
.section--white { background: var(--white); }

/* ─── Typography ────────────────────────────────────────────── */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 20px;
}

.eyebrow--on-dark { color: #93C5FD; }

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

h1, h2, h3, h4 { font-family: 'DM Sans', system-ui, sans-serif; color: inherit; margin: 0; letter-spacing: -0.02em; text-wrap: balance; }

.h-display {
  font-size: clamp(42px, 6.2vw, 84px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -0.035em;
}
.h-display b, .h-display strong { font-weight: 700; }
.h-display .hl {
  display: inline-block;
  position: relative;
  color: var(--accent);
  font-weight: 700;
}
.h-display .hl::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.08em;
  height: 0.14em;
  background: rgba(37, 99, 235, 0.18);
  z-index: -1;
  border-radius: 2px;
}

.h-section {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.h-card {
  font-size: 22px;
  line-height: 1.25;
  font-weight: 600;
}

.lead {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--slate);
  max-width: 62ch;
  text-wrap: pretty;
}
.lead--on-dark { color: rgba(239, 246, 255, 0.75); }

.muted { color: var(--slate); }
.muted--dark { color: rgba(239, 246, 255, 0.6); }

/* ─── Buttons ───────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  transition: transform 220ms cubic-bezier(.2,.8,.2,1), background-color 220ms, color 220ms, box-shadow 220ms;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--accent); color: var(--white); box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35); }
.btn--primary:hover { background: #1D4ED8; box-shadow: 0 12px 28px rgba(37, 99, 235, 0.45); }

.btn--ghost-dark {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(239, 246, 255, 0.18);
}
.btn--ghost-dark:hover { background: rgba(239, 246, 255, 0.06); border-color: rgba(239, 246, 255, 0.3); }

.btn--ghost-light {
  background: transparent;
  color: var(--marine);
  border: 1px solid var(--border);
}
.btn--ghost-light:hover { background: var(--creme); border-color: var(--accent-line); }

.btn svg { width: 16px; height: 16px; }

/* ─── Navigation ────────────────────────────────────────────── */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(239, 246, 255, 0.06);
  transition: background-color 260ms ease, border-color 260ms ease;
}
.nav.is-scrolled { background: rgba(15, 23, 42, 0.92); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}

.nav__logo { display: inline-flex; align-items: center; gap: 2px; color: var(--white); }
.nav__logo svg.nev-triskell { width: 36px; height: 36px; flex-shrink: 0; }
.nav__logo-icon { height: 40px; width: auto; flex-shrink: 0; }

/* Wordmark partagé (nav + footer) */
.nev-wordmark {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.035em;
  line-height: 1;
  color: currentColor;
  display: inline-block;
}
.nev-wordmark__v {
  font-family: 'Cormorant Garamond', 'DM Serif Display', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.12em;
  letter-spacing: -0.01em;
  color: #60A5FA;
}

/* Triskell animation — rotation strictement sur le centre SVG (0,0 dans le viewBox -60 -60 120 120) */
@keyframes nev-triskell-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.nev-triskell-spin {
  animation: nev-triskell-spin 22s linear infinite;
  transform-origin: 0 0;
  transform-box: view-box;
}
@keyframes nev-triskell-pulse {
  0%, 100% { r: 4.5; opacity: 1; }
  50%      { r: 5.3; opacity: 0.72; }
}
.nev-triskell-pulse { animation: nev-triskell-pulse 2.8s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  .nev-triskell-spin, .nev-triskell-pulse { animation: none; }
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  position: relative;
  color: rgba(239, 246, 255, 0.7);
  font-size: 14.5px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  transition: color 200ms ease;
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--white); }
.nav__link::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 320ms cubic-bezier(.2,.8,.2,1);
}
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }

.nav__cta { margin-left: auto; }

@media (max-width: 860px) {
  .nav__links { display: none; }
}

/* ─── Hero ──────────────────────────────────────────────────── */

.hero {
  position: relative;
  padding-top: calc(72px + clamp(72px, 10vw, 140px));
  padding-bottom: var(--section-y);
  min-height: 86vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: calc(0.9 * var(--motion-scale, 1));
}
.hero__glow {
  position: absolute;
  left: 50%;
  top: 20%;
  width: 900px; height: 900px;
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, rgba(37, 99, 235, 0.18), transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 10px;
  border-radius: var(--r-pill);
  background: rgba(96, 165, 250, 0.16);
  border: 1px solid rgba(147, 197, 253, 0.5);
  color: #DBEAFE;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  animation: floaty 5.2s ease-in-out infinite;
  animation-play-state: running;
}
.hero__badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.6);
  animation: ping 2.4s ease-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(calc(-6px * var(--motion-scale, 1))); }
}
@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(37, 99, 235, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

.hero__title { margin-top: 28px; color: var(--white); max-width: 16ch; }
.hero__sub { margin-top: 28px; font-size: clamp(16px, 1.3vw, 19px); color: rgba(239, 246, 255, 0.72); max-width: 54ch; }
.hero__cta-row { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 14px; }

.hero__metrics {
  display: flex;
  gap: 28px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.hero__metric { display: flex; flex-direction: column; }
.hero__metric b { font-size: 28px; font-weight: 700; color: var(--white); letter-spacing: -0.02em; }
.hero__metric span { font-size: 13px; color: rgba(239, 246, 255, 0.55); }

/* ─── Sections generic ──────────────────────────────────────── */

.section__head { max-width: 720px; margin: 0 auto var(--section-y) auto; text-align: center; padding-bottom: 0; }
.section__head--left { margin: 0 0 56px 0; text-align: left; }
.section__head .h-section { margin-bottom: 20px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: start; }

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
}

/* ─── Cards ─────────────────────────────────────────────────── */

.card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid transparent;
  transition: transform 320ms cubic-bezier(.2,.8,.2,1), box-shadow 320ms, border-color 320ms;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card:hover {
  transform: translateY(calc(-4px * var(--motion-scale, 1)));
  box-shadow: var(--shadow-card-hover);
  border-color: var(--accent-line);
}

.card--on-creme { background: var(--white); }
.card--ghost { background: transparent; box-shadow: none; border: 1px solid var(--border-dark); }

.card__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--marine);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform 420ms cubic-bezier(.2,.8,.2,1), background 320ms;
}
.card:hover .card__icon {
  transform: translateY(-2px) scale(1.04);
}
}
.card__icon svg { width: 22px; height: 22px; }

.card__title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
  position: relative;
  display: inline-block;
}
.card__title::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 420ms cubic-bezier(.2,.8,.2,1);
}
.card:hover .card__title::after { width: 100%; }

.card__body { color: var(--slate); font-size: 15.5px; line-height: 1.55; margin: 0; }

.card__list { margin: 20px 0 0; padding: 0; list-style: none; }
.card__list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px; color: var(--marine); padding: 6px 0;
  border-top: 1px solid var(--border);
}
.card__list li:first-child { border-top: 0; padding-top: 10px; }
.card__list li svg { flex: 0 0 auto; width: 16px; height: 16px; color: var(--accent); margin-top: 3px; }

.card__foot { margin-top: auto; padding-top: 24px; display: inline-flex; align-items: center; gap: 8px; font-weight: 500; color: var(--accent); font-size: 14.5px; }
.card__foot svg { width: 16px; height: 16px; transition: transform 260ms ease; }
.card:hover .card__foot svg { transform: translateX(4px); }

/* ─── Gains counters ────────────────────────────────────────── */

.gains { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 900px) { .gains { grid-template-columns: 1fr; } }

.gain {
  padding: 40px 32px;
  border-radius: var(--r-lg);
  background: rgba(239, 246, 255, 0.04);
  border: 1px solid rgba(239, 246, 255, 0.08);
  position: relative;
  overflow: hidden;
}
.gain__value {
  font-size: clamp(52px, 7vw, 84px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--white);
  font-feature-settings: "tnum";
}
.gain__value .unit { color: #60A5FA; font-weight: 700; }
.gain__value .dash { color: #60A5FA; }
.gain__label { margin-top: 14px; color: rgba(239, 246, 255, 0.7); font-size: 16px; }
.gain__tag { position: absolute; top: 24px; right: 24px; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(239, 246, 255, 0.35); }

/* ─── Steps (Comment ça marche) ─────────────────────────────── */

.steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }

.step {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px;
  border: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--marine);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}
.step__icon { width: 48px; height: 48px; border-radius: 12px; background: var(--marine); color: var(--white); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 24px; transition: transform 260ms cubic-bezier(.2,.8,.2,1); will-change: transform; }
.step__icon svg { width: 22px; height: 22px; }
.step__title { font-size: 20px; font-weight: 600; margin: 0 0 8px; letter-spacing: -0.015em; color: var(--marine); }
.step__body { color: var(--slate); font-size: 15px; }

/* Connectors: the dashed lines between steps */
.steps__connector {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  height: 1px;
  z-index: 0;
  pointer-events: none;
}
.steps__connector svg { width: 100%; height: auto; }
@media (max-width: 900px) { .steps__connector { display: none; } }

/* ─── Workflow visualization (n8n-like) ─────────────────────── */

.workflow {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.workflow__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.workflow__head-left { display: flex; align-items: center; gap: 10px; }
.workflow__head .chip {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  padding: 5px 10px;
  background: var(--creme);
  border-radius: var(--r-pill);
}
.workflow__head .dot-live { width: 8px; height: 8px; border-radius: 50%; background: #22C55E; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); animation: ping 2.2s ease-out infinite; }
.workflow__head .name { font-weight: 600; font-size: 15px; }
.workflow svg.workflow__svg { width: 100%; height: auto; display: block; }

/* ─── Confidence / trust ────────────────────────────────────── */

.trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) { .trust { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .trust { grid-template-columns: 1fr; } }
.trust__item {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 24px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.trust__item .ic { width: 36px; height: 36px; border-radius: 10px; background: var(--accent-soft); color: var(--accent); display: inline-flex; align-items: center; justify-content: center; }
.trust__item .ic svg { width: 18px; height: 18px; }
.trust__item h4 { font-size: 16px; font-weight: 600; margin: 0; letter-spacing: -0.01em; }
.trust__item p { margin: 0; color: var(--slate); font-size: 14px; }

.availability {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  margin: 40px auto 0;
  width: fit-content;
  position: relative;
}
.availability .pulse {
  position: relative;
  width: 10px; height: 10px; border-radius: 50%;
  background: #22C55E;
}
.availability .pulse::after {
  content: "";
  position: absolute; inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(34, 197, 94, 0.5);
  animation: ping-big 2.4s ease-out infinite;
}
.availability b { font-weight: 600; font-size: 14.5px; }
.availability span { color: var(--slate); font-size: 14px; }

/* ─── Contact ───────────────────────────────────────────────── */

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ─── Contact form (fond clair sur section marine) ──────────── */

.form {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  border-radius: var(--r-lg);
  padding: 36px;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .form__row { grid-template-columns: 1fr; } }
.form__field { display: flex; flex-direction: column; gap: 8px; margin-top: 18px; }
.form__field:first-child { margin-top: 0; }
.form__field label { font-size: 13.5px; color: var(--marine-60); font-weight: 500; letter-spacing: -0.005em; }
.form__field input, .form__field select, .form__field textarea {
  background: #F8FAFC;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px 16px;
  color: var(--white);
  font: inherit;
  font-size: 15px;
  transition: border-color 200ms, background 200ms, box-shadow 200ms;
  font-family: inherit;
}
.form__field input::placeholder, .form__field textarea::placeholder { color: var(--slate-soft); }
.form__field input, .form__field select, .form__field textarea { color: var(--marine); }
.form__field input:focus, .form__field select:focus, .form__field textarea:focus {
  outline: 0;
  border-color: var(--accent);
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.18);
}
.form__field textarea { resize: vertical; min-height: 120px; }
.form__submit { margin-top: 24px; width: 100%; justify-content: center; }

.contact-aside { color: rgba(239, 246, 255, 0.85); }
.contact-aside h3 { font-size: 22px; font-weight: 600; margin: 0 0 20px; color: var(--white); letter-spacing: -0.015em; }
.contact-aside ul { list-style: none; padding: 0; margin: 0; }
.contact-aside li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 0;
  border-top: 1px solid rgba(239, 246, 255, 0.1);
}
.contact-aside li:first-child { border-top: 0; padding-top: 8px; }
.contact-aside li .ic { width: 34px; height: 34px; border-radius: 10px; background: rgba(96, 165, 250, 0.18); color: #93C5FD; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.contact-aside li .ic svg { width: 17px; height: 17px; }
.contact-aside li b { display: block; color: var(--white); font-weight: 600; font-size: 15px; margin-bottom: 4px; }
.contact-aside li span { display: block; color: rgba(239, 246, 255, 0.6); font-size: 14px; }

/* ─── Footer ────────────────────────────────────────────────── */

.footer {
  background: var(--marine);
  color: rgba(239, 246, 255, 0.55);
  padding: 64px 0 36px;
  border-top: 1px solid rgba(239, 246, 255, 0.06);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(239, 246, 255, 0.06);
}
@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr; gap: 32px; } }
.footer__brand { display: flex; flex-direction: column; gap: 16px; }
.footer__brand .logo { display: inline-flex; align-items: center; gap: 2px; color: var(--white); }
.footer__brand .logo svg.nev-triskell { width: 32px; height: 32px; flex-shrink: 0; }
.footer__brand .logo .footer__logo-icon { height: 34px; width: auto; flex-shrink: 0; }
.footer__brand .logo .nev-wordmark { font-size: 20px; }
.footer__tag { color: rgba(239, 246, 255, 0.55); max-width: 36ch; font-size: 14.5px; }

.footer__col h5 { font-size: 12px; font-weight: 600; color: rgba(239, 246, 255, 0.55); margin: 0 0 16px; letter-spacing: 0.1em; text-transform: uppercase; }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__col a { color: rgba(239, 246, 255, 0.7); font-size: 14.5px; transition: color 200ms; }
.footer__col a:hover { color: var(--white); }

.footer__bot {
  display: flex; justify-content: space-between; gap: 20px;
  padding-top: 28px;
  color: var(--slate-soft);
  font-size: 13px;
  flex-wrap: wrap;
}
.footer__bot .links { display: flex; gap: 20px; }
.footer__bot a:hover { color: var(--white); }

/* ─── Utility animations ────────────────────────────────────── */

.reveal { opacity: 0; transform: translateY(calc(16px * var(--motion-scale, 1))); transition: opacity var(--motion-duration) cubic-bezier(.2,.8,.2,1), transform var(--motion-duration) cubic-bezier(.2,.8,.2,1); }
.reveal.is-in { opacity: 1; transform: none; }

.parallax { will-change: transform; }

/* ─── Page transitions ──────────────────────────────────────── */

@keyframes page-in {
  from { opacity: 0; transform: translateY(calc(12px * var(--motion-scale, 1))); }
  to { opacity: 1; transform: none; }
}
main { animation: page-in 700ms cubic-bezier(.2,.8,.2,1) both; }

/* ─── Tags / chips ──────────────────────────────────────────── */

.chip-list { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: var(--creme);
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
}
.chip--dark { background: rgba(37, 99, 235, 0.12); color: #93C5FD; }

/* Focus rings */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }


/* ─── Hero aurora (second blob, no parallax conflict) ─────────── */

.hero__aurora-2 {
  position: absolute;
  right: -8%;
  bottom: 0%;
  width: 680px;
  height: 680px;
  background: radial-gradient(closest-side, rgba(99, 102, 241, 0.14), transparent 70%);
  z-index: 0;
  pointer-events: none;
  animation: aurora-drift-2 13s ease-in-out infinite;
}

@keyframes aurora-drift-2 {
  0%, 100% { transform: translate(0, 0); opacity: 0.9; }
  50%       { transform: translate(-5%, 7%); opacity: 1.1; }
}

/* Breathing pulse on main glow — opacity only to avoid conflict with JS parallax transform */
@keyframes aurora-glow-pulse {
  0%, 100% { opacity: 0.75; }
  50%       { opacity: 1.1; }
}

.hero__glow { animation: aurora-glow-pulse 9s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  .hero__aurora-2 { animation: none; }
  .hero__glow { animation: none; }
}
