:root {
  --bg: #030406;
  --bg-soft: #070a11;
  --ink: #f2f5f8;
  --muted: rgba(242, 245, 248, 0.68);
  --line: rgba(255, 255, 255, 0.58);
  --line-soft: rgba(255, 255, 255, 0.16);
  --glass: rgba(7, 10, 16, 0.52);
  --panel: rgba(10, 13, 20, 0.86);
  --shadow: rgba(0, 0, 0, 0.72);
  --blue: #123e8d;
  --blue-soft: rgba(117, 168, 232, 0.22);
  --chrome: #d7e2f0;
  --logo-image: url("assets/fear-logo.png");
  --tilt-x: 6deg;
  --tilt-y: -8deg;
  --glare-x: 0;
  --glare-y: 0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(19, 51, 108, 0.18), transparent 28%),
    linear-gradient(180deg, #020304 0%, #04060a 48%, #05070c 100%);
  color: var(--ink);
  font-family: "Orbitron", "Eurostile", "BankGothic Md BT", "Arial Narrow", sans-serif;
}

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

button {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.app {
  position: relative;
  min-height: 100svh;
  overflow: clip;
  isolation: isolate;
  transition: filter 220ms ease;
}

.app::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.44) 100%),
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.08), transparent 24%),
    radial-gradient(circle at 50% 56%, rgba(0, 0, 0, 0.22), transparent 28%);
  z-index: 1;
  pointer-events: none;
}

.scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.scene__grain,
.scene__blur,
.scene__beam {
  position: absolute;
  inset: auto;
}

.scene__grain {
  inset: 0;
  opacity: 0.13;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.65) 0 0.5px, transparent 0.5px),
    radial-gradient(circle at 72% 36%, rgba(255, 255, 255, 0.5) 0 0.5px, transparent 0.5px),
    radial-gradient(circle at 54% 74%, rgba(255, 255, 255, 0.42) 0 0.5px, transparent 0.5px);
  background-size: 16px 16px, 18px 18px, 14px 14px;
  mix-blend-mode: soft-light;
  animation: grainShift 12s steps(8) infinite;
}

.scene__blur {
  border-radius: 42% 58% 52% 48%;
  filter: blur(72px);
  mix-blend-mode: screen;
  animation: drift 18s ease-in-out infinite alternate;
}

.scene__blur--left {
  --drift-rotate: -14deg;
  left: -10vw;
  top: 8vh;
  width: 36vw;
  height: 88vh;
  background:
    linear-gradient(180deg, rgba(191, 227, 248, 0.46), rgba(51, 84, 118, 0.12)),
    radial-gradient(circle at 24% 24%, rgba(255, 255, 255, 0.22), transparent 32%);
  opacity: 0.9;
}

.scene__blur--center {
  left: 46%;
  top: -4vh;
  width: 12vw;
  height: 108vh;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(40, 15, 9, 0.12));
  border-radius: 999px;
  filter: blur(60px);
  mix-blend-mode: normal;
  opacity: 0.78;
  animation-duration: 22s;
}

.scene__blur--right {
  --drift-rotate: -5deg;
  right: -12vw;
  top: -2vh;
  width: 54vw;
  height: 92vh;
  background:
    linear-gradient(180deg, rgba(14, 79, 169, 0.76), rgba(6, 16, 34, 0.16) 82%),
    radial-gradient(circle at 38% 24%, rgba(255, 255, 255, 0.12), transparent 26%);
  opacity: 0.74;
}

.scene__beam {
  filter: blur(56px);
  opacity: 0.4;
  animation: beamPulse 14s ease-in-out infinite alternate;
}

.scene__beam--left {
  --beam-rotate: -20deg;
  left: 6vw;
  top: 26vh;
  width: 18vw;
  height: 24vh;
  background: linear-gradient(180deg, rgba(145, 182, 209, 0.58), transparent 88%);
}

.scene__beam--right {
  --beam-rotate: 4deg;
  right: 10vw;
  top: 14vh;
  width: 24vw;
  height: 34vh;
  background: linear-gradient(180deg, rgba(39, 103, 212, 0.46), transparent 84%);
}

.chrome-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 6;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.5rem 1.45rem 0;
  pointer-events: none;
}

.header-actions,
.menu-toggle,
.motion-toggle,
.nav-panel {
  pointer-events: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-width: 2.6rem;
  min-height: 2.6rem;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.icon-button:hover,
.icon-button:focus-visible {
  background: rgba(255, 255, 255, 0.05);
  outline: none;
}

.icon-button svg {
  width: 1.55rem;
  height: 1.55rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bag-button__count {
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}

.logo-stage {
  position: fixed;
  top: 0.85rem;
  left: 50%;
  z-index: 5;
  width: min(20rem, 31vw);
  aspect-ratio: 16 / 10;
  transform: translateX(-50%) perspective(1400px);
  transform-style: preserve-3d;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.28));
  pointer-events: none;
}

.logo-orbit,
.logo-emblem,
.logo-emblem__depth {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.logo-orbit {
  animation: none;
}

.logo-emblem {
  position: relative;
  isolation: isolate;
  transform-origin: center center;
  animation: logoSpin 14s linear infinite;
}

.logo-emblem__plate,
.logo-emblem__depth,
.logo-emblem__echo,
.fear-logo {
  position: absolute;
  inset: 0;
}

.logo-emblem__plate,
.logo-emblem__echo,
.logo-emblem__slice {
  background: center / contain no-repeat var(--logo-image);
}

.logo-emblem__depth {
  position: absolute;
  inset: 0;
}

.logo-emblem__slice {
  position: absolute;
  inset: 0;
  opacity: 0.52;
  filter:
    brightness(0.22)
    saturate(0.2)
    contrast(1.7)
    blur(0.3px);
}

.logo-emblem__slice:nth-child(1) {
  transform: translateZ(-88px) scale(0.94);
}

.logo-emblem__slice:nth-child(2) {
  transform: translateZ(-72px) scale(0.952);
}

.logo-emblem__slice:nth-child(3) {
  transform: translateZ(-56px) scale(0.964);
}

.logo-emblem__slice:nth-child(4) {
  transform: translateZ(-40px) scale(0.976);
}

.logo-emblem__slice:nth-child(5) {
  transform: translateZ(-24px) scale(0.988);
}

.logo-emblem__slice:nth-child(6) {
  transform: translateZ(-12px) scale(0.996);
}

.logo-emblem__plate {
  transform: translateZ(-108px) scale(0.89);
  opacity: 0.34;
  filter: brightness(0.34) saturate(0.38) contrast(1.35) blur(2.2px);
}

.logo-emblem::before {
  content: "";
  position: absolute;
  inset: 0;
  background: center / contain no-repeat var(--logo-image);
  transform: translateZ(-72px) scale(0.935);
  opacity: 0.42;
  filter: brightness(0.54) saturate(0.42) contrast(1.32) blur(1.6px);
}

.logo-emblem__echo {
  transform: translateZ(-42px) scale(0.97);
  opacity: 0.3;
  filter: brightness(0.86) blur(1.2px);
}

.logo-emblem::after {
  content: "";
  position: absolute;
  inset: 23% 25%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.46), transparent 68%);
  transform: translateZ(48px);
  filter: blur(15px);
  mix-blend-mode: screen;
  opacity: 0.56;
}

.fear-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translateZ(28px);
  filter:
    drop-shadow(0 18px 34px rgba(0, 0, 0, 0.82))
    drop-shadow(0 0 18px rgba(208, 225, 247, 0.18))
    saturate(1.05)
    contrast(1.03);
}

.nav-panel {
  position: fixed;
  top: 5.1rem;
  left: 1.45rem;
  z-index: 7;
  display: grid;
  gap: 0.85rem;
  width: min(16rem, calc(100vw - 2.9rem));
  padding: 1rem 1.1rem;
  border: 1px solid var(--line-soft);
  background: rgba(6, 8, 12, 0.72);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.5rem);
  transition:
    opacity 180ms ease,
    visibility 180ms ease,
    transform 180ms ease;
}

.app[data-nav-open="true"] .nav-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-panel a {
  width: fit-content;
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-panel a:hover,
.nav-panel a:focus-visible {
  color: var(--ink);
  outline: none;
}

.hero {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 9rem 1.5rem 5.5rem;
}

.hero__content {
  display: grid;
  justify-items: center;
  gap: 1.15rem;
  transform: translateY(5vh);
}

.hero__actions {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
}

.hero__eyebrow {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.05rem, 1vw + 0.85rem, 1.75rem);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.12);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 10.75rem;
  min-height: 3.45rem;
  padding: 0.75rem 1.4rem;
  border: 1px solid var(--line);
  cursor: pointer;
  color: var(--ink);
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
  font-size: 1rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.cta-button:hover,
.cta-button:focus-visible {
  color: #0b1018;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
  outline: none;
  transform: translateY(-2px);
}

.cta-button--secondary {
  min-width: 11.75rem;
  min-height: 3rem;
  color: rgba(242, 245, 248, 0.9);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.34);
  font-size: 0.9rem;
}

.collection,
.studio,
.site-footer {
  position: relative;
  z-index: 2;
  transition: filter 220ms ease;
}

body.signup-open {
  overflow: hidden;
}

body.signup-open .app,
body.signup-open .collection,
body.signup-open .studio,
body.signup-open .site-footer {
  filter: blur(16px) saturate(0.8);
}

.collection,
.studio {
  padding-inline: 1.5rem;
}

.collection {
  padding-top: 2.8rem;
  padding-bottom: 4rem;
  background:
    linear-gradient(180deg, #f2f1ec 0%, #fbfbf8 18%, #f5f4ef 100%);
  color: #08090d;
}

.section-heading {
  max-width: 72rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-heading__kicker {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.section-heading h2,
.studio__panel h2 {
  margin: 0;
  font-size: clamp(1.75rem, 2.5vw, 3.2rem);
  line-height: 1.08;
}

.section-heading--arrivals {
  margin-bottom: 1.9rem;
}

.section-heading--arrivals h2 {
  font-size: clamp(2.7rem, 5.6vw, 5rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #06070a;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: 86rem;
  margin: 0 auto;
}

.product-card {
  position: relative;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: hidden;
}

.product-card::before {
  content: none;
}

.product-card::after {
  content: none;
}

.product-card__media {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 0.98;
  padding: clamp(1.5rem, 2vw, 2.2rem);
  border: 1px solid rgba(9, 12, 18, 0.06);
  background:
    linear-gradient(180deg, #fcfcfa 0%, #f3f2ee 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.94) inset,
    0 16px 30px rgba(16, 18, 24, 0.04);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.08));
}

.product-card__details {
  display: grid;
  justify-items: center;
  gap: 0.22rem;
  padding: 1rem 0 0.15rem;
  text-align: center;
}

.product-card h3 {
  margin: 0;
  font-size: clamp(1rem, 1vw + 0.72rem, 1.4rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0a0b0f;
}

.product-card p {
  margin: 0;
  max-width: none;
  color: rgba(10, 11, 15, 0.62);
  font-size: 0.76rem;
  line-height: 1.45;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.product-card__meta {
  display: inline-block;
  color: #0a0b0f;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.1;
  text-transform: uppercase;
}

.product-card--arrival:hover .product-card__media,
.product-card--arrival:focus-within .product-card__media {
  transform: translateY(-4px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.94) inset,
    0 20px 36px rgba(16, 18, 24, 0.08);
}

.studio {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(17rem, 0.8fr);
  gap: 1rem;
  max-width: 72rem;
  margin: 0 auto;
  padding-top: 1rem;
  padding-bottom: 5rem;
}

.studio__panel,
.studio__stats {
  border: 1px solid var(--line-soft);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    rgba(6, 9, 14, 0.78);
}

.studio__panel {
  padding: 1.5rem;
}

.studio__panel p:last-child {
  margin: 1rem 0 0;
  max-width: 38rem;
  color: var(--muted);
  line-height: 1.72;
}

.studio__stats {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: 1.5rem;
}

.studio__stats div {
  display: grid;
  gap: 0.25rem;
}

.studio__stats span {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.studio__stats strong {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.newsletter {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem 3.5rem;
}

.newsletter__panel {
  padding: 1.5rem;
  border: 1px solid var(--line-soft);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    linear-gradient(135deg, rgba(18, 37, 74, 0.54), rgba(7, 10, 16, 0.9));
}

.newsletter__panel h2 {
  margin: 0 0 1.2rem;
  font-size: clamp(1.5rem, 2vw, 2.35rem);
  line-height: 1.1;
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
}

.newsletter-form input,
.newsletter-form button {
  min-height: 3.25rem;
  border: 1px solid var(--line-soft);
  background: rgba(4, 6, 10, 0.68);
  color: var(--ink);
  font: inherit;
  letter-spacing: 0.06em;
}

.newsletter-form input {
  padding: 0 1rem;
}

.newsletter-form input::placeholder {
  color: rgba(242, 245, 248, 0.48);
}

.newsletter-form input:focus-visible,
.newsletter-form button:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.42);
  outline-offset: 0;
}

.newsletter-form button {
  min-width: 8rem;
  padding: 0 1.25rem;
  cursor: pointer;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.newsletter-form button:hover,
.newsletter-form button:focus-visible {
  background: rgba(255, 255, 255, 0.88);
  color: #0b1018;
  transform: translateY(-1px);
}

.newsletter-form__status {
  min-height: 1.2rem;
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.signup-modal {
  position: fixed;
  inset: 0;
  z-index: 15;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    visibility 220ms ease;
}

.signup-modal[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.signup-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 5, 8, 0.42);
  backdrop-filter: blur(18px);
}

.signup-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 31rem);
  padding: 1.4rem;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.52);
}

.signup-modal__close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink);
  cursor: pointer;
}

.signup-modal__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.9rem;
  height: 1px;
  background: currentColor;
}

.signup-modal__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.signup-modal__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.signup-modal .section-heading__kicker {
  margin-right: 3rem;
}

.signup-modal .newsletter-form {
  grid-template-columns: 1fr;
}

.signup-modal .newsletter-form button {
  width: 100%;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem 2rem;
  color: var(--muted);
}

.site-footer p,
.site-footer a {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--ink);
  outline: none;
}

.motion-toggle {
  position: fixed;
  right: 1.2rem;
  bottom: 1rem;
  z-index: 7;
}

.motion-toggle__bars {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  width: 1.15rem;
  height: 1.15rem;
}

.motion-toggle__bars span {
  display: block;
  width: 0.2rem;
  height: 1rem;
  background: #ff2121;
  box-shadow: 0 0 10px rgba(255, 33, 33, 0.3);
  transition:
    transform 180ms ease,
    width 180ms ease,
    clip-path 180ms ease,
    background-color 180ms ease;
}

.motion-toggle[data-state="stopped"] .motion-toggle__bars,
.motion-toggle[data-state="error"] .motion-toggle__bars {
  gap: 0;
}

.motion-toggle[data-state="stopped"] .motion-toggle__bars span:first-child,
.motion-toggle[data-state="error"] .motion-toggle__bars span:first-child {
  width: 0.75rem;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: #f2f5f8;
}

.motion-toggle[data-state="stopped"] .motion-toggle__bars span:last-child,
.motion-toggle[data-state="error"] .motion-toggle__bars span:last-child {
  width: 0;
  transform: scaleY(0);
}

.motion-toggle[data-state="error"] .motion-toggle__bars span:first-child {
  background: #ff9e57;
}

.app[data-animated="false"] .scene__grain,
.app[data-animated="false"] .scene__blur,
.app[data-animated="false"] .scene__beam,
.app[data-animated="false"] .logo-orbit,
.app[data-animated="false"] .logo-emblem {
  animation-play-state: paused;
}

#drop,
#studio,
#top {
  scroll-margin-top: 6rem;
}

@keyframes grainShift {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(-3%, 2%);
  }
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) rotate(var(--drift-rotate, 0deg));
  }

  to {
    transform: translate3d(2vw, -3vh, 0) rotate(calc(var(--drift-rotate, 0deg) + 2deg));
  }
}

@keyframes beamPulse {
  from {
    opacity: 0.28;
    transform: rotate(var(--beam-rotate, 0deg)) scale(0.98);
  }

  to {
    opacity: 0.48;
    transform: rotate(var(--beam-rotate, 0deg)) scale(1.04);
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-0.6rem);
  }
}

@keyframes logoSpin {
  from {
    transform: rotateY(0deg);
  }

  to {
    transform: rotateY(360deg);
  }
}

@media (max-width: 900px) {
  .logo-stage {
    width: min(14rem, 40vw);
  }

  .product-grid,
  .studio {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .chrome-header {
    padding: 1rem 0.85rem 0;
  }

  .logo-stage {
    top: 0.6rem;
    width: min(11rem, 46vw);
  }

  .nav-panel {
    top: 4.35rem;
    left: 0.85rem;
    width: min(14rem, calc(100vw - 1.7rem));
  }

  .hero {
    padding: 7.25rem 1rem 4.5rem;
  }

  .hero__content {
    width: min(100%, 19rem);
    transform: translateY(7vh);
  }

  .hero__actions {
    width: 100%;
  }

  .hero__eyebrow {
    font-size: 1rem;
    line-height: 1.4;
  }

  .cta-button {
    min-width: 9.6rem;
    min-height: 3.15rem;
  }

  .cta-button--secondary {
    min-width: 100%;
  }

  .collection,
  .studio {
    padding-inline: 1rem;
  }

  .signup-modal__panel {
    padding: 1.15rem;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding-inline: 1rem;
  }

  .motion-toggle {
    right: 0.7rem;
    bottom: 0.65rem;
  }
}

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

  .scene__grain,
  .scene__blur,
  .scene__beam,
  .logo-orbit,
  .logo-emblem {
    animation: none;
  }

  .logo-stage,
  .cta-button,
  .icon-button,
  .nav-panel,
  .signup-modal,
  .app,
  .collection,
  .studio,
  .site-footer {
    transition: none;
  }
}
