* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bl-void);
  color: var(--bl-ivory);
  font-family: var(--bl-font-ui);
}

button,
input {
  font: inherit;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 52% 6%, rgb(169 42 47 / 22%), transparent 30rem),
    radial-gradient(circle at 10% 45%, rgb(184 137 71 / 12%), transparent 24rem),
    linear-gradient(180deg, var(--bl-void), #130d0c 48%, var(--bl-void));
}

.page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(115deg, transparent 0 35%, rgb(215 179 106 / 4%) 48%, transparent 62% 100%),
    linear-gradient(180deg, transparent, rgb(169 42 47 / 5%) 42%, transparent 78%);
  opacity: .78;
  pointer-events: none;
  transform: translate3d(-8%, 0, 0);
  animation: pageVeil 18s ease-in-out infinite;
}

.hero-section,
.section {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 24px clamp(18px, 5vw, 72px);
}

.hero-section {
  min-height: 88svh;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: relative;
  z-index: 2;
  width: min(1160px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 6px 0;
}

.brand-link,
.header-link {
  color: var(--bl-ivory);
  text-decoration: none;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

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

.brand-name {
  font-family: var(--bl-font-display);
  font-size: 1.25rem;
  letter-spacing: .02em;
}

.header-link {
  border: 1px solid rgb(184 137 71 / 30%);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--bl-muted);
  font-size: .9rem;
}

.hero-grid {
  width: min(1160px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .9fr);
  align-items: center;
  gap: clamp(28px, 7vw, 92px);
  padding: 42px 0 34px;
  min-width: 0;
}

.hero-copy {
  max-width: 680px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--bl-gold-soft);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--bl-font-display);
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(2.55rem, 5.3vw, 4.9rem);
  line-height: .98;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 4.3rem);
  line-height: .98;
  overflow-wrap: break-word;
}

h3 {
  margin-bottom: 12px;
  color: var(--bl-ivory);
  font-family: var(--bl-font-display);
  font-size: 1.45rem;
  font-weight: 500;
}

.hero-subtitle {
  max-width: 620px;
  margin-bottom: 24px;
  color: rgb(243 232 210 / 78%);
  font-size: clamp(1.04rem, 2vw, 1.25rem);
  line-height: 1.55;
}

.ritual-form {
  width: min(100%, 620px);
  max-width: 100%;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

.field-control {
  display: grid;
  gap: 9px;
  min-width: 0;
  border: 1px solid rgb(184 137 71 / 34%);
  border-radius: 18px;
  background: linear-gradient(180deg, rgb(23 16 15 / 88%), rgb(14 11 10 / 92%));
  padding: 14px 14px 12px;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.field-control:focus-within {
  border-color: rgb(215 179 106 / 70%);
  box-shadow: 0 0 34px rgb(169 42 47 / 18%), inset 0 0 0 1px rgb(215 179 106 / 12%);
  transform: translateY(-1px);
}

.field-control span {
  color: var(--bl-muted);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.field-control input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--bl-ivory);
  font-size: 1.18rem;
}

.field-control input::placeholder {
  color: rgb(185 165 139 / 56%);
}

.primary-cta {
  display: inline-flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--bl-carmine), var(--bl-wine));
  color: var(--bl-ivory);
  cursor: pointer;
  font-weight: 800;
  box-shadow: 0 18px 52px rgb(169 42 47 / 24%);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.primary-cta:hover {
  box-shadow: 0 22px 64px rgb(169 42 47 / 31%);
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.primary-cta svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform .18s ease;
}

.primary-cta:hover svg {
  transform: translateX(3px);
}

.privacy-line {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--bl-muted);
  font-size: .95rem;
}

.privacy-line.is-error {
  color: #ffb4aa;
}

.privacy-line.is-success {
  color: var(--bl-gold-soft);
}

.field-visual {
  display: grid;
  place-items: center;
}

.field-card {
  position: relative;
  width: min(100%, 380px);
  aspect-ratio: 1 / 1.08;
  border: 1px solid rgb(184 137 71 / 32%);
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 88%, rgb(169 42 47 / 30%), transparent 35%),
    linear-gradient(180deg, rgb(69 19 23 / 34%), rgb(14 11 10 / 96%));
  box-shadow: 0 30px 100px rgb(0 0 0 / 38%);
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.field-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgb(243 232 210 / 4%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(243 232 210 / 4%) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 50% 48%, black, transparent 72%);
  animation: fieldGridDrift 16s linear infinite;
}

.field-card::after {
  content: "";
  position: absolute;
  inset: -40% -70%;
  background: linear-gradient(115deg, transparent 34%, rgb(215 179 106 / 10%) 48%, transparent 62%);
  opacity: .42;
  transform: translateX(-34%) rotate(8deg);
  animation: fieldScan 7.5s ease-in-out infinite;
  pointer-events: none;
}

.field-card.is-active {
  border-color: rgb(215 179 106 / 54%);
  box-shadow: 0 34px 112px rgb(169 42 47 / 24%), 0 0 54px rgb(215 179 106 / 8%);
  transform: translateY(-2px);
}

.field-card.is-complete {
  border-color: rgb(215 179 106 / 74%);
  box-shadow: 0 38px 124px rgb(169 42 47 / 28%), 0 0 74px rgb(215 179 106 / 16%);
}

.field-orbit,
.field-orbit::before {
  position: absolute;
  border: 1px solid rgb(184 137 71 / 50%);
  border-radius: 999px;
  content: "";
}

.field-orbit {
  inset: 25% 13%;
  border-left-color: transparent;
  border-right-color: transparent;
  animation: fieldOrbitDrift 18s linear infinite;
}

.field-orbit::before {
  inset: 18% 18%;
  border-color: rgb(184 137 71 / 20%);
  animation: fieldOrbitDrift 13s linear infinite reverse;
}

.profile-node {
  position: absolute;
  top: 45%;
  z-index: 2;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: rgb(14 11 10 / 86%);
  color: var(--bl-ivory);
  font-family: Georgia, serif;
  font-size: 2rem;
  transition: box-shadow .24s ease, transform .24s ease, border-color .24s ease;
}

.node-left {
  left: 13%;
  border: 2px solid var(--bl-gold-soft);
  box-shadow: 0 0 34px rgb(215 179 106 / 20%);
  animation: nodePulse 4.8s ease-in-out infinite;
}

.node-right {
  right: 13%;
  border: 2px solid var(--bl-carmine);
  box-shadow: 0 0 34px rgb(169 42 47 / 24%);
  animation: nodePulse 4.8s ease-in-out 2.4s infinite;
}

.field-card.is-active .profile-node,
.field-card.is-complete .profile-node {
  transform: scale(1.04);
}

.field-card.is-complete .node-left {
  box-shadow: 0 0 46px rgb(215 179 106 / 34%);
}

.field-card.is-complete .node-right {
  box-shadow: 0 0 46px rgb(169 42 47 / 42%);
}

.signal-line {
  position: absolute;
  top: calc(45% + 29px);
  left: 25%;
  right: 25%;
  height: 1px;
  background: linear-gradient(90deg, var(--bl-gold-soft), var(--bl-carmine));
  opacity: .82;
  overflow: visible;
}

.signal-line::after {
  content: "";
  position: absolute;
  inset: -2px 100% -2px -12%;
  background: linear-gradient(90deg, transparent, rgb(243 232 210 / 84%), transparent);
  filter: blur(.4px);
  animation: signalSweep 3.6s ease-in-out infinite;
}

.signal-line span {
  position: absolute;
  inset: -18px 0;
  background: repeating-radial-gradient(ellipse at center, rgb(215 179 106 / 18%) 0 1px, transparent 2px 8px);
  filter: blur(.2px);
  opacity: .7;
  animation: signalNoise 2.8s steps(2, end) infinite;
}

.signal-core {
  position: absolute;
  top: calc(45% + 20px);
  left: calc(50% - 9px);
  z-index: 3;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bl-gold-soft);
  box-shadow: 0 0 28px rgb(215 179 106 / 65%);
  animation: coreBreath 2.9s ease-in-out infinite;
}

.field-card.is-complete .signal-core {
  background: var(--bl-ivory);
  box-shadow: 0 0 36px rgb(243 232 210 / 70%), 0 0 72px rgb(215 179 106 / 32%);
}

.field-caption {
  position: absolute;
  right: 28px;
  bottom: 28px;
  color: rgb(243 232 210 / 52%);
  font-size: .75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.truth-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  border-block: 1px solid rgb(184 137 71 / 24%);
}

.truth-item {
  padding: 26px clamp(14px, 3vw, 34px);
}

.truth-item + .truth-item {
  border-left: 1px solid rgb(184 137 71 / 20%);
}

.truth-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--bl-gold-soft);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.truth-item strong {
  display: block;
  max-width: 280px;
  color: rgb(243 232 210 / 78%);
  font-family: var(--bl-font-display);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.22;
}

.section {
  width: min(1160px, 100%);
  margin: 0 auto;
  padding-top: clamp(70px, 10vw, 132px);
  padding-bottom: clamp(70px, 10vw, 132px);
}

.split-section,
.safety-section,
.final-cta-section {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: clamp(28px, 7vw, 80px);
  align-items: start;
}

.reading-preview,
.safety-list {
  position: relative;
  border: 1px solid rgb(184 137 71 / 28%);
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(180deg, rgb(23 16 15 / 84%), rgb(14 11 10 / 92%));
  padding: clamp(22px, 4vw, 34px);
}

.reading-preview::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 25px;
  background:
    radial-gradient(circle at 50% 0%, rgb(215 179 106 / 8%), transparent 36%),
    repeating-linear-gradient(180deg, transparent 0 18px, rgb(243 232 210 / 3%) 19px, transparent 20px);
  opacity: .18;
  pointer-events: none;
}

.reading-preview > * {
  position: relative;
  z-index: 1;
}

.preview-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
  border-bottom: 1px solid rgb(184 137 71 / 20%);
  padding-bottom: 20px;
}

.preview-line span {
  color: var(--bl-muted);
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.preview-line strong {
  color: var(--bl-gold-soft);
  text-align: right;
}

.reading-preview p,
.safety-list p,
.archetype-card p,
.proof-card p,
.faq-list p,
.site-footer p {
  color: rgb(243 232 210 / 74%);
  line-height: 1.65;
  overflow-wrap: break-word;
}

.muted {
  color: var(--bl-muted) !important;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.archetype-grid,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.archetype-card,
.proof-card {
  position: relative;
  isolation: isolate;
  border: 1px solid rgb(184 137 71 / 24%);
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 0%, rgb(215 179 106 / 7%), transparent 30%),
    rgb(14 11 10 / 58%);
  padding: 24px;
  backface-visibility: hidden;
  contain: paint;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.archetype-card:hover,
.proof-card:hover,
details:hover {
  border-color: rgb(215 179 106 / 42%);
  background:
    radial-gradient(circle at 18% 0%, rgb(215 179 106 / 10%), transparent 34%),
    rgb(23 16 15 / 72%);
  box-shadow: 0 18px 58px rgb(0 0 0 / 22%);
  transform: translateY(-2px);
}

.archetype-card span,
.proof-card span {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--bl-gold-soft);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

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

.proof-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 3px solid rgb(215 179 106 / 46%);
  background: rgb(14 11 10 / 62%);
}

.proof-card p {
  color: var(--bl-ivory);
  font-family: var(--bl-font-display);
  font-size: 1.35rem;
  line-height: 1.28;
}

.safety-list {
  display: grid;
  gap: 22px;
}

.safety-list strong {
  color: var(--bl-gold-soft);
}

.final-cta-section {
  align-items: center;
  border-block: 1px solid rgb(184 137 71 / 22%);
  padding-top: clamp(52px, 8vw, 92px);
  padding-bottom: clamp(52px, 8vw, 92px);
}

.final-cta-copy {
  max-width: 760px;
}

.secondary-cta {
  display: inline-flex;
  min-height: 58px;
  width: min(100%, 360px);
  align-items: center;
  justify-content: center;
  justify-self: end;
  border: 1px solid rgb(215 179 106 / 38%);
  border-radius: 18px;
  background: rgb(169 42 47 / 22%);
  color: var(--bl-ivory);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 18px 52px rgb(169 42 47 / 18%);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.secondary-cta:hover {
  border-color: rgb(215 179 106 / 64%);
  background: rgb(169 42 47 / 32%);
  transform: translateY(-1px);
}

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

details {
  border: 1px solid rgb(184 137 71 / 22%);
  border-radius: 16px;
  background: rgb(14 11 10 / 52%);
  padding: 18px 20px;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}

summary {
  cursor: pointer;
  color: var(--bl-ivory);
  font-weight: 800;
}

details p {
  margin: 14px 0 0;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .62s ease, transform .62s ease;
  will-change: opacity, transform;
}

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

.archetype-card.reveal-on-scroll,
.proof-card.reveal-on-scroll {
  transform: translateY(14px) scale(.985);
}

.archetype-card.reveal-on-scroll.is-visible,
.proof-card.reveal-on-scroll.is-visible {
  transform: translateY(0) scale(1);
}

.has-revealed {
  will-change: auto;
}

.truth-item:nth-child(2).reveal-on-scroll,
.archetype-card:nth-child(2).reveal-on-scroll,
.proof-card:nth-child(2).reveal-on-scroll {
  transition-delay: .08s;
}

.truth-item:nth-child(3).reveal-on-scroll,
.archetype-card:nth-child(3).reveal-on-scroll,
.proof-card:nth-child(3).reveal-on-scroll {
  transition-delay: .16s;
}

.archetype-card:nth-child(4).reveal-on-scroll {
  transition-delay: .24s;
}

.site-footer {
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
  border-top: 1px solid rgb(184 137 71 / 22%);
  padding: 36px 0 52px;
  text-align: center;
}

.site-footer img {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.site-footer p {
  margin: 0 auto;
  max-width: 700px;
  color: var(--bl-muted);
  font-size: .92rem;
}

@media (max-width: 900px) {
  .hero-section {
    min-height: auto;
  }

  .hero-grid,
  .split-section,
  .safety-section,
  .final-cta-section {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 48px;
  }

  .field-visual {
    order: -1;
  }

  .field-card {
    width: min(100%, 320px);
  }

  .archetype-grid,
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hero-section,
  .section {
    width: 100%;
    max-width: 100%;
    padding-inline: 20px;
  }

  .site-header {
    padding-top: 2px;
  }

  .header-link {
    display: none;
  }

  .hero-grid {
    gap: 24px;
    padding: 26px 0 38px;
    width: 100%;
    max-width: 100%;
  }

  .hero-copy,
  .ritual-form,
  .input-row,
  .field-control,
  .primary-cta {
    width: 100%;
    max-width: 342px;
  }

  .field-visual {
    display: grid;
    order: 2;
    width: 100%;
    max-width: 342px;
    margin-top: -8px;
    place-items: stretch;
  }

  .field-card {
    width: 100%;
    aspect-ratio: 2.72 / 1;
    border-radius: 20px;
    box-shadow: 0 20px 64px rgb(0 0 0 / 28%);
  }

  .field-orbit {
    inset: 18% 16%;
  }

  .field-orbit::before {
    inset: 22% 20%;
  }

  .profile-node {
    top: 38%;
    width: 42px;
    height: 42px;
    font-size: 1.48rem;
  }

  .node-left {
    left: 10%;
  }

  .node-right {
    right: 10%;
  }

  .signal-line {
    top: calc(38% + 21px);
    left: 21%;
    right: 21%;
  }

  .signal-core {
    top: calc(38% + 14px);
    left: calc(50% - 7px);
    width: 14px;
    height: 14px;
  }

  .field-caption {
    right: 18px;
    bottom: 14px;
    font-size: .58rem;
    letter-spacing: .13em;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(1.92rem, 8.55vw, 2.2rem);
    line-height: 1.08;
  }

  h2 {
    max-width: 100%;
    font-size: clamp(1.22rem, 5.25vw, 1.46rem);
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .hero-subtitle {
    font-size: .95rem;
    line-height: 1.48;
    margin-bottom: 20px;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: .72rem;
    letter-spacing: .14em;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .brand-name {
    font-size: 1.08rem;
  }

  .field-control {
    border-radius: 16px;
    padding: 12px 14px 10px;
  }

  .field-control input {
    font-size: 1.08rem;
  }

  .primary-cta {
    min-height: 56px;
    border-radius: 16px;
  }

  .privacy-line {
    font-size: .9rem;
  }

  .input-row,
  .truth-band,
  .archetype-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .archetype-grid,
  .proof-grid,
  .faq-list,
  .safety-list,
  .section-heading,
  .reading-preview {
    max-width: 100%;
    min-width: 0;
  }

  .section > *,
  .split-section > *,
  .safety-section > *,
  .final-cta-section > *,
  .archetype-grid > *,
  .proof-grid > * {
    max-width: calc(100vw - 40px);
    min-width: 0;
  }

  .split-section,
  .safety-section,
  .final-cta-section,
  .archetype-grid,
  .proof-grid {
    justify-items: stretch;
    overflow-x: hidden;
  }

  .truth-band {
    width: calc(100% - 48px);
  }

  .truth-item + .truth-item {
    border-left: 0;
    border-top: 1px solid rgb(184 137 71 / 20%);
  }

  .preview-line {
    align-items: flex-start;
    flex-direction: column;
  }

  .preview-line strong {
    text-align: left;
  }

  .reading-preview,
  .safety-list,
  .archetype-card,
  .proof-card,
  details {
    width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .secondary-cta {
    justify-self: stretch;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal-on-scroll {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

@keyframes fieldGridDrift {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 54px 54px, 54px 54px;
  }
}

@keyframes pageVeil {
  0%,
  100% {
    opacity: .46;
    transform: translate3d(-8%, 0, 0);
  }
  50% {
    opacity: .86;
    transform: translate3d(8%, -1%, 0);
  }
}

@keyframes fieldScan {
  0%,
  100% {
    opacity: .16;
    transform: translateX(-38%) rotate(8deg);
  }
  48% {
    opacity: .52;
    transform: translateX(38%) rotate(8deg);
  }
}

@keyframes fieldOrbitDrift {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes nodePulse {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.18);
  }
}

@keyframes signalSweep {
  0%,
  20% {
    inset-inline: -14% 100%;
    opacity: 0;
  }
  52% {
    opacity: 1;
  }
  80%,
  100% {
    inset-inline: 100% -14%;
    opacity: 0;
  }
}

@keyframes signalNoise {
  0%,
  100% {
    opacity: .54;
  }
  50% {
    opacity: .86;
  }
}

@keyframes coreBreath {
  0%,
  100% {
    transform: scale(.92);
    opacity: .82;
  }
  50% {
    transform: scale(1.18);
    opacity: 1;
  }
}
