﻿:root {
  --bg: #050505;
  --ink: #e7e1d8;
  --muted: #8e877d;
  --red: #9e1d22;
  --red-hot: #df3334;
  --blue: #627996;
  --line: rgba(231, 225, 216, 0.16);
  --glass: rgba(12, 12, 12, 0.68);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 12%, rgba(158, 29, 34, 0.18), transparent 26rem),
    radial-gradient(circle at 84% 18%, rgba(98, 121, 150, 0.12), transparent 24rem),
    linear-gradient(180deg, #030303, #0a0908 55%, #030303);
  font-family: "IBM Plex Mono", monospace;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

.cursor-light {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 11;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 246, 221, 0.18), rgba(223, 51, 52, 0.1) 28%, transparent 68%);
  filter: blur(2px);
  transform: translate3d(-50%, -50%, 0);
  mix-blend-mode: screen;
}

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

button {
  font: inherit;
}

.mono,
nav,
.status,
.caption,
.footer {
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0;
}

.boot {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 52% 42%, rgba(223, 51, 52, 0.14), transparent 20rem),
    radial-gradient(circle at 18% 18%, rgba(98, 121, 150, 0.16), transparent 26rem),
    linear-gradient(180deg, #020202, #080504 58%, #010101);
  transition: opacity 1200ms cubic-bezier(0.16, 1, 0.3, 1), visibility 1200ms ease;
}

.boot.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.boot__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(circle, #000 0%, transparent 72%);
  animation: drift 16s linear infinite;
}

.boot__weather {
  position: absolute;
  inset: -20%;
  opacity: 0.45;
  background:
    linear-gradient(115deg, transparent 0 46%, rgba(255, 255, 255, 0.42) 47%, transparent 48% 100%),
    repeating-linear-gradient(100deg, transparent 0 18px, rgba(231, 225, 216, 0.04) 19px, transparent 22px);
  filter: blur(0.4px);
  transform: translate3d(-8%, -8%, 0);
  animation: stormSlide 7s linear infinite, entryFlash 6.4s steps(1) infinite;
  mix-blend-mode: screen;
}

.boot__content {
  position: relative;
  width: min(820px, calc(100vw - 36px));
  padding: clamp(26px, 4.5vw, 48px) clamp(20px, 4vw, 36px);
  border: 1px solid var(--line);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(14, 14, 14, 0.78), rgba(3, 3, 3, 0.84)),
    rgba(6, 6, 6, 0.72);
  box-shadow: 0 0 80px rgba(158, 29, 34, 0.22), inset 0 0 48px rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(10px);
  transform: translateY(0);
  animation: bootRise 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.boot h1 {
  margin: 4px 0 16px;
  color: var(--red-hot);
  font-family: Impact, "Arial Black", "Montserrat", sans-serif;
  font-size: clamp(3.5rem, 14vw, 9rem);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: 0.02em;
  text-shadow: 0 0 28px rgba(223, 51, 52, 0.42);
}

.boot-title::after {
  content: "";
  display: inline-block;
  width: 0.08em;
  height: 0.72em;
  margin-left: 0.08em;
  background: var(--ink);
  box-shadow: 0 0 18px rgba(255, 246, 221, 0.5);
  animation: cursorBlink 740ms steps(1) infinite;
}

.boot-title.is-typed::after {
  background: var(--red-hot);
}

.boot__signal {
  max-width: 440px;
  margin: 4px auto 0;
  color: rgba(231, 225, 216, 0.68);
  font-size: 0.78rem;
  line-height: 1.7;
}

.enter-btn {
  display: inline-grid;
  gap: 7px;
  min-width: 260px;
  padding: 15px 24px;
  color: var(--ink);
  border: 1px solid rgba(223, 51, 52, 0.6);
  background:
    linear-gradient(90deg, rgba(223, 51, 52, 0.22), rgba(98, 121, 150, 0.08)),
    rgba(158, 29, 34, 0.12);
  cursor: pointer;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.enter-btn:hover {
  transform: translateY(-2px);
  background: rgba(158, 29, 34, 0.23);
  box-shadow: 0 0 35px rgba(223, 51, 52, 0.22);
  border-color: rgba(255, 246, 221, 0.68);
}

.enter-btn:active {
  transform: translateY(0) scale(0.985);
}

.enter-btn small {
  color: var(--muted);
  font-size: 0.67rem;
  text-transform: uppercase;
}

.noise,
.scanlines {
  position: fixed;
  inset: 0;
  z-index: 10;
  pointer-events: none;
}

.noise {
  opacity: 0.18;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.7) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.45) 0 1px, transparent 1px);
  background-size: 17px 19px, 23px 29px;
  animation: staticNoise 550ms steps(2) infinite;
  mix-blend-mode: screen;
}

.scanlines {
  opacity: 0.16;
  background: repeating-linear-gradient(180deg, transparent 0 3px, rgba(255, 255, 255, 0.12) 4px);
}

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

.archive-shell {
  position: relative;
  z-index: 2;
  width: min(1860px, calc(100vw - 28px));
  margin: 14px auto;
}

.glass,
.panel {
  border: 1px solid var(--line);
  background: var(--glass);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025), 0 20px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), border-color 260ms ease, box-shadow 260ms ease;
}

.topbar {
  position: sticky;
  top: 14px;
  z-index: 9;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) auto auto;
  gap: 28px;
  align-items: center;
  min-height: 76px;
  padding: 0 42px;
}

.wishlist-trigger,
.cart-trigger {
  min-width: 88px;
  padding: 10px 14px;
  color: var(--ink);
  border: 1px solid rgba(223, 51, 52, 0.42);
  background: rgba(158, 29, 34, 0.15);
  text-transform: uppercase;
  cursor: pointer;
}

.wishlist-trigger span,
.cart-trigger span {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  margin-left: 6px;
  color: #050505;
  background: var(--red-hot);
}

.wishlist-trigger {
  border-color: rgba(231, 225, 216, 0.22);
  background: rgba(255, 255, 255, 0.035);
}

.brand {
  color: var(--red-hot);
  font-family: Impact, "Arial Black", "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-shadow: 0 0 18px rgba(223, 51, 52, 0.28);
}

.brand span {
  color: var(--ink);
}

nav {
  display: flex;
  gap: clamp(22px, 4vw, 72px);
  justify-content: center;
  color: var(--muted);
  font-size: 0.78rem;
}

nav a {
  transition: color 180ms ease, text-shadow 180ms ease;
}

nav a:hover {
  color: var(--ink);
  text-shadow: 0 0 14px rgba(223, 51, 52, 0.55);
}

 .status {
  display: none;
  justify-items: end;
  color: var(--muted);
  font-size: 0.72rem;
}

.status b,
.status time {
  color: var(--red-hot);
}

.hero {
  position: relative;
  min-height: 650px;
  margin-top: 14px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.62)),
    radial-gradient(circle at 50% 38%, rgba(90, 30, 33, 0.22), transparent 38rem),
    #050505;
}

.hero:hover,
.artifact:hover,
.memory-card:hover,
.product-card:hover {
  border-color: rgba(231, 225, 216, 0.28);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035), 0 26px 80px rgba(0, 0, 0, 0.38);
}

.hero::before,
.hero::after,
.collection-wall::before,
.founder::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before,
.collection-wall::before,
.founder::before {
  background-image:
    linear-gradient(rgba(231, 225, 216, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(231, 225, 216, 0.04) 1px, transparent 1px);
  background-size: 92px 92px;
}

.hero::after {
  display: none;
}

.moon {
  position: absolute;
  left: -200px;
  top: 20px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  opacity: 0.85;
  filter: drop-shadow(0 0 60px rgba(231, 225, 216, 0.18)) drop-shadow(0 0 120px rgba(223, 51, 52, 0.07));
  animation: moonPulse 5.2s ease-in-out infinite;
  transform: translate3d(calc(var(--mx, 0) * -34px), calc(var(--my, 0) * -34px), 0);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), filter 0.45s ease;
  pointer-events: none;
}

.tv {
  position: absolute;
  right: 23%;
  bottom: 60px;
  width: 170px;
  height: 112px;
  border: 8px solid #14110f;
  background: #070707;
  transform: perspective(600px) rotateY(-12deg) translate3d(calc(var(--mx, 0) * -18px), calc(var(--my, 0) * -18px), 0);
  box-shadow: 18px 20px 35px rgba(0, 0, 0, 0.6);
  transition: transform 0.25s cubic-bezier(0.1, 0.8, 0.3, 1);
}

.tv::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: -21px;
  height: 13px;
  background: #100f0e;
}

.tv-static {
  height: 100%;
  background:
    repeating-radial-gradient(circle at 40% 50%, rgba(255, 255, 255, 0.95) 0 1px, rgba(0, 0, 0, 0.9) 2px 4px),
    #000;
  animation: tvStatic 180ms steps(2) infinite;
}

.constellation {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.82;
  pointer-events: none;
}

.city {
  position: absolute;
  left: 18%;
  right: 0;
  bottom: 0;
  height: 210px;
  background:
    linear-gradient(90deg, transparent 0 4%, rgba(255, 255, 255, 0.12) 4% 4.6%, transparent 4.6% 9%),
    linear-gradient(0deg, #0a0a0a 0 52%, transparent 52%);
  background-size: 64px 100%;
  clip-path: polygon(0 82%, 4% 65%, 8% 78%, 14% 52%, 20% 71%, 25% 50%, 31% 79%, 37% 56%, 45% 62%, 51% 40%, 57% 76%, 64% 49%, 70% 68%, 76% 37%, 82% 77%, 90% 58%, 100% 66%, 100% 100%, 0 100%);
  opacity: 0.7;
  transform: translate3d(calc(var(--mx, 0) * 12px), 0, 0);
  transition: transform 0.25s cubic-bezier(0.1, 0.8, 0.3, 1);
}

.tv {
  position: absolute;
  right: 23%;
  bottom: 60px;
  width: 170px;
  height: 112px;
  border: 8px solid #14110f;
  background: #070707;
  transform: perspective(600px) rotateY(-12deg) translate3d(calc(var(--mx, 0) * -18px), calc(var(--my, 0) * -18px), 0);
  box-shadow: 18px 20px 35px rgba(0, 0, 0, 0.6);
  transition: transform 0.25s cubic-bezier(0.1, 0.8, 0.3, 1);
}

.tv::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: -21px;
  height: 13px;
  background: #100f0e;
}

.tv-static {
  height: 100%;
  background:
    repeating-radial-gradient(circle at 40% 50%, rgba(255, 255, 255, 0.95) 0 1px, rgba(0, 0, 0, 0.9) 2px 4px),
    #000;
  animation: tvStatic 180ms steps(2) infinite;
}

.figure {
  position: absolute;
  right: 36%;
  bottom: 0;
  width: 92px;
  height: 236px;
  background: linear-gradient(#070707, #030303);
  clip-path: polygon(38% 0, 61% 0, 70% 17%, 68% 40%, 83% 100%, 18% 100%, 31% 40%, 30% 16%);
  opacity: 0.88;
  transform: translate3d(calc(var(--mx, 0) * -8px), 0, 0);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s ease;
  filter: drop-shadow(0 0 34px rgba(0, 0, 0, 0.72));
}

.hero__meta {
  position: absolute;
  top: 145px;
  left: 40%;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

.hero h1 {
  position: absolute;
  top: 218px;
  left: 31%;
  width: min(580px, 54vw);
  margin: 0;
  color: var(--red-hot);
  font-family: "Cinzel", serif;
  font-size: clamp(3rem, 6.4vw, 7rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.08em;
  text-align: center;
  text-shadow:
    0 0 22px rgba(223, 51, 52, 0.55),
    2px 2px 0px rgba(0,0,0,0.8),
    -1px 0 rgba(98, 121, 150, 0.4),
    0 0 60px rgba(223, 51, 52, 0.25),
    3px 0 0 rgba(0,0,0,0.5);
  transform: translate3d(calc(var(--mx, 0) * -45px), calc(var(--my, 0) * -45px), 40px);
  transform-style: preserve-3d;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), text-shadow 0.45s ease;
}

.distort {
  animation: textFlicker 5s infinite;
}

.distort::before,
.distort::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
}

.distort::before {
  color: rgba(98, 121, 150, 0.58);
  transform: translateX(-2px);
  animation: chromaShift 7s steps(1) infinite;
}

.distort::after {
  color: rgba(255, 246, 221, 0.5);
  transform: translateX(2px);
  animation: chromaShift 6.1s steps(1) infinite reverse;
}

.hero__copy,
.urdu {
  position: absolute;
  left: 48px;
  bottom: 134px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.urdu {
  bottom: 98px;
  color: var(--red-hot);
}

.coordinates {
  position: absolute;
  top: 280px;
  right: 8%;
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.76rem;
}

.coordinates b {
  color: var(--ink);
  font-weight: 400;
}

.scroll-note {
  position: absolute;
  right: 46px;
  bottom: 78px;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: right;
}

.ticker {
  overflow: hidden;
  height: 68px;
  border-top: 0;
}

.ticker__track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  height: 100%;
  color: var(--muted);
  animation: marquee 22s linear infinite;
}

.ticker__track span {
  white-space: nowrap;
}

.drop-status,
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 14px;
  padding: 0;
  overflow: hidden;
}

.trust-strip {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.drop-status span,
.trust-strip span {
  display: grid;
  place-items: center;
  min-height: 58px;
  padding: 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
  text-align: center;
}

.drop-status span:first-child,
.trust-strip span:first-child {
  color: var(--red-hot);
}

.dashboard {
  display: grid;
  grid-template-columns: 220px minmax(320px, 1.08fr) minmax(310px, 0.92fr) minmax(300px, 0.92fr);
  gap: 14px;
  margin-top: 14px;
}

.sidebar {
  min-height: 470px;
  padding: 22px;
}

.sidebar time {
  display: block;
  margin-bottom: 20px;
  font-size: 1rem;
}

.sidebar a {
  display: block;
  padding: 14px 0;
  border-top: 1px solid rgba(231, 225, 216, 0.08);
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.sidebar a.active,
.sidebar a:hover {
  color: var(--red-hot);
}

.barcode {
  margin-top: 70px;
  padding: 14px;
  border: 1px solid var(--line);
  color: var(--muted);
}

.barcode b,
.barcode span {
  display: block;
}

.barcode i {
  display: block;
  height: 34px;
  margin-top: 10px;
  background: repeating-linear-gradient(90deg, var(--ink) 0 2px, transparent 2px 5px, var(--ink) 5px 7px, transparent 7px 11px);
  opacity: 0.72;
}

.recovered,
.artifact,
.poem {
  min-height: 470px;
  padding: 28px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.section-head h2,
.contact h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
}

.memory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.memory-card div {
  height: 210px;
  border: 1px solid var(--line);
  background-color: #090909;
  overflow: hidden;
}

.memory-card {
  position: relative;
}

.coming-soon {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 100%;
  height: 210px;
  color: rgba(223, 51, 52, 0.78);
  background: rgba(0, 0, 0, 0.48);
  border: 1px solid rgba(231, 225, 216, 0.08);
  font-family: "Cinzel", serif;
  font-size: 1.05rem;
  font-style: italic;
  letter-spacing: 0.03em;
  text-transform: lowercase;
  text-shadow: 0 0 24px rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(1.5px);
}

.memory-card h3 {
  margin: 14px 0 6px;
  color: var(--ink);
  font-family: "Cinzel", serif;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
}

.memory-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.letter div {
  background:
    linear-gradient(35deg, transparent 35%, rgba(158, 29, 34, 0.4) 36% 38%, transparent 39%),
    repeating-linear-gradient(-12deg, rgba(231, 225, 216, 0.16) 0 1px, transparent 1px 13px),
    #12100d;
}

.letter div::after {
  content: "ÛŒØ§Ø¯ÛŒÚº";
  display: grid;
  place-items: center;
  height: 100%;
  color: var(--red-hot);
  font-size: 2.8rem;
  transform: rotate(-18deg);
}

.tape div {
  background:
    radial-gradient(circle at 23% 50%, #070707 0 24px, #3f372f 25px 31px, transparent 32px),
    radial-gradient(circle at 76% 50%, #070707 0 24px, #3f372f 25px 31px, transparent 32px),
    linear-gradient(#5b342b 38%, #120f0d 39% 62%, #5b342b 63%),
    #19120f;
}

.platform div {
  background:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.75)),
    radial-gradient(circle at 78% 18%, rgba(223, 51, 52, 0.85), transparent 12px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 32px),
    #0b0b0d;
}

.caption {
  margin-top: 24px;
  color: var(--muted);
}

.artifact {
  position: relative;
  overflow: hidden;
}

.artifact__meta,
.poem__meta {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.62rem;
}

.artifact h2 {
  margin: 14px 0 0;
  color: #7f98bd;
  font-family: "Cinzel", serif;
  font-size: clamp(1.45rem, 2vw, 2.15rem);
  line-height: 1.08;
  text-shadow: 0 0 16px rgba(98, 121, 150, 0.42);
  text-transform: uppercase;
}

.artifact p {
  margin: 4px 0 0;
  color: var(--ink);
  text-transform: uppercase;
  line-height: 1.45;
}

.artifact-photo {
  position: relative;
  height: 285px;
  margin: 22px 0 16px;
  overflow: hidden;
  border: 1px solid rgba(231, 225, 216, 0.16);
  background: #020202;
}

.artifact-photo::after,
.file-list article::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(223, 51, 52, 0.12), transparent),
    repeating-linear-gradient(180deg, transparent 0 4px, rgba(255, 255, 255, 0.08) 5px);
  mix-blend-mode: screen;
  opacity: 0.28;
  animation: scanSweep 3.8s ease-in-out infinite;
}

.artifact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 42%;
  filter: contrast(1.08) saturate(0.86);
  transform: scale(1.02);
}

.price {
  margin-bottom: 14px;
  color: var(--red-hot);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.tee {
  position: relative;
  height: 285px;
  margin-top: 22px;
}

.tee__body {
  position: absolute;
  left: 50%;
  top: 0;
  width: 260px;
  height: 270px;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 45% 10%, rgba(255, 255, 255, 0.12), transparent 40px),
    linear-gradient(#111, #050505);
  clip-path: polygon(28% 0, 72% 0, 97% 22%, 83% 40%, 76% 31%, 84% 100%, 16% 100%, 24% 31%, 16% 40%, 3% 22%);
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.6));
  animation: float 4s ease-in-out infinite;
}

.tee__print {
  position: absolute;
  left: 70px;
  top: 76px;
  width: 122px;
  height: 140px;
  padding: 11px;
  border: 1px solid rgba(231, 225, 216, 0.22);
  background:
    linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.7)),
    linear-gradient(125deg, rgba(98, 121, 150, 0.34), transparent),
    #111;
}

.tee__print::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 42%, rgba(255, 255, 255, 0.78) 44%, transparent 48%);
  opacity: 0.7;
}

.tee__print span,
.tee__print b {
  position: relative;
  display: block;
  font-size: 0.46rem;
}

.tee__print b {
  margin-top: 42px;
  color: var(--ink);
  font-family: "Cinzel", serif;
  font-size: 0.92rem;
}

.sizes {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.75rem;
}

.sizes button {
  color: var(--ink);
  min-width: 34px;
  height: 32px;
  border: 1px solid rgba(231, 225, 216, 0.16);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.sizes button.is-selected {
  color: #050505;
  border-color: var(--red-hot);
  background: var(--red-hot);
}

.artifact-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
}

.primary-action {
  padding: 12px 16px;
  color: var(--ink);
  border: 1px solid rgba(223, 51, 52, 0.56);
  background: rgba(158, 29, 34, 0.22);
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.primary-action:hover {
  transform: translateY(-2px);
  background: rgba(158, 29, 34, 0.34);
  box-shadow: 0 0 30px rgba(223, 51, 52, 0.2);
}

.primary-action:active,
.cart-trigger:active,
.size-option:active {
  transform: translateY(0) scale(0.985);
}

.recover-link {
  position: static;
  color: #7f98bd;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.poem {
  position: relative;
  overflow: hidden;
}

.poem::before {
  content: "";
  position: absolute;
  right: -70px;
  top: 40px;
  width: 280px;
  height: 280px;
  background:
    radial-gradient(circle at 45% 45%, rgba(223, 51, 52, 0.18), transparent 42%),
    repeating-conic-gradient(from 10deg, rgba(231, 225, 216, 0.08) 0 3deg, transparent 3deg 9deg);
  border-radius: 50%;
  animation: spin 18s linear infinite;
}

.poem p {
  position: relative;
  margin: 0;
  color: #bd3030;
  font-size: 1rem;
  line-height: 1.65;
}

.nazm-scroll {
  position: relative;
  height: 320px;
  margin-top: 34px;
  overflow: hidden;
  border-top: 1px solid rgba(231, 225, 216, 0.12);
  border-bottom: 1px solid rgba(231, 225, 216, 0.12);
  mask-image: linear-gradient(180deg, transparent, #000 14%, #000 86%, transparent);
}

.nazm-scroll__track {
  position: relative;
  padding: 58px 0 120px;
  animation: nazmDrift 54s linear infinite;
}

.nazm-scroll:hover .nazm-scroll__track,
.nazm-scroll:focus-within .nazm-scroll__track {
  animation-play-state: paused;
}

.nazm-title {
  color: var(--ink) !important;
  font-family: "Cinzel", serif;
  font-size: 1.5rem !important;
  line-height: 1.1 !important;
  margin-bottom: 22px !important;
  text-transform: uppercase;
}

.stamp {
  position: absolute;
  right: 28px;
  bottom: 28px;
  color: var(--red-hot);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.collection-wall {
  position: relative;
  margin-top: 14px;
  padding: 36px;
  overflow: hidden;
}

.collection-tools {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin: 24px 0 18px;
}

.search-box {
  display: grid;
  gap: 8px;
  flex: 1;
  color: var(--muted);
  font-size: 0.7rem;
}

.search-box input {
  width: 100%;
  color: var(--ink);
  border: 1px solid rgba(231, 225, 216, 0.16);
  background: rgba(0, 0, 0, 0.34);
  padding: 13px 14px;
  outline: none;
  font: inherit;
}

.search-box input:focus {
  border-color: rgba(223, 51, 52, 0.62);
  box-shadow: 0 0 0 3px rgba(223, 51, 52, 0.1);
}

.wish-btn,
.wish-icon {
  color: var(--ink);
  border: 1px solid rgba(231, 225, 216, 0.18);
  background: rgba(255, 255, 255, 0.035);
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.wish-btn {
  padding: 11px 14px;
  font-size: 0.72rem;
}

.wish-icon {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  margin-right: 8px;
  color: var(--red-hot);
  font-size: 1.08rem;
}

.wish-btn:hover,
.wish-icon:hover,
.wish-btn.is-wishlisted,
.wish-icon.is-wishlisted {
  transform: translateY(-2px);
  border-color: rgba(223, 51, 52, 0.58);
  background: rgba(158, 29, 34, 0.18);
}

.wish-btn.is-wishlisted,
.wish-icon.is-wishlisted {
  color: var(--red-hot);
}

.collection-wall.is-empty .file-list::after {
  content: "No recovered files match this signal.";
  display: block;
  padding: 28px;
  color: var(--muted);
  border: 1px solid rgba(231, 225, 216, 0.12);
  background: rgba(0, 0, 0, 0.22);
  text-transform: uppercase;
}

.file-list {
  display: grid;
  gap: 18px;
}

.file-list article {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 210px;
  min-height: 170px;
  padding: 25px;
  overflow: hidden;
  border: 1px solid rgba(231, 225, 216, 0.14);
  background: rgba(0, 0, 0, 0.24);
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), border-color 260ms ease, background 260ms ease, box-shadow 260ms ease;
  cursor: pointer;
}

.file-list article:hover {
  transform: translateX(8px);
  border-color: rgba(223, 51, 52, 0.48);
  background: rgba(158, 29, 34, 0.08);
}

.file-list article.is-active {
  border-color: rgba(223, 51, 52, 0.72);
  box-shadow: inset 0 0 0 1px rgba(223, 51, 52, 0.18), 0 0 40px rgba(158, 29, 34, 0.18);
}

.file-list span,
.file-list p {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.file-list h3 {
  margin: 10px 0 30px;
  color: var(--red-hot);
  font-family: "Cinzel", serif;
  font-size: clamp(1.65rem, 3.2vw, 3.4rem);
  line-height: 1.02;
  text-transform: uppercase;
  max-width: 720px;
}

.file-list button {
  margin-top: 10px;
  padding: 9px 12px;
  color: var(--ink);
  border: 1px solid rgba(231, 225, 216, 0.18);
  background: rgba(255, 255, 255, 0.03);
  text-transform: uppercase;
  cursor: pointer;
}

.product-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-left: 12px;
  padding: 9px 13px;
  color: var(--ink);
  border: 1px solid rgba(223, 51, 52, 0.36);
  background:
    linear-gradient(90deg, rgba(223, 51, 52, 0.18), rgba(98, 121, 150, 0.08)),
    rgba(255, 255, 255, 0.025);
  font-size: 0.72rem;
  text-transform: uppercase;
  overflow: hidden;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), border-color 220ms ease, box-shadow 220ms ease;
}

.product-link::after {
  content: ">";
  color: var(--red-hot);
  transform: translateX(0);
  transition: transform 220ms ease;
}

.product-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 246, 221, 0.58);
  box-shadow: 0 0 28px rgba(223, 51, 52, 0.18);
}

.product-link:hover::after {
  transform: translateX(4px);
}

.file-list img,
.file-list i {
  justify-self: end;
  align-self: center;
}

.file-list img {
  width: 210px;
  height: 132px;
  object-fit: cover;
  border: 1px solid rgba(231, 225, 216, 0.16);
  filter: contrast(1.12) saturate(0.86);
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1), filter 360ms ease;
}

.file-list article:hover img {
  transform: scale(1.04) rotate(-1deg);
  filter: contrast(1.18) saturate(0.96);
}

.heart {
  width: 110px;
  height: 120px;
  border: 1px solid rgba(223, 51, 52, 0.52);
  border-radius: 46% 54% 48% 52%;
  background:
    radial-gradient(circle at 36% 25%, transparent 0 24px, rgba(223, 51, 52, 0.18) 25px 27px, transparent 28px),
    linear-gradient(35deg, transparent 45%, rgba(223, 51, 52, 0.42), transparent 55%);
  transform: rotate(-14deg);
}

.tower {
  width: 120px;
  height: 130px;
  background:
    linear-gradient(72deg, transparent 46%, rgba(231, 225, 216, 0.62) 47% 49%, transparent 50%),
    linear-gradient(-72deg, transparent 46%, rgba(231, 225, 216, 0.62) 47% 49%, transparent 50%),
    repeating-radial-gradient(circle at 50% 12%, transparent 0 18px, rgba(231, 225, 216, 0.2) 19px 20px);
}

.smoke {
  width: 126px;
  height: 126px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 45%, rgba(231, 225, 216, 0.18), transparent 20px),
    radial-gradient(circle at 56% 36%, rgba(223, 51, 52, 0.12), transparent 24px),
    radial-gradient(circle at 52% 62%, rgba(231, 225, 216, 0.11), transparent 30px);
  filter: blur(1px);
}

.founder {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin-top: 14px;
  padding: 58px;
  overflow: hidden;
}

.founder::after {
  content: "";
  position: absolute;
  inset: 22px;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at center, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.46) 62%, rgba(0, 0, 0, 0.72) 100%);
}

.founder__signal {
  display: none;
}

.founder > div,
.founder blockquote {
  position: relative;
  z-index: 2;
}

.founder > div {
  isolation: isolate;
}

.founder > div::before {
  content: "";
  position: absolute;
  width: min(62vw, 520px);
  aspect-ratio: 1;
  left: 50%;
  top: 44%;
  z-index: -1;
  border: 1px solid rgba(231, 225, 216, 0.16);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(223, 51, 52, 0.12) 0 20%, transparent 21% 34%, rgba(223, 51, 52, 0.24) 35% 36%, transparent 37%),
    repeating-conic-gradient(rgba(231, 225, 216, 0.16) 0 2deg, transparent 2deg 14deg),
    radial-gradient(circle at center, rgba(0, 0, 0, 0.55), transparent 70%);
  opacity: 0.62;
  transform: translate(-50%, -50%);
  animation: founder-orbit 28s linear infinite;
}

.eyebrow {
  color: var(--red-hot);
  font-size: 0.76rem;
}

.founder h2 {
  margin: 0 0 18px;
  font-family: "Cinzel", serif;
  font-size: clamp(2rem, 4vw, 4.6rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.founder p {
  color: var(--muted);
  line-height: 1.7;
}

.founder-mini-card {
  position: relative;
  float: right;
  width: min(34vw, 230px);
  margin: 4px 0 14px 24px;
  padding: 10px;
  border: 1px solid rgba(231, 225, 216, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 38%),
    rgba(0, 0, 0, 0.36);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38), 0 0 34px rgba(223, 51, 52, 0.08);
}

.founder-mini-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.05) saturate(0.82) brightness(0.9);
}

.founder-mini-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founder-mini-card p {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 0.78rem;
  line-height: 1.45;
}

.size-chart,
.creative {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1.2fr);
  gap: 34px;
  margin-top: 14px;
  padding: 36px;
  overflow: hidden;
}

.faq {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 30px;
  margin-top: 14px;
  padding: clamp(24px, 4vw, 42px);
  overflow: hidden;
}

.faq__intro h2 {
  margin: 0 0 14px;
  color: var(--red-hot);
  font-family: "Cinzel", serif;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.faq__intro p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid rgba(231, 225, 216, 0.13);
  background: rgba(0, 0, 0, 0.24);
  transition: border-color 180ms ease, background 180ms ease;
}

.faq-list details[open] {
  border-color: rgba(223, 51, 52, 0.38);
  background: rgba(158, 29, 34, 0.07);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  color: var(--ink);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  color: var(--red-hot);
  font-size: 1rem;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.88rem;
}

.size-chart h2,
.creative h2 {
  margin: 0 0 14px;
  font-family: "Cinzel", serif;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 1;
  text-transform: uppercase;
}

.size-chart p,
.creative p {
  color: var(--muted);
  line-height: 1.7;
}

.size-chart table {
  width: 100%;
  border-collapse: collapse;
  align-self: center;
  color: var(--ink);
}

.size-chart th,
.size-chart td {
  padding: 14px 12px;
  border: 1px solid rgba(231, 225, 216, 0.16);
  text-align: left;
}

.size-chart th {
  color: var(--red-hot);
  text-transform: uppercase;
}

.nazm-form {
  display: grid;
  gap: 12px;
}

.nazm-form textarea {
  min-height: 170px;
  resize: vertical;
  padding: 16px;
  color: var(--ink);
  border: 1px solid rgba(231, 225, 216, 0.18);
  background: rgba(0, 0, 0, 0.38);
  font: inherit;
  line-height: 1.55;
}

.nazm-list {
  display: grid;
  gap: 12px;
  align-content: start;
}

.nazm-list article {
  padding: 16px;
  border: 1px solid rgba(231, 225, 216, 0.14);
  background: rgba(0, 0, 0, 0.22);
  color: var(--muted);
  line-height: 1.6;
}

blockquote {
  margin: 0;
  color: var(--red-hot);
  font-family: "Cinzel", serif;
  font-size: clamp(1.35rem, 2.2vw, 2.4rem);
  line-height: 1.25;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 14px;
  padding: 28px 36px;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: flex;
  justify-content: flex-end;
  background: rgba(0, 0, 0, 0.52);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.cart-drawer.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.quick-view {
  position: fixed;
  inset: 0;
  z-index: 32;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.72);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.quick-view.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.quick-view__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 1fr);
  gap: 24px;
  width: min(920px, 100%);
  padding: 24px;
}

.quick-view__close {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 1;
  color: var(--ink);
  border: 1px solid rgba(231, 225, 216, 0.16);
  background: rgba(0, 0, 0, 0.48);
  padding: 8px 10px;
  cursor: pointer;
}

.quick-view img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border: 1px solid rgba(231, 225, 216, 0.12);
}

.quick-view__copy {
  display: grid;
  align-content: center;
  gap: 14px;
}

.quick-view__copy h2 {
  margin: 0;
  color: var(--red-hot);
  font-family: "Cinzel", serif;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.quick-view__copy p {
  color: var(--muted);
  line-height: 1.7;
}

.quick-view__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 45;
  min-width: min(360px, calc(100vw - 32px));
  padding: 13px 16px;
  color: var(--ink);
  border: 1px solid rgba(223, 51, 52, 0.42);
  background: rgba(6, 6, 6, 0.86);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
  text-align: center;
  transform: translateX(-50%) translateY(24px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.cart-panel {
  width: min(460px, 100vw);
  min-height: 100%;
  padding: 26px;
  background: rgba(5, 5, 5, 0.94);
}

.cart-head,
.cart-row,
.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cart-head h2 {
  margin: 0;
  font-family: "Cinzel", serif;
  text-transform: uppercase;
}

.cart-head button,
.cart-row button {
  color: var(--muted);
  border: 1px solid rgba(231, 225, 216, 0.14);
  background: transparent;
  cursor: pointer;
  text-transform: uppercase;
}

.cart-items {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.cart-row {
  padding: 14px;
  border: 1px solid rgba(231, 225, 216, 0.14);
}

.cart-row strong,
.cart-row span {
  display: block;
}

.cart-row span,
.cart-note {
  color: var(--muted);
  font-size: 0.78rem;
}

.cart-total {
  padding: 16px 0;
  border-top: 1px solid rgba(231, 225, 216, 0.16);
  border-bottom: 1px solid rgba(231, 225, 216, 0.16);
}

.checkout {
  width: 100%;
  margin-top: 18px;
}

.contact p {
  margin: 8px 0 0;
  color: var(--muted);
}

.contact a {
  color: var(--red-hot);
}

.footer {
  display: grid;
  grid-template-columns: 1fr repeat(4, auto);
  gap: 42px;
  padding: 22px 36px;
  border: 1px solid var(--line);
  border-top: 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.footer-expanded div {
  display: grid;
  gap: 6px;
}

.footer-expanded b {
  color: var(--red-hot);
  font-family: "Cinzel", serif;
  font-size: 1.6rem;
}

.policy-page {
  min-height: 100vh;
}

.policy-hero {
  position: relative;
  margin-top: 14px;
  padding: clamp(32px, 7vw, 88px);
  overflow: hidden;
}

.policy-hero h1 {
  margin: 12px 0 0;
  color: var(--red-hot);
  font-family: "Cinzel", serif;
  font-size: clamp(3rem, 8vw, 8rem);
  line-height: 0.95;
  text-transform: uppercase;
  text-shadow: 0 0 25px rgba(223, 51, 52, 0.34);
}

.policy-hero p {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.7;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.policy-card {
  padding: 30px;
}

.policy-card h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: "Cinzel", serif;
  font-size: 1.7rem;
  text-transform: uppercase;
}

.policy-card p,
.policy-card li {
  color: var(--muted);
  line-height: 1.65;
}

.policy-card ul {
  margin: 0;
  padding-left: 18px;
}

@keyframes drift {
  to { transform: translate3d(-70px, -70px, 0); }
}

@keyframes stormSlide {
  to { transform: translate3d(8%, 8%, 0); }
}

@keyframes entryFlash {
  0%, 82%, 100% { opacity: 0.34; }
  83% { opacity: 0.86; }
  84% { opacity: 0.18; }
  86% { opacity: 0.62; }
}

@keyframes bootRise {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes cursorBlink {
  50% { opacity: 0; }
}

@keyframes staticNoise {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-2%, 1%); }
  100% { transform: translate(1%, -1%); }
}

@keyframes tvStatic {
  0% { filter: contrast(130%) brightness(1.3); transform: translateX(0); }
  100% { filter: contrast(180%) brightness(0.9); transform: translateX(3px); }
}

@keyframes pulse {
  50% { opacity: 0.35; }
}

@keyframes starFall {
  to { background-position: 64px 128px; }
}

@keyframes textFlicker {
  0%, 93%, 100% { opacity: 1; filter: none; transform: translateX(0); }
  94% { opacity: 0.74; filter: blur(1px); transform: translateX(2px); }
  95% { opacity: 1; transform: translateX(-2px); }
  96% { opacity: 0.82; }
}

@keyframes chromaShift {
  0%, 91%, 100% { opacity: 0; clip-path: inset(0 0 0 0); }
  92% { opacity: 0.64; clip-path: inset(12% 0 68% 0); }
  94% { opacity: 0.34; clip-path: inset(62% 0 18% 0); }
  96% { opacity: 0.52; clip-path: inset(36% 0 44% 0); }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@keyframes float {
  50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes founder-orbit {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes moonPulse {
  0%, 100% { opacity: 0.68; filter: brightness(0.94); transform: scale(1); }
  50% { opacity: 0.92; filter: brightness(1.18); transform: scale(1.035); }
}

@keyframes scanSweep {
  0%, 100% { transform: translateY(-12%); opacity: 0.16; }
  50% { transform: translateY(12%); opacity: 0.35; }
}

@keyframes orbitSpin {
  to { transform: rotateX(70deg) rotateZ(calc(var(--rz, 0deg) + 360deg)); }
}

@keyframes nazmDrift {
  0%, 7% { transform: translateY(0); }
  92%, 100% { transform: translateY(-68%); }
}

@media (max-width: 1100px) {
  .topbar {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px;
  }

  nav,
  .status {
    justify-content: start;
    justify-items: start;
  }

  .dashboard,
  .founder,
  .size-chart,
  .creative,
  .faq {
    grid-template-columns: 1fr;
  }

  .sidebar {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .archive-shell {
    width: calc(100vw - 16px);
    margin: 8px auto;
  }

  .boot__content {
    width: calc(100vw - 22px);
    padding: 24px 16px;
  }

  .boot h1 {
    font-size: clamp(3.2rem, 18vw, 5.5rem);
    margin-bottom: 12px;
  }

  .boot-logs {
    max-height: 58px;
  }

  nav {
    flex-wrap: wrap;
    gap: 16px;
  }

  .collection-tools {
    display: grid;
    align-items: stretch;
  }

  .wishlist-trigger,
  .cart-trigger {
    width: 100%;
  }

  .hero {
    min-height: 720px;
  }

  .hero__meta,
  .hero h1 {
    left: 24px;
    right: 24px;
    width: auto;
  }

  .hero h1 {
    top: 245px;
    font-size: clamp(2.6rem, 13vw, 4.5rem);
    text-align: left;
  }

  .coordinates {
    top: auto;
    bottom: 190px;
    left: 24px;
    right: auto;
  }

  .figure {
    right: 48%;
  }

  .memory-grid,
  .file-list article,
  .drop-status,
  .trust-strip,
  .quick-view__panel {
    grid-template-columns: 1fr;
  }

  .recovered,
  .artifact,
  .poem,
  .collection-wall,
  .founder,
  .faq {
    padding: 22px;
  }

  .quick-view img {
    height: 300px;
  }

  .quick-view__panel {
    max-height: calc(100vh - 28px);
    overflow: auto;
  }

  .contact,
  .footer,
  .policy-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .founder > div::before {
    width: min(88vw, 340px);
    top: 36%;
    opacity: 0.5;
  }

  .founder-mini-card {
    float: none;
    width: min(100%, 280px);
    margin: 10px 0 18px;
  }

}

.memory-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.08) saturate(0.88);
}

/* Boot Sequence Console */
.boot-logs {
  max-width: 580px;
  margin: 10px auto 14px;
  text-align: left;
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.8;
  max-height: 82px;
  overflow-y: hidden;
  scrollbar-width: none; /* Firefox */
  padding: 10px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}

.boot-logs::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

.log-line {
  margin: 4px 0;
  color: var(--ink);
  opacity: 0.88;
}

/* Product Detail Page Layout */
.product-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  margin-top: 14px;
  min-height: 700px;
  perspective: 1200px;
}

.product-visual {
  position: relative;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at var(--stage-x, 50%) var(--stage-y, 44%), rgba(223, 51, 52, 0.18), transparent 18rem),
    radial-gradient(circle at 50% 80%, rgba(98, 121, 150, 0.18), transparent 22rem),
    #020202;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  overflow: hidden;
  min-height: 500px;
  transform-style: preserve-3d;
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(231, 225, 216, 0.08);
  background:
    linear-gradient(rgba(231, 225, 216, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(231, 225, 216, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  transform: rotateX(66deg) translateY(12%) translateZ(-60px);
  transform-origin: center bottom;
  opacity: 0.72;
  pointer-events: none;
}

.product-orbit {
  position: absolute;
  inset: 13% 8% 18%;
  display: grid;
  place-items: center;
  pointer-events: none;
  transform-style: preserve-3d;
}

.product-orbit span {
  position: absolute;
  width: min(76%, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(231, 225, 216, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 38px rgba(223, 51, 52, 0.08);
  transform: rotateX(70deg) rotateZ(var(--rz, 0deg));
  animation: orbitSpin 18s linear infinite;
}

.product-orbit span:nth-child(2) {
  width: min(58%, 400px);
  border-color: rgba(223, 51, 52, 0.22);
  --rz: 58deg;
  animation-duration: 24s;
  animation-direction: reverse;
}

.product-orbit span:nth-child(3) {
  width: min(92%, 620px);
  border-style: dashed;
  border-color: rgba(98, 121, 150, 0.2);
  --rz: -36deg;
  animation-duration: 32s;
}

.zoom-box {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(231, 225, 216, 0.08);
  background:
    radial-gradient(circle at var(--stage-x, 50%) var(--stage-y, 44%), rgba(255, 246, 221, 0.1), transparent 12rem),
    radial-gradient(circle at center, #090909 0%, #010101 100%);
  transform-style: preserve-3d;
}

#productImage {
  max-width: 90%;
  max-height: 70vh;
  object-fit: contain;
  position: relative;
  z-index: 1;
  transition: transform 0.18s cubic-bezier(0.16, 1, 0.3, 1), filter 0.22s ease;
  transform-origin: center center;
  transform: translateZ(72px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) scale(var(--zoom, 1));
  filter: contrast(1.08) saturate(0.9) drop-shadow(0 38px 38px rgba(0, 0, 0, 0.58)) drop-shadow(0 0 34px rgba(223, 51, 52, 0.12));
}

.zoom-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.74rem;
}

.zoom-controls button {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(231, 225, 216, 0.16);
  color: var(--ink);
  cursor: pointer;
}

.zoom-controls input[type="range"] {
  width: 140px;
  accent-color: var(--red-hot);
  background: rgba(231, 225, 216, 0.14);
  height: 3px;
  border: none;
  cursor: pointer;
}

.product-info {
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.product-header {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.product-info h1 {
  margin: 0 0 10px 0;
  font-family: "Cinzel", serif;
  font-size: clamp(2rem, 3.8vw, 3.8rem);
  line-height: 1.05;
  color: var(--red-hot);
  text-shadow: 0 0 20px rgba(223, 51, 52, 0.28);
  text-transform: uppercase;
}

.product-desc {
  margin: 0 0 28px 0;
  color: var(--ink);
  font-size: 0.84rem;
}

.poetic-divider {
  border: 0;
  height: 1px;
  background: var(--line);
  margin: 20px 0;
  width: 100%;
}

.poetic-block {
  margin: 18px 0;
  padding-left: 20px;
  border-left: 2px solid var(--red-hot);
  background: rgba(158, 29, 34, 0.03);
  padding-top: 14px;
  padding-bottom: 14px;
}

.poetic-couplet {
  color: #bf3437;
  font-family: "Cinzel", serif;
  font-size: 1.15rem;
  line-height: 1.6;
  margin: 0 0 8px 0;
  font-style: italic;
}

.product-story {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 34px;
}

.checkout-panel {
  margin-top: auto;
  display: grid;
  gap: 20px;
}

.checkout-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.checkout-actions .primary-action {
  flex: 1;
}

.back-link,
.recover-link {
  font-size: 0.76rem;
  text-transform: uppercase;
  transition: color 0.18s ease;
}

.back-link {
  color: var(--muted);
  margin-top: 10px;
}

.back-link:hover {
  color: var(--ink);
}

/* Checkout Page */
.checkout-shell {
  padding-bottom: 14px;
}

.checkout-return {
  display: inline-grid;
  place-items: center;
  text-align: center;
}

.checkout-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 28px;
  align-items: end;
  min-height: 310px;
  margin-top: 14px;
  padding: clamp(26px, 5vw, 56px);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 20%, rgba(223, 51, 52, 0.2), transparent 24rem),
    radial-gradient(circle at 28% 58%, rgba(98, 121, 150, 0.16), transparent 26rem),
    rgba(4, 4, 4, 0.82);
}

.checkout-hero h1 {
  max-width: 780px;
  margin: 10px 0 12px;
  color: var(--red-hot);
  font-family: "Cinzel", serif;
  font-size: clamp(2.6rem, 6.4vw, 6.8rem);
  line-height: 0.96;
  text-transform: uppercase;
  text-shadow: 0 0 34px rgba(223, 51, 52, 0.28);
}

.checkout-hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.checkout-sigil {
  position: relative;
  display: grid;
  place-items: center;
  gap: 10px;
  min-height: 220px;
  border: 1px solid rgba(231, 225, 216, 0.14);
  background:
    repeating-radial-gradient(circle, rgba(231, 225, 216, 0.08) 0 1px, transparent 2px 18px),
    rgba(0, 0, 0, 0.2);
  color: var(--muted);
  text-align: center;
}

.checkout-sigil b {
  color: var(--red-hot);
  font-family: "Cinzel", serif;
  font-size: 3rem;
  line-height: 1;
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
  gap: 14px;
  margin-top: 14px;
}

.checkout-summary,
.checkout-form {
  padding: clamp(22px, 3vw, 34px);
}

.checkout-summary {
  align-self: start;
  position: sticky;
  top: 104px;
}

.checkout-items {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.checkout-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(231, 225, 216, 0.12);
  background: rgba(255, 255, 255, 0.025);
}

.checkout-item img {
  width: 96px;
  height: 76px;
  object-fit: cover;
  border: 1px solid rgba(231, 225, 216, 0.12);
  filter: contrast(1.12) saturate(0.9);
}

.checkout-item div {
  display: grid;
  gap: 5px;
}

.checkout-item span,
.checkout-item small {
  color: var(--muted);
  font-size: 0.68rem;
}

.checkout-item strong {
  color: var(--ink);
  font-family: "Cinzel", serif;
  text-transform: uppercase;
}

.checkout-item b {
  color: var(--red-hot);
  white-space: nowrap;
}

.checkout-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.checkout-grand {
  color: var(--ink);
  font-size: 1.1rem;
}

.checkout-grand b {
  color: var(--red-hot);
}

.checkout-form {
  display: grid;
  gap: 16px;
}

.checkout-form label {
  display: grid;
  gap: 8px;
}

.checkout-form label span {
  color: var(--muted);
  font-size: 0.72rem;
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea {
  width: 100%;
  color: var(--ink);
  border: 1px solid rgba(231, 225, 216, 0.16);
  background: rgba(0, 0, 0, 0.34);
  padding: 13px 14px;
  outline: none;
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.checkout-form textarea {
  min-height: 96px;
  resize: vertical;
}

.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus {
  border-color: rgba(223, 51, 52, 0.72);
  background: rgba(0, 0, 0, 0.48);
  box-shadow: 0 0 0 3px rgba(223, 51, 52, 0.1);
}

.checkout-submit {
  width: 100%;
  min-height: 54px;
  margin-top: 4px;
}

.checkout-submit:disabled {
  cursor: progress;
  opacity: 0.72;
}

.hidden-field {
  display: none;
}

.checkout-thanks {
  display: grid;
  align-content: center;
  gap: 14px;
  min-height: 360px;
  padding: clamp(24px, 4vw, 42px);
  border-color: rgba(223, 51, 52, 0.34);
  background:
    radial-gradient(circle at 82% 18%, rgba(223, 51, 52, 0.16), transparent 18rem),
    rgba(0, 0, 0, 0.42);
}

.checkout-thanks[hidden] {
  display: none;
}

.checkout-thanks span {
  color: var(--red-hot);
  font-size: 0.72rem;
}

.checkout-thanks h2 {
  margin: 0;
  color: var(--red-hot);
  font-family: "Cinzel", serif;
  font-size: clamp(2.2rem, 5vw, 5.4rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.checkout-thanks p {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.7;
}

.checkout-thanks .primary-action {
  width: fit-content;
}

@media (max-width: 900px) {
  .product-container {
    grid-template-columns: 1fr;
  }
  .product-info {
    padding: 24px;
  }

  .checkout-hero,
  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    position: static;
  }

  .checkout-item {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .checkout-item b {
    grid-column: 2;
  }
}

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

  .cursor-light,
  .product-orbit,
  .boot__weather {
    display: none;
  }

  #productImage {
    transform: scale(var(--zoom, 1));
  }
}

@media (max-width: 640px) {
  body {
    font-size: 14px;
  }

  .archive-shell {
    width: calc(100vw - 10px);
    margin: 5px auto;
  }

  .topbar {
    position: relative;
    top: auto;
    min-height: auto;
    padding: 12px;
    gap: 10px;
  }

  .brand {
    font-size: 1.55rem;
  }

  nav {
    gap: 10px 14px;
    font-size: 0.66rem;
  }

  .status {
    display: none;
  }

  .hero {
    min-height: 560px;
  }

  .moon {
    left: -96px;
    top: 18px;
    width: 250px;
    height: 250px;
  }

  .hero__meta {
    top: 112px;
    left: 18px;
    right: 18px;
    text-align: left;
    font-size: 0.68rem;
  }

  .hero h1 {
    top: 196px;
    left: 18px;
    right: 18px;
    width: auto;
    font-size: clamp(2.15rem, 12vw, 3.35rem);
    line-height: 1;
    text-align: left;
  }

  .hero__copy,
  .urdu {
    left: 18px;
    font-size: 0.75rem;
  }

  .hero__copy {
    bottom: 116px;
  }

  .urdu {
    bottom: 84px;
  }

  .coordinates {
    left: 18px;
    right: auto;
    bottom: 160px;
    font-size: 0.66rem;
  }

  .ticker {
    height: 48px;
  }

  .drop-status span,
  .trust-strip span {
    min-height: 44px;
    font-size: 0.66rem;
  }

  .faq__intro h2,
  .size-chart h2,
  .creative h2 {
    font-size: clamp(2rem, 12vw, 3.2rem);
  }

  .recovered,
  .artifact,
  .poem {
    min-height: auto;
  }

  .artifact-photo {
    height: 220px;
  }

  .memory-card div {
    height: 180px;
  }

  .file-list article {
    min-height: auto;
    padding: 18px;
  }

  .file-list h3 {
    margin-bottom: 18px;
    font-size: clamp(1.55rem, 10vw, 2.55rem);
  }

  .file-list img {
    width: 100%;
    height: 220px;
    justify-self: stretch;
  }

  .nazm-scroll {
    height: 260px;
  }

  .product-visual {
    min-height: 420px;
    padding: 14px;
  }

  .zoom-box {
    min-height: 310px;
  }

  #productImage {
    max-width: 96%;
    max-height: 58vh;
  }

  .checkout-actions,
  .artifact-actions,
  .quick-view__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cart-panel {
    width: min(100vw, 420px);
  }
}

.wishlist-filter span {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  margin-left: 8px;
  color: var(--red-hot);
  border: 1px solid rgba(223, 51, 52, 0.38);
  background: rgba(0, 0, 0, 0.28);
}



/* BARQ quick polish: visible card sizes, calmer motion, cleaner order confirmation */
.card-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: -14px 0 10px;
}

.card-size-option {
  min-width: 34px;
  height: 28px;
  padding: 0 8px;
  color: rgba(231, 225, 216, 0.72);
  border: 1px solid rgba(231, 225, 216, 0.16);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.66rem;
  cursor: pointer;
}

.card-size-option:hover,
.card-size-option.is-selected {
  color: #080808;
  border-color: rgba(223, 51, 52, 0.92);
  background: var(--red-hot);
  box-shadow: 0 0 18px rgba(223, 51, 52, 0.18);
}

.file-list h3 {
  margin-bottom: 18px;
}

.lite-mode .noise,
.lite-mode .scanlines,
.lite-mode .cursor-light,
.lite-mode .product-orbit,
.lite-mode .founder > div::before {
  display: none !important;
}

.lite-mode .glass,
.lite-mode .boot__content,
.lite-mode .coming-soon {
  backdrop-filter: none;
}

.lite-mode .artifact-photo::after,
.lite-mode .file-list article::after,
.lite-mode .tv::after,
.lite-mode .distort::before,
.lite-mode .distort::after {
  animation: none !important;
}

.checkout-thanks {
  position: relative;
  min-height: 300px;
  padding: clamp(26px, 5vw, 52px);
  overflow: hidden;
  border-color: rgba(223, 51, 52, 0.46);
  background:
    linear-gradient(135deg, rgba(223, 51, 52, 0.16), transparent 38%),
    radial-gradient(circle at 90% 12%, rgba(127, 152, 189, 0.13), transparent 16rem),
    rgba(4, 4, 4, 0.72);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035), 0 24px 80px rgba(0, 0, 0, 0.45);
}

.checkout-thanks::before {
  content: "BARQ.";
  position: absolute;
  right: -0.14em;
  bottom: -0.26em;
  color: rgba(223, 51, 52, 0.08);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(5rem, 18vw, 13rem);
  line-height: 1;
  pointer-events: none;
}

.checkout-thanks span,
.checkout-thanks h2,
.checkout-thanks p,
.checkout-thanks a {
  position: relative;
  z-index: 1;
}

.checkout-thanks h2 {
  max-width: 680px;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(2.45rem, 7vw, 6rem);
  letter-spacing: 0.01em;
}

.checkout-thanks p {
  max-width: 560px;
  color: rgba(231, 225, 216, 0.78);
}

@media (max-width: 640px) {
  .card-sizes {
    margin-top: -8px;
  }

  .card-size-option {
    min-width: 31px;
    height: 27px;
    font-size: 0.62rem;
  }

  .checkout-thanks {
    min-height: 260px;
  }
}


.open-file-link,
.quick-view-trigger {
  display: inline-grid;
  place-items: center;
  min-height: 38px;
  margin-top: 10px;
  padding: 9px 12px;
  color: var(--ink);
  border: 1px solid rgba(231, 225, 216, 0.18);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.74rem;
  text-transform: uppercase;
  cursor: pointer;
}

.open-file-link {
  width: fit-content;
  border-color: rgba(223, 51, 52, 0.42);
  background: rgba(158, 29, 34, 0.16);
}

.quick-view-trigger {
  margin-left: 8px;
  color: rgba(231, 225, 216, 0.72);
}

.open-file-link:hover,
.quick-view-trigger:hover {
  border-color: rgba(223, 51, 52, 0.6);
  background: rgba(158, 29, 34, 0.22);
}

.quick-view-sizes {
  margin: 0 0 2px;
}

@media (max-width: 640px) {
  .open-file-link,
  .quick-view-trigger {
    width: 100%;
    margin-left: 0;
  }
}

.thankyou-shell {
  min-height: 100vh;
}

.thankyou-page {
  margin-top: 22px;
}

.checkout-thanks h1 {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0;
  color: var(--red-hot);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(2.7rem, 7vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.thankyou-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.checkout-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, rgba(231, 225, 216, 0.72) 50%), linear-gradient(135deg, rgba(231, 225, 216, 0.72) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.checkout-total-row b[id="checkoutDeliveryCharge"] {
  color: var(--red-hot);
}
.cofounder-mini-card {
  clear: right;
  margin-top: 0;
}

.cofounder-mini-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 68%;
}



.checkout-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 640px) {
  .checkout-field-grid {
    grid-template-columns: 1fr;
  }
}

/* Recently recovered cleanup v1.3.7 */
.recovered {
  overflow: hidden;
}

.memory-grid {
  align-items: stretch;
}

.memory-card {
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 0;
  min-width: 0;
}

.memory-card > div {
  position: relative;
  height: auto;
  aspect-ratio: 4 / 5;
  border-color: rgba(231, 225, 216, 0.14);
  background-color: #080706;
  box-shadow: inset 0 0 42px rgba(0, 0, 0, 0.68);
}

.memory-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  filter: contrast(1.05) saturate(0.78) brightness(0.82);
}

.letter div::after {
  content: "";
}

.letter div {
  background:
    linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.78)),
    repeating-linear-gradient(0deg, rgba(231, 225, 216, 0.08) 0 1px, transparent 1px 19px),
    linear-gradient(135deg, rgba(223, 51, 52, 0.18), transparent 42%),
    #11100d;
}

.tape div {
  background:
    linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.72)),
    radial-gradient(circle at 26% 50%, #070707 0 25px, #4c4036 26px 33px, transparent 34px),
    radial-gradient(circle at 74% 50%, #070707 0 25px, #4c4036 26px 33px, transparent 34px),
    linear-gradient(#5b342b 38%, #120f0d 39% 62%, #5b342b 63%),
    #19120f;
}

.platform div {
  background: #0b0b0d;
}

.coming-soon {
  inset: 0 auto auto 0;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  color: rgba(223, 51, 52, 0.86);
  background: rgba(0, 0, 0, 0.54);
  border-color: rgba(223, 51, 52, 0.16);
  font-family: "Cormorant Garamond", "Cinzel", serif;
  font-size: clamp(1.05rem, 2.1vw, 1.45rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  text-shadow: 0 0 18px rgba(223, 51, 52, 0.18);
  backdrop-filter: blur(1px);
}

.memory-card h3 {
  margin-top: 13px;
  line-height: 1.15;
}

.memory-card p {
  line-height: 1.5;
}

@media (max-width: 900px) {
  .memory-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .coming-soon {
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  .memory-grid {
    grid-template-columns: 1fr;
  }

  .memory-card > div,
  .coming-soon {
    aspect-ratio: 16 / 10;
  }
}

/* BARQ about page + recovered grid restore v1.4.6 */
.about-page-hero {
  margin-top: 14px;
  margin-bottom: 14px;
}

.about-page-hero h1 {
  color: var(--red-hot);
}

.about-page-hero + .founder {
  margin-top: 0;
}

.recovered .memory-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.recovered .memory-card > div,
.recovered .coming-soon {
  aspect-ratio: 4 / 3;
}

.recovered .memory-card > div {
  height: auto !important;
}

.recovered .coming-soon {
  height: auto !important;
  min-height: 0;
}

.recovered .memory-card.platform img {
  display: block;
  opacity: 0.9;
  filter: contrast(1.08) saturate(0.9) brightness(0.9);
  object-position: center;
}

.recovered .memory-card.platform .coming-soon {
  background: rgba(0, 0, 0, 0.34);
}

@media (max-width: 760px) {
  .recovered .memory-grid {
    grid-template-columns: repeat(3, minmax(94px, 1fr));
    gap: 10px;
  }

  .recovered .coming-soon {
    font-size: clamp(0.7rem, 2.6vw, 0.92rem);
    letter-spacing: 0.04em;
  }

  .recovered .memory-card h3 {
    margin-top: 10px;
    font-size: 0.76rem;
    line-height: 1.2;
  }

  .recovered .memory-card p {
    font-size: 0.58rem;
  }
}

@media (max-width: 420px) {
  .recovered .memory-grid {
    grid-template-columns: 1fr;
  }
}

/* Archive Pulse panel v1.4.9 */
.signal-pulse {
  position: relative;
  min-height: 470px;
  padding: 28px;
  overflow: hidden;
}

.signal-pulse::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 42%, rgba(223, 51, 52, 0.18), transparent 34%),
    linear-gradient(rgba(231, 225, 216, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(231, 225, 216, 0.025) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
}

.pulse-orb {
  position: relative;
  display: grid;
  place-items: center;
  width: min(210px, 72%);
  aspect-ratio: 1;
  margin: 34px auto 26px;
  border: 1px solid rgba(223, 51, 52, 0.28);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(223, 51, 52, 0.22) 0 10%, transparent 38%),
    repeating-conic-gradient(from 0deg, rgba(231, 225, 216, 0.22) 0 2deg, transparent 2deg 11deg);
  box-shadow: 0 0 42px rgba(223, 51, 52, 0.14), inset 0 0 36px rgba(0, 0, 0, 0.58);
  animation: pulseRotate 16s linear infinite;
}

.pulse-orb span {
  width: 42%;
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(223, 51, 52, 0.9), rgba(223, 51, 52, 0.12) 58%, transparent 70%);
  box-shadow: 0 0 36px rgba(223, 51, 52, 0.36);
  animation: pulseBeat 2.8s ease-in-out infinite;
}

.pulse-orb i {
  position: absolute;
  inset: 18%;
  border: 1px dashed rgba(231, 225, 216, 0.22);
  border-radius: inherit;
}

.pulse-line {
  position: relative;
  z-index: 1;
  max-width: 260px;
  margin: 0 auto 22px;
  color: var(--ink);
  text-align: center;
  line-height: 1.7;
}

.pulse-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.pulse-list span {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(231, 225, 216, 0.09);
  background: rgba(0, 0, 0, 0.22);
  color: var(--muted);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.pulse-list b {
  color: var(--red-hot);
  font-weight: 500;
}

.signal-pulse .recover-link {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-top: 24px;
}

@keyframes pulseRotate {
  to { transform: rotate(360deg); }
}

@keyframes pulseBeat {
  0%, 100% { transform: scale(0.88); opacity: 0.72; }
  50% { transform: scale(1.08); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .pulse-orb,
  .pulse-orb span {
    animation: none !important;
  }
}

@media (max-width: 760px) {
  .signal-pulse {
    min-height: auto;
    padding: 22px;
  }

  .pulse-orb {
    width: min(180px, 62vw);
    margin: 24px auto 20px;
  }
}
