@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: "Inter";
  font-weight: 400;
  src: url("../fonts/Inter-Regular.otf") format("opentype");
}
@font-face {
  font-family: "Inter";
  font-weight: 500;
  src: url("../fonts/Inter-Medium.otf") format("opentype");
}
@font-face {
  font-family: "Inter";
  font-weight: 700;
  src: url("../fonts/Inter-Bold.otf") format("opentype");
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  html {
    font-size: 22px;
  }
}
body {
  width: 100%;
  font-family: Inter, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background-color: #dedede;
}

main {
  display: flex;
  flex-direction: column;
}

h1, h2, h3 {
  font-family: "Bricolage Grotesque", sans-serif;
}

ul {
  list-style-type: disc;
  list-style-position: inside;
}

ol {
  list-style-type: number;
  list-style-position: inside;
}

li {
  margin-bottom: 5px;
}

p, li {
  font-size: 1rem;
  line-height: 1.3;
}

strong {
  font-weight: 600;
}

.u-hidden {
  display: none !important;
}

.landing {
  margin: 0 auto;
  color: #2a2a2a;
}
@media screen and (max-width: 768px) {
  .landing {
    padding: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1600px) {
  .landing {
    width: 90%;
    padding: 40px 0;
  }
}
@media screen and (min-width: 1600px) {
  .landing {
    max-width: 80%;
    padding: 60px 0;
  }
}

.landing_body {
  margin: 15vh 0;
}

.header {
  width: -webkit-fill-available;
  display: flex;
  justify-content: space-between;
  font-family: "Bricolage Grotesque", sans-serif;
}
.header h4 {
  color: #2a2a2a;
}
.projectBody .header {
  margin: 1rem auto;
}
@media screen and (max-width: 1200px) {
  .projectBody .header {
    padding: 0 16px;
    max-width: 800px;
  }
}
@media screen and (min-width: 1200px) {
  .projectBody .header {
    max-width: 900px;
  }
}
.projectBody .header h4 {
  color: white;
  font-weight: 300;
  font-size: 1rem;
}

.landing_body_title {
  font-size: 19px;
  font-weight: 400;
}

.landing_body_subtitle {
  font-size: 28px;
  line-height: normal;
  margin-bottom: 16px;
  max-width: 1200px;
}

.projectList {
  background-color: #1e1e1e;
}

.catalogue {
  background-color: #1E1E1E;
}
.projectBody .catalogue {
  border-top: 1px solid #444;
  margin-top: 30px;
}

.catalogue_items {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .catalogue_items {
    padding: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1600px) {
  .catalogue_items {
    width: 90%;
    padding: 3vw 0;
  }
}
@media screen and (min-width: 1600px) {
  .catalogue_items {
    max-width: 80%;
    padding: 3.5vw 0;
  }
}

a {
  text-decoration: none;
}

.landing_centeredTitle {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  text-align: center;
  color: white;
  padding: 8vh 0 6vh 0;
}
.landing_centeredTitle.-large-padding-bot {
  padding-bottom: 25vh;
}
.landing_centeredTitle a {
  color: white;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .landing_centeredTitle {
    font-size: 28px;
  }
}
@media screen and (min-width: 768px) {
  .landing_centeredTitle {
    font-size: 3.2vw;
  }
}

.heroScrollLink {
  display: inline-block;
  text-decoration: underline;
  margin-right: 3vw;
  margin-top: 3vh;
  color: #606060;
  font-family: "Bricolage Grotesque", sans-serif;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .heroScrollLink {
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) {
  .heroScrollLink {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 1100px) {
  .heroScrollLink.-desktop {
    display: none;
  }
}
@media screen and (min-width: 1100px) {
  .heroScrollLink.-mobile {
    display: none;
  }
}

.button p {
  color: #6093ff;
  font-size: 0.8rem;
  border: 1px solid #6093ff;
  padding: 10px 20px;
  border-radius: 30px;
}

@media screen and (max-width: 768px) {
  .landing {
    padding: 20px;
  }
  .landing_body_title {
    margin: 40px 0 15px 0;
  }
  .u-hide-mobile {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .landing {
    padding: 40px 0;
    width: 90%;
  }
  .landing_body_title {
    font-size: 2vw;
    margin: 0 0 1.4vw 0;
  }
  .landing_body_subtitle {
    font-size: 3.2vw;
  }
  h4 {
    font-size: 1.4vw;
  }
}
.u-display-contents {
  display: contents;
}

#recipe-title {
  color: white;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.cover-gallery {
  display: flex;
  justify-content: space-around;
  margin: 0px -10px -10px -10px;
  flex-wrap: wrap;
}

.cover {
  flex: 1;
  margin: 10px;
  text-align: center;
  min-width: 250px;
}

.cover img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.illustration img {
  max-width: 100%;
  max-height: 400px;
  height: auto;
}

figcaption {
  margin-top: 10px;
  font-style: italic;
  color: #a78483;
}

.projectBody {
  background-color: #1e1e1e;
}

.projectMain {
  margin: 0 auto;
}

@media screen and (max-width: 1200px) {
  .u-projectSectionWrapper {
    margin: 2rem auto;
  }
}
@media screen and (min-width: 1200px) {
  .u-projectSectionWrapper {
    margin: 4rem auto;
  }
}

.u-heroWrapper {
  width: -webkit-fill-available;
}
@media screen and (max-width: 768px) {
  .u-heroWrapper {
    margin: 0.5rem auto 0 auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .u-heroWrapper {
    margin: 2rem auto 0 auto;
  }
}
@media screen and (min-width: 1200px) {
  .u-heroWrapper {
    margin: 4vw auto 0 auto;
  }
}

.u-illu-fullWidth {
  width: 100%;
}
.u-illu-fullWidth img {
  width: 100%;
  max-height: none;
}

p, li {
  color: #eee;
}

ul {
  margin-top: 10px;
}

h1 {
  line-height: normal;
  font-weight: 400;
  margin: 4vw 0;
}

.u-illu-contentWidth {
  width: 100%;
  margin: 0 auto;
}
.u-illu-contentWidth img {
  width: 100%;
  max-height: none;
}

.u-illu-contentWidth-background {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.u-illu-contentWidth-background img {
  width: 100%;
  max-height: none;
  margin: 0 auto;
}

.-background-white {
  background-color: #dedede;
  padding: 5px 0;
  margin: 30px 0;
}

.project_footer {
  margin: 8vh 0 12vh 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1e1e1e;
}

.keyFact {
  width: fit-content;
  background-image: linear-gradient(-74deg, #4480ff, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: normal;
}

.keyFact div {
  /*width: fit-content;*/
  /*background-image: linear-gradient(-74deg, #4480ff, #ffffff);*/
  /*-webkit-background-clip: text;*/
  /*background-clip: text;*/
  /*-webkit-text-fill-color: transparent;*/
}

.keyNumber {
  color: white;
  -webkit-text-fill-color: white;
  display: inline-block;
  font-feature-settings: "tnum";
  vertical-align: text-bottom;
}

.char-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.number-roller {
  will-change: transform;
}

.char {
  display: inline-block;
  white-space: nowrap;
}

@media screen and (max-width: 1200px) {
  h1 {
    font-size: 2rem;
    margin: 4vw auto;
  }
  .keyFact {
    font-size: 1.6rem;
    margin: 6vw auto;
  }
  .illustration {
    margin: 20px 0;
  }
  .u-projectSectionWrapper, .u-heroWrapper {
    max-width: 800px;
    padding: 0 16px;
  }
  .u-illu-contentWidth-background img {
    max-width: calc(100% - 16px);
  }
  #recipe-title {
    max-width: 800px;
  }
}
@media screen and (min-width: 1200px) {
  h1 {
    font-size: 2.7rem;
    margin: 4vw auto;
  }
  .keyFact {
    margin: 4vw auto;
    font-size: 1.8rem;
  }
  .illustration {
    margin: 50px 0;
  }
  .u-projectSectionWrapper, .u-heroWrapper {
    max-width: 900px;
  }
  .u-illu-contentWidth {
    max-width: 900px;
  }
  .u-illu-contentWidth-background img {
    max-width: 900px;
  }
  #recipe-title {
    max-width: 900px;
  }
}
.projectSubtitle {
  font-size: 1.3rem;
  font-weight: 500;
  color: #6093ff;
  margin-bottom: 1.1rem;
}

.textLine {
  margin-bottom: 1rem;
}
.textLine span {
  color: #6093ff;
  margin-right: 0.4rem;
}

/* ── TAG ROW ── */
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.tag {
  font-weight: 500;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .tag {
    font-size: 9px;
  }
}
@media screen and (min-width: 768px) {
  .tag {
    font-size: 11px;
  }
}

.tag-blue {
  background: rgba(79, 142, 247, 0.14);
  border-color: rgba(79, 142, 247, 0.28);
  color: #4f8ef7;
}

.tag-sep {
  width: 1px;
  height: 13px;
  background: rgba(255, 255, 255, 0.07);
  margin: 0 2px;
  flex-shrink: 0;
}

/* ── META ROW ── */
.hero-meta {
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: 1rem;
}

.meta-item {
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

@media screen and (max-width: 768px) {
  .meta-item {
    margin-right: 16px;
    padding: 10px 16px 10px 0;
  }
  .meta-item:nth-child(3) {
    border-right: none;
    margin-right: 0;
  }
}
@media screen and (min-width: 768px) {
  .meta-item {
    margin-right: 24px;
    padding: 13px 24px 13px 0;
  }
  .meta-item:last-child {
    border-right: none;
    margin-right: 0;
  }
}
.meta-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.22);
  margin-bottom: 5px;
}

.meta-value {
  font-size: 13px;
  font-weight: 450;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.01em;
  line-height: normal;
}

.cardProjectAnchor {
  text-decoration: none;
  display: block;
}
@media screen and (max-width: 768px) {
  .cardProjectAnchor {
    margin: 30px 0 70px 0;
  }
}
@media screen and (min-width: 768px) {
  .cardProjectAnchor {
    width: 47%;
    margin: 30px 0 50px 0;
  }
}

.cardProject {
  display: flex;
}
@media screen and (max-width: 1440px) {
  .cardProject {
    flex-direction: column;
  }
}

.cardProject_image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .cardProject_image {
    height: 50vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1440px) {
  .cardProject_image {
    width: 100%;
    height: 20vw;
    min-height: 200px;
  }
}
@media screen and (min-width: 1440px) {
  .cardProject_image {
    width: 50%;
    height: 12vw;
    flex-shrink: 0;
    margin-right: 20px;
  }
}

.cardProject_content {
  display: flex;
  flex-direction: column;
}

.cardProject_content_service {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: #727272;
}
@media screen and (max-width: 1440px) {
  .cardProject_content_service {
    margin: 18px 0 8px 0;
  }
}
@media screen and (min-width: 1440px) {
  .cardProject_content_service {
    margin: 0px 0 8px 0;
  }
}

.cardProject_content_title {
  font-size: 28px;
  color: #f6f6f6;
}

.cardProject_content_description {
  font-size: 14px;
  line-height: normal;
  color: #727272;
  margin: 20px 0;
}

.cardProject_content_cta {
  font-size: 14px;
  font-weight: 500;
  color: #4480ff;
  margin-top: auto;
}

.slides {
  width: 100%;
  background-color: red;
}
@media screen and (max-width: 1100px) {
  .slides {
    display: none;
  }
}

.slide {
  width: 100%;
  height: 200vh;
  position: relative;
  background-size: auto;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.slide#s1 {
  background-color: hsl(0, 0%, 90%);
}
.slide#s2 {
  background-color: hsl(0, 0%, 94%);
}
.slide#s3 {
  background-color: hsl(0, 0%, 98%);
  height: 100vh;
}

.slide_content {
  width: 100%;
  position: absolute;
  top: 30vh;
  text-align: center;
  pointer-events: none;
}

.slide_title {
  width: 100%;
  text-align: center;
  filter: blur(8px);
  opacity: 0;
  transform: perspective(1200px) translateY(-40px) scale(0.85) rotateX(-22deg);
  transition: filter 1s;
}
@media screen and (max-width: 768px) {
  .slide_title {
    font-size: 28px;
  }
}
@media screen and (min-width: 768px) {
  .slide_title {
    font-size: 5.2vw;
  }
}

.slide_activate, .slide_close {
  width: fit-content;
  margin: 10vh auto 0 auto;
  pointer-events: none;
  border: 2px solid black;
  border-radius: 8px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
  opacity: 0;
  transform: translateY(40px);
}
.slide_activate p, .slide_close p {
  color: black;
  transition: color 0.2s ease-in-out;
}
@media screen and (max-width: 768px) {
  .slide_activate p, .slide_close p {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .slide_activate p, .slide_close p {
    font-size: 1.2vw;
  }
}
.slide_activate:hover, .slide_close:hover {
  background-color: black;
}
.slide_activate:hover p, .slide_close:hover p {
  color: white;
}

#s1 .slide_close {
  margin-top: 55vh;
}

.slide_bubbleWrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
  will-change: transform;
  pointer-events: none;
}

.slide_cubeWrapper {
  position: relative;
  width: 100vw;
  height: 40vh;
  pointer-events: none;
}

.slide_bubble {
  width: 25vw;
  position: absolute;
  opacity: 0;
}

.big-rect {
  width: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 35vh;
  display: flex;
  justify-content: center;
  overflow: visible;
  z-index: 20;
}

.rect {
  margin: 0 16px;
  z-index: 40;
  flex-grow: 1;
  max-width: 17vw;
  position: relative;
  display: flex;
  flex-direction: column;
}
.rect:nth-child(1) .rect_header::before {
  content: "1";
  position: absolute;
  top: 1.5vw;
  left: 1.6vw;
  color: #888;
  font-size: 1.1vw;
  font-weight: 500;
  font-family: inherit;
}
.rect:nth-child(2) .rect_header::before {
  content: "2";
  position: absolute;
  top: 1.5vw;
  left: 1.6vw;
  color: #888;
  font-size: 1.1vw;
  font-weight: 500;
  font-family: inherit;
}
.rect:nth-child(3) .rect_header::before {
  content: "3";
  position: absolute;
  top: 1.5vw;
  left: 1.6vw;
  color: #888;
  font-size: 1.1vw;
  font-weight: 500;
  font-family: inherit;
}
.rect:nth-child(4) .rect_header::before {
  content: "4";
  position: absolute;
  top: 1.5vw;
  left: 1.6vw;
  color: #888;
  font-size: 1.1vw;
  font-weight: 500;
  font-family: inherit;
}
.rect:hover .rect_list_item p {
  transform: translateX(3px);
}
.rect:hover .rect_list_item span {
  color: white;
}
.rect:hover .rect_list_item:nth-child(1) p, .rect:hover .rect_list_item:nth-child(1) span {
  transition-delay: 0s;
}
.rect:hover .rect_list_item:nth-child(2) p, .rect:hover .rect_list_item:nth-child(2) span {
  transition-delay: 0.07s;
}
.rect:hover .rect_list_item:nth-child(3) p, .rect:hover .rect_list_item:nth-child(3) span {
  transition-delay: 0.14s;
}
.rect:hover .rect_list_item:nth-child(4) p, .rect:hover .rect_list_item:nth-child(4) span {
  transition-delay: 0.21s;
}
.rect:hover .rect_list_item:nth-child(5) p, .rect:hover .rect_list_item:nth-child(5) span {
  transition-delay: 0.28s;
}

.rect_header {
  position: relative;
  height: 10vw;
  margin-bottom: 16px;
  clip-path: inset(0 100% 100% 0);
  transition: clip-path 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  background: linear-gradient(to top right, hsl(210, 12.62%, 88.71%) 0%, #fff 100%);
  padding: 2.5vw 3.5vw 2.5vw 3.5vw;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  line-height: 2vh;
  font-weight: 450;
  font-size: 1.1vw;
}

.cube-rect-inner {
  width: 100%;
  height: 100%;
  transform-origin: top left;
  background: inherit;
}

#bubble1 {
  top: -4vh;
  left: 4vh;
}

#bubble2 {
  top: 0vh;
  right: 4vh;
}

#bubble3 {
  top: 45vh;
  right: 25vh;
}

#bubble4 {
  top: 45vh;
  left: 35vh;
}

.moons {
  filter: brightness(1.15);
}

.rect_title {
  font-size: 1vw;
}

.rect_list_item {
  overflow: hidden;
  list-style-type: none;
  margin-bottom: 0.8vh;
}

.rect_list_item_content {
  display: flex;
  transform: translateY(40px);
  opacity: 0;
}
.rect_list_item_content p, .rect_list_item_content span {
  color: black;
  font-size: 0.8vw;
  transition: transform 0.18s, color 0.18s;
  margin: 0 5px;
  will-change: transform;
}

#s2 .slide_close {
  margin-top: 18vh;
}

.shape_wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 140vh;
  z-index: -1;
  overflow: hidden;
  will-change: transform;
}

.shape {
  position: absolute;
  will-change: transform;
  opacity: 0;
  background: linear-gradient(to top right, hsl(0, 52%, 31%) 0%, #bc0063 100%);
  transition: opacity 0.8s;
}
.shape:nth-child(1) {
  z-index: calc(70 - 10) !important;
}
.shape:nth-child(1) .shape_secondInner {
  transition-delay: 0s;
}
.shape:nth-child(1) .shape_label {
  transition-delay: 1s;
}
.shape:nth-child(2) {
  z-index: calc(70 - 20) !important;
}
.shape:nth-child(2) .shape_secondInner {
  transition-delay: 0.05s;
}
.shape:nth-child(2) .shape_label {
  transition-delay: 1.05s;
}
.shape:nth-child(3) {
  z-index: calc(70 - 30) !important;
}
.shape:nth-child(3) .shape_secondInner {
  transition-delay: 0.1s;
}
.shape:nth-child(3) .shape_label {
  transition-delay: 1.1s;
}
.shape:nth-child(4) {
  z-index: calc(70 - 40) !important;
}
.shape:nth-child(4) .shape_secondInner {
  transition-delay: 0.15s;
}
.shape:nth-child(4) .shape_label {
  transition-delay: 1.15s;
}
.shape:nth-child(5) {
  z-index: calc(70 - 50) !important;
}
.shape:nth-child(5) .shape_secondInner {
  transition-delay: 0.2s;
}
.shape:nth-child(5) .shape_label {
  transition-delay: 1.2s;
}
.shape:nth-child(6) {
  z-index: calc(70 - 60) !important;
}
.shape:nth-child(6) .shape_secondInner {
  transition-delay: 0.25s;
}
.shape:nth-child(6) .shape_label {
  transition-delay: 1.25s;
}
.-successDrop .shape:hover {
  opacity: 1;
}
.-successDrop .shape:hover .shape_firstInner {
  opacity: 1;
  border-color: rgba(47, 107, 255, 0.28);
  box-shadow: 0 26px 70px -50px rgba(15, 17, 22, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.-successDrop .shape:hover .shape_description {
  pointer-events: auto;
}
.-successDrop .shape:hover .shape_description_content, .-successDrop .shape:hover .shape_description_title {
  opacity: 1;
  transform: translateY(0) rotateZ(0deg);
  transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1), transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.shape_description {
  position: absolute;
  top: calc(50% - 225px);
  left: calc(50% + 225px + 32px);
  text-align: left;
  pointer-events: none;
  width: 15vw;
}

.shape_description_title {
  color: white;
  font-size: 1.5vw;
  font-weight: 500;
  opacity: 0;
  transform-origin: right bottom;
  transition: opacity 0.2s cubic-bezier(0.19, 1, 0.22, 1), transform 0.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.shape_description_content {
  color: white;
  font-size: 0.9vw;
  margin-top: 1vh;
  opacity: 0;
  transform-origin: right bottom;
  transition: opacity 0.2s cubic-bezier(0.19, 1, 0.22, 1), transform 0.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.shape, .shape_firstInner, .shape_secondInner {
  cursor: pointer;
  border-radius: 6px;
}

.shape_firstInner {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.6s;
  background: linear-gradient(to bottom left, #FF80A0, #FAFDBF);
}
.shape:hover .shape_firstInner, .shape:focus .shape_firstInner {
  opacity: 1;
}

.shape_secondInner {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: all 0.2s;
  /* Specular glass */
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.38) 100%);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 12px 40px rgba(15, 17, 22, 0.1), inset 0 1px 0 rgb(255, 255, 255), inset 0 -1px 0 rgba(15, 17, 22, 0.05);
}
.-successDrop .shape_secondInner {
  opacity: 1;
}

.shape_label {
  color: white;
  font-size: 16px;
  font-weight: 500;
  position: absolute;
  z-index: 100;
  top: 0.4vh;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition-delay: 0.5s;
  transition: opacity 1s;
}
.-successDrop .shape_label {
  opacity: 1;
}

.dropbox {
  position: relative;
  z-index: -2;
  width: 220px;
  height: 220px;
  margin: 14vh auto 0 auto;
  opacity: 0;
  pointer-events: none;
  background: #f8fafc;
  border-radius: 16px;
  box-shadow: 0 2px 4px rgba(20, 37, 77, 0.06), 0 16px 40px -20px rgba(20, 37, 77, 0.18), inset 0 4px 32px rgba(32, 70, 180, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: box-shadow 0.28s ease, background 0.28s ease, transform 0.28s ease;
}
.dropbox::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 8px;
  border: 1.5px dashed rgba(20, 37, 77, 0.13);
  transition: border-color 0.22s ease;
  pointer-events: none;
}
.dropbox p {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(20, 37, 77, 0.35);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 0 20px;
  user-select: none;
  transition: color 0.22s ease;
}
.dropbox.dragover {
  background: #f0f5ff;
  transform: scale(1.03);
  box-shadow: 0 2px 4px rgba(20, 37, 77, 0.06), 0 20px 48px -22px rgba(34, 104, 255, 0.3), inset 0 8px 40px rgba(34, 104, 255, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.dropbox.dragover::before {
  border-color: rgba(34, 104, 255, 0.35);
  animation: dz-spin 20s linear infinite;
}
.dropbox.dragover p {
  color: rgba(34, 104, 255, 0.7);
}

@keyframes dz-spin {
  to {
    transform: rotate(360deg);
  }
}
/* ─────────────────────────────────────────────
   SLIDE 3 — v9
   Canvas bg: #f6f8fc
   Primary:   #3f77e8
   ───────────────────────────────────────────── */
/* ── Slide layout (unchanged) ── */
#s3 .slide_close {
  margin-top: 18vh;
}
#s3 .slide_title {
  text-align: left;
}
#s3 .slide_close,
#s3 .slide_activate {
  margin-left: 0;
}
#s3 .slide_content {
  width: auto;
  display: flex;
  top: 15vh;
  margin-left: 5vw;
  margin-right: 5vw;
}

.s3_wrapper {
  margin-left: 5vw;
}

/* ── Canvas shell ── */
.s3_canvas {
  width: 40vw;
  height: fit-content;
  overflow: hidden;
  position: relative;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  background: #e8ecf4;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset, 0 6px 16px rgba(20, 24, 32, 0.12);
}

/* ── Browser bar ── */
.s3_browserBar {
  width: 100%;
  height: 3.4vh;
  min-height: 26px;
  background-color: #e2e7f0;
  display: flex;
  align-items: center;
  padding: 0 1.2vh;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(20, 24, 32, 0.1);
  gap: 1vh;
  flex-shrink: 0;
  user-select: none;
}

.s3_browserBar_dots {
  display: flex;
  align-items: center;
  gap: 0.48vh;
  flex-shrink: 0;
}

.s3_browserBar_dot {
  width: 1.05vh;
  height: 1.05vh;
  min-width: 8px;
  min-height: 8px;
  border-radius: 50%;
}

.s3_browserBar_dot:nth-child(1) {
  background: #ff5f57;
  box-shadow: inset 0 0 0 0.5px rgba(0, 0, 0, 0.15);
}

.s3_browserBar_dot:nth-child(2) {
  background: #febc2e;
  box-shadow: inset 0 0 0 0.5px rgba(0, 0, 0, 0.1);
}

.s3_browserBar_dot:nth-child(3) {
  background: #28c840;
  box-shadow: inset 0 0 0 0.5px rgba(0, 0, 0, 0.1);
}

.s3_browserBar_nav {
  display: flex;
  align-items: center;
  gap: 0.5vh;
  flex-shrink: 0;
}

.s3_browserBar_navBtn {
  width: 1.4vh;
  height: 1.4vh;
  min-width: 10px;
  min-height: 10px;
  border-radius: 50%;
  background: rgba(18, 20, 24, 0.14);
}

.s3_browserBar_url {
  flex: 1;
  height: 1.8vh;
  min-height: 14px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 6px;
  box-shadow: 0 0 0 1px rgba(20, 24, 32, 0.08);
  display: flex;
  align-items: center;
  padding: 0 0.6vh;
  gap: 0.4vh;
  overflow: hidden;
}

.s3_browserBar_urlLock {
  width: 0.9vh;
  height: 0.9vh;
  min-width: 7px;
  min-height: 7px;
  border-radius: 2px;
  background: rgba(18, 20, 24, 0.22);
  flex-shrink: 0;
}

.s3_browserBar_urlText {
  flex: 1;
  height: 0.6vh;
  min-height: 4px;
  border-radius: 999px;
  background: rgba(18, 20, 24, 0.12);
}

.s3_browserBar_actions {
  display: flex;
  align-items: center;
  gap: 0.5vh;
  flex-shrink: 0;
}

.s3_browserBar_icon {
  width: 1.4vh;
  height: 1.4vh;
  min-width: 10px;
  min-height: 10px;
  border-radius: 4px;
  background: rgba(18, 20, 24, 0.12);
}

/* ── Canvas content ── */
.s3_canvas_scroll {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.s3_canvas_content {
  width: calc(100% - 3.6vh);
  margin: 0 auto;
  padding-top: 2.2vh;
  padding-bottom: 2.2vh;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

/* ─────────────────────────────────────────────
   WIDE — hero banner
   ───────────────────────────────────────────── */
.s3c_imgWide {
  flex-shrink: 0;
}

.s3_wideMedia {
  height: 12vh;
  background: #c8cedc;
  border-radius: 8px;
  margin-bottom: 0.6vh;
  position: relative;
  overflow: hidden;
}

/* Badge: small pill top-left */
.s3_wideBadge {
  position: absolute;
  left: 1.4vh;
  top: 1.4vh;
  width: 3vh;
  height: 0.85vh;
  border-radius: 999px;
  background: rgba(18, 20, 24, 0.15);
  opacity: 0;
}

/* Title: prominent bar */
.s3_wideTitle {
  position: absolute;
  left: 1.4vh;
  right: 30%;
  top: 3.2vh;
  height: 1.2vh;
  border-radius: 999px;
  background: rgba(18, 20, 24, 0.18);
  opacity: 0;
}

/* Sub: narrower, lighter */
.s3_wideSub {
  position: absolute;
  left: 1.4vh;
  right: 48%;
  top: 5.2vh;
  height: 0.75vh;
  border-radius: 999px;
  background: rgba(18, 20, 24, 0.1);
  opacity: 0;
}

.s3_wideChips {
  display: flex;
  gap: 0.5vh;
  justify-content: flex-start;
}

.s3_wideChip {
  width: 5vh;
  height: 1.3vh;
  background: #c8cedc;
  border-radius: 999px;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   TRIO — three cards
   ───────────────────────────────────────────── */
.s3c_imgTrio {
  display: flex;
  justify-content: space-between;
  gap: 0.7vh;
  flex-shrink: 0;
  margin-top: 0.5vh;
}

.s3c_imgTrio_item {
  width: 33%;
}

.s3_cardMedia {
  height: 9vh;
  background: #c8cedc;
  border-radius: 6px;
  margin-bottom: 0.3vh;
}

.s3_cardTitle {
  height: 0.65vh;
  width: 85%;
  background: #c8cedc;
  border-radius: 999px;
  margin-bottom: 0.3vh;
}

.s3_cardMeta {
  width: 55%;
  height: 0.55vh;
  background: #c8cedc;
  border-radius: 999px;
}

/* ─────────────────────────────────────────────
   TEXT BLOCK — headline + body + CTA
   ───────────────────────────────────────────── */
.sc3_textBlock {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  margin-top: 0.5vh;
}

/* Line widths: headline → subhead → 3 body lines → short last */
.sc3_textBlock_line {
  height: 0.65vh;
  background: #c8cedc;
  border-radius: 999px;
  margin-bottom: 0.25vh;
}

.sc3_textBlock_line:nth-child(1) {
  width: 48%;
} /* headline placeholder */
.sc3_textBlock_line:nth-child(2) {
  width: 72%;
} /* subhead */
.sc3_textBlock_line:nth-child(3) {
  width: 100%;
} /* body */
.sc3_textBlock_line:nth-child(4) {
  width: 96%;
} /* body */
.sc3_textBlock_line:nth-child(5) {
  width: 88%;
} /* body */
.sc3_textBlock_line:nth-child(6) {
  width: 52%;
} /* last line, short */
.sc3_textBlock_CTA {
  margin-top: 0.4vh;
  background: #c8cedc;
  width: 20%;
  height: 2vh;
  border-radius: 6px;
  align-self: flex-start;
}

/* ─────────────────────────────────────────────
   MOSA ROW 1 — feature tiles (icon + label)
   ───────────────────────────────────────────── */
.sc3_mosa {
  display: flex;
  justify-content: space-between;
  gap: 0.6vh;
  flex-shrink: 0;
  margin-top: 0.5vh;
}

.sc3_mosa_item {
  flex: 1;
  height: 5vh;
  background: #c8cedc;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.s3_tileIcon {
  position: absolute;
  left: 0.75vh;
  top: 0.75vh;
  width: 1.2vh;
  height: 1.2vh;
  border-radius: 4px;
  background: rgba(18, 20, 24, 0.16);
  opacity: 0;
}

.s3_tileLine {
  position: absolute;
  height: 0.55vh;
  border-radius: 999px;
  background: rgba(18, 20, 24, 0.12);
  opacity: 0;
}

.sc3_mosa_item .s3_tileLine:nth-child(2) {
  left: 0.75vh;
  right: 0.75vh;
  top: 2.4vh;
}

.sc3_mosa_item .s3_tileLine:nth-child(3) {
  left: 0.75vh;
  right: 1.8vh;
  top: 3.3vh;
}

/* ─────────────────────────────────────────────
   MOSA ROW 2 — stat/metric bar (different shape)
   Each item is a compact stat: big number + label
   ───────────────────────────────────────────── */
.sc3_mosa:last-child {
  gap: 0.6vh;
}

.sc3_mosa:last-child .sc3_mosa_item {
  height: 3.8vh; /* shorter — stat bar, not card */
  border-radius: 6px;
}

/* Stat number (big) */
.sc3_mosa:last-child .s3_tileIcon {
  left: 0.7vh;
  top: 0.7vh;
  width: 1.8vh;
  height: 1.1vh;
  border-radius: 3px;
}

/* Stat label (narrow, below) */
.sc3_mosa:last-child .s3_tileLine:nth-child(2) {
  left: 0.7vh;
  right: 1.4vh;
  top: 2.1vh;
  height: 0.5vh;
}

/* Hide third line for stat bar — not needed */
.sc3_mosa:last-child .s3_tileLine:nth-child(3) {
  display: none;
}

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