:root {
  --ink: #080b13;
  --panel: #121722;
  --cyan: #17d8e6;
  --orange: #ff6333;
  --yellow: #ffd43b;
  --white: #f7f4ec;
  --coral: #f04454;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--ink);
  color: #fff;
  font:
    400 16px/1.6 Inter,
    sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
.topbar {
  height: 82px;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  z-index: 20;
  width: 100%;
  border-bottom: 1px solid #ffffff26;
}
.brand {
  display: flex;
  flex-direction: column;
  font: 600 11px/0.9 Poppins;
  letter-spacing: 0.07em;
}
.brand strong {
  font-size: 24px;
  color: var(--orange);
  letter-spacing: -0.04em;
}
.topbar nav {
  display: flex;
  gap: 32px;
  font: 600 13px Poppins;
}
.topbar nav a:hover {
  color: var(--cyan);
}
.top-cta,
.button {
  background: var(--orange);
  color: var(--ink);
  padding: 15px 24px;
  border-radius: 99px;
  font: 600 13px Poppins;
}
.hero {
  min-height: 930px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 145px 5vw 105px;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  background: url("/assets/collectionfest-hero.png") center/cover;
  transform: scale(1.02);
  animation: breathe 12s ease-in-out infinite alternate;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #080b13 7%, #080b13ec 47%, #080b132c 78%),
    linear-gradient(0deg, #080b13 0%, transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
}
.kicker,
.section-label {
  font: 600 12px Poppins;
  letter-spacing: 0.14em;
  color: var(--cyan);
}
.hero h1 {
  font: 800 clamp(64px, 8.4vw, 132px)/0.8 Poppins;
  letter-spacing: -0.075em;
  margin: 30px 0;
}
.hero h1 em {
  font-style: normal;
  color: var(--orange);
}
.hero-content > p:not(.kicker) {
  max-width: 700px;
  color: #d5d9df;
  font-size: 19px;
}
.hero .button {
  display: inline-flex;
  gap: 55px;
  margin-top: 25px;
  transition: 0.25s;
}
.hero .button:hover {
  transform: translateY(-4px);
  background: var(--yellow);
}
.date-lock {
  position: absolute;
  z-index: 2;
  right: 5vw;
  bottom: 90px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--yellow);
}
.date-lock strong {
  font: 800 64px/0.8 Poppins;
  letter-spacing: -0.07em;
}
.date-lock span {
  font: 600 12px/1.4 Poppins;
  border-left: 1px solid var(--yellow);
  padding-left: 15px;
}
.inventory {
  position: absolute;
  z-index: 3;
  right: 7vw;
  top: 125px;
  background: var(--yellow);
  color: var(--ink);
  padding: 22px 27px;
  width: 165px;
  transform: rotate(4deg);
  font: 600 10px Poppins;
  box-shadow: 10px 10px 0 var(--orange);
}
.inventory b {
  font-size: 22px;
  display: block;
  margin: 7px 0;
}
.inventory small {
  font-size: 9px;
}
.ticker {
  overflow: hidden;
  background: var(--yellow);
  color: var(--ink);
  padding: 14px 0;
  white-space: nowrap;
  font: 800 14px Poppins;
}
.ticker div {
  width: max-content;
  animation: marquee 20s linear infinite;
}
.ticker i {
  color: var(--orange);
  font-style: normal;
  margin: 0 22px;
}
.proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--orange);
  color: var(--ink);
}
.proof div {
  padding: 50px 4vw;
  border-right: 1px solid #080b13;
  display: flex;
  flex-direction: column;
}
.proof strong {
  font: 800 clamp(54px, 6vw, 92px)/0.85 Poppins;
  letter-spacing: -0.07em;
}
.proof sup {
  font-size: 0.35em;
  color: white;
}
.proof span {
  font: 600 12px Poppins;
  margin-top: 17px;
}
.section {
  padding: 115px 5vw;
}
.section h2,
.moments h2 {
  font: 800 clamp(48px, 6vw, 92px)/0.88 Poppins;
  letter-spacing: -0.065em;
  margin: 0;
}
.section h2 span,
.moments h2 span {
  color: var(--orange);
}
.comeback {
  background: var(--white);
  color: var(--ink);
}
.comeback .section-label {
  color: var(--orange);
}
.comeback-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 8vw;
  margin-top: 50px;
}
.copy p {
  font-size: 18px;
  line-height: 1.8;
}
.copy blockquote {
  font: 800 22px/1.45 Poppins;
  margin: 35px 0 0;
  border-left: 8px solid var(--cyan);
  padding: 5px 0 5px 24px;
}
.moments {
  padding: 115px 5vw;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 7vw;
  background: linear-gradient(130deg, #080b13 0%, #101827 100%);
}
.moment-intro h2 {
  font-size: clamp(44px, 5.2vw, 78px);
  margin-top: 28px;
}
.moment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.moment-grid article {
  min-height: 230px;
  padding: 28px;
  background: var(--panel);
  border-top: 7px solid var(--cyan);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: 0.25s;
}
.moment-grid article:nth-child(2) {
  border-color: var(--orange);
}
.moment-grid article:nth-child(3) {
  border-color: var(--yellow);
}
.moment-grid article:nth-child(4) {
  border-color: var(--coral);
}
.moment-grid article:hover {
  transform: translateY(-6px);
  background: #182130;
}
.moment-grid b {
  font: 600 10px Poppins;
  color: var(--cyan);
}
.moment-grid strong {
  font: 800 24px Poppins;
  margin: 8px 0;
}
.moment-grid p {
  color: #b7bec9;
  margin: 0;
}
.zones {
  position: relative;
  overflow: hidden;
}
.zones:after {
  content: "10";
  position: absolute;
  right: -0.08em;
  top: -0.2em;
  font: 800 450px/1 Poppins;
  color: #ffffff03;
}
.zones-head {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 8vw;
  align-items: end;
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}
.zones-head > p {
  color: #bfc5ce;
  font-size: 18px;
}
.zone-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  position: relative;
  z-index: 1;
}
.zone-grid button {
  min-height: 245px;
  padding: 26px;
  text-align: left;
  border: 1px solid #ffffff17;
  background: var(--panel);
  color: #fff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.28s;
}
.zone-grid button:hover,
.zone-grid button:focus-visible {
  transform: translateY(-7px);
  background: var(--cyan);
  color: var(--ink);
  outline: 0;
}
.zone-grid b {
  font: 800 50px Poppins;
  color: var(--orange);
}
.zone-grid span {
  font: 800 20px/1.08 Poppins;
}
.zone-grid small {
  font: 600 10px Poppins;
  color: #aeb5bf;
}
.zone-grid i {
  font: 600 10px Poppins;
  font-style: normal;
  opacity: 0;
  transform: translateY(5px);
  transition: 0.2s;
}
.zone-grid button:hover i {
  opacity: 1;
  transform: none;
}
.zone-grid .hero-zone {
  grid-column: 4;
  grid-row: 1/3;
  background: var(--orange);
  color: var(--ink);
}
.zone-grid .hero-zone b {
  font-size: 92px;
  color: #fff;
}
.zone-grid .hero-zone span {
  font-size: 40px;
}
.zone-grid .hero-zone small {
  color: var(--ink);
}
.zone-grid .hero-zone p {
  font-size: 15px;
}
.zone-grid .hero-zone i {
  opacity: 1;
}
.family {
  background: var(--cyan);
  color: var(--ink);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 7vw;
}
.family .section-label {
  color: var(--ink);
}
.family-title h2 {
  font-size: clamp(47px, 5vw, 78px);
  margin: 25px 0 30px;
}
.family-title h2 span {
  color: var(--white);
}
.family-title p {
  font-size: 18px;
  max-width: 600px;
}
.family-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 2px solid var(--ink);
}
.family-list button {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #080b1355;
  text-align: left;
  padding: 18px 12px;
  cursor: pointer;
  color: var(--ink);
  display: flex;
  gap: 18px;
  transition: 0.2s;
}
.family-list button:nth-child(odd) {
  border-right: 1px solid #080b1355;
}
.family-list button:hover {
  background: var(--yellow);
  padding-left: 20px;
}
.family-list b {
  font: 800 12px Poppins;
  color: var(--orange);
}
.family-list span {
  font: 600 14px Poppins;
}
.angles {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.angles:before {
  content: "PART";
  position: absolute;
  right: -0.04em;
  top: 0.08em;
  font: 800 260px/0.8 Poppins;
  color: #ffffff05;
}
.angles-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 8vw;
  align-items: end;
  position: relative;
  z-index: 1;
  margin-bottom: 55px;
}
.angles-head > p {
  color: #bfc5ce;
  font-size: 18px;
}
.angle-explorer {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(440px, 1.25fr);
  gap: 0;
  position: relative;
  z-index: 1;
  border: 1px solid #ffffff1c;
  background: #0d121a;
}
.sector-list {
  max-height: 690px;
  overflow-y: auto;
  border-right: 1px solid #ffffff1c;
  scrollbar-color: var(--cyan) #131a24;
  scrollbar-width: thin;
}
.sector-list > p {
  position: sticky;
  top: 0;
  z-index: 2;
  margin: 0;
  padding: 21px 24px;
  background: var(--cyan);
  color: var(--ink);
  font: 800 11px/1.3 Poppins;
  letter-spacing: 0.08em;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.sector-list > p span {
  opacity: 0.65;
}
.sector-list button {
  width: 100%;
  padding: 18px 24px;
  text-align: left;
  background: transparent;
  color: #aeb5bf;
  border: 0;
  border-bottom: 1px solid #ffffff10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font: 700 13px/1.25 Poppins;
  transition: 0.25s;
}
.sector-list button i {
  color: #697381;
  font: 600 10px Poppins;
  font-style: normal;
}
.sector-list button:hover,
.sector-list button:focus-visible,
.sector-list button.active {
  padding-left: 34px;
  background: #ffffff09;
  color: #fff;
  outline: 0;
}
.sector-list button.active {
  box-shadow: inset 6px 0 var(--orange);
}
.sector-list button.active i {
  color: var(--orange);
}
.angle-feature {
  min-height: 690px;
  padding: clamp(38px, 6vw, 78px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(145deg, #101722ed, #111825f7),
    radial-gradient(circle at 80% 20%, #ff713c55, transparent 40%);
}
.angle-feature:before {
  content: "PARTENAIRE";
  position: absolute;
  left: -0.04em;
  bottom: -0.12em;
  color: #ffffff05;
  font: 900 clamp(75px, 12vw, 165px)/0.8 Poppins;
  transform: rotate(-4deg);
}
.angle-number {
  position: absolute;
  right: 0;
  top: 0;
  padding: 20px 24px;
  background: var(--orange);
  color: var(--ink);
  font: 900 13px/1.05 Poppins;
  letter-spacing: 0.05em;
}
.angle-feature > small {
  position: relative;
  color: #7f8997;
  font: 700 10px/1.5 Poppins;
  letter-spacing: 0.12em;
}
.angle-feature > small span {
  color: var(--cyan);
}
.angle-feature blockquote {
  position: relative;
  margin: 28px 0 40px;
  max-width: 760px;
  color: #fff;
  font: 900 clamp(30px, 4.2vw, 60px)/1.02 Poppins;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}
.activation {
  position: relative;
  border-left: 4px solid var(--yellow);
  padding-left: 18px;
  margin-bottom: 36px;
}
.activation b {
  color: var(--yellow);
  font: 700 9px Poppins;
  letter-spacing: 0.12em;
}
.activation p {
  margin: 5px 0 0;
  color: #c9ced5;
  font-size: 15px;
}
.feature-action {
  position: relative;
  align-self: flex-start;
  padding: 17px 22px;
  border: 0;
  background: var(--cyan);
  color: var(--ink);
  font: 800 11px Poppins;
  cursor: pointer;
  transition: 0.2s;
}
.feature-action:hover,
.feature-action:focus-visible {
  transform: translateY(-3px);
  background: #fff;
}
.angle-cta {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  background: var(--orange);
  color: var(--ink);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1.5fr auto;
  gap: 25px;
  align-items: center;
}
.angle-cta strong {
  font: 800 19px Poppins;
}
.angle-cta span {
  font-size: 15px;
}
.angle-cta a {
  background: var(--ink);
  color: #fff;
  padding: 14px 20px;
  border-radius: 99px;
  font: 600 12px Poppins;
  white-space: nowrap;
}
.paths {
  background: var(--white);
  color: var(--ink);
}
.paths .section-label {
  color: var(--orange);
}
.paths h2 {
  margin: 25px 0 55px;
}
.path-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.path-grid article {
  padding: 45px;
  background: #fff;
  border-top: 9px solid var(--cyan);
  min-height: 440px;
  display: flex;
  flex-direction: column;
}
.path-grid article.featured {
  background: var(--ink);
  color: #fff;
  border-color: var(--orange);
}
.path-grid article > b {
  font: 800 70px Poppins;
  color: var(--orange);
}
.path-grid small {
  font: 600 11px Poppins;
  color: var(--orange);
}
.path-grid h3 {
  font: 800 31px/1.1 Poppins;
}
.path-grid p {
  font-size: 17px;
  line-height: 1.75;
  max-width: 600px;
}
.path-grid a {
  margin-top: auto;
  align-self: flex-start;
  background: var(--yellow);
  color: var(--ink);
  padding: 14px 20px;
  border-radius: 99px;
  font: 600 12px Poppins;
}
.hybrid {
  text-align: center;
  font: 600 12px Poppins;
  margin: 35px 0 0;
}
.visibility {
  background: var(--cyan);
  color: var(--ink);
}
.visibility .section-label {
  color: var(--ink);
}
.visibility h2 {
  margin: 30px 0 55px;
}
.visibility h2 span {
  color: var(--ink);
  -webkit-text-stroke: 2px var(--ink);
  -webkit-text-fill-color: transparent;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.benefit-grid article {
  padding: 38px;
  border-right: 1px solid var(--ink);
}
.benefit-grid b {
  font: 800 13px Poppins;
  color: var(--orange);
}
.benefit-grid h3 {
  font: 800 26px Poppins;
}
.benefit-grid p {
  line-height: 1.75;
}
.tailored {
  font: 600 13px Poppins;
  text-align: center;
  margin: 30px 0 0;
}
.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 7vw;
}
.contact h2 {
  margin: 25px 0;
}
.contact-copy > p {
  color: #c3c8d0;
  max-width: 550px;
  font-size: 18px;
}
.contact-copy > a {
  color: var(--orange);
  font: 600 17px Poppins;
}
.member {
  margin-top: 60px;
  background: var(--white);
  padding: 20px 24px;
  width: 330px;
  border-radius: 8px;
}
.member span {
  display: block;
  color: var(--ink);
  font: 600 9px Poppins;
  margin-bottom: 10px;
}
.member img {
  display: block;
  max-width: 260px;
  height: 55px;
  object-fit: contain;
  object-position: left;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-form label {
  font: 600 11px Poppins;
}
.contact-form .full {
  grid-column: 1/-1;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  background: var(--panel);
  border: 1px solid #ffffff22;
  border-radius: 5px;
  color: #fff;
  padding: 15px;
  font: 400 15px Inter;
}
.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}
.contact-form button {
  grid-column: 1/-1;
  border: 0;
  background: var(--orange);
  padding: 18px;
  border-radius: 99px;
  font: 600 12px Poppins;
  cursor: pointer;
}
.contact-form button:hover {
  background: var(--yellow);
}
.form-note {
  color: #969da7;
  font-size: 12px;
}
footer {
  padding: 45px 5vw;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
  border-top: 1px solid #ffffff22;
}
footer p {
  text-align: center;
  font: 600 11px Poppins;
}
footer small {
  text-align: right;
  font: 600 10px Poppins;
  color: #939aa4;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
@keyframes breathe {
  to {
    transform: scale(1.07);
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}
@media (max-width: 850px) {
  .topbar nav,
  .top-cta {
    display: none;
  }
  .topbar {
    height: 68px;
  }
  .hero {
    min-height: 820px;
    padding: 120px 24px 130px;
  }
  .hero h1 {
    font-size: 58px;
  }
  .hero-content > p:not(.kicker) {
    font-size: 16px;
  }
  .inventory {
    right: 24px;
    top: 95px;
    width: 125px;
    padding: 15px;
  }
  .inventory b {
    font-size: 16px;
  }
  .date-lock {
    left: 24px;
    right: auto;
    bottom: 45px;
  }
  .date-lock strong {
    font-size: 48px;
  }
  .proof {
    grid-template-columns: 1fr 1fr;
  }
  .proof div {
    padding: 28px 24px;
    border-bottom: 1px solid var(--ink);
  }
  .proof strong {
    font-size: 55px;
  }
  .section,
  .moments {
    padding: 78px 24px;
  }
  .comeback-grid,
  .moments,
  .zones-head,
  .angles-head,
  .family,
  .contact {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .zone-grid {
    grid-template-columns: 1fr 1fr;
  }
  .zone-grid button {
    min-height: 190px;
    padding: 20px;
  }
  .zone-grid .hero-zone {
    grid-column: 1/3;
    grid-row: auto;
    min-height: 380px;
  }
  .moment-grid,
  .path-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }
  .angle-explorer {
    grid-template-columns: 1fr;
  }
  .sector-list {
    max-height: 360px;
    border-right: 0;
    border-bottom: 1px solid #ffffff1c;
  }
  .angle-feature {
    min-height: 520px;
  }
  .benefit-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }
  .family-list {
    grid-template-columns: 1fr;
  }
  .family-list button:nth-child(odd) {
    border-right: 0;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
  .contact-form .full,
  .contact-form button {
    grid-column: auto;
  }
  .member {
    width: 100%;
  }
  .angle-cta {
    grid-template-columns: 1fr;
  }
  footer {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  footer p,
  footer small {
    text-align: left;
  }
}
