/* ============================================
   DESIGN TOKENS — palette, typo, spacings
   ============================================ */
:root {
  --black: #000000;
  --ink: #0a0a0a;
  --gray-900: #181818;
  --gray-700: #4a4a4c;
  --gray-500: #8e8e8f;
  --gray-300: #e6e8e9;
  --gray-200: #f2f3f4;
  --gray-100: #f8f8f8;
  --white: #ffffff;

  --blue: #1566e0;
  --blue-light: #e8f0ff;
  --red: #ff0541;
  --red-light: #ffe1e9;
  --green: #95bf47;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-xl: 36px;

  --container: 1280px;

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: "Oswald", "Inter", sans-serif;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.12);

  --header-h: 76px;
  --ann-h: 38px;
}

/* ============================================
   RESET
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background-color: var(--white);
  background-image: radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.35) 1px, transparent 0);
  background-size: 20px 20px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

ul {
  list-style: none;
}

input,
textarea {
  font: inherit;
}

/* ============================================
   UTILITIES
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--gray-500);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.eyebrow--center {
  display: block;
  text-align: center;
}

.check {
  color: var(--blue);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--ink);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(21, 102, 224, 0.35);
}
.btn--primary:hover svg {
  transform: translateX(3px);
}
.btn--primary svg {
  transition: transform 0.25s ease;
}

.btn--blue {
  background: #343435;
  color: var(--white);
  padding: 18px 36px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(52, 52, 53, 0.25);
}
.btn--blue:hover {
  background: #1f1f20;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(52, 52, 53, 0.35);
}
.btn--blue:hover svg {
  transform: translateX(3px);
}
.btn--blue svg {
  transition: transform 0.25s ease;
}

.btn--lg {
  padding: 18px 32px;
  font-size: 16px;
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
  background: #0a0a0a;
  color: #ffffff;
  height: var(--ann-h);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.announcement-bar__inner {
  display: inline-flex;
  justify-content: center;
}
.announcement-bar__text {
  padding-inline: 16px;
}

/* ============================================
   HEADER (floating pill)
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px clamp(16px, 3vw, 32px);
  margin-top: 0;
  background: var(--white);
}
.header__pill {
  max-width: 1320px;
  margin-inline: auto;
  background: var(--white);
  border-radius: 999px;
  padding: 12px 20px 12px 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(15, 23, 42, 0.06);
}
.header__pill > .header__logo { justify-self: start; }
.header__pill > .header__nav { justify-self: center; }
.header__pill > .header__icons { justify-self: end; }
.header__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 30px;
  color: var(--ink);
  flex-shrink: 0;
}
.header__logo-icon {
  display: inline-flex;
}
.header__logo-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.header__logo-text {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -0.03em;
}
.header__nav {
  display: flex;
  gap: 6px;
  align-items: center;
}
.header__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
  padding: 10px 18px;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}
.header__link:hover {
  color: var(--ink);
  background: var(--gray-100);
}
.header__link.is-active {
  background: var(--gray-200);
  color: var(--ink);
}
.header__icons {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-shrink: 0;
}
.header__burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}
.header__burger span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}
.header__burger.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.header__burger.is-open span:nth-child(2) {
  opacity: 0;
}
.header__burger.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@keyframes header-nav-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding-block: clamp(48px, 7vw, 90px) clamp(24px, 4vw, 50px);
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__bg {
  position: absolute;
  top: 50%;
  right: 4%;
  transform: translateY(-50%);
  width: clamp(260px, 32vw, 520px);
  aspect-ratio: 1 / 1;
  z-index: 1;
  pointer-events: none;
  perspective: 1600px;
  perspective-origin: 50% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__bg-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: rotateX(-18deg) rotateY(-26deg) rotateZ(10deg);
  transform-origin: center center;
  mix-blend-mode: multiply;
  opacity: 0.95;
}

@media (max-width: 1024px) {
  .hero__bg {
    right: 2%;
    width: clamp(220px, 36vw, 380px);
    opacity: 0.75;
  }
}
@media (max-width: 720px) {
  .hero__bg {
    right: -6%;
    width: 65vw;
    opacity: 0.5;
  }
  .hero__bg-video {
    transform: rotateX(-12deg) rotateY(-20deg) rotateZ(8deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__bg-video {
    display: none;
  }
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px 9px 12px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 32px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}
.hero__badge-check {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero__title {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(30px, 3.6vw, 58px);
  line-height: 1.05;
  letter-spacing: 0.002em;
  color: var(--ink);
  max-width: 980px;
  margin: 0 auto;
}
.hero__title-underline {
  text-decoration: underline;
  text-decoration-color: var(--blue);
  text-decoration-thickness: 0.085em;
  text-underline-offset: 0.08em;
  text-decoration-skip-ink: none;
}
.hero__description {
  margin-top: 22px;
  max-width: 640px;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.5;
}
.hero__users {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
}
.hero__avatars {
  display: flex;
}
.avatar {
  display: inline-block;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background-size: cover;
  background-position: center;
  background-color: var(--gray-200);
  border: 3px solid var(--white);
  margin-left: -12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.avatar:first-child {
  margin-left: 0;
}
.avatar--sm {
  width: 36px;
  height: 36px;
  border-width: 2px;
  margin: 0;
}
.avatar--lg {
  width: 88px;
  height: 88px;
  border-width: 4px;
  margin-left: -16px;
}
.avatar--lg:first-child {
  margin-left: 0;
}
.hero__rating-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: -0.01em;
}
.hero__buttons {
  margin-top: 32px;
}
.hero__captions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
}
.hero__caption-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 16px;
  color: var(--ink);
  font-weight: 600;
}
.hero__caption-check {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ============================================
   LOGO LIST (clients)
   ============================================ */
.logo-list {
  padding-block: clamp(28px, 4vw, 50px) clamp(20px, 3vw, 40px);
  background: var(--gray-100);
}
.logo-list__head {
  text-align: center;
  margin-bottom: 56px;
}
.logo-list__title {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.logo-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #f8f8f8;
  padding-block: 38px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.logo-marquee__track {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.75vw, 28px);
  width: max-content;
  animation: logo-marquee-scroll 38s linear infinite;
}
.logo-marquee__item {
  flex: none;
  height: clamp(101px, 12.6vw, 168px);
  width: auto;
  object-fit: contain;
}
@keyframes logo-marquee-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .logo-marquee__track { animation: none; }
}

/* ============================================
   STEPS / PROCESS
   ============================================ */
.steps {
  padding-block: clamp(40px, 5vw, 70px) clamp(32px, 4vw, 56px);
}
.steps__head {
  text-align: center;
  margin-bottom: 72px;
}
.steps__title {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-300);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.step__media {
  position: relative;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.step__media--blue {
  background: linear-gradient(135deg, var(--blue) 0%, #0040b4 100%);
}
.step__media--neutral {
  background: var(--gray-200);
}
.step__media--red {
  background: linear-gradient(135deg, var(--red) 0%, #b8002e 100%);
}
.step__icon {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--ink);
  z-index: 2;
}
.step__icon svg {
  width: 20px;
  height: 20px;
}
.step__media--neutral .step__icon svg {
  stroke: var(--white);
}
.step__media--neutral .step__icon {
  background: var(--ink);
}
.step__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.step__chat {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  z-index: 1;
}
.step__chat-bubble {
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 18px;
  font-size: 14px;
  font-weight: 500;
  align-self: flex-start;
  max-width: 80%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.step__chat-bubble--alt {
  background: var(--ink);
  color: var(--white);
  align-self: flex-end;
}
.step__keys {
  z-index: 1;
}
.step__key-tag {
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.step__body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.step__number {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--gray-500);
  letter-spacing: 0.04em;
}
.step__heading {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 26px;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--ink);
}
.step__text {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.55;
}

/* ============================================
   NUMBERS
   ============================================ */
.numbers {
  padding-block: clamp(80px, 10vw, 140px);
  background: var(--ink);
  color: var(--white);
}
.numbers__head {
  text-align: center;
  margin-bottom: 72px;
}
.numbers .eyebrow {
  color: rgba(255, 255, 255, 0.55);
}
.numbers__title {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--white);
}
.numbers__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.number-card {
  text-align: center;
  padding: 32px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.number-card:last-child {
  border-right: 0;
}
.number-card__value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 4vw, 54px);
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 12px;
}
.number-card__label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
}

/* ============================================
   AIC (skills marquee)
   ============================================ */
.aic {
  padding-block: clamp(80px, 10vw, 140px);
  background: var(--gray-100);
  overflow: hidden;
}
.aic__head {
  text-align: center;
  margin-bottom: 60px;
}
.aic__title {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.aic__description {
  margin: 24px auto 0;
  max-width: 620px;
  color: var(--gray-700);
  font-size: 17px;
}
.aic__marquees {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.aic__marquee {
  overflow: hidden;
  white-space: nowrap;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.aic__track {
  display: inline-flex;
  gap: 14px;
  animation: marquee-left 40s linear infinite;
}
.aic__marquee--reverse .aic__track {
  animation: marquee-right 36s linear infinite;
}
.aic__pill {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  font-weight: 500;
  font-size: 17px;
  color: var(--ink);
}
.aic__pill--blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.aic__pill--red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

@keyframes marquee-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes marquee-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

/* ============================================
   CASE STUDIES
   ============================================ */
.case-studies {
  padding-block: clamp(32px, 4vw, 56px) clamp(80px, 10vw, 140px);
}
.case-studies__head {
  text-align: center;
  margin-bottom: 72px;
}
.case-studies__title {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.case-studies__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.case-study {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 360px;
  border: 1px solid var(--gray-300);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.case-study:nth-child(even) .case-study__media {
  order: 2;
}
.case-study:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.case-study__media {
  position: relative;
  overflow: hidden;
}
.case-study__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.case-study:hover .case-study__media img {
  transform: scale(1.05);
}
.case-study__tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.case-study__body {
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}
.case-study__author {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--gray-700);
}
.case-study__heading {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.case-study__text {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.55;
  flex: 1;
}
.case-study__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  margin-top: 8px;
  align-self: flex-start;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.case-study__link:hover {
  color: var(--blue);
  border-color: var(--blue);
}
.case-study__link svg {
  transition: transform 0.2s;
}
.case-study__link:hover svg {
  transform: translateX(3px);
}

/* ============================================
   FAQ (dark variant)
   ============================================ */
.faq {
  padding-block: clamp(80px, 10vw, 140px);
  background: var(--ink);
  color: var(--white);
}
.faq__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vw, 64px);
  max-width: 880px;
  margin-inline: auto;
}
.faq__head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.faq .eyebrow {
  color: rgba(255, 255, 255, 0.45);
}
.faq__title {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0;
}
.faq__lead {
  color: rgba(255, 255, 255, 0.65);
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.6;
  margin: 0;
  max-width: 620px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.faq__item:hover {
  border-color: rgba(255, 255, 255, 0.30);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}
.faq__item[open] {
  border-color: rgba(255, 255, 255, 0.40);
  background: rgba(255, 255, 255, 0.06);
}
.faq__summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background 0.2s ease;
}
.faq__summary::-webkit-details-marker { display: none; }
.faq__summary::marker { content: ""; }

.faq__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq__item:hover .faq__num {
  transform: scale(1.08);
}
.faq__q {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
  letter-spacing: -0.005em;
}
.faq__chev {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: rgba(255, 255, 255, 0.75);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}
.faq__chev svg {
  width: 18px;
  height: 18px;
}
.faq__item[open] .faq__chev {
  transform: rotate(180deg);
  color: var(--white);
}
.faq__content {
  padding: 0 26px 24px;
  padding-left: 82px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  animation: faq-content-in 0.3s ease-out;
}
.faq__content p {
  margin: 0;
}
.faq__content strong {
  color: var(--white);
  font-weight: 600;
}

.faq__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-xl);
  margin-top: 8px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.faq__cta:hover {
  border-color: rgba(255, 255, 255, 0.30);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}
.faq__cta-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}
.faq__cta-sep {
  color: rgba(255, 255, 255, 0.30);
  font-weight: 700;
}
.faq__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  border-bottom: 2px solid var(--white);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.faq__cta-link svg {
  transition: transform 0.2s ease;
}
.faq__cta:hover .faq__cta-link svg {
  transform: translateX(4px);
}

@keyframes faq-content-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 720px) {
  .faq__summary {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    padding: 18px 18px;
  }
  .faq__num {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
  .faq__content {
    padding: 0 18px 20px;
    padding-left: 62px;
  }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding-block: clamp(80px, 10vw, 140px);
  overflow: hidden;
}
.testimonials__head {
  text-align: center;
  margin-bottom: 60px;
}
.testimonials__title {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.testimonials__marquee {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  overflow: hidden;
}
.testimonials__track {
  display: flex;
  gap: 24px;
  animation: marquee-left 50s linear infinite;
  width: max-content;
}
.testimonials__track:hover {
  animation-play-state: paused;
}
.testi {
  flex: 0 0 360px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-sm);
}
.testi__stars {
  color: var(--blue);
  letter-spacing: 3px;
  font-size: 16px;
}
.testi__text {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.5;
  font-weight: 500;
  flex: 1;
}
.testi__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-300);
  font-size: 14px;
}
.testi__role {
  color: var(--gray-500);
  font-size: 12px;
}

/* ============================================
   FOUNDERS
   ============================================ */
.founders {
  padding-block: clamp(70px, 9vw, 130px);
  background: transparent;
}
.founders__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vw, 64px);
}
.founders__head {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}
.founders__title {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.founders__lead {
  color: var(--gray-700);
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.6;
  margin: 0;
  max-width: 620px;
}
.founders__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 32px);
}
.founder {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.founder:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.founder__monogram {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.founder__name {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.founder__role {
  color: var(--gray-500);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}
.founder__bio {
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.6;
  margin: 6px 0 0;
}
@media (max-width: 720px) {
  .founders__grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Founders — FX variant (test design) ---- */
.founders__grid--fx {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}
.founder-fx {
  position: relative;
  width: 350px;
  border-radius: 16px;
  background: linear-gradient(135deg, #010101 0%, #090909 50%, #010101 100%);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.45);
  color: #fff;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
}
.founder-fx:hover {
  transform: scale(1.05) rotate(-1deg);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 35px 70px -12px rgba(255, 255, 255, 0.06), 0 25px 50px -12px rgba(0, 0, 0, 0.6);
}

.founder-fx__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.founder-fx__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.10));
  opacity: 0.4;
  transition: opacity 0.5s ease;
}
.founder-fx:hover .founder-fx__overlay {
  opacity: 0.6;
}
.founder-fx__glow {
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 192px;
  height: 192px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 70%);
  filter: blur(48px);
  opacity: 0.3;
  animation: founder-fx-bounce 2.2s ease-in-out infinite;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.founder-fx:hover .founder-fx__glow {
  opacity: 0.5;
  transform: scale(1.1);
}
.founder-fx__pulse {
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  animation: founder-fx-ping 2.4s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.founder-fx__pulse--1 {
  top: 40px;
  left: 40px;
  width: 64px;
  height: 64px;
  filter: blur(12px);
}
.founder-fx__pulse--2 {
  bottom: 64px;
  right: 64px;
  width: 48px;
  height: 48px;
  filter: blur(8px);
  animation-delay: 0.6s;
}
.founder-fx__sweep {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.05), transparent);
  transform: skewX(-12deg) translateX(100%);
  transition: transform 1s ease;
}
.founder-fx:hover .founder-fx__sweep {
  transform: skewX(-12deg) translateX(-200%);
}

.founder-fx__body {
  position: relative;
  z-index: 1;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.founder-fx__icon-wrap {
  position: relative;
  width: 88px;
  height: 88px;
  margin-bottom: 24px;
}
.founder-fx__ring {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.20);
  animation: founder-fx-ping 2.4s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.founder-fx__ring--pulse {
  border-width: 1px;
  border-color: rgba(255, 255, 255, 0.10);
  animation: founder-fx-pulse 2s ease-in-out infinite;
}
.founder-fx__icon {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.6));
  border: 1px solid rgba(255, 255, 255, 0.20);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.founder-fx:hover .founder-fx__icon {
  transform: rotate(12deg) scale(1.1);
  box-shadow: 0 25px 50px -12px rgba(255, 255, 255, 0.18);
}

.founder-fx__name {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(28px, 2.4vw, 36px);
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(to right, #ffffff, #f3f4f6, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin: 0 0 16px;
  animation: founder-fx-text-pulse 2.4s ease-in-out infinite;
  transition: transform 0.3s ease;
}
.founder-fx:hover .founder-fx__name {
  transform: scale(1.05);
}

.founder-fx__role {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 14px;
}
.founder-fx__bio {
  color: #d1d5db;
  font-size: 14.5px;
  line-height: 1.65;
  margin: 0;
  max-width: 100%;
  transition: color 0.3s ease;
}
.founder-fx:hover .founder-fx__bio {
  color: #e5e7eb;
}

.founder-fx__divider {
  width: 33%;
  height: 2px;
  margin-top: 24px;
  border-radius: 999px;
  background: linear-gradient(to right, transparent, #fff, transparent);
  animation: founder-fx-pulse 2s ease-in-out infinite;
  transition: width 0.5s ease, height 0.5s ease;
}
.founder-fx:hover .founder-fx__divider {
  width: 50%;
  height: 4px;
}

.founder-fx__dots {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.founder-fx:hover .founder-fx__dots {
  opacity: 1;
}
.founder-fx__dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #fff;
  animation: founder-fx-bounce-dot 1s infinite;
}
.founder-fx__dots span:nth-child(2) { animation-delay: 0.1s; }
.founder-fx__dots span:nth-child(3) { animation-delay: 0.2s; }

.founder-fx__corner {
  position: absolute;
  width: 80px;
  height: 80px;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.founder-fx__corner--tl {
  top: 0;
  left: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.10), transparent);
  border-bottom-right-radius: 24px;
}
.founder-fx__corner--br {
  bottom: 0;
  right: 0;
  background: linear-gradient(315deg, rgba(255, 255, 255, 0.10), transparent);
  border-top-left-radius: 24px;
}
.founder-fx:hover .founder-fx__corner {
  opacity: 1;
}

@keyframes founder-fx-ping {
  75%, 100% { transform: scale(1.8); opacity: 0; }
}
@keyframes founder-fx-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
@keyframes founder-fx-text-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}
@keyframes founder-fx-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes founder-fx-bounce-dot {
  0%, 100% { transform: translateY(0); animation-timing-function: cubic-bezier(0.8, 0, 1, 1); }
  50% { transform: translateY(-25%); animation-timing-function: cubic-bezier(0, 0, 0.2, 1); }
}

@media (prefers-reduced-motion: reduce) {
  .founder-fx,
  .founder-fx *,
  .founder-fx *::before,
  .founder-fx *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* ============================================
   SERVICES (radar)
   ============================================ */
.services {
  position: relative;
  background: var(--ink);
  color: var(--white);
  padding-block: clamp(70px, 8vw, 110px) clamp(80px, 10vw, 130px);
  overflow: hidden;
}
.services__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vw, 64px);
}
.services__head {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.services__title {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0;
}
.services__lead {
  color: rgba(255, 255, 255, 0.65);
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.6;
  margin: 0;
  max-width: 620px;
}

/* Stage holds the radar visual + the icon rows */
.services__stage {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 18px;
  padding-inline: 16px;
}

.services__row {
  position: relative;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.services__row--narrow {
  max-width: 420px;
  margin: 0 auto;
  justify-content: space-around;
}

.service-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: scale(0.95);
  animation: services-icon-in 0.4s ease-out forwards;
  animation-delay: var(--delay, 0s);
}
.service-icon__box {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.service-icon__box svg {
  width: 22px;
  height: 22px;
}
.service-icon:hover .service-icon__box {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}
.service-icon__label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

/* Radar */
.services__radar {
  position: absolute;
  left: 50%;
  bottom: -60px;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  z-index: 0;
  pointer-events: none;
}
.services__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  border-style: solid;
  border-width: 1px;
}
.services__ring--1 { width: 5rem;  height: 5rem;  border-color: rgba(255, 255, 255, 0.22); }
.services__ring--2 { width: 10rem; height: 10rem; border-color: rgba(255, 255, 255, 0.18); }
.services__ring--3 { width: 15rem; height: 15rem; border-color: rgba(255, 255, 255, 0.14); }
.services__ring--4 { width: 20rem; height: 20rem; border-color: rgba(255, 255, 255, 0.11); }
.services__ring--5 { width: 25rem; height: 25rem; border-color: rgba(255, 255, 255, 0.08); }
.services__ring--6 { width: 30rem; height: 30rem; border-color: rgba(255, 255, 255, 0.06); }
.services__ring--7 { width: 35rem; height: 35rem; border-color: rgba(255, 255, 255, 0.04); }
.services__ring--8 { width: 40rem; height: 40rem; border-color: rgba(255, 255, 255, 0.025); }

/* Sweep — a thin line rotating from the center */
.services__sweep {
  position: absolute;
  top: 50%;
  right: 50%;
  width: 400px;
  height: 5px;
  transform-origin: right center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  z-index: 40;
  animation: services-radar-spin 10s linear infinite;
}
.services__sweep-line {
  display: block;
  height: 1px;
  width: 100%;
  background: linear-gradient(to right, transparent, var(--blue), transparent);
}

@keyframes services-radar-spin {
  from { transform: rotate(20deg); }
  to   { transform: rotate(380deg); }
}
@keyframes services-icon-in {
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 720px) {
  .services__row {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .services__row--wide { justify-content: space-around; }
  .services__stage { min-height: 320px; }
  .services__radar { bottom: -32px; }
  .services__sweep { width: 280px; }
}

@media (prefers-reduced-motion: reduce) {
  .services__sweep { animation: none; }
  .service-icon { animation: none; opacity: 1; transform: none; }
}

/* ============================================
   TEAM / FINAL CTA
   ============================================ */
.team {
  padding-block: clamp(80px, 10vw, 140px);
  background-color: var(--gray-100);
  background-image: radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.35) 1px, transparent 0);
  background-size: 20px 20px;
}
.team__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.team__title {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 16ch;
}
.team__avatars {
  display: flex;
  margin: 8px 0;
}
.team__text {
  max-width: 540px;
  font-size: 17px;
  color: var(--gray-700);
}
.team__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}
.team__secondary {
  font-size: 14px;
  color: var(--gray-500);
  font-weight: 500;
  transition: color 0.2s ease;
}
.team__secondary:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--ink);
  color: var(--white);
  padding-block: 80px 30px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 20px;
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__list a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}
.footer__list a:hover {
  color: var(--white);
}
.footer__col--prism {
  align-items: flex-start;
}
.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.footer__brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.footer__brand-name {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--white);
}
.footer__prism-story {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  font-size: 14.5px;
  max-width: 320px;
}
.footer__bottom {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
}
.footer__legal {
  display: flex;
  gap: 24px;
}
.footer__legal a {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}
.footer__legal a:hover {
  color: var(--white);
}

/* ---- Footer — FX variant (cinematic animations) ---- */
.site-footer--fx {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.site-footer--fx .site-footer__container {
  position: relative;
  z-index: 2;
}

/* Aurora breathing glow */
.footer-fx__aurora {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80vw;
  height: 60vh;
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(21, 102, 224, 0.18) 0%,
    rgba(255, 5, 65, 0.10) 40%,
    transparent 70%
  );
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0.6;
  animation: footer-fx-breathe 8s ease-in-out infinite alternate;
}

/* Grid background pattern (masked) */
.footer-fx__grid {
  position: absolute;
  inset: 0;
  background-size: 60px 60px;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 30%, #000 70%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 30%, #000 70%, transparent);
  pointer-events: none;
  z-index: 0;
}

/* Giant PRISM background text */
.footer-fx__giant {
  position: absolute;
  left: 50%;
  bottom: -3vh;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26vw;
  line-height: 0.75;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.10) 0%, transparent 60%);
  -webkit-background-clip: text;
  background-clip: text;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

/* Metallic text glow (brand name) */
.footer-fx__text-glow {
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.4) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.15));
}

/* Glass pill links */
.footer__list--pills {
  gap: 8px;
}
.footer-fx__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 10px 30px -10px rgba(0, 0, 0, 0.4),
    inset 0 1px 1px rgba(255, 255, 255, 0.08),
    inset 0 -1px 2px rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.footer-fx__pill:hover {
  color: var(--white);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.025) 100%);
  border-color: rgba(255, 255, 255, 0.20);
  box-shadow:
    0 20px 40px -10px rgba(0, 0, 0, 0.5),
    inset 0 1px 1px rgba(255, 255, 255, 0.18);
}
.footer-fx__pill--sm {
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Back-to-top button */
.footer-fx__top {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 10px 30px -10px rgba(0, 0, 0, 0.4),
    inset 0 1px 1px rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.footer-fx__top:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.20);
  transform: translateY(-2px);
}
.footer-fx__top svg {
  transition: transform 0.3s ease;
}
.footer-fx__top:hover svg {
  transform: translateY(-2px);
}

/* Tighter footer__bottom layout to host the back-to-top */
.site-footer--fx .footer__bottom {
  flex-wrap: wrap;
  gap: 16px;
}

@keyframes footer-fx-breathe {
  0%   { transform: translate(-50%, -50%) scale(1);    opacity: 0.55; }
  100% { transform: translate(-50%, -50%) scale(1.12); opacity: 1; }
}

@media (max-width: 720px) {
  /* PRISM géant — plus discret */
  .footer-fx__giant {
    font-size: 30vw;
    bottom: -1vh;
    opacity: 0.6;
  }

  /* Nav pills en grille 2x2 (plus compact) */
  .site-footer--fx .footer__list--pills {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .footer-fx__pill {
    padding: 10px 12px;
    font-size: 13px;
  }

  /* Légales — pills compactes sur 1 ligne, wrap propre */
  .site-footer--fx .footer__legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 0;
  }
  .footer-fx__pill--sm {
    padding: 6px 12px;
    font-size: 10px;
    letter-spacing: 0.06em;
    white-space: nowrap;
  }

  /* Footer bottom — stack centré clean */
  .site-footer--fx .footer__bottom {
    flex-direction: column;
    gap: 18px;
    align-items: center;
    text-align: center;
  }
  .site-footer--fx .footer__bottom > p { order: 1; margin: 0; }
  .site-footer--fx .footer__legal { order: 2; }
  .footer-fx__top { order: 3; }

  /* Footer grid — un peu plus serré */
  .site-footer--fx .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 36px;
  }
  .site-footer--fx .footer__title {
    text-align: center;
    margin-bottom: 14px;
  }
  .site-footer--fx .footer__col--prism {
    text-align: center;
    align-items: center;
  }
  .site-footer--fx .footer__brand {
    justify-content: center;
  }
  .site-footer--fx .footer__prism-story {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-fx__aurora { animation: none; }
  .footer-fx__pill, .footer-fx__top { transition: none; }
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .numbers__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .number-card:nth-child(3) {
    border-right: 0;
  }
  .steps__grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-inline: auto;
  }
  .case-study {
    grid-template-columns: 1fr;
    height: auto;
  }
  .case-study:nth-child(even) .case-study__media {
    order: 0;
  }
  .case-study__media {
    min-height: 260px;
    aspect-ratio: 4 / 3;
  }
  .faq__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 720px) {
  /* Header pill — laisse la place au menu dropdown */
  .site-header {
    padding-inline: 12px;
  }
  .header__pill {
    grid-template-columns: 1fr auto;
    padding: 10px 12px 10px 18px;
  }
  .header__pill > .header__icons { justify-self: end; }
  .header__pill > .header__nav { display: none; } /* override grid placement */

  /* Menu mobile — dropdown propre sous le pill */
  .header__nav {
    display: none;
  }
  .header__nav.is-open {
    display: flex;
    position: absolute;
    top: calc(100% + 8px);
    left: 12px;
    right: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.12);
    z-index: 200;
    animation: header-nav-in 0.18s ease-out;
  }
  .header__nav.is-open .header__link {
    width: 100%;
    text-align: center;
    padding: 12px 16px;
    font-size: 16px;
    border-radius: var(--radius-md);
  }
  .header__burger {
    display: flex;
  }

  /* Vidéo pyramide très discrète sur mobile */
  .hero__bg {
    opacity: 0.15;
  }

  .numbers__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .number-card {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 22px 12px;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
  .testi {
    flex-basis: 280px;
  }
  .hero__title {
    font-size: clamp(40px, 12vw, 70px);
  }
  .hero__captions {
    flex-direction: column;
    gap: 8px;
  }
}

/* ============================================
   BOOKING PAGE
   ============================================ */
.booking {
  padding: 64px 0 120px;
}
.booking__inner {
  max-width: 820px;
}
.booking__head {
  text-align: center;
  margin-bottom: 40px;
}
.booking__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.booking__title {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(30px, 3.6vw, 58px);
  line-height: 1.05;
  letter-spacing: 0.002em;
  color: var(--ink);
  margin: 0 0 16px;
}
.booking__lead {
  color: var(--gray-700);
  font-size: 17px;
  line-height: 1.55;
  max-width: 560px;
  margin: 0 auto;
}
.booking__progress {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 0;
  margin: 0 0 36px;
  counter-reset: step;
  position: relative;
}
.booking__progress::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: var(--gray-300);
  z-index: 0;
}
.booking__progress-step {
  flex: 1;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-500);
  text-align: center;
}
.booking__progress-step span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-300);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--gray-500);
  transition: all 0.25s ease;
}
.booking__progress-step.is-active {
  color: var(--ink);
}
.booking__progress-step.is-active span {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: 0 6px 18px rgba(21, 102, 224, 0.3);
}
.booking__progress-step.is-done span {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.booking__form {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.06);
}
.booking__step {
  display: none;
  animation: fadeInStep 0.35s ease;
}
.booking__step.is-active {
  display: block;
}
@keyframes fadeInStep {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.booking__step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 24px;
}
.booking__step-sub {
  margin: -16px 0 24px;
  color: var(--gray-500);
  font-size: 14px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 0;
  padding: 0;
  margin: 0 0 16px;
  min-width: 0;
}
.field--span {
  grid-column: 1 / -1;
}
.field__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  letter-spacing: -0.01em;
}
.field__input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field__input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(21, 102, 224, 0.12);
}
.field__input--textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--font-sans);
}
.field__input.is-invalid {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(255, 5, 65, 0.1);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 8px;
}
.choice {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: 12px;
  cursor: pointer;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.choice:hover {
  border-color: var(--gray-500);
}
.choice input {
  accent-color: var(--blue);
}
.choice:has(input:checked) {
  border-color: var(--blue);
  background: var(--blue-light);
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-700);
  margin: 8px 0 4px;
  cursor: pointer;
}
.checkbox input {
  margin-top: 3px;
  accent-color: var(--blue);
}

.booking__error {
  margin-top: 20px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  background: var(--red-light);
  color: var(--red);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
.booking__error:empty { display: none; }

.booking__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-300);
}
.btn--ghost {
  background: transparent;
  color: var(--gray-700);
  padding: 12px 20px;
  font-weight: 500;
}
.btn--ghost:hover {
  color: var(--ink);
  background: var(--gray-100);
}

/* Calendar */
.calendar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 16px;
}
.calendar__dates {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
}
.calendar__date {
  flex: 0 0 auto;
  min-width: 84px;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--ink);
  transition: all 0.2s ease;
}
.calendar__date:hover {
  border-color: var(--blue);
}
.calendar__date.is-active {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 22px rgba(21, 102, 224, 0.3);
}
.calendar__date-weekday {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  opacity: 0.8;
}
.calendar__date-day {
  font-size: 15px;
  font-weight: 600;
}
.calendar__times {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 10px;
}
.calendar__time {
  padding: 12px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.calendar__time:hover:not(:disabled) {
  border-color: var(--blue);
  color: var(--blue);
}
.calendar__time.is-active {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}
.calendar__time.is-blocked {
  opacity: 0.4;
  text-decoration: line-through;
  cursor: not-allowed;
}
.calendar__empty {
  color: var(--gray-500);
  font-size: 14px;
  margin: 0;
}

.booking__summary {
  margin-top: 16px;
  padding: 14px 18px;
  background: var(--blue-light);
  border-radius: 12px;
  font-size: 14px;
  color: var(--ink);
}

.booking__success {
  text-align: center;
}
.booking__success.is-active { display: block; }
.booking__success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 12px 30px rgba(21, 102, 224, 0.35);
}
.booking__success-recap {
  background: var(--gray-100);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 14px;
  color: var(--gray-700);
  display: inline-block;
  margin-bottom: 24px;
}

@media (max-width: 720px) {
  .booking__form { padding: 24px; border-radius: 20px; }
  .field-grid, .choice-grid { grid-template-columns: 1fr; }
  .booking__progress-step { font-size: 11px; }
  .booking__progress-step span { width: 30px; height: 30px; }
  .booking__progress::before { top: 15px; }
  .booking__nav { flex-wrap: wrap; }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page {
  padding: 64px 0 120px;
}
.contact-page__inner {
  max-width: 720px;
}
.contact-page__head {
  text-align: center;
  margin-bottom: 40px;
}
.contact-page__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.contact-page__title {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 18px;
}
.contact-page__lead {
  color: var(--gray-700);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-form__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-300);
}
.contact-form__actions .btn {
  width: 100%;
  justify-content: center;
  max-width: 360px;
}
.contact-form__alt {
  margin: 0;
  font-size: 14px;
  color: var(--gray-500);
  text-align: center;
}
.contact-form__alt a {
  color: var(--ink);
  font-weight: 600;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.contact-form__alt a:hover {
  color: var(--blue);
  border-color: var(--blue);
}

.contact-success {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px);
  text-align: center;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.06);
}
.contact-success__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 12px 30px rgba(21, 102, 224, 0.35);
}
.contact-success__title {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(28px, 3.5vw, 40px);
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 12px;
}
.contact-success__text {
  color: var(--gray-700);
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 28px;
  max-width: 480px;
  margin-inline: auto;
}

/* ============================================
   PROJECT PAGE (case study detail)
   ============================================ */
.project {
  padding-top: clamp(40px, 5vw, 72px);
  padding-bottom: clamp(80px, 10vw, 140px);
}

.project__breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: clamp(28px, 4vw, 48px);
  flex-wrap: wrap;
}
.project__breadcrumb a {
  color: var(--gray-500);
  transition: color 0.2s;
}
.project__breadcrumb a:hover {
  color: var(--ink);
}
.project__breadcrumb span:not([aria-hidden]) {
  color: var(--ink);
  font-weight: 500;
}

/* --- Hero --- */
.project-hero {
  padding-bottom: clamp(40px, 5vw, 72px);
}
.project-hero__inner {
  text-align: left;
  max-width: 1100px;
}
.project-hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 8px;
}
.project-hero__lead {
  margin-top: 28px;
  max-width: 720px;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.5;
  color: var(--gray-700);
}
.project-hero__cta {
  margin-top: 36px;
}

.project-meta {
  margin-top: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--gray-300);
  border-bottom: 1px solid var(--gray-300);
}
.project-meta__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px 0;
  padding-right: 24px;
  border-left: 1px solid var(--gray-300);
  padding-left: 24px;
}
.project-meta__item:first-child {
  border-left: none;
  padding-left: 0;
}
.project-meta__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.project-meta__value {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* --- Section (intro) --- */
.project-section {
  padding-block: clamp(40px, 5vw, 72px);
}
.project-section__grid--intro {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}
.project-section__title {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.project-section__body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--gray-700);
}
.project-section__body strong {
  color: var(--ink);
}

/* --- Numbered content blocks --- */
.project-block {
  padding-block: clamp(40px, 5vw, 80px);
}
.project-block__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.project-block--reverse .project-block__media {
  order: 2;
}
.project-block__frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  aspect-ratio: 4 / 3;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.project-block__frame:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.project-block__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-block__frame--editorial {
  aspect-ratio: 1 / 1;
  background: transparent;
}
.project-block__frame--editorial img {
  object-fit: cover;
}
@media (max-width: 960px) {
  .project-block__frame--editorial {
    aspect-ratio: 4 / 3;
  }
}
.project-block__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.project-block__index {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--blue);
}
.project-block__title {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(26px, 2.8vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.project-block__body p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-700);
}
.project-block__body strong {
  color: var(--ink);
  font-weight: 600;
}
.project-block__list {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}
.project-block__list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  color: var(--gray-700);
}
.project-block__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--blue);
}

/* --- Stats --- */
.project-stats {
  padding-block: clamp(60px, 7vw, 110px);
  background: transparent;
  margin-block: clamp(20px, 3vw, 40px);
}
.project-stats__head {
  text-align: center;
  margin-bottom: 56px;
}
.project-stats__title {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.project-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.project-stat {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.project-stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.project-stat__value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.project-stat__unit {
  font-size: 0.5em;
  font-weight: 500;
  color: var(--gray-500);
  letter-spacing: 0;
}
.project-stat__value sup {
  font-size: 0.4em;
  font-weight: 500;
  vertical-align: super;
  margin-left: 2px;
  color: var(--gray-500);
}
.project-stat__label {
  font-size: 14px;
  line-height: 1.4;
  color: var(--gray-700);
}

/* --- Quote --- */
.project-quote {
  padding-block: clamp(50px, 6vw, 90px);
}
.project-quote__inner {
  max-width: 880px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.project-quote__mark {
  color: var(--blue);
  opacity: 0.45;
}
.project-quote__text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.project-quote__author {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--gray-700);
  text-align: left;
}
.project-quote__author strong {
  color: var(--ink);
  font-size: 15px;
}
.project-quote__role {
  color: var(--gray-500);
  font-size: 13px;
}

/* --- Related --- */
.project-related {
  padding-block: clamp(50px, 6vw, 90px);
}
.project-related__head {
  margin-bottom: 40px;
}
.project-related__title {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.project-related__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.project-related__card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.project-related__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.project-related__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.project-related__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.project-related__card:hover .project-related__media img {
  transform: scale(1.05);
}
.project-related__body {
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.project-related__tag {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--blue);
  background: var(--blue-light);
  padding: 4px 10px;
  border-radius: 999px;
}
.project-related__heading {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.project-related__body p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.55;
}

/* --- Final CTA --- */
.project-cta {
  padding-block: clamp(60px, 7vw, 110px);
}
.project-cta__inner {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 5vw, 72px) clamp(28px, 4vw, 64px);
}
.project-cta__title {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.project-cta__text {
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.6;
  max-width: 540px;
}
.project-cta .btn {
  margin-top: 14px;
}

/* --- Responsive --- */
@media (max-width: 960px) {
  .project-meta {
    grid-template-columns: repeat(2, 1fr);
  }
  .project-meta__item:nth-child(3) {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--gray-300);
  }
  .project-meta__item:nth-child(4) {
    border-top: 1px solid var(--gray-300);
  }
  .project-section__grid--intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .project-block__grid {
    grid-template-columns: 1fr;
  }
  .project-block--reverse .project-block__media {
    order: 0;
  }
  .project-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .project-related__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .project-meta {
    grid-template-columns: 1fr;
  }
  .project-meta__item {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--gray-300);
  }
  .project-meta__item:first-child {
    border-top: none;
  }
  .project-stats__grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Lifted cards on dotted background (project + legal pages) ---- */
.project-hero__inner,
.project-section__grid,
.project-block__grid,
.project-quote__inner,
.project-cta__inner,
.legal__inner {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 56px);
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.05);
}

/* ============================================
   LEGAL PAGES (mentions, CGV, confidentialité)
   ============================================ */
.legal {
  padding-block: clamp(48px, 8vw, 110px) clamp(40px, 6vw, 80px);
  background: transparent;
}
.legal__inner {
  max-width: 780px;
}
.legal__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 14px;
}
.legal__title {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 12px;
}
.legal__updated {
  color: var(--gray-500);
  font-size: 14px;
  margin-bottom: 40px;
}
.legal__note {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 18px 22px;
  font-size: 14px;
  color: var(--gray-700);
  margin-bottom: 44px;
}
.legal h2 {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(20px, 2.4vw, 26px);
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 40px 0 14px;
}
.legal h2:first-of-type {
  margin-top: 0;
}
.legal p,
.legal li {
  color: var(--gray-700);
  line-height: 1.7;
  font-size: 15.5px;
}
.legal p {
  margin-bottom: 16px;
}
.legal ul {
  margin: 0 0 16px;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal li {
  list-style: disc;
}
.legal a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal a:hover {
  color: var(--blue);
}
.legal__data {
  list-style: none !important;
  padding-left: 0 !important;
}
.legal__data li {
  list-style: none;
}
.legal__data strong {
  color: var(--ink);
  font-weight: 600;
}
