/* ======================================================================
   FULLCODE — CASE STUDY /projets/fullcode/
   Dépend de :
   - /assets/css/general.css
   - /assets/css/content-pages.css
   ====================================================================== */

.fullcode-case {
  --fc-violet: #522a6f;
  --fc-plum: #8a2476;
  --fc-yellow: #fbcf4f;
  --fc-beige: #faeadd;
  --fc-charcoal: #222023;
  --fc-white: #fff;
  --fc-display: var(--font-display);
  --fc-body: var(--font-body);

  overflow: clip;
  background:
    linear-gradient(180deg,
      #f8f7f6 0,
      #fff 18%,
      var(--fc-beige) 46%,
      #fff 68%,
      #f8f7f6 100%);
  color: var(--fc-charcoal);
}


/* ----------------------------------------------------------------------
   BASE
   ---------------------------------------------------------------------- */

.fc-kicker {
  margin: 0 0 16px;
  color: var(--fc-plum);
  font-family: var(--fc-body);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.fc-section {
  position: relative;
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
  padding: clamp(86px, 9vw, 150px) 0;
  border-top: 1px solid rgba(82, 42, 111, 0.10);
}

.fc-section-heading {
  max-width: 900px;
  margin-bottom: clamp(42px, 6vw, 78px);
}

.fc-section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: clamp(42px, 8vw, 120px);
  align-items: end;
}

.fc-section h2,
.fc-manifesto h2,
.fc-final-cta h2 {
  margin: 0;
  color: var(--fc-violet);
  font-family: var(--fc-display);
  font-size: clamp(2.7rem, 5.5vw, 5.8rem);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 0.94;
}

.fc-section p {
  color: rgba(34, 32, 35, 0.72);
}

.fc-reveal {
  opacity: 1;
  transform: none;
}

.js .fc-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms cubic-bezier(.22, 1, .36, 1),
    transform 700ms cubic-bezier(.22, 1, .36, 1);
}

.js .fc-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}


/* ----------------------------------------------------------------------
   BREADCRUMB
   ---------------------------------------------------------------------- */

.fullcode-breadcrumb {
  position: relative;
  z-index: 8;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto -42px;
  padding-top: 34px;
  color: rgba(82, 42, 111, 0.62);
  font-size: 0.78rem;
}

.fullcode-breadcrumb ol {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.fullcode-breadcrumb li+li::before {
  content: "›";
  margin-right: 10px;
  color: rgba(138, 36, 118, 0.42);
}

.fullcode-breadcrumb a {
  color: var(--fc-violet);
  font-weight: 700;
}

.fullcode-breadcrumb a:hover,
.fullcode-breadcrumb a:focus-visible {
  color: var(--fc-plum);
}


/* ----------------------------------------------------------------------
   HERO
   ---------------------------------------------------------------------- */

.fc-hero {
  position: relative;
  isolation: isolate;
  min-height: min(930px, calc(100svh - var(--header-height)));
  padding:
    clamp(130px, 15vh, 190px) max(24px, calc((100vw - 1180px) / 2)) 120px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 16%,
      rgba(251, 207, 79, 0.78),
      transparent 18%),
    radial-gradient(circle at 72% 77%,
      rgba(138, 36, 118, 0.18),
      transparent 23%),
    linear-gradient(145deg, var(--fc-beige), #fff 58%);
}

.fc-hero-grid {
  position: absolute;
  z-index: -4;
  inset: 0;
  background:
    linear-gradient(rgba(82, 42, 111, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(82, 42, 111, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000 0, transparent 86%);
}

.fc-hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  top: 8%;
  right: -8%;
  width: min(46vw, 620px);
  aspect-ratio: 1;
  border: clamp(24px, 3vw, 48px) solid var(--fc-violet);
  border-radius: 44% 56% 62% 38% / 58% 44% 56% 42%;
  opacity: 0.09;
  animation: fc-hero-shape 15s ease-in-out infinite;
}

@keyframes fc-hero-shape {

  0%,
  100% {
    transform: rotate(-10deg) scale(1);
  }

  50% {
    transform: rotate(8deg) scale(1.05);
  }
}

.fc-orbit {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.fc-orbit--one {
  top: 23%;
  right: 12%;
  width: clamp(50px, 6vw, 88px);
  aspect-ratio: 1;
  background: var(--fc-plum);
  box-shadow: 0 18px 38px rgba(82, 42, 111, 0.20);
  animation: fc-orbit-one 7s ease-in-out infinite;
}

.fc-orbit--two {
  right: 27%;
  bottom: 17%;
  width: clamp(20px, 2.5vw, 38px);
  aspect-ratio: 1;
  background: var(--fc-yellow);
  box-shadow: 0 12px 24px rgba(137, 103, 16, 0.18);
  animation: fc-orbit-two 5.5s ease-in-out infinite reverse;
}

@keyframes fc-orbit-one {
  50% {
    transform: translate(-35px, 28px);
  }
}

@keyframes fc-orbit-two {
  50% {
    transform: translate(26px, -24px);
  }
}

.fc-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1040px, 100%);
}

.fc-hero .fc-kicker {
  width: fit-content;
  padding: 8px 13px;
  border: 1px solid rgba(82, 42, 111, 0.10);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.fc-hero h1 {
  max-width: 1000px;
  margin: 0;
  color: var(--fc-violet);
  font-family: var(--fc-display);
  font-size: clamp(4rem, 9vw, 9.6rem);
  font-weight: 400;
  line-height: 0.82;
}

.fc-hero h1 span {
  display: block;
  color: var(--fc-plum);
}

.fc-hero-lead {
  max-width: 760px;
  margin: clamp(34px, 5vw, 58px) 0 0;
  color: rgba(34, 32, 35, 0.72);
  font-size: clamp(1.04rem, 1.5vw, 1.28rem);
  line-height: 1.65;
}

.fc-hero-proof {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fc-hero-proof span {
  padding: 10px 14px;
  border: 1px solid rgba(82, 42, 111, 0.10);
  border-radius: 999px;
  background: #fff;
  color: var(--fc-violet);
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(82, 42, 111, 0.06);
}

.fc-hero-marquee {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  border-top: 1px solid rgba(82, 42, 111, 0.10);
  background: var(--fc-violet);
  color: var(--fc-beige);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.fc-hero-marquee div {
  width: max-content;
  padding: 14px 0;
  animation: fc-marquee 24s linear infinite;
}

@keyframes fc-marquee {
  to {
    transform: translateX(-50%);
  }
}


/* ----------------------------------------------------------------------
   INTENTION
   ---------------------------------------------------------------------- */

.fc-intent {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.75fr);
  gap: clamp(48px, 9vw, 130px);
  align-items: start;
}

.fc-intent .fc-section-heading {
  margin: 0;
}

.fc-intent-copy {
  padding-top: 8px;
}

.fc-intent-copy p {
  margin-top: 0;
  font-size: 1rem;
  line-height: 1.75;
}

.fc-intent-copy p+p {
  margin-top: 24px;
}


/* ----------------------------------------------------------------------
   IDENTITÉ
   ---------------------------------------------------------------------- */

.fc-identity {
  width: 100%;
  max-width: none;
  padding-inline: max(24px, calc((100vw - 1180px) / 2));
  background: linear-gradient(180deg, #fff, var(--fc-beige));
}

.fc-brand-stage {
  position: relative;
  isolation: isolate;
  width: min(1180px, 100%);
  margin-inline: auto;
  padding: clamp(34px, 6vw, 72px);
  overflow: hidden;
  border-radius: clamp(30px, 5vw, 58px);
  background: rgba(255, 255, 255, 0.52);
  box-shadow:
    inset 0 1px 0 #fff,
    0 30px 80px rgba(82, 42, 111, 0.10);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.fc-brand-word {
  position: absolute;
  z-index: -1;
  top: -0.08em;
  right: -0.03em;
  color: rgba(82, 42, 111, 0.05);
  font-family: var(--fc-display);
  font-size: clamp(7rem, 22vw, 20rem);
  line-height: 0.72;
  text-align: right;
}

.fc-brand-word span {
  display: block;
}

.fc-brand-palette {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.8fr 1.1fr 1fr;
  gap: 10px;
}

.fc-color {
  min-height: clamp(180px, 22vw, 290px);
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 26px;
  transition:
    transform 260ms cubic-bezier(.2, .8, .2, 1),
    box-shadow 260ms ease;
}

.fc-color:hover {
  transform: translateY(-7px) rotate(-0.6deg);
  box-shadow: 0 20px 38px rgba(34, 32, 35, 0.12);
}

.fc-color span {
  font-weight: 700;
}

.fc-color small {
  margin-top: 4px;
  opacity: 0.78;
}

.fc-color--violet {
  background: var(--fc-violet);
  color: #fff;
}

.fc-color--plum {
  background: var(--fc-plum);
  color: #fff;
}

.fc-color--yellow {
  background: var(--fc-yellow);
  color: var(--fc-charcoal);
}

.fc-color--beige {
  background: var(--fc-beige);
  color: var(--fc-charcoal);
  box-shadow: inset 0 0 0 1px rgba(82, 42, 111, 0.08);
}

.fc-color--charcoal {
  background: var(--fc-charcoal);
  color: #fff;
}

.fc-type-specimen {
  margin-top: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 10px;
}

.fc-type-display,
.fc-type-body {
  min-height: 300px;
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 26px;
}

.fc-type-display {
  background: var(--fc-violet);
  color: #fff;
}

.fc-type-display>span,
.fc-type-body>span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.fc-type-display strong {
  font-family: var(--fc-display);
  font-size: clamp(3.4rem, 7vw, 7rem);
  font-weight: 400;
  line-height: 0.84;
}

.fc-type-body {
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(82, 42, 111, 0.08);
}

.fc-type-body>span {
  color: var(--fc-plum);
}

.fc-type-body p {
  margin: 0;
  color: var(--fc-charcoal);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.35;
}


/* ----------------------------------------------------------------------
   LAB CRÉATIF / TECHNIQUE
   ---------------------------------------------------------------------- */

.fc-lab {
  width: 100%;
  max-width: none;
  padding-inline: max(24px, calc((100vw - 1180px) / 2));
  background: linear-gradient(180deg, var(--fc-beige), #fff);
}

.fc-lab-heading {
  width: min(1180px, 100%);
}

.fc-lab-heading>p:last-child {
  max-width: 660px;
  margin-top: 24px;
}

.fc-lab-shell {
  --fc-mix: 50%;
  width: min(1180px, 100%);
  margin-inline: auto;
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid rgba(82, 42, 111, 0.10);
  border-radius: clamp(30px, 5vw, 56px);
  background: #fff;
  box-shadow: 0 30px 80px rgba(82, 42, 111, 0.12);
}

.fc-lab-canvas {
  position: relative;
  isolation: isolate;
  min-height: clamp(520px, 58vw, 720px);
  overflow: hidden;
  border-radius: clamp(22px, 4vw, 42px);
  background: var(--fc-charcoal);
}

.fc-lab-canvas::before {
  content: "";
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: var(--fc-mix);
  width: 3px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(34, 32, 35, 0.12);
  transform: translateX(-50%);
  pointer-events: none;
}

.fc-lab-canvas::after {
  content: "";
  position: absolute;
  z-index: 5;
  top: 50%;
  left: var(--fc-mix);
  width: 26px;
  aspect-ratio: 1;
  border: 5px solid var(--fc-charcoal);
  border-radius: 50%;
  background: var(--fc-yellow);
  box-shadow: 0 0 0 4px #fff;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.fc-lab-creative,
.fc-lab-technical {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.fc-lab-creative {
  z-index: 1;
  background:
    radial-gradient(circle at 24% 20%, rgba(251, 207, 79, 0.88), transparent 16%),
    linear-gradient(145deg, var(--fc-beige), #fff 72%);
  clip-path: inset(0 calc(100% - var(--fc-mix)) 0 0);
}

.fc-lab-technical {
  z-index: 2;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--fc-charcoal);
  background-size: 34px 34px;
  clip-path: inset(0 0 0 var(--fc-mix));
}

.fc-lab-display-word {
  position: absolute;
  left: 8%;
  bottom: 8%;
  color: var(--fc-violet);
  font-family: var(--fc-display);
  font-size: clamp(5rem, 14vw, 13rem);
  line-height: 0.75;
}

.fc-lab-sticker {
  position: absolute;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  color: var(--fc-plum);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  box-shadow: 0 14px 28px rgba(82, 42, 111, 0.10);
}

.fc-lab-sticker--a {
  top: 12%;
  left: 8%;
  transform: rotate(-7deg);
}

.fc-lab-sticker--b {
  top: 24%;
  left: 34%;
  transform: rotate(5deg);
}

.fc-lab-sticker--c {
  top: 9%;
  left: 53%;
  transform: rotate(-2deg);
}

.fc-lab-shape {
  position: absolute;
  border-radius: 44% 56% 62% 38% / 58% 44% 56% 42%;
}

.fc-lab-shape--one {
  top: 30%;
  left: 14%;
  width: 180px;
  aspect-ratio: 1;
  border: 24px solid var(--fc-plum);
  opacity: 0.22;
  transform: rotate(18deg);
}

.fc-lab-shape--two {
  top: 10%;
  left: 46%;
  width: 90px;
  aspect-ratio: 1;
  background: var(--fc-yellow);
  transform: rotate(22deg);
}

.fc-code-window {
  position: absolute;
  top: 10%;
  right: 7%;
  width: min(560px, 48%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 22px;
  background: rgba(10, 10, 11, 0.92);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.fc-code-window-top {
  height: 44px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.68rem;
}

.fc-code-window-top i {
  width: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--fc-plum);
}

.fc-code-window-top i:nth-child(2) {
  background: var(--fc-yellow);
}

.fc-code-window-top i:nth-child(3) {
  background: var(--fc-violet);
}

.fc-code-window-top span {
  margin-left: 8px;
}

.fc-code-window pre {
  margin: 0;
  padding: clamp(22px, 3vw, 36px);
  overflow: auto;
  color: #f8f5fa;
  font:
    500 clamp(0.72rem, 1.15vw, 0.92rem) / 1.8 ui-monospace,
    SFMono-Regular,
    Menlo,
    Consolas,
    monospace;
}

.fc-code-window code span {
  color: var(--fc-yellow);
}

.fc-node-map {
  position: absolute;
  right: 9%;
  bottom: 10%;
  width: min(480px, 46%);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.fc-node-map span {
  min-height: 84px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.66rem;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.fc-lab-center {
  position: absolute;
  z-index: 6;
  top: 50%;
  left: var(--fc-mix);
  padding: 9px 12px;
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  background: #fff;
  color: var(--fc-charcoal);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.fc-lab-center span {
  color: var(--fc-plum);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fc-lab-center strong {
  font-size: 0.82rem;
}

.fc-lab-control {
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: auto minmax(180px, 1fr) auto;
  gap: 18px;
  align-items: center;
  color: var(--fc-violet);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fc-lab-control input {
  width: 100%;
  accent-color: var(--fc-plum);
  cursor: ew-resize;
}

.fc-lab-status {
  margin: 10px 0 0;
  text-align: center;
  color: rgba(34, 32, 35, 0.52);
  font-size: 0.72rem;
}


/* ----------------------------------------------------------------------
   CODE COMME MATIÈRE
   ---------------------------------------------------------------------- */

.fc-code-section {
  width: 100%;
  max-width: none;
  padding-inline: max(24px, calc((100vw - 1180px) / 2));
  background: linear-gradient(180deg, #fff, #f8f6f8);
}

.fc-experience-grid {
  width: min(1180px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.fc-experience-card {
  position: relative;
  isolation: isolate;
  min-height: 430px;
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(82, 42, 111, 0.08);
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(82, 42, 111, 0.07);
  transition:
    transform 260ms cubic-bezier(.2, .8, .2, 1),
    box-shadow 260ms ease;
}

.fc-experience-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 68px rgba(82, 42, 111, 0.12);
}

.fc-experience-index {
  color: var(--fc-plum);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.fc-experience-card h3 {
  margin: auto 0 10px;
  color: var(--fc-violet);
  font-size: 1.3rem;
}

.fc-experience-card p {
  margin: 0;
  max-width: 480px;
  line-height: 1.65;
}

.fc-experience-card code {
  width: fit-content;
  margin-top: 18px;
  padding: 7px 9px;
  border-radius: 9px;
  background: rgba(82, 42, 111, 0.06);
  color: var(--fc-plum);
  font-size: 0.67rem;
}

.fc-mini-snake {
  width: 100%;
  margin: 28px 0 12px;
}

.fc-mini-snake svg {
  width: 100%;
  height: auto;
  display: block;
}

.fc-mini-snake path {
  fill: none;
  stroke: var(--fc-plum);
  stroke-width: 18;
  stroke-linecap: round;
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
}

.fc-experience-card:hover .fc-mini-snake path {
  animation: fc-mini-snake-draw 1.2s cubic-bezier(.65, 0, .35, 1) forwards;
}

@keyframes fc-mini-snake-draw {
  to {
    stroke-dashoffset: 0;
  }
}

.fc-mini-dive {
  min-height: 170px;
  margin: 30px 0 20px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 8px;
}

.fc-mini-dive span {
  display: grid;
  place-items: end center;
  padding-bottom: 10px;
  border-radius: 999px 999px 16px 16px;
  background: linear-gradient(var(--fc-yellow), var(--fc-violet));
  color: #fff;
  font: 700 0.65rem ui-monospace, monospace;
  transition: height 320ms cubic-bezier(.2, .8, .2, 1);
}

.fc-mini-dive span:nth-child(1) {
  height: 50px;
}

.fc-mini-dive span:nth-child(2) {
  height: 74px;
}

.fc-mini-dive span:nth-child(3) {
  height: 98px;
}

.fc-mini-dive span:nth-child(4) {
  height: 126px;
}

.fc-mini-dive span:nth-child(5) {
  height: 150px;
}

.fc-mini-dive span:nth-child(6) {
  height: 168px;
}

.fc-experience-card:hover .fc-mini-dive span:nth-child(odd) {
  height: 150px;
}

.fc-experience-card:hover .fc-mini-dive span:nth-child(even) {
  height: 78px;
}

.fc-mini-book {
  position: relative;
  width: min(340px, 82%);
  margin: 38px auto 26px;
  display: flex;
  filter: drop-shadow(0 20px 22px rgba(82, 42, 111, 0.16));
}

.fc-mini-book i {
  width: 50%;
  aspect-ratio: 0.78;
  display: block;
  border: 1px solid rgba(82, 42, 111, 0.08);
  background: linear-gradient(145deg, var(--fc-beige), #fff);
  transform-style: preserve-3d;
}

.fc-mini-book i:first-child {
  border-radius: 14px 0 0 14px;
  transform-origin: right center;
}

.fc-mini-book i:last-child {
  border-radius: 0 14px 14px 0;
  background: linear-gradient(145deg, var(--fc-plum), var(--fc-violet));
  transform-origin: left center;
}

.fc-experience-card:hover .fc-mini-book i:last-child {
  animation: fc-book-turn 750ms ease-in-out;
}

@keyframes fc-book-turn {
  50% {
    transform: rotateY(-62deg);
  }
}

.fc-mini-scene {
  position: relative;
  min-height: 190px;
  margin: 28px 0 20px;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, var(--fc-beige));
}

.fc-mini-scene::before {
  content: "";
  position: absolute;
  right: 10%;
  bottom: -30%;
  width: 46%;
  aspect-ratio: 1;
  border: 18px solid var(--fc-violet);
  border-radius: 50%;
  opacity: 0.12;
}

.fc-mini-scene i {
  position: absolute;
  width: 34px;
  aspect-ratio: 1;
  border-radius: 50%;
}

.fc-mini-scene i:nth-child(1) {
  top: 28%;
  left: 16%;
  background: var(--fc-yellow);
}

.fc-mini-scene i:nth-child(2) {
  top: 52%;
  left: 44%;
  background: var(--fc-plum);
}

.fc-mini-scene i:nth-child(3) {
  top: 18%;
  right: 18%;
  background: var(--fc-violet);
}

.fc-experience-card:hover .fc-mini-scene i:nth-child(1) {
  animation: fc-scene-float 1.2s ease-in-out infinite alternate;
}

.fc-experience-card:hover .fc-mini-scene i:nth-child(2) {
  animation: fc-scene-float 1.5s .1s ease-in-out infinite alternate-reverse;
}

.fc-experience-card:hover .fc-mini-scene i:nth-child(3) {
  animation: fc-scene-float 1.1s .2s ease-in-out infinite alternate;
}

@keyframes fc-scene-float {
  to {
    transform: translateY(-18px) translateX(8px);
  }
}


/* ----------------------------------------------------------------------
   ARCHITECTURE
   ---------------------------------------------------------------------- */

.fc-architecture {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(46px, 8vw, 110px);
  align-items: center;
}

.fc-architecture-copy p:last-child {
  margin-top: 24px;
  max-width: 560px;
  line-height: 1.72;
}

.fc-file-tree {
  overflow: hidden;
  border-radius: 26px;
  background: var(--fc-charcoal);
  box-shadow: 0 32px 74px rgba(34, 32, 35, 0.20);
}

.fc-file-tree-top {
  height: 48px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.7rem;
}

.fc-file-tree-top span {
  width: 9px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--fc-plum);
}

.fc-file-tree-top span:nth-child(2) {
  background: var(--fc-yellow);
}

.fc-file-tree-top span:nth-child(3) {
  background: var(--fc-violet);
}

.fc-file-tree-top strong {
  margin-left: 8px;
}

.fc-file-tree pre {
  margin: 0;
  padding: clamp(28px, 4vw, 48px);
  overflow: auto;
  color: #f7f3f8;
  font:
    500 clamp(0.72rem, 1.1vw, 0.94rem) / 1.7 ui-monospace,
    SFMono-Regular,
    Menlo,
    Consolas,
    monospace;
}

.fc-file-tree code strong {
  color: var(--fc-yellow);
}

.fc-file-tree code b {
  color: #dcb8e4;
}


/* ----------------------------------------------------------------------
   SYSTÈME
   ---------------------------------------------------------------------- */

.fc-system {
  width: 100%;
  max-width: none;
  padding-inline: max(24px, calc((100vw - 1180px) / 2));
  background: var(--fc-beige);
}

.fc-system-grid {
  width: min(1180px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.fc-system-card {
  min-height: 280px;
  padding: clamp(26px, 3.5vw, 40px);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(82, 42, 111, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow:
    inset 0 1px 0 #fff,
    0 18px 42px rgba(82, 42, 111, 0.06);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition:
    transform 240ms ease,
    box-shadow 240ms ease;
}

.fc-system-card:hover {
  transform: translateY(-6px);
  box-shadow:
    inset 0 1px 0 #fff,
    0 26px 52px rgba(82, 42, 111, 0.10);
}

.fc-system-card>span {
  color: var(--fc-plum);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.fc-system-card h3 {
  margin: auto 0 14px;
  color: var(--fc-violet);
  font-size: 1.16rem;
}

.fc-system-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
}

.fc-system-card--accent {
  background: linear-gradient(145deg, var(--fc-violet), var(--fc-plum));
  color: #fff;
}

.fc-system-card--accent>span,
.fc-system-card--accent h3,
.fc-system-card--accent p {
  color: #fff;
}


/* ----------------------------------------------------------------------
   MANIFESTE
   ---------------------------------------------------------------------- */

.fc-manifesto {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 82vh;
  padding:
    clamp(110px, 14vw, 210px) max(24px, calc((100vw - 1180px) / 2));
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 10%,
      rgba(251, 207, 79, 0.24),
      transparent 22%),
    linear-gradient(135deg,
      var(--fc-violet),
      #351b49 65%,
      var(--fc-plum));
}

.fc-manifesto::before {
  content: "FULLCODE";
  position: absolute;
  z-index: -1;
  right: -0.08em;
  bottom: -0.10em;
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--fc-display);
  font-size: clamp(8rem, 24vw, 24rem);
  line-height: 0.72;
  pointer-events: none;
}

.fc-manifesto-noise {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
}

.fc-manifesto-inner {
  width: min(1050px, 100%);
}

.fc-manifesto .fc-kicker {
  color: var(--fc-yellow);
}

.fc-manifesto h2 {
  color: #fff;
  font-size: clamp(3.8rem, 8vw, 8.6rem);
}

.fc-manifesto h2 span {
  display: block;
  color: var(--fc-yellow);
}

.fc-manifesto p:last-child {
  max-width: 680px;
  margin: clamp(34px, 5vw, 58px) 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.72;
}


/* ----------------------------------------------------------------------
   CTA
   ---------------------------------------------------------------------- */

.fc-final-cta .page-cta-inner {
  background:
    radial-gradient(circle at 115% 148%,
      var(--fc-yellow) 0 18%,
      transparent 50%),
    linear-gradient(125deg,
      var(--fc-violet),
      var(--fc-plum));
  box-shadow: 0 30px 80px rgba(82, 42, 111, 0.20);
}

.fc-final-cta h2 {
  color: #fff;
}

.fc-final-cta .page-cta-inner>p {
  color: rgba(255, 255, 255, 0.78);
}

.fc-final-cta .page-button {
  background: var(--fc-yellow);
  color: var(--fc-charcoal);
  box-shadow: none;
}


/* ----------------------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------------------- */

@media (max-width: 980px) {

  .fc-section-heading--split,
  .fc-intent,
  .fc-architecture {
    grid-template-columns: 1fr;
  }

  .fc-section-heading--split {
    gap: 28px;
  }

  .fc-intent {
    gap: 36px;
  }

  .fc-brand-palette {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fc-color:last-child {
    grid-column: span 2;
  }

  .fc-type-specimen {
    grid-template-columns: 1fr;
  }

  .fc-code-window {
    width: 58%;
  }

  .fc-node-map {
    width: 54%;
  }

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

@media (max-width: 760px) {
  .fullcode-breadcrumb {
    width: calc(100% - 40px);
    margin-bottom: -18px;
    padding-top: 22px;
  }

  .fc-section {
    width: calc(100% - 40px);
    padding: 82px 0;
  }

  .fc-identity,
  .fc-lab,
  .fc-code-section,
  .fc-system {
    width: 100%;
    padding-inline: 20px;
  }

  .fc-hero {
    min-height: calc(100svh - var(--header-height-mobile));
    padding: 118px 20px 100px;
  }

  .fc-hero h1 {
    font-size: clamp(3.4rem, 16vw, 6rem);
  }

  .fc-orbit--one {
    top: 16%;
    right: -20px;
  }

  .fc-orbit--two {
    right: 12%;
    bottom: 18%;
  }

  .fc-brand-stage {
    padding: 18px;
    border-radius: 30px;
  }

  .fc-brand-palette {
    grid-template-columns: 1fr 1fr;
  }

  .fc-color {
    min-height: 150px;
    border-radius: 20px;
  }

  .fc-color:last-child {
    grid-column: span 2;
  }

  .fc-type-display,
  .fc-type-body {
    min-height: 250px;
    border-radius: 20px;
  }

  .fc-lab-shell {
    padding: 10px;
    border-radius: 28px;
  }

  .fc-lab-canvas {
    min-height: 580px;
    border-radius: 22px;
  }

  .fc-code-window {
    top: 12%;
    right: 5%;
    width: 72%;
  }

  .fc-code-window pre {
    font-size: 0.63rem;
  }

  .fc-node-map {
    right: 5%;
    bottom: 11%;
    width: 72%;
  }

  .fc-node-map span {
    min-height: 54px;
    font-size: 0.55rem;
  }

  .fc-lab-display-word {
    left: 5%;
    bottom: 8%;
    font-size: 24vw;
  }

  .fc-lab-sticker--c {
    display: none;
  }

  .fc-lab-control {
    grid-template-columns: 1fr;
    gap: 9px;
    text-align: center;
  }

  .fc-lab-control input {
    order: 3;
  }

  .fc-experience-grid {
    grid-template-columns: 1fr;
  }

  .fc-experience-card {
    min-height: 390px;
  }

  .fc-file-tree pre {
    font-size: 0.67rem;
  }

  .fc-system-grid {
    grid-template-columns: 1fr;
  }

  .fc-system-card {
    min-height: 240px;
  }

  .fc-manifesto {
    min-height: 76vh;
    padding: 110px 20px;
  }

  .fc-manifesto h2 {
    font-size: clamp(3.4rem, 14vw, 6rem);
  }
}

@media (max-width: 480px) {
  .fc-brand-palette {
    grid-template-columns: 1fr;
  }

  .fc-color:last-child {
    grid-column: auto;
  }

  .fc-color {
    min-height: 125px;
  }

  .fc-code-window {
    width: 84%;
  }

  .fc-node-map {
    width: 82%;
  }
}

@media (prefers-reduced-motion: reduce) {

  .fc-hero::before,
  .fc-orbit,
  .fc-hero-marquee div,
  .fc-mini-snake path,
  .fc-mini-dive span,
  .fc-mini-book i,
  .fc-mini-scene i {
    animation: none !important;
  }

  .js .fc-reveal {
    opacity: 1;
    transform: none;
  }
}