:root {
  --ink: #0c1d30;
  --ink-soft: #16314a;
  --fog: #c4d5e4;
  --brass: #c89f54;
  --brass-soft: #f1d8aa;
  --signal: #9bd2ea;
  --line: rgba(230, 197, 135, 0.45);
  --paper: #f8f2e7;
  --paper-2: #d5e7f5;
  --max: 1120px;
  --card-bg: linear-gradient(155deg, rgba(25, 54, 81, 0.86), rgba(12, 31, 49, 0.87));
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--paper);
  background:
    radial-gradient(1300px 700px at 8% -10%, rgba(189, 221, 245, 0.36), transparent 66%),
    radial-gradient(900px 460px at 95% 0%, rgba(224, 187, 111, 0.22), transparent 62%),
    linear-gradient(160deg, #0b1726 0%, #14324d 44%, #1d4565 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.02) 1px,
    transparent 1px,
    transparent 4px
  );
  mix-blend-mode: soft-light;
  opacity: 0.14;
  z-index: 1;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle 210px at var(--mx, 50%) var(--my, 50%),
    rgba(255, 246, 221, 0.16) 0%,
    rgba(255, 246, 221, 0.09) 34%,
    rgba(2, 8, 13, 0.28) 70%,
    rgba(2, 8, 13, 0.45) 100%
  );
  z-index: 3;
  opacity: 0;
  transition: opacity 180ms ease;
}

body.spotlight-enabled::after {
  opacity: 0.52;
}

body.mode-phantom {
  --paper: #ecf4fb;
  --paper-2: #bcd1e2;
  --line: rgba(140, 194, 226, 0.42);
  --card-bg: linear-gradient(155deg, rgba(13, 31, 47, 0.89), rgba(5, 15, 24, 0.93));
  background:
    radial-gradient(1200px 700px at 15% -12%, rgba(144, 188, 220, 0.22), transparent 66%),
    radial-gradient(900px 420px at 90% 6%, rgba(189, 150, 88, 0.18), transparent 64%),
    linear-gradient(160deg, #070f19 0%, #0d2032 45%, #122f48 100%);
}

.archive-loader {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 20;
  background: radial-gradient(circle at 50% 50%, rgba(20, 40, 58, 0.45), rgba(4, 10, 16, 0.92));
  opacity: 1;
  transition: opacity 500ms ease;
}

.archive-loader.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-panel {
  width: min(92vw, 420px);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(5, 14, 22, 0.78);
  padding: 1rem;
  text-align: center;
}

.loader-title {
  margin: 0;
  font-family: "Cinzel", "Times New Roman", serif;
  letter-spacing: 0.16em;
  font-size: 1.02rem;
}

.loader-sub {
  margin: 0.45rem 0 0.85rem;
  color: #c1d4e3;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: 0.9rem;
}

.loader-track {
  height: 9px;
  background: rgba(112, 151, 176, 0.26);
  border-radius: 999px;
  overflow: hidden;
}

.loader-track span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #7ec2e2, #ecd39f);
  transition: width 200ms linear;
}

.fog-layer,
.grain,
.halo {
  pointer-events: none;
}

.fog-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.35;
  transition: transform 120ms linear;
}

.fog-back {
  background: radial-gradient(circle at 12% 32%, rgba(146, 179, 201, 0.28), transparent 46%);
}

.fog-mid {
  background: radial-gradient(circle at 72% 22%, rgba(191, 162, 99, 0.2), transparent 40%);
}

.fog-front {
  background: radial-gradient(circle at 46% 78%, rgba(126, 168, 194, 0.2), transparent 48%);
}

.grain {
  position: fixed;
  inset: 0;
  opacity: 0.08;
  background-image: radial-gradient(circle at 1px 1px, #fff 1px, transparent 0);
  background-size: 3px 3px;
  z-index: 0;
}

.halo {
  position: fixed;
  width: 36rem;
  height: 36rem;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
  animation: drift 12s ease-in-out infinite alternate;
}

.halo-left {
  left: -14rem;
  top: -12rem;
  background: rgba(140, 177, 206, 0.2);
}

.halo-right {
  right: -12rem;
  bottom: -13rem;
  background: rgba(220, 183, 112, 0.22);
}

.scan-light {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.08;
  background: radial-gradient(
    circle 350px at var(--lx, 50%) var(--ly, 50%),
    rgba(241, 216, 170, 0.15) 0%,
    rgba(241, 216, 170, 0.05) 30%,
    transparent 70%
  );
  mix-blend-mode: screen;
  transition: opacity 300ms ease;
}

#particle-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.6;
}

#audio-visualizer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.15;
  mix-blend-mode: screen;
}

#webgl-background {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.25;
}

.topbar,
main,
footer {
  width: min(calc(100% - 2.4rem), var(--max));
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.1rem;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-family: "Cinzel", "Times New Roman", serif;
  letter-spacing: 0.28em;
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  font-weight: 600;
}

.head-tools {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.mini-btn {
  border: 1px solid rgba(145, 191, 219, 0.45);
  background: rgba(16, 39, 58, 0.56);
  color: #e9f4fc;
  border-radius: 999px;
  padding: 0.38rem 0.76rem;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: 0.75rem;
  cursor: pointer;
}

.mini-btn:hover {
  border-color: var(--brass-soft);
}

.contact-link {
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  text-decoration: none;
  color: var(--paper);
  opacity: 0.86;
}

.contact-link:hover {
  color: var(--brass-soft);
}

.hero {
  padding-top: clamp(4.2rem, 10vh, 8rem);
  padding-bottom: clamp(2.8rem, 7vh, 4.8rem);
  max-width: 800px;
}

.eyebrow {
  margin: 0;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.23em;
  color: var(--fog);
}

h1 {
  margin: 0.6rem 0 0.5rem;
  line-height: 1.02;
  font-size: clamp(2.15rem, 7vw, 5.6rem);
  font-weight: 600;
  text-wrap: balance;
  position: relative;
}

h2.glitch-heading {
  display: block;
  color: var(--brass-soft);
  font-size: clamp(1.22rem, 3.3vw, 2.1rem);
  margin-top: 0.6rem;
  font-weight: 500;
  position: relative;
}

h1.glitch-active::before,
h1.glitch-active::after,
.glitch-heading::before,
.glitch-heading::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

h1.glitch-active::before,
.glitch-heading::before {
  color: #89d0f4;
  animation: glitch-skew 1.5s infinite linear alternate-reverse;
  clip-path: polygon( glitch-corners );
}

h1.glitch-active::after,
.glitch-heading::after {
  color: #e9c889;
  animation: glitch-skew 1.2s infinite linear alternate-reverse;
  clip-path: polygon( glitch-corners );
}

@keyframes glitch-skew {
  0% {
    transform: skew(0.5deg);
  }
  5% {
    transform: skew(-0.5deg);
  }
  10% {
    transform: skew(0.3deg);
  }
  15% {
    transform: skew(0);
  }
  20% {
    transform: skew(0);
  }
}

@keyframes glitch-corners {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  10% {
    clip-path: polygon(0 0, 100% 0, 100% 10%, 0 0);
  }
  20% {
    clip-path: polygon(0 10%, 100% 0, 100% 20%, 0 30%);
  }
  30% {
    clip-path: polygon(0 20%, 100% 10%, 100% 30%, 0 40%);
  }
  40% {
    clip-path: polygon(0 0, 100% 20%, 100% 0, 0 10%);
  }
  50% {
    clip-path: polygon(0 10%, 100% 0, 100% 40%, 0 50%);
  }
  60% {
    clip-path: polygon(0 40%, 100% 10%, 100% 10%, 0 0);
  }
  70% {
    clip-path: polygon(0 10%, 100% 30%, 100% 20%, 0 60%);
  }
  80% {
    clip-path: polygon(0 50%, 100% 20%, 100% 40%, 0 10%);
  }
  90% {
    clip-path: polygon(0 30%, 100% 40%, 100% 30%, 0 80%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
}

h1 span {
  display: block;
  color: var(--brass-soft);
  font-size: clamp(1.22rem, 3.3vw, 2.1rem);
  margin-top: 0.6rem;
  font-weight: 500;
}

.lead {
  margin: 0;
  line-height: 1.6;
  font-size: clamp(1.06rem, 2.1vw, 1.34rem);
  color: #e8f1f9;
}

.dedication {
  margin: 0.95rem 0 2rem;
  color: var(--signal);
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.84rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.68rem 1.28rem;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform 240ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  color: #112234;
  background: linear-gradient(120deg, #f5e1b5, #b99143);
  box-shadow: 0 10px 30px rgba(199, 164, 94, 0.22);
}

.btn-ghost {
  border: 1px solid var(--line);
  color: #f3f8fe;
  background: rgba(16, 40, 62, 0.5);
}

.grid,
.cipher-grid,
.clue-grid {
  display: grid;
  gap: 1rem;
}

.grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 1.2rem;
}

.card,
.cipher,
.timeline,
.clues,
.signal-map,
.terminal,
.case-zero {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card-bg);
  backdrop-filter: blur(3px);
}

.card {
  position: relative;
  overflow: hidden;
  padding: 1.4rem 1.15rem;
}

.card::after {
  content: "";
  position: absolute;
  inset: auto -12% -30% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(218, 188, 127, 0.24), transparent 66%);
}

.card h2,
.cipher-grid h4,
.clock-panel h4 {
  margin: 0 0 0.58rem;
  font-family: "Cinzel", "Times New Roman", serif;
  letter-spacing: 0.04em;
}

.card p,
.cipher-grid p,
.clue-face p,
.clock-panel p {
  margin: 0;
  line-height: 1.55;
  color: #d7e6f1;
}

.cipher {
  margin-bottom: 2rem;
  padding: 1rem;
}

.cipher-title {
  margin: 0 0 0.85rem;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: #d3e2ee;
}

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

.cipher-grid div {
  border: 1px solid rgba(194, 161, 97, 0.32);
  border-radius: 12px;
  padding: 0.8rem;
  background: rgba(11, 28, 44, 0.55);
}

.clues {
  padding: 1rem;
  margin-bottom: 2rem;
}

.clues-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.clues-head h3,
.case-clock h3,
.signal-map h3,
.terminal h3,
.case-zero h3 {
  margin: 0;
  font-family: "Cinzel", "Times New Roman", serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1.16rem;
}

.filters {
  display: flex;
  gap: 0.5rem;
}

.filter {
  border: 1px solid rgba(230, 197, 135, 0.42);
  background: rgba(14, 35, 52, 0.58);
  color: #e6f1f8;
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  cursor: pointer;
}

.filter.is-active {
  border-color: #f0cd91;
  background: rgba(182, 132, 45, 0.26);
}

.clue-board-wrap {
  position: relative;
  margin-top: 0.9rem;
}

.string-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.string-layer line {
  stroke: rgba(230, 105, 90, 0.62);
  stroke-width: 1.6;
  stroke-dasharray: 6 5;
  filter: drop-shadow(0 0 4px rgba(255, 100, 82, 0.34));
}

.clue-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  position: relative;
  z-index: 2;
}

.clue {
  perspective: 1000px;
  min-height: 132px;
  transition: opacity 220ms ease, transform 220ms ease;
}

.clue.is-hidden {
  opacity: 0.32;
  transform: scale(0.98);
}

.clue-inner {
  position: relative;
  width: 100%;
  min-height: 132px;
  transform-style: preserve-3d;
  transition: transform 460ms ease;
  cursor: pointer;
}

.clue.is-flipped .clue-inner {
  transform: rotateY(180deg);
}

.clue-face {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(158, 196, 219, 0.24);
  border-radius: 12px;
  background: rgba(13, 31, 48, 0.69);
  padding: 0.82rem;
  backface-visibility: hidden;
}

.clue-back {
  transform: rotateY(180deg);
  background: rgba(22, 29, 40, 0.83);
}

.clue-tag {
  display: inline-block;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  color: var(--signal);
}

.case-clock {
  padding: 1rem;
  margin-bottom: 2rem;
}

.clock-wrap {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 1rem;
  align-items: center;
}

.clock-dial {
  width: 230px;
  height: 230px;
  border: 1px solid rgba(230, 197, 135, 0.42);
  border-radius: 50%;
  position: relative;
  background: radial-gradient(circle at 50% 50%, rgba(136, 182, 208, 0.16), rgba(8, 20, 31, 0.55));
}

.clock-hand {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  height: 78px;
  background: linear-gradient(to bottom, rgba(241, 216, 170, 0.98), rgba(141, 187, 211, 0.95));
  transform-origin: bottom center;
  transform: translate(-50%, -100%) rotate(0deg);
  transition: transform 460ms ease;
}

.clock-node {
  position: absolute;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(230, 197, 135, 0.58);
  border-radius: 50%;
  background: rgba(10, 27, 42, 0.86);
  color: #e8f2fa;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  cursor: pointer;
}

.clock-node[data-step="0"] {
  left: calc(50% - 22px);
  top: 12px;
}

.clock-node[data-step="1"] {
  right: 16px;
  bottom: 34px;
}

.clock-node[data-step="2"] {
  left: 16px;
  bottom: 34px;
}

.clock-node.is-current {
  border-color: #f1d8aa;
  box-shadow: 0 0 0 4px rgba(241, 216, 170, 0.14);
}

.clock-panels {
  display: grid;
  gap: 0.6rem;
}

.clock-panel {
  border: 1px solid rgba(150, 195, 220, 0.25);
  border-radius: 12px;
  background: rgba(12, 29, 45, 0.65);
  padding: 0.8rem;
  opacity: 0.5;
  transition: opacity 220ms ease, border-color 220ms ease;
}

.clock-panel.is-current {
  opacity: 1;
  border-color: rgba(241, 216, 170, 0.5);
}

.signal-map {
  padding: 1rem;
  margin-bottom: 2rem;
}

.signal-map > p {
  margin: 0.4rem 0 0.9rem;
  color: var(--paper-2);
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
}

.map-grid {
  position: relative;
  border: 1px solid rgba(150, 195, 220, 0.28);
  border-radius: 14px;
  min-height: 260px;
  background: linear-gradient(150deg, rgba(7, 22, 35, 0.7), rgba(20, 43, 63, 0.72));
}

.map-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image:
    linear-gradient(rgba(141, 187, 211, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(141, 187, 211, 0.12) 1px, transparent 1px);
  background-size: 28px 28px;
}

.map-links {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.map-links path {
  fill: none;
  stroke: rgba(120, 165, 196, 0.7);
  stroke-width: 0.8;
}

.node {
  position: absolute;
  z-index: 2;
  width: 16px;
  height: 16px;
  border: none;
  border-radius: 50%;
  background: #f1d8aa;
  box-shadow: 0 0 0 0 rgba(241, 216, 170, 0.5);
  animation: nodePulse 2.2s ease-in-out infinite;
  cursor: pointer;
}

.node[data-node="west"] {
  left: 12%;
  top: 58%;
}

.node[data-node="north"] {
  left: 34%;
  top: 24%;
}

.node[data-node="core"] {
  left: 52%;
  top: 46%;
}

.node[data-node="east"] {
  left: 76%;
  top: 28%;
}

.node[data-node="dock"] {
  left: 86%;
  top: 74%;
}

.node[data-node="south"] {
  left: 58%;
  top: 84%;
}

.node.is-hot {
  background: #89d0f4;
}

.terminal {
  padding: 1rem;
  margin-bottom: 2rem;
}

.terminal > p {
  margin: 0.45rem 0 0.8rem;
  color: var(--paper-2);
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
}

.terminal-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.6rem;
}

.terminal-form input {
  background: rgba(9, 23, 36, 0.82);
  border: 1px solid rgba(189, 160, 100, 0.34);
  border-radius: 10px;
  color: #e8f3fc;
  padding: 0.68rem 0.74rem;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
}

.terminal-form button {
  border: 1px solid rgba(207, 169, 96, 0.55);
  border-radius: 10px;
  background: linear-gradient(120deg, #d0a862, #9e7637);
  color: #0f2130;
  font-weight: 600;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  padding: 0 0.9rem;
  cursor: pointer;
}

.terminal-meter {
  margin-top: 0.72rem;
  height: 7px;
  background: rgba(125, 165, 190, 0.28);
  border-radius: 999px;
  overflow: hidden;
}

.terminal-meter span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #77bcde, #e9c889);
}

.terminal-log {
  margin-top: 0.72rem;
  border: 1px solid rgba(141, 187, 211, 0.22);
  border-radius: 10px;
  background: rgba(8, 22, 34, 0.72);
  padding: 0.65rem;
  min-height: 132px;
  max-height: 240px;
  overflow-y: auto;
}

.terminal-log p {
  margin: 0.38rem 0;
  color: #cfdfeb;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: 0.9rem;
}

.terminal-log span {
  color: #e9c889;
}

.case-zero {
  padding: 1rem;
  margin-bottom: 2.4rem;
  border-color: rgba(232, 121, 108, 0.55);
  background: linear-gradient(150deg, rgba(56, 25, 33, 0.72), rgba(27, 17, 24, 0.85));
}

.case-zero p {
  margin: 0.45rem 0;
  color: #f1d7cd;
}

.case-key {
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

footer {
  border-top: 1px solid var(--line);
  padding: 1rem 0 1.4rem;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

footer p {
  margin: 0;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
}

footer a {
  color: var(--brass-soft);
  text-decoration: none;
}

.tag {
  color: #b4c9da;
  letter-spacing: 0.06em;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 680ms ease, transform 680ms ease;
}

.reveal.on {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(18px, -12px, 0) scale(1.08);
  }
}

@keyframes nodePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(241, 216, 170, 0.5);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(241, 216, 170, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(241, 216, 170, 0);
  }
}

@media (max-width: 980px) {
  .grid,
  .cipher-grid,
  .clue-grid,
  .clock-wrap {
    grid-template-columns: 1fr;
  }

  .clock-dial {
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
  }

  .hero {
    padding-top: 3.2rem;
  }

  .btn,
  .terminal-form button {
    width: 100%;
  }

  .terminal-form {
    grid-template-columns: 1fr;
  }

  .head-tools {
    width: 100%;
  }

  .mini-btn,
  .contact-link {
    width: 100%;
    text-align: center;
  }
}

@media (hover: none), (pointer: coarse) {
  body::after {
    display: none;
  }
}
