:root {
  --ink: #10253b;
  --ink-soft: rgba(16, 37, 59, 0.67);
  --paper: #f8fbff;
  --accent: #ffcf54;
  --header-height: 104px;
  --mouse-x: 0;
  --mouse-y: 0;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  color: var(--ink);
  background: #65aee0;
  font-family: Inter, "SF Pro Display", "PingFang SC", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-shell {
  position: relative;
  isolation: isolate;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 0;
  overflow: hidden;
}

.site-shell::after {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(16, 46, 71, 0.13), transparent 38%, rgba(238, 249, 255, 0.1)),
    linear-gradient(0deg, rgba(13, 34, 49, 0.28), transparent 28%);
  pointer-events: none;
}

.scene {
  position: absolute;
  z-index: -3;
  inset: -4%;
  overflow: hidden;
  background: #70b5e4;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.scene__background,
.scene__person,
.scene__light,
.scene__grain {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.scene__background {
  inset: -2%;
  background-image: url("../images/scene-background.png");
  background-position: center bottom;
  background-size: cover;
  transform: translate3d(calc(var(--mouse-x) * -18px), calc(var(--mouse-y) * -13px), 0);
  animation: background-arrive 1.7s cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.scene__person {
  inset: -2%;
  background-image: url("../images/scene-person.png");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 96% auto;
  transform: translate3d(calc(var(--mouse-x) * 7px), calc(var(--mouse-y) * 5px), 18px);
  animation: person-arrive 1.2s 180ms cubic-bezier(0.18, 0.82, 0.2, 1) both;
}

.scene__light {
  inset: -15%;
  background: radial-gradient(circle at 74% 20%, rgba(255, 255, 255, 0.28), transparent 31%);
  mix-blend-mode: soft-light;
  transform: translate3d(0, 0, 10px);
}

.scene__grain {
  opacity: 0.075;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  transform: translateZ(65px);
  pointer-events: none;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: calc(var(--header-height) + env(safe-area-inset-top));
  padding: env(safe-area-inset-top) clamp(24px, 5vw, 84px) 0;
  animation: fade-down 0.8s 0.1s ease both;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.17em;
  font-size: 13px;
  font-weight: 750;
}

.brand__mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(16, 37, 59, 0.5);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 16px;
  font-weight: 400;
}

.primary-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(30px, 3.5vw, 58px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 0;
  border: 0;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-item.is-open > .nav-link::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-trigger svg {
  width: 10px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 220ms ease;
}

.nav-item.is-open .nav-trigger svg {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: calc(100% + 7px);
  left: 50%;
  width: 258px;
  padding: 21px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 18px;
  background: rgba(242, 249, 252, 0.78);
  box-shadow: 0 24px 60px rgba(27, 70, 99, 0.18);
  opacity: 0;
  backdrop-filter: blur(22px) saturate(135%);
  transform: translate(-50%, -6px) scale(0.97);
  transform-origin: top;
  visibility: hidden;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
}

.nav-item.is-open .dropdown,
.nav-item--dropdown:focus-within .dropdown {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
  visibility: visible;
}

.dropdown__label {
  display: block;
  margin-bottom: 10px;
  color: rgba(16, 37, 59, 0.45);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.18em;
}

.dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 0;
  border-top: 1px solid rgba(16, 37, 59, 0.1);
  font-size: 13px;
  transition: padding 180ms ease, color 180ms ease;
}

.dropdown a:hover,
.dropdown a:focus-visible {
  padding-left: 6px;
  color: #0a66a0;
}

.dropdown small {
  flex: 0 0 auto;
  color: rgba(16, 37, 59, 0.43);
  font-size: 10px;
}

.dropdown--projects {
  width: min(390px, calc(100vw - 48px));
}

.dropdown--projects .project-item {
  align-items: flex-start;
  padding: 15px 0;
}

.project-item__content {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.project-item__content strong {
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.01em;
}

.project-item__content > span {
  color: rgba(16, 37, 59, 0.58);
  font-size: 11px;
  line-height: 1.55;
}

.dropdown__note {
  margin: 2px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(16, 37, 59, 0.1);
  color: rgba(16, 37, 59, 0.45);
  font-size: 10px;
  letter-spacing: 0.04em;
}

.dropdown--products {
  right: 0;
  left: auto;
  width: min(590px, calc(100vw - 48px));
  max-height: calc(100svh - var(--header-height) - 28px);
  padding-bottom: 0;
  overflow-y: auto;
  transform: translate(0, -6px) scale(0.97);
  transform-origin: top right;
}

.nav-item.is-open .dropdown--products,
.nav-item--dropdown:focus-within .dropdown--products {
  transform: translate(0, 0) scale(1);
}

.dropdown--products .product-item {
  color: var(--ink);
}

.dropdown--products .product-item--link {
  padding: 15px 0 17px;
}

.product-item--link .product-item__content {
  flex: 1;
}

.product-item__icon {
  display: block;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: contain;
}

.product-item__content {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.product-item__content strong {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.product-item__content > .product-item__title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 7px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
}

.product-item__platform {
  display: inline-grid;
  width: 16px;
  height: 16px;
  place-items: center;
  color: rgba(16, 37, 59, 0.7);
}

.product-item__platform svg {
  display: block;
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.product-item__platform--stroke svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.product-item__badge {
  padding: 2px 5px;
  border: 1px solid rgba(10, 102, 160, 0.3);
  border-radius: 4px;
  color: #0a66a0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
}

.product-item__content > span {
  color: rgba(16, 37, 59, 0.58);
  font-size: 11px;
  line-height: 1.55;
}

.mini-programs {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid rgba(16, 37, 59, 0.1);
}

.product-item--mini-program {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  align-items: end;
  gap: 14px;
  min-width: 0;
  padding: 18px 0;
}

.product-item--mini-program + .product-item--mini-program {
  margin-left: 0;
  padding-left: 0;
  border-top: 1px solid rgba(16, 37, 59, 0.1);
  border-left: 0;
}

.product-item--mini-program .product-item__content {
  align-self: stretch;
  align-content: start;
}

.product-item--mini-program .product-item__content small {
  margin-bottom: 5px;
  color: #0a66a0;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.product-item--mini-program img {
  display: block;
  width: 112px;
  height: 112px;
  border-radius: 9px;
  background: #fff;
  object-fit: contain;
}

.menu-toggle {
  display: none;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  padding: var(--header-height) clamp(24px, 9vw, 150px) 90px;
}

.hero__content {
  width: min(43vw, 610px);
  padding-top: 1vh;
  text-shadow: 0 2px 24px rgba(223, 244, 255, 0.38);
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.19em;
  animation: reveal-up 0.75s 0.55s ease both;
}

.hero__eyebrow span {
  width: 34px;
  height: 1px;
  background: var(--ink);
}

.hero h1 {
  max-width: 600px;
  margin: 0;
  font-family: Georgia, "Noto Serif SC", "Songti SC", serif;
  font-size: clamp(54px, 5.6vw, 92px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.06;
  animation: reveal-up 0.9s 0.68s cubic-bezier(0.18, 0.82, 0.2, 1) both;
}

.hero__intro {
  max-width: 340px;
  min-height: 1.8em;
  margin: 26px 0 32px;
  color: var(--ink-soft);
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.8;
  animation: reveal-up 0.8s 0.83s ease both;
}

.hero__intro-text {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.hero__intro-text::after {
  position: absolute;
  inset: 0;
  content: attr(data-text);
  color: transparent;
  background: linear-gradient(105deg, transparent 34%, rgba(238, 250, 255, 0.98) 50%, transparent 66%) 150% 0 / 250% 100% no-repeat;
  opacity: 0;
  filter: drop-shadow(0 0 8px rgba(190, 230, 255, 0.76));
  background-clip: text;
  -webkit-background-clip: text;
  pointer-events: none;
}

.hero__intro-text.is-sweeping::after {
  animation: role-sweep 0.78s ease-out both;
}

.hero__intro-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(6px);
  filter: blur(6px);
}

.hero__intro-char.is-visible {
  animation: role-char-in 0.52s calc(var(--char-index) * 70ms) cubic-bezier(0.18, 0.82, 0.2, 1) both;
}

.hero__intro-char.is-visible.is-leaving {
  animation: role-char-out 0.34s calc(var(--char-index) * 45ms) ease-in both;
}

.hero__intro-caret {
  display: inline-block;
  width: 18px;
  height: 1px;
  margin-left: 8px;
  background: linear-gradient(90deg, currentColor, transparent);
  box-shadow: 0 0 8px rgba(193, 231, 255, 0.72);
  vertical-align: 0.28em;
  transform-origin: left center;
  animation: role-caret-breathe 1.3s ease-in-out infinite;
}

.gyro-toggle,
.gyro-toggle[hidden] {
  display: none;
}

.scene-hint {
  position: absolute;
  right: 40px;
  bottom: 90px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(16, 37, 59, 0.5);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  writing-mode: vertical-rl;
  animation: fade-in 1s 1.25s ease both;
}

.scene-hint__line {
  width: 1px;
  height: 44px;
  overflow: hidden;
  background: rgba(16, 37, 59, 0.16);
}

.scene-hint__line::after {
  display: block;
  width: 100%;
  height: 55%;
  content: "";
  background: var(--ink);
  animation: hint-line 2s 1.2s ease-in-out infinite;
}

.site-footer {
  position: absolute;
  z-index: 10;
  right: clamp(24px, 5vw, 84px);
  bottom: max(22px, env(safe-area-inset-bottom));
  left: clamp(24px, 5vw, 84px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(245, 251, 255, 0.76);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-shadow: 0 1px 14px rgba(10, 34, 51, 0.36);
  animation: fade-in 1s 1.1s ease both;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  padding: 7px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  border-color: currentColor;
}

@keyframes background-arrive {
  from { opacity: 0; transform: translate3d(0, 0, 0); }
}

@keyframes person-arrive {
  from { opacity: 0; }
}

@keyframes reveal-up {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-down {
  from { opacity: 0; transform: translateY(-14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes hint-line {
  0%, 100% { transform: translateY(-110%); }
  50% { transform: translateY(190%); }
}

@keyframes role-char-in {
  0% {
    opacity: 0;
    filter: blur(6px);
    text-shadow: 0 0 14px rgba(195, 233, 255, 0.9);
    transform: translateY(6px);
  }
  70% {
    opacity: 1;
    filter: blur(0);
    text-shadow: 0 0 8px rgba(195, 233, 255, 0.55);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    text-shadow: 0 0 0 transparent;
    transform: translateY(0);
  }
}

@keyframes role-sweep {
  0% { opacity: 0; background-position: 150% 0; }
  18% { opacity: 1; }
  100% { opacity: 0; background-position: -100% 0; }
}

@keyframes role-char-out {
  from {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
  to {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(-4px);
  }
}

@keyframes role-caret-breathe {
  0%, 100% { opacity: 0.32; transform: scaleX(0.58); }
  50% { opacity: 1; transform: scaleX(1); }
}

@media (hover: hover) and (pointer: fine) {
  .nav-item--dropdown:hover .dropdown {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
    visibility: visible;
  }

  .nav-item--dropdown:hover .dropdown--products {
    transform: translate(0, 0) scale(1);
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 82px;
  }

  .site-header {
    height: calc(var(--header-height) + env(safe-area-inset-top));
    padding: env(safe-area-inset-top) 22px 0;
    animation-name: fade-in;
  }

  .brand {
    gap: 9px;
    font-size: 11px;
  }

  .brand__mark {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .menu-toggle {
    position: relative;
    z-index: 30;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 13px 10px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    margin: auto;
    background: currentColor;
    transition: transform 220ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    z-index: 25;
    inset: 0;
    display: flex;
    align-items: flex-start;
    padding: calc(var(--header-height) + 54px) 28px 50px;
    overflow-y: auto;
    background: rgba(229, 244, 251, 0.93);
    opacity: 0;
    backdrop-filter: blur(24px) saturate(135%);
    transform: translateY(-12px);
    visibility: hidden;
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms;
  }

  body.menu-open {
    overflow: hidden;
  }

  body.menu-open .primary-nav {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  .primary-nav__list {
    display: block;
    width: 100%;
  }

  .nav-item {
    border-bottom: 1px solid rgba(16, 37, 59, 0.13);
  }

  .nav-link {
    justify-content: space-between;
    width: 100%;
    padding: 18px 0;
    font-family: Georgia, "Noto Serif SC", "Songti SC", serif;
    font-size: clamp(19px, 5.2vw, 22px);
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.35;
  }

  .nav-link::after {
    display: none;
  }

  .nav-trigger svg {
    width: 13px;
  }

  .dropdown {
    position: static;
    width: auto;
    max-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    backdrop-filter: none;
    transform: none;
    visibility: visible;
    overflow: hidden;
    transition: max-height 280ms ease, padding 280ms ease;
  }

  .nav-item.is-open .dropdown {
    max-height: 220px;
    padding: 1px 0 14px;
    transform: none;
  }

  .dropdown__label {
    display: none;
  }

  .dropdown a {
    padding: 12px 0;
  }

  .nav-item.is-open .dropdown--projects {
    max-height: 420px;
  }

  .dropdown--projects {
    width: auto;
  }

  .dropdown--projects .project-item {
    padding: 14px 0;
  }

  .nav-item.is-open .dropdown--products {
    max-height: 900px;
    padding-bottom: 0;
  }

  .dropdown--products {
    width: auto;
  }

  .dropdown--products .product-item--link {
    padding: 14px 0 17px;
  }

  .product-item__icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
  }

  .mini-programs {
    grid-template-columns: 1fr;
  }

  .product-item--mini-program {
    grid-template-columns: minmax(0, 1fr) 124px;
    padding: 18px 0;
  }

  .product-item--mini-program + .product-item--mini-program {
    margin-left: 0;
    padding-left: 0;
    border-top: 1px solid rgba(16, 37, 59, 0.1);
    border-left: 0;
  }

  .product-item--mini-program img {
    width: 124px;
    height: 124px;
  }

  .hero {
    align-items: flex-start;
    justify-content: flex-end;
    padding: 18vh 24px 96px;
  }

  .hero__content {
    width: min(63vw, 390px);
    padding: 0;
  }

  .hero__eyebrow {
    gap: 8px;
    margin-bottom: 15px;
    font-size: 8px;
    letter-spacing: 0.14em;
  }

  .hero__eyebrow span {
    width: 20px;
  }

  .hero h1 {
    font-size: clamp(38px, 11.5vw, 62px);
    line-height: 1.08;
  }

  .hero__intro {
    max-width: 230px;
    margin: 18px 0 21px;
    color: rgba(16, 37, 59, 0.75);
    font-size: 12px;
    line-height: 1.65;
  }

  .gyro-toggle:not([hidden]) {
    position: absolute;
    z-index: 16;
    right: 16px;
    bottom: calc(max(16px, env(safe-area-inset-bottom)) + 34px);
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(244, 251, 255, 0.38);
    border-radius: 50%;
    background: rgba(235, 247, 253, 0.16);
    color: rgba(245, 251, 255, 0.88);
    box-shadow: 0 8px 26px rgba(16, 55, 82, 0.12);
    -webkit-backdrop-filter: blur(12px) saturate(120%);
    backdrop-filter: blur(12px) saturate(120%);
    touch-action: manipulation;
    cursor: pointer;
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease, opacity 180ms ease;
  }

  .gyro-toggle__icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.25;
  }

  .gyro-toggle__core {
    fill: currentColor;
    stroke: none;
  }

  .gyro-toggle__icon--off,
  .gyro-toggle[aria-pressed="false"] .gyro-toggle__icon--on {
    display: none;
  }

  .gyro-toggle[aria-pressed="false"] .gyro-toggle__icon--off {
    display: block;
  }

  .gyro-toggle[aria-pressed="true"] {
    border-color: rgba(245, 251, 255, 0.58);
    background: rgba(235, 247, 253, 0.25);
  }

  .gyro-toggle.is-error {
    opacity: 0.5;
  }

  .scene {
    inset: -2%;
  }

  .scene__background {
    background-position: 52% bottom;
  }

  .scene__person {
    inset: 0;
    background-position: 22% bottom;
    background-size: auto 72%;
  }

  .scene-hint {
    display: none;
  }

  .site-footer {
    right: 22px;
    bottom: max(16px, env(safe-area-inset-bottom));
    left: 22px;
    font-size: 8px;
    letter-spacing: 0.09em;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 16vh;
  }

  .hero__content {
    width: 67vw;
    transform: translateX(10px);
  }

  .scene__person {
    background-size: auto 55%;
  }

  .site-footer {
    align-items: flex-end;
  }
}

@media (max-height: 700px) and (min-width: 821px) {
  .hero {
    padding-bottom: 60px;
  }

  .hero h1 {
    font-size: clamp(50px, 5.3vw, 72px);
  }

  .hero__eyebrow {
    margin-bottom: 17px;
  }

  .hero__intro {
    margin: 18px 0 23px;
  }

  .scene-hint {
    bottom: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .scene__background,
  .scene__light {
    transform: none;
  }

  .hero__intro-caret {
    display: none;
  }

}
