:root {
  --ink: #031614;
  --ink-deep: #00120f;
  --cream: #fffef0;
  --lime: #8dff14;
  --lavender: #d5b4fb;
  --glass: rgba(255, 254, 236, 0.2);
  --glass-dark: rgba(178, 197, 188, 0.28);
  --line: rgba(255, 254, 236, 0.32);
  --page: min(1120px, calc(100vw - 48px));
  --radius: 16px;
  color-scheme: dark;
  font-family: "Avenir Next", Avenir, "Century Gothic", "Helvetica Neue", Arial, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: rgba(141, 255, 20, 0.6) var(--ink);
  overflow-x: clip;
}

html.discover-document {
  scroll-behavior: auto;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--cream);
  background:
    radial-gradient(circle at 50% 35%, rgba(16, 71, 53, 0.2), transparent 35%),
    var(--ink);
  overflow-x: clip;
}

body::selection {
  color: var(--ink);
  background: var(--lime);
}

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

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 15px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 10px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 62px;
  left: 50%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 109px;
  gap: 34px;
  width: min(1190px, calc(100vw - 90px));
  transform: translateX(-50%);
}

.header-shell,
.account-button {
  height: 71px;
  border: 1px solid rgba(255, 254, 236, 0.08);
  background: rgba(255, 254, 236, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 12px 40px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-shell {
  display: flex;
  align-items: center;
  padding: 0 38px;
  border-radius: 999px;
}

.brand {
  display: flex;
  width: 150px;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(22px, 3vw, 43px);
  width: 100%;
  margin-left: 38px;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color 180ms ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--lime);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--lime);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.account-button {
  display: grid;
  place-items: center;
  color: var(--cream);
  border-radius: 999px;
  transition: color 180ms ease, background-color 180ms ease;
}

.account-button svg {
  width: 27px;
  height: 27px;
}

.account-button:hover {
  color: var(--lime);
  background: rgba(255, 254, 236, 0.27);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 1060px;
  place-items: start center;
  padding-top: 310px;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  height: 340px;
  background: linear-gradient(transparent, var(--ink));
  content: "";
  pointer-events: none;
}

.hero-atmosphere,
.footer-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.halo {
  position: absolute;
  opacity: 0.92;
  filter: saturate(1.15);
}

.halo-left {
  top: 340px;
  left: -500px;
  width: 1180px;
}

.halo-right {
  top: 335px;
  right: -430px;
  width: 1000px;
}

.glass-curtain {
  position: absolute;
  top: 315px;
  right: -4%;
  left: -4%;
  height: 1040px;
  background: url("./public/assets/glass-a.png") repeat-x center top / 59px 1040px;
  filter: contrast(1.15) saturate(1.25);
  opacity: 0.72;
  -webkit-mask-image: linear-gradient(transparent 0, #000 15%, #000 72%, transparent 100%);
  mask-image: linear-gradient(transparent 0, #000 15%, #000 72%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: var(--page);
  text-align: center;
}

.hero h1 {
  max-width: 1100px;
  margin: 0;
  font-size: clamp(54px, 6.6vw, 84px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.046em;
}

.hero h1.hero-title--statement {
  font-size: clamp(42px, 4.55vw, 58px);
  line-height: 1.45;
}

.ringed,
.underlined {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.ringed::after {
  position: absolute;
  z-index: -1;
  inset: -10% -5% -2% -6%;
  border: clamp(2px, 0.24vw, 4px) solid var(--lime);
  border-radius: 50%;
  content: "";
  transform: rotate(-2deg) skewX(-10deg);
  box-shadow: 0 0 12px rgba(141, 255, 20, 0.12);
}

.ringed::before {
  position: absolute;
  z-index: -1;
  inset: 8% -5% -12% 1%;
  border-bottom: 2px solid var(--lime);
  border-radius: 50%;
  content: "";
  transform: rotate(-5deg);
}

.underlined::after,
.price-underline::after {
  position: absolute;
  right: 3%;
  bottom: -10px;
  left: 2%;
  height: 8px;
  border-top: 3px solid var(--lime);
  border-bottom: 2px solid var(--lime);
  content: "";
  transform: rotate(-0.5deg) skewX(-15deg);
}

.glass-button {
  display: grid;
  width: 335px;
  height: 57px;
  margin-top: 105px;
  place-items: center;
  border: 1px solid rgba(255, 254, 236, 0.12);
  border-radius: 999px;
  background: rgba(255, 254, 236, 0.21);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(13px);
  font-size: 13px;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.glass-button:hover {
  color: var(--ink);
  background: var(--lime);
  transform: translateY(-2px);
}

.section {
  position: relative;
  padding-right: 24px;
  padding-left: 24px;
}

.section-heading {
  width: var(--page);
  margin: 0 auto;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 2.5vw, 32px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.032em;
}

.section-heading em {
  color: var(--lime);
  font-style: normal;
}

.features {
  z-index: 5;
  min-height: 790px;
  margin-top: -40px;
  padding-top: 96px;
}

.features .section-heading h2 {
  font-size: clamp(28px, 2.5vw, 32px);
}

.feature-arc {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  width: min(1135px, calc(100vw - 80px));
  margin: 112px auto 0;
}

.feature-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 292px;
  padding: 32px 24px;
  border: 1px solid rgba(255, 254, 236, 0.17);
  border-radius: 13px;
  background: rgba(255, 254, 236, 0.21);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 20px 70px rgba(0, 0, 0, 0.14);
  text-align: center;
  backdrop-filter: blur(14px);
}

.feature-card--outer {
  transform: translateY(115px);
}

.feature-card--mid {
  transform: translateY(55px);
}

.feature-card h3 {
  margin: 0 0 24px;
  color: var(--lime);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.feature-card p {
  margin: 0;
  color: rgba(255, 254, 240, 0.94);
  font-size: 14px;
  line-height: 1.45;
}

.solution {
  padding-top: 70px;
}

.solution-heading h2 {
  font-size: 32px;
}

.laptop-stage {
  position: relative;
  width: min(1280px, 112vw);
  margin: 90px auto 0;
}

.laptop-stage img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
}

.laptop-screen-video {
  position: absolute;
  z-index: 3;
  top: 19.9%;
  left: 22.55%;
  display: block;
  width: 54.85%;
  height: 46.35%;
  border: 0;
  border-radius: 0.5%;
  background: var(--lime);
  object-fit: cover;
  pointer-events: none;
}

.laptop-video-controls {
  position: absolute;
  z-index: 4;
  right: 23.7%;
  bottom: 35.2%;
  display: flex;
  gap: clamp(6px, 0.65vw, 10px);
}

.laptop-video-control {
  display: grid;
  width: clamp(34px, 3.25vw, 42px);
  height: clamp(34px, 3.25vw, 42px);
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 254, 240, 0.34);
  border-radius: 50%;
  background: rgba(6, 56, 49, 0.82);
  color: var(--cream);
  box-shadow: 0 6px 18px rgba(3, 29, 26, 0.24);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.laptop-video-control:hover {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--forest);
  transform: translateY(-2px);
}

.laptop-video-control:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

.video-control-icon {
  width: clamp(16px, 1.65vw, 21px);
  height: clamp(16px, 1.65vw, 21px);
}

[data-video-playback][data-state="playing"] .video-control-icon--play,
[data-video-playback][data-state="paused"] .video-control-icon--pause,
[data-video-sound][data-state="muted"] .video-control-icon--sound,
[data-video-sound][data-state="sound"] .video-control-icon--muted {
  display: none;
}

.laptop-glow {
  position: absolute;
  z-index: 1;
  right: 2%;
  bottom: 1%;
  left: 2%;
  height: 26%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(216, 255, 242, 0.62), rgba(82, 139, 119, 0.14) 38%, transparent 70%);
  filter: blur(40px);
}

.solution-copy {
  width: min(980px, calc(100vw - 48px));
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.45;
  letter-spacing: -0.012em;
}

.solution-copy p {
  margin: 0 0 24px;
}

.security-section {
  padding-top: 144px;
  padding-bottom: 128px;
}

.security-content {
  position: relative;
  width: min(896px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 64px 80px 56px;
  border: 1px solid rgba(255, 254, 236, 0.14);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 100%, rgba(141, 255, 20, 0.14), transparent 42%),
    rgba(255, 254, 236, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 32px 96px rgba(0, 0, 0, 0.16);
  text-align: center;
  backdrop-filter: blur(16px);
}

.security-content h2 {
  margin: 0 auto 40px;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.005em;
}

.security-content h2 em,
.testimonials-header h2 em {
  color: var(--lime);
  font-style: normal;
}

.security-content p {
  max-width: 696px;
  margin: 0 auto 24px;
  font-size: 18px;
  line-height: 1.45;
}

.security-content img {
  display: block;
  width: 80px;
  height: 96px;
  margin: 40px auto 0;
  object-fit: contain;
}

.testimonials {
  padding-top: 96px;
  padding-bottom: 144px;
}

.testimonials-header {
  width: min(1104px, calc(100vw - 96px));
  margin: 0 auto 64px;
}

.testimonials-header h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.005em;
}

.trusted-clients-banner {
  --client-logo-gap: 32px;
  width: min(1216px, calc(100vw - 32px));
  margin: 88px auto 64px;
  overflow: hidden;
  border: 1px solid rgba(255, 254, 236, 0.3);
  border-radius: 16px;
  background: rgba(255, 254, 236, 0.2);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08), 0 24px 64px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.trusted-client-marquee {
  display: flex;
  width: calc(466.666% + 149.334px);
  animation: trusted-client-scroll 42s linear infinite;
  will-change: transform;
}

.trusted-client-logos {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  flex: 0 0 50%;
  gap: var(--client-logo-gap);
  box-sizing: border-box;
  min-height: 176px;
  align-items: center;
  padding: 32px var(--client-logo-gap) 32px 0;
}

.trusted-client-logos img {
  display: block;
  width: 100%;
  max-width: 184px;
  height: 72px;
  margin: 0 auto;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 0.64;
}

@keyframes trusted-client-scroll {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.trusted-clients-banner:hover .trusted-client-marquee,
.trusted-clients-banner:focus-within .trusted-client-marquee {
  animation-play-state: paused;
}

.testimonial-carousel {
  position: relative;
  width: min(1168px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 0 56px;
}

.testimonial-track {
  display: grid;
  grid-auto-columns: minmax(0, 1fr);
  grid-auto-flow: column;
  gap: 32px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  min-height: 208px;
  margin: 0;
  padding: 32px 24px;
  border: 1px solid rgba(255, 254, 236, 0.14);
  border-radius: 12px;
  background: rgba(255, 254, 236, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 24px 64px rgba(0, 0, 0, 0.12);
  scroll-snap-align: start;
  backdrop-filter: blur(14px);
}

.testimonial-card figcaption {
  margin-bottom: 32px;
  color: var(--lavender);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
}

.testimonial-card blockquote {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
}

.testimonial-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  width: 40px;
  height: 64px;
  padding: 6px;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 180ms ease, opacity 180ms ease;
}

.testimonial-arrow:hover {
  transform: translateY(-50%) scale(1.08);
}

.testimonial-arrow img {
  display: block;
  width: 52px;
  height: 26px;
}

.testimonial-arrow--left {
  left: 0;
}

.testimonial-arrow--left img {
  transform: rotate(90deg);
}

.testimonial-arrow--right {
  right: 0;
}

.testimonial-arrow--right img {
  transform: rotate(-90deg);
}

.pricing {
  padding-top: 160px;
  padding-bottom: 165px;
}

.pricing::after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: -400px;
  left: 0;
  height: 950px;
  background:
    radial-gradient(circle at 50% 78%, rgba(141, 255, 20, 0.35), transparent 18%),
    linear-gradient(transparent, rgba(0, 12, 10, 0.15));
  content: "";
  pointer-events: none;
}

.pricing-heading h2 {
  font-size: 32px;
}

.price-underline {
  position: relative;
  display: inline-block;
}

.pricing-controls {
  display: grid;
  grid-template-columns: minmax(0, 720px) 128px;
  gap: 32px;
  align-items: end;
  justify-content: center;
  width: min(880px, calc(100vw - 48px));
  margin: 104px auto 64px;
}

.billing-toggle {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.billing-toggle button {
  height: 50px;
  color: var(--cream);
  border: 1px solid rgba(255, 254, 236, 0.22);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.billing-toggle button span {
  color: var(--lime);
  font-size: 11px;
}

.billing-toggle button.is-active {
  color: var(--lime);
  background: rgba(255, 254, 236, 0.22);
}

.currency-picker {
  display: grid;
  gap: 8px;
}

.currency-picker > span {
  color: rgba(255, 254, 240, 0.72);
  font-size: 12px;
}

.currency-picker select {
  width: 128px;
  height: 48px;
  padding: 0 36px 0 16px;
  color: var(--cream);
  border: 1px solid rgba(255, 254, 236, 0.22);
  border-radius: 12px;
  background:
    linear-gradient(45deg, transparent 50%, var(--cream) 50%) calc(100% - 17px) 20px / 6px 6px no-repeat,
    linear-gradient(135deg, var(--cream) 50%, transparent 50%) calc(100% - 11px) 20px / 6px 6px no-repeat,
    rgba(255, 254, 236, 0.2);
  font-size: 14px;
  cursor: pointer;
  appearance: none;
  backdrop-filter: blur(14px);
}

.currency-picker select:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: min(1160px, calc(100vw - 48px));
  margin: 0 auto;
}

.price-card {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  min-height: 690px;
  padding: 40px 24px 34px;
  border: 1px solid rgba(255, 254, 236, 0.28);
  border-radius: 16px;
  background: rgba(255, 254, 236, 0.21);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 24px 80px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(15px);
}

.price-card h3 {
  margin: 0 0 5px;
  font-size: 22px;
  font-weight: 600;
}

.plan-intro {
  min-height: 52px;
  margin: 0;
  color: var(--lavender);
  font-size: 12px;
  line-height: 1.5;
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  margin: 42px 0 42px;
}

.price strong {
  font-size: clamp(46px, 4.7vw, 64px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.price span {
  color: var(--lavender);
  font-size: 18px;
  line-height: 1;
}

.price-card ul {
  display: grid;
  gap: 17px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}

.price-card li {
  position: relative;
  padding-left: 32px;
}

.price-card li::before {
  position: absolute;
  top: -1px;
  left: 2px;
  color: var(--lavender);
  content: "✓";
  font-size: 21px;
  line-height: 1;
}

.subscribe-button {
  display: grid;
  height: 48px;
  margin-top: 48px;
  place-items: center;
  color: var(--lavender);
  border: 2px solid rgba(213, 180, 251, 0.55);
  border-radius: 12px;
  transition: color 180ms ease, background 180ms ease;
}

.subscribe-button:hover {
  color: var(--ink);
  background: var(--lavender);
}

.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  padding: 8px 24px;
  color: white;
  border-radius: 999px;
  background: linear-gradient(105deg, #d5b4fb, #cd75ef);
  font-size: 11px;
  font-weight: 600;
  transform: translateX(-50%);
  white-space: nowrap;
}

.demo-link {
  display: inline-block;
  margin: 30px 0 0 max(24px, calc((100vw - 1160px) / 2));
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.faq {
  padding-top: 120px;
  padding-bottom: 210px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.faq-list {
  width: min(850px, calc(100vw - 48px));
  margin: 65px auto 0;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 25px 46px 25px 0;
  cursor: pointer;
  font-size: 18px;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 22px;
  right: 5px;
  color: var(--lime);
  content: "+";
  font-size: 26px;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  max-width: 700px;
  margin: -5px 0 24px;
  color: rgba(255, 254, 240, 0.72);
  font-size: 14px;
  line-height: 1.6;
}

.site-footer {
  position: relative;
  min-height: 740px;
  padding: 220px 64px 70px;
  overflow: hidden;
}

.footer-atmosphere img {
  position: absolute;
  right: 5%;
  bottom: -80px;
  left: 5%;
  width: 90%;
  opacity: 0.9;
}

.footer-curtain {
  position: absolute;
  right: -2%;
  bottom: -100px;
  left: -2%;
  height: 760px;
  background: url("./public/assets/glass-b.png") repeat-x center bottom / 58px 760px;
  opacity: 0.82;
  -webkit-mask-image: linear-gradient(transparent, #000 32%, #000 100%);
  mask-image: linear-gradient(transparent, #000 32%, #000 100%);
}

.site-footer::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(var(--ink), transparent 36%, rgba(0, 18, 15, 0.12));
  content: "";
  pointer-events: none;
}

.footer-grid,
.brevo-newsletter {
  position: relative;
  z-index: 3;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(520px, 1.8fr) repeat(3, minmax(120px, 0.65fr));
  gap: 34px;
  align-items: start;
  width: min(1160px, calc(100vw - 128px));
  margin: 0 auto;
}

.footer-primary {
  min-width: 0;
}

.footer-brand > img,
.legal-footer-brand > img {
  display: block;
  width: 145px;
  height: auto;
  max-width: 100%;
  aspect-ratio: 3694 / 433;
  object-fit: contain;
}

.footer-brand p {
  margin: 8px 0 34px;
  color: var(--cream);
  font-size: 16px;
  line-height: 1.45;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.social-links a {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
}

.social-links img {
  display: block;
  width: 24px;
  height: 24px;
}

.footer-grid nav {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 11px;
}

.footer-grid nav h3 {
  margin: 0 0 13px;
  font-size: 15px;
}

.footer-grid nav a {
  font-size: 13px;
  line-height: 1.35;
  transition: color 160ms ease;
}

.footer-grid nav a:hover {
  color: var(--lime);
}

.brevo-newsletter {
  width: 100%;
  max-width: 650px;
  margin: 52px 0 0;
  padding: 0 !important;
  color: var(--cream);
  background: transparent !important;
  text-align: left !important;
}

.brevo-newsletter .sib-form-container,
.brevo-newsletter #sib-container {
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  text-align: left !important;
}

.brevo-form {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 145px;
  gap: 16px 20px;
  align-items: start;
  width: 100%;
}

.brevo-newsletter-copy {
  grid-column: 1 / -1;
  width: 100%;
  margin-bottom: 8px;
}

.brevo-eyebrow {
  margin: 0 0 7px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brevo-newsletter-copy h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.brevo-newsletter-copy > p:last-child {
  margin: 10px 0 0;
  color: rgba(255, 254, 240, 0.7);
  font-size: 13px;
  line-height: 1.55;
}

.brevo-email-block,
.brevo-submit-block,
.brevo-optin-block {
  padding: 0 !important;
}

.brevo-email-block {
  grid-column: 1;
}

.brevo-submit-block {
  grid-column: 2;
}

.brevo-newsletter .entry__field {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: transparent !important;
}

.brevo-newsletter #EMAIL,
.brevo-newsletter .sib-form-block__button {
  width: 100%;
  height: 49px;
  border: 1px solid rgba(255, 254, 236, 0.12) !important;
  border-radius: 999px !important;
  font-family: inherit !important;
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
}

.brevo-newsletter #EMAIL {
  padding: 0 24px !important;
  color: var(--cream) !important;
  background: rgba(255, 254, 236, 0.18) !important;
  outline: none;
}

.brevo-newsletter #EMAIL:focus {
  border-color: var(--lime) !important;
  box-shadow: 0 0 0 3px rgba(141, 255, 20, 0.1);
}

.brevo-newsletter #EMAIL::placeholder {
  color: var(--lavender) !important;
  opacity: 1;
}

.brevo-newsletter .sib-form-block__button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px !important;
  color: var(--ink) !important;
  background: var(--lime) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.brevo-newsletter .sib-form-block__button:hover {
  color: var(--cream) !important;
  background: rgba(255, 254, 236, 0.2) !important;
  transform: translateY(-1px);
}

.brevo-optin-block,
.brevo-declaration {
  grid-column: 1 / -1;
  width: 100%;
}

.brevo-newsletter .entry__choice label,
.brevo-optin-label {
  display: flex !important;
  align-items: flex-start;
  gap: 11px;
  color: rgba(255, 254, 240, 0.78) !important;
  font-family: inherit !important;
  font-size: 12px !important;
  line-height: 1.55;
}

.brevo-newsletter .entry__choice p {
  margin: 0;
}

.brevo-newsletter .checkbox {
  flex: 0 0 auto;
  width: 16px !important;
  height: 16px !important;
  margin-top: 1px !important;
  border-radius: 3px !important;
  border-color: rgba(255, 254, 240, 0.45) !important;
  background: rgba(255, 254, 240, 0.08) !important;
}

.brevo-newsletter .input_replaced:checked + .checkbox {
  border-color: var(--lime) !important;
  background: var(--lime) !important;
}

.brevo-newsletter .input_replaced:not(:checked) + .checkbox::before {
  opacity: 0 !important;
}

.brevo-newsletter .input_replaced:checked + .checkbox::before {
  opacity: 1 !important;
}

.brevo-newsletter a {
  color: var(--lime) !important;
  text-decoration-color: rgba(141, 255, 20, 0.5) !important;
  text-underline-offset: 3px;
}

.brevo-newsletter .entry__specification,
.brevo-declaration p {
  margin: 6px 0 0 !important;
  color: rgba(255, 254, 240, 0.52) !important;
  font-family: inherit !important;
  font-size: 11px !important;
  line-height: 1.5;
}

.brevo-newsletter .entry__error {
  margin: 7px 0 0 !important;
  padding: 8px 11px !important;
  border-radius: 10px !important;
  font-family: inherit !important;
  font-size: 11px !important;
}

.brevo-message {
  width: 100%;
  max-width: 650px !important;
  margin: 0 0 18px !important;
  padding: 12px 15px !important;
  border: 1px solid !important;
  border-radius: 14px !important;
  font-family: inherit !important;
  font-size: 12px !important;
}

.brevo-message--error {
  color: #ffd8d8 !important;
  border-color: rgba(255, 117, 117, 0.42) !important;
  background: rgba(91, 17, 17, 0.72) !important;
}

.brevo-message--success {
  color: var(--cream) !important;
  border-color: rgba(141, 255, 20, 0.35) !important;
  background: rgba(30, 81, 39, 0.72) !important;
}

.brevo-message .sib-notification__icon {
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

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

.feature-card--outer.reveal {
  transform: translateY(139px);
}

.feature-card--mid.reveal {
  transform: translateY(79px);
}

.feature-card--outer.reveal.is-visible {
  transform: translateY(115px);
}

.feature-card--mid.reveal.is-visible {
  transform: translateY(55px);
}

@media (max-width: 1120px) {
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 50px 28px;
  }

  .footer-primary {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  .site-header {
    top: 26px;
    grid-template-columns: minmax(0, 1fr) 64px;
    gap: 12px;
    width: calc(100vw - 32px);
  }

  .header-shell,
  .account-button {
    height: 60px;
  }

  .header-shell {
    padding: 0 22px;
  }

  .account-button svg {
    width: 24px;
  }

  .brand {
    width: 130px;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 6px;
    width: 38px;
    height: 38px;
    margin-left: auto;
    padding: 12px 8px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    height: 1px;
    background: var(--cream);
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .main-nav {
    position: absolute;
    top: 70px;
    right: 0;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 2px;
    width: min(310px, calc(100vw - 32px));
    margin: 0;
    padding: 18px;
    border: 1px solid rgba(255, 254, 236, 0.12);
    border-radius: 18px;
    background: rgba(15, 39, 34, 0.95);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 13px 14px;
    font-size: 14px;
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    min-height: 870px;
    padding-top: 245px;
  }

  .hero h1 {
    font-size: clamp(40px, 7.8vw, 64px);
  }

  .glass-curtain {
    top: 270px;
    height: 800px;
  }

  .halo-left {
    left: -680px;
  }

  .halo-right {
    right: -620px;
  }

  .features {
    min-height: unset;
    margin-top: 0;
    padding-top: 100px;
    padding-bottom: 120px;
  }

  .feature-arc {
    grid-template-columns: repeat(6, 1fr);
    gap: 22px;
    width: min(760px, calc(100vw - 48px));
    margin-top: 75px;
  }

  .feature-card {
    grid-column: span 2;
    min-height: 250px;
  }

  .feature-card:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .feature-card--outer,
  .feature-card--mid,
  .feature-card--outer.reveal,
  .feature-card--mid.reveal,
  .feature-card--outer.reveal.is-visible,
  .feature-card--mid.reveal.is-visible {
    transform: none;
  }

  .solution {
    padding-top: 40px;
  }

  .laptop-stage {
    width: 118vw;
    margin-left: -11vw;
  }

  .solution-copy {
    margin-top: 5px;
    font-size: 16px;
  }

  .security-section {
    padding-top: 112px;
    padding-bottom: 96px;
  }

  .security-content {
    padding: 56px 48px 48px;
  }

  .testimonial-track {
    grid-auto-columns: minmax(0, 82%);
  }

  .pricing-controls {
    grid-template-columns: minmax(0, 640px) 128px;
  }

  .pricing {
    padding-top: 150px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    width: min(540px, calc(100vw - 48px));
  }

  .price-card {
    min-height: 570px;
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 50px 28px;
  }
}

@media (max-width: 680px) {
  :root {
    --page: calc(100vw - 36px);
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) 58px;
  }

  .header-shell,
  .account-button {
    height: 56px;
  }

  .brand {
    width: 118px;
  }

  .hero {
    min-height: 780px;
    padding-top: 205px;
  }

  .hero h1 {
    font-size: clamp(34px, 10.6vw, 52px);
    line-height: 1.25;
  }

  .hero h1.hero-title--statement {
    font-size: clamp(30px, 8.8vw, 42px);
    line-height: 1.3;
  }

  .hero h1 br {
    display: none;
  }

  .ringed::after {
    inset: -6% -3%;
  }

  .glass-button {
    width: min(300px, 82vw);
    margin-top: 78px;
  }

  .glass-curtain {
    top: 265px;
    height: 640px;
    background-size: 46px 760px;
  }

  .halo-left,
  .halo-right {
    top: 340px;
    width: 800px;
  }

  .halo-left {
    left: -570px;
  }

  .halo-right {
    right: -580px;
  }

  .section-heading h2,
  .features .section-heading h2,
  .solution-heading h2,
  .pricing-heading h2,
  .security-content h2,
  .testimonials-header h2 {
    font-size: 28px;
  }

  .feature-arc {
    display: flex;
    width: auto;
    margin: 60px -24px 0;
    padding: 0 24px 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .feature-card {
    flex: 0 0 240px;
    min-height: 285px;
    scroll-snap-align: center;
  }

  .feature-card h3 {
    font-size: 18px;
  }

  .feature-card p {
    font-size: 12px;
  }

  .solution-heading h2 br,
  .pricing-heading h2 br {
    display: none;
  }

  .laptop-stage {
    width: 132vw;
    margin-top: 55px;
    margin-left: -18vw;
  }

  .solution-copy {
    font-size: 16px;
  }

  .security-section {
    padding-top: 88px;
    padding-bottom: 72px;
  }

  .security-content {
    width: calc(100vw - 36px);
    padding: 40px 24px;
  }

  .security-content h2 {
    margin-bottom: 32px;
  }

  .security-content h2 br {
    display: none;
  }

  .security-content p {
    font-size: 16px;
  }

  .security-content img {
    width: 64px;
    height: 80px;
    margin-top: 32px;
  }

  .testimonials {
    padding-top: 72px;
    padding-bottom: 104px;
  }

  .testimonials-header {
    width: calc(100vw - 36px);
    margin-bottom: 40px;
  }

  .trusted-clients-banner {
    --client-logo-gap: 24px;
    width: calc(100vw - 20px);
    margin-top: 64px;
    margin-bottom: 48px;
  }

  .trusted-client-logos {
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: var(--client-logo-gap);
    min-height: 152px;
    padding: 24px var(--client-logo-gap) 24px 0;
  }

  .trusted-client-marquee {
    width: calc(700% + 168px);
  }

  .trusted-client-logos img {
    max-width: 152px;
    height: 64px;
  }

  .testimonial-carousel {
    width: 100%;
    padding: 0 44px;
  }

  .testimonial-track {
    grid-auto-columns: 92%;
    gap: 16px;
  }

  .testimonial-card {
    min-height: 224px;
  }

  .testimonial-card figcaption {
    margin-bottom: 24px;
  }

  .pricing {
    padding-top: 125px;
  }

  .pricing-controls {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 72px;
  }

  .billing-toggle {
    gap: 12px;
    margin-top: 0;
  }

  .billing-toggle button {
    font-size: 13px;
  }

  .currency-picker {
    justify-self: end;
  }

  .price-card {
    min-height: 590px;
    padding: 34px 22px 28px;
  }

  .price {
    gap: 14px;
  }

  .price strong {
    font-size: 48px;
  }

  .price span {
    font-size: 16px;
  }

  .demo-link {
    margin-left: 0;
  }

  .faq {
    padding-bottom: 120px;
  }

  .site-footer {
    min-height: 0;
    padding: 150px 22px 45px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 45px 24px;
    width: 100%;
  }

  .footer-primary,
  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand p {
    margin-bottom: 28px;
  }

  .footer-grid nav:last-child {
    grid-column: 1 / -1;
  }

  .brevo-newsletter {
    width: 100%;
    max-width: none;
    margin-top: 44px;
  }

  .brevo-form {
    grid-template-columns: 1fr;
  }

  .brevo-email-block,
  .brevo-submit-block {
    grid-column: 1;
  }

  .brevo-submit-block {
    width: 145px;
  }

  .footer-curtain {
    height: 780px;
    background-size: 49px 780px;
  }
}

@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;
  }

  .reveal {
    opacity: 1;
  }

  .trusted-clients-banner {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .trusted-clients-banner::-webkit-scrollbar {
    display: none;
  }

  .trusted-client-marquee {
    animation: none;
  }
}

/* Pages légales */
.legal-page {
  background:
    radial-gradient(circle at 50% 2%, rgba(141, 255, 20, 0.13), transparent 28%),
    radial-gradient(circle at 12% 38%, rgba(213, 180, 251, 0.08), transparent 24%),
    var(--ink);
}

.legal-page .site-header {
  top: 34px;
}

.legal-page .main-nav a.is-active {
  color: inherit;
}

.legal-page .main-nav a.is-active::after {
  transform: scaleX(0);
}

.legal-main {
  position: relative;
  min-height: 100vh;
  padding: 210px 24px 120px;
  overflow: hidden;
}

.legal-main::before {
  position: absolute;
  z-index: -1;
  top: 70px;
  right: -5%;
  left: -5%;
  height: 660px;
  background: url("./public/assets/glass-a.png") repeat-x center top / 59px 660px;
  content: "";
  opacity: 0.22;
  -webkit-mask-image: linear-gradient(#000, transparent 92%);
  mask-image: linear-gradient(#000, transparent 92%);
}

.legal-shell {
  width: min(940px, calc(100vw - 48px));
  margin: 0 auto;
}

.legal-hero {
  margin-bottom: 52px;
  text-align: center;
}

.legal-eyebrow {
  margin: 0 0 18px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.legal-hero h1 {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(46px, 8vw, 92px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.legal-intro {
  max-width: 680px;
  margin: 26px auto 0;
  color: rgba(255, 254, 240, 0.74);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.65;
}

.legal-updated {
  display: inline-flex;
  margin: 24px 0 0;
  padding: 9px 15px;
  color: rgba(255, 254, 240, 0.72);
  border: 1px solid rgba(255, 254, 240, 0.16);
  border-radius: 999px;
  background: rgba(255, 254, 240, 0.07);
  font-size: 12px;
}

.legal-document {
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid rgba(255, 254, 240, 0.12);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255, 254, 240, 0.12), rgba(255, 254, 240, 0.045));
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.2), inset 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.legal-document section + section {
  margin-top: 42px;
  padding-top: 42px;
  border-top: 1px solid rgba(255, 254, 240, 0.12);
}

.legal-document h2 {
  margin: 0 0 18px;
  color: var(--lime);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.legal-document h3 {
  margin: 28px 0 10px;
  font-size: 18px;
  font-weight: 600;
}

.legal-document p,
.legal-document li,
.legal-document td,
.legal-document th,
.legal-document address {
  color: rgba(255, 254, 240, 0.82);
  font-size: 15px;
  line-height: 1.75;
}

.legal-document p {
  margin: 0 0 16px;
}

.legal-document p:last-child {
  margin-bottom: 0;
}

.legal-document ul {
  margin: 14px 0 0;
  padding-left: 22px;
}

.legal-document li + li {
  margin-top: 7px;
}

.legal-document address {
  font-style: normal;
}

.legal-document strong {
  color: var(--cream);
  font-weight: 600;
}

.legal-document a {
  color: var(--lime);
  text-decoration: underline;
  text-decoration-color: rgba(141, 255, 20, 0.45);
  text-underline-offset: 4px;
}

.legal-document a:hover {
  text-decoration-color: var(--lime);
}

.legal-table-wrap {
  margin-top: 22px;
  overflow-x: auto;
  border: 1px solid rgba(255, 254, 240, 0.12);
  border-radius: 18px;
}

.legal-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.legal-table th,
.legal-table td {
  padding: 17px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 254, 240, 0.1);
}

.legal-table th {
  color: var(--cream);
  background: rgba(255, 254, 240, 0.08);
  font-size: 13px;
  font-weight: 600;
}

.legal-table tr:last-child td {
  border-bottom: 0;
}

.legal-callout {
  margin: 24px 0 0;
  padding: 20px 22px;
  border: 1px solid rgba(141, 255, 20, 0.25);
  border-radius: 18px;
  background: rgba(141, 255, 20, 0.07);
}

.legal-callout p {
  color: rgba(255, 254, 240, 0.9);
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 34px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 254, 240, 0.15);
  border-radius: 999px;
  background: rgba(255, 254, 240, 0.07);
  transition: color 180ms ease, background-color 180ms ease;
}

.legal-back:hover {
  color: var(--lime);
  background: rgba(255, 254, 240, 0.12);
}

.legal-footer {
  position: relative;
  padding: 58px 24px 64px;
  border-top: 1px solid rgba(255, 254, 240, 0.1);
  background:
    linear-gradient(rgba(3, 22, 20, 0.6), rgba(3, 22, 20, 0.96)),
    url("./public/assets/glass-b.png") repeat-x center bottom / 58px 520px;
}

.legal-footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  width: min(940px, calc(100vw - 48px));
  margin: 0 auto;
}

.legal-footer-brand p {
  margin: 8px 0 28px;
  color: var(--cream);
  font-size: 16px;
  line-height: 1.45;
}

.legal-footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  align-content: start;
}

.legal-footer-nav a {
  color: rgba(255, 254, 240, 0.74);
  font-size: 13px;
  transition: color 180ms ease;
}

.legal-footer-nav a:hover,
.legal-footer-nav a[aria-current="page"] {
  color: var(--lime);
}

@media (max-width: 760px) {
  .legal-main {
    padding: 160px 18px 80px;
  }

  .legal-shell {
    width: 100%;
  }

  .legal-hero {
    margin-bottom: 34px;
    text-align: left;
  }

  .legal-intro {
    margin-left: 0;
  }

  .legal-document {
    padding: 28px 22px;
    border-radius: 22px;
  }

  .legal-document section + section {
    margin-top: 32px;
    padding-top: 32px;
  }

  .legal-footer-inner {
    grid-template-columns: 1fr;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .legal-hero h1 {
    font-size: 44px;
  }

  .legal-footer-nav {
    grid-template-columns: 1fr;
  }
}

/* Page 404 — composition issue du frame Figma ERREUR 404 V3 */
.not-found-page {
  min-height: 100%;
  background: var(--ink);
}

.not-found-stage {
  position: relative;
  min-height: 1725px;
  background: var(--ink);
  overflow: hidden;
}

.not-found-atmosphere {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
}

.not-found-atmosphere::before,
.not-found-atmosphere::after {
  position: absolute;
  z-index: 3;
  right: -12%;
  left: -12%;
  content: "";
  pointer-events: none;
}

.not-found-atmosphere::before {
  top: 0;
  height: 470px;
  background: linear-gradient(var(--ink) 30%, rgba(3, 22, 20, 0.88) 65%, transparent);
}

.not-found-atmosphere::after {
  bottom: -20px;
  height: 420px;
  background: linear-gradient(transparent, rgba(3, 22, 20, 0.88) 55%, var(--ink));
}

.not-found-atmosphere > img {
  position: absolute;
  z-index: 1;
  top: 390px;
  left: 50%;
  width: min(1320px, 125vw);
  height: 980px;
  opacity: 0.98;
  filter: saturate(1.18) contrast(1.04);
  transform: translateX(-50%);
}

.not-found-curtain {
  position: absolute;
  z-index: 2;
  top: 0;
  right: -1%;
  bottom: 0;
  left: -1%;
  background: url("./public/assets/glass-b.png") repeat-x center top / 58px 1725px;
  opacity: 0.92;
  -webkit-mask-image: linear-gradient(transparent 3%, #000 15%, #000 91%, transparent 100%);
  mask-image: linear-gradient(transparent 3%, #000 15%, #000 91%, transparent 100%);
}

.not-found-main {
  position: relative;
  z-index: 5;
  display: flex;
  min-height: 1227px;
  align-items: flex-start;
  justify-content: center;
  padding: 235px 24px 80px;
}

.not-found-main h1 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(25px, 2.5vw, 32px);
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.45;
  text-align: center;
}

.not-found-footer {
  position: relative;
  z-index: 5;
  min-height: 498px;
  padding: 78px 64px 42px;
  overflow: visible;
}

.not-found-footer::before {
  display: none;
}

.not-found-footer .footer-grid {
  grid-template-columns: 1.65fr repeat(3, 0.8fr);
  gap: 50px;
}

.not-found-footer .footer-brand p {
  margin-bottom: 42px;
}

.not-found-newsletter {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(220px, 356px) 145px;
  gap: 16px;
  width: min(1160px, calc(100vw - 128px));
  margin: 52px auto 0;
  color: var(--lavender);
  font-size: 12px;
}

.not-found-newsletter span,
.not-found-newsletter strong {
  display: flex;
  min-height: 49px;
  align-items: center;
  padding: 0 20px;
  border: 1px solid rgba(255, 254, 236, 0.08);
  border-radius: 999px;
  background: rgba(255, 254, 236, 0.2);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.not-found-newsletter strong {
  justify-content: center;
  color: var(--lavender);
  font-weight: 500;
  transition: color 180ms ease, background-color 180ms ease;
}

.not-found-newsletter:hover strong {
  color: var(--lime);
  background: rgba(255, 254, 236, 0.27);
}

@media (max-width: 980px) {
  .not-found-stage {
    min-height: 1580px;
  }

  .not-found-main {
    min-height: 1050px;
    padding-top: 190px;
  }

  .not-found-atmosphere > img {
    top: 330px;
    width: 145vw;
    height: 920px;
  }

  .not-found-curtain {
    background-size: 52px 1580px;
  }

  .not-found-footer .footer-grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 28px;
  }
}

@media (max-width: 680px) {
  .not-found-stage {
    min-height: 1730px;
  }

  .not-found-main {
    min-height: 790px;
    padding-top: 175px;
  }

  .not-found-main h1 {
    max-width: 300px;
    font-size: 25px;
  }

  .not-found-atmosphere > img {
    top: 235px;
    width: 245vw;
    height: 850px;
  }

  .not-found-curtain {
    background-size: 48px 1730px;
    opacity: 0.78;
  }

  .not-found-footer {
    min-height: 940px;
    padding: 115px 22px 45px;
  }

  .not-found-footer .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 42px 24px;
    width: 100%;
  }

  .not-found-footer .footer-brand {
    grid-column: 1 / -1;
  }

  .not-found-footer .footer-grid nav:last-child {
    grid-column: 1 / -1;
  }

  .not-found-newsletter {
    grid-template-columns: 1fr 128px;
    width: 100%;
    margin-top: 44px;
  }
}

@media (max-width: 430px) {
  .not-found-stage {
    min-height: 1860px;
  }

  .not-found-footer {
    min-height: 1070px;
  }

  .not-found-newsletter {
    grid-template-columns: 1fr;
  }

  .not-found-newsletter strong {
    width: 145px;
  }
}

/* Pages éditoriales issues des frames Figma */
.inner-page {
  background: var(--ink);
}

.inner-main {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.inner-main::before {
  position: absolute;
  z-index: -2;
  top: 150px;
  right: -2%;
  left: -2%;
  height: 1150px;
  background: url("./public/assets/glass-a.png") repeat-x center top / 58px 1150px;
  content: "";
  opacity: 0.12;
  -webkit-mask-image: linear-gradient(transparent, #000 15%, #000 75%, transparent);
  mask-image: linear-gradient(transparent, #000 15%, #000 75%, transparent);
}

.inner-main::after {
  position: absolute;
  z-index: -3;
  top: 290px;
  left: 50%;
  width: min(1200px, 120vw);
  height: 850px;
  background: url("./public/assets/halo-footer.svg") no-repeat center / 100% 100%;
  content: "";
  opacity: 0.22;
  transform: translateX(-50%);
}

.inner-shell {
  width: min(1160px, calc(100vw - 80px));
  margin: 0 auto;
}

.inner-eyebrow {
  margin: 0 0 18px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.inner-page h1,
.inner-page h2,
.inner-page h3,
.inner-page p {
  text-wrap: pretty;
}

.inner-page h1 em,
.inner-page h2 em {
  position: relative;
  display: inline-block;
  z-index: 1;
  color: var(--lime);
  font-style: normal;
}

.inner-page h1 em::after,
.inner-page h2 em::after {
  position: absolute;
  z-index: -1;
  right: -4%;
  bottom: -8px;
  left: -4%;
  height: 12px;
  border-top: 3px solid var(--lime);
  border-radius: 50%;
  content: "";
  opacity: 0.85;
  transform: rotate(-2deg);
}

.inner-primary-button {
  display: inline-flex;
  min-height: 57px;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border: 1px solid rgba(255, 254, 236, 0.12);
  border-radius: 999px;
  background: rgba(255, 254, 236, 0.2);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08), 0 20px 55px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.inner-primary-button:hover {
  color: var(--lime);
  background: rgba(255, 254, 236, 0.27);
  transform: translateY(-2px);
}

.inner-section-heading {
  margin-bottom: 58px;
}

.inner-section-heading h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.inner-footer {
  min-height: 610px;
  padding-top: 150px;
}

.inner-newsletter-link {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(220px, 356px) 145px;
  gap: 16px;
  width: min(1160px, calc(100vw - 128px));
  margin: 58px auto 0;
  color: var(--lavender);
  font-size: 12px;
}

.inner-newsletter-link span,
.inner-newsletter-link strong {
  display: flex;
  min-height: 49px;
  align-items: center;
  padding: 0 20px;
  border: 1px solid rgba(255, 254, 236, 0.08);
  border-radius: 999px;
  background: rgba(255, 254, 236, 0.2);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.inner-newsletter-link strong {
  justify-content: center;
  font-weight: 500;
  transition: color 180ms ease, background-color 180ms ease;
}

.inner-newsletter-link:hover strong {
  color: var(--lime);
  background: rgba(255, 254, 236, 0.27);
}

/* Contact */
.contact-hero {
  min-height: 1130px;
  padding-top: 235px;
  padding-bottom: 160px;
}

.contact-heading {
  max-width: 900px;
  margin-bottom: 78px;
}

.contact-heading h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.contact-heading > p:last-child {
  max-width: 650px;
  margin: 30px 0 0;
  color: rgba(255, 254, 240, 0.76);
  font-size: 17px;
  line-height: 1.65;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.78fr);
  gap: 54px;
  align-items: start;
}

.contact-form,
.contact-detail-card {
  border: 1px solid rgba(255, 254, 236, 0.12);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 254, 236, 0.19), rgba(255, 254, 236, 0.07));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08), 0 32px 75px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.contact-form {
  display: grid;
  gap: 22px;
  padding: clamp(28px, 4vw, 48px);
}

.contact-field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 9px;
  color: rgba(255, 254, 240, 0.85);
  font-size: 13px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  color: var(--cream);
  border: 1px solid rgba(255, 254, 236, 0.14);
  outline: 0;
  background: rgba(3, 22, 20, 0.42);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input {
  min-height: 50px;
  padding: 0 17px;
  border-radius: 999px;
}

.contact-form textarea {
  min-height: 150px;
  padding: 16px 17px;
  border-radius: 18px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(141, 255, 20, 0.7);
  box-shadow: 0 0 0 3px rgba(141, 255, 20, 0.1);
}

.contact-form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.contact-form-actions button {
  min-width: 145px;
  min-height: 49px;
  color: var(--cream);
  border: 1px solid rgba(255, 254, 236, 0.12);
  border-radius: 999px;
  background: rgba(255, 254, 236, 0.2);
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease;
}

.contact-form-actions button:hover {
  color: var(--lime);
  background: rgba(255, 254, 236, 0.28);
}

.contact-form-actions button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.contact-form-actions p {
  max-width: 320px;
  margin: 0;
  color: rgba(255, 254, 240, 0.55);
  font-size: 11px;
  line-height: 1.45;
}

.contact-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.contact-form--success {
  min-height: 440px;
  place-items: center;
}

.contact-form-success {
  max-width: 520px;
  text-align: center;
}

.contact-form-success h2 {
  margin: 0 0 18px;
  color: var(--lime);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.contact-form-success p {
  margin: 0;
  color: rgba(255, 254, 240, 0.82);
  font-size: 17px;
  line-height: 1.55;
}

.contact-details {
  display: grid;
  gap: 22px;
}

.contact-detail-card {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 38px 34px;
}

.contact-detail-card h2 {
  margin: 0 0 28px;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.15;
}

.contact-detail-card a {
  margin-bottom: 11px;
  color: var(--lime);
  font-size: 15px;
}

.contact-detail-card address {
  margin-top: 18px;
  color: rgba(255, 254, 240, 0.72);
  font-size: 14px;
  font-style: normal;
  line-height: 1.6;
}

/* À propos */
.about-main {
  background: #031614;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(450px, 1.02fr);
  gap: 70px;
  min-height: 900px;
  align-items: start;
  padding-top: 220px;
  padding-bottom: 120px;
}

.about-story-copy h1 {
  margin: 0 0 70px;
  font-size: clamp(30px, 2.5vw, 34px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.45;
}

.about-story-v3 h1 em,
.about-team-v3 h2 em {
  color: inherit;
  font-style: normal;
}

.about-story-v3 h1 em::after {
  position: absolute;
  right: -5px;
  bottom: 2px;
  left: -3px;
  height: 8px;
  background: url("./public/assets/green-underline.png") no-repeat center / 100% 100%;
  content: "";
  z-index: -1;
}

.about-story-text {
  max-width: 560px;
}

.about-story-text p {
  margin: 0 0 20px;
  color: rgba(255, 254, 240, 0.88);
  font-size: 14px;
  line-height: 1.6;
}

.about-story-text a {
  color: var(--lime);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.about-story-image {
  position: relative;
  height: 507px;
  margin: 88px 0 0;
  overflow: hidden;
  border-radius: 12px;
}

.about-story-image img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: 65% center;
}

.about-partners {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: transparent;
  color: var(--cream);
}

.about-partners::before {
  display: none;
}

.about-partners-inner {
  display: grid;
  grid-template-columns: minmax(340px, 0.85fr) minmax(500px, 1.15fr);
  gap: 72px;
  align-items: center;
  padding-top: 92px;
  padding-bottom: 92px;
}

.about-partners-copy {
  max-width: 500px;
}

.about-partners-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-partners-eyebrow span {
  width: 16px;
  height: 16px;
  border: 5px solid #dbffac;
  border-radius: 50%;
  background: var(--lime);
}

.about-partners-copy h2 {
  margin: 0 0 24px;
  color: var(--cream);
  font-size: clamp(42px, 4.4vw, 62px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.about-partners-copy > p:last-child {
  margin: 0;
  color: rgba(255, 254, 240, 0.74);
  font-size: 18px;
  line-height: 1.7;
}

.partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 168px;
  gap: 18px;
}

.partner-logo-card {
  display: grid;
  min-width: 0;
  height: 100%;
  place-items: center;
  overflow: hidden;
  padding: 24px;
  border: 1px solid #dce4e6;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 30px rgba(20, 42, 48, 0.04);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.partner-logo-card:hover,
.partner-logo-card:focus-visible {
  border-color: var(--lime);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
  outline: 0;
  transform: translateY(-4px);
}

.partner-logo-card img {
  display: block;
  width: min(132px, 100%);
  max-width: none;
  height: 76px;
  max-height: none;
  object-fit: contain;
  opacity: 0.68;
  transform: scale(var(--partner-logo-scale, 1));
  transition: opacity 180ms ease, scale 180ms ease;
}

.partner-logo-card:hover img,
.partner-logo-card:focus-visible img {
  opacity: 0.88;
  scale: 1.04;
}

.about-team {
  position: relative;
  min-height: 980px;
  padding-top: 150px;
  padding-bottom: 190px;
}

.about-team-v3::before {
  position: absolute;
  z-index: -1;
  top: 240px;
  bottom: 0;
  left: 50%;
  width: 100vw;
  background:
    radial-gradient(ellipse at 50% 78%, rgba(130, 255, 0, 0.72), transparent 22%),
    repeating-linear-gradient(90deg, rgba(255, 254, 236, 0.16) 0 3.9%, transparent 3.9% 8.3%);
  content: "";
  opacity: 0.62;
  transform: translateX(-50%);
  -webkit-mask-image: linear-gradient(transparent, #000 30%, #000 80%, transparent);
  mask-image: linear-gradient(transparent, #000 30%, #000 80%, transparent);
}

.about-team-v3 .inner-section-heading {
  margin-bottom: 72px;
}

.about-team-v3 .inner-section-heading h2 {
  font-size: clamp(30px, 2.6vw, 34px);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.about-team-v3 h2 em::before,
.about-team-v3 h2 em::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 105%;
  border: 2px solid var(--lime);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%) rotate(-5deg);
}

.about-team-v3 h2 em::after {
  width: 154%;
  height: 90%;
  opacity: 0.62;
  transform: translate(-50%, -50%) rotate(4deg);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.team-card {
  position: relative;
  min-height: 500px;
  padding: 0 18px;
}

.team-portrait {
  position: relative;
  width: 100%;
  aspect-ratio: 338 / 500;
  overflow: hidden;
  border-radius: 12px;
}

.team-portrait-v3 > img {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card-caption {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 10px 64px 10px 18px;
  background: rgba(59, 75, 70, 0.96);
  text-align: center;
}

.team-card-caption strong {
  color: #b5eb68;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.team-card-caption span {
  color: rgba(255, 254, 240, 0.92);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.15;
}

.team-linkedin {
  position: absolute;
  z-index: 6;
  right: 16px;
  bottom: 16px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(168, 252, 54, 0.75);
  border-radius: 50%;
  background: rgba(3, 22, 20, 0.9);
  transition: background 180ms ease, transform 180ms ease;
}

.team-linkedin:hover,
.team-linkedin:focus-visible {
  background: rgba(168, 252, 54, 0.2);
  transform: translateY(-2px);
}

.team-linkedin img {
  width: 19px;
  height: 19px;
}

/* Découvrir — composition issue du frame Figma DÉCOUVRIR */
.discover-page .inner-main::before {
  top: 535px;
  height: 1570px;
  background:
    radial-gradient(ellipse at 0% 12%, rgba(255, 255, 245, 0.98), rgba(176, 255, 108, 0.6) 13%, transparent 31%),
    radial-gradient(ellipse at 29% 11%, rgba(141, 255, 20, 0.9), transparent 31%),
    radial-gradient(ellipse at 101% 11%, rgba(255, 255, 246, 0.96), rgba(141, 255, 20, 0.55) 11%, transparent 24%),
    radial-gradient(ellipse at 82% 20%, rgba(141, 255, 20, 0.42), transparent 25%),
    repeating-linear-gradient(90deg, rgba(255, 254, 236, 0.21) 0 3.9%, rgba(255, 254, 236, 0.02) 3.9% 8.25%);
  opacity: 0.9;
  -webkit-mask-image: linear-gradient(transparent 0, #000 10%, #000 78%, transparent 100%);
  mask-image: linear-gradient(transparent 0, #000 10%, #000 78%, transparent 100%);
}

.discover-page .inner-main::after {
  top: 550px;
  opacity: 0.26;
}

.discover-page .site-header {
  right: 0;
  left: 0;
  margin-right: auto;
  margin-left: auto;
  transform: none;
}

.discover-page .discover-hero-content.reveal,
.discover-page .discover-hero-content.reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: none;
}

.discover-hero-v2 {
  position: relative;
  display: grid;
  min-height: 1040px;
  padding: 224px 40px 128px;
  place-items: center;
  contain: paint;
  isolation: isolate;
  overflow: hidden;
}

.discover-hero-v2::before {
  content: none;
}

.discover-hero-content {
  position: relative;
  z-index: 2;
  width: min(1140px, calc(100vw - 80px));
  text-align: center;
}

.discover-hero-content h1 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(40px, 4.4vw, 56px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.3;
}

.discover-hero-content > p {
  max-width: 880px;
  margin: 72px auto 0;
  color: rgba(255, 254, 240, 0.88);
  font-size: 18px;
  letter-spacing: -0.015em;
  line-height: 1.5;
}

.discover-hero-button,
.discover-features-cta {
  display: grid;
  width: min(336px, 80vw);
  min-height: 56px;
  place-items: center;
  color: var(--cream);
  border: 1px solid rgba(255, 254, 236, 0.56);
  border-radius: 999px;
  background: rgba(255, 254, 236, 0.2);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.12), 0 18px 50px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  font-size: 14px;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.discover-hero-button {
  margin: 96px auto 0;
}

.discover-features-cta {
  margin: 48px auto 0;
  text-align: center;
}

.discover-hero-button:hover,
.discover-hero-button:focus-visible,
.discover-features-cta:hover,
.discover-features-cta:focus-visible {
  color: var(--ink);
  background: var(--lime);
  outline: 0;
  transform: translateY(-2px);
}

.discover-influence-ring {
  position: relative;
  display: inline-block;
  z-index: 1;
  white-space: nowrap;
}

.discover-influence-ring::before,
.discover-influence-ring::after {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 112%;
  height: 116%;
  border: 2px solid var(--lime);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%) rotate(-5deg);
}

.discover-influence-ring::after {
  width: 116%;
  height: 98%;
  opacity: 0.65;
  transform: translate(-50%, -50%) rotate(4deg);
}

@media (min-width: 901px) {
  .discover-hero-v2 {
    padding-top: 368px;
    place-items: start center;
  }
}

.discover-why {
  position: relative;
  min-height: 800px;
  padding-top: 112px;
  padding-bottom: 112px;
  scroll-margin-top: 0;
}

.discover-why::before {
  content: none;
}

.discover-why-copy {
  position: relative;
  z-index: 1;
}

.discover-page .discover-why-copy.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.discover-why-eyebrow {
  margin: 0 0 16px;
  color: var(--cream);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.discover-why h2 {
  max-width: 1120px;
  margin: 0;
  color: var(--cream);
  font-size: clamp(36px, 3.8vw, 48px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.3;
}

.discover-why h2 span,
.discover-why-conclusion strong {
  color: var(--lime);
  font-weight: inherit;
}

.discover-why-questions {
  margin-top: 48px;
  color: rgba(255, 254, 240, 0.92);
  font-size: 16px;
  line-height: 1.6;
}

.discover-why-questions p,
.discover-why-questions ul {
  margin: 0;
}

.discover-why-questions ul {
  padding-left: 24px;
}

.discover-why-conclusion {
  max-width: 1080px;
  margin: 128px auto 0;
  color: var(--cream);
  font-size: clamp(32px, 3.5vw, 48px);
  letter-spacing: -0.04em;
  line-height: 1.35;
}

.discover-workflow {
  position: relative;
  padding-top: 72px;
  padding-bottom: 32px;
}

.discover-workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.discover-workflow-grid article {
  display: flex;
  min-height: 208px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 32px;
  border: 1px solid rgba(255, 254, 236, 0.38);
  background: linear-gradient(145deg, rgba(255, 254, 236, 0.21), rgba(255, 254, 236, 0.14));
  backdrop-filter: blur(17px);
  -webkit-backdrop-filter: blur(17px);
  text-align: center;
}

.discover-workflow-grid h3 {
  margin: 0 0 24px;
  color: var(--lime);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.discover-workflow-grid p {
  margin: 0;
  color: rgba(255, 254, 240, 0.92);
  font-size: 14px;
  letter-spacing: -0.01em;
  line-height: 1.5;
}

.discover-workflow-title {
  margin: 160px 0 0;
  color: var(--cream);
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.25;
  text-align: center;
}

.discover-workflow-title em {
  color: var(--lime);
  font-style: normal;
}

.personas-v2 {
  position: relative;
  padding-top: 24px;
  padding-bottom: 168px;
}

.persona-feature-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
  margin-top: 56px;
}

.persona-feature-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 254, 236, 0.3);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255, 254, 236, 0.23), rgba(255, 254, 236, 0.16));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08), 0 24px 60px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.persona-feature-card--team,
.persona-feature-card--creator {
  margin-top: 88px;
}

.persona-feature-card--company,
.persona-feature-card--hr {
  margin-top: 48px;
}

.persona-feature-card:hover,
.persona-feature-card:focus-within,
.persona-feature-card[open] {
  border-color: rgba(141, 255, 20, 0.52);
  background: linear-gradient(145deg, rgba(255, 254, 236, 0.27), rgba(255, 254, 236, 0.19));
}

.persona-feature-card summary {
  position: relative;
  display: flex;
  min-height: 352px;
  align-items: center;
  flex-direction: column;
  padding: 40px 16px 24px;
  cursor: pointer;
  list-style: none;
  text-align: center;
}

.persona-feature-card summary::-webkit-details-marker {
  display: none;
}

.persona-feature-card summary::after {
  width: 18px;
  height: 3px;
  margin-top: auto;
  border-radius: 999px;
  background: var(--cream);
  content: "";
  opacity: 0.85;
}

.persona-feature-card summary h3 {
  margin: 0 0 24px;
  color: var(--lime);
  font-size: clamp(20px, 1.7vw, 24px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.persona-feature-card summary > p {
  margin: 0;
  color: rgba(255, 254, 240, 0.86);
  font-size: 14px;
  letter-spacing: -0.01em;
  line-height: 1.45;
}

.persona-feature-action {
  display: block;
  margin: 24px 0 16px;
  color: var(--lime);
  font-size: 12px;
  line-height: 1.2;
}

.persona-feature-action span:last-child,
.persona-feature-card[open] .persona-feature-action span:first-child {
  display: none;
}

.persona-feature-card[open] .persona-feature-action span:last-child {
  display: inline;
}

.persona-feature-card[open] summary {
  min-height: 0;
  padding-bottom: 8px;
}

.persona-feature-content {
  padding: 0 16px 32px;
}

.persona-feature-content ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.persona-feature-content li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 254, 240, 0.94);
  font-size: 13px;
  letter-spacing: -0.015em;
  line-height: 1.4;
}

.persona-feature-content li::before {
  position: absolute;
  top: -2px;
  left: 0;
  color: var(--lavender);
  content: "✓";
  font-size: 16px;
}

.persona-feature-outcome {
  margin: 24px 0 0;
  color: var(--lime);
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
}

.discover-features,
.discover-pricing {
  padding-top: 120px;
  padding-bottom: 130px;
}

.discover-features-v2 {
  padding-top: 165px;
}

.feature-accordion {
  display: grid;
  gap: 16px;
}

.feature-accordion details {
  border: 1px solid rgba(255, 254, 236, 0.1);
  border-radius: 16px;
  background: rgba(255, 254, 236, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.feature-accordion summary {
  position: relative;
  display: flex;
  min-height: 80px;
  align-items: center;
  gap: 24px;
  padding: 0 72px 0 32px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  list-style: none;
}

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

.feature-accordion summary span {
  color: var(--lime);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.feature-accordion summary::after {
  position: absolute;
  right: 28px;
  color: var(--lime);
  content: "+";
  font-size: 26px;
  font-weight: 300;
}

.feature-accordion details[open] summary::after {
  content: "–";
}

.feature-accordion details > div {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  padding: 8px 72px 32px 80px;
}

.feature-accordion details p,
.feature-accordion details li {
  color: rgba(255, 254, 240, 0.76);
  font-size: 16px;
  line-height: 1.55;
}

.feature-accordion details p,
.feature-accordion details ul {
  margin: 0;
}

.discover-pricing-v2 {
  padding-top: 170px;
}

.discover-pricing-controls {
  display: flex;
  width: min(760px, calc(100vw - 48px));
  align-items: stretch;
  justify-content: center;
  gap: 18px;
  margin: 88px auto 66px;
}

.discover-pricing-controls .discover-billing-toggle {
  flex: 1;
  width: auto;
  margin: 0;
}

.currency-switcher {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 7px 5px 14px;
  color: #68777d;
  border: 1px solid rgba(216, 225, 229, 0.95);
  border-radius: 14px;
  background: rgba(247, 250, 251, 0.96);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.14);
}

.currency-switcher > span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.currency-switcher select {
  min-width: 84px;
  height: 40px;
  padding: 0 10px;
  color: #172b32;
  border: 1px solid rgba(210, 221, 225, 0.95);
  border-radius: 10px;
  outline: 0;
  background: white;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.currency-switcher select:focus-visible {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(141, 255, 20, 0.38);
}

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

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

  .persona-feature-card--team,
  .persona-feature-card--company,
  .persona-feature-card--leader,
  .persona-feature-card--hr,
  .persona-feature-card--creator {
    margin-top: 0;
  }
}

@media (max-width: 900px) {
  .inner-shell {
    width: min(760px, calc(100vw - 48px));
  }

  .contact-layout,
  .about-story {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    padding-top: 180px;
  }

  .about-story {
    padding-top: 180px;
  }

  .about-story-image {
    margin-top: 0;
  }

  .about-partners-inner {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .about-partners-copy {
    max-width: 650px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .discover-pricing-controls {
    align-items: stretch;
    flex-direction: column;
  }

  .currency-switcher {
    align-self: center;
  }

  .team-grid-v3 {
    gap: 48px;
  }

  .team-card-v3 {
    width: min(430px, 100%);
    min-height: 0;
    margin: 0 auto;
  }

  .team-portrait-v3 {
    height: auto;
  }

  .discover-hero-v2 {
    min-height: 864px;
    padding: 208px 32px 128px;
  }

  .discover-hero-content h1 br,
  .discover-hero-content > p br {
    display: none;
  }

  .discover-hero-content > p {
    margin-top: 64px;
  }

  .discover-hero-button {
    margin-top: 88px;
  }

  .discover-why-conclusion {
    margin-top: 104px;
  }

  .discover-workflow-title {
    margin-top: 128px;
  }

  .persona-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-accordion details > div {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 680px) {
  .inner-shell {
    width: calc(100vw - 36px);
  }

  .inner-section-heading {
    margin-bottom: 42px;
  }

  .inner-footer {
    min-height: 1030px;
    padding-top: 150px;
  }

  .inner-newsletter-link {
    grid-template-columns: 1fr 128px;
    width: 100%;
    margin-top: 46px;
  }

  .contact-heading {
    margin-bottom: 52px;
  }

  .contact-heading h1 {
    font-size: 45px;
  }

  .contact-heading > p:last-child {
    font-size: 15px;
  }

  .contact-field-row {
    grid-template-columns: 1fr;
  }

  .contact-form-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-story-copy h1 {
    margin-bottom: 48px;
  }

  .about-story-image img {
    height: 100%;
    object-position: 68% center;
  }

  .about-story-image {
    height: 340px;
  }

  .about-partners::before {
    width: 12px;
  }

  .about-partners-inner {
    gap: 42px;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .about-partners-copy h2 {
    font-size: 42px;
  }

  .about-partners-copy > p:last-child {
    font-size: 16px;
  }

  .partner-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 148px;
    gap: 12px;
  }

  .partner-logo-card {
    padding: 18px;
    border-radius: 18px;
  }

  .partner-logo-card img {
    width: min(120px, 100%);
    height: 68px;
  }

  .about-team-v3 {
    padding-top: 110px;
    padding-bottom: 130px;
  }

  .team-card-v3 {
    min-height: 0;
    padding-right: 0;
    padding-left: 0;
  }

  .team-portrait-v3 {
    height: auto;
  }

  .discover-hero-v2 {
    min-height: 864px;
    padding: 176px 18px 112px;
  }

  .discover-hero-content {
    width: 100%;
  }

  .discover-hero-content h1 {
    font-size: 32px;
    line-height: 1.3;
  }

  .discover-hero-content > p {
    margin-top: 56px;
    font-size: 16px;
  }

  .discover-hero-button {
    margin-top: 80px;
  }

  .discover-why {
    min-height: 0;
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .discover-why h2 {
    font-size: 32px;
  }

  .discover-why-questions {
    font-size: 16px;
  }

  .discover-why-conclusion {
    margin-top: 88px;
    font-size: 28px;
  }

  .discover-workflow {
    padding-top: 40px;
  }

  .discover-workflow-grid {
    grid-template-columns: 1fr;
  }

  .discover-workflow-grid article {
    min-height: 155px;
  }

  .discover-workflow-title {
    margin-top: 112px;
    font-size: 32px;
  }

  .personas-v2 {
    padding-top: 10px;
    padding-bottom: 100px;
  }

  .persona-feature-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 64px;
  }

  .persona-feature-card summary {
    min-height: 320px;
    padding: 40px 24px 24px;
  }

  .persona-feature-card summary h3 {
    font-size: 24px;
  }

  .persona-feature-card summary > p,
  .persona-feature-content li,
  .persona-feature-outcome {
    font-size: 14px;
  }

  .persona-feature-content {
    padding-right: 28px;
    padding-left: 28px;
  }

  .discover-features-v2 {
    padding-top: 110px;
  }

  .feature-accordion summary {
    padding-left: 24px;
    font-size: 16px;
  }

  .feature-accordion details > div {
    padding: 8px 24px 24px;
  }

  .feature-accordion details p,
  .feature-accordion details li {
    font-size: 15px;
  }
}

@media (max-width: 430px) {
  .inner-newsletter-link {
    grid-template-columns: 1fr;
  }

  .inner-newsletter-link strong {
    width: 145px;
  }
}

/* Ressources — bibliothèque éditoriale Influentree */
.resources-page .inner-main::before {
  top: 320px;
  height: 1650px;
  opacity: 0.16;
}

.resources-page .inner-main::after {
  top: 420px;
  opacity: 0.3;
}

.resources-hero {
  position: relative;
  display: grid;
  min-height: 820px;
  padding: 225px 40px 130px;
  place-items: center;
  overflow: hidden;
}

.resources-hero::before {
  position: absolute;
  z-index: -1;
  right: -3%;
  bottom: -70px;
  left: -3%;
  height: 620px;
  background:
    radial-gradient(ellipse at 18% 95%, rgba(141, 255, 20, 0.76), transparent 27%),
    radial-gradient(ellipse at 82% 95%, rgba(141, 255, 20, 0.5), transparent 25%),
    repeating-linear-gradient(90deg, rgba(255, 254, 236, 0.17) 0 3.8%, transparent 3.8% 8.2%);
  content: "";
  opacity: 0.8;
  -webkit-mask-image: linear-gradient(transparent, #000 26%, #000 92%, transparent);
  mask-image: linear-gradient(transparent, #000 26%, #000 92%, transparent);
}

.resources-hero-copy {
  width: min(1040px, calc(100vw - 80px));
  text-align: center;
}

.resources-hero-copy h1 {
  max-width: 960px;
  margin: 0 auto;
  color: var(--cream);
  font-size: clamp(43px, 5.3vw, 70px);
  font-weight: 400;
  letter-spacing: -0.052em;
  line-height: 1.18;
}

.resources-hero-copy > p:not(.inner-eyebrow) {
  max-width: 760px;
  margin: 42px auto 0;
  color: rgba(255, 254, 240, 0.84);
  font-size: 16px;
  line-height: 1.65;
}

.resources-hero-button {
  display: grid;
  width: min(335px, 80vw);
  min-height: 57px;
  margin: 72px auto 0;
  place-items: center;
  border: 1px solid rgba(255, 254, 236, 0.52);
  border-radius: 999px;
  background: rgba(255, 254, 236, 0.2);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.12), 0 18px 50px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  font-size: 13px;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.resources-hero-button:hover,
.resources-hero-button:focus-visible {
  color: var(--ink);
  background: var(--lime);
  outline: 0;
  transform: translateY(-2px);
}

.resources-library {
  position: relative;
  padding-top: 60px;
  padding-bottom: 130px;
}

.resource-row {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 46px;
  padding: 66px 0;
  border-top: 1px solid rgba(255, 254, 236, 0.22);
}

.resource-row:last-child {
  border-bottom: 1px solid rgba(255, 254, 236, 0.22);
}

.resource-row-heading {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-top: 8px;
}

.resource-row-heading > span {
  color: var(--lime);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.resource-row-heading p {
  margin: 0 0 8px;
  color: rgba(255, 254, 240, 0.55);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.resource-row-heading h2 {
  margin: 0;
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.resource-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.resource-card {
  position: relative;
  display: flex;
  min-height: 315px;
  justify-content: flex-start;
  flex-direction: column;
  padding: 30px 28px 26px;
  border: 1px solid rgba(255, 254, 236, 0.3);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 254, 236, 0.22), rgba(255, 254, 236, 0.12));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.07), 0 20px 60px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
  transition: border-color 190ms ease, transform 190ms ease, background-color 190ms ease;
}

.resource-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lime), transparent 72%);
  content: "";
  opacity: 0;
  transition: opacity 190ms ease;
}

.resource-card:hover,
.resource-card:focus-visible {
  border-color: rgba(141, 255, 20, 0.74);
  outline: 0;
  transform: translateY(-7px);
}

.resource-card:hover::before,
.resource-card:focus-visible::before {
  opacity: 1;
}

.resource-card-kicker {
  margin-bottom: 34px;
  color: var(--lavender);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.resource-card h3 {
  margin: 0;
  color: var(--cream);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.032em;
  line-height: 1.18;
}

.resource-card p {
  margin: 22px 0 28px;
  color: rgba(255, 254, 240, 0.72);
  font-size: 13px;
  line-height: 1.55;
}

.resource-card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--lime);
  border-top: 1px solid rgba(255, 254, 236, 0.14);
  font-size: 12px;
  font-weight: 600;
}

.resource-card-link b {
  font-size: 18px;
  font-weight: 400;
}

.resource-card--more {
  align-items: center;
  justify-content: center;
  border-color: rgba(141, 255, 20, 0.4);
  background:
    radial-gradient(circle at 50% 36%, rgba(141, 255, 20, 0.14), transparent 35%),
    rgba(255, 254, 236, 0.08);
  text-align: center;
}

.resource-card--more h3 {
  color: var(--lime);
}

.resource-card--more p {
  max-width: 230px;
}

.resource-card--more .resource-card-link {
  width: 100%;
}

.resource-more-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 28px;
  place-items: center;
  color: var(--ink);
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 35px rgba(141, 255, 20, 0.23);
  font-size: 28px;
  font-weight: 300;
}

.resources-context {
  padding-top: 90px;
  padding-bottom: 145px;
}

.resources-context-copy {
  max-width: 900px;
  margin: 0 auto;
}

.resources-context h2,
.resources-faq h2 {
  margin: 0;
  font-size: clamp(31px, 4vw, 49px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.2;
}

.resources-context-copy > p:not(.inner-eyebrow) {
  margin: 34px 0 0;
  color: rgba(255, 254, 240, 0.82);
  font-size: 16px;
  line-height: 1.7;
}

.resources-context cite {
  color: var(--cream);
  font-style: normal;
  font-weight: 600;
}

.resources-citations {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 42px;
}

.resources-citations a {
  padding: 12px 16px;
  color: var(--lime);
  border: 1px solid rgba(141, 255, 20, 0.32);
  border-radius: 999px;
  background: rgba(141, 255, 20, 0.05);
  font-size: 11px;
  line-height: 1.4;
  transition: color 180ms ease, background-color 180ms ease;
}

.resources-citations a:hover,
.resources-citations a:focus-visible {
  color: var(--ink);
  background: var(--lime);
  outline: 0;
}

.resources-faq {
  padding-top: 50px;
  padding-bottom: 80px;
}

.resources-faq .inner-section-heading {
  text-align: center;
}

.resources-faq-list {
  max-width: 900px;
  margin: 70px auto 0;
  border-top: 1px solid rgba(255, 254, 236, 0.22);
}

.resources-faq-list details {
  border-bottom: 1px solid rgba(255, 254, 236, 0.22);
}

.resources-faq-list summary {
  position: relative;
  padding: 26px 54px 26px 0;
  color: var(--cream);
  cursor: pointer;
  font-size: 17px;
  font-weight: 500;
  list-style: none;
}

.resources-faq-list summary::-webkit-details-marker {
  display: none;
}

.resources-faq-list summary::after {
  position: absolute;
  top: 24px;
  right: 8px;
  color: var(--lime);
  content: "+";
  font-size: 24px;
  font-weight: 300;
}

.resources-faq-list details[open] summary::after {
  content: "–";
}

.resources-faq-list details p {
  max-width: 760px;
  margin: -4px 0 28px;
  color: rgba(255, 254, 240, 0.72);
  font-size: 14px;
  line-height: 1.65;
}

.resources-faq-list details p a {
  color: var(--lime);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1080px) {
  .resource-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .resource-row-heading {
    align-items: center;
  }
}

@media (max-width: 820px) {
  .resources-hero {
    min-height: 760px;
    padding: 185px 24px 105px;
  }

  .resources-hero-copy {
    width: 100%;
  }

  .resources-hero-copy h1 {
    font-size: clamp(38px, 7.8vw, 58px);
  }

  .resource-card-grid {
    grid-template-columns: 1fr;
  }

  .resource-card {
    min-height: 265px;
  }

  .resource-card--more {
    min-height: 240px;
  }
}

@media (max-width: 680px) {
  .resources-hero {
    min-height: 720px;
    padding: 165px 18px 90px;
  }

  .resources-hero-copy h1 {
    font-size: 37px;
    line-height: 1.22;
  }

  .resources-hero-copy > p:not(.inner-eyebrow) {
    margin-top: 32px;
    font-size: 14px;
  }

  .resources-hero-button {
    margin-top: 52px;
  }

  .resources-library {
    padding-top: 10px;
    padding-bottom: 90px;
  }

  .resource-row {
    padding: 50px 0;
  }

  .resource-row-heading h2 {
    font-size: 25px;
  }

  .resource-card {
    min-height: 250px;
    padding: 27px 23px 23px;
  }

  .resource-card h3 {
    font-size: 21px;
  }

  .resource-card-kicker {
    margin-bottom: 26px;
  }

  .resources-context {
    padding-top: 50px;
    padding-bottom: 110px;
  }

  .resources-context h2,
  .resources-faq h2 {
    font-size: 32px;
  }

  .resources-context-copy > p:not(.inner-eyebrow) {
    font-size: 14px;
  }

  .resources-citations {
    align-items: stretch;
    flex-direction: column;
  }

  .resources-citations a {
    border-radius: 14px;
  }

  .resources-faq {
    padding-top: 30px;
  }

  .resources-faq-list {
    margin-top: 48px;
  }

  .resources-faq-list summary {
    font-size: 15px;
    line-height: 1.4;
  }
}

/* Gestionnaire de consentement aux cookies */
.cookie-consent {
  position: fixed;
  z-index: 1000;
  right: 22px;
  bottom: 22px;
  width: min(720px, calc(100vw - 44px));
  padding: 26px 28px 0;
  color: var(--cream);
  border: 1px solid rgba(255, 254, 236, 0.32);
  border-radius: 20px;
  background:
    radial-gradient(circle at 8% 4%, rgba(141, 255, 20, 0.11), transparent 27%),
    linear-gradient(145deg, rgba(33, 60, 52, 0.98), rgba(2, 25, 21, 0.98));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.52), inset 0 1px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  opacity: 0;
  overflow: hidden;
  transform: translateY(18px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.cookie-consent.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-consent__header {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 17px;
  align-items: center;
}

.cookie-consent__icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--ink);
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 36px rgba(141, 255, 20, 0.18);
}

.cookie-consent__icon svg {
  width: 35px;
  height: 35px;
  fill: currentColor;
}

.cookie-consent__heading p {
  margin: 0 0 3px;
  color: var(--lime);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cookie-consent__heading h2 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(22px, 2.6vw, 31px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.cookie-consent__heading h2:focus {
  outline: 0;
}

.cookie-consent__close {
  align-self: start;
  width: 36px;
  height: 36px;
  padding: 0;
  color: var(--cream);
  border: 1px solid rgba(255, 254, 236, 0.2);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
}

.cookie-consent__description {
  margin: 22px 0 0;
  color: rgba(255, 254, 240, 0.76);
  font-size: 13px;
  line-height: 1.58;
}

.cookie-consent__policy {
  margin: 17px 0 20px;
  color: rgba(255, 254, 240, 0.54);
  font-size: 10px;
  line-height: 1.5;
}

.cookie-consent__policy a {
  color: var(--lime);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-consent__actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-right: -28px;
  margin-left: -28px;
  border-top: 1px solid rgba(255, 254, 236, 0.18);
}

.cookie-consent[data-cookie-view="preferences"] .cookie-consent__actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cookie-consent__button {
  min-height: 55px;
  padding: 11px 14px;
  color: var(--cream);
  border: 0;
  border-right: 1px solid rgba(255, 254, 236, 0.18);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  transition: color 150ms ease, background-color 150ms ease;
}

.cookie-consent__button:last-child {
  border-right: 0;
}

.cookie-consent__button:hover,
.cookie-consent__button:focus-visible {
  color: var(--ink);
  background: var(--cream);
  outline: 0;
}

.cookie-consent__button--accept {
  color: var(--lime);
}

.cookie-consent__button--accept:hover,
.cookie-consent__button--accept:focus-visible {
  color: var(--ink);
  background: var(--lime);
}

.cookie-consent__categories {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}

.cookie-consent__category {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px;
  gap: 20px;
  align-items: center;
  min-height: 66px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 254, 236, 0.15);
  border-radius: 13px;
  background: rgba(255, 254, 236, 0.06);
  cursor: pointer;
}

.cookie-consent__category-copy {
  display: grid;
  gap: 3px;
}

.cookie-consent__category-copy strong {
  color: var(--cream);
  font-size: 12px;
  font-weight: 600;
}

.cookie-consent__category-copy > span {
  color: rgba(255, 254, 240, 0.58);
  font-size: 10px;
  line-height: 1.35;
}

.cookie-consent__category input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.cookie-consent__toggle {
  position: relative;
  width: 46px;
  height: 25px;
  border: 1px solid rgba(255, 254, 236, 0.28);
  border-radius: 999px;
  background: rgba(255, 254, 236, 0.1);
  transition: border-color 150ms ease, background-color 150ms ease;
}

.cookie-consent__toggle::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: rgba(255, 254, 240, 0.7);
  content: "";
  transition: background-color 150ms ease, transform 150ms ease;
}

.cookie-consent__category input:checked + .cookie-consent__toggle {
  border-color: var(--lime);
  background: rgba(141, 255, 20, 0.16);
}

.cookie-consent__category input:checked + .cookie-consent__toggle::after {
  background: var(--lime);
  transform: translateX(21px);
}

.cookie-consent__category input:focus-visible + .cookie-consent__toggle {
  outline: 2px solid var(--cream);
  outline-offset: 3px;
}

.cookie-consent__category input:disabled + .cookie-consent__toggle {
  opacity: 0.72;
  cursor: not-allowed;
}

.cookie-settings-link {
  padding: 0;
  color: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  line-height: 1.35;
  text-align: left;
  transition: color 160ms ease;
}

.cookie-settings-link:hover,
.cookie-settings-link:focus-visible {
  color: var(--lime);
  outline: 0;
}

@media (max-width: 680px) {
  .cookie-consent {
    right: 10px;
    bottom: 10px;
    width: calc(100vw - 20px);
    max-height: calc(100dvh - 20px);
    padding: 21px 19px 0;
    border-radius: 17px;
    overflow-y: auto;
  }

  .cookie-consent__header {
    grid-template-columns: 48px minmax(0, 1fr) auto;
    gap: 13px;
  }

  .cookie-consent__icon {
    width: 48px;
    height: 48px;
  }

  .cookie-consent__icon svg {
    width: 29px;
    height: 29px;
  }

  .cookie-consent__description {
    font-size: 12px;
  }

  .cookie-consent__actions {
    grid-template-columns: 1fr;
    margin-right: -19px;
    margin-left: -19px;
  }

  .cookie-consent[data-cookie-view="preferences"] .cookie-consent__actions {
    grid-template-columns: 1fr;
  }

  .cookie-consent__button {
    min-height: 50px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 254, 236, 0.18);
  }

  .cookie-consent__button:last-child {
    border-bottom: 0;
  }

  .cookie-consent__category {
    gap: 12px;
    padding-right: 12px;
    padding-left: 12px;
  }
}
