@font-face {
  font-family: 'KH Teka';
  src: url('/fonts/KHTeka-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PP Fraktion Mono';
  src: url('/fonts/PPFraktionMono-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Colors */
  --color-black: #0B0B0C;
  --color-black-35: rgba(11, 11, 12, 0.35);
  --color-dark-gray: #404049;
  --color-white: #E6E6ED;

  /* Typography - Font Families */
  --font-display: 'KH Teka', system-ui, sans-serif;
  --font-mono: 'PP Fraktion Mono', monospace;

  /* Typography - Desktop */
  --font-size-display: 8rem;
  --line-height-display: 0.97;
  --global-spacing: -0.03em;
  --mono-spacing: -.02em;

  --font-size-h1: 4rem;
  --line-height-h1: 0.97;
  --letter-spacing: 0em;

  --font-size-p: 2rem;
  --line-height-p: 0.97;


  --font-size-mono: 0.875rem;
  --line-height-mono: 0.97;
  --letter-spacing-mono: 0.02em;

  /* Typography - Mobile */
  --font-size-h1-mobile: 2.625rem;
  --line-height-h1-mobile: 0.97;
  --letter-spacing-h1-mobile: -0.02em;

  --font-size-h2-mobile: 1.25rem;
  --line-height-h2-mobile: 0.97;
  --letter-spacing-h2-mobile: -0.02em;

  --font-size-mono-mobile: 0.75rem;
  --line-height-mono-mobile: 0.97;

  /* Grid */
  --grid-columns: 12;
  --grid-gap: 1.5rem;
  --grid-margin: 1.5rem;

  /* Spacing Scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 0.75rem;
  --space-base: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;
  --padding-global: 1rem;

  /* Easing */
  --ease-primary: cubic-bezier(0.055, 0.72, 0.165, 1);
  --ease-secondary: cubic-bezier(0.74, 0.045, 0, 1);
}

/* Global Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
}

body {
  font-family: var(--font-display);
  background-color: var(--color-black);
  color: var(--color-white);
  overflow: hidden;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.page-wrap {

  visibility: hidden;
  opacity: 0;
}

.design-wrap {
  position: relative;
  width: 100%;
  height: 0;
  overflow: hidden;
  z-index: 40;
}

.design-contain::-webkit-scrollbar {
  display: none;
}

.design-contain {
  padding: var(--padding-global);
  width: 100%;
  height: 100%;
  min-height: 100vh;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;

  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  /* padding-bottom: var(--space-5xl); */

}

.ds-header {
  padding-bottom: var(--space-4xl);
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.ds-header-contain {
  display: flex;
  flex-direction: column;
  gap: 2px;
  
}

.ds-section {
  opacity: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-dark-gray);
}

.ds-div {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  align-items: start;
}

.ds-fraktion {
  font-family: var(--font-mono) !important;
}

.ds-div a {
  text-decoration: none;
  color: var(--color-white);
}

.ds-color-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 1rem;
}

.ds-color-text {
  width: 100%;
}

.ds-color-block {
  width: 100%;
  height: 2rem;
  border-radius: 4px;
}

.is-black {
  background-color: var(--color-black);
  border: .5px solid var(--color-dark-gray);
}

.is-black-35 {
  background-color: var(--color-black-35);
  border: .5px solid var(--color-dark-gray);
}

.is-gray {
  background-color: var(--color-dark-gray)
}

.is-white {
  background-color: var(--color-white)
}

@property --border-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.is-holo {
  background: linear-gradient(
    90deg,
    #f9cdff,
    #fffdce,
    #92ede7,
        #c1b3ff,
        #cbebb2,
    #c2ceff,
    #ecbcff,
    #a0d2fb
  );
  background-size: 400% 400%;
  animation: holoShift 8s linear infinite;
}

@keyframes holoShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.index-wrap {
  position: relative;
  box-sizing: border-box;
  width: 100vw;
  height: 100svh;
  max-height: 100svh;
  overflow: hidden;
}

/* Text Styles */
.text-mono {
  font-family: var(--font-mono);
  font-size: var(--font-size-mono);
  line-height: var(--line-height-mono);
  letter-spacing: var(--mono-spacing);
  text-transform: uppercase;
}

.text-display {
  font-family: var(--font-display);
  font-size: var(--font-size-display);
  line-height: var(--line-height-h1);
  letter-spacing: var(--global-spacing);
}

.text-h1 {
  font-family: var(--font-display);
  font-size: var(--font-size-h1);
  line-height: var(--line-height-h1);
  letter-spacing: var(--global-spacing);
}

.text-p {
  font-family: var(--font-display);
  font-size: var(--font-size-p);
  line-height: var(--line-height-p);
  letter-spacing: var(--global-spacing);
}

.loader-wrap {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  align-items: center;
  justify-content: center;
  position: fixed;
  width: 100vw;
  height: 100vh;
  /* background-color: var(--color-black); */
  z-index: 100;
}

.loader-text {
  visibility: hidden;
}

.dither-canvas {
  max-height: 100svh;
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
}

.grain-overlay {
  position: fixed !important;
  pointer-events: none;
  z-index: 25;
  opacity: .25;
  width: 100%;
  height: 100svh;
}

.logo-canvas-wrap {
  position: fixed;
  top: -.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  z-index: 100;
  pointer-events: none;
}

.logo-canvas {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 400px;
  max-width: 400px;
  /* transition: scale 1s var(--ease-primary); */
}

.logo-canvas:hover {
  scale: .87;
}


/* Dial Elements */

.dial-wrap {
  position: absolute;
  width: 100vw;
  bottom: 0;
  padding-bottom: var(--padding-global);
  display: flex;
  justify-content: center;
}

.dial {
  display: flex;
  width: fit-content;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.dial-scroll {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.dial-arrow {
  position: absolute;
  width: 12px;
  height: auto;
  top: -16px;
  left: 0;
  will-change: transform;
  z-index: 2;
}

.dial-section-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.dial-section {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  /* align-content: end */
}

.big-dial {
  width: 1px;
  height: 1rem;
  background-color: var(--color-white);
}

.small-dial {
  width: 1px;
  height: .7rem;
    background-color: var(--color-dark-gray);
}

.dial-no {
  position: relative;
  font-family: var(--font-mono);
  font-size: 12px;
  right: .36rem;
}

/* Shell Elements */
.shell-top-left,
.shell-top-center,
.shell-top-right,
.shell-middle-left,
.shell-middle-right,
.shell-bottom-left,
.shell-bottom-right {
  position: fixed;
  font-family: var(--font-mono);
  font-size: var(--font-size-mono);
  line-height: var(--line-height-mono);
  letter-spacing: var(--letter-spacing-mono);
  text-transform: uppercase;
  color: var(--color-white);
  z-index: 50;
}

.shell-top-left {
  top: var(--padding-global);
  left: var(--padding-global);
}

.shell-top-center {
  top: var(--padding-global);
  left: 50%;
  transform: translateX(-50%);
}

.shell-top-right {
  top: var(--padding-global);
  right: var(--padding-global);
}

.shell-middle-left {
  top: 50%;
  left: var(--padding-global);
  transform: translateY(-50%);
}

.shell-middle-right {
  top: 50%;
  right: var(--padding-global);
  transform: translateY(-50%);
}

.shell-bottom-left {
  bottom: var(--padding-global);
  left: var(--padding-global);
}

.shell-bottom-right {
  bottom: var(--padding-global);
  right: var(--padding-global);
}

.shell-middle-right .page-texts-wrap {
  /* position: relative; */
  display: flex;
  justify-content: end;
  align-items: end;
  flex-directon: column;
  /* gap: 1rem; */
  height: 1.1rem;
  overflow: hidden;
}

/* .page-texts-wrap:hover . */

.page-text-inner {
  display: flex;
  position: absolute;
  top: 1rem;
  width: fit-content;
  text-align: right;
  color: var(--color-white);
}

.page-texts-wrap {
  overflow: hidden;
  height: 1em;
}

.page-texts-wrap > div {
  transition: transform 0.6s var(--ease-primary);
}

/* carousel . */

.cards_wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  /* box-sizing: border-box; */
}

.cards_contain {
  will-change: transform;
    width: 400vw;
    height: 400vw;
    position: absolute;
    left: -150vw;
    box-sizing: border-box;
}

.cards_item {
  display: flex;
  justify-content: center;
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  /* overflow:hidden; */
  pointer-events: none;
  /* padding-top: 50vh; */
    /* transform: translateY(-50%); */
  /* margin: 50vh 0 0; */
}

.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  /* overflow: hidden; */
    /* padding-top: 50vh; */
  height: clamp(331.25px, 29.15dvw, 132.5dvw);
  margin-top: calc(50vh - clamp(165px, 14.575dvw, 350px));
  transform: none;
  width: auto;
  /* width: clamp(250px, 22dvw, 100dvw); */
  max-height: 700px;
  aspect-ratio: 3/4.3;
  will-change: transform;
  background-color: var(--color-black-25);
  border: 1px solid var(--color-dark-gray);
  border-radius: .3rem;
  padding: var(--space-md);
  pointer-events: auto !important;
  cursor: pointer;
}

/* Holographic gradient border using a pseudo-element */

.card-border-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    var(--border-angle, 0deg),
    rgb(249, 205, 255),
    rgb(255, 253, 206),
    rgb(146, 237, 231),
        rgb(193, 179, 255),
        rgb(203, 235, 178),
    rgb(194, 206, 255),
    rgb(236, 188, 255),
    rgb(160, 210, 251)
  );
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.2;
  pointer-events: none;
  z-index: 5;
  animation: border-rotate 3s linear infinite;
  transition: opacity 0.7s ease;
}

.card:hover .card-border-glow {
  opacity: 1;
}

.card .card-expanded-label {
  transition: opacity 0.4s var(--ease-primary);
}

/* .card:hover .card-expanded-label {
  opacity: 1;
} */


.card:hover::before {
  opacity: 1;
}

.card.is-expanded::before {
  /* opacity: 0; */
  /* animation: none !important; */
}

.card-flip-container .card::before {
  /* opacity: 0; */
  animation: none !important;
}

/* .card-flip-container .logo-canvas-wrap {
  pointer-events: none;
} */

.card {
  --border-opacity: 0;
}

.card::before {
  opacity: var(--border-opacity);
}

.card:hover {
  /* --border-opacity: 1; */
}

@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes border-rotate {
  to {
    --border-angle: 360deg;
  }
}

.card:hover::before {
  animation: border-rotate 3s linear infinite;
}

.card-label {
  color: var(--color-white);
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: start;
  width: 100%;

}

.card-label img {
    height: clamp(2.5rem, 4svw, 120px);
    width: fit-content;
}

.card-label-target .card-label img {
  height: 100%;
  width: auto;
}

.card-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 2/1.5;
  width: clamp(5rem, 6svw, 9rem);
  /* height: clamp(3rem, 5svw, 4rem); */
  /* border-radius: 100vw;
  border: 1px solid var(--color-dark-gray); */
}

.bracket {
  position: absolute;
  width: .7rem;
  height: .7rem;
  border-color: var(--color-white);
  border-style: solid;
  border-width: 0;
  transition: transform 0.5s var(--ease-primary);
}

.card:hover .bracket-tl {
  transform: translate(4px, 4px);
}

.card:hover .bracket-tr {
  transform: translate(-4px, 4px);
}

.card:hover .bracket-bl {
  transform: translate(4px, -4px);
}

.card:hover .bracket-br {
  transform: translate(-4px, -4px);
}

.bracket-tl {
  top: 0;
  left: 0;
  border-top-width: .8px;
  border-left-width: .8px;
}

.bracket-tr {
  top: 0;
  right: 0;
  border-top-width: .8px;
  border-right-width: .8px;
}

.bracket-bl {
  bottom: 0;
  left: 0;
  border-bottom-width: .8px;
  border-left-width: .8px;
}

.bracket-br {
  bottom: 0;
  right: 0;
  border-bottom-width: .8px;
  border-right-width: .8px;
}

.card-micro-wrap {
  position: relative;
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;

}

.card-micro-1 img, .card-micro-2 img {
    height: clamp(2rem, 4svw, 3.666rem);
}

.card-detail {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 20;
  display: none;
  flex-direction: column;
  background: var(--color-black);
}
 
.card-detail.is-open {
  display: flex;
}
 
/* FLIP */


.card-flip-container {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100svh;
  padding: var(--padding-global);
  padding-top: calc(var(--padding-global) + 32px);
  z-index: 51;
  pointer-events: none;
  display: none;
  box-sizing: border-box

}
 
.card-flip-container.is-open {
  display: block;
  pointer-events: auto;
  z-index: 61;
}
 
.card-flip-container .card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--padding-global);
  margin: 0;
  transform: translate(0%, 0%);
  aspect-ratio: auto;
  max-height: none;
  cursor: default;
}

.card-flip-container .card-label {
  /* padding: 12px; */
}

/* .card-flip-container .card-label img {
    height: clamp(3rem, 6svw, 200px);
} */
 
.card-detail-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: var(--padding-global);
  z-index: 55;
  pointer-events: none;
  /* opacity: 0; */
}
 
.card-detail-nav.is-visible {
  pointer-events: auto;
  display: flex;
}
 
.back-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  pointer-events: auto;
  color: var(--color-white);
  /* display: none; */
}
 
.back-btn:hover {
  opacity: 0.6;
}
 
 
/* ── Carousel interior — hidden when card is expanded ─────── */
 
.card-flip-container .card-center,
.card-flip-container .card-micro-wrap,
.card-flip-container {
  /* display: none; */
}
 
 
/* ── Expanded content — hidden in carousel, shown in detail ── */
 
.card-expanded {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  width: 100%;
  height: 100%;
  /* max-height: 100% */
  overflow: visible;
  cursor: default;
  position: relative;
}
 
.card-flip-container .card-expanded {
  display: flex;
  position: relative;
}
 
 
/* ── Header ───────────────────────────────────────────────── */
 
.card-expanded-header {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: flex-start;
  /* padding: var(--space-lg); */
  padding-bottom: 0;
}
 
.card-expanded-heading {
  position: relative

  font-family: var(--font-display);
  font-size: var(--text-display);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-display);
  color: var(--color-white);
}
 
.card-expanded-label {
  font-size: 12px;
  opacity: 0;
}
 
 
/* ── Subtitle ─────────────────────────────────────────────── */
 
.card-expanded-subtitle {
  padding-top: var(--padding-global);
  border-top: 1px solid var(--color-dark-gray);
  /* margin: var(--space-lg) var(--space-lg) 0; */
  opacity: 0;
  /* transform: translateY(20px); */
}
 
 
/* ── Center crosshair ─────────────────────────────────────── */
 
.card-expanded-center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.card-expanded-center img {
  width: 24px;
  height: 24px;
  opacity: 0.3;
}
 
 
/* ── Bottom: logo + links ─────────────────────────────────── */
 
.card-expanded-bottom {
  display: grid;
  flex-direction: row;
  width: 100%;
  height: fit-content;
  grid-template-columns: 1fr 1fr;
  /* gap: var(--space-xl); */
  padding: 0;
  align-items: end;
  position: relative;
}

.card-expanded-about-info {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: fit-content;
  gap: var(--space-md);
  padding: 0;
  align-items: start;
  position: relative;
}

.is-works-bottom {
  display: flex;
  width: 100%
}

.is-about-text {
  padding: 0;
  border: none;
  width: 60%;
}
 
.card-expanded-logo {
  display: flex;
  align-items: end;
  justify-content: center;
  position: relative;
  width: 75%;
  aspect-ratio: 1/1;        
  z-index: 150;
  pointer-events: none;
}

.card-expanded.is-about-expanded {
  align-items: start;
  justify-content: end;
}

.card-expanded-logo.is-about-logo {
  align-items:center;
  position: absolute;
  top: 45%;
  left: 50%;
  width: 60%;
  transform: translate(-50%, -50%);
}

.card-expanded-info {
  opacity: 0
}
 
/* ── Contact links ────────────────────────────────────────── */
 
.card-expanded-links {
  display: flex;
  flex-direction: column;
  width: 100%
}

.works-row {
  align-items: start;
  width: 100%
}
 
.contact-row {
  width: 100%;
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: start;
  padding: var(--padding-global) 0;
  border-bottom: 1px solid var(--color-dark-gray);
  text-decoration: none;
  color: var(--color-white);
  opacity: 0;
  /* transform: translateY(12px); */
  transition: all .6s cubic-bezier(0.055, 0.72, 0.165, 1);
}

.store-p {
  width: 65%
}

.store-expanded-bottom {
  display: flex;
  width: 100%;
}

.store-items-wrap {
  display: flex;
  flex-direction: row;
  gap: var(--padding-global);
  justify-content: space-between;
}

.store-item {
  opacity: 0;
  display: flex;
  flex-direction: column;
  gap: var(--padding-global);
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: var(--color-white);
    transition: all .6s cubic-bezier(0.055, 0.72, 0.165, 1);
}

.store-img-wrap {
  display:flex;
  flex-direction: column;
  gap: var(--padding-global);
  justify-content: center;
  align-items: center;
  width: 100;
  height: 100%;
  aspect-ratio: 1;
  border-bottom: 1px solid var(--color-white);
  transition: all 1s cubic-bezier(0.055, 0.72, 0.165, 1);

}

.store-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-img-wrap:hover {
  border: 1px solid var(--color-white);
  border-radius: .4rem;

}

.store-desc-wrap {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.is-store-subtitle {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-row {
  opacity: 0
}

.contact-row:hover {
  transition: all 0.4s cubic-bezier(0.055, 0.72, 0.165, 1);
}

.contact-row::after {
  content: '';
  position: absolute;
  background-color: var(--color-white);
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .8s cubic-bezier(0.055, 0.72, 0.165, 1);
}

.contact-row:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
 
.contact-handle {
}
 
.contact-type {
  opacity: 0.5;
}

/* visual carousel */

.card-expanded-info .visual-info {
  position: absolute;
  padding: var(--padding-global);
  padding-bottom: 
}
.img-carousel__wrap {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
}

.img-carousel__list {
  z-index: 1;
  perspective: 90vw;
  perspective-origin: 50%;
  transform-style: preserve-3d;
  justify-content: center;
  align-items: center;
  width: 80vw;
  height: 45vw;
  margin-left: auto;
  margin-right: auto;
  font-size: 1vw;
  display: flex;
  position: relative;
}

.img-carousel__panel {
  z-index: 0;
  flex-direction: column;
  flex: none;
  justify-content: space-between;
  align-items: stretch;
  width: 16em;
  height: 39em;
  display: flex;
  position: absolute;
}

.img-carousel__panel:nth-of-type(even){
  justify-content: center;
}

.img-carousel__item {
  width: 100%;
  position: relative;
}

.img-carousel__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* breakpoints. */

@media (min-width: 1920px) {
  root: {
    --font-size-h1: 6rem;

  }
}

@media (max-width: 740px) {
  .dither-canvas, .grain-overlay {
    display: none;
  }

  .page-wrap {
  height: 100svh;
}

  .logo-canvas-wrap {
  position: fixed;
  top: -.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 90px;
  z-index: 100;
  pointer-events: none;
}

.logo-canvas {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 200px;
  max-width: 200px;
}


  .dial-wrap {
    bottom: 5%;
  }

  .cards_wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  /* box-sizing: border-box; */
}

  .cards_contain {
    width: 800vw;
    height: 800vw;
    position: absolute;
    left: -350vw;
  }

  .card {
    aspect-ratio: unset;
    height: 280px;
    margin-top: 50vh;
    transform: translateY(-50%);
    width: 190px;
  }

  .card-label {
    width: 100%;
    display: flex;
    align-items: start;
  }

  .card-label img {
     height: 2rem;
     width: fit-content;
  }

  .card-micro-1 img, .card-micro-2 img {
    height: 1.8rem;
}

  .card-center {
    width: 4rem;
  }

  .is-about-text {
    width: 100%;
  }

  .store-p {
    width: 100%;
  }

  :root {
    --padding-global: .8rem;
    --font-size-display: 3.45rem;
    --font-size-h1: 2.635rem;
    --font-size-p: 1.25rem;
    --font-size-mono: 0.75rem;
    --line-height-h1: 1.05;
    --line-height-p: 1.05;
     --line-height-mono: 1.05;
  }
}
