/*
Theme Name: France PDV Modern
Theme URI: https://www.france-pdv.fr/
Author: France PDV
Description: Thème sur mesure, léger et responsive pour présenter la gamme MONEY PDV.
Version: 1.3.0
Requires at least: 6.5
Requires PHP: 7.4
Text Domain: france-pdv-modern
*/

:root {
  --fpdv-purple-950: #2b1239;
  --fpdv-purple-900: #3a174b;
  --fpdv-purple-800: #4b1f60;
  --fpdv-purple-700: #642a7e;
  --fpdv-purple-600: #7b3f98;
  --fpdv-purple-100: #f2eafa;
  --fpdv-lime: #a4d65e;
  --fpdv-lime-dark: #6f9f2f;
  --fpdv-ink: #19151f;
  --fpdv-muted: #66606d;
  --fpdv-line: #e9e3ec;
  --fpdv-surface: #f8f6f9;
  --fpdv-white: #ffffff;
  --fpdv-shadow: 0 22px 70px rgba(43, 18, 57, 0.12);
  --fpdv-shadow-soft: 0 14px 40px rgba(43, 18, 57, 0.08);
  --fpdv-radius-sm: 14px;
  --fpdv-radius: 24px;
  --fpdv-radius-lg: 36px;
  --fpdv-page-gutter: clamp(18px, 2.5vw, 48px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--fpdv-ink);
  background: var(--fpdv-white);
  font-family: Aptos, "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.admin-bar .site-header {
  top: 32px;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--fpdv-purple-700);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--fpdv-purple-900);
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
.button {
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.65em;
  color: var(--fpdv-purple-950);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.75rem, 6vw, 5.4rem);
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

p {
  margin: 0 0 1.25rem;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed !important;
  z-index: 99999;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  padding: 12px 18px;
  margin: 0;
  clip: auto;
  color: var(--fpdv-white);
  background: var(--fpdv-purple-900);
  border-radius: 8px;
}

.fpdv-container {
  width: calc(100% - var(--fpdv-page-gutter) - var(--fpdv-page-gutter));
  margin-inline: auto;
}

.fpdv-section {
  padding: clamp(72px, 10vw, 132px) 0;
}

.fpdv-section--soft {
  background: var(--fpdv-surface);
}

.fpdv-section--dark {
  color: rgba(255,255,255,0.84);
  background:
    radial-gradient(circle at 12% 15%, rgba(164,214,94,0.2), transparent 22%),
    radial-gradient(circle at 85% 0%, rgba(123,63,152,0.65), transparent 35%),
    var(--fpdv-purple-950);
}

.fpdv-section--dark h2,
.fpdv-section--dark h3 {
  color: var(--fpdv-white);
}

.fpdv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--fpdv-purple-700);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.fpdv-eyebrow::before {
  width: 30px;
  height: 4px;
  content: "";
  background: var(--fpdv-lime);
  border-radius: 999px;
}

.fpdv-section--dark .fpdv-eyebrow {
  color: var(--fpdv-lime);
}

.fpdv-lead {
  max-width: 760px;
  color: var(--fpdv-muted);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.fpdv-section--dark .fpdv-lead {
  color: rgba(255,255,255,0.72);
}

.fpdv-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}

.fpdv-section-heading p {
  color: var(--fpdv-muted);
}

.fpdv-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.fpdv-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  color: var(--fpdv-white);
  background: var(--fpdv-purple-700);
  border: 1px solid var(--fpdv-purple-700);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(100,42,126,0.2);
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.fpdv-button:hover,
.fpdv-button:focus-visible {
  color: var(--fpdv-white);
  background: var(--fpdv-purple-900);
  border-color: var(--fpdv-purple-900);
  box-shadow: 0 14px 32px rgba(43,18,57,0.25);
  transform: translateY(-2px);
}

.fpdv-button--lime {
  color: var(--fpdv-purple-950);
  background: var(--fpdv-lime);
  border-color: var(--fpdv-lime);
  box-shadow: 0 10px 24px rgba(164,214,94,0.22);
}

.fpdv-button--lime:hover,
.fpdv-button--lime:focus-visible {
  color: var(--fpdv-white);
  background: var(--fpdv-lime-dark);
  border-color: var(--fpdv-lime-dark);
}

.fpdv-button--ghost {
  color: var(--fpdv-purple-800);
  background: transparent;
  border-color: rgba(100,42,126,0.25);
  box-shadow: none;
}

.fpdv-button--ghost:hover,
.fpdv-button--ghost:focus-visible {
  color: var(--fpdv-purple-950);
  background: var(--fpdv-purple-100);
  border-color: var(--fpdv-purple-100);
  box-shadow: none;
}

.fpdv-arrow {
  font-size: 1.15em;
  transition: transform 180ms ease;
}

a:hover .fpdv-arrow {
  transform: translateX(3px);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(255,255,255,0.9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--fpdv-line);
  box-shadow: 0 8px 30px rgba(43,18,57,0.06);
}

.fpdv-header-inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.fpdv-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  color: var(--fpdv-purple-950);
  font-weight: 850;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.fpdv-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 14px;
}

.fpdv-brand-copy {
  display: grid;
  line-height: 1.05;
}

.fpdv-brand-copy small {
  margin-top: 4px;
  color: var(--fpdv-muted);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fpdv-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.fpdv-nav a {
  padding: 10px 14px;
  color: #403946;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.fpdv-nav a:hover,
.fpdv-nav a[aria-current="page"] {
  color: var(--fpdv-purple-800);
  background: var(--fpdv-purple-100);
}

.fpdv-nav .fpdv-nav-reseller {
  color: var(--fpdv-muted);
  font-size: 0.82rem;
}

.fpdv-header-cta {
  flex: 0 0 auto;
}

.fpdv-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  align-items: center;
  justify-content: center;
  color: var(--fpdv-purple-950);
  background: var(--fpdv-purple-100);
  border: 0;
  border-radius: 15px;
}

.fpdv-menu-toggle span,
.fpdv-menu-toggle span::before,
.fpdv-menu-toggle span::after {
  width: 22px;
  height: 2px;
  content: "";
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.fpdv-menu-toggle span {
  position: relative;
}

.fpdv-menu-toggle span::before,
.fpdv-menu-toggle span::after {
  position: absolute;
  left: 0;
}

.fpdv-menu-toggle span::before { top: -7px; }
.fpdv-menu-toggle span::after { top: 7px; }
.fpdv-menu-toggle[aria-expanded="true"] span { background: transparent; }
.fpdv-menu-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.fpdv-menu-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* Hero */
.fpdv-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 10vw, 132px) 0 clamp(80px, 11vw, 150px);
  background:
    radial-gradient(circle at 84% 16%, rgba(164,214,94,0.18), transparent 24%),
    radial-gradient(circle at 10% 70%, rgba(123,63,152,0.1), transparent 27%),
    linear-gradient(180deg, #fff 0%, #fbf8fc 100%);
}

.fpdv-hero::after {
  position: absolute;
  right: -130px;
  bottom: -250px;
  width: 520px;
  height: 520px;
  content: "";
  border: 1px solid rgba(100,42,126,0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(100,42,126,0.025), 0 0 0 120px rgba(100,42,126,0.02);
}

.fpdv-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: clamp(48px, 8vw, 96px);
  align-items: center;
}

.fpdv-hero h1 span {
  color: var(--fpdv-purple-700);
}

.fpdv-hero-copy > p {
  max-width: 670px;
  margin-bottom: 30px;
  color: var(--fpdv-muted);
  font-size: clamp(1.12rem, 2vw, 1.34rem);
}

.fpdv-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 30px;
  color: var(--fpdv-muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.fpdv-proof-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.fpdv-proof-row span::before {
  display: inline-grid;
  width: 22px;
  height: 22px;
  content: "✓";
  place-items: center;
  color: var(--fpdv-purple-900);
  background: var(--fpdv-lime);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.fpdv-terminal-wrap {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.fpdv-terminal-glow {
  position: absolute;
  width: 82%;
  height: 82%;
  background: radial-gradient(circle, rgba(123,63,152,0.22), rgba(123,63,152,0));
  filter: blur(15px);
  border-radius: 50%;
}

.fpdv-terminal {
  position: relative;
  width: min(100%, 620px);
  padding: 16px 16px 30px;
  background: linear-gradient(145deg, #2c2930, #0f0d12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 34px;
  box-shadow: 0 45px 90px rgba(43,18,57,0.3);
  transform: perspective(1200px) rotateY(-7deg) rotateX(2deg);
}

.fpdv-terminal::before {
  position: absolute;
  bottom: -76px;
  left: 50%;
  width: 95px;
  height: 78px;
  content: "";
  background: linear-gradient(90deg, #b9b5bd, #f4f2f5 48%, #aaa5ad);
  transform: translateX(-50%);
  clip-path: polygon(20% 0, 80% 0, 100% 100%, 0 100%);
}

.fpdv-terminal::after {
  position: absolute;
  bottom: -92px;
  left: 50%;
  width: 220px;
  height: 28px;
  content: "";
  background: linear-gradient(180deg, #f2eff3, #aaa5ad);
  border-radius: 50%;
  box-shadow: 0 15px 30px rgba(43,18,57,0.2);
  transform: translateX(-50%);
}

.fpdv-terminal-screen {
  overflow: hidden;
  padding: 8px;
  background: #d7e7f7;
  border-radius: 23px;
}

.fpdv-terminal-interface {
  width: 100%;
  aspect-ratio: 1037 / 764;
  object-fit: cover;
  object-position: center;
  border-radius: 17px;
}

.fpdv-appbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.fpdv-appbar strong {
  color: var(--fpdv-purple-950);
  font-size: 0.9rem;
}

.fpdv-appbar span {
  color: var(--fpdv-muted);
  font-size: 0.68rem;
}

.fpdv-app-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.fpdv-app-tile {
  min-height: 76px;
  padding: 12px 9px;
  color: var(--fpdv-white);
  background: var(--tile-color, var(--fpdv-purple-700));
  border-radius: 12px;
  font-size: 0.68rem;
  font-weight: 750;
  line-height: 1.25;
}

.fpdv-app-tile b {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.fpdv-floating-card {
  position: absolute;
  z-index: 3;
  max-width: 200px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(100,42,126,0.1);
  border-radius: 18px;
  box-shadow: var(--fpdv-shadow-soft);
  backdrop-filter: blur(12px);
}

.fpdv-floating-card strong {
  display: block;
  color: var(--fpdv-purple-950);
  font-size: 0.88rem;
}

.fpdv-floating-card span {
  color: var(--fpdv-muted);
  font-size: 0.74rem;
}

.fpdv-floating-card--top {
  top: 10px;
  right: -16px;
}

.fpdv-floating-card--bottom {
  bottom: 30px;
  left: -36px;
}

.fpdv-pulse {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 7px;
  background: var(--fpdv-lime);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(164,214,94,0.18);
}

/* Cards and grids */
.fpdv-benefit-grid,
.fpdv-solution-grid,
.fpdv-sector-grid,
.fpdv-extension-grid {
  display: grid;
  gap: 20px;
}

.fpdv-benefit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fpdv-benefit-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 28px;
  background: var(--fpdv-white);
  border: 1px solid var(--fpdv-line);
  border-radius: var(--fpdv-radius);
  box-shadow: var(--fpdv-shadow-soft);
}

.fpdv-benefit-card::after {
  position: absolute;
  right: -28px;
  bottom: -35px;
  width: 120px;
  height: 120px;
  content: attr(data-number);
  color: rgba(100,42,126,0.05);
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
}

.fpdv-card-kicker {
  display: inline-flex;
  min-width: 42px;
  height: 42px;
  margin-bottom: 30px;
  align-items: center;
  justify-content: center;
  color: var(--fpdv-purple-950);
  background: var(--fpdv-lime);
  border-radius: 13px;
  font-size: 0.78rem;
  font-weight: 900;
}

.fpdv-benefit-card p,
.fpdv-solution-card p,
.fpdv-sector-card p,
.fpdv-extension-card p {
  color: var(--fpdv-muted);
  font-size: 0.94rem;
}

.fpdv-sector-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fpdv-sector-card {
  display: flex;
  min-height: 220px;
  padding: 26px;
  flex-direction: column;
  justify-content: space-between;
  color: var(--fpdv-ink);
  background: var(--fpdv-white);
  border: 1px solid var(--fpdv-line);
  border-radius: var(--fpdv-radius);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.fpdv-sector-card:hover {
  color: var(--fpdv-ink);
  border-color: rgba(100,42,126,0.26);
  box-shadow: var(--fpdv-shadow-soft);
  transform: translateY(-5px);
}

.fpdv-sector-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.fpdv-sector-code {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--fpdv-white);
  background: var(--sector-color, var(--fpdv-purple-700));
  border-radius: 17px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.fpdv-sector-card h3 {
  margin-top: 28px;
}

.fpdv-solution-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fpdv-solution-card {
  position: relative;
  display: flex;
  min-height: 320px;
  padding: 28px;
  flex-direction: column;
  color: var(--fpdv-ink);
  background: var(--fpdv-white);
  border: 1px solid var(--fpdv-line);
  border-radius: var(--fpdv-radius);
  box-shadow: var(--fpdv-shadow-soft);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.fpdv-solution-card:hover {
  color: var(--fpdv-ink);
  box-shadow: var(--fpdv-shadow);
  transform: translateY(-6px);
}

.fpdv-solution-card::before {
  width: 54px;
  height: 7px;
  margin-bottom: 28px;
  content: "";
  background: var(--card-accent, var(--fpdv-purple-700));
  border-radius: 999px;
}

.fpdv-solution-card .fpdv-solution-sector {
  margin-bottom: 8px;
  color: var(--card-accent, var(--fpdv-purple-700));
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fpdv-solution-card .fpdv-card-link {
  display: inline-flex;
  margin-top: auto;
  padding-top: 24px;
  align-items: center;
  gap: 8px;
  color: var(--fpdv-purple-800);
  font-size: 0.9rem;
  font-weight: 800;
}

.fpdv-extension-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fpdv-extension-card {
  padding: 26px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--fpdv-radius);
}

.fpdv-extension-card h3 {
  margin-bottom: 12px;
}

.fpdv-extension-card p {
  color: rgba(255,255,255,0.68);
}

.fpdv-extension-label {
  display: inline-block;
  margin-bottom: 24px;
  padding: 7px 10px;
  color: var(--fpdv-lime);
  background: rgba(164,214,94,0.1);
  border: 1px solid rgba(164,214,94,0.2);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Split content */
.fpdv-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.75fr);
  gap: clamp(48px, 9vw, 110px);
  align-items: center;
}

.fpdv-feature-panel {
  padding: clamp(30px, 5vw, 52px);
  background: var(--fpdv-purple-950);
  border-radius: var(--fpdv-radius-lg);
  box-shadow: var(--fpdv-shadow);
}

.fpdv-feature-panel h3 {
  color: var(--fpdv-white);
}

.fpdv-feature-panel p {
  color: rgba(255,255,255,0.68);
}

.fpdv-feature-list,
.fpdv-check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.fpdv-feature-list li,
.fpdv-check-list li {
  position: relative;
  padding-left: 34px;
}

.fpdv-feature-list li {
  color: rgba(255,255,255,0.86);
}

.fpdv-feature-list li::before,
.fpdv-check-list li::before {
  position: absolute;
  top: 0.18em;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  content: "✓";
  place-items: center;
  color: var(--fpdv-purple-950);
  background: var(--fpdv-lime);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.fpdv-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
}

.fpdv-stat {
  padding: 20px;
  background: rgba(255,255,255,0.04);
}

.fpdv-stat strong {
  display: block;
  color: var(--fpdv-white);
  font-size: 1.1rem;
}

.fpdv-stat span {
  color: rgba(255,255,255,0.58);
  font-size: 0.73rem;
}

/* CTA */
.fpdv-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 7vw, 76px);
  background: linear-gradient(135deg, var(--fpdv-purple-800), var(--fpdv-purple-950));
  border-radius: var(--fpdv-radius-lg);
  box-shadow: var(--fpdv-shadow);
}

.fpdv-cta::after {
  position: absolute;
  top: -130px;
  right: -100px;
  width: 340px;
  height: 340px;
  content: "";
  background: rgba(164,214,94,0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(164,214,94,0.04);
}

.fpdv-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
}

.fpdv-cta h2 {
  max-width: 750px;
  color: var(--fpdv-white);
}

.fpdv-cta p {
  max-width: 680px;
  color: rgba(255,255,255,0.72);
}

/* Internal pages */
.fpdv-page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 10vw, 132px) 0 clamp(64px, 8vw, 108px);
  background:
    radial-gradient(circle at 92% 10%, rgba(164,214,94,0.22), transparent 25%),
    var(--fpdv-purple-950);
}

.fpdv-page-hero h1 {
  max-width: 920px;
  color: var(--fpdv-white);
}

.fpdv-page-hero p {
  max-width: 760px;
  color: rgba(255,255,255,0.72);
  font-size: clamp(1.1rem, 2vw, 1.32rem);
}

.fpdv-breadcrumbs {
  display: flex;
  gap: 9px;
  margin-bottom: 30px;
  color: rgba(255,255,255,0.55);
  font-size: 0.84rem;
}

.fpdv-breadcrumbs a {
  color: var(--fpdv-lime);
}

.fpdv-product-hero {
  --product-accent: var(--fpdv-lime);
}

.fpdv-product-hero .fpdv-eyebrow {
  color: var(--product-accent);
}

.fpdv-product-hero .fpdv-eyebrow::before {
  background: var(--product-accent);
}

.fpdv-product-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.fpdv-product-highlight {
  padding: 20px;
  color: rgba(255,255,255,0.82);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 18px;
  font-size: 0.9rem;
  font-weight: 750;
}

.fpdv-product-highlight::before {
  display: block;
  width: 34px;
  height: 5px;
  margin-bottom: 16px;
  content: "";
  background: var(--product-accent);
  border-radius: 999px;
}

.fpdv-feature-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.fpdv-feature-column {
  padding: 30px;
  background: var(--fpdv-white);
  border: 1px solid var(--fpdv-line);
  border-radius: var(--fpdv-radius);
  box-shadow: var(--fpdv-shadow-soft);
}

.fpdv-feature-column h3 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fpdv-feature-column h3::before {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  content: "";
  background: var(--product-accent, var(--fpdv-lime));
  border-radius: 50%;
}

.fpdv-feature-column ul {
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.fpdv-feature-column li {
  position: relative;
  padding: 10px 0 10px 24px;
  color: var(--fpdv-muted);
  border-top: 1px solid var(--fpdv-line);
}

.fpdv-feature-column li::before {
  position: absolute;
  top: 14px;
  left: 2px;
  content: "•";
  color: var(--product-accent, var(--fpdv-purple-700));
  font-weight: 900;
}

.fpdv-feature-catalog {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.fpdv-feature-group {
  overflow: hidden;
  background: var(--fpdv-white);
  border: 1px solid var(--fpdv-line);
  border-radius: var(--fpdv-radius);
  box-shadow: var(--fpdv-shadow-soft);
}

.fpdv-feature-group summary {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 82px;
  padding: 22px 58px 22px 26px;
  cursor: pointer;
  font-size: 1.04rem;
  font-weight: 800;
  list-style: none;
}

.fpdv-feature-group summary::-webkit-details-marker { display: none; }

.fpdv-feature-group summary::after {
  position: absolute;
  top: 50%;
  right: 26px;
  width: 28px;
  height: 28px;
  content: "+";
  color: var(--fpdv-purple-800);
  background: rgba(164, 214, 94, 0.22);
  background: color-mix(in srgb, var(--product-accent, var(--fpdv-lime)) 24%, white);
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 27px;
  text-align: center;
  transform: translateY(-50%);
}

.fpdv-feature-group[open] summary::after { content: "−"; }

.fpdv-feature-group[open] summary {
  border-bottom: 1px solid var(--fpdv-line);
}

.fpdv-feature-count {
  color: var(--fpdv-muted);
  font-size: 0.75rem;
  font-weight: 750;
  white-space: nowrap;
}

.fpdv-feature-group ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
  padding: 16px 26px 22px;
  margin: 0;
  list-style: none;
}

.fpdv-feature-group li {
  position: relative;
  padding: 10px 0 10px 22px;
  color: var(--fpdv-muted);
  border-bottom: 1px solid var(--fpdv-line);
}

.fpdv-feature-group li::before {
  position: absolute;
  top: 10px;
  left: 0;
  content: "✓";
  color: var(--product-accent, var(--fpdv-lime-dark));
  font-weight: 900;
}

.fpdv-page-content {
  width: min(calc(100% - 40px), 880px);
  margin: 0 auto;
  padding: clamp(64px, 9vw, 110px) 0;
}

.fpdv-page-content > *:first-child {
  margin-top: 0;
}

.fpdv-page-content h2 {
  margin-top: 1.5em;
}

.fpdv-page-content img {
  border-radius: var(--fpdv-radius);
}

.fpdv-page-content .post-password-form {
  padding: 34px;
  background: var(--fpdv-surface);
  border: 1px solid var(--fpdv-line);
  border-radius: var(--fpdv-radius);
}

.post-password-form input[type="password"] {
  min-height: 50px;
  padding: 10px 14px;
  border: 1px solid var(--fpdv-line);
  border-radius: 12px;
}

.post-password-form input[type="submit"] {
  min-height: 50px;
  padding: 10px 18px;
  color: var(--fpdv-white);
  background: var(--fpdv-purple-700);
  border: 0;
  border-radius: 12px;
  font-weight: 750;
}

/* Reseller downloads */
.fpdv-downloads-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 8vw, 104px) 0 clamp(72px, 9vw, 118px);
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 78% 18%, rgba(164, 214, 94, 0.17), transparent 24%),
    radial-gradient(circle at 15% 100%, rgba(123, 63, 152, 0.7), transparent 35%),
    linear-gradient(128deg, #24102f 0%, var(--fpdv-purple-950) 54%, #411851 100%);
}

.fpdv-downloads-hero::after {
  position: absolute;
  right: -10%;
  bottom: -180px;
  width: 620px;
  height: 320px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.fpdv-downloads-orb {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.fpdv-downloads-orb--one {
  top: 8%;
  right: 3%;
  width: 270px;
  height: 270px;
}

.fpdv-downloads-orb--two {
  right: 17%;
  bottom: -22%;
  width: 390px;
  height: 390px;
}

.fpdv-downloads-hero .fpdv-container {
  position: relative;
  z-index: 1;
}

.fpdv-downloads-hero .fpdv-breadcrumbs {
  margin-bottom: clamp(38px, 5vw, 68px);
}

.fpdv-downloads-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.52fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
}

.fpdv-downloads-kicker {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 22px;
  color: var(--fpdv-lime);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fpdv-downloads-kicker-dot {
  width: 9px;
  height: 9px;
  background: var(--fpdv-lime);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(164, 214, 94, 0.12);
}

.fpdv-downloads-hero h1 {
  max-width: 780px;
  margin-bottom: 24px;
  color: var(--fpdv-white);
  font-size: clamp(3rem, 6vw, 5.8rem);
}

.fpdv-downloads-hero-copy > p {
  max-width: 710px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1.06rem, 1.7vw, 1.26rem);
}

.fpdv-downloads-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 26px;
}

.fpdv-downloads-trust-row span {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.85rem;
  font-weight: 700;
}

.fpdv-downloads-trust-row svg,
.fpdv-access-form svg,
.fpdv-access-help svg,
.fpdv-download-section svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.fpdv-downloads-trust-row svg {
  width: 18px;
  height: 18px;
  color: var(--fpdv-lime);
}

.fpdv-downloads-hero-panel {
  position: relative;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(12, 5, 16, 0.35);
  transform: rotate(2deg);
  backdrop-filter: blur(14px);
}

.fpdv-downloads-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px 3px 17px;
}

.fpdv-downloads-panel-mark {
  display: grid;
  width: 44px;
  height: 44px;
  color: var(--fpdv-purple-950);
  background: var(--fpdv-lime);
  border-radius: 14px;
  place-items: center;
}

.fpdv-downloads-panel-mark svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.fpdv-downloads-panel-status {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fpdv-downloads-panel-status span {
  width: 7px;
  height: 7px;
  background: var(--fpdv-lime);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(164, 214, 94, 0.1);
}

.fpdv-downloads-panel-window {
  padding: 22px;
  background: rgba(24, 11, 31, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
}

.fpdv-downloads-panel-window > span {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 3px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.fpdv-downloads-panel-window > span:first-child {
  background: var(--fpdv-lime);
}

.fpdv-downloads-panel-line {
  width: 46%;
  height: 8px;
  margin-top: 13px;
  background: rgba(255, 255, 255, 0.09);
  border-radius: 999px;
}

.fpdv-downloads-panel-line.is-wide {
  width: 72%;
  margin-top: 26px;
  background: rgba(164, 214, 94, 0.25);
}

.fpdv-downloads-panel-files {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 24px;
}

.fpdv-downloads-panel-files i {
  height: 72px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.fpdv-downloads-hero-panel > p {
  margin: 15px 3px 2px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.fpdv-downloads-access {
  position: relative;
  padding: clamp(70px, 9vw, 120px) 0;
  background:
    linear-gradient(rgba(248, 246, 249, 0.84), rgba(248, 246, 249, 0.84)),
    radial-gradient(circle at 1px 1px, rgba(100, 42, 126, 0.16) 1px, transparent 0);
  background-size: auto, 22px 22px;
}

.fpdv-access-card {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(400px, 1.12fr);
  overflow: hidden;
  max-width: 1080px;
  margin-inline: auto;
  background: var(--fpdv-white);
  border: 1px solid rgba(100, 42, 126, 0.1);
  border-radius: 32px;
  box-shadow: 0 32px 90px rgba(43, 18, 57, 0.13);
}

.fpdv-access-card-copy {
  display: flex;
  gap: 22px;
  padding: clamp(38px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.73);
  background:
    radial-gradient(circle at 100% 0, rgba(164, 214, 94, 0.22), transparent 32%),
    var(--fpdv-purple-950);
}

.fpdv-access-lock {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  color: var(--fpdv-purple-950);
  background: var(--fpdv-lime);
  border-radius: 17px;
  place-items: center;
}

.fpdv-access-lock svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.fpdv-access-label {
  display: block;
  margin-bottom: 15px;
  color: var(--fpdv-lime);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.fpdv-access-card-copy h2 {
  margin-bottom: 18px;
  color: var(--fpdv-white);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.fpdv-access-card-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.96rem;
}

.fpdv-access-form {
  display: flex;
  padding: clamp(38px, 5vw, 64px);
  flex-direction: column;
  justify-content: center;
}

.fpdv-access-form > label {
  margin-bottom: 10px;
  color: var(--fpdv-purple-950);
  font-size: 0.84rem;
  font-weight: 800;
}

.fpdv-access-input-group {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.fpdv-access-input-icon {
  position: absolute;
  top: 50%;
  left: 17px;
  z-index: 1;
  display: grid;
  color: var(--fpdv-purple-700);
  transform: translateY(-50%);
  pointer-events: none;
}

.fpdv-access-input-icon svg {
  width: 19px;
  height: 19px;
}

.fpdv-access-input-group input {
  width: 100%;
  min-width: 0;
  min-height: 58px;
  padding: 13px 18px 13px 48px;
  color: var(--fpdv-ink);
  background: var(--fpdv-surface);
  border: 1px solid var(--fpdv-line);
  border-radius: 15px;
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.fpdv-access-input-group input:focus {
  background: var(--fpdv-white);
  border-color: var(--fpdv-purple-600);
  box-shadow: 0 0 0 4px rgba(123, 63, 152, 0.1);
}

.fpdv-access-input-group button {
  display: inline-flex;
  min-height: 58px;
  gap: 9px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  color: var(--fpdv-white);
  background: var(--fpdv-purple-700);
  border: 0;
  border-radius: 15px;
  box-shadow: 0 12px 28px rgba(100, 42, 126, 0.22);
  font-weight: 800;
  white-space: nowrap;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.fpdv-access-input-group button:hover,
.fpdv-access-input-group button:focus-visible {
  background: var(--fpdv-purple-900);
  box-shadow: 0 16px 34px rgba(43, 18, 57, 0.25);
  transform: translateY(-2px);
}

.fpdv-access-input-group button svg {
  width: 18px;
  height: 18px;
}

.fpdv-access-privacy {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  margin: 17px 0 0;
  color: var(--fpdv-muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.fpdv-access-privacy svg {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  margin-top: 1px;
  color: var(--fpdv-lime-dark);
}

.fpdv-access-help {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  max-width: 920px;
  padding: 26px 30px;
  margin: 28px auto 0;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--fpdv-line);
  border-radius: 20px;
}

.fpdv-access-help-icon {
  display: grid;
  width: 44px;
  height: 44px;
  color: var(--fpdv-purple-700);
  background: var(--fpdv-purple-100);
  border-radius: 14px;
  place-items: center;
}

.fpdv-access-help strong,
.fpdv-access-help span {
  display: block;
}

.fpdv-access-help strong {
  color: var(--fpdv-purple-950);
  font-size: 0.92rem;
}

.fpdv-access-help div > span {
  color: var(--fpdv-muted);
  font-size: 0.82rem;
}

.fpdv-access-help > a {
  color: var(--fpdv-purple-700);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
}

.fpdv-access-help > a span {
  display: inline;
  margin-left: 4px;
  transition: margin 160ms ease;
}

.fpdv-access-help > a:hover span {
  margin-left: 8px;
}

.fpdv-downloads-library {
  padding: clamp(72px, 9vw, 120px) 0;
  background: var(--fpdv-surface);
}

.fpdv-downloads-library-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.52fr);
  gap: 50px;
  align-items: end;
  margin-bottom: 48px;
}

.fpdv-downloads-library-heading h2 {
  margin-bottom: 0;
}

.fpdv-downloads-library-heading > p {
  margin: 0;
  color: var(--fpdv-muted);
}

.fpdv-downloads-library-status {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 16px;
  color: #47751c;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fpdv-downloads-library-status span {
  width: 9px;
  height: 9px;
  background: var(--fpdv-lime);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(164, 214, 94, 0.17);
}

.fpdv-downloads-intro,
.fpdv-downloads-fallback {
  padding: 28px;
  margin-bottom: 24px;
  background: var(--fpdv-white);
  border: 1px solid var(--fpdv-line);
  border-radius: var(--fpdv-radius);
}

.fpdv-downloads-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.fpdv-download-section {
  --download-accent: var(--fpdv-purple-700);
  --download-tint: var(--fpdv-purple-100);
  overflow: hidden;
  background: var(--fpdv-white);
  border: 1px solid var(--fpdv-line);
  border-radius: 24px;
  box-shadow: 0 14px 40px rgba(43, 18, 57, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.fpdv-download-section:hover {
  border-color: rgba(100, 42, 126, 0.2);
  box-shadow: 0 24px 55px rgba(43, 18, 57, 0.1);
  transform: translateY(-3px);
}

.fpdv-download-section--server {
  --download-accent: #467718;
  --download-tint: #edf7e2;
}

.fpdv-download-section--driver {
  --download-accent: #9b5c11;
  --download-tint: #fff3df;
}

.fpdv-download-section--document {
  --download-accent: #256e78;
  --download-tint: #e6f5f7;
}

.fpdv-download-section--licence {
  --download-accent: #a4385d;
  --download-tint: #fbeaf0;
}

.fpdv-download-section > header {
  display: flex;
  gap: 17px;
  align-items: center;
  min-height: 108px;
  padding: 24px 26px;
  background: linear-gradient(120deg, var(--download-tint), var(--fpdv-white));
  border-bottom: 1px solid var(--fpdv-line);
}

.fpdv-download-section-icon {
  display: grid;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  color: var(--download-accent);
  background: var(--fpdv-white);
  border: 1px solid rgba(43, 18, 57, 0.07);
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(43, 18, 57, 0.07);
  place-items: center;
}

.fpdv-download-section-icon svg {
  width: 25px;
  height: 25px;
}

.fpdv-download-section-number {
  display: block;
  margin-bottom: 3px;
  color: var(--download-accent);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.fpdv-download-section h3 {
  margin: 0;
  color: var(--fpdv-purple-950);
  font-size: clamp(1.12rem, 1.7vw, 1.4rem);
  letter-spacing: -0.02em;
}

.fpdv-download-section-body {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.fpdv-download-section-body p {
  margin: 0;
}

.fpdv-download-section-body p:empty {
  display: none;
}

.fpdv-download-section-body em {
  display: inline-block;
  padding: 5px 9px;
  color: var(--fpdv-muted);
  background: var(--fpdv-surface);
  border-radius: 8px;
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 700;
}

.fpdv-download-section-body a {
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 60px;
  padding: 12px 14px;
  color: var(--fpdv-purple-950);
  background: var(--fpdv-white);
  border: 1px solid var(--fpdv-line);
  border-radius: 14px;
  font-size: 0.89rem;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.fpdv-download-section-body a::before {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  content: "↓";
  color: var(--download-accent);
  background: var(--download-tint);
  border-radius: 10px;
  font-size: 1rem;
  place-items: center;
}

.fpdv-download-section-body a::after {
  margin-left: auto;
  content: "Télécharger";
  color: var(--download-accent);
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.fpdv-download-section-body a:hover,
.fpdv-download-section-body a:focus-visible {
  color: var(--download-accent);
  background: var(--download-tint);
  border-color: color-mix(in srgb, var(--download-accent) 24%, white);
  transform: translateX(2px);
}

.fpdv-downloads-support {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  overflow: hidden;
  padding: clamp(34px, 5vw, 58px);
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 90% 0, rgba(164, 214, 94, 0.22), transparent 32%),
    var(--fpdv-purple-950);
  border-radius: 28px;
}

.fpdv-downloads-support > div {
  position: relative;
  z-index: 1;
}

.fpdv-downloads-support > div > span {
  display: block;
  margin-bottom: 12px;
  color: var(--fpdv-lime);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.fpdv-downloads-support h2 {
  margin-bottom: 12px;
  color: var(--fpdv-white);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.fpdv-downloads-support p {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
}

.fpdv-downloads-support .fpdv-button {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

/* Contact */
.fpdv-contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 82px);
  align-items: start;
}

.fpdv-contact-card {
  padding: 30px;
  background: var(--fpdv-purple-950);
  border-radius: var(--fpdv-radius);
  box-shadow: var(--fpdv-shadow);
}

.fpdv-contact-card h2,
.fpdv-contact-card h3 {
  color: var(--fpdv-white);
}

.fpdv-contact-card p,
.fpdv-contact-card a {
  color: rgba(255,255,255,0.75);
}

.fpdv-contact-card a:hover {
  color: var(--fpdv-lime);
}

.fpdv-contact-item {
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.fpdv-contact-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--fpdv-white);
}

.fpdv-form {
  padding: clamp(28px, 5vw, 48px);
  background: var(--fpdv-white);
  border: 1px solid var(--fpdv-line);
  border-radius: var(--fpdv-radius);
  box-shadow: var(--fpdv-shadow-soft);
}

.fpdv-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.fpdv-field {
  display: grid;
  gap: 7px;
}

.fpdv-field--full {
  grid-column: 1 / -1;
}

.fpdv-field label {
  color: var(--fpdv-purple-950);
  font-size: 0.86rem;
  font-weight: 780;
}

.fpdv-field input,
.fpdv-field select,
.fpdv-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--fpdv-ink);
  background: #fbfafc;
  border: 1px solid var(--fpdv-line);
  border-radius: 13px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.fpdv-field textarea {
  min-height: 150px;
  resize: vertical;
}

.fpdv-field input:focus,
.fpdv-field select:focus,
.fpdv-field textarea:focus {
  border-color: var(--fpdv-purple-600);
  box-shadow: 0 0 0 4px rgba(123,63,152,0.1);
}

.fpdv-form-note {
  margin-top: 16px;
  color: var(--fpdv-muted);
  font-size: 0.78rem;
}

.fpdv-form-message {
  padding: 15px 18px;
  margin-bottom: 22px;
  border-radius: 13px;
  font-size: 0.9rem;
  font-weight: 700;
}

.fpdv-form-message--success {
  color: #285d16;
  background: #ebf8df;
  border: 1px solid #ccebab;
}

.fpdv-form-message--error {
  color: #7a2230;
  background: #fff0f2;
  border: 1px solid #f3cbd2;
}

.fpdv-honeypot {
  position: absolute;
  left: -9999px;
}

/* CookieYes: harmonisation avec la nouvelle identité */
#cookie-law-info-bar {
  right: auto !important;
  bottom: 18px !important;
  left: 50% !important;
  width: min(calc(100% - 32px), 980px) !important;
  padding: 14px 18px !important;
  color: rgba(255,255,255,0.88) !important;
  background: rgba(43,18,57,0.96) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: 18px !important;
  box-shadow: 0 18px 50px rgba(21,11,27,0.3) !important;
  font-size: 0.84rem !important;
  line-height: 1.45 !important;
  text-align: center !important;
  transform: translateX(-50%) !important;
  backdrop-filter: blur(14px);
}

#cookie-law-info-bar .cli_action_button {
  min-height: 38px;
  padding: 9px 16px !important;
  margin-left: 12px !important;
  color: var(--fpdv-purple-950) !important;
  background: var(--fpdv-lime) !important;
  border-radius: 999px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
}

/* Footer */
.site-footer {
  color: rgba(255,255,255,0.7);
  background: #150b1b;
}

.fpdv-footer-main {
  display: grid;
  grid-template-columns: 1.1fr 0.6fr 0.7fr 0.7fr;
  gap: 52px;
  padding: 76px 0 58px;
}

.site-footer h2,
.site-footer h3 {
  color: var(--fpdv-white);
}

.site-footer h3 {
  margin-bottom: 18px;
  font-size: 1rem;
  letter-spacing: 0;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255,255,255,0.64);
  font-size: 0.9rem;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--fpdv-lime);
}

.fpdv-footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  color: var(--fpdv-white);
  font-weight: 850;
}

.fpdv-footer-brand img {
  width: 58px;
  height: 58px;
  border-radius: 15px;
}

.fpdv-footer-links {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.fpdv-footer-bottom {
  display: flex;
  padding: 24px 0 32px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.fpdv-footer-bottom p {
  margin: 0;
  font-size: 0.78rem;
}

/* 404 */
.fpdv-404 {
  display: grid;
  min-height: 65vh;
  place-items: center;
  padding: 90px 20px;
  text-align: center;
}

.fpdv-404 strong {
  display: block;
  color: var(--fpdv-purple-100);
  font-size: clamp(6rem, 20vw, 15rem);
  font-weight: 900;
  line-height: 0.8;
}

@media (max-width: 1080px) {
  .fpdv-header-cta { display: none; }
  .fpdv-nav a { padding-inline: 10px; }
  .fpdv-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(350px, 0.8fr); }
  .fpdv-benefit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fpdv-access-card { grid-template-columns: minmax(0, 0.8fr) minmax(380px, 1.2fr); }
  .fpdv-footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  body.admin-bar .site-header { top: 46px; }
  .fpdv-menu-toggle { display: inline-flex; }
  .fpdv-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 20px;
    left: 20px;
    display: none;
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
    background: var(--fpdv-white);
    border: 1px solid var(--fpdv-line);
    border-radius: 20px;
    box-shadow: var(--fpdv-shadow);
  }
  .fpdv-nav.is-open { display: flex; }
  .fpdv-nav a { padding: 13px 16px; }
  .fpdv-hero-grid,
  .fpdv-split,
  .fpdv-contact-grid,
  .fpdv-section-heading,
  .fpdv-downloads-hero-grid,
  .fpdv-access-card,
  .fpdv-downloads-library-heading,
  .fpdv-cta-inner {
    grid-template-columns: 1fr;
  }
  .fpdv-hero-copy { text-align: center; }
  .fpdv-hero-copy .fpdv-eyebrow,
  .fpdv-hero-copy .fpdv-actions,
  .fpdv-hero-copy .fpdv-proof-row { justify-content: center; }
  .fpdv-hero-copy > p { margin-inline: auto; }
  .fpdv-terminal-wrap { min-height: 500px; }
  .fpdv-sector-grid,
  .fpdv-solution-grid,
  .fpdv-extension-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fpdv-product-highlights { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fpdv-feature-catalog { grid-template-columns: 1fr; }
  .fpdv-downloads-hero-panel { width: min(100%, 460px); transform: none; }
  .fpdv-access-card-copy { align-items: flex-start; }
  .fpdv-downloads-library-heading { gap: 18px; }
  .fpdv-cta-inner { align-items: start; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  :root { --fpdv-page-gutter: 14px; }
  .fpdv-header-inner { min-height: 72px; }
  .fpdv-brand img { width: 46px; height: 46px; border-radius: 12px; }
  .fpdv-brand-copy small { display: none; }
  .fpdv-hero { padding-top: 62px; }
  .fpdv-hero-grid { gap: 42px; }
  .fpdv-terminal-wrap { min-height: 390px; }
  .fpdv-terminal { padding: 10px 10px 20px; border-radius: 24px; transform: none; }
  .fpdv-terminal-screen { padding: 11px; border-radius: 17px; }
  .fpdv-app-grid { gap: 5px; }
  .fpdv-app-tile { min-height: 60px; padding: 8px 6px; font-size: 0.58rem; }
  .fpdv-app-tile b { margin-bottom: 5px; }
  .fpdv-terminal::before { bottom: -55px; height: 58px; }
  .fpdv-terminal::after { bottom: -68px; width: 170px; }
  .fpdv-floating-card { display: none; }
  .fpdv-benefit-grid,
  .fpdv-sector-grid,
  .fpdv-solution-grid,
  .fpdv-extension-grid,
  .fpdv-product-highlights,
  .fpdv-feature-columns,
  .fpdv-feature-group ul,
  .fpdv-form-grid,
  .fpdv-downloads-grid,
  .fpdv-downloads-support,
  .fpdv-footer-main {
    grid-template-columns: 1fr;
  }
  .fpdv-benefit-card,
  .fpdv-solution-card { min-height: auto; }
  .fpdv-feature-group summary {
    grid-template-columns: 1fr;
    gap: 4px;
    min-height: 76px;
    padding: 18px 54px 18px 20px;
  }
  .fpdv-feature-group summary::after { right: 18px; }
  .fpdv-feature-group ul { padding: 12px 20px 18px; }
  .fpdv-field--full { grid-column: auto; }
  .fpdv-stat-row { grid-template-columns: 1fr; }
  .fpdv-downloads-hero { padding-top: 42px; }
  .fpdv-downloads-hero .fpdv-breadcrumbs { margin-bottom: 34px; }
  .fpdv-downloads-hero h1 { font-size: clamp(2.65rem, 14vw, 4rem); }
  .fpdv-downloads-trust-row { align-items: flex-start; flex-direction: column; }
  .fpdv-downloads-hero-panel { padding: 14px; border-radius: 24px; }
  .fpdv-downloads-panel-window { padding: 18px; }
  .fpdv-access-card { border-radius: 24px; }
  .fpdv-access-card-copy,
  .fpdv-access-form { padding: 30px 24px; }
  .fpdv-access-card-copy { gap: 16px; }
  .fpdv-access-lock { width: 46px; height: 46px; flex-basis: 46px; border-radius: 14px; }
  .fpdv-access-input-group { grid-template-columns: 1fr; }
  .fpdv-access-input-group button { width: 100%; }
  .fpdv-access-input-icon { top: 29px; }
  .fpdv-access-help { grid-template-columns: auto minmax(0, 1fr); padding: 22px; }
  .fpdv-access-help > a { grid-column: 2; }
  .fpdv-downloads-library-heading { margin-bottom: 34px; }
  .fpdv-download-section > header { min-height: 96px; padding: 20px; }
  .fpdv-download-section-body { padding: 16px; }
  .fpdv-download-section-body a::after { content: "↓"; font-size: 1rem; }
  .fpdv-downloads-support { gap: 24px; }
  .fpdv-downloads-support .fpdv-button { justify-self: start; }
  .fpdv-footer-main { gap: 36px; padding-top: 58px; }
  .fpdv-footer-bottom { align-items: flex-start; flex-direction: column; }
  #cookie-law-info-bar {
    bottom: 10px !important;
    width: calc(100% - 20px) !important;
    padding: 12px 14px !important;
  }
  #cookie-law-info-bar .cli_action_button {
    display: inline-flex !important;
    margin: 10px 0 0 8px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Le Mag Money ----------------------------------------------------------- */

.fpdv-mag-page main {
  overflow: hidden;
}

.fpdv-mag {
  --mag-paper: #fbf7ef;
  --mag-paper-deep: #f1eadf;
  --mag-ink: #211728;
  --mag-purple: #4b1f60;
  --mag-lime: #b5dd5d;
  color: var(--mag-ink);
  background: var(--mag-paper);
}

.fpdv-mag h1,
.fpdv-mag h2,
.fpdv-mag h3 {
  color: var(--mag-ink);
}

.fpdv-mag-overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--mag-purple);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.fpdv-mag-overline::before {
  width: 28px;
  height: 3px;
  content: "";
  background: var(--mag-lime);
}

.fpdv-mag-landing-hero {
  position: relative;
  padding: clamp(62px, 8vw, 118px) 0 clamp(82px, 10vw, 144px);
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 0%, rgba(181, 221, 93, 0.3), transparent 28%),
    radial-gradient(circle at 100% 76%, rgba(100, 42, 126, 0.2), transparent 34%),
    var(--mag-paper);
}

.fpdv-mag-landing-hero::after {
  position: absolute;
  right: -9vw;
  bottom: -24vw;
  width: 46vw;
  min-width: 520px;
  aspect-ratio: 1;
  content: "";
  background: var(--mag-purple);
  border-radius: 50%;
  opacity: 0.06;
}

.fpdv-mag-landing-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.7fr);
  gap: clamp(54px, 9vw, 140px);
  align-items: center;
}

.fpdv-mag-intro {
  max-width: 760px;
}

.fpdv-mag-logo {
  max-width: 780px;
  margin: 24px 0 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.2rem, 10vw, 9.2rem);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: -0.075em;
}

.fpdv-mag-logo strong {
  display: block;
  margin-top: 0.2em;
  color: var(--mag-purple);
  font-family: Aptos, "Segoe UI", sans-serif;
  font-size: 0.64em;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fpdv-mag-intro > p {
  max-width: 650px;
  margin-bottom: 32px;
  color: #5f5664;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.fpdv-mag-primary-action {
  background: var(--mag-purple);
  border-color: var(--mag-purple);
}

.fpdv-mag-cover {
  position: relative;
  display: flex;
  width: min(100%, 470px);
  min-height: 600px;
  flex-direction: column;
  justify-self: end;
  padding: clamp(30px, 4vw, 52px);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.1), transparent 34%),
    var(--mag-purple);
  box-shadow: 20px 28px 0 rgba(181, 221, 93, 0.72), 0 34px 80px rgba(43, 18, 57, 0.3);
  transform: rotate(1.5deg);
}

.fpdv-mag-cover::before {
  position: absolute;
  top: 20%;
  right: -27%;
  width: 70%;
  aspect-ratio: 1;
  content: "";
  border: 2px solid rgba(181, 221, 93, 0.55);
  border-radius: 50%;
}

.fpdv-mag-cover::after {
  position: absolute;
  right: -10%;
  bottom: -8%;
  width: 62%;
  aspect-ratio: 1;
  content: "";
  background: var(--mag-lime);
  border-radius: 52% 48% 20% 80%;
  opacity: 0.16;
}

.fpdv-mag-cover-topline,
.fpdv-mag-cover-brand,
.fpdv-mag-cover h2,
.fpdv-mag-cover ol,
.fpdv-mag-cover > a {
  position: relative;
  z-index: 1;
}

.fpdv-mag-cover-topline {
  display: flex;
  justify-content: space-between;
  padding-bottom: 17px;
  border-bottom: 1px solid rgba(255,255,255,0.28);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fpdv-mag-cover-brand {
  margin-top: 34px;
  color: var(--mag-lime);
  font-size: clamp(2.1rem, 4vw, 3.25rem);
  font-weight: 950;
  letter-spacing: 0.12em;
}

.fpdv-mag-cover h2 {
  max-width: 360px;
  margin: 18px 0 32px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.fpdv-mag-cover ol {
  display: grid;
  gap: 13px;
  padding: 0 0 0 20px;
  margin: auto 0 30px;
  color: rgba(255,255,255,0.8);
  font-size: 0.92rem;
  line-height: 1.4;
}

.fpdv-mag-cover > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.28);
  font-weight: 800;
  text-decoration: none;
}

.fpdv-mag-cover > a:hover,
.fpdv-mag-cover > a:focus-visible {
  color: var(--mag-lime);
}

.fpdv-mag-manifesto {
  padding: clamp(76px, 9vw, 126px) 0;
  color: rgba(255,255,255,0.78);
  background: var(--mag-ink);
}

.fpdv-mag-manifesto-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.65fr);
  gap: clamp(54px, 10vw, 160px);
  align-items: end;
}

.fpdv-mag-index-number {
  display: block;
  margin-bottom: 22px;
  color: var(--mag-lime);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.fpdv-mag-manifesto h2 {
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.fpdv-mag-manifesto p {
  margin-bottom: 30px;
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}

.fpdv-mag-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.fpdv-mag-pill-list li {
  padding: 8px 13px;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.23);
  font-size: 0.79rem;
  font-weight: 750;
}

.fpdv-mag-archive-section,
.fpdv-mag-toc-section {
  padding: clamp(76px, 9vw, 126px) 0;
}

.fpdv-mag-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.4fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 50px;
}

.fpdv-mag-section-heading h2 {
  margin: 12px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.05em;
}

.fpdv-mag-section-heading > p {
  color: #6b626f;
}

.fpdv-mag-archive-list {
  border-top: 2px solid var(--mag-ink);
}

.fpdv-mag-archive-row {
  display: grid;
  grid-template-columns: 70px 180px minmax(0, 1fr) 46px;
  gap: 24px;
  align-items: center;
  padding: 25px 8px;
  color: var(--mag-ink);
  border-bottom: 1px solid #d8d0c5;
  text-decoration: none;
  transition: padding 180ms ease, background 180ms ease;
}

.fpdv-mag-archive-row:hover,
.fpdv-mag-archive-row:focus-visible {
  padding-inline: 20px;
  color: var(--mag-ink);
  background: rgba(181, 221, 93, 0.19);
}

.fpdv-mag-archive-number {
  color: var(--mag-purple);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.fpdv-mag-archive-date {
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.fpdv-mag-archive-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
}

.fpdv-mag-archive-arrow {
  font-size: 1.5rem;
  text-align: right;
}

/* Issue */

.fpdv-mag-issue-hero {
  position: relative;
  padding: 42px 0 clamp(70px, 9vw, 120px);
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(181, 221, 93, 0.35), transparent 30%),
    var(--mag-paper);
}

.fpdv-mag-breadcrumbs {
  display: flex;
  gap: 11px;
  align-items: center;
  margin-bottom: clamp(58px, 8vw, 100px);
  color: #716977;
  font-size: 0.83rem;
  font-weight: 750;
}

.fpdv-mag-breadcrumbs a {
  color: var(--mag-purple);
  text-decoration: none;
}

.fpdv-mag-issue-heading {
  display: flex;
  gap: 40px;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 4px solid var(--mag-ink);
}

.fpdv-mag-issue-heading h1 {
  margin: 20px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.1rem, 10vw, 9rem);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: -0.075em;
}

.fpdv-mag-issue-heading h1 strong {
  color: var(--mag-purple);
  font-family: Aptos, "Segoe UI", sans-serif;
  font-size: 0.58em;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.fpdv-mag-issue-date {
  display: grid;
  justify-items: end;
  padding-bottom: 6px;
  line-height: 1;
}

.fpdv-mag-issue-date span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.fpdv-mag-issue-date strong {
  color: var(--mag-purple);
  font-size: clamp(2.3rem, 4vw, 4rem);
  letter-spacing: -0.05em;
}

.fpdv-mag-issue-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: end;
  padding-top: 32px;
}

.fpdv-mag-issue-intro p {
  max-width: 850px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.45;
}

.fpdv-mag-issue-intro > span {
  color: #716977;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fpdv-mag-toc-section {
  background: #fff;
}

.fpdv-mag-back-link {
  justify-self: end;
  color: var(--mag-purple);
  font-weight: 800;
}

.fpdv-mag-toc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #dcd5cc;
  border-left: 1px solid #dcd5cc;
}

.fpdv-mag-toc-card {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  padding: clamp(25px, 3vw, 38px);
  color: var(--mag-ink);
  border-right: 1px solid #dcd5cc;
  border-bottom: 1px solid #dcd5cc;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.fpdv-mag-toc-card:hover,
.fpdv-mag-toc-card:focus-visible {
  color: var(--mag-ink);
  background: rgba(181, 221, 93, 0.17);
  transform: translateY(-4px);
}

.fpdv-mag-toc-number {
  margin-bottom: 58px;
  color: #948d97;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.fpdv-mag-rubric {
  color: var(--mag-purple);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fpdv-mag-toc-card h3 {
  margin: 16px 0 30px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 2.7vw, 2.35rem);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.fpdv-mag-toc-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  margin-top: auto;
  border-top: 1px solid #dcd5cc;
  font-size: 0.85rem;
  font-weight: 800;
}

.fpdv-mag-articles {
  padding: 0 0 clamp(86px, 12vw, 160px);
  background: var(--mag-paper);
}

.fpdv-mag-article {
  display: grid;
  grid-template-columns: minmax(150px, 0.28fr) minmax(0, 1fr);
  gap: clamp(36px, 8vw, 130px);
  padding: clamp(78px, 10vw, 140px) 0;
  border-bottom: 1px solid #d8d0c5;
  scroll-margin-top: 110px;
}

.fpdv-mag-article-aside {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.fpdv-mag-article-number {
  color: var(--mag-lime);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 8vw, 7.5rem);
  line-height: 0.8;
}

.fpdv-mag-article-body {
  max-width: 880px;
}

.fpdv-mag-article-body h2 {
  margin-bottom: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 5.5vw, 5.3rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.055em;
}

.fpdv-mag-article-summary {
  padding-bottom: 28px;
  margin-bottom: 30px;
  border-bottom: 2px solid var(--mag-ink);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 650;
  line-height: 1.55;
}

.fpdv-mag-article-body > p:not(.fpdv-mag-article-summary) {
  max-width: 760px;
  color: #524a56;
  font-size: 1.05rem;
}

.fpdv-mag-takeaway {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 24px;
  padding: 24px 28px;
  margin-top: 40px;
  background: rgba(181, 221, 93, 0.22);
  border-left: 5px solid var(--mag-lime);
}

.fpdv-mag-takeaway span {
  color: var(--mag-purple);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fpdv-mag-takeaway p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  line-height: 1.5;
}

.fpdv-mag-issue-footer {
  padding: clamp(78px, 10vw, 130px) 0;
  color: rgba(255,255,255,0.75);
  background:
    radial-gradient(circle at 85% 0%, rgba(181,221,93,0.19), transparent 30%),
    var(--mag-purple);
}

.fpdv-mag-issue-footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 70px;
  align-items: end;
}

.fpdv-mag-issue-footer .fpdv-mag-overline {
  color: var(--mag-lime);
}

.fpdv-mag-issue-footer h2 {
  max-width: 820px;
  margin: 20px 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  font-weight: 400;
  letter-spacing: -0.05em;
}

.fpdv-mag-issue-footer p {
  max-width: 720px;
  margin: 0;
}

@media (max-width: 960px) {
  .fpdv-mag-landing-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
    gap: 50px;
  }

  .fpdv-mag-cover {
    min-height: 540px;
  }

  .fpdv-mag-manifesto-grid,
  .fpdv-mag-section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .fpdv-mag-section-heading > p,
  .fpdv-mag-back-link {
    justify-self: start;
  }

  .fpdv-mag-toc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fpdv-mag-toc-card:last-child {
    grid-column: 1 / -1;
    min-height: 260px;
  }

  .fpdv-mag-article {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 46px;
  }
}

@media (max-width: 720px) {
  .fpdv-mag-landing-grid {
    grid-template-columns: 1fr;
  }

  .fpdv-mag-logo {
    font-size: clamp(4rem, 20vw, 6.5rem);
  }

  .fpdv-mag-cover {
    width: calc(100% - 16px);
    min-height: 540px;
    justify-self: start;
    box-shadow: 14px 18px 0 rgba(181, 221, 93, 0.72), 0 26px 60px rgba(43, 18, 57, 0.24);
    transform: none;
  }

  .fpdv-mag-manifesto-grid,
  .fpdv-mag-issue-intro,
  .fpdv-mag-issue-footer-inner {
    grid-template-columns: 1fr;
  }

  .fpdv-mag-archive-row {
    grid-template-columns: 46px minmax(0, 1fr) 34px;
    gap: 14px;
  }

  .fpdv-mag-archive-date {
    grid-column: 2;
  }

  .fpdv-mag-archive-title {
    grid-column: 2;
  }

  .fpdv-mag-archive-arrow {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .fpdv-mag-issue-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .fpdv-mag-issue-date {
    display: flex;
    gap: 8px;
    align-items: baseline;
    justify-items: start;
  }

  .fpdv-mag-issue-date strong {
    font-size: 2.2rem;
  }

  .fpdv-mag-issue-intro {
    align-items: start;
  }

  .fpdv-mag-toc-grid {
    grid-template-columns: 1fr;
  }

  .fpdv-mag-toc-card,
  .fpdv-mag-toc-card:last-child {
    grid-column: auto;
    min-height: 270px;
  }

  .fpdv-mag-toc-number {
    margin-bottom: 34px;
  }

  .fpdv-mag-article {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .fpdv-mag-article-aside {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: end;
  }

  .fpdv-mag-article-number {
    font-size: 4.2rem;
  }

  .fpdv-mag-takeaway {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .fpdv-mag-issue-footer-inner {
    align-items: start;
    gap: 36px;
  }
}

@media (max-width: 480px) {
  .fpdv-mag-landing-hero {
    padding-top: 46px;
  }

  .fpdv-mag-logo {
    letter-spacing: -0.085em;
  }

  .fpdv-mag-cover {
    min-height: 500px;
    padding: 28px 24px;
  }

  .fpdv-mag-cover-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .fpdv-mag-archive-row:hover,
  .fpdv-mag-archive-row:focus-visible {
    padding-inline: 8px;
  }

  .fpdv-mag-issue-heading h1 {
    font-size: clamp(3.7rem, 21vw, 5rem);
  }

  .fpdv-mag-article-body h2 {
    font-size: clamp(2.5rem, 13vw, 3.6rem);
  }
}
