/* ============ VETTIA — launch site ============ */

:root {
  --ink: #0c0a08;
  --cream: #ede6da;
  --cognac: #a9713f;
  --leather: #8b5e3c;
  --indigo: #4a5568;
  --line: rgba(237, 230, 218, 0.14);
  --dim: rgba(237, 230, 218, 0.55);
  --pad: clamp(20px, 5vw, 72px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  background: var(--ink);
  scrollbar-width: thin;
  scrollbar-color: rgba(169, 113, 63, 0.5) transparent;
}

html.loading {
  overflow: hidden;
}

html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  background: var(--ink);
  color: var(--cream);
  font-family: 'Archivo', 'Helvetica Neue', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--cognac);
  color: var(--ink);
}

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

:focus-visible {
  outline: 1px solid var(--cognac);
  outline-offset: 3px;
}

.mono {
  font-family: 'Space Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: var(--pad);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.mask > * {
  display: inline-block;
  will-change: transform;
}

.outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--cream);
}

/* ---------- layers ---------- */

#gl {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
#gl.front {
  z-index: 60;
}

#loader {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: #050403;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 7vh;
}
.loader-tag {
  position: relative;
  z-index: 70;
  color: var(--dim);
  animation: loaderPulse 2.6s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.9; }
}

main,
footer {
  position: relative;
  z-index: 10;
}

.grain {
  position: fixed;
  inset: -5%;
  width: 110%;
  height: 110%;
  z-index: 90;
  pointer-events: none;
  opacity: 0.35;
  mix-blend-mode: overlay;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="280" height="280"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.85" numOctaves="2" stitchTiles="stitch"/><feColorMatrix type="saturate" values="0"/></filter><rect width="280" height="280" filter="url(%23n)" opacity="0.42"/></svg>');
  animation: grainShift 1.1s steps(1) infinite;
}
@keyframes grainShift {
  0% { transform: translate3d(0, 0, 0); }
  12% { transform: translate3d(-2.2%, 1.4%, 0); }
  25% { transform: translate3d(1.6%, -2.0%, 0); }
  38% { transform: translate3d(-1.2%, -1.8%, 0); }
  50% { transform: translate3d(2.0%, 1.1%, 0); }
  63% { transform: translate3d(-1.8%, 0.8%, 0); }
  75% { transform: translate3d(1.1%, 2.1%, 0); }
  88% { transform: translate3d(-0.7%, -1.2%, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

.vignette {
  position: fixed;
  inset: 0;
  z-index: 89;
  pointer-events: none;
  background: radial-gradient(ellipse 120% 90% at 50% 45%, transparent 55%, rgba(4, 3, 2, 0.62) 100%);
}

/* ---------- header ---------- */

#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--pad);
  opacity: 0;
  transition: background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
#site-header.scrolled {
  background: rgba(12, 10, 8, 0.72);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--line);
}
#site-header .brand {
  font-family: 'Anton', sans-serif;
  font-size: 20px;
  letter-spacing: 0.08em;
}
.nav-link {
  color: var(--cream);
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.nav-link:hover {
  color: var(--cognac);
  border-bottom-color: var(--cognac);
}

/* ---------- sections base ---------- */

.section {
  position: relative;
}

.sec-index {
  color: var(--cognac);
  margin-bottom: 18px;
}

.coin-slot {
  pointer-events: none;
}

/* ---------- hero ---------- */

#hero {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
}
.hero-inner {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(96px, 20vw, 330px);
  line-height: 0.85;
  letter-spacing: 0.005em;
  user-select: none;
}
.hero-sub {
  margin-top: clamp(18px, 3vh, 34px);
  font-size: clamp(15px, 1.4vw, 19px);
  letter-spacing: 0.06em;
  color: var(--dim);
}
.hero-sub .accent {
  color: var(--cognac);
}
.coin-slot--hero {
  position: absolute;
  right: 11%;
  top: 58%;
  width: clamp(120px, 24vh, 230px);
  height: clamp(120px, 24vh, 230px);
}
.hero-corner {
  position: absolute;
  bottom: 28px;
  color: var(--dim);
}
.corner-bl { left: var(--pad); }
.corner-br { right: var(--pad); }

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--dim);
}
.scroll-cue i {
  width: 1px;
  height: 44px;
  background: linear-gradient(var(--cognac), transparent);
  animation: cueDrop 1.8s ease-in-out infinite;
  transform-origin: top;
}
@keyframes cueDrop {
  0% { transform: scaleY(0); }
  45% { transform: scaleY(1); }
  100% { transform: scaleY(0); opacity: 0; }
}

/* ---------- manifesto ---------- */

#manifesto {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
}
.manifesto-inner {
  padding-inline: var(--pad);
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 4vh, 44px);
  text-align: center;
}
.m-line {
  font-family: 'Anton', sans-serif;
  font-size: clamp(34px, 5.4vw, 92px);
  line-height: 1.04;
  letter-spacing: 0.01em;
  opacity: 0.05;
}
.m-line--accent {
  color: var(--cognac);
}

/* ---------- product / 001 ---------- */

#product {
  padding: 22vh 0 20vh;
}
.sec-head {
  position: relative;
  margin-bottom: clamp(48px, 9vh, 110px);
}
.coin-slot--marker {
  position: absolute;
  left: 0;
  top: -20px;
  width: 64px;
  height: 64px;
}
.sec-head .sec-index {
  margin-left: 92px;
}
.sec-title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(58px, 10vw, 170px);
  line-height: 0.95;
}
.sec-sub {
  margin-top: 14px;
  color: var(--dim);
}

.product-stage {
  position: relative;
  display: grid;
  place-items: center;
  padding-block: 4vh;
}
.ph {
  position: relative;
  border: 1px solid var(--line);
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 18% 8%, rgba(169, 113, 63, 0.16), transparent 55%),
    radial-gradient(90% 120% at 85% 92%, rgba(74, 85, 104, 0.22), transparent 60%),
    linear-gradient(163deg, #191510 0%, #0e0b08 55%, #141009 100%);
}
.ph::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(237, 230, 218, 0.08);
  pointer-events: none;
}
.ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: sepia(0.22) saturate(0.85) contrast(1.05) brightness(0.92);
}
.ph-label {
  position: absolute;
  left: 14px;
  bottom: 12px;
  color: rgba(237, 230, 218, 0.4);
}
.ph--product {
  width: min(560px, 82vw);
  aspect-ratio: 4 / 5;
}

.tag {
  position: absolute;
  color: var(--cream);
  background: rgba(12, 10, 8, 0.78);
  border: 1px solid var(--line);
  padding: 10px 14px;
  backdrop-filter: blur(4px);
  white-space: nowrap;
}
.tag b {
  color: var(--cognac);
  font-weight: 700;
  margin-right: 8px;
}
.tag--1 { left: 8%; top: 16%; }
.tag--2 { right: 6%; top: 30%; }
.tag--3 { left: 5%; bottom: 30%; }
.tag--4 { right: 9%; bottom: 14%; }

/* ---------- dark room: cursor is the light ---------- */

.darkroom {
  margin-top: clamp(70px, 14vh, 160px);
}
.dr-hint {
  display: block;
  text-align: center;
  color: var(--dim);
  margin-bottom: 26px;
}
.dr-hint-touch {
  display: none;
}
.dr-stage {
  --lx: 50%;
  --ly: 45%;
  position: relative;
  border: 1px solid var(--line);
  background: #070504;
  padding: clamp(28px, 6vh, 70px) clamp(12px, 3vw, 40px);
  overflow: hidden;
  cursor: crosshair;
}
.dr-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease;
  background: radial-gradient(circle 270px at var(--lx) var(--ly), rgba(169, 113, 63, 0.13), transparent 70%);
}
.dr-reveal {
  opacity: 0;
  transition: opacity 0.6s ease;
  -webkit-mask-image: radial-gradient(circle 215px at var(--lx) var(--ly), #000 30%, rgba(0, 0, 0, 0.4) 60%, transparent 78%);
  mask-image: radial-gradient(circle 215px at var(--lx) var(--ly), #000 30%, rgba(0, 0, 0, 0.4) 60%, transparent 78%);
}
.dr-stage.lit .dr-reveal,
.dr-stage.lit .dr-glow {
  opacity: 1;
}
.dr-figs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(16px, 4.5vw, 70px);
}
.dr-fig {
  text-align: center;
}
.dr-fig svg {
  width: clamp(104px, 16vw, 200px);
  height: auto;
  display: block;
  margin-inline: auto;
}
.dr-fig-label {
  margin-top: 14px;
  color: var(--dim);
}
svg .dr-note {
  font-family: 'Space Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  fill: rgba(237, 230, 218, 0.65);
}
/* no hover surface (touch): jeans rest half-lit, no flashlight */
@media (hover: none) {
  .dr-reveal {
    -webkit-mask-image: none;
    mask-image: none;
    opacity: 0.55;
  }
  .dr-glow {
    display: none;
  }
  .dr-hint-desktop {
    display: none;
  }
  .dr-hint-touch {
    display: inline;
  }
}
html.reduced .dr-reveal {
  -webkit-mask-image: none;
  mask-image: none;
  opacity: 0.85;
  transition: none;
}

/* ---------- origin ---------- */

#origin {
  min-height: 130vh;
  min-height: 130svh;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.origin-inner {
  text-align: center;
  padding-block: 30vh;
}
.origin-title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(44px, 7.5vw, 130px);
  line-height: 1.02;
}
.origin-title .mask {
  display: block;
}
.o-line--2 {
  color: var(--cognac);
}
.origin-coords {
  margin-top: 30px;
  color: var(--dim);
}
.origin-fallback {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8vh;
  width: 100%;
  height: 30vh;
  color: var(--cognac);
  opacity: 0.55;
}

/* ---------- character ---------- */

#character {
  padding: 16vh 0 10vh;
  overflow: hidden;
}
#character .sec-index {
  margin-bottom: 6vh;
}
.char-word {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(64px, 14.5vw, 250px);
  line-height: 1;
  padding-inline: var(--pad);
  margin-block: clamp(30px, 7vh, 90px);
  white-space: nowrap;
}
.char-word:nth-of-type(even) {
  text-align: right;
}
.ph--band {
  width: min(1100px, 88vw);
  aspect-ratio: 21 / 9;
  margin-inline: auto;
}
.ph--moto {
  background:
    radial-gradient(80% 130% at 25% 100%, rgba(169, 113, 63, 0.25), transparent 60%),
    radial-gradient(60% 90% at 80% 0%, rgba(74, 85, 104, 0.18), transparent 55%),
    linear-gradient(196deg, #16110c 0%, #0d0a07 60%, #120e08 100%);
}
.ph--road {
  background:
    radial-gradient(120% 60% at 50% 100%, rgba(74, 85, 104, 0.28), transparent 65%),
    radial-gradient(50% 60% at 70% 20%, rgba(169, 113, 63, 0.14), transparent 60%),
    linear-gradient(180deg, #100d0a 0%, #0c0a08 100%);
}
.ph--workshop {
  background:
    radial-gradient(90% 110% at 70% 80%, rgba(139, 94, 60, 0.24), transparent 60%),
    linear-gradient(150deg, #181209 0%, #0e0b08 70%);
}

/* ---------- waitlist ---------- */

#waitlist {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding-block: 16vh;
}
.waitlist-box {
  position: relative;
  max-width: 760px;
  text-align: center;
}
.coin-slot--waitlist {
  width: 74px;
  height: 74px;
  margin: 0 auto 26px;
}
.wl-title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(54px, 9vw, 140px);
  line-height: 0.95;
}
.wl-sub {
  margin: 26px auto 44px;
  max-width: 420px;
  color: var(--dim);
  letter-spacing: 0.03em;
}
#waitlist-form .field {
  display: flex;
  gap: 0;
  max-width: 520px;
  margin-inline: auto;
  border: 1px solid var(--line);
  background: rgba(12, 10, 8, 0.6);
}
#email {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  color: var(--cream);
  padding: 18px 18px;
  font-size: 12px;
  letter-spacing: 0.12em;
}
#email::placeholder {
  color: rgba(237, 230, 218, 0.55);
}
#email:focus {
  outline: none;
}
#waitlist-form .field:focus-within {
  border-color: var(--cognac);
}
#wl-confirm:focus {
  outline: none;
}
#waitlist-form button {
  border: 0;
  background: var(--cognac);
  color: var(--ink);
  font-weight: 700;
  padding: 18px 26px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.15s ease;
}
#waitlist-form button:hover {
  background: #c08549;
}
#waitlist-form button:active {
  transform: scale(0.97);
}
.form-note {
  margin-top: 18px;
  color: var(--dim);
}
.form-note.err {
  color: #c96f4a;
}
.wl-confirm-big {
  font-family: 'Anton', sans-serif;
  font-size: clamp(40px, 6vw, 84px);
  color: var(--cognac);
}

/* ---------- footer ---------- */

#site-footer {
  border-top: 1px solid var(--line);
  padding: 60px 0 40px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.f-mark {
  font-family: 'Anton', sans-serif;
  font-size: 30px;
  letter-spacing: 0.08em;
}
.f-mountain {
  width: 44px;
  color: var(--cognac);
}
.f-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 34px;
  color: var(--dim);
}
.f-meta a:hover {
  color: var(--cognac);
}

/* ---------- jeans page ---------- */

.jeans-page #site-header {
  opacity: 1;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
}
.nav-link--active {
  color: var(--cognac);
  border-bottom-color: var(--cognac);
}
.jeans-main {
  padding-top: clamp(120px, 18vh, 190px);
}
.j-intro {
  text-align: center;
  margin-bottom: clamp(40px, 8vh, 90px);
}
.j-title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(64px, 12vw, 200px);
  line-height: 0.9;
}
.j-sub {
  margin-top: 20px;
  color: var(--dim);
  font-size: clamp(15px, 1.4vw, 19px);
  letter-spacing: 0.04em;
}
.j-note {
  margin-top: 16px;
  color: rgba(169, 113, 63, 0.75);
}

.j-band {
  display: grid;
  grid-template-columns: 1fr 0.9fr 1fr;
  gap: 2px;
  margin-bottom: clamp(60px, 12vh, 140px);
}
.j-band-fig {
  aspect-ratio: 4 / 5;
  border: 0;
}
.j-band-fig::after {
  display: none;
}

.j-product {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
  margin-bottom: clamp(80px, 14vh, 170px);
}
.j-product--flip .j-gallery {
  order: 2;
}
.j-main-fig {
  aspect-ratio: 4 / 5;
}
.j-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}
.j-thumbs .ph {
  aspect-ratio: 4 / 5;
}
.j-thumbs .ph::after {
  inset: 5px;
}
.j-info {
  position: sticky;
  top: 110px;
}
.j-name {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(44px, 5.5vw, 92px);
  line-height: 0.95;
  margin-bottom: 18px;
}
.j-price {
  color: var(--cream);
  font-size: 14px;
  margin-bottom: 30px;
}
.j-price-tag {
  display: block;
  margin-top: 6px;
  font-size: 10px;
  color: rgba(169, 113, 63, 0.85);
}
.j-specs {
  list-style: none;
  border-top: 1px solid var(--line);
  margin-bottom: 34px;
}
.j-specs li {
  display: flex;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--dim);
}
.j-specs b {
  flex: 0 0 92px;
  color: var(--cognac);
  font-weight: 700;
}
.j-cta {
  display: inline-block;
  background: var(--cognac);
  color: var(--ink);
  font-weight: 700;
  padding: 16px 26px;
  transition: background 0.25s ease, transform 0.15s ease;
}
.j-cta:hover {
  background: #c08549;
}
.j-cta:active {
  transform: scale(0.97);
}

.j-h2 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 6vw, 96px);
  line-height: 0.95;
  margin-bottom: clamp(28px, 5vh, 54px);
}
.j-h3 {
  color: var(--dim);
  margin: 44px 0 16px;
}
.j-sizes,
.j-tech {
  margin-bottom: clamp(80px, 14vh, 160px);
}
.j-lengths {
  border-top: 1px solid var(--line);
  margin-bottom: 26px;
}
.j-lengths p {
  display: grid;
  grid-template-columns: minmax(110px, 1fr) minmax(90px, 1fr) 2fr;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--dim);
}
.j-lengths b {
  color: var(--cream);
  font-weight: 700;
}
.j-tip {
  max-width: 620px;
  color: var(--dim);
  letter-spacing: 0.02em;
}
.j-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  -webkit-overflow-scrolling: touch;
}
.j-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 11px;
}
.j-table th,
.j-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid rgba(237, 230, 218, 0.06);
  color: var(--dim);
  white-space: nowrap;
}
.j-table thead th {
  color: var(--cognac);
  background: rgba(169, 113, 63, 0.06);
}
.j-table tbody td:first-child {
  color: var(--cream);
}
.j-table tbody tr:last-child td {
  border-bottom: 0;
}
.j-foot {
  margin-top: 14px;
  color: rgba(237, 230, 218, 0.45);
}
.j-table--tech {
  min-width: 560px;
}

.j-ctaband {
  text-align: center;
  padding: clamp(70px, 14vh, 150px) var(--pad);
  border-top: 1px solid var(--line);
}
.j-ctatitle {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(48px, 8vw, 130px);
  line-height: 0.95;
  margin-bottom: 36px;
}
.j-cta--big {
  padding: 20px 36px;
  font-size: 13px;
}

@media (max-width: 820px) {
  .jeans-main {
    padding-top: 110px;
  }
  .j-band {
    grid-template-columns: 1fr;
  }
  .j-band-fig {
    aspect-ratio: 16 / 10;
  }
  .j-band-fig--center {
    aspect-ratio: 4 / 5;
  }
  .j-product {
    grid-template-columns: 1fr;
  }
  .j-product--flip .j-gallery {
    order: 0;
  }
  .j-info {
    position: static;
  }
  .j-lengths p {
    grid-template-columns: 1fr 1fr;
  }
  .j-lengths p span:last-child {
    grid-column: 1 / -1;
    color: rgba(237, 230, 218, 0.4);
  }
}

/* ---------- mobile ---------- */

@media (max-width: 820px) {
  .coin-slot--hero {
    right: auto;
    left: 50%;
    top: auto;
    bottom: 15vh;
    transform: translateX(-50%);
    width: 108px;
    height: 108px;
  }
  .hero-corner.corner-br {
    display: none;
  }
  .scroll-cue {
    display: none;
  }
  .tag {
    position: static;
    display: block;
    margin: 10px auto 0;
    width: min(560px, 82vw);
    white-space: normal;
  }
  .product-stage {
    display: block;
  }
  .ph--product {
    margin-inline: auto;
    margin-bottom: 22px;
  }
  .sec-head .sec-index {
    margin-left: 0;
  }
  .coin-slot--marker {
    display: none;
  }
  #origin {
    min-height: 100vh;
    min-height: 100svh;
  }
  .char-word {
    white-space: normal;
  }
  /* iOS: inputs under 16px trigger auto-zoom on focus */
  #email {
    font-size: 16px;
    letter-spacing: 0.08em;
  }
  /* cheaper film grain on small devices: static instead of animated */
  .grain {
    animation: none;
  }
}

/* mode-latched fallbacks: the JS decides mobile/desktop once at load, so these
   must follow the html.mobile class, not the live media query */
html.mobile #manifesto {
  background:
    repeating-linear-gradient(45deg, rgba(74, 85, 104, 0.06) 0 2px, transparent 2px 5px),
    radial-gradient(120% 100% at 50% 30%, rgba(74, 85, 104, 0.16), transparent 70%);
}
html.mobile .origin-fallback {
  display: block;
}

/* ---------- reduced motion / no webgl ---------- */

@media (prefers-reduced-motion: reduce) {
  .grain,
  .scroll-cue i,
  .loader-tag {
    animation: none;
  }
}
html.no-webgl .origin-fallback {
  display: block;
}
html.no-webgl .m-line,
html.reduced .m-line {
  opacity: 1;
}
