@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");

:root {
  --sensi-green: #4c9c05;
  --sensi-dark-green: #35642d;
  --sensi-paper: #f5f5f5;
  --sensi-ink: #161616;
  --sensi-muted: #5f635e;
  --sensi-orange: #c44901;
  --sensi-bleu: #002495;
}

body {
  min-width: 320px;
  background: var(--sensi-paper);
  font-family: "Poppins", "42dot Sans", sans-serif;
  color: #333833;
  font-size: .92rem;
  line-height: 1.65;
}


.sensi-case-main {
  min-height: 100vh;
  padding: calc(72px + 32px) clamp(18px, 5vw, 82px) clamp(90px, 9vw, 145px);
  background: var(--sensi-paper);
}

.sensi-breadcrumb,
.sensi-case-hero,
.case-section {
  width: min(1320px, 100%);
  margin-inline: auto;
}

.sensi-breadcrumb {
  margin-bottom: clamp(38px, 5vw, 66px);
  color: #6f726e;
  font-size: .72rem;
}

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

.sensi-breadcrumb li+li::before {
  content: "›";
  margin-right: 9px;
  color: rgba(76, 156, 5, .55);
}

.sensi-breadcrumb a {
  color: var(--sensi-dark-green);
  font-weight: 600;
}

.sensi-case-hero {
  padding: clamp(10px, 2vw, 30px) 0 clamp(70px, 10vw, 155px);
  text-align: center;
}

.sensi-case-hero img {
  width: min(790px, 76vw);
  max-height: 150px;
  margin: 0 auto;
  object-fit: contain;
}

.sensi-case-hero p {
  max-width: 710px;
  margin: 26px auto 0;
  color: #2f332f;
  font-size: clamp(.84rem, 1vw, 1rem);
  line-height: 1.55;
}

.case-section {
  padding-bottom: clamp(95px, 12vw, 180px);
}

.case-section-heading {
  position: relative;
  margin-bottom: clamp(52px, 7vw, 96px);
}

.case-section-heading span {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 18px;
  color: rgba(20, 20, 20, .055);
  font-size: clamp(2.3rem, 6vw, 6rem);
  font-weight: 800;
  letter-spacing: -.05em;
  white-space: nowrap;
  transform: translateY(-50%);
}

.case-section-heading h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #171917;
  font-size: clamp(1.55rem, 2.2vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -.045em;
}

.case-color-tabs {
  display: grid;
  grid-template-columns: minmax(360px, .85fr) minmax(420px, 1.15fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}

.case-color-picker {
  position: relative;
  min-height: 430px;
}

.case-color-picker::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 0;
  width: 48%;
  border-radius: 28px 0 0 28px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(30, 55, 27, .14);
  pointer-events: none;
}

.case-color-tablist {
  position: absolute;
  z-index: 1;
  top: 34px;
  left: 42%;
  right: 0;
  display: grid;
  gap: 18px;
}

.case-color-tab {
  width: 68%;
  height: 82px;
  padding: 0;
  border: 0;
  border-radius: 0 19px 19px 0;
  background: var(--tab);
  box-shadow: 0 5px 8px rgba(26, 38, 23, .2);
  cursor: pointer;
  transition: width 220ms ease, transform 220ms ease;
}

.case-color-tab:hover, .case-color-tab:focus-visible {
  width: 76%;
}

.case-color-tab[aria-selected="true"] {
  width: 100%;
  box-shadow: 0 9px 13px rgba(26, 38, 23, .24);
}

.case-color-tab:focus-visible {
  outline: 3px solid #171917;
  outline-offset: 4px;
}

.case-color-panel[hidden] {
  display: none;
}

.case-color-panel {
  animation: case-panel-in 240ms ease both;
}

.case-color-panel h3 {
  margin: 0 0 10px;
  color: var(--tone);
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
  font-weight: 600;
}

.case-color-subtitle {
  margin: 0 0 18px;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .02em;
}

.case-color-panel>p:last-of-type {
  max-width: 590px;
  margin: 0;
  color: #343934;
  line-height: 1.65;
}

.case-shades {
  margin-top: 32px;
  display: flex;
  gap: 18px;
}

.case-shades i {
  width: min(170px, 42%);
  aspect-ratio: 1.25;
  padding: 12px;
  display: block;
  border: 12px solid #fff;
  border-radius: 24px;
  background: var(--shade);
  box-shadow: 3px 8px 10px rgba(30, 55, 27, .18);
}

@keyframes case-panel-in {
  from {
    opacity: 0;
    transform: translateY(7px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.brand-logo-plaque {
  width: min(640px, 75%);
  margin: clamp(70px, 9vw, 130px) auto 0;
  padding: 36px 44px;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 13px 30px rgba(34, 48, 32, .1);
}

.brand-logo-plaque img {
  width: 100%;
  max-height: 100px;
  object-fit: contain;
}

.wayfinding-grid {
  width: min(1110px, 100%);
  margin: clamp(58px, 8vw, 110px) auto 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px 14px;
}

.wayfinding-grid article:nth-child(11) {
  grid-column: 3;
}

.wayfinding-grid article {
  min-height: 342px;
  padding: 16px 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .96);
  border-radius: 28px;
  background: #fff;
  box-shadow: 3px 6px 3px rgba(30, 34, 29, .22);
  text-align: center;
}

.wayfinding-grid article:hover {
  transform: rotate(-1deg) scale(1.02);
}

.wayfinding-grid article b {
  margin-top: 22px;
  font-size: .9rem;
  line-height: 1.2;
}

.wayfinding-grid article span {
  margin-top: 5px;
  font-size: .82rem;
  line-height: 1.25;
}

.wayfinding-picto {
  width: 100%;
  height: 220px;
  margin: 0;
  padding: 25px 34px;
  display: block;
  border-radius: 20px;
  background: #ededed;
  box-sizing: border-box;
  object-fit: contain;
}

.wayfinding-grid article:nth-child(6) .wayfinding-picto,
.wayfinding-grid article:nth-child(8) .wayfinding-picto,
.wayfinding-grid article:nth-child(9) .wayfinding-picto {
  background: #999;
}

.web-intro {
  position: relative;
  min-height: 210px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(45px, 9vw, 145px);
  align-items: start;
}

.web-intro p {
  max-width: 520px;
  margin: 0;
  color: #333833;
  font-size: .92rem;
  line-height: 1.65;
}

.web-intro p:nth-of-type(2) {
  margin-top: 104px;
}


/* =========================================================
   SENSIPARK — WEB INTRO SNAKE
   ========================================================= */

.web-snake-host {
  width: min(599px, 100%);
  aspect-ratio: 599 / 438;
}

.web-snake-host svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}


/* =========================================================
   CORPS + ŒIL
   ========================================================= */

.web-snake-path,
.web-snake-eye {
  fill: none;

  stroke-dashoffset: var(--snake-start);
}

.web-snake-path {
  stroke-dasharray:
    var(--snake-length) var(--snake-length);
}

.web-snake-eye {
  stroke: #fff;
  stroke-width: 50;
  stroke-linecap: round;

  stroke-dasharray:
    40 var(--snake-length);

  opacity: 0;
}


/* =========================================================
   ANIMATION DU SERPENT
   ========================================================= */

.web-intro.is-visible .web-snake-path {
  animation:
    draw-web-snake 1.6s cubic-bezier(.65, 0, .35, 1) forwards;
}

.web-intro.is-visible .web-snake-eye {
  opacity: 1;

  animation:
    draw-web-snake 1.6s cubic-bezier(.65, 0, .35, 1) forwards;
}

@keyframes draw-web-snake {
  from {
    stroke-dashoffset: var(--snake-start);
  }

  to {
    stroke-dashoffset: 0;
  }
}


/* =========================================================
   SURPRISE
   ========================================================= */

.web-snake-surprise {
  opacity: 0;

  transform-box: fill-box;
  transform-origin: center;
  transform: scale(0.2);
}

.web-intro.is-visible .web-snake-surprise--1 {
  animation:
    snake-surprise-pop 350ms 1.62s cubic-bezier(.34, 1.56, .64, 1) forwards;
}

.web-intro.is-visible .web-snake-surprise--2 {
  animation:
    snake-surprise-pop 350ms 1.72s cubic-bezier(.34, 1.56, .64, 1) forwards;
}

.web-intro.is-visible .web-snake-surprise--3 {
  animation:
    snake-surprise-pop 350ms 1.82s cubic-bezier(.34, 1.56, .64, 1) forwards;
}

@keyframes snake-surprise-pop {
  from {
    opacity: 0;
    transform: scale(0.2);
  }

  70% {
    opacity: 1;
    transform: scale(1.2);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.flow-heading {
  margin: clamp(48px, 7vw, 94px) 0 clamp(46px, 6vw, 74px);
}

.flow-heading h3 {
  margin: 0;
  color: #181a18;
  font-size: clamp(1.65rem, 2.8vw, 2.7rem);
  font-weight: 600;
  letter-spacing: -.045em;
}

.flow-heading p {
  margin: 5px 0 0;
  font-size: .8rem;
  letter-spacing: .03em;
}

.web-stories {
  display: grid;

  grid-template-columns:
    minmax(180px, 1fr) minmax(180px, 1fr) minmax(220px, 1fr) minmax(220px, 1fr);

  column-gap: clamp(30px, 4vw, 70px);
  row-gap: clamp(80px, 10vw, 150px);

  align-items: start;
}


/* Les enfants des articles deviennent
   directement des éléments de .web-stories */

.web-story {
  display: contents;
}


/* =========================================================
   LIGNE 1
   ========================================================= */


/* SCREEN 1 */

.web-story:nth-child(1) .screen-column {
  grid-column: 1;
  grid-row: 1;
}


/* TEXTE 1 */

.web-story:nth-child(1)>div:last-child {
  grid-column: 3;
  grid-row: 1;
}


/* SCREEN 2 */

.web-story:nth-child(2) .screen-column {
  grid-column: 2;
  grid-row: 1;

  margin-top: 50vh;
}


/* TEXTE 2 */

.web-story:nth-child(2)>div:last-child {
  grid-column: 4;
  grid-row: 1;

  margin-top: 50vh;
}


/* =========================================================
   LIGNE 2
   ========================================================= */


/* SCREEN 3 */

.web-story:nth-child(3) .screen-column {
  grid-column: 1;
  grid-row: 2;
}


/* TEXTE 3 */

.web-story:nth-child(3)>div:last-child {
  grid-column: 3;
  grid-row: 2;
}


/* SCREEN 4 */

.web-story:nth-child(4) .screen-column {
  grid-column: 2;
  grid-row: 2;

  margin-top: 50vh;
}


/* TEXTE 4 */

.web-story:nth-child(4)>div:last-child {
  grid-column: 4;
  grid-row: 2;

  margin-top: 50vh;
}


/* =========================================================
   SCREENS
   ========================================================= */

.screen-column {
  min-height: 0;

  display: flex;
  align-items: flex-start;
  justify-content: center;
}


.screen-column img {
  display: block;

  width: min(270px, 100%);
  height: auto;

  border: 1px solid #dfe2de;

  box-shadow:
    0 15px 34px rgba(34, 48, 32, .12);

  filter: grayscale(1);
}


/* =========================================================
   TEXTES
   ========================================================= */

.web-story h4 {
  margin: 0 0 24px;

  font-size: 1.15rem;
  font-weight: 600;
}


.web-story p {
  margin: 0 0 18px;

  color: #3d413d;

  font-size: .9rem;
  line-height: 1.75;
}


@media (max-width: 700px) {

  .web-stories {
    display: block;
  }

  .web-story {
    display: flex;
    flex-direction: column;
    gap: 24px;

    margin-bottom: 80px;
  }

  .web-story .screen-column,
  .web-story>div:last-child {
    margin-top: 0 !important;
  }

  .screen-column {
    min-height: 0;
    justify-content: flex-start;
  }

  .screen-column img {
    width: min(320px, 100%);
  }
}


/* =========================================================
   LAYOUT
   ========================================================= */

.label-system-grid {
  position: relative;

  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}


/* =========================================================
   CARD
   ========================================================= */

.label-system-visual {
  position: relative;
  z-index: 10;

  margin: 0;

  /*
    Important :
    la couleur doit pouvoir sortir du figure
    et passer devant le texte.
  */
  overflow: visible;
}


.label-system-card {
  position: relative;

  width: 100%;
  max-width: 420px;
  aspect-ratio: 259 / 218;

  background: white;

  border-radius: 32px;

  box-shadow:
    8px 10px 0 rgba(0, 0, 0, 0.08),
    0 12px 18px rgba(0, 0, 0, 0.12);

  /*
    IMPORTANT :
    surtout pas overflow:hidden
  */
  overflow: visible;
}


/* =========================================================
   COULEURS
   ========================================================= */

.label-color {
  position: absolute;
  inset: 22px;

  border-radius: 25px;

  opacity: 0;
  visibility: hidden;

  pointer-events: none;

  will-change: transform;
}


/*
  Couleur actuellement visible
*/

.label-color.is-active {
  opacity: 1;
  visibility: visible;

  z-index: 2;
}


/*
  Prochaine couleur.

  Elle est déjà présente SOUS la couleur actuelle.
*/

.label-color.is-next {
  opacity: 1;
  visibility: visible;

  z-index: 1;
}


/*
  C'est l'ancienne couleur qui part vers la droite.
*/

.label-color.is-leaving {
  opacity: 1;
  visibility: visible;

  z-index: 20;

  animation:
    label-card-leave var(--sweep-duration, 750ms) cubic-bezier(.76, 0, .24, 1) forwards;
}


@keyframes label-card-leave {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(var(--card-travel));
  }
}


/* =========================================================
   TES 4 COULEURS
   ========================================================= */

.label-color--green {
  background:
    linear-gradient(110deg,
      #458701,
      #1e3a01);
}


.label-color--orange {
  background:
    linear-gradient(110deg,
      #e8691e,
      #ba430e);
}


.label-color--beige {
  background:
    linear-gradient(110deg,
      #f4e9d3,
      #f0d9b2);
}


.label-color--grey {
  background:
    linear-gradient(110deg,
      #7e7f87,
      #2c2c2c);
}


/* =========================================================
   ZONE TEXTE
   ========================================================= */

.label-system-content {
  position: relative;

  /*
    En dessous de la card qui traverse.
  */
  z-index: 1;
}


.label-system-copy {
  position: relative;

  display: grid;
}


/*
  Tous les blocs textes occupent
  exactement le même emplacement.

  Le grid permet aussi de garder la hauteur
  du plus grand contenu.
*/

.label-content {
  grid-area: 1 / 1;

  opacity: 0;
  visibility: hidden;

  pointer-events: none;
}


/*
  Texte actuel
*/

.label-content.is-active {
  opacity: 1;
  visibility: visible;

  pointer-events: auto;

  clip-path: inset(0 0 0 0);
}


/* =========================================================
   ANCIEN TEXTE
   ========================================================= */

/*
  Pendant que la card traverse,
  l'ancien texte est effacé de gauche à droite.
*/

.label-content.is-leaving {
  opacity: 1;
  visibility: visible;

  pointer-events: none;

  animation:
    label-text-leave var(--text-duration, 450ms) var(--text-delay, 180ms) cubic-bezier(.76, 0, .24, 1) both;
}


@keyframes label-text-leave {
  from {
    clip-path: inset(0 0 0 0);
  }

  to {
    clip-path: inset(0 0 0 100%);
  }
}


/* =========================================================
   NOUVEAU TEXTE
   ========================================================= */

/*
  Le nouveau texte est révélé
  de gauche à droite derrière la card.
*/

.label-content.is-entering {
  opacity: 1;
  visibility: visible;

  pointer-events: none;

  animation:
    label-text-enter var(--text-duration, 450ms) var(--text-delay, 180ms) cubic-bezier(.76, 0, .24, 1) both;
}


@keyframes label-text-enter {
  from {
    clip-path: inset(0 100% 0 0);
  }

  to {
    clip-path: inset(0 0 0 0);
  }
}


/* =========================================================
   BOUTON PAUSE
   ========================================================= */

.label-system-pause {
  position: relative;
  z-index: 50;

  margin-top: 2rem;

  padding: 0.8rem 1.2rem;

  border: 1px solid currentColor;
  border-radius: 999px;

  background: transparent;
  color: inherit;

  font: inherit;

  cursor: pointer;

  transition:
    transform 200ms ease,
    background-color 200ms ease,
    color 200ms ease;
}


.label-system-pause:hover {
  transform: rotate(-1deg) scale(1.02);
}


.label-system-pause:active {
  transform: rotate(0) scale(0.97);
}


/* ======================================================================
   SENSIPARK — CTA FINAL
   ====================================================================== */
/*
.sensipark-final-cta {
  padding:
    clamp(76px, 9vw, 130px) max(24px,
      calc((100vw - 1180px) / 2));
}


.sensipark-cta-card {
  width: min(1180px, 100%);
  margin-inline: auto;

  padding:
    clamp(36px, 6vw, 72px);

  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 42px;

  border:
    1px solid rgba(74, 145, 0, 0.10);

  border-radius: 10px;

  background:
    linear-gradient(135deg,
      #f1f1ed 0%,
      #f7f5ef 100%);

  box-shadow:
    0 20px 46px rgba(17, 17, 17, 0.05);
}


.sensipark-cta-copy {
  max-width: 760px;
}


.sensipark-cta-kicker {
  margin:
    0 0 16px;

  color: #4a9100 !important;

  font-family: "Poppins", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}


.sensipark-final-cta h2 {
  margin: 0;

  color: #4a9100;

  font-family: "Poppins", sans-serif;
  font-size:
    clamp(2.2rem, 4.4vw, 4.2rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
}


.sensipark-cta-copy>p:last-child {
  max-width: 620px;

  margin:
    24px 0 0;

  color: #111111;

  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.7;
}


/* bouton */
/*
.sensipark-cta-button {
  flex: 0 0 auto;

  min-height: 48px;

  padding:
    0 20px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 8px;

  background: #4a9100;

  color: #fff;

  font-family: "Poppins", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;

  text-decoration: none;

  transition:
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}


.sensipark-cta-button:hover,
.sensipark-cta-button:focus-visible {
  background: #376d00;

  transform:
    translateY(-2px);

  box-shadow:
    0 8px 18px rgba(55, 109, 0, 0.16);
}


/* ----------------------------------------------------------------------
   MOBILE
   ---------------------------------------------------------------------- */

@media (max-width: 720px) {

  .sensipark-final-cta {
    padding:
      72px 20px;
  }


  .sensipark-cta-panel {
    grid-template-columns: 1fr;

    box-shadow:
      8px 8px 0 var(--sensi-orange, #d65a17);
  }


  .sensipark-cta-rail {
    min-height: 54px;

    padding:
      12px 18px;

    flex-direction: row;
  }


  .sensipark-cta-rail span {
    writing-mode: initial;

    transform: none;
  }


  .sensipark-cta-rail strong {
    font-size: 2rem;
  }


  .sensipark-cta-content {
    padding:
      48px 26px 64px;
  }


  .sensipark-cta-markings {
    width: 55%;
    height: 70px;
  }

}

/* =========================================================
   ACCESSIBILITÉ
   ========================================================= */

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

  .label-color.is-leaving,
  .label-content.is-leaving,
  .label-content.is-entering {
    animation-duration: 1ms;
  }

}


@media (max-width: 980px) {
  .wayfinding-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .wayfinding-grid article:nth-child(11) {
    grid-column: auto;
  }

  .case-color-tabs {
    grid-template-columns: 1fr;
  }

  .case-color-picker {
    min-height: 360px;
  }

  .web-story, .web-story.reverse-story {
    grid-template-columns: minmax(250px, .8fr) minmax(330px, 1.2fr);
    gap: 50px;
  }
}

@media (max-width: 700px) {
  .sensi-case-main {
    padding: calc(62px + 22px) 14px 80px;
  }

  .sensi-breadcrumb {
    margin-bottom: 30px;
  }

  .sensi-case-hero {
    padding-bottom: 80px;
  }

  .sensi-case-hero img {
    width: 92%;
  }

  .sensi-case-hero p {
    max-width: 340px;
    font-size: .73rem;
  }

  .case-section {
    padding-bottom: 92px;
  }

  .case-section-heading {
    margin-bottom: 46px;
  }

  .case-section-heading span {
    left: 8px;
    font-size: 2.4rem;
  }

  .case-section-heading h2 {
    font-size: 1.4rem;
  }

  .case-color-tabs {
    display: none;
  }

  .case-color-picker {
    min-height: auto;
  }

  .case-color-picker::after {
    display: none;
  }

  .case-color-tablist {
    position: static;
    grid-template-columns: repeat(4, 1fr);
    gap: 9px;
  }

  .case-color-tab, .case-color-tab:hover, .case-color-tab:focus-visible, .case-color-tab[aria-selected="true"] {
    width: 100%;
    height: 58px;
    border-radius: 15px;
  }

  .case-color-tab[aria-selected="true"] {
    transform: translateY(-5px);
  }

  .case-color-panel h3 {
    font-size: 1.35rem;
  }

  .case-color-subtitle {
    font-size: .72rem;
  }

  .case-color-panel>p:last-of-type {
    font-size: .78rem;
  }

  .case-shades i {
    width: min(145px, 47%);
    border-width: 9px;
    border-radius: 19px;
  }

  .brand-logo-plaque {
    width: 88%;
    margin-top: 72px;
    padding: 24px 26px;
  }

  .wayfinding-grid {
    margin-right: -14px;
    padding: 0 14px 18px 0;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }

  .wayfinding-grid article, .wayfinding-grid article:nth-child(11) {
    min-height: 258px;
    padding: 11px 11px 15px;
    flex: 0 0 150px;
    border-radius: 20px;
    scroll-snap-align: start;
  }

  .wayfinding-grid article b {
    margin-top: 15px;
    font-size: .72rem;
  }

  .wayfinding-grid article span {
    font-size: .66rem;
  }

  .wayfinding-picto {
    width: 100%;
    height: 168px;
    padding: 18px 24px;
    border-radius: 15px;
  }

  .web-intro {
    min-height: 250px;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .web-intro p {
    max-width: 330px;
    font-size: .78rem;
  }

  .web-intro p:nth-of-type(2) {
    margin-top: 0;
  }

  .web-intro>p:nth-of-type(1),
  .web-intro>p:nth-of-type(2),
  .web-intro>svg {
    grid-column: 1;
  }

  .web-intro>svg {
    width: 100%;
    justify-self: stretch;
  }

  .flow-heading {
    margin-top: 55px;
  }

  .flow-heading h3 {
    font-size: 1.55rem;
  }

  .flow-heading p {
    font-size: .68rem;
  }

  .web-stories {
    gap: 78px;
  }

  .web-story, .web-story.reverse-story {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .web-story.reverse-story .screen-column {
    order: 0;
  }

  .screen-column {
    min-height: 430px;
  }

  .single-screen img {
    width: min(210px, 76%);
  }

  .screen-pair img {
    width: 43%;
  }

  .screen-pair img:last-child {
    margin-top: 130px;
  }

  .web-story h4 {
    font-size: 1rem;
  }

  .web-story p {
    font-size: .78rem;
    line-height: 1.65;
  }

  .label-system-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .label-system-grid figure {
    width: min(290px, 88%);
    margin: 0 auto;
  }

  .label-system-grid h4 {
    font-size: 1.25rem;
  }

  .label-system-grid p {
    font-size: .78rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .case-color-tab, .case-color-panel {
    animation: none;
    transition: none;
  }
}