@import url("https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  color-scheme: dark;
  --bg: #160f2d;
  --bg-deep: #0d0b20;
  --surface: rgba(38, 31, 72, 0.7);
  --surface-soft: rgba(255, 255, 255, 0.055);
  --surface-hover: rgba(255, 255, 255, 0.09);
  --ink: #fffaff;
  --muted: #b7b0cb;
  --muted-soft: #8f89a8;
  --lavender: #d5c4ff;
  --violet: #9b82ff;
  --cyan: #91eef7;
  --pink: #ff9ed6;
  --peach: #ffd1aa;
  --lime: #caff78;
  --line: rgba(255, 255, 255, 0.11);
  --line-bright: rgba(255, 255, 255, 0.2);
  --shadow: 0 34px 100px rgba(5, 3, 18, 0.42);
  --font-sans: "Manrope", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "DM Mono", "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 7% 8%, rgba(255, 105, 190, 0.17), transparent 27rem),
    radial-gradient(circle at 92% 4%, rgba(90, 206, 255, 0.18), transparent 32rem),
    radial-gradient(circle at 55% 42%, rgba(145, 96, 255, 0.1), transparent 38rem),
    linear-gradient(145deg, #1b1037 0%, var(--bg-deep) 52%, #111b35 100%);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.5;
}

::selection {
  background: var(--pink);
  color: #251330;
}

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

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

.page-noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.34;
  background-image: radial-gradient(rgba(255, 255, 255, 0.14) 0.65px, transparent 0.65px);
  background-size: 20px 20px;
  mask-image: linear-gradient(to bottom, #000, transparent 84%);
}

.topbar {
  position: sticky;
  top: 12px;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 26px;
  width: min(calc(100% - 28px), 1500px);
  min-height: 72px;
  margin: 12px auto 0;
  padding: 10px 18px;
  border: 1px solid var(--line-bright);
  border-radius: 22px;
  background: rgba(25, 19, 52, 0.73);
  box-shadow: 0 18px 48px rgba(7, 4, 22, 0.2), inset 0 1px rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(22px) saturate(135%);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 11px;
}

.brand-mark {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 7px);
  place-content: center;
  gap: 3px;
  width: 40px;
  height: 40px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.54), transparent 24%),
    linear-gradient(145deg, var(--pink), var(--violet) 50%, var(--cyan));
  box-shadow: 0 8px 22px rgba(169, 116, 255, 0.28);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 1px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
}

.brand-mark i {
  position: relative;
  z-index: 1;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

.brand-mark i:nth-child(2),
.brand-mark i:nth-child(3) {
  opacity: 0.62;
  transform: scale(0.7);
}

.brand-copy {
  display: grid;
  line-height: 1;
  letter-spacing: 0.08em;
}

.brand-copy strong {
  font-size: 13px;
  font-weight: 800;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--lavender);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.32em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.nav-link {
  padding: 8px 14px;
  border-radius: 11px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  background: rgba(213, 196, 255, 0.13);
  box-shadow: inset 0 0 0 1px rgba(213, 196, 255, 0.12);
  color: var(--ink);
  outline: none;
}

.system-state {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.state-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(202, 255, 120, 0.09), 0 0 17px rgba(202, 255, 120, 0.7);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(410px, 0.78fr);
  align-items: center;
  gap: clamp(50px, 8vw, 130px);
  width: min(100%, 1540px);
  min-height: min(860px, calc(100vh - 96px));
  margin: 0 auto;
  padding: clamp(88px, 10vw, 150px) clamp(22px, 5vw, 78px) clamp(90px, 10vw, 150px);
}

.hero-copy,
.collection-visual {
  position: relative;
  z-index: 2;
}

.hero-bloom {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(10px);
}

.bloom-one {
  top: 5%;
  right: -12%;
  width: 530px;
  height: 530px;
  background: radial-gradient(circle, rgba(96, 213, 255, 0.18), rgba(129, 96, 255, 0.07) 48%, transparent 70%);
}

.bloom-two {
  bottom: -2%;
  left: 8%;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(255, 116, 195, 0.12), transparent 68%);
}

.hero-spark,
.visual-star {
  position: absolute;
  color: var(--lime);
  text-shadow: 0 0 18px rgba(202, 255, 120, 0.75);
  animation: twinkle 3.6s ease-in-out infinite;
}

.spark-one {
  top: 18%;
  right: 46%;
  font-size: 20px;
}

.spark-two {
  bottom: 18%;
  left: 3%;
  color: var(--pink);
  font-size: 13px;
  animation-delay: -1.8s;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 28px;
  padding: 5px;
  border: 1px solid var(--line-bright);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow span,
.eyebrow b {
  padding: 6px 10px;
}

.eyebrow span { color: var(--muted); }

.eyebrow b {
  border-radius: 999px;
  background: var(--lime);
  color: #26300e;
  font-weight: 500;
  box-shadow: 0 0 22px rgba(202, 255, 120, 0.16);
}

.hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(50px, 6.4vw, 98px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.064em;
  text-wrap: balance;
}

.hero h1 em {
  background: linear-gradient(90deg, var(--lavender), var(--pink) 48%, var(--peach));
  background-clip: text;
  color: transparent;
  font-style: normal;
  font-weight: 600;
  text-shadow: 0 12px 46px rgba(255, 158, 214, 0.12);
}

.hero-lead {
  max-width: 660px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 13px 21px;
  border-radius: 17px;
  font-size: 13px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-action {
  gap: 48px;
  min-width: 228px;
  background: linear-gradient(105deg, var(--lavender), var(--cyan));
  color: #201733 !important;
  box-shadow: 0 16px 38px rgba(129, 206, 242, 0.18), inset 0 1px rgba(255, 255, 255, 0.8);
}

.primary-action span { font-size: 18px; }

.secondary-action {
  min-width: 154px;
  border: 1px solid var(--line-bright);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
}

.primary-action:hover,
.primary-action:focus-visible,
.secondary-action:hover,
.secondary-action:focus-visible {
  transform: translateY(-3px);
  outline: none;
}

.primary-action:hover,
.primary-action:focus-visible {
  box-shadow: 0 20px 52px rgba(151, 210, 242, 0.28), inset 0 1px rgba(255, 255, 255, 0.85);
}

.secondary-action:hover,
.secondary-action:focus-visible {
  background: rgba(213, 196, 255, 0.1);
  color: var(--ink);
}

.collection-update {
  display: flex;
  align-items: center;
  gap: 15px;
  width: fit-content;
  max-width: 560px;
  margin-top: 50px;
  padding: 12px 17px 12px 12px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
}

.update-symbol {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(202, 255, 120, 0.28);
  border-radius: 14px;
  background: rgba(202, 255, 120, 0.08);
  color: var(--lime);
  text-shadow: 0 0 14px currentColor;
}

.collection-update div {
  display: grid;
  gap: 3px;
}

.collection-update strong {
  font-size: 12px;
}

.collection-update p {
  margin: 0;
  color: var(--muted-soft);
  font-size: 11px;
}

.collection-visual {
  width: min(100%, 520px);
  min-height: 610px;
  margin-inline: auto;
  perspective: 1200px;
}

.collection-visual::before {
  content: "";
  position: absolute;
  top: 9%;
  left: 1%;
  width: 94%;
  height: 79%;
  border: 1px solid rgba(213, 196, 255, 0.17);
  border-radius: 47% 53% 48% 52%;
  transform: rotate(-8deg);
}

.collection-visual::after {
  content: "";
  position: absolute;
  right: -3%;
  bottom: 4%;
  width: 88%;
  height: 22%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(146, 233, 247, 0.18), transparent 66%);
  filter: blur(9px);
}

.collection-card {
  position: absolute;
  top: 8%;
  left: 50%;
  width: min(375px, 76vw);
  height: 475px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.21);
  border-radius: 32px;
  transform-origin: center bottom;
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.1);
}

.collection-card-back,
.collection-card-middle {
  display: flex;
  justify-content: flex-end;
  padding: 23px;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--font-mono);
  font-size: 10px;
}

.collection-card-back {
  background: linear-gradient(150deg, #3a2b65, #1a335d 68%, #18213e);
  transform: translateX(-34%) rotate(10deg) scale(0.93);
}

.collection-card-middle {
  background: linear-gradient(150deg, #3e2559, #56305f 42%, #243a5f);
  transform: translateX(-66%) rotate(-9deg) scale(0.96);
}

.collection-card-main {
  z-index: 2;
  display: grid;
  grid-template-rows: 1.12fr 0.88fr;
  padding: 12px;
  background: linear-gradient(160deg, rgba(72, 55, 115, 0.98), rgba(24, 27, 58, 0.98));
  transform: translateX(-50%) rotate(1deg);
  animation: cardFloat 7s ease-in-out infinite;
}

.card-art {
  position: relative;
  overflow: hidden;
  border-radius: 23px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.19), transparent 46%),
    radial-gradient(circle at 25% 30%, #ff9ed6 0, rgba(255, 158, 214, 0.85) 10%, transparent 31%),
    radial-gradient(circle at 76% 34%, #86ecf6 0, rgba(134, 236, 246, 0.85) 12%, transparent 34%),
    radial-gradient(circle at 56% 86%, #b89cff 0, rgba(184, 156, 255, 0.92) 17%, transparent 43%),
    #262453;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.18);
}

.card-art::before,
.card-art::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
}

.card-art::before {
  top: 18%;
  left: 16%;
  width: 68%;
  aspect-ratio: 1;
}

.card-art::after {
  top: 32%;
  left: 31%;
  width: 38%;
  aspect-ratio: 1;
  border-style: dashed;
}

.art-orb {
  position: absolute;
  z-index: 2;
  border-radius: 50%;
  box-shadow: inset 0 1px 8px rgba(255, 255, 255, 0.62), 0 10px 30px rgba(8, 4, 28, 0.2);
}

.orb-a {
  top: 19%;
  left: 20%;
  width: 56px;
  height: 56px;
  background: linear-gradient(145deg, #fff3a6, var(--lime));
}

.orb-b {
  right: 18%;
  bottom: 18%;
  width: 82px;
  height: 82px;
  background: linear-gradient(145deg, #ffd0eb, var(--pink) 52%, var(--violet));
}

.art-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 170px;
  height: 62px;
  border: 7px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-20deg);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.17);
}

.card-art i {
  position: absolute;
  top: 16px;
  right: 19px;
  z-index: 3;
  color: #fff;
  font-style: normal;
  font-size: 17px;
  text-shadow: 0 0 18px #fff;
}

.card-copy {
  display: grid;
  align-content: space-between;
  padding: 21px 12px 10px;
}

.card-copy > span,
.card-copy small,
.card-copy b {
  font-family: var(--font-mono);
  text-transform: uppercase;
}

.card-copy > span {
  color: var(--lime);
  font-size: 8px;
  letter-spacing: 0.09em;
}

.card-copy > strong {
  margin-top: 11px;
  font-size: 27px;
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.card-copy > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.card-copy small {
  color: var(--muted);
  font-size: 7px;
}

.card-copy b {
  color: var(--lavender);
  font-size: 7px;
  font-weight: 500;
}

.visual-star {
  z-index: 5;
}

.star-a {
  top: 4%;
  right: 4%;
  font-size: 28px;
}

.star-b {
  left: 1%;
  bottom: 20%;
  color: var(--pink);
  font-size: 16px;
  animation-delay: -1.3s;
}

.collection-caption {
  position: absolute;
  right: -1%;
  bottom: 4%;
  z-index: 4;
  display: grid;
  min-width: 210px;
  padding: 15px 18px;
  border: 1px solid var(--line-bright);
  border-radius: 18px;
  background: rgba(31, 25, 62, 0.76);
  box-shadow: 0 14px 34px rgba(8, 4, 26, 0.28), inset 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.collection-caption span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--lime);
  font-family: var(--font-mono);
  font-size: 8px;
  text-transform: uppercase;
}

.collection-caption span i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
}

.collection-caption strong {
  margin-top: 5px;
  font-size: 12px;
}

.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 62px);
  min-height: 68px;
  padding: 15px clamp(20px, 4vw, 60px);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(255, 158, 214, 0.04), rgba(145, 238, 247, 0.04));
  color: var(--muted-soft);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.trust-strip i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 10px var(--pink);
}

.catalog-section {
  position: relative;
  padding: clamp(88px, 10vw, 150px) clamp(18px, 4.5vw, 72px);
}

.opening-help {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 44px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted-soft);
  font-family: var(--font-mono);
  font-size: 8px;
}

.help-label {
  padding: 5px 8px 5px 11px;
}

.opening-help a {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  transition: color 150ms ease, background 150ms ease;
}

.opening-help a b {
  color: var(--lavender);
  font-weight: 400;
}

.opening-help a:hover,
.opening-help a:focus-visible {
  background: rgba(213, 196, 255, 0.13);
  color: var(--ink);
  outline: none;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: 46px;
  max-width: 1440px;
  margin: 0 auto 54px;
}

.section-index {
  display: block;
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.11em;
}

.section-heading h2,
.privacy-note h2 {
  margin: 14px 0 0;
  font-size: clamp(38px, 4.5vw, 66px);
  font-weight: 650;
  line-height: 1.02;
  letter-spacing: -0.052em;
}

.section-heading p {
  justify-self: end;
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.parts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1440px;
  margin: 0 auto;
}

.links-error {
  grid-column: 1 / -1;
  margin: 0;
  padding: 24px;
  border: 1px solid rgba(255, 158, 214, 0.28);
  border-radius: 18px;
  background: rgba(255, 158, 214, 0.08);
  color: var(--pink);
  font-family: var(--font-mono);
  font-size: 11px;
  text-align: center;
}

.part-card {
  --accent: var(--cyan);
  --accent-rgb: 145, 238, 247;
  min-width: 0;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    radial-gradient(circle at 12% 0%, rgba(var(--accent-rgb), 0.09), transparent 14rem),
    rgba(35, 29, 67, 0.65);
  box-shadow: 0 28px 70px rgba(7, 4, 24, 0.2), inset 0 1px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

.part-card:nth-child(2) { --accent: var(--pink); --accent-rgb: 255, 158, 214; }
.part-card:nth-child(3) { --accent: var(--lime); --accent-rgb: 202, 255, 120; }
.part-card:nth-child(4) { --accent: var(--peach); --accent-rgb: 255, 209, 170; }

.part-top {
  min-height: 92px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 12px 16px;
}

.part-year {
  position: relative;
  display: grid;
  min-width: 0;
  gap: 3px;
  padding-left: 14px;
}

.part-year::before {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 0;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(to bottom, var(--accent), rgba(var(--accent-rgb), 0.16));
  box-shadow: 0 0 14px rgba(var(--accent-rgb), 0.34);
}

.year-kicker {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.part-card h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.045em;
}

.part-card p {
  margin: 4px 0 0;
  color: var(--muted-soft);
  font-size: 9px;
}

.count {
  flex: 0 0 auto;
  padding: 4px 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted-soft);
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.04em;
}

.archive-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 6px;
}

.archive-link {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  min-height: 54px;
  padding: 9px 11px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.035);
  transition: transform 170ms ease, background 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}

.archive-link::after {
  content: "";
  position: absolute;
  top: -35px;
  left: -70px;
  width: 52px;
  height: 120px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: rotate(24deg);
  transition: left 420ms ease;
}

.archive-link:hover,
.archive-link:focus-visible {
  z-index: 1;
  transform: translateY(-2px);
  border-color: rgba(var(--accent-rgb), 0.34);
  background: rgba(var(--accent-rgb), 0.08);
  box-shadow: 0 10px 24px rgba(7, 4, 24, 0.18);
  outline: none;
}

.archive-link:hover::after,
.archive-link:focus-visible::after {
  left: calc(100% + 24px);
}

.file-glyph {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border: 1px solid rgba(var(--accent-rgb), 0.27);
  border-radius: 10px;
  background: rgba(var(--accent-rgb), 0.08);
}

.file-glyph i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 11px rgba(var(--accent-rgb), 0.74);
}

.file-copy {
  min-width: 0;
}

.file-copy strong {
  display: block;
  overflow: hidden;
  font-size: 11px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.download-arrow {
  color: var(--muted-soft);
  font-size: 14px;
  transition: color 150ms ease, transform 150ms ease;
}

.archive-link:hover .download-arrow,
.archive-link:focus-visible .download-arrow {
  color: var(--accent);
  transform: translateY(2px);
}

.mirror-section {
  margin: 0 clamp(12px, 2vw, 30px) clamp(20px, 3vw, 46px);
  border: 1px solid var(--line);
  border-radius: 42px;
  background:
    radial-gradient(circle at 94% 5%, rgba(255, 158, 214, 0.12), transparent 28rem),
    radial-gradient(circle at 2% 65%, rgba(145, 238, 247, 0.08), transparent 28rem),
    rgba(28, 24, 57, 0.46);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
}

.mirror-section .section-index { color: var(--pink); }

.privacy-note {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(30px, 6vw, 82px);
  width: min(calc(100% - 36px), 1450px);
  margin: clamp(78px, 9vw, 130px) auto;
  padding: clamp(45px, 6vw, 84px);
  overflow: hidden;
  border: 1px solid var(--line-bright);
  border-radius: 38px;
  background:
    radial-gradient(circle at 10% 50%, rgba(202, 255, 120, 0.11), transparent 20rem),
    radial-gradient(circle at 86% 20%, rgba(255, 158, 214, 0.13), transparent 24rem),
    linear-gradient(125deg, rgba(73, 51, 105, 0.66), rgba(25, 30, 64, 0.7));
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
}

.privacy-note::before {
  content: "";
  position: absolute;
  top: -170px;
  right: 18%;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.preview-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 118px;
  height: 118px;
  border: 1px solid rgba(202, 255, 120, 0.34);
  border-radius: 50%;
  background: rgba(202, 255, 120, 0.07);
  box-shadow: 0 0 50px rgba(202, 255, 120, 0.08), inset 0 0 26px rgba(202, 255, 120, 0.07);
}

.preview-mark::before,
.preview-mark::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(202, 255, 120, 0.21);
  border-radius: 50%;
}

.preview-mark::before { inset: 10px; border-style: dashed; }
.preview-mark::after { inset: 30px; }

.preview-mark span {
  position: absolute;
  bottom: 18px;
  color: var(--lime);
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.09em;
}

.preview-mark i {
  position: relative;
  z-index: 1;
  color: var(--lime);
  font-style: normal;
  font-size: 24px;
  text-shadow: 0 0 18px currentColor;
}

.privacy-note h2 {
  font-size: clamp(38px, 4.2vw, 62px);
}

.privacy-note p {
  max-width: 690px;
  margin: 17px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.privacy-note > a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 28px;
  min-height: 52px;
  padding: 13px 18px;
  border: 1px solid var(--line-bright);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.privacy-note > a:hover,
.privacy-note > a:focus-visible {
  transform: translateY(-2px);
  background: rgba(202, 255, 120, 0.1);
  color: var(--lime);
  outline: none;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 104px;
  padding: 22px clamp(20px, 4vw, 68px);
  border-top: 1px solid var(--line);
  background: rgba(8, 7, 21, 0.3);
  color: var(--muted-soft);
  font-family: var(--font-mono);
  font-size: 8px;
}

.footer p { margin: 0; }
.footer > a:last-child { justify-self: end; }

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

.footer-brand {
  color: var(--ink) !important;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.99);
  transition: opacity 560ms ease var(--delay, 0ms), transform 560ms ease var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes cardFloat {
  0%, 100% { transform: translateX(-50%) translateY(0) rotate(1deg); }
  50% { transform: translateX(-50%) translateY(-9px) rotate(-0.5deg); }
}

@keyframes twinkle {
  0%, 100% { opacity: 0.45; transform: scale(0.8) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.15) rotate(22deg); }
}

@media (max-width: 1240px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.76fr);
    gap: 42px;
  }

  .parts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .archive-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .topbar {
    grid-template-columns: 1fr auto auto;
    gap: 12px;
  }

  .nav { padding: 3px; }
  .nav-link { display: none; }
  .nav-link:last-child {
    display: block;
    padding: 7px 10px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy { max-width: 780px; }
  .collection-visual { margin-top: 10px; }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section-heading p { justify-self: start; }

  .privacy-note {
    grid-template-columns: auto 1fr;
  }

  .privacy-note > a {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 720px) {
  html { scroll-padding-top: 90px; }

  .topbar {
    top: 8px;
    width: calc(100% - 16px);
    min-height: 62px;
    margin-top: 8px;
    padding-inline: 13px;
    border-radius: 18px;
    gap: 8px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .system-state span:last-child { display: none; }

  .hero {
    gap: 62px;
    padding: 72px 18px 86px;
  }

  .hero h1 {
    font-size: clamp(45px, 13.5vw, 68px);
    line-height: 1;
  }

  .hero-lead {
    margin-top: 24px;
    line-height: 1.68;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .primary-action,
  .secondary-action { width: 100%; }

  .collection-update {
    width: 100%;
    margin-top: 42px;
  }

  .collection-visual {
    min-height: 540px;
    transform: scale(0.92);
    transform-origin: top center;
    margin-bottom: -48px;
  }

  .collection-card { height: 440px; }

  .collection-caption {
    right: 2%;
    bottom: 1%;
  }

  .trust-strip {
    justify-content: flex-start;
    padding-inline: 18px;
  }

  .catalog-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .opening-help {
    justify-content: flex-start;
    width: 100%;
    padding: 9px;
    border-radius: 18px;
  }

  .help-label {
    width: 100%;
    padding-bottom: 2px;
  }

  .parts-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .archive-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .privacy-note {
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
    padding: 34px 24px;
    border-radius: 28px;
  }

  .preview-mark {
    width: 92px;
    height: 92px;
  }

  .privacy-note > a { grid-column: auto; }

  .footer {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .footer > a:last-child { justify-self: start; }
}

@media (max-width: 440px) {
  .eyebrow {
    font-size: 7px;
  }

  .eyebrow span,
  .eyebrow b {
    padding-inline: 8px;
  }

  .collection-visual {
    min-height: 495px;
    transform: scale(0.82);
    margin: 0 -34px -75px;
    width: calc(100% + 68px);
  }

  .opening-help a {
    font-size: 7px;
  }

  .archive-list {
    grid-template-columns: 1fr;
  }

  .part-top { padding-inline: 10px; }
  .count { display: none; }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================================
   THEME 01 — IVORY EDITORIAL
   Warm paper, graphite type, muted burgundy, quiet rules and flat surfaces.
   This block intentionally follows the complete base stylesheet above.
   ========================================================================== */

:root {
  color-scheme: light;
  --bg: #f7f1e7;
  --bg-deep: #ede4d7;
  --surface: #fffdf8;
  --surface-soft: #f3ece2;
  --surface-hover: #ebe1d5;
  --ink: #282522;
  --muted: #5f5953;
  --muted-soft: #716a62;
  --lavender: #762c40;
  --violet: #8b334b;
  --cyan: #426b70;
  --pink: #8f3049;
  --peach: #a5633e;
  --lime: #4e713f;
  --line: rgba(48, 42, 37, 0.14);
  --line-bright: rgba(48, 42, 37, 0.27);
  --shadow: 0 18px 45px rgba(62, 48, 37, 0.11);
  --font-editorial: Georgia, "Times New Roman", Times, serif;
}

html {
  background: #f7f1e7;
}

body {
  background:
    linear-gradient(rgba(69, 57, 47, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(69, 57, 47, 0.018) 1px, transparent 1px),
    #f7f1e7;
  background-size: 100% 28px, 28px 100%, auto;
  color: var(--ink);
}

::selection {
  background: #762c40;
  color: #fffaf1;
}

.page-noise {
  opacity: 0.16;
  background-image: radial-gradient(rgba(62, 51, 43, 0.24) 0.55px, transparent 0.65px);
  background-size: 18px 18px;
  mask-image: none;
}

.topbar {
  border-color: var(--line-bright);
  border-radius: 8px;
  background: rgba(250, 246, 238, 0.97);
  box-shadow: 0 5px 18px rgba(64, 48, 36, 0.08);
  backdrop-filter: blur(12px);
}

.brand-mark {
  border-color: #632437;
  border-radius: 5px;
  background: #762c40;
  box-shadow: none;
}

.brand-mark::after {
  display: none;
}

.brand-mark i {
  background: #fff9ef;
  box-shadow: none;
}

.brand-copy small {
  color: #762c40;
}

.nav {
  border-color: var(--line);
  border-radius: 5px;
  background: transparent;
}

.nav-link {
  border-radius: 3px;
}

.nav-link:hover,
.nav-link:focus-visible {
  background: #ece2d6;
  box-shadow: none;
  color: #5f2033;
}

.system-state {
  color: var(--muted);
}

.state-dot {
  background: #557443;
  box-shadow: 0 0 0 3px rgba(85, 116, 67, 0.13);
}

.hero-bloom,
.hero-spark,
.visual-star {
  display: none;
}

.eyebrow {
  border-color: var(--line-bright);
  border-radius: 4px;
  background: #fbf7f0;
  box-shadow: none;
}

.eyebrow span {
  color: var(--muted);
}

.eyebrow b {
  border-radius: 2px;
  background: #e7ded0;
  color: #5e2736;
  box-shadow: none;
}

.hero h1,
.section-heading h2,
.privacy-note h2,
.part-card h3,
.card-copy > strong {
  font-family: var(--font-editorial);
}

.hero h1 {
  font-weight: 500;
  letter-spacing: -0.048em;
}

.hero h1 em {
  background: none;
  color: #762c40;
  font-style: italic;
  font-weight: 500;
  text-shadow: none;
}

.hero-lead {
  color: var(--muted);
}

.primary-action,
.secondary-action {
  border-radius: 4px;
}

.primary-action {
  border: 1px solid #692438;
  background: #762c40;
  color: #fffaf1 !important;
  box-shadow: none;
}

.primary-action:hover,
.primary-action:focus-visible {
  background: #642235;
  box-shadow: 0 7px 18px rgba(83, 31, 47, 0.17);
}

.secondary-action {
  border-color: var(--line-bright);
  background: #fffdf8;
  color: var(--muted);
  box-shadow: none;
}

.secondary-action:hover,
.secondary-action:focus-visible {
  background: #eee5da;
  color: #4f1d2d;
}

.collection-update {
  border-color: var(--line);
  border-radius: 5px;
  background: #fbf7f0;
  box-shadow: none;
}

.update-symbol {
  border-color: rgba(78, 113, 63, 0.34);
  border-radius: 4px;
  background: rgba(78, 113, 63, 0.08);
  color: #456737;
  text-shadow: none;
}

.collection-update p {
  color: var(--muted-soft);
}

.collection-visual::before,
.collection-visual::after {
  display: none;
}

.collection-card {
  border-color: rgba(48, 42, 37, 0.25);
  border-radius: 10px;
  box-shadow: 0 16px 36px rgba(58, 46, 37, 0.14);
}

.collection-card-back,
.collection-card-middle {
  color: #625a52;
}

.collection-card-back {
  background: #ddd1c2;
}

.collection-card-middle {
  background: #eadfd3;
}

.collection-card-main {
  color: #282522;
  background: #fffaf1;
  animation: none;
  transform: translateX(-50%);
}

.card-art {
  border: 1px solid rgba(52, 45, 39, 0.16);
  border-radius: 5px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.38), transparent 48%),
    radial-gradient(circle at 25% 30%, #9b5364 0, rgba(155, 83, 100, 0.78) 10%, transparent 31%),
    radial-gradient(circle at 76% 34%, #81989a 0, rgba(129, 152, 154, 0.74) 12%, transparent 34%),
    radial-gradient(circle at 56% 86%, #b99676 0, rgba(185, 150, 118, 0.76) 17%, transparent 43%),
    #e6dbce;
  box-shadow: none;
}

.card-art::before,
.card-art::after {
  border-color: rgba(45, 39, 35, 0.3);
}

.art-orb {
  box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.52);
}

.orb-a {
  background: linear-gradient(145deg, #f0dca8, #a7a86b);
}

.orb-b {
  background: linear-gradient(145deg, #d5a7ae, #914157 55%, #6d4c69);
}

.art-ring {
  border-color: rgba(255, 253, 247, 0.66);
  box-shadow: none;
}

.card-art i {
  color: #fffdf7;
  text-shadow: none;
}

.card-copy > span {
  color: #4e713f;
}

.card-copy small {
  color: var(--muted);
}

.card-copy b {
  color: #762c40;
}

.collection-caption {
  border-color: var(--line-bright);
  border-radius: 5px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 8px 20px rgba(63, 49, 38, 0.1);
  backdrop-filter: blur(10px);
}

.collection-caption span {
  color: #4e713f;
}

.collection-caption span i {
  box-shadow: none;
}

.trust-strip {
  border-color: var(--line);
  background: #eee5d9;
  color: #686058;
}

.trust-strip i {
  background: #762c40;
  box-shadow: none;
}

.opening-help {
  border-color: var(--line);
  border-radius: 5px;
  background: #f2eadf;
  color: var(--muted-soft);
}

.opening-help a {
  border: 1px solid transparent;
  border-radius: 3px;
  background: #fffaf3;
  color: var(--muted);
}

.opening-help a b {
  color: #762c40;
}

.opening-help a:hover,
.opening-help a:focus-visible {
  border-color: var(--line-bright);
  background: #e8ded1;
  color: #3f3934;
}

.section-index {
  color: #426b70;
}

.section-heading h2,
.privacy-note h2 {
  font-weight: 500;
  letter-spacing: -0.035em;
}

.section-heading p {
  color: var(--muted);
}

.links-error {
  border-color: rgba(143, 48, 73, 0.32);
  border-radius: 4px;
  background: rgba(143, 48, 73, 0.07);
  color: #762c40;
}

.part-card {
  --accent: #426b70;
  --accent-rgb: 66, 107, 112;
  border-color: var(--line);
  border-radius: 7px;
  background: #fffdf8;
  box-shadow: 0 8px 24px rgba(58, 45, 35, 0.07);
  backdrop-filter: none;
}

.part-card:nth-child(2) {
  --accent: #8f3049;
  --accent-rgb: 143, 48, 73;
}

.part-card:nth-child(3) {
  --accent: #4e713f;
  --accent-rgb: 78, 113, 63;
}

.part-card:nth-child(4) {
  --accent: #a5633e;
  --accent-rgb: 165, 99, 62;
}

.part-year::before {
  border-radius: 0;
  background: var(--accent);
  box-shadow: none;
}

.part-card h3 {
  font-weight: 500;
}

.part-card p,
.count {
  color: var(--muted-soft);
}

.archive-link {
  border-color: rgba(48, 42, 37, 0.11);
  border-radius: 4px;
  background: #f8f3eb;
}

.archive-link::after {
  background: linear-gradient(90deg, transparent, rgba(81, 65, 53, 0.08), transparent);
}

.archive-link:hover,
.archive-link:focus-visible {
  border-color: rgba(var(--accent-rgb), 0.45);
  background: rgba(var(--accent-rgb), 0.09);
  box-shadow: 0 5px 12px rgba(59, 46, 36, 0.08);
}

.file-glyph {
  border-radius: 3px;
  background: rgba(var(--accent-rgb), 0.08);
}

.file-glyph i {
  box-shadow: none;
}

.download-arrow {
  color: var(--muted-soft);
}

.mirror-section {
  border-color: var(--line);
  border-radius: 9px;
  background: #eee5da;
  box-shadow: none;
}

.mirror-section .section-index {
  color: #762c40;
}

.privacy-note {
  border-color: var(--line-bright);
  border-radius: 9px;
  background: #fffaf2;
  box-shadow: 0 12px 32px rgba(62, 48, 37, 0.09);
  backdrop-filter: none;
}

.privacy-note::before {
  border-color: rgba(118, 44, 64, 0.1);
}

.preview-mark {
  border-color: rgba(118, 44, 64, 0.36);
  background: rgba(118, 44, 64, 0.055);
  box-shadow: none;
}

.preview-mark::before,
.preview-mark::after {
  border-color: rgba(118, 44, 64, 0.22);
}

.preview-mark span,
.preview-mark i {
  color: #762c40;
  text-shadow: none;
}

.privacy-note p {
  color: var(--muted);
}

.privacy-note > a {
  border-color: var(--line-bright);
  border-radius: 4px;
  background: #f2e9dc;
  color: #554e48;
}

.privacy-note > a:hover,
.privacy-note > a:focus-visible {
  background: #e5d8c8;
  color: #642235;
}

.footer {
  border-color: var(--line);
  background: #e9dfd2;
  color: #655e57;
}

.footer-brand {
  color: #282522 !important;
}

.footer a:hover,
.footer a:focus-visible {
  color: #762c40;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #762c40 !important;
  outline-offset: 3px;
}

@media (max-width: 720px) {
  .topbar,
  .privacy-note {
    border-radius: 7px;
  }

  .opening-help {
    border-radius: 6px;
  }
}

@media (forced-colors: active) {
  .brand-mark,
  .primary-action,
  .eyebrow b {
    forced-color-adjust: auto;
  }

  .part-card,
  .archive-link,
  .collection-card,
  .privacy-note {
    border: 1px solid CanvasText;
  }
}


