:root {
  --white: #ffffff;
  --paper: #f3f6f9;
  --mist: #e8f2fa;
  --mist-deep: #d4e6f5;
  --ink: #0e0e10;
  --ink-soft: #2a2a2e;
  --muted: #5a6570;
  --line: #dce5ee;
  --blue: #0078d4;
  --blue-hot: #1a8fff;
  --blue-deep: #005ba8;
  --blue-ink: #0a4a7a;
  --dark: #0c2a45;
  --dark-2: #0e3554;
  --shadow: 0 20px 50px rgba(0, 90, 160, 0.1);
  --shadow-soft: 0 10px 28px rgba(0, 90, 160, 0.06);
  --r: 28px;
  --r-sm: 18px;
  --pill: 999px;
  --font: "Montserrat", system-ui, sans-serif;
  --pad: clamp(18px, 4vw, 56px);
  --max: 1240px;
  --nav-h: 84px;
}

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

html,
body {
  margin: 0;
  padding: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

::selection {
  background: var(--blue);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 99px;
  border: 2px solid var(--white);
}

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  background: var(--blue);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 200;
}
.skip:focus {
  top: 12px;
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--blue);
  z-index: 200;
}

.wrap {
  width: min(var(--max), calc(100% - var(--pad) * 2));
  margin-inline: auto;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: var(--pill);
  padding: 12px 12px 12px 20px;
  font-size: 13px;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 220ms ease;
  will-change: transform;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary:hover {
  box-shadow: 0 12px 32px rgba(0, 120, 212, 0.35);
}
.btn-ico {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
  font-size: 14px;
  line-height: 1;
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
}
.btn:hover .btn-ico {
  transform: rotate(45deg) scale(1.06);
}
.btn-primary {
  background: var(--blue);
  color: #fff;
}
.btn-primary:hover {
  background: var(--blue-deep);
}
.btn-primary .btn-ico {
  background: #fff;
  color: var(--blue);
}
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover {
  background: var(--blue);
}
.btn-dark .btn-ico {
  background: #fff;
  color: var(--ink);
}
.btn-light {
  background: #fff;
  color: var(--ink);
}
.btn-light:hover {
  background: var(--blue);
  color: #fff;
}
.btn-light .btn-ico {
  background: var(--ink);
  color: #fff;
}
.btn-light:hover .btn-ico {
  background: #fff;
  color: var(--blue);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
  padding: 12px 18px;
}
.btn-ghost:hover {
  background: #fff;
  color: var(--ink);
}
.btn-ghost-dark {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 12px 18px;
  border-radius: var(--pill);
}
.play-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue-hot);
  box-shadow: 0 0 0 0 rgba(26, 143, 255, 0.55);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  70% {
    box-shadow: 0 0 0 10px rgba(26, 143, 255, 0);
  }
}

.circle-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  border: 0;
  font-size: 16px;
  flex-shrink: 0;
  transition: background 180ms ease, transform 180ms ease;
}
.circle-btn:hover {
  background: var(--ink);
  transform: translateY(-1px);
}
.circle-btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.circle-btn--dark {
  background: var(--ink);
  color: #fff;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: grid;
  place-items: center;
}
.icon-btn svg {
  width: 18px;
  height: 18px;
}

.sec-mark {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.sec-mark--light {
  color: rgba(255, 255, 255, 0.55);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-weight: 600;
  font-size: 14px;
  color: var(--blue);
}
.text-link span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
}

/* ——— HERO ——— */
.hero {
  position: relative;
  min-height: 100svh;
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 0;
  padding-bottom: 28px;
  margin-top: calc(var(--nav-h) * -1);
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: none;
  image-rendering: auto;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(6, 18, 32, 0.18) 0%,
      transparent 28%,
      transparent 52%,
      rgba(6, 18, 32, 0.45) 78%,
      rgba(6, 18, 32, 0.78) 100%
    ),
    linear-gradient(
      90deg,
      rgba(6, 18, 32, 0.55) 0%,
      rgba(6, 18, 32, 0.22) 38%,
      transparent 68%
    );
  pointer-events: none;
}

.topnav {
  position: sticky;
  top: 0;
  z-index: 60;
  width: 100%;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  box-shadow: none;
  backdrop-filter: none;
  transition:
    background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease,
    backdrop-filter 0.4s ease,
    color 0.3s ease;
}
.topnav-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  min-height: var(--nav-h);
  padding: 12px var(--pad);
}
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.brand-plate {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff;
  padding: 7px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transition: box-shadow 0.35s ease, background 0.35s ease;
  overflow: hidden;
}
.brand-logo,
.brand-plate img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
}
.brand-plate--footer {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
  overflow: visible;
}
.brand-plate--footer img {
  width: auto;
  height: 108px;
}
.topnav-links {
  display: flex;
  gap: clamp(16px, 2.4vw, 32px);
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
}
.topnav-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.92);
  transition: color 160ms ease;
}
.topnav-links a:hover {
  color: #fff;
}
.topnav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.topnav .icon-btn {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}
.topnav .icon-btn:hover {
  background: rgba(255, 255, 255, 0.18);
}
.topnav .btn-light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.topnav .btn-light .btn-ico {
  background: #fff;
  color: var(--blue);
}
.topnav .btn-light:hover {
  background: #fff;
  color: var(--ink);
}
.topnav .btn-light:hover .btn-ico {
  background: var(--blue);
  color: #fff;
}
.topnav .nav-toggle span {
  background: #fff;
}

/* Scrolled: solid container */
.topnav.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 10px 36px rgba(14, 14, 16, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.topnav.is-scrolled .topnav-links a {
  color: var(--ink-soft);
}
.topnav.is-scrolled .topnav-links a:hover {
  color: var(--blue);
}
.topnav.is-scrolled .brand-plate {
  box-shadow: 0 4px 16px rgba(0, 90, 160, 0.12);
}
.topnav.is-scrolled .icon-btn {
  color: var(--ink);
  border-color: var(--line);
  background: transparent;
}
.topnav.is-scrolled .btn-light {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.topnav.is-scrolled .btn-light .btn-ico {
  background: #fff;
  color: var(--ink);
}
.topnav.is-scrolled .btn-light:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.topnav.is-scrolled .btn-light:hover .btn-ico {
  background: #fff;
  color: var(--blue);
}
.topnav.is-scrolled .nav-toggle span {
  background: #fff;
}
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.topnav.is-scrolled .nav-toggle {
  background: var(--ink);
  border-color: var(--ink);
}
.nav-toggle span {
  display: block;
  width: 14px;
  height: 1.5px;
  background: #fff;
}

.hero-body {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  flex: 1;
  align-content: center;
  padding-top: calc(var(--nav-h) + 20px);
}
.hero-copy {
  max-width: 720px;
}
.hero-copy h1,
.hero-title {
  margin: 0;
  font-weight: 800;
  font-size: clamp(3.2rem, 8vw, 6.2rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.hero-title .line {
  display: block;
  overflow: hidden;
}
.hero-title .line-inner {
  display: block;
  transform: translateY(110%);
  opacity: 0;
}
.hero-lead,
.hero-ctas,
.hero-foot {
  opacity: 0;
}
.hero.is-ready .hero-title .line-inner {
  animation: lineUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero.is-ready .hero-title .line:nth-child(1) .line-inner {
  animation-delay: 0.12s;
}
.hero.is-ready .hero-title .line:nth-child(2) .line-inner {
  animation-delay: 0.24s;
}
.hero.is-ready .hero-title .line:nth-child(3) .line-inner {
  animation-delay: 0.36s;
}
.hero.is-ready .hero-lead {
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.55s both;
}
.hero.is-ready .hero-ctas {
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
}
.hero.is-ready .hero-foot {
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.85s both;
}
@keyframes lineUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-lead {
  margin: 22px 0 28px;
  font-weight: 500;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  max-width: 32ch;
  color: rgba(255, 255, 255, 0.86);
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ——— Reveal / Parallax ——— */
.reveal {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(36px);
    transition:
      opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal.is-in {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-stagger > *.reveal-child {
    opacity: 0;
    transform: translateY(28px);
    transition:
      opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal-stagger.is-in > *.reveal-child {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-stagger.is-in > *.reveal-child:nth-child(1) { transition-delay: 0.05s; }
  .reveal-stagger.is-in > *.reveal-child:nth-child(2) { transition-delay: 0.12s; }
  .reveal-stagger.is-in > *.reveal-child:nth-child(3) { transition-delay: 0.19s; }
  .reveal-stagger.is-in > *.reveal-child:nth-child(4) { transition-delay: 0.26s; }
}

[data-parallax] {
  will-change: transform;
}

.stat b {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.filiere-card,
.exp-card,
.media-card .frame {
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease;
}
.filiere-card:hover,
.exp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.media-card .frame:hover {
  transform: translateY(-4px) scale(1.01);
}

.hero-foot {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}
.pillars {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.pillars li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}
.pillars svg {
  width: 18px;
  height: 18px;
  opacity: 0.9;
}
.hero-pager {
  display: flex;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
}
.hero-pager .is-active {
  color: #fff;
}

/* ——— ABOUT ——— */
.about {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 48px;
  align-items: center;
  padding: 100px 0 80px;
}
.about-copy h2 {
  margin: 0 0 18px;
  font-weight: 800;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.about-copy > p:not(.sec-mark) {
  margin: 0;
  color: var(--muted);
  max-width: 38ch;
}
.about-media {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  min-height: 380px;
  background: var(--dark);
}
.about-media video,
.about-media .cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-media .cover {
  opacity: 0.85;
}
.stat-overlay {
  position: absolute;
  inset: auto 0 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}
.stat-overlay > div {
  padding: 18px 14px;
  background: rgba(10, 12, 14, 0.55);
  color: #fff;
  text-align: center;
}
.stat-overlay b {
  display: block;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
}
.stat-overlay span {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.75;
}

/* ——— VISION / DUO ——— */
.vision {
  display: grid;
  grid-template-columns: 0.85fr 1.25fr;
  gap: 40px;
  align-items: end;
  padding: 40px 0 80px;
}
.step-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.step-line i {
  flex: 1;
  height: 1px;
  background: var(--line);
  max-width: 80px;
}
.vision-left h2 {
  margin: 0 0 28px;
  font-weight: 800;
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: 12ch;
}
.duo {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}
.media-card--offset {
  margin-top: -48px;
}
.media-card-head {
  margin-bottom: 12px;
}
.media-card-head h3 {
  margin: 0;
  font-weight: 700;
  font-size: 1.15rem;
}
.frame {
  position: relative;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--dark);
  isolation: isolate;
}
.frame video,
.frame .cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.frame .cover {
  opacity: 0.8;
  z-index: 1;
}
.frame-ui {
  position: relative;
  z-index: 2;
  height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: #fff;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.58));
}
.duo article:first-child .frame-ui {
  height: 420px;
}
.frame-ui p {
  margin: 0 0 8px;
  font-weight: 600;
  font-size: 0.98rem;
  max-width: 16ch;
}
.frame-ui a {
  font-size: 13px;
  opacity: 0.9;
}
.frame-ui a:hover {
  color: var(--blue-hot);
}
.num {
  position: absolute;
  right: 14px;
  bottom: 4px;
  z-index: 2;
  font-weight: 800;
  font-size: clamp(3.8rem, 6vw, 5.6rem);
  line-height: 0.8;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: -0.04em;
  pointer-events: none;
}

/* ——— FILIERES (mist blue — charte) ——— */
.filieres {
  background:
    radial-gradient(900px 420px at 10% 0%, rgba(26, 143, 255, 0.12), transparent 60%),
    radial-gradient(700px 380px at 90% 100%, rgba(0, 120, 212, 0.1), transparent 55%),
    var(--mist);
  color: var(--ink);
  padding: 80px 0;
}
.filieres-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: end;
  margin-bottom: 36px;
}
.filieres-head h2 {
  margin: 0;
  font-weight: 800;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--blue-ink);
}
.filieres .sec-mark--light {
  color: var(--blue);
}
.carousel-nav {
  display: flex;
  gap: 10px;
}
.filieres .circle-btn--ghost {
  background: var(--white);
  color: var(--blue);
  border: 1px solid var(--mist-deep);
  box-shadow: var(--shadow-soft);
}
.filieres .circle-btn--ghost:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.filieres-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.filiere-card {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 120, 212, 0.1);
  box-shadow: var(--shadow-soft);
}
.filiere-media {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.filiere-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}
.filiere-card:hover .filiere-media img {
  transform: scale(1.04);
}
.filiere-body {
  position: relative;
  padding: 20px 20px 22px;
  flex: 1;
}
.filiere-body h3 {
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--blue-ink);
}
.filiere-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 13px;
}
.filiere-body li + li {
  margin-top: 4px;
}
.filiere-body .circle-btn {
  position: absolute;
  right: 16px;
  bottom: 16px;
}

/* ——— MANIFESTO (Haven-inspired) ——— */
.manifesto {
  padding: 88px 0 110px;
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(0, 120, 212, 0.05), transparent 55%),
    var(--paper);
}
.manifesto-top {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(240px, 0.78fr);
  gap: clamp(28px, 3.5vw, 48px);
  align-items: stretch;
  margin-bottom: clamp(48px, 6vw, 72px);
}
.manifesto-pills {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.pill-card {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  aspect-ratio: 3 / 4.2;
  min-height: 300px;
  isolation: isolate;
  box-shadow: var(--shadow-soft);
}
.pill-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.pill-card:hover img {
  transform: scale(1.07);
}
.pill-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 42%,
    rgba(6, 24, 42, 0.55) 72%,
    rgba(6, 24, 42, 0.88) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.pill-meta {
  position: absolute;
  left: 18px;
  right: 14px;
  bottom: 20px;
  z-index: 2;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pill-meta span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  opacity: 0.9;
}
.pill-meta strong {
  font-size: clamp(0.92rem, 1.1vw, 1.05rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.manifesto-aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 0 8px 4px;
}
.aside-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: lowercase;
  color: var(--ink);
}
.aside-label svg {
  color: var(--blue);
  flex-shrink: 0;
}
.aside-text {
  margin: 0;
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 26ch;
}
.aside-text em {
  font-style: normal;
  color: var(--muted);
  font-weight: 500;
}
.aside-proof {
  display: grid;
  grid-template-columns: 1.15fr auto;
  gap: 20px;
  margin-top: 32px;
  align-items: end;
  padding-top: 4px;
}
.avatars {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 10px;
}
.avatars img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid #fff;
  margin-left: -12px;
  box-shadow: 0 2px 10px rgba(0, 90, 160, 0.14);
}
.avatars img:first-of-type {
  margin-left: 0;
}
.avatars span {
  flex-basis: 100%;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: -0.01em;
}
.rating-score {
  display: flex;
  align-items: center;
  gap: 8px;
}
.rating-score b {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.rating .stars {
  color: #e8a317;
  letter-spacing: 1px;
  font-size: 11px;
  line-height: 1;
}
.rating p {
  margin: 6px 0 0;
  font-size: 12.5px;
  color: var(--muted);
}

.manifesto-bottom {
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1.72fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: stretch;
}
.manifesto-story {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding-bottom: 4px;
}
.manifesto-story h2 {
  margin: 0;
  font-weight: 800;
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: var(--ink);
  max-width: 11ch;
}
.manifesto-story hr {
  border: 0;
  border-top: 1px solid rgba(14, 14, 16, 0.14);
  margin: 24px 0 20px;
  max-width: 88px;
}
.manifesto-story > p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.65;
  max-width: 36ch;
}
.manifesto-nav {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 28px;
}
.circle-btn--outline {
  width: 44px;
  height: 44px;
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(14, 14, 16, 0.18);
}
.circle-btn--outline:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  transform: translateY(-1px);
}
.circle-btn--outline:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.manifesto-gallery {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.7fr;
  gap: 14px;
  height: clamp(300px, 34vw, 400px);
}
.gal {
  margin: 0;
  border-radius: 32px;
  overflow: hidden;
  height: 100%;
  background: var(--mist);
  box-shadow: var(--shadow-soft);
}
.gal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.35s ease;
}
.gal:hover img {
  transform: scale(1.045);
}
.gal img.is-swapping {
  opacity: 0.35;
}

/* ——— STATS ——— */
.stats {
  padding: 64px 0 80px;
  background: var(--white);
}
.stat {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.stat p {
  margin: 0;
  max-width: 44ch;
  color: var(--muted);
  font-size: 14px;
}
.stat b {
  display: block;
  font-weight: 800;
  font-size: clamp(2.8rem, 5.5vw, 4.6rem);
  letter-spacing: -0.04em;
  line-height: 0.9;
  white-space: nowrap;
  text-align: right;
}
.stat span {
  display: block;
  text-align: right;
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}

/* ——— EXPERIENCE ——— */
.experience {
  background:
    radial-gradient(800px 360px at 85% 20%, rgba(26, 143, 255, 0.16), transparent 60%),
    radial-gradient(700px 400px at 5% 90%, rgba(0, 120, 212, 0.1), transparent 55%),
    linear-gradient(165deg, #dceefb 0%, var(--mist) 45%, #eaf4fc 100%);
  padding: 88px 0;
  border-top: 1px solid var(--mist-deep);
  border-bottom: 1px solid var(--mist-deep);
}
.experience-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.25fr;
  gap: 40px;
  align-items: start;
}
.experience .sec-mark {
  color: var(--blue);
}
.experience-copy h2 {
  margin: 0 0 16px;
  font-weight: 800;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--blue-ink);
}
.experience-copy p:not(.sec-mark) {
  margin: 0;
  color: var(--muted);
  max-width: 34ch;
}
.exp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.exp-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 22px;
  padding: 22px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 120, 212, 0.14);
  box-shadow: var(--shadow-soft);
}
.exp-card svg {
  width: 28px;
  height: 28px;
  color: var(--blue);
  margin-bottom: 18px;
}
.exp-card h3 {
  margin: 0 0 8px;
  font-weight: 700;
  font-size: 1.05rem;
}
.exp-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  flex: 1;
}
.mini-arrow {
  margin-top: 16px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 12px;
  color: var(--ink);
}

/* ——— SPECIALIZE ——— */
.specialize {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  padding: 88px 0;
  align-items: stretch;
}
.specialize-copy {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  min-height: 460px;
}
.specialize-copy h2 {
  margin: 24px 0 auto;
  font-weight: 800;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  line-height: 1.25;
  letter-spacing: -0.03em;
}
.specialize-nav {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}
.specialize-media {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  min-height: 460px;
  background: #dfe7ee;
}
.specialize-media video,
.specialize-media .cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.specialize-media video {
  opacity: 0.35;
}

/* ——— FINALE ——— */
.finale {
  position: relative;
  min-height: 620px;
  height: 72svh;
  max-height: 860px;
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  padding: 72px 20px;
}
.finale-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.finale-media .cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  opacity: 1;
  transform: none;
}
.finale::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 48%, rgba(6, 18, 32, 0.42) 0%, transparent 72%),
    linear-gradient(180deg, rgba(6, 18, 32, 0.22) 0%, transparent 28%, transparent 58%, rgba(6, 18, 32, 0.55) 100%);
  pointer-events: none;
}
.finale-inner {
  position: relative;
  z-index: 2;
}
.finale h2 {
  margin: 0 0 28px;
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-shadow: 0 2px 28px rgba(6, 18, 32, 0.35);
}

/* ——— READY FOOTER CTA ——— */
.ready {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding: 40px 0 80px;
}
.ready-media {
  border-radius: var(--r);
  overflow: hidden;
  min-height: 360px;
}
.ready-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}
.ready-copy {
  position: relative;
  background:
    radial-gradient(600px 320px at 100% 0%, rgba(26, 143, 255, 0.45), transparent 55%),
    linear-gradient(145deg, var(--blue-deep) 0%, var(--blue) 55%, #1a8fff 100%);
  color: #fff;
  border-radius: var(--r);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.ready-copy h2 {
  margin: 0 0 14px;
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 3rem);
  letter-spacing: -0.03em;
}
.ready-copy > p {
  margin: 0 0 28px;
  max-width: 32ch;
  color: rgba(255, 255, 255, 0.88);
}
.ready-copy .btn-primary {
  background: #fff;
  color: var(--blue);
  align-self: flex-start;
}
.ready-copy .btn-primary .btn-ico {
  background: var(--blue);
  color: #fff;
}
.seal {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.seal svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: spin 18s linear infinite;
}
.seal text {
  fill: rgba(255, 255, 255, 0.85);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  font-family: var(--font);
}
.seal span {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 14px;
  z-index: 1;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ——— LEGAL ——— */
.legal {
  background: var(--mist);
  color: var(--muted);
  padding: 36px 0;
  border-top: 1px solid var(--mist-deep);
}
.legal-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.legal-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}
.legal-brand strong {
  display: block;
  color: var(--blue);
  font-size: 15px;
  letter-spacing: 0.08em;
}
.legal-brand p {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--muted);
}
.copyright {
  margin: 0;
  font-size: 12px;
  max-width: 42ch;
  color: var(--muted);
}

/* ——— DEMO ——— */
.demo {
  position: fixed;
  inset: 0;
  background: rgba(7, 8, 10, 0.5);
  z-index: 120;
  display: none;
  place-items: center;
  padding: 24px;
}
.demo.open {
  display: grid;
}
.demo-card {
  width: min(460px, 100%);
  background: var(--white);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.demo-card h2 {
  margin: 0 0 8px;
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: -0.03em;
}
.demo-card > p {
  margin: 0 0 20px;
  color: var(--muted);
}
.demo-card label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin: 0 0 6px;
}
.demo-card input,
.demo-card select,
.demo-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 14px;
  background: var(--paper);
  color: var(--ink);
  font-family: inherit;
  font-weight: 500;
}
.demo-card textarea {
  min-height: 90px;
  resize: vertical;
}
.demo-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

/* ——— RESPONSIVE ——— */
@media (max-width: 980px) {
  .topnav {
    position: sticky;
  }
  .topnav-inner {
    position: relative;
  }
  .topnav-links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: var(--pad);
    right: var(--pad);
    background: #fff;
    border-radius: 20px;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow);
    z-index: 70;
  }
  .topnav-links a {
    color: var(--ink-soft) !important;
  }
  .topnav.open .topnav-links {
    display: flex;
  }
  .topnav.open {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
  }
  .topnav.open .nav-toggle {
    background: var(--ink);
    border-color: var(--ink);
  }
  .topnav.open .nav-toggle span {
    background: #fff;
  }
  .topnav.open .btn-light {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
  }
  .nav-toggle {
    display: flex;
  }
  .topnav .icon-btn {
    display: none;
  }
  .hero-body,
  .about,
  .vision,
  .experience-inner,
  .specialize,
  .ready,
  .duo,
  .filieres-grid {
    grid-template-columns: 1fr;
  }
  .media-card--offset {
    margin-top: 0;
  }
  .hero-body {
    padding-top: 48px;
  }
  .manifesto-top,
  .manifesto-bottom {
    grid-template-columns: 1fr;
  }
  .manifesto-pills {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .pill-card {
    aspect-ratio: 3 / 4;
    min-height: 240px;
  }
  .manifesto-aside {
    padding: 0;
  }
  .aside-text {
    max-width: 42ch;
  }
  .aside-proof {
    max-width: 420px;
  }
  .manifesto-story h2 {
    max-width: 16ch;
  }
  .manifesto-gallery {
    height: 300px;
  }
  .filieres-head {
    grid-template-columns: 1fr;
  }
  .exp-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --nav-h: 72px;
  }
  .brand-plate {
    width: 50px;
    height: 50px;
    padding: 6px;
  }
  .brand-plate--footer {
    width: auto;
    height: auto;
    padding: 0;
  }
  .brand-plate--footer img {
    width: auto;
    height: 72px;
  }
  .topnav-inner {
    min-height: var(--nav-h);
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .topnav .btn-light {
    font-size: 0;
    gap: 0;
    padding: 8px;
  }
  .topnav .btn-light .btn-ico {
    margin: 0;
  }
  .hero-copy h1 {
    font-size: clamp(2.6rem, 14vw, 3.6rem);
  }
  .hero-foot {
    flex-direction: column;
    align-items: flex-start;
  }
  .exp-grid {
    grid-template-columns: 1fr;
  }
  .seal {
    display: none;
  }
  .manifesto {
    padding: 64px 0 80px;
  }
  .manifesto-pills {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .pill-card {
    aspect-ratio: 5 / 4;
    min-height: 220px;
    border-radius: 28px;
  }
  .aside-proof {
    grid-template-columns: 1.2fr auto;
    gap: 16px;
    align-items: end;
  }
  .manifesto-gallery {
    grid-template-columns: 1fr 1fr;
    height: auto;
    gap: 10px;
  }
  .gal--wide {
    grid-column: 1 / -1;
    height: 220px;
  }
  .gal:not(.gal--wide) {
    height: 180px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .play-dot,
  .seal svg,
  .hero-title .line-inner,
  .hero.is-ready .hero-lead,
  .hero.is-ready .hero-ctas,
  .hero.is-ready .hero-foot {
    animation: none;
    opacity: 1;
    transform: none;
  }
  video.loop {
    display: none;
  }
  [data-parallax] {
    transform: none !important;
  }
}
