@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Unbounded:wght@400;500;700;800&family=Inter:wght@400;500;600;700&display=swap");
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  background-color: #020C1B;
  color: #FFFFFF;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.1) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
}

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

a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible {
  outline: 2px solid #F86800;
  outline-offset: 3px;
  border-radius: 5px;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
}
button:focus-visible {
  outline: 2px solid #F86800;
  outline-offset: 3px;
  border-radius: 5px;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  line-height: 1.2;
}

p {
  line-height: 1.65;
}

abbr[title] {
  text-decoration: underline dotted;
  cursor: help;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.container {
  width: 100%;
  max-width: 1495px;
  padding-inline: 190px;
  margin-inline: auto;
}
@media (max-width: 1280px) {
  .container {
    padding-inline: 40px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-inline: 20px;
  }
}
@media (max-width: 480px) {
  .container {
    padding-inline: 20px;
    flex-direction: column;
  }
}
.container--narrow {
  max-width: 1182.8px;
}
.container--wide {
  max-width: 1555px;
}
.container--prose {
  max-width: 720px;
}

.section {
  padding-block: 60px;
}
.section:first-of-type {
  padding-top: 0;
}

.section__header {
  margin-bottom: 40px;
}
.section__header .eyebrow {
  margin-bottom: 12px;
}
.section__header .section__title {
  margin-bottom: 16px;
}
.section__header--inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}
@media (max-width: 768px) {
  .section__header--inline {
    flex-direction: column;
    align-items: flex-start;
  }
}
.section__header--inline .section__header-text {
  flex: 1;
}

.section__title {
  font-family: "Unbounded", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
  color: #FFFFFF;
}

.section__subtitle {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  max-width: 620px;
}

.eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #F86800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-block;
}

.link-arrow {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: #F86800;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  transition: gap 250ms ease;
  white-space: nowrap;
}
.link-arrow:hover {
  gap: 10px;
}

.btn {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 250ms ease;
  display: inline-flex;
  padding: 12px 24px;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn:focus-visible {
  outline: 2px solid #F86800;
  outline-offset: 3px;
  border-radius: 5px;
}
.btn .btn__arrow {
  transition: transform 250ms ease;
  display: inline-block;
}
.btn:hover .btn__arrow {
  transform: translateX(4px);
}
.btn--primary {
  background-color: #F86800;
  color: #FFFFFF;
  border-color: #F86800;
}
.btn--primary:hover {
  background-color: rgb(207.2, 86.8903225806, 0);
  border-color: rgb(207.2, 86.8903225806, 0);
}
.btn--primary:active {
  background-color: rgb(176.6, 74.0580645161, 0);
}
.btn--ghost {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #D9D9D9;
}
.btn--ghost:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #FFFFFF;
}
.btn--outline {
  background-color: transparent;
  color: #F86800;
  border-color: #F86800;
}
.btn--outline:hover {
  background-color: rgba(248, 104, 0, 0.2);
}
.btn--large {
  padding: 14px 28px;
  font-size: 14px;
}
.btn--sm {
  padding: 8px 18px;
  font-size: 13px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 20px 80px 20px 80px;
  background-color: rgba(2, 12, 27, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 1280px) {
  .site-header {
    padding: 20px 40px;
  }
}
@media (max-width: 768px) {
  .site-header {
    padding: 16px 20px;
  }
}
.site-header .container {
  padding-inline: 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav__logo {
  flex-shrink: 0;
  transition: opacity 250ms ease;
}
.nav__logo:hover {
  opacity: 0.85;
}

.nav__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 25px;
  margin-left: 500px;
}
@media (max-width: 1280px) {
  .nav__links {
    margin-left: 60px;
  }
}
@media (max-width: 1024px) {
  .nav__links {
    display: none;
  }
}

.nav__link {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  transition: color 250ms ease;
}
.nav__link:hover {
  color: #FFFFFF;
}
.nav__link.is-active {
  color: #FFFFFF;
  font-weight: 500;
}

.nav__cta {
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .nav__cta {
    display: none;
  }
}

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
}
@media (max-width: 1024px) {
  .nav__burger {
    display: flex;
  }
}

.nav__burger-line {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #FFFFFF;
  border-radius: 10px;
  transition: all 250ms ease;
  transform-origin: center;
}

.nav__burger.is-active .nav__burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__burger.is-active .nav__burger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__burger.is-active .nav__burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__mobile {
  display: none;
}
@media (max-width: 1024px) {
  .nav__mobile {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(2, 12, 27, 0.97);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: all 250ms ease;
  }
  .nav__mobile.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

.nav__mobile-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 16px 20px;
}
.nav__mobile-links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.nav__mobile-links li:last-child {
  border-bottom: none;
}
.nav__mobile-links .nav__link {
  display: block;
  padding: 14px 0;
  font-size: 15px;
  color: #FFFFFF;
}
.nav__mobile-links .btn {
  width: 100%;
  justify-content: center;
  margin-top: 12px;
  margin-bottom: 8px;
}

@media (pointer: fine) {
  body {
    cursor: none;
  }
  #cursor,
  #cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }
  #cursor {
    width: 12px;
    height: 12px;
    background: #F86800;
    z-index: 9999;
    mix-blend-mode: screen;
    transition: transform 0.1s ease, width 0.2s, height 0.2s, opacity 0.2s;
  }
  #cursor-ring {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(248, 104, 0, 0.5);
    z-index: 9998;
    transition: transform 0.15s ease, width 0.3s, height 0.3s;
  }
}
.section--hero {
  min-height: calc(100vh - 170px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 0;
  padding-bottom: 60px;
}
@media (max-width: 768px) {
  .section--hero {
    min-height: 80vh;
    padding-block: 50px;
  }
}
@media (max-width: 480px) {
  .section--hero {
    padding-block: 30px;
  }
}
.section--hero .eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #F86800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(7, 26, 48, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  padding: 8px 15px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.section--hero .eyebrow::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: #F86800;
  border-radius: 50%;
  margin-right: 10px;
}
.section--hero > div:first-child {
  padding-top: 50px;
}

.hero__title {
  font-family: "Unbounded", sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  color: #FFFFFF;
  margin-top: 40px;
  margin-bottom: 60px;
  letter-spacing: -0.02em;
}
@media (max-width: 1024px) {
  .hero__title {
    font-size: clamp(32px, 5vw, 56px);
  }
}
@media (max-width: 480px) {
  .hero__title {
    font-size: 28px;
  }
}

.hero__description {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto 60px;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.text-accent {
  color: #F86800;
}

.hero__ctas {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .hero__ctas {
    flex-direction: column;
    width: 100%;
  }
  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }
}

.section--demo {
  padding-block: 60px;
}

.demo__layout {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
@media (max-width: 1024px) {
  .demo__layout {
    flex-direction: column;
    gap: 48px;
  }
}

.demo__visual {
  flex: 0 0 auto;
  position: relative;
  width: 480px;
  max-width: 100%;
}
@media (max-width: 1024px) {
  .demo__visual {
    width: 100%;
  }
}

.demo__figure {
  position: relative;
  border-radius: 5px;
  overflow: visible;
}
.demo__figure img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  display: block;
}

.demo__annotation {
  position: absolute;
  background: rgba(7, 26, 48, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  padding: 6px 12px;
  pointer-events: none;
}
.demo__annotation .annotation__label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  color: #FFFFFF;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.demo__annotation--fixation {
  top: 16px;
  left: -20px;
}
@media (max-width: 1024px) {
  .demo__annotation--fixation {
    left: -12px;
  }
}

.demo__annotation--attention {
  top: 50%;
  right: -24px;
  transform: translateY(-50%);
}
@media (max-width: 1024px) {
  .demo__annotation--attention {
    right: -16px;
  }
}

.demo__annotation--path {
  bottom: 20px;
  left: -20px;
}
@media (max-width: 1024px) {
  .demo__annotation--path {
    left: -12px;
  }
}

.demo__content {
  flex: 1;
  max-width: 520px;
}
@media (max-width: 1024px) {
  .demo__content {
    max-width: 100%;
  }
}
.demo__content .eyebrow {
  margin-bottom: 14px;
}

.demo__title {
  font-family: "Unbounded", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
  color: #FFFFFF;
  font-size: 40px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .demo__title {
    font-size: 28px;
  }
}

.demo__description {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
}

.demo__metrics {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.demo__metric {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  border-left: 2px solid #F86800;
}

.metric__value {
  font-family: "Unbounded", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  color: #F86800;
  margin-left: 10px;
}

.metric__label {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 10px;
}

.demo__eye {
  display: block;
  width: 100%;
  height: auto;
  max-width: 420px;
  margin: 0 auto;
}

.eye__bg {
  fill: rgba(2, 12, 27, 0.92);
  stroke: rgba(14, 34, 57, 0.1);
  stroke-width: 1;
}

.eye__scan-ring {
  fill: none;
  stroke: #0E2239;
  stroke-width: 1;
  stroke-dasharray: 10 5 2 5;
  opacity: 0.6;
  transform-box: fill-box;
  transform-origin: center;
  animation: eye-spin 24s linear infinite;
  filter: url(#ring-glow);
}

.eye__ring--static {
  fill: none;
  stroke: rgba(14, 34, 57, 0.15);
  stroke-width: 0.5;
}

.eye__sclera {
  fill: url(#sclera-grad);
}

.eye__iris {
  fill: url(#iris-grad);
  filter: url(#iris-glow);
}

.eye__iris-ring {
  fill: none;
  stroke: rgba(14, 34, 57, 0.5);
  stroke-width: 1;
  transform-box: fill-box;
  transform-origin: center;
  animation: iris-pulse 3.5s ease-in-out infinite;
}

.eye__iris-ring--inner {
  fill: none;
  stroke: rgba(248, 104, 0, 0.3);
  stroke-width: 0.8;
  stroke-dasharray: 3 3;
  transform-box: fill-box;
  transform-origin: center;
  animation: iris-pulse 3.5s ease-in-out infinite 1s;
}

.eye__pupil {
  fill: #050d18;
}

.eye__reflection {
  fill: rgba(255, 255, 255, 0.65);
}

.eye__reflection--sm {
  fill: rgba(255, 255, 255, 0.3);
}

.eye__lid {
  fill: none;
  stroke: rgba(14, 34, 57, 0.45);
  stroke-width: 1;
}

@keyframes eye-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes iris-pulse {
  0%, 100% {
    opacity: 0.35;
    transform: scale(1);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.04);
  }
}
@keyframes scan-pulse {
  0%, 100% {
    opacity: 0.1;
  }
  50% {
    opacity: 0.75;
  }
}
.section--methodology {
  padding-block: 60px;
}
@media (max-width: 768px) {
  .section--methodology {
    min-height: 80vh;
    padding-block: 80px;
  }
}
@media (max-width: 480px) {
  .section--methodology {
    padding-block: 50px;
  }
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 365px);
  gap: 10px;
  justify-content: center;
}
@media (max-width: 1280px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1024px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.steps__item {
  background: rgba(7, 26, 48, 0.8);
  border: 1px solid rgba(14, 34, 57, 0.1);
  border-radius: 5px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
  transition: border-color 250ms ease;
}
.steps__item:hover {
  border-color: rgba(248, 104, 0, 0.55);
}

.steps__number {
  font-family: "Unbounded", sans-serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  color: #FFFFFF;
}

.steps__icon {
  width: 50px;
  height: 50px;
  background: rgba(248, 104, 0, 0.3);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.steps__title {
  font-family: "Unbounded", sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
  color: #FFFFFF;
}

.steps__description {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
}

.section--audience {
  padding-block: 60px;
}
@media (max-width: 768px) {
  .section--audience {
    min-height: 80vh;
    padding-block: 50px;
  }
}
@media (max-width: 480px) {
  .section--audience {
    padding-block: 30px;
  }
}

.audience-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 550px);
  gap: 20px;
  justify-content: center;
}
@media (max-width: 1280px) {
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .audience-grid {
    grid-template-columns: 1fr;
  }
}

.audience-card {
  height: 300px;
  background: rgba(7, 26, 48, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(217, 217, 217, 0.2);
  border-radius: 5px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
  transition: border-color 250ms ease;
  overflow: hidden;
  position: relative;
}
.audience-card::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at 20% 30%, rgba(248, 104, 0, 0.2), transparent 70%);
  opacity: 0;
  transition: opacity 250ms ease;
  pointer-events: none;
}
.audience-card:hover {
  border-color: rgba(217, 217, 217, 0.45);
}
.audience-card:hover::before {
  opacity: 1;
}
@media (max-width: 768px) {
  .audience-card {
    height: auto;
    min-height: 200px;
  }
}

.audience-card__icon {
  width: 50px;
  height: 50px;
  background: rgba(248, 104, 0, 0.3);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.audience-card__title {
  font-family: "Unbounded", sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
  color: #FFFFFF;
}

.audience-card__description {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
}

.audience-bridge {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 768px) {
  .audience-bridge {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 36px;
    padding-top: 28px;
  }
}

.audience-bridge__text {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #FFFFFF;
  max-width: 560px;
}

.section--blog {
  padding-block: 60px;
  position: relative;
  background: linear-gradient(180deg, #151F2D 0%, rgba(21, 31, 45, 0.25) 20%, rgba(2, 12, 27, 0.3) 40%, rgba(2, 12, 27, 0.5) 50%, #020C1B 100%);
}
@media (max-width: 768px) {
  .section--blog {
    min-height: 80vh;
    padding-block: 50px;
  }
}
@media (max-width: 480px) {
  .section--blog {
    padding-block: 30px;
  }
}

.articles-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 360px);
  gap: 10px;
  justify-content: center;
}
@media (max-width: 1280px) {
  .articles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1024px) {
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .articles-grid {
    grid-template-columns: 1fr;
  }
}

.article-card {
  height: 450px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  border: 1px solid rgba(217, 217, 217, 0.2);
  border-radius: 5px;
  overflow: hidden;
  background-color: rgba(14, 34, 57, 0.9);
  transition: border-color 250ms ease;
}
.article-card:hover {
  border-color: rgba(217, 217, 217, 0.45);
}
@media (max-width: 480px) {
  .article-card {
    height: auto;
  }
}

.article-card__image {
  position: relative;
  height: 200px;
  flex-shrink: 0;
  overflow: hidden;
}
.article-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.article-card:hover .article-card__image img {
  transform: scale(1.04);
}

.article-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(7, 26, 48, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 5px 12px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.article-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  padding: 20px 20px 24px;
  overflow: hidden;
}

.article-card__date {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  color: rgba(255, 255, 255, 0.6);
}

.article-card__title {
  font-family: "Unbounded", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  color: #FFFFFF;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-card__title a {
  transition: color 250ms ease;
}
.article-card__title a:hover {
  color: #F86800;
}

.article-card__excerpt {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card__link {
  margin-top: auto;
  flex-shrink: 0;
}

.section--cta {
  padding-block: 60px;
  text-align: center;
  position: relative;
}
.section--cta::before {
  content: "";
  display: block;
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  filter: blur(80px);
}
.section--cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cta__title {
  font-family: "Unbounded", sans-serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 1.2;
  color: #FFFFFF;
  margin-top: 14px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cta__title {
    font-size: 26px;
  }
}

.cta__description {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 36px;
}

.site-footer {
  padding-block: 60px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #020C1B;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  display: block;
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  filter: blur(40px);
}

.footer__grid {
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr;
  gap: 48px 60px;
  align-items: start;
  margin-bottom: 48px;
}
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
  }
}
@media (max-width: 480px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
}

.footer__funding {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  max-width: 180px;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
}

.footer__nav-title {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  color: #F86800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.footer__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
}
.footer__nav ul a {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #FFFFFF;
  transition: color 250ms ease;
}
.footer__nav ul a:hover {
  color: #FFFFFF;
}

.footer__social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
}

.footer__social-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}
.footer__social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.1);
  transition: background-color 250ms ease;
}
.footer__social-links a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.footer__legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__legal nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__legal nav ul a {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  transition: color 250ms ease;
}
.footer__legal nav ul a:hover {
  color: #FFFFFF;
}

.footer__copyright {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

.section--techniques-hero {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 72px;
  overflow: hidden;
  position: relative;
}
.section--techniques-hero::after {
  pointer-events: none;
}
@media (max-width: 768px) {
  .section--techniques-hero {
    min-height: 36vh;
    padding-top: 80px;
    padding-bottom: 56px;
  }
}

.techniques-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #F86800;
  margin-bottom: 22px;
  margin-top: 22px;
}

@keyframes badge-blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.techniques-hero__title {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  font-weight: 800;
  line-height: 1.06;
  color: #FFFFFF;
  margin-bottom: 18px;
}
.techniques-hero__title em {
  font-style: normal;
  color: #F86800;
}
@media (max-width: 480px) {
  .techniques-hero__title {
    font-size: 26px;
  }
}

.techniques-hero__desc {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  padding: 20px 0;
}

.techniques-hero__info-boxes {
  display: flex;
  flex-direction: row;
  align-items: left;
  justify-content: left;
  gap: 14px;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .techniques-hero__info-boxes {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 828px) {
  .techniques-hero__info-boxes {
    flex-direction: column;
  }
}

.techniques-hero__info-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}
.techniques-hero__info-box:first-child {
  padding-left: 0px;
}
.techniques-hero__info-box {
  padding: 14px 20px;
  border-radius: 10px;
  text-align: left;
  min-width: 180px;
}
.techniques-hero__info-box .info-box__icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: rgba(248, 104, 0, 0.12);
  border-radius: 8px;
  border: 1px solid rgba(248, 104, 0, 0.5);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: #F86800;
}
.techniques-hero__info-box .info-box__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 5px;
}
.techniques-hero__info-box .info-box__label {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
}
.techniques-hero__info-box .info-box__value {
  font-family: "Unbounded", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
}
@media screen and (max-width: 828px) {
  .techniques-hero__info-box {
    padding: 10px 20px;
  }
  .techniques-hero__info-box:first-child {
    padding-left: 20px;
  }
}

.section--stats-bar {
  background: #071a30;
  border-block: 1px solid rgba(14, 34, 57, 0.1);
  padding-block: 60px;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .stats-bar {
    grid-template-columns: 1fr;
  }
}

.stats-bar__item {
  padding: 10px 28px;
  text-align: left;
}
.stats-bar__item:not(:last-child) {
  border-right: 1px solid rgba(14, 34, 57, 0.1);
}
.stats-bar__item:nth-child(even) {
  color: #F86800;
}
@media (max-width: 768px) {
  .stats-bar__item {
    padding: 24px 20px;
  }
}

.stats-bar__val {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(2rem, 2.8vw, 2.6rem);
  font-weight: 800;
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}

.stats-bar__desc {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.55;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.stats-bar__source {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.technique {
  padding-block: 50px;
  border-top: 1px solid rgba(14, 34, 57, 0.08);
  position: relative;
  z-index: 1;
}
.technique:nth-child(even) {
  background: rgba(7, 26, 48, 0.5);
}
@media (max-width: 768px) {
  .technique {
    padding-block: 64px;
  }
}

.tech-header {
  margin-bottom: 48px;
}
.tech-header h2 {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
  color: #FFFFFF;
  margin-bottom: 18px;
}
.tech-header h2 em {
  font-style: normal;
  color: #F86800;
}
.tech-header__desc {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 768px) {
  .tech-header {
    margin-bottom: 36px;
  }
}

.tech-eyebrow {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F86800;
  margin-bottom: 16px;
}

.tech-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 1024px) {
  .tech-cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .tech-cards {
    grid-template-columns: 1fr;
  }
}

.tech-cards--2x2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 480px) {
  .tech-cards--2x2 {
    grid-template-columns: 1fr;
  }
}

.tech-card {
  background: rgba(7, 26, 48, 0.9);
  border: 1px solid rgba(14, 34, 57, 0.13);
  border-radius: 10px;
  padding: 28px 24px;
  transition: all 250ms ease;
}
.tech-card:hover {
  border-color: rgba(248, 104, 0, 0.4);
  background: #071a30;
}
.tech-card__icon {
  width: 40px;
  height: 40px;
  background: rgba(248, 104, 0, 0.12);
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.tech-card__title {
  font-family: "Unbounded", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  color: #FFFFFF;
  margin-bottom: 10px;
}
.tech-card__desc {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
}

.tech-alert {
  margin-top: 20px;
  background: rgb(45, 26, 11);
  border: 1px solid rgba(248, 104, 0, 0.22);
  border-radius: 10px;
  padding: 24px 28px;
}
.tech-alert__label {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #F86800;
  margin-bottom: 10px;
}
.tech-alert__text {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.6);
}
.tech-alert__text em {
  font-style: italic;
  color: #FFFFFF;
}

.section--process {
  padding-block: 50px;
  border-top: 1px solid rgba(14, 34, 57, 0.08);
}
@media (max-width: 768px) {
  .section--process {
    padding-block: 64px;
  }
}

.process-title {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: #FFFFFF;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .process-title {
    margin-bottom: 32px;
  }
}

.process-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 768px) {
  .process-row {
    grid-template-columns: 1fr;
  }
}

.process-row__step {
  background: rgba(7, 26, 48, 0.9);
  border: 1px solid rgba(14, 34, 57, 0.1);
  border-radius: 10px;
  padding: 32px 28px;
  transition: background 250ms ease;
}
.process-row__step:hover {
  background: #071a30;
}
.process-row__step:hover .process-row__num {
  color: #F86800;
  transition: color 0.3s ease;
}

.process-row__num {
  font-family: "Unbounded", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-bottom: 10px;
}

.process-row__icon {
  width: 36px;
  height: 36px;
  background: rgba(248, 104, 0, 0.12);
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.process-row__title {
  font-family: "Unbounded", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.process-row__desc {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
}

.section--demarche-hero {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding-top: 100px;
  padding-bottom: 72px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .section--demarche-hero {
    min-height: 36vh;
    padding-top: 80px;
    padding-bottom: 56px;
  }
}

.demarche-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #F86800;
  margin-bottom: 22px;
  margin-top: 22px;
}

.demarche-hero__title {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  font-weight: 800;
  line-height: 1.06;
  color: #FFFFFF;
  margin-bottom: 20px;
}
.demarche-hero__title em {
  font-style: normal;
  color: #F86800;
}
@media (max-width: 480px) {
  .demarche-hero__title {
    font-size: 26px;
  }
}

.demarche-hero__desc {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  max-width: 620px;
}

.section--demarche-steps {
  padding-block: 60px;
}

.demarche-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.demarche-step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  align-items: start;
  background: rgba(7, 26, 48, 0.9);
  border: 1px solid rgba(217, 217, 217, 0.08);
  border-radius: 10px;
  padding: 40px 48px;
  transition: border-color 250ms ease;
}
.demarche-step:hover {
  border-color: rgba(248, 104, 0, 0.28);
}
.demarche-step:hover .demarche-step__number {
  color: #F86800;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .demarche-step {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 28px 24px;
  }
}

.demarche-step__number {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(3.5rem, 5vw, 5.5rem);
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.1);
  user-select: none;
}
@media (max-width: 768px) {
  .demarche-step__number {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.15);
  }
}

.demarche-step__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
}

.demarche-step__title {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 700;
  line-height: 1.3;
  color: #FFFFFF;
}

.demarche-step__desc {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.72;
}

.section--rapport {
  padding-block: 60px;
  background: rgba(7, 26, 48, 0.55);
  border-block: 1px solid rgba(217, 217, 217, 0.07);
  position: relative;
}

.rapport__title {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
  color: #FFFFFF;
  margin-top: 12px;
  margin-bottom: 24px;
}
.rapport__title em {
  font-style: normal;
  color: #F86800;
}

.rapport__lead {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.65;
  color: #FFFFFF;
  max-width: 760px;
  margin-bottom: 16px;
}

.rapport__desc {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  max-width: 760px;
  margin-bottom: 56px;
}

.rapport-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(217, 217, 217, 0.1);
  padding-top: 40px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .rapport-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .rapport-stats {
    grid-template-columns: 1fr;
  }
}

.rapport-stat {
  padding: 10px 28px;
  text-align: left;
}
.rapport-stat:not(:last-child) {
  border-right: 1px solid rgba(217, 217, 217, 0.08);
}
@media (max-width: 1024px) {
  .rapport-stat:nth-child(even) {
    border-right: none;
  }
  .rapport-stat:nth-child(1), .rapport-stat:nth-child(2) {
    padding-bottom: 32px;
  }
  .rapport-stat:nth-child(3), .rapport-stat:nth-child(4) {
    padding-top: 32px;
    border-top: 1px solid rgba(217, 217, 217, 0.08);
  }
}
@media (max-width: 480px) {
  .rapport-stat {
    padding: 20px 0;
    border-right: none;
  }
  .rapport-stat:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(217, 217, 217, 0.08);
  }
}

.rapport-stat__val {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(2rem, 2.8vw, 2.6rem);
  font-weight: 800;
  line-height: 1;
  display: block;
  color: #FFFFFF;
  margin-bottom: 10px;
}
.rapport-stat:nth-child(even) .rapport-stat__val {
  color: #F86800;
}

.rapport-stat__desc {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.55;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.rapport-stat__source {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.section--contact {
  padding-bottom: 90px;
}

.contact__header {
  margin-bottom: 40px;
  padding-top: 60px;
}
.contact__header .eyebrow {
  margin-bottom: 12px;
}

.contact__title {
  font-family: "Unbounded", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 16px;
}
.contact__title .text-accent {
  color: #F86800;
}

.contact__subtitle {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .contact-form__row {
    grid-template-columns: 1fr;
  }
}
.contact-form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.contact-form__label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.contact-form__label .required {
  color: #F86800;
  margin-left: 3px;
}
.contact-form__input, .contact-form__select, .contact-form__textarea {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  background-color: #071A30;
  border: 1px solid rgba(217, 217, 217, 0.2);
  border-radius: 5px;
  color: #FFFFFF;
  padding: 14px 16px;
  width: 100%;
  transition: border-color 250ms ease;
}
.contact-form__input:focus-visible, .contact-form__select:focus-visible, .contact-form__textarea:focus-visible {
  outline: 2px solid #F86800;
  outline-offset: 3px;
  border-radius: 5px;
}
.contact-form__input::placeholder, .contact-form__select::placeholder, .contact-form__textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.contact-form__input:hover, .contact-form__select:hover, .contact-form__textarea:hover {
  border-color: rgba(217, 217, 217, 0.3);
}
.contact-form__input:focus, .contact-form__select:focus, .contact-form__textarea:focus {
  outline: none;
  border-color: #F86800;
}
.contact-form__select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%23ffffff99' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px 16px;
  padding-right: 44px;
}
.contact-form__select option {
  background-color: #071A30;
  color: #FFFFFF;
}
.contact-form__textarea {
  resize: vertical;
  min-height: 160px;
}
.contact-form__consent {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 32px;
}
.contact-form__checkbox {
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  background-color: #071A30;
  border: 1px solid rgba(217, 217, 217, 0.2);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  transition: border-color 250ms ease;
}
.contact-form__checkbox:focus-visible {
  outline: 2px solid #F86800;
  outline-offset: 3px;
  border-radius: 5px;
}
.contact-form__checkbox:checked {
  border-color: #F86800;
}
.contact-form__checkbox::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 9px;
  border: 2px solid #F86800;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 250ms ease;
}
.contact-form__checkbox:checked::after {
  opacity: 1;
}
.contact-form__consent-text {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}
.contact-form__consent-text a {
  color: #F86800;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 250ms ease;
}
.contact-form__consent-text a:hover {
  opacity: 0.8;
}
.contact-form__footer {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.contact-form__success[hidden] {
  display: none;
}
.contact-form__success {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background-color: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #4ade80;
  font-size: 13px;
  font-weight: 500;
}
.contact-form__success::before {
  content: "✓";
  font-weight: 700;
}

.section--blog-hero {
  padding-block: 60px 40px;
}
.section--blog-hero .eyebrow {
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .section--blog-hero {
    padding-block: 40px 30px;
  }
}
.section--blog-hero .container {
  padding-top: 60px;
}

.blog-hero__title {
  font-family: "Unbounded", sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  color: #FFFFFF;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .blog-hero__title {
    font-size: clamp(32px, 5vw, 56px);
  }
}
@media (max-width: 480px) {
  .blog-hero__title {
    font-size: 28px;
  }
}

.blog-hero__subtitle {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.section--blog-grid {
  padding-block: 0 60px;
}

.articles-grid--page {
  grid-template-columns: repeat(3, 360px);
  row-gap: 10px;
  margin-bottom: 50px;
}
@media (max-width: 1280px) {
  .articles-grid--page {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1024px) {
  .articles-grid--page {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .articles-grid--page {
    grid-template-columns: 1fr;
  }
}

.blog-pagination {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.blog-pagination__pages {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.blog-pagination__arrow,
.blog-pagination__page {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 5px;
  border: 1px solid rgba(217, 217, 217, 0.2);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: rgba(255, 255, 255, 0.6);
  transition: all 250ms ease;
}
.blog-pagination__arrow:hover,
.blog-pagination__page:hover {
  border-color: rgba(217, 217, 217, 0.45);
  color: #FFFFFF;
}

.blog-pagination__page.is-active {
  background-color: #F86800;
  border-color: #F86800;
  color: #FFFFFF;
}

.blog-pagination__arrow {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.article-hero {
  width: 100%;
  height: 480px;
  overflow: hidden;
  background-color: rgba(7, 26, 48, 0.6);
}
.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .article-hero {
    height: 280px;
  }
}

.article-hero__caption {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  padding: 10px 190px;
  margin-inline: auto;
  max-width: 1495px;
}
@media (max-width: 1280px) {
  .article-hero__caption {
    padding-inline: 40px;
  }
}
@media (max-width: 768px) {
  .article-hero__caption {
    padding-inline: 20px;
  }
}

.article-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  align-items: start;
  padding-block: 60px;
}
@media (max-width: 1024px) {
  .article-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.article-toc {
  position: sticky;
  top: 100px;
}
@media (max-width: 1024px) {
  .article-toc {
    position: static;
    margin-bottom: 40px;
    padding: 20px;
    border: 1px solid rgba(217, 217, 217, 0.2);
    border-radius: 5px;
    background-color: rgba(7, 26, 48, 0.4);
  }
}

.article-toc__label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  color: #F86800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  display: block;
}

.article-toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.article-toc__item {
  width: 100%;
}

.article-toc__link {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.6);
  padding: 7px 0 7px 12px;
  border-left: 2px solid rgba(217, 217, 217, 0.2);
  transition: all 250ms ease;
}
.article-toc__link:hover {
  color: #FFFFFF;
  border-left-color: rgba(217, 217, 217, 0.45);
}
.article-toc__link.is-active {
  color: #FFFFFF;
  border-left-color: #F86800;
  font-weight: 500;
}

.article-content {
  min-width: 0;
}

.article-meta {
  margin-bottom: 40px;
}
.article-meta .eyebrow {
  margin-bottom: 16px;
}

.article__title {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.article__date-author {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  gap: 12px;
}
.article__date-author time {
  color: rgba(255, 255, 255, 0.6);
}
.article__date-author span {
  color: #F86800;
}

.article-body h2 {
  font-family: "Unbounded", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  color: #FFFFFF;
  margin-top: 52px;
  margin-bottom: 20px;
}
.article-body h3 {
  font-family: "Unbounded", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  color: #FFFFFF;
  margin-top: 36px;
  margin-bottom: 14px;
}
.article-body p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}
.article-body ul, .article-body ol {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  padding-left: 20px;
  margin-bottom: 20px;
  list-style: display;
}
.article-body ul li, .article-body ol li {
  margin-bottom: 8px;
}
.article-body a {
  color: #F86800;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 250ms ease;
}
.article-body a:hover {
  color: rgba(248, 104, 0, 0.8);
}
.article-body strong {
  font-weight: 600;
  color: #FFFFFF;
}
.article-body blockquote {
  border-left: 3px solid #F86800;
  padding: 16px 20px;
  margin-block: 28px;
  background-color: rgba(7, 26, 48, 0.5);
  border-radius: 0 5px 5px 0;
}
.article-body blockquote p {
  font-style: italic;
  color: #FFFFFF;
  margin-bottom: 0;
}

/* ---- Page générique (mentions légales, politique de confidentialité, etc.) ---- */
.section--page-hero {
  padding-top: 80px;
  padding-bottom: 40px;
}
.page-hero__title {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: #FFFFFF;
  margin-top: 8px;
  margin-bottom: 0;
}
.section--page-body {
  padding-top: 0;
  padding-bottom: 100px;
}

.article-intro {
  border-left: 3px solid #F86800;
  padding: 16px 20px;
  margin-bottom: 32px;
  background-color: rgba(248, 104, 0, 0.06);
  border-radius: 0 5px 5px 0;
}
.article-intro p {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: #FFFFFF;
  margin-bottom: 0;
}

.article-blockquote {
  border-left: 3px solid #F86800;
  padding: 20px 24px;
  margin-block: 32px;
  background-color: rgba(7, 26, 48, 0.5);
  border-radius: 0 5px 5px 0;
}
.article-blockquote p {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
  color: #FFFFFF;
  font-style: italic;
  margin-bottom: 8px;
}
.article-blockquote cite {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  color: rgba(255, 255, 255, 0.6);
  font-style: normal;
}

.article-note {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 5px;
  margin-block: 28px;
  border: 1px solid;
}
.article-note__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  font-size: 16px;
  line-height: 1;
}
.article-note__body p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  margin-bottom: 0;
}
.article-note--info {
  background-color: rgba(14, 34, 57, 0.8);
  border-color: rgba(14, 34, 57, 0.8);
}
.article-note--info .article-note__body p {
  color: rgba(255, 255, 255, 0.85);
}
.article-note--warning {
  background: rgb(45, 26, 11);
  border-color: rgba(248, 104, 0, 0.3);
}
.article-note--warning .article-note__body p {
  color: rgba(255, 255, 255, 0.85);
}

.article-img {
  display: block;
  margin-block: 32px;
}
.article-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
  background-color: rgba(7, 26, 48, 0.6);
}
.article-img figcaption {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin-top: 10px;
}

.article-img--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-block: 32px;
}
.article-img--2col figure img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  border-radius: 5px;
  background-color: rgba(7, 26, 48, 0.6);
}
.article-img--2col figure figcaption {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin-top: 8px;
}
@media (max-width: 480px) {
  .article-img--2col {
    grid-template-columns: 1fr;
  }
}

.article-img--float-right {
  float: right;
  width: 42%;
  margin: 0 0 20px 28px;
}
.article-img--float-right img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
  background-color: rgba(7, 26, 48, 0.6);
}
.article-img--float-right figcaption {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .article-img--float-right {
    float: none;
    width: 100%;
    margin: 0 0 20px 0;
  }
}

.article-clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.article-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 32px;
  padding-top: 40px;
  margin-top: 52px;
  border-top: 1px solid rgba(217, 217, 217, 0.2);
}

.article-author {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding: 24px 28px;
  border: 1px solid rgba(217, 217, 217, 0.2);
  border-radius: 5px;
  background-color: rgba(7, 26, 48, 0.4);
}

.article-author__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(7, 26, 48, 0.8);
  flex-shrink: 0;
  overflow: hidden;
}
.article-author__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-author__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
}

.article-author__name {
  font-family: "Unbounded", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
  color: #FFFFFF;
}

.article-author__role {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  color: #F86800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.article-share {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 14px;
}

.article-share__label {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.article-share__buttons {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.article-share__btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 5px;
  border: 1px solid rgba(217, 217, 217, 0.2);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  color: #FFFFFF;
  transition: all 250ms ease;
  cursor: pointer;
  background: transparent;
}
.article-share__btn:hover {
  border-color: rgba(217, 217, 217, 0.45);
  background-color: rgba(255, 255, 255, 0.04);
}
.article-share__btn svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.section--article-related {
  padding-block: 60px;
}
.section--article-related .section__header--inline {
  margin-bottom: 40px;
}
.section--article-related .articles-grid {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
  .section--article-related .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .section--article-related .articles-grid {
    grid-template-columns: 1fr;
  }
}

.section--about-hero {
  padding-top: 100px;
  padding-bottom: 72px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .section--about-hero {
    padding-top: 80px;
    padding-bottom: 56px;
  }
}

.about-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #F86800;
  margin-bottom: 22px;
  margin-top: 22px;
}

.about-hero__title {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  font-weight: 800;
  line-height: 1.06;
  color: #FFFFFF;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .about-hero__title {
    font-size: 26px;
  }
}

.about-hero__desc {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  max-width: 620px;
  margin-bottom: 48px;
}

.about-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 480px) {
  .about-hero__meta {
    flex-direction: column;
  }
}

.about-meta__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  background: rgba(7, 26, 48, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(217, 217, 217, 0.2);
  border-radius: 5px;
  padding: 14px 20px;
  flex: 1;
  min-width: 200px;
}
@media (max-width: 480px) {
  .about-meta__item {
    min-width: 0;
  }
}

.about-meta__icon {
  width: 40px;
  height: 40px;
  background: rgba(248, 104, 0, 0.3);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  flex-shrink: 0;
}

.about-meta__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 4px;
}

.about-meta__label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
}

.about-meta__value {
  font-family: "Unbounded", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
}

.section--about-mission {
  padding-block: 60px;
}

.about-mission__body {
  max-width: 760px;
}
.about-mission__body p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.75;
}
.about-mission__body p + p {
  margin-top: 18px;
}
.about-mission__body strong {
  color: #FFFFFF;
  font-weight: 600;
}

.about-mission__subtitle {
  font-family: "Unbounded", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #FFFFFF;
  margin-top: 36px;
  margin-bottom: 4px;
}

.about-project__callout {
  max-width: 760px;
  margin-top: 32px;
  padding: 22px 28px;
  border-left: 3px solid #F86800;
  background: rgb(45, 26, 11);
  border-radius: 0 5px 5px 0;
}

.about-project__callout-label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #F86800;
  margin-bottom: 10px;
}

.about-project__callout-text {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: #FFFFFF;
}

.section--about-team {
  padding-block: 60px;
}

.team-photo {
  width: 100%;
  margin-block: 40px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(217, 217, 217, 0.2);
}
.team-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.team-photo--placeholder {
  min-height: 420px;
  background: rgba(7, 26, 48, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-photo--placeholder::after {
  content: "Photo de groupe — à remplacer";
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .team-photo--placeholder {
    min-height: 240px;
  }
}

.section--about-differents {
  padding-block: 60px;
  background: rgba(7, 26, 48, 0.55);
  border-block: 1px solid rgba(217, 217, 217, 0.07);
}

.differents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 768px) {
  .differents-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .differents-grid {
    grid-template-columns: 1fr;
  }
}

.differents-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
  background: rgba(7, 26, 48, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(217, 217, 217, 0.2);
  border-radius: 5px;
  padding: 32px 28px;
  transition: border-color 250ms ease;
  position: relative;
  overflow: hidden;
}
.differents-card::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at 20% 30%, rgba(248, 104, 0, 0.2), transparent 70%);
  opacity: 0;
  transition: opacity 250ms ease;
  pointer-events: none;
}
.differents-card:hover {
  border-color: rgba(217, 217, 217, 0.45);
}
.differents-card:hover::before {
  opacity: 1;
}

.differents-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(248, 104, 0, 0.3);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.differents-card__title {
  font-family: "Unbounded", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: #FFFFFF;
}

.differents-card__text {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.72;
}

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

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  padding: 10px 18px;
  background: #F86800;
  color: #FFFFFF;
  border-radius: 5px;
  font-weight: 600;
  z-index: 200;
  transition: top 250ms ease;
}
.skip-link:focus {
  top: 16px;
}

/*# sourceMappingURL=main.css.map */
