@font-face {
  font-family: "Raleway";
  src: url("./assets/fonts/Raleway-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --black: #000;
  --white: #fff;
  --gold: #ac9b67;
  --header-h: 0px;
  --story-h: calc(100svh - var(--header-h));
  --video-alpha: 1;
  --copy-reveal: 0;
  --hero-gold-shadow-alpha: 0.88;
  --hero-gold-halo-alpha: 0.46;
  --hero-gold-weight: 400;
  --manifesto-alpha: 1;
  --purpose-details-alpha: 0;
  --manifesto-top: 50%;
  --vision-alpha: 0;
  --quality-alpha: 0;
  --quality-y: 22px;
  --edge-alpha: 0;
  --pyramid-alpha: 0;
  --pyramid-shift-x: -38vw;
  --pyramid-shift-y: -18vh;
  --pyramid-scale: 2.1;
  --triangle-label-alpha: 0;
  --frame-alpha: 0;
  --story-frame-size: 28px;
  --story-nav-offset: 0px;
  --story-nav-height: calc(var(--story-frame-size) * 2);
  --logo-alpha: 0.12;
  --logo-left: 50%;
  --logo-top: 52%;
  --logo-width: min(57vw, 760px);
  --logo-rotate: 0deg;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--black);
  color: var(--white);
  font-family:
    "Raleway", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro",
    "Yu Gothic", Meiryo, sans-serif;
  font-weight: 300;
  letter-spacing: 0.02em;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--black);
}

.skip-link:focus {
  transform: translateY(0);
}

.gold {
  color: var(--gold);
}

.purpose-headline .gold {
  font-weight: var(--hero-gold-weight);
  text-shadow:
    0 1px 1px rgb(3 10 22 / var(--hero-gold-shadow-alpha)),
    0 0 10px rgb(0 0 0 / var(--hero-gold-halo-alpha));
}

.mobile-break {
  display: none;
}

.story {
  position: relative;
  height: 480svh;
  margin-top: 0;
  background: var(--black);
}

.story-anchor {
  position: absolute;
  left: 0;
  width: 1px;
  height: 1px;
  scroll-margin-top: var(--header-h);
}

.story-anchor--purpose {
  top: 40%;
}

.story-anchor--vision {
  top: 64%;
}

.story-sticky {
  position: sticky;
  top: var(--header-h);
  height: var(--story-h);
  overflow: hidden;
  isolation: isolate;
  background: var(--black);
}

.story-sticky::after {
  position: absolute;
  z-index: 6;
  inset: 0;
  border: var(--story-frame-size) solid rgb(255 255 255 / var(--frame-alpha));
  border-top-width: 0;
  content: "";
  pointer-events: none;
}

.story-nav {
  position: absolute;
  z-index: 9;
  top: var(--story-nav-offset);
  right: 0;
  left: 0;
  height: var(--story-nav-height);
  background: #fff;
  color: var(--black);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.story-nav__brand {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(var(--story-nav-height) * 0.7);
  height: calc(var(--story-nav-height) * 0.7);
  transform: translate(-50%, -50%);
}

.story-nav__brand img {
  width: 100%;
  height: 100%;
  transform: scale(1.35);
}

.story-nav__back {
  position: absolute;
  top: 50%;
  left: clamp(24px, 3vw, 54px);
  width: clamp(104px, 9vw, 136px);
  height: 25px;
  transform: translateY(-50%);
  color: #5d5d5d;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.story-nav__back span {
  position: absolute;
  top: 0;
  right: 0;
}

.story-nav__back::before {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
}

.story-nav__back::after {
  position: absolute;
  bottom: 1px;
  left: 0;
  width: 6px;
  height: 6px;
  border-bottom: 1px solid currentColor;
  border-left: 1px solid currentColor;
  transform: rotate(45deg);
  content: "";
}

.story-media,
.story-video,
.media-shade {
  position: absolute;
  inset: 0;
}

.story-media {
  z-index: -4;
  overflow: hidden;
}

.story-video {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 50%;
  opacity: var(--video-alpha);
  filter: saturate(1.08) contrast(1.08) brightness(0.84);
  pointer-events: none;
  will-change: opacity;
}

.media-shade {
  background:
    radial-gradient(circle at 52% 57%, transparent 0 14%, rgba(0, 0, 0, 0.25) 34%, #000 72%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0 16%, transparent 43% 62%, rgba(0, 0, 0, 0.6));
}

.floating-logo {
  position: absolute;
  z-index: -1;
  top: var(--logo-top);
  left: var(--logo-left);
  width: var(--logo-width);
  transform: translate(-50%, -50%) rotate(var(--logo-rotate));
  opacity: var(--logo-alpha);
  transition: opacity 120ms linear;
  will-change: top, left, width, transform, opacity;
}

.floating-logo img {
  width: 100%;
  filter: drop-shadow(0 0 16px rgba(103, 176, 255, 0.12));
}

.edge-copy,
.values-edge {
  position: absolute;
  z-index: 7;
  color: var(--gold);
  font-size: clamp(13px, 1.5vw, 24px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
  opacity: var(--edge-alpha);
  pointer-events: none;
}

.edge-copy {
  display: flex;
  overflow: hidden;
  font-size: min(clamp(13px, 1.5vw, 24px), calc(var(--story-frame-size) * 0.72));
}

.edge-copy__track {
  display: block;
  flex: none;
}

.edge-copy--top,
.edge-copy--bottom {
  right: var(--story-frame-size);
  left: var(--story-frame-size);
  height: var(--story-frame-size);
  align-items: center;
}

.edge-copy--top {
  top: 0;
}

.edge-copy--right,
.edge-copy--left {
  top: calc(var(--story-nav-offset) + var(--story-nav-height));
  bottom: var(--story-frame-size);
  width: var(--story-frame-size);
  align-items: center;
  writing-mode: vertical-rl;
}

.edge-copy--right {
  right: 0;
}

.edge-copy--bottom {
  bottom: 0;
  transform: rotate(180deg);
}

.edge-copy--left {
  left: 0;
  transform: rotate(180deg);
}

.story-copy {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: min(72vw, 920px);
  transform: translate(-50%, -50%);
  text-align: center;
  text-wrap: balance;
  will-change: opacity, transform;
}

.story-copy h1,
.story-copy h2,
.story-copy p {
  margin: 0;
}

.hero-kicker,
.purpose-headline h1 {
  font-size: clamp(36px, 4.1vw, 62px);
  font-weight: 300;
  line-height: 1.35;
}

.reveal-word {
  opacity: var(--copy-reveal);
}

.story-copy--vision {
  opacity: 0;
}

.story-copy--purpose {
  top: var(--manifesto-top);
  transform: translate(-50%, calc(-50% + 18px));
  opacity: var(--manifesto-alpha);
}

.purpose-details {
  position: absolute;
  top: calc(100% + 28px);
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  opacity: var(--purpose-details-alpha);
}

.story-copy--vision {
  left: 47%;
  transform: translate(-50%, calc(-50% + 18px));
  opacity: var(--vision-alpha);
}

.contrast-mask {
  position: absolute;
  z-index: 4;
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
  will-change: left, top, width, height, opacity;
}

.contrast-mask--purpose {
  clip-path: polygon(50% 0, 66.5% 100%, 33.5% 100%);
  opacity: calc(var(--manifesto-alpha) * var(--purpose-white) * var(--pyramid-alpha));
}

.contrast-mask--vision {
  clip-path: polygon(33.5% 0, 66.5% 0, 83.5% 100%, 16.5% 100%);
  opacity: calc(var(--vision-alpha) * var(--vision-white));
}

.contrast-mask--quality {
  clip-path: polygon(16.5% 0, 83.5% 0, 100% 100%, 0 100%);
  opacity: calc(var(--quality-alpha) * var(--value-white));
}

.contrast-copy {
  position: absolute;
  z-index: 1;
  margin: 0;
  transform: none !important;
  color: var(--black);
  opacity: 1 !important;
  pointer-events: none;
  will-change: left, top, width;
}

.contrast-copy .gold {
  color: var(--gold);
}

.story-copy--vision h2 {
  margin-bottom: 28px;
  font-size: clamp(34px, 3.6vw, 54px);
  font-weight: 300;
  line-height: 1.38;
}

.purpose-details > p:last-child,
.story-copy--vision > p:last-child {
  font-size: clamp(13px, 1.05vw, 17px);
  line-height: 1.6;
}

.section-label {
  display: none;
  margin-bottom: 16px !important;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.28em;
}

.story-quality {
  position: absolute;
  z-index: 4;
  inset: 0;
  transform: translateY(var(--quality-y));
  opacity: var(--quality-alpha);
  pointer-events: none;
  will-change: transform, opacity;
}

.story-quality .values-eyebrow {
  display: none;
}

.story-quality-content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(61.1vw, 880px);
  transform: translate(-50%, -50%);
}

.story-quality-content > h2 {
  margin: 0 0 38px;
  color: var(--gold);
  font-size: clamp(46px, 5vw, 76px);
  font-weight: 300;
  line-height: 1;
  text-align: center;
}

.pyramid {
  position: absolute;
  z-index: 2;
  right: max(-21.05vw, -303px);
  bottom: 0;
  width: min(71.77vw, 1033px);
  height: min(62.15vw, 895px);
  aspect-ratio: 1033 / 895;
  transform: translate3d(var(--pyramid-shift-x), var(--pyramid-shift-y), 0)
    scale(var(--pyramid-scale));
  transform-origin: 50% 50%;
  overflow: hidden;
  background: url("./assets/images/blue-flame.png") center / cover;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  opacity: var(--pyramid-alpha);
  will-change: transform, opacity;
}

.pyramid-outline {
  position: absolute;
  z-index: 6;
  inset: 0;
  pointer-events: none;
}

.pyramid-outline b {
  position: absolute;
  display: block;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 8px rgba(107, 169, 255, 0.18);
}

.pyramid-outline b:nth-child(1),
.pyramid-outline b:nth-child(2) {
  bottom: 0;
  width: 1px;
  height: 115.47%;
  transform-origin: 50% 100%;
}

.pyramid-outline b:nth-child(1) {
  left: 0;
  transform: rotate(30deg);
}

.pyramid-outline b:nth-child(2) {
  right: 0;
  transform: rotate(-30deg);
}

.pyramid-outline b:nth-child(3) {
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
}

.pyramid::before,
.pyramid::after {
  position: absolute;
  z-index: 3;
  right: 0;
  left: 0;
  height: 9px;
  content: "";
  background: var(--black);
}

.pyramid::before {
  top: 33%;
}

.pyramid::after {
  top: 66%;
}

.pyramid-level {
  --level-label-alpha: 0;
  position: absolute;
  right: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  background: transparent;
}

.pyramid-level::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background: var(--white);
  opacity: 0;
}

.pyramid-level span {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 51.5%;
  transform: translate(-50%, -50%) rotate(90deg);
  color: var(--white);
  font-size: clamp(12px, 1.3vw, 19px);
  letter-spacing: 0.08em;
  mix-blend-mode: difference;
  opacity: calc(var(--triangle-label-alpha) * var(--level-label-alpha));
}

.pyramid-level i {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 48.5%;
  width: 1px;
  height: 52%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.9);
  mix-blend-mode: difference;
  opacity: calc(var(--triangle-label-alpha) * var(--level-label-alpha));
}

.pyramid-level--purpose {
  --level-label-alpha: var(--purpose-white, 1);
  top: 0;
  height: 33%;
}

.pyramid-level--purpose::after {
  opacity: var(--purpose-white, 1);
}

.pyramid-level--vision {
  --level-label-alpha: var(--vision-white, 0);
  top: 33%;
  height: 33%;
}

.pyramid-level--vision::after {
  opacity: var(--vision-white, 0);
}

.pyramid-level--value {
  --level-label-alpha: var(--value-white, 0);
  top: 66%;
  bottom: auto;
  height: 34%;
}

.pyramid-level--value::after {
  opacity: var(--value-white, 0);
}

.scene-index {
  position: absolute;
  z-index: 7;
  right: 4vw;
  bottom: 4vh;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  letter-spacing: 0.18em;
}

.scene-index span {
  color: var(--gold);
  font-size: 16px;
}

.scroll-cue {
  position: absolute;
  z-index: 7;
  bottom: 26px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.74);
  font-size: 10px;
  letter-spacing: 0.24em;
  opacity: var(--scroll-alpha, 1);
}

.scroll-cue span {
  position: relative;
  display: block;
  width: 56px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.24);
}

.scroll-cue span::after {
  position: absolute;
  inset: 0;
  content: "";
  transform: translateX(-100%);
  background: var(--white);
  animation: scroll-line 1.8s ease-in-out infinite;
}

@keyframes scroll-line {
  0% {
    transform: translateX(-100%);
  }
  55%,
  100% {
    transform: translateX(100%);
  }
}

.values {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  padding-top: 0;
  overflow: hidden;
  background: var(--white);
  color: var(--white);
}

.values-panel {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  margin: 0 28px;
  overflow: hidden;
  isolation: isolate;
  background: var(--black);
}

.values-content {
  position: relative;
  z-index: 4;
  width: min(66vw, 910px);
  margin-left: 17.5%;
  padding: clamp(130px, 16vh, 170px) 0 110px;
}

.values-eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.18em;
}

.values-content > h2 {
  margin: 0 0 38px 30%;
  color: var(--gold);
  font-size: clamp(46px, 5vw, 76px);
  font-weight: 300;
  line-height: 1;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quality-grid li:nth-child(5) {
  grid-column: 1;
}

.quality-grid li {
  min-width: 0;
}

.quality-number {
  display: block;
  margin-bottom: 10px;
  font-family:
    "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "Yu Gothic",
    Meiryo, sans-serif;
  font-size: clamp(24px, 2.3vw, 36px);
  font-weight: 600;
  line-height: 1;
}

.quality-grid h3 {
  margin: 0 0 5px;
  color: var(--gold);
  font-size: clamp(19px, 1.65vw, 26px);
  font-weight: 500;
}

.quality-grid p {
  margin: 0;
  font-size: clamp(12px, 0.94vw, 15px);
  line-height: 1.6;
}

.quality-grid .quality-en {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: clamp(12px, 0.98vw, 16px);
  line-height: 1.2;
}

.values-logo {
  position: absolute;
  z-index: 1;
  top: -21%;
  left: -5%;
  width: min(50vw, 720px);
  opacity: 0.72;
}

.values-flame {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  width: 42%;
  height: 92%;
  overflow: hidden;
  background: url("./assets/images/blue-flame.png") center / cover;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.values-flame::after {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 34%;
  content: "";
  background: var(--white);
}

.values-flame span {
  position: absolute;
  z-index: 2;
  right: 0;
  left: 0;
  width: 100%;
  height: 9px;
  background: var(--black);
}

.values-flame span:nth-child(1) {
  top: 33%;
}

.values-flame span:nth-child(2) {
  top: 66%;
}

.values-edge {
  opacity: 1;
}

.values-edge--left {
  bottom: 0;
  left: 7px;
  transform: rotate(180deg);
  writing-mode: vertical-rl;
}

.values-edge--right {
  top: 0;
  right: 7px;
  writing-mode: vertical-rl;
}

.values-edge--bottom {
  right: 31%;
  bottom: 7px;
  transform: rotate(180deg);
}

.back-link {
  position: absolute;
  z-index: 7;
  top: 20%;
  right: 11.2%;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: rotate(90deg);
  transform-origin: center;
  font-size: 11px;
  letter-spacing: 0.13em;
}

.back-link span {
  width: 80px;
  height: 1px;
  background: currentColor;
}

.value-label {
  position: absolute;
  z-index: 7;
  right: 10.4%;
  bottom: 9%;
  margin: 0;
  transform: rotate(90deg);
  color: var(--black);
  font-size: 14px;
  letter-spacing: 0.09em;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 32px;
  min-height: 140px;
  padding: 32px 5vw;
  background: var(--white);
  color: var(--black);
}

.site-footer > a {
  font-size: clamp(23px, 2.4vw, 38px);
  font-weight: 300;
}

.site-footer p,
.site-footer small {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.09em;
}

.has-scroll-quality .values {
  display: none;
}

@media (max-width: 1080px) {
  .story-quality-content {
    width: 72vw;
  }

  .values-content {
    width: 72vw;
    margin-left: 10%;
  }

  .quality-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .quality-grid li:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .mobile-break {
    display: block;
  }

  :root {
    --header-h: 0px;
    --logo-width: 108vw;
    --story-frame-size: 3.73vw;
    --story-nav-offset: 0vw;
    --story-nav-height: calc(var(--story-frame-size) * 2);
  }

  .story-nav__brand {
    width: calc(var(--story-nav-height) * 0.72);
    height: calc(var(--story-nav-height) * 0.72);
  }

  .story-nav__back {
    left: 4vw;
    width: 17.33vw;
    height: 4.8vw;
    font-size: 1.87vw;
  }

  .story {
    height: 420svh;
  }

  .story-video {
    object-position: 50% 50%;
  }

  .media-shade {
    background:
      radial-gradient(circle at 52% 58%, transparent 0 13%, rgba(0, 0, 0, 0.36) 38%, #000 76%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.5), transparent 50%, rgba(0, 0, 0, 0.5));
  }

  .hero-kicker,
  .purpose-headline h1 {
    font-size: 9.33vw;
    line-height: 1.28;
  }

  .story-copy {
    width: 92.27vw;
  }

  .story-copy--vision {
    top: 43%;
    left: 50%;
    width: 92.27vw;
    text-align: center;
  }

  .story-copy--vision h2 {
    margin-bottom: 4vw;
    font-size: 9.33vw;
    line-height: 1.2;
  }

  .purpose-details {
    top: calc(100% + 4vw);
  }

  .story-copy--vision .vision-subtitle {
    display: inline-block;
    font-size: 6.4vw;
    white-space: nowrap;
  }

  .purpose-details > p:last-child,
  .story-copy--vision > p:last-child {
    font-size: 3.47vw;
    line-height: 1.65;
  }

  .story-quality-content {
    top: 0;
    left: 50%;
    width: 80vw;
    padding: 14.93vw 0 0;
    transform: translateX(-50%);
  }

  .story-quality-content > h2 {
    margin: 0 0 12vw;
    font-size: 9.33vw;
    text-align: center;
    white-space: nowrap;
  }

  .section-label {
    display: none;
  }

  .pyramid {
    right: auto;
    bottom: -6.23%;
    left: -11.2vw;
    width: 198.32vw;
    height: 171.76vw;
    aspect-ratio: 1487.427 / 1288.187;
  }

  .edge-copy {
    font-size: calc(var(--story-frame-size) * 0.72);
  }

  .edge-copy--top {
    display: none;
  }

  .scene-index {
    display: none;
  }

  .scroll-cue {
    bottom: 18px;
  }

  .values {
    min-height: 255.2vw;
    padding: 0;
  }

  .values-panel {
    min-height: 255.2vw;
    margin: 0 3.73vw;
    overflow: visible;
    clip-path: polygon(0 0, 100% 0, 100% 82.4%, 18.7% 82.4%, 0 100%);
  }

  .values-content {
    width: 80vw;
    margin: 0 auto;
    padding: 14.93vw 0 0;
  }

  .values-eyebrow {
    display: none;
  }

  .values-content > h2 {
    margin: 0 0 12vw;
    font-size: 9.33vw;
    text-align: center;
    white-space: nowrap;
  }

  .quality-grid {
    grid-template-columns: repeat(2, 38.67vw);
    gap: 9vw 2.66vw;
  }

  .quality-number {
    margin-bottom: 4vw;
    font-size: 6.4vw;
  }

  .quality-grid h3 {
    margin-bottom: 2.66vw;
    font-size: 4.8vw;
  }

  .quality-grid .quality-en {
    overflow: visible;
    margin-bottom: 4vw;
    font-size: 4.27vw;
    white-space: nowrap;
  }

  .quality-grid p {
    font-size: 3.73vw;
    line-height: 1.45;
  }

  .quality-grid li > p:last-child {
    font-size: 2.93vw;
    line-height: 1.55;
    letter-spacing: 0;
    text-align: left;
  }

  .values-logo {
    top: 6.27vw;
    left: -6.4vw;
    width: 62.15vw;
    opacity: 0.55;
  }

  .values-flame {
    z-index: 3;
    right: auto;
    bottom: -10.96vw;
    left: -11.2vw;
    width: 198.32vw;
    height: 171.76vw;
    opacity: 1;
  }

  .values-flame::after {
    height: 32.53%;
  }

  .values-flame span:nth-child(2) {
    top: 67.47%;
  }

  .values-edge {
    font-size: 4vw;
  }

  .values-edge--bottom {
    display: none;
  }

  .back-link {
    top: 20.67vw;
    right: -1.33vw;
    color: var(--white);
    font-size: 3.08vw;
  }

  .back-link span {
    width: 38.36vw;
  }

  .value-label {
    right: -0.27vw;
    bottom: 7.6vw;
    color: var(--black);
    font-size: 3.08vw;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 220px;
    padding: 48px 28px;
  }
}

@media (max-width: 480px) {
  .values-panel {
    margin-inline: 3.73vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
