:root {
  color-scheme: dark;
  --bg: #0b0d0e;
  --bg-soft: #121615;
  --ink: #f3efe6;
  --muted: #b8b2a6;
  --line: rgba(243, 239, 230, 0.14);
  --line-strong: rgba(243, 239, 230, 0.24);
  --teal: #41c7bb;
  --teal-deep: #123b38;
  --amber: #d79a45;
  --ember: #8d3f2a;
  --paper: #ece3d1;
  --shadow: rgba(0, 0, 0, 0.45);
  --max: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(65, 199, 187, 0.11), transparent 26rem),
    linear-gradient(180deg, #0b0d0e 0%, #11120f 48%, #0c0e0f 100%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-160%);
  border: 1px solid var(--line-strong);
  background: var(--paper);
  color: #15110d;
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius);
  transition: transform 180ms ease;
}

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

.guide-widget {
  position: fixed;
  right: clamp(0.75rem, 2vw, 1.25rem);
  bottom: clamp(0.75rem, 2vw, 1.25rem);
  z-index: 12;
  width: min(370px, calc(100vw - 1.5rem));
}

.guide-panel {
  position: relative;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: end;
  border: 1px solid rgba(215, 154, 69, 0.36);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(141, 63, 42, 0.26), rgba(18, 59, 56, 0.18)),
    rgba(10, 10, 10, 0.9);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.56);
  padding: 0.75rem;
  overflow: hidden;
  animation: guideFloat 5.5s ease-in-out infinite;
  transform-origin: bottom right;
}

.guide-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(215, 154, 69, 0.12), transparent 48%);
  pointer-events: none;
}

.guide-portrait {
  position: relative;
  aspect-ratio: 0.74;
  overflow: hidden;
  border: 1px solid rgba(243, 239, 230, 0.14);
  border-radius: var(--radius);
  background: #080808;
}

.guide-portrait img,
.guide-toggle-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 16%;
}

.guide-portrait img {
  filter: contrast(1.06) saturate(1.08) drop-shadow(0 0 18px rgba(215, 74, 52, 0.28));
  transform-origin: center bottom;
  animation: guideBreath 4s ease-in-out infinite;
}

.guide-dialogue {
  position: relative;
  min-width: 0;
  padding: 0.4rem 0.15rem 0.1rem;
}

.guide-role {
  color: var(--amber);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.guide-dialogue p {
  min-height: 72px;
  margin: 0.45rem 0 0.8rem;
  color: var(--paper);
  font-size: 0.93rem;
  line-height: 1.35;
}

.guide-link {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(65, 199, 187, 0.36);
  border-radius: var(--radius);
  background: rgba(65, 199, 187, 0.1);
  color: var(--paper);
  font-size: 0.86rem;
  font-weight: 800;
  padding: 0.5rem 0.7rem;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.guide-link::after {
  content: "->";
  margin-left: 0.45rem;
}

.guide-link:hover,
.guide-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(215, 154, 69, 0.58);
  background: rgba(215, 154, 69, 0.13);
}

.guide-toggle {
  position: absolute;
  right: 0.65rem;
  top: -0.75rem;
  z-index: 2;
  min-height: 30px;
  border: 1px solid rgba(243, 239, 230, 0.18);
  border-radius: var(--radius);
  background: rgba(12, 13, 13, 0.92);
  color: var(--muted);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.3rem 0.55rem;
}

.guide-toggle:hover,
.guide-toggle:focus-visible {
  border-color: rgba(215, 154, 69, 0.52);
  color: var(--paper);
}

.guide-toggle-avatar {
  display: none;
}

.guide-widget.is-collapsed {
  width: 78px;
}

.guide-widget.is-collapsed .guide-panel {
  display: none;
}

.guide-widget.is-collapsed .guide-toggle {
  position: static;
  width: 78px;
  aspect-ratio: 1;
  min-height: 78px;
  display: block;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
  animation: guideFloat 5.5s ease-in-out infinite;
}

.guide-widget.is-collapsed .guide-toggle-avatar {
  display: block;
  width: 100%;
  height: 100%;
}

.guide-widget.is-collapsed .guide-toggle-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(11, 13, 14, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(var(--max), calc(100% - 2rem));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(215, 154, 69, 0.55);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(215, 154, 69, 0.22), rgba(65, 199, 187, 0.12));
  color: var(--paper);
  font-weight: 800;
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 0.98rem;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.76rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.9rem;
  padding: 0.52rem 0.72rem;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    background 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  border-color: var(--line);
  background: rgba(243, 239, 230, 0.06);
  color: var(--paper);
}

.hero {
  position: relative;
  min-height: clamp(520px, 74svh, 720px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(90deg, rgba(8, 9, 9, 0.94) 0%, rgba(8, 9, 9, 0.84) 32%, rgba(8, 9, 9, 0.42) 62%, rgba(8, 9, 9, 0.18) 100%),
    linear-gradient(0deg, rgba(11, 13, 14, 0.55), rgba(11, 13, 14, 0.1)),
    url("assets/hero-system-atelier.png");
  background-size: cover;
  background-position: center right;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 32%;
  z-index: -2;
  background: linear-gradient(180deg, transparent, rgba(11, 13, 14, 0.88));
}

.hero-content {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 4rem 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.9rem;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--paper);
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 1.35rem 0 0;
  color: #d7d0c2;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 0.78rem 1rem;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button::after {
  content: "->";
  color: currentColor;
  font-weight: 800;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  border-color: rgba(215, 154, 69, 0.56);
  background: var(--amber);
  color: #17110b;
  font-weight: 800;
}

.button-secondary {
  background: rgba(243, 239, 230, 0.06);
  color: var(--paper);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(65, 199, 187, 0.44);
  background: rgba(65, 199, 187, 0.11);
}

.signal-strip {
  width: min(var(--max), calc(100% - 2rem));
  margin: -1px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-inline: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(18, 22, 21, 0.72);
}

.signal-strip div {
  min-height: 112px;
  padding: 1.25rem;
  display: grid;
  align-content: start;
  gap: 0.35rem;
}

.signal-strip div + div {
  border-left: 1px solid var(--line);
}

.signal-strip strong {
  color: var(--paper);
}

.signal-strip span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section,
.diagnostic-section,
.contact-band {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.intro {
  display: grid;
  grid-template-columns: 0.8fr 2fr;
  gap: clamp(2rem, 6vw, 5rem);
  border-bottom: 1px solid var(--line);
}

.section-copy h2,
.section-heading h2,
.live-chat-panel h2,
.diagnostic-copy h2,
.contact-band h2 {
  margin: 0;
  color: var(--paper);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-copy p,
.live-chat-panel p,
.diagnostic-copy p {
  max-width: 780px;
  margin: 1.1rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.music-section {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.live-chat-panel {
  position: relative;
  display: grid;
  gap: 1rem;
  align-self: stretch;
  border: 1px solid rgba(115, 15, 24, 0.62);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 10%, rgba(201, 24, 36, 0.2), transparent 13rem),
    linear-gradient(145deg, rgba(17, 10, 10, 0.98), rgba(6, 7, 7, 0.94));
  padding: clamp(1rem, 3vw, 1.35rem);
  box-shadow:
    inset 0 0 0 1px rgba(243, 239, 230, 0.04),
    0 24px 70px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.live-chat-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    linear-gradient(180deg, rgba(201, 24, 36, 0.18), transparent 38%),
    radial-gradient(circle at 92% 0%, rgba(215, 154, 69, 0.12), transparent 12rem);
  pointer-events: none;
}

.live-chat-panel > * {
  position: relative;
  z-index: 1;
}

.chat-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.online-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: max-content;
  border: 1px solid rgba(61, 220, 151, 0.38);
  border-radius: 999px;
  background: rgba(7, 17, 12, 0.8);
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 0.44rem 0.7rem;
  text-transform: uppercase;
}

.online-pill i {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: #3ddc97;
  box-shadow: 0 0 18px rgba(61, 220, 151, 0.8);
}

.blood-gothic {
  position: relative;
  max-width: 680px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
  color: #f4efe6;
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.9),
    0 0 18px rgba(201, 24, 36, 0.72);
}

.blood-gothic::after {
  content: "";
  position: absolute;
  left: 0.08em;
  bottom: -0.16em;
  width: min(78%, 360px);
  height: 0.16em;
  border-radius: 999px;
  background: linear-gradient(90deg, #c91824, rgba(86, 4, 12, 0.9), transparent);
  filter: drop-shadow(0 0 9px rgba(201, 24, 36, 0.62));
}

.chat-window {
  display: grid;
  gap: 0.85rem;
  border: 1px solid rgba(243, 239, 230, 0.12);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.38);
  padding: 0.85rem;
}

.chat-feed {
  display: grid;
  gap: 0.65rem;
  max-height: 230px;
  overflow: auto;
  padding-right: 0.25rem;
}

.chat-bubble {
  width: min(92%, 440px);
  border: 1px solid rgba(243, 239, 230, 0.12);
  border-radius: 8px;
  background: rgba(24, 26, 27, 0.88);
  padding: 0.75rem;
}

.chat-bubble span {
  display: block;
  color: var(--amber);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.chat-bubble p {
  margin: 0.3rem 0 0;
  color: var(--paper);
  font-size: 0.94rem;
}

.chat-bubble.is-user {
  justify-self: end;
  border-color: rgba(201, 24, 36, 0.48);
  background: linear-gradient(145deg, rgba(82, 6, 13, 0.88), rgba(24, 8, 10, 0.92));
}

.chat-bubble.is-system {
  border-color: rgba(65, 199, 187, 0.28);
}

.chat-form {
  display: grid;
  gap: 0.65rem;
}

.chat-form label {
  color: var(--amber);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.chat-form textarea {
  width: 100%;
  min-height: 92px;
  border: 1px solid rgba(243, 239, 230, 0.14);
  border-radius: var(--radius);
  background: rgba(9, 9, 9, 0.9);
  color: var(--paper);
  padding: 0.85rem;
  resize: vertical;
}

.chat-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.social-blood {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.social-blood a {
  position: relative;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 24, 36, 0.42);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(201, 24, 36, 0.2), rgba(5, 5, 5, 0.78)),
    rgba(10, 10, 10, 0.94);
  color: #f8ead9;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
  text-decoration: none;
  text-shadow:
    0 1px 0 #000,
    0 0 10px rgba(201, 24, 36, 0.68);
  overflow: hidden;
}

.social-blood a::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #c91824, transparent);
  opacity: 0.82;
}

.sinister-player {
  position: relative;
  border: 1px solid rgba(141, 63, 42, 0.46);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 55% 26%, rgba(141, 20, 30, 0.32), transparent 16rem),
    linear-gradient(145deg, rgba(12, 12, 12, 0.96), rgba(28, 13, 12, 0.82));
  padding: clamp(1rem, 3vw, 1.5rem);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.sinister-player::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(215, 154, 69, 0.08), transparent 35%),
    radial-gradient(circle at 86% 10%, rgba(65, 199, 187, 0.08), transparent 14rem);
  pointer-events: none;
}

.maw-stage {
  position: relative;
  min-height: 320px;
  display: grid;
  place-items: center;
}

.maw-aura {
  position: absolute;
  width: min(82%, 560px);
  aspect-ratio: 1.8;
  border-radius: 50%;
  background: rgba(141, 20, 30, 0.22);
  filter: blur(32px);
  transform: translateY(20px);
}

.maw-frame {
  position: relative;
  width: min(100%, 620px);
  min-height: 248px;
  border: 1px solid rgba(243, 239, 230, 0.11);
  border-radius: 50% 50% 46% 46% / 34% 34% 66% 66%;
  background:
    radial-gradient(ellipse at 50% 18%, rgba(243, 239, 230, 0.1), transparent 20%),
    radial-gradient(ellipse at center, rgba(4, 3, 4, 0.94) 0%, rgba(4, 3, 4, 0.88) 45%, rgba(54, 6, 9, 0.72) 100%);
  box-shadow:
    inset 0 -26px 48px rgba(145, 11, 18, 0.32),
    inset 0 18px 40px rgba(0, 0, 0, 0.82),
    0 22px 55px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.upper-lip {
  position: absolute;
  left: 6%;
  right: 6%;
  top: 26px;
  height: 64px;
  border-top: 12px solid rgba(12, 9, 10, 0.98);
  border-radius: 50% 50% 18% 18% / 80% 80% 20% 20%;
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.58);
  z-index: 4;
}

.smile-curve {
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 34px;
  height: 148px;
  border-bottom: 14px solid rgba(164, 17, 22, 0.96);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  filter: drop-shadow(0 0 12px rgba(194, 22, 28, 0.46));
  z-index: 5;
}

.blood-wave {
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: 34px;
  width: 90%;
  height: 150px;
  z-index: 3;
}

.fang {
  position: absolute;
  top: 48px;
  z-index: 6;
  width: 0;
  height: 0;
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
  border-top: 92px solid #f0e4cf;
  filter:
    drop-shadow(0 8px 5px rgba(0, 0, 0, 0.42))
    drop-shadow(0 0 9px rgba(215, 154, 69, 0.22));
}

.fang::after {
  content: "";
  position: absolute;
  left: -5px;
  top: -88px;
  width: 8px;
  height: 78px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0));
  transform: skewX(-8deg);
}

.fang-left {
  left: 27%;
  transform: rotate(6deg);
}

.fang-right {
  right: 27%;
  transform: rotate(-6deg);
}

.fang-small-left,
.fang-small-right {
  top: 62px;
  border-left-width: 15px;
  border-right-width: 15px;
  border-top-width: 58px;
  opacity: 0.82;
}

.fang-small-left {
  left: 39%;
  transform: rotate(3deg);
}

.fang-small-right {
  right: 39%;
  transform: rotate(-3deg);
}

.blood-drops {
  position: absolute;
  inset: 0;
  z-index: 7;
  pointer-events: none;
}

.blood-drops span {
  position: absolute;
  top: 102px;
  width: 7px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, #c91824, rgba(105, 3, 12, 0.2));
  filter: drop-shadow(0 0 8px rgba(205, 18, 30, 0.38));
  animation: bloodDrip 2.8s ease-in-out infinite;
}

.blood-drops span:nth-child(1) {
  left: 31%;
}

.blood-drops span:nth-child(2) {
  left: 51%;
  height: 46px;
  animation-delay: 0.8s;
}

.blood-drops span:nth-child(3) {
  right: 30%;
  height: 28px;
  animation-delay: 1.35s;
}

.sinister-player.is-playing .maw-frame {
  animation: mawPulse 900ms ease-in-out infinite;
}

.music-console {
  position: relative;
  display: grid;
  gap: 1rem;
  border-top: 1px solid rgba(243, 239, 230, 0.12);
  padding-top: 1rem;
}

.console-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.console-label {
  display: block;
  color: var(--amber);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.music-console strong {
  display: block;
  margin-top: 0.25rem;
  color: var(--paper);
  font-size: 1.05rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.signal-state {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-width: max-content;
  border: 1px solid rgba(243, 239, 230, 0.14);
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  color: var(--paper);
  background: rgba(0, 0, 0, 0.24);
}

.signal-state span {
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: #3ddc97;
  box-shadow: 0 0 18px rgba(61, 220, 151, 0.75);
}

.signal-state strong {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.listener-console {
  display: grid;
  grid-template-columns: minmax(118px, 150px) minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.cover-card {
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.cover-card img {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid rgba(243, 239, 230, 0.14);
  border-radius: 8px;
  object-fit: cover;
  background:
    radial-gradient(circle at 50% 40%, rgba(201, 24, 36, 0.3), transparent 58%),
    #090909;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.6);
}

.locked-note {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(65, 199, 187, 0.32);
  border-radius: var(--radius);
  background: rgba(8, 8, 8, 0.74);
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  padding: 0.45rem 0.55rem;
}

.cover-trigger {
  width: 100%;
  justify-content: center;
}

.listener-controls {
  display: grid;
  gap: 1rem;
  align-content: center;
}

.music-controls,
.track-line {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

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

.cover-trigger::after {
  content: "";
}

.track-line {
  display: grid;
  grid-template-columns: 46px minmax(120px, 1fr) 46px;
  gap: 0.8rem;
  color: var(--muted);
  font-size: 0.86rem;
}

#track-progress {
  width: 100%;
  accent-color: #c91824;
}

.volume-control {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.volume-control input {
  width: 100%;
  accent-color: var(--amber);
}

.player-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.vip-zone-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.zone-option {
  min-height: 158px;
  display: grid;
  align-content: start;
  gap: 0.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(243, 239, 230, 0.055), rgba(243, 239, 230, 0.018)),
    rgba(11, 13, 14, 0.78);
  color: var(--paper);
  cursor: pointer;
  padding: 1rem;
  text-align: left;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.zone-option:hover,
.zone-option:focus-visible,
.zone-option.is-active {
  transform: translateY(-2px);
  border-color: rgba(215, 154, 69, 0.58);
  background:
    linear-gradient(160deg, rgba(141, 20, 30, 0.24), rgba(18, 59, 56, 0.08)),
    rgba(11, 13, 14, 0.86);
}

.zone-option span {
  width: max-content;
  border: 1px solid rgba(65, 199, 187, 0.34);
  border-radius: var(--radius);
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 900;
  padding: 0.18rem 0.42rem;
}

.zone-option strong {
  display: block;
  font-size: 1.08rem;
}

.zone-option small {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.zone-details {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem 1rem;
  align-items: center;
  border: 1px solid rgba(141, 63, 42, 0.48);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(141, 20, 30, 0.2), rgba(18, 59, 56, 0.12)),
    rgba(12, 12, 12, 0.84);
  padding: clamp(1rem, 3vw, 1.35rem);
}

.zone-details span {
  grid-column: 1 / -1;
  color: var(--amber);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.zone-details h3 {
  margin: 0;
  color: var(--paper);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.05;
}

.zone-details p {
  grid-column: 1 / 2;
  margin: 0;
  color: var(--muted);
}

.zone-details .button {
  grid-column: 2 / 3;
  grid-row: 2 / 4;
  white-space: nowrap;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.3fr);
  align-items: end;
  gap: clamp(1.5rem, 5vw, 4rem);
  margin-bottom: 2rem;
}

.section-heading.compact {
  max-width: 820px;
  display: block;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: rgba(18, 22, 21, 0.42);
}

.method-grid article {
  min-height: 226px;
  padding: 1.35rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.method-grid article:nth-child(3n) {
  border-right: 0;
}

.method-grid article:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.method-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  aspect-ratio: 1;
  border: 1px solid rgba(65, 199, 187, 0.34);
  border-radius: var(--radius);
  color: var(--teal);
  font-weight: 800;
}

.method-grid h3,
.principle-card h3,
.offer-list h3 {
  margin: 1.2rem 0 0;
  color: var(--paper);
  font-size: 1.18rem;
}

.method-grid p,
.principle-card p,
.offer-list p {
  margin: 0.65rem 0 0;
  color: var(--muted);
}

.principles {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.principle-card {
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  background:
    linear-gradient(180deg, rgba(243, 239, 230, 0.055), rgba(243, 239, 230, 0.02)),
    rgba(18, 22, 21, 0.74);
  box-shadow: 0 18px 44px var(--shadow);
}

.principle-card h3 {
  margin-top: 0;
}

.diagnostic-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.diagnostic-panel {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(65, 199, 187, 0.11), transparent 38%),
    linear-gradient(180deg, rgba(243, 239, 230, 0.08), rgba(243, 239, 230, 0.025));
  padding: 1rem;
  box-shadow: 0 22px 52px var(--shadow);
}

.option-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
}

.option {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 9, 9, 0.38);
  color: var(--muted);
  cursor: pointer;
  padding: 0.7rem 0.8rem;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.option:hover,
.option:focus-visible,
.option.is-active {
  border-color: rgba(215, 154, 69, 0.58);
  background: rgba(215, 154, 69, 0.12);
  color: var(--paper);
}

.audit-result {
  min-height: 252px;
  display: grid;
  align-content: center;
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.2rem, 4vw, 2rem);
  background: rgba(8, 9, 9, 0.48);
}

.audit-label {
  width: max-content;
  border: 1px solid rgba(65, 199, 187, 0.34);
  border-radius: 999px;
  color: var(--teal);
  padding: 0.25rem 0.6rem;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.audit-result p {
  margin: 1rem 0;
  color: var(--paper);
  font-size: clamp(1.28rem, 3vw, 2rem);
  line-height: 1.15;
}

.audit-result strong {
  color: var(--muted);
  font-weight: 700;
}

.offers {
  border-top: 1px solid var(--line);
}

.offer-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}

.offer-list article {
  min-height: 190px;
  padding: 1.5rem 1.5rem 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.offer-list article:nth-child(odd) {
  border-right: 1px solid var(--line);
  padding-right: 1.5rem;
}

.offer-list article:nth-child(even) {
  padding-left: 1.5rem;
}

.offer-list h3 {
  margin-top: 0;
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(215, 154, 69, 0.32);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(141, 63, 42, 0.22), rgba(18, 59, 56, 0.2)),
    rgba(18, 22, 21, 0.78);
  padding: clamp(1.4rem, 4vw, 2.3rem);
}

.contact-band h2 {
  max-width: 760px;
  font-size: clamp(1.9rem, 4vw, 3.4rem);
}

.contact-actions {
  justify-content: flex-end;
  margin-top: 0;
  flex: 0 0 auto;
}

.site-footer {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

body.age-locked {
  overflow: hidden;
}

.age-gate[hidden] {
  display: none;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.96), rgba(3, 3, 3, 0.78)),
    url("assets/hero-system-atelier.png");
  background-size: cover;
  background-position: center;
}

.age-gate-panel {
  width: min(620px, 100%);
  border: 1px solid rgba(215, 154, 69, 0.42);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 12%, rgba(141, 20, 30, 0.26), transparent 15rem),
    rgba(10, 10, 10, 0.94);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.68);
  padding: clamp(1.3rem, 5vw, 2.4rem);
}

.age-mark {
  width: 74px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border: 1px solid rgba(201, 24, 36, 0.58);
  border-radius: var(--radius);
  background: rgba(201, 24, 36, 0.14);
  color: var(--paper);
  font-size: 1.35rem;
  font-weight: 900;
}

.age-gate h1 {
  margin: 0;
  color: var(--paper);
  font-size: clamp(2.2rem, 7vw, 4rem);
  line-height: 0.95;
}

.age-gate p {
  color: var(--muted);
  font-size: 1rem;
}

.age-check {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(243, 239, 230, 0.045);
  color: var(--paper);
  padding: 0.9rem;
}

.age-check input {
  width: 20px;
  height: 20px;
  margin-top: 0.12rem;
  accent-color: var(--amber);
}

.age-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.46;
  transform: none;
}

.vip-area {
  border-bottom: 1px solid var(--line);
}

.vip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.vip-card,
.security-card,
.product-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(243, 239, 230, 0.055), rgba(243, 239, 230, 0.018)),
    rgba(13, 14, 14, 0.8);
  box-shadow: 0 18px 44px var(--shadow);
}

.vip-card {
  min-height: 260px;
  display: grid;
  align-content: start;
  gap: 0.7rem;
  padding: 1.25rem;
}

.vip-card.featured {
  border-color: rgba(215, 154, 69, 0.48);
  background:
    linear-gradient(145deg, rgba(141, 20, 30, 0.22), rgba(18, 59, 56, 0.1)),
    rgba(13, 14, 14, 0.86);
}

.vip-card span,
.security-card span {
  width: max-content;
  border: 1px solid rgba(65, 199, 187, 0.34);
  border-radius: var(--radius);
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 900;
  padding: 0.2rem 0.45rem;
}

.vip-card h3,
.security-card h3,
.product-card h3 {
  margin: 0.4rem 0 0;
  color: var(--paper);
  font-size: 1.18rem;
}

.vip-card p,
.security-card p,
.product-card p {
  margin: 0;
  color: var(--muted);
}

.webcam-panel,
.checkout-status {
  margin-top: 1rem;
  border: 1px solid rgba(215, 154, 69, 0.34);
  border-radius: var(--radius);
  background: rgba(215, 154, 69, 0.07);
  padding: 1rem;
}

.webcam-panel span {
  display: block;
  color: var(--amber);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.webcam-panel strong,
.checkout-status {
  color: var(--paper);
}

.shop-section {
  border-bottom: 1px solid var(--line);
}

.store-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.store-filter {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 9, 9, 0.38);
  color: var(--muted);
  cursor: pointer;
  padding: 0.55rem 0.75rem;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.store-filter:hover,
.store-filter:focus-visible,
.store-filter.is-active {
  border-color: rgba(215, 154, 69, 0.58);
  background: rgba(215, 154, 69, 0.12);
  color: var(--paper);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.catalog-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(65, 199, 187, 0.035);
}

.catalog-summary {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto 1rem;
  color: var(--muted);
  font-weight: 800;
}

.music-catalog-grid {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.catalog-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(18, 22, 21, 0.86);
  padding: 0.85rem;
}

.catalog-cover {
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #070707;
}

.catalog-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-card-body {
  min-width: 0;
}

.catalog-card h3 {
  margin: 0.55rem 0 0.25rem;
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  line-height: 1.12;
}

.catalog-card p {
  margin: 0 0 0.55rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.catalog-card strong {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--paper);
}

.catalog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.catalog-actions .button {
  min-height: 34px;
  font-size: 0.78rem;
  padding: 0.42rem 0.58rem;
}

.catalog-actions .button:disabled {
  cursor: not-allowed;
  opacity: 0.46;
}

.preview-dock {
  width: min(var(--max), calc(100% - 2rem));
  margin: 1rem auto 0;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(260px, 0.85fr);
  gap: 1rem;
  align-items: center;
  border: 1px solid rgba(65, 199, 187, 0.28);
  border-radius: var(--radius);
  background: rgba(5, 7, 8, 0.78);
  padding: 1rem;
}

.preview-dock strong {
  display: block;
  font-size: 1.12rem;
}

.preview-dock p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.preview-dock audio,
.preview-dock video {
  width: 100%;
}

.preview-dock video {
  grid-column: 1 / -1;
  max-height: 520px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #030303;
}

.product-card {
  min-height: 310px;
  display: grid;
  align-content: start;
  gap: 0.7rem;
  padding: 1rem;
}

.product-card[hidden] {
  display: none;
}

.product-media {
  min-height: 108px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(141, 63, 42, 0.45);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 50%, rgba(201, 24, 36, 0.26), transparent 5rem),
    rgba(8, 9, 9, 0.64);
  color: var(--paper);
  font-weight: 900;
  text-transform: uppercase;
}

.lock-chip {
  width: max-content;
  border: 1px solid rgba(201, 24, 36, 0.5);
  border-radius: 999px;
  background: rgba(201, 24, 36, 0.12);
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 900;
  padding: 0.25rem 0.55rem;
}

.product-card strong {
  color: var(--amber);
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.security-card {
  min-height: 190px;
  display: grid;
  align-content: start;
  gap: 0.65rem;
  padding: 1rem;
}

.toolkit-section {
  border-bottom: 1px solid var(--line);
}

.toolkit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.toolkit-card {
  min-height: 280px;
  display: grid;
  align-content: start;
  gap: 0.75rem;
  border: 1px solid rgba(215, 154, 69, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(141, 20, 30, 0.2), rgba(18, 59, 56, 0.12)),
    rgba(13, 14, 14, 0.84);
  box-shadow: 0 18px 44px var(--shadow);
  padding: 1.25rem;
}

.toolkit-card span {
  width: max-content;
  border: 1px solid rgba(65, 199, 187, 0.34);
  border-radius: var(--radius);
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 900;
  padding: 0.2rem 0.45rem;
  text-transform: uppercase;
}

.toolkit-card h3 {
  margin: 0.4rem 0 0;
  color: var(--paper);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1;
}

.toolkit-card p {
  margin: 0;
  color: var(--muted);
}

.toolkit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

@keyframes guideFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(0, -9px, 0) rotate(-0.6deg);
  }
}

@keyframes guideBreath {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.035);
  }
}

@keyframes bloodDrip {
  0%,
  100% {
    transform: translateY(-8px) scaleY(0.72);
    opacity: 0.35;
  }

  48% {
    transform: translateY(16px) scaleY(1);
    opacity: 0.95;
  }
}

@keyframes mawPulse {
  0%,
  100% {
    box-shadow:
      inset 0 -26px 48px rgba(145, 11, 18, 0.32),
      inset 0 18px 40px rgba(0, 0, 0, 0.82),
      0 22px 55px rgba(0, 0, 0, 0.5);
  }

  50% {
    box-shadow:
      inset 0 -34px 58px rgba(198, 20, 31, 0.44),
      inset 0 18px 40px rgba(0, 0, 0, 0.82),
      0 26px 70px rgba(117, 8, 16, 0.42);
  }
}

@media (max-width: 920px) {
  .nav-shell {
    align-items: flex-start;
    flex-direction: column;
    padding: 0.9rem 0;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
  }

  .hero {
    min-height: 610px;
  }

  .hero::before {
    background-image:
      linear-gradient(90deg, rgba(8, 9, 9, 0.96) 0%, rgba(8, 9, 9, 0.8) 55%, rgba(8, 9, 9, 0.54) 100%),
      linear-gradient(0deg, rgba(11, 13, 14, 0.72), rgba(11, 13, 14, 0.12)),
      url("assets/hero-system-atelier.png");
    background-position: center;
  }

  .signal-strip,
  .intro,
  .section-heading,
  .music-section,
  .diagnostic-section {
    grid-template-columns: 1fr;
  }

  .signal-strip div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .method-grid,
  .principle-grid,
  .vip-zone-grid,
  .vip-grid,
  .shop-grid,
  .security-grid,
  .toolkit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .listener-console {
    grid-template-columns: 1fr;
  }

  .cover-card {
    max-width: 180px;
  }

  .maw-stage {
    min-height: 286px;
  }

  .method-grid article,
  .method-grid article:nth-child(3n),
  .method-grid article:nth-last-child(-n + 3) {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .method-grid article:nth-child(even) {
    border-right: 0;
  }

  .method-grid article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .contact-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .guide-widget {
    width: min(330px, calc(100vw - 1rem));
    right: 0.5rem;
    bottom: 0.5rem;
  }

  .guide-panel {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 0.7rem;
    padding: 0.58rem;
  }

  .guide-dialogue p {
    min-height: 58px;
    font-size: 0.82rem;
  }

  .guide-link {
    min-height: 34px;
    font-size: 0.78rem;
    padding-inline: 0.55rem;
  }

  .guide-toggle {
    top: -0.62rem;
    right: 0.5rem;
  }

  .guide-widget.is-collapsed,
  .guide-widget.is-collapsed .guide-toggle {
    width: 66px;
  }

  .guide-widget.is-collapsed .guide-toggle {
    min-height: 66px;
  }

  .nav-links a {
    padding-inline: 0.55rem;
  }

  .brand-text small {
    max-width: 190px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero {
    min-height: 560px;
  }

  .hero-content {
    padding: 3rem 0;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 16vw, 4.5rem);
  }

  .signal-strip,
  .method-grid,
  .principle-grid,
  .offer-list,
  .option-row,
  .vip-zone-grid,
  .vip-grid,
  .shop-grid,
  .security-grid,
  .toolkit-grid {
    grid-template-columns: 1fr;
  }

  .music-section {
    grid-template-columns: 1fr;
  }

  .sinister-player {
    padding: 0.85rem;
  }

  .maw-stage {
    min-height: 232px;
  }

  .maw-frame {
    min-height: 198px;
  }

  .fang {
    top: 42px;
    border-left-width: 17px;
    border-right-width: 17px;
    border-top-width: 72px;
  }

  .fang-small-left,
  .fang-small-right {
    top: 55px;
    border-left-width: 12px;
    border-right-width: 12px;
    border-top-width: 46px;
  }

  .music-controls {
    align-items: stretch;
    flex-direction: column;
  }

  .console-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .signal-state {
    width: 100%;
    justify-content: center;
  }

  .music-controls .button,
  .cover-trigger,
  .age-actions .button,
  .toolkit-actions .button {
    width: 100%;
  }

  .age-gate {
    align-items: start;
    overflow: auto;
  }

  .age-gate-panel {
    margin: 1rem 0;
  }

  .zone-details {
    grid-template-columns: 1fr;
  }

  .zone-details p,
  .zone-details .button {
    grid-column: 1;
    grid-row: auto;
  }

  .zone-details .button {
    width: 100%;
  }

  .method-grid article,
  .method-grid article:nth-child(even),
  .method-grid article:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .method-grid article:last-child {
    border-bottom: 0;
  }

  .offer-list article,
  .offer-list article:nth-child(odd),
  .offer-list article:nth-child(even) {
    border-right: 0;
    padding-inline: 0;
  }

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

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

  .guide-panel,
  .guide-portrait img,
  .guide-widget.is-collapsed .guide-toggle,
  .blood-drops span,
  .sinister-player.is-playing .maw-frame {
    animation: none !important;
  }
}
