:root {
  --bg: #050506;
  --bg-lift: #0e0e11;
  --surface: #17171c;
  --ink: #f6f6f7;
  --muted: #9595a0;
  --accent: #c9a66b;
  --accent-bright: #e2c48a;
  --accent-dim: #8f7348;
  --on-accent: #100e0a;
  --live: #ff2d55;
  --line: rgba(246, 246, 247, 0.1);
  --font-display: "Sora", sans-serif;
  --font-body: "Manrope", sans-serif;
  --pad-x: clamp(1.25rem, 5vw, 5rem);
  --scene-max: 68rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  overflow-x: hidden;
}

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

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

/* ---- Top ---- */

.top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--pad-x);
  background: linear-gradient(
    to bottom,
    rgba(5, 5, 6, 0.9),
    rgba(5, 5, 6, 0)
  );
  pointer-events: none;
}

.top a {
  pointer-events: auto;
}

.top__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.top__brand img {
  width: 1.7rem;
  height: 1.7rem;
  object-fit: cover;
  border-radius: 0.35rem;
}

.top__brand em {
  font-style: normal;
  color: var(--accent);
  font-weight: 500;
}

.top__link {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 160ms ease;
}

.top__link:hover {
  color: var(--accent-bright);
}

/* ---- Hero ---- */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(5rem, 10vw, 6.5rem) var(--pad-x) clamp(3rem, 8vw, 5rem);
  overflow: hidden;
}

.hero__atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  inset: -10% -20% auto;
  height: 70%;
  background: radial-gradient(
    ellipse 55% 60% at 50% 35%,
    rgba(201, 166, 107, 0.14),
    rgba(14, 14, 17, 0.2) 42%,
    transparent 70%
  );
  animation: glow-breathe 9s ease-in-out infinite;
}

.hero__map {
  position: absolute;
  inset: -8% -12%;
  display: grid;
  place-items: center;
  opacity: 0.34;
  animation: map-drift 42s linear infinite alternate;
}

.hero__map-img {
  width: min(148vw, 1680px);
  height: auto;
  filter: brightness(0) saturate(100%) invert(78%) sepia(28%) saturate(520%)
    hue-rotate(4deg) brightness(0.95);
  mix-blend-mode: screen;
}

.hero__vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 50% 48% at 50% 46%,
      rgba(5, 5, 6, 0.2) 0%,
      rgba(5, 5, 6, 0.55) 48%,
      rgba(5, 5, 6, 0.92) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(5, 5, 6, 0.55) 0%,
      transparent 22%,
      transparent 70%,
      rgba(5, 5, 6, 0.96) 100%
    );
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

.hero__stage {
  position: relative;
  z-index: 1;
  width: min(100%, 40rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__logo {
  width: min(58vw, 15.5rem);
  height: auto;
  margin-bottom: clamp(1.6rem, 3.5vw, 2.4rem);
  animation: logo-in 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__headline {
  margin: 0;
  max-width: 20ch;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5.5vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  animation: rise-in 1s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
}

.hero__tagline {
  margin: 0.65rem 0 0;
  max-width: 28ch;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.05rem, 2.6vw, 1.35rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--accent-bright);
  animation: rise-in 1s cubic-bezier(0.22, 1, 0.36, 1) 0.24s both;
}

.hero__support {
  margin: 0.95rem 0 0;
  max-width: 38rem;
  font-size: clamp(0.98rem, 2.1vw, 1.1rem);
  line-height: 1.55;
  color: var(--muted);
  animation: rise-in 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

.top__nav {
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
}

.hero__support strong {
  color: var(--ink);
  font-weight: 600;
}

.scene__copy .scene__note a {
  color: var(--accent-bright);
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.scene__copy strong {
  color: var(--ink);
  font-weight: 600;
}

/* About — same 2-column scene layout as other features */
.scene--about {
  align-items: stretch;
}

.scene--about .scene__visual {
  min-height: 100%;
  height: 100%;
}

.about-card {
  width: min(100%, 22rem);
  height: 100%;
  margin: 0 auto;
  padding: 2rem 1.6rem 1.75rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(246, 246, 247, 0.12);
  background:
    radial-gradient(
      ellipse 80% 60% at 50% 0%,
      rgba(201, 166, 107, 0.16),
      transparent 70%
    ),
    linear-gradient(180deg, #141418 0%, #0a0a0c 100%);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.about-card__logo {
  width: 7.5rem;
  height: auto;
  margin: 0 auto 1.1rem;
}

.about-card__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.about-card__meta {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.about-card__chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin: 1.25rem 0 0;
  padding: 0;
}

.about-card__chips li {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 166, 107, 0.28);
  background: rgba(201, 166, 107, 0.08);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--accent-bright);
}

.scene--about .scene__copy h2 {
  max-width: none;
}

.scene--about .scene__copy p:not(.eyebrow) {
  max-width: 36rem;
}

.scene--about .scene__copy a {
  color: var(--accent-bright);
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

/* Dedicated OAuth / app-identity page */
.app-page {
  padding-top: 6.5rem;
  text-align: left;
}

.app-page__logo {
  width: 5.5rem;
  height: auto;
  margin: 0 0 1.25rem;
}

.app-page h1 {
  margin: 0;
}

.hero__cta {
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  animation: rise-in 1s cubic-bezier(0.22, 1, 0.36, 1) 0.42s both;
}

.hero__price {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.45;
  color: var(--muted);
  text-transform: none;
}

.hero__price strong {
  color: var(--accent-bright);
  font-weight: 600;
}

.close__cta .hero__price {
  margin-top: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.85rem 1.55rem;
  border-radius: 0.55rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

.btn--primary {
  background: var(--accent);
  color: var(--on-accent);
}

.btn--primary:hover {
  background: var(--accent-bright);
  transform: translateY(-1px);
}

.btn--primary:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 3px;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ---- Feature scenes ---- */

.scene {
  width: min(100%, var(--scene-max));
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 7rem) var(--pad-x);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.scene + .scene {
  border-top: 1px solid rgba(246, 246, 247, 0.1);
}

.scene:nth-of-type(odd) {
  direction: rtl;
}

.scene:nth-of-type(odd) > * {
  direction: ltr;
}

.scene__copy h2 {
  margin: 0;
  max-width: 14ch;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.6vw, 2.55rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.scene__copy p:not(.eyebrow) {
  margin: 1rem 0 0;
  max-width: 30rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--muted);
}

.scene__note {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 1.35rem 0 0;
  max-width: 30rem;
  padding: 0.85rem 0.95rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(201, 166, 107, 0.22);
  border-left: 3px solid var(--accent-dim);
  background: rgba(201, 166, 107, 0.06);
}

.scene__note-mark {
  flex: 0 0 auto;
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  font-style: italic;
  color: var(--on-accent);
  background: var(--accent-dim);
  line-height: 1;
}

.scene__copy .scene__note p {
  margin: 0;
  max-width: none;
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(149, 149, 160, 0.95);
}

.scene__copy em.accent {
  font-style: normal;
  color: var(--accent);
  font-weight: 600;
}

.plat-strip {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 24rem;
  border: 1px solid rgba(246, 246, 247, 0.12);
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(14, 14, 17, 0.55);
}

.plat-strip li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  padding: 1rem 1.1rem;
  border-right: 1px solid rgba(246, 246, 247, 0.1);
  border-bottom: 1px solid rgba(246, 246, 247, 0.1);
}

.plat-strip li:nth-child(2n) {
  border-right: none;
}

.plat-strip li:nth-child(n + 3) {
  border-bottom: none;
}

.plat-strip img {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #0a0a0c;
  border: 1px solid rgba(246, 246, 247, 0.08);
}

.plat-strip img[src*="youtube"],
.plat-strip img[src*="rtmp"] {
  object-fit: contain;
  padding: 0.28rem;
}

.plat-strip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.plat-strip span {
  display: block;
  margin-top: 0.18rem;
  font-size: 0.74rem;
  color: var(--muted);
}

.scene__visual {
  position: relative;
  min-height: clamp(16rem, 36vw, 22rem);
  display: grid;
  place-items: center;
  padding: 1.35rem 1.5rem;
  border-radius: 1.5rem;
  background:
    radial-gradient(
      ellipse 70% 70% at 50% 45%,
      rgba(201, 166, 107, 0.1),
      transparent 70%
    ),
    linear-gradient(160deg, #121218 0%, #08080a 100%);
  overflow: hidden;
  isolation: isolate;
}

.scene__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(246, 246, 247, 0.08);
  pointer-events: none;
}

/* Dual cam phone */
.phone {
  width: min(40%, 10.75rem);
  max-height: calc(100% - 0.25rem);
  aspect-ratio: 9 / 17;
  padding: 0.45rem;
  border-radius: 1.35rem;
  background: linear-gradient(180deg, #2a2a32, #111115);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
}

.phone__screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 1.05rem;
  overflow: hidden;
  background: #0a0a0c;
}

/* Shared live-preview — clean, light shading only */
.phone__main,
.orient__preview,
.chat-phone {
  background:
    radial-gradient(
      ellipse 85% 70% at 50% 40%,
      #2c2c32 0%,
      #1c1c22 55%,
      #121216 100%
    );
}

.phone__main {
  position: absolute;
  inset: 0;
}

.phone__pip {
  position: absolute;
  left: 58%;
  top: 20%;
  width: 32%;
  aspect-ratio: 9 / 14;
  border-radius: 0.2rem;
  overflow: hidden;
  border: 1.5px solid #c9a66b;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.45);
  z-index: 2;
  /* Wander corners to hint the PiP can be dragged */
  animation: pip-wander 9s ease-in-out infinite;
  will-change: left, top;
}

.phone__pip-bg {
  position: absolute;
  inset: 0;
  background: #1a1a20;
}

.phone__pip-person {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 78%;
  height: 78%;
  transform: translateX(-50%);
  display: block;
}

.phone__top {
  position: absolute;
  top: 3.2%;
  left: 3.5%;
  right: 3.5%;
  z-index: 4;
  height: 2.4rem;
  pointer-events: none;
}

.phone__round {
  position: absolute;
  top: 0;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #f6f6f7;
  background: rgba(10, 10, 12, 0.72);
  border: 1px solid rgba(50, 50, 60, 0.85);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.35);
}

.phone__round--stop {
  left: 0;
  color: #100e0a;
  background: #ff2d55;
  border-color: transparent;
}

.phone__top > .phone__round:not(.phone__round--stop) {
  right: 0;
}

.phone__round svg {
  width: 0.58rem;
  height: 0.58rem;
  display: block;
}

.phone__live {
  position: absolute;
  top: 0.1rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: rgba(255, 45, 85, 0.92);
  font-family: var(--font-display);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  line-height: 1.2;
}

/* Bottom controls — mirrors app: flash/zoom · mic · pip/chat */
.phone__bar {
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 4%;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.2rem;
  pointer-events: none;
}

.phone__cluster {
  display: flex;
  align-items: center;
  gap: 0.22rem;
  flex: 0 0 auto;
}

.phone__bar-btn {
  flex: 0 0 auto;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #f6f6f7;
  background: rgba(10, 10, 12, 0.72);
  border: 1px solid rgba(50, 50, 60, 0.85);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.35);
}

.phone__bar-btn svg {
  width: 0.55rem;
  height: 0.55rem;
  display: block;
}

.phone__bar-btn--on {
  color: #100e0a;
  background: #c9a66b;
  border-color: transparent;
}

.phone__mic {
  flex: 0 0 auto;
  width: 1.85rem;
  height: 1.35rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #f6f6f7;
  background: #17171c;
  border: 1px solid rgba(50, 50, 60, 0.9);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.phone__mic svg {
  width: 0.7rem;
  height: 0.7rem;
  display: block;
}

.scene--orient .scene__visual {
  min-height: clamp(20rem, 42vw, 26rem);
}

/* Orientation — phone rotates; UI fits; landscape chrome pre-rotated */
.orient {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  width: 100%;
}

.orient__stage {
  position: relative;
  width: min(98%, 21rem);
  height: 19rem;
  display: grid;
  place-items: center;
}

.orient__phone {
  --orient-w: 8.6rem;
  --orient-h: 16.25rem;
  width: var(--orient-w);
  height: var(--orient-h);
  padding: 0.45rem;
  border-radius: 1.35rem;
  background: linear-gradient(180deg, #2a2a32, #111115);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  animation: orient-rotate 8s ease-in-out infinite;
  transform-origin: center center;
  will-change: transform;
}

.orient__screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0.82rem;
  overflow: hidden;
  background: #0a0a0c;
}

.orient__preview {
  position: absolute;
  inset: 0;
}

.orient__ui {
  z-index: 2;
  pointer-events: none;
}

.orient__ui--portrait {
  position: absolute;
  inset: 0;
  animation: orient-ui-p 8s ease-in-out infinite;
}

/* Portrait chrome — grid keeps LIVE + mic truly centered */
.orient__phone .phone__top {
  top: 0.45rem;
  left: 0.45rem;
  right: 0.45rem;
  height: auto;
  display: grid;
  grid-template-columns: 1.1rem 1fr 1.1rem;
  align-items: center;
  gap: 0.22rem;
}

.orient__phone .phone__round {
  position: static;
  width: 1.1rem;
  height: 1.1rem;
}

.orient__phone .phone__round svg {
  width: 0.52rem;
  height: 0.52rem;
}

.orient__phone .orient__ui--portrait .phone__live {
  position: static;
  transform: none;
  justify-self: center;
  padding: 0.16rem 0.48rem;
  font-size: 0.48rem;
  letter-spacing: 0.08em;
}

.orient__phone .phone__bar {
  left: 0.4rem;
  right: 0.4rem;
  bottom: 0.45rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.22rem;
}

.orient__phone .phone__cluster {
  gap: 0.2rem;
}

.orient__phone .phone__cluster:first-child {
  justify-self: start;
}

.orient__phone .phone__cluster:last-child {
  justify-self: end;
}

.orient__phone .phone__bar-btn {
  width: 1.1rem;
  height: 1.1rem;
}

.orient__phone .phone__bar-btn svg {
  width: 0.5rem;
  height: 0.5rem;
}

.orient__phone .phone__mic {
  width: 1.6rem;
  height: 1.2rem;
  justify-self: center;
}

.orient__phone .phone__mic svg {
  width: 0.58rem;
  height: 0.58rem;
}

/*
  Landscape UI lives sideways in the portrait shell.
  When the phone rotates -90°, this layer lands upright.
*/
.orient__ui--landscape {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15.35rem;
  height: 7.7rem;
  margin: 0;
  transform: translate(-50%, -50%) rotate(90deg);
  animation: orient-ui-l 8s ease-in-out infinite;
  overflow: hidden;
}

.orient__ui--landscape .phone__live,
.orient__live-land {
  position: absolute;
  top: 0.35rem;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  justify-self: auto;
  padding: 0.14rem 0.4rem;
  font-size: 0.42rem;
  letter-spacing: 0.08em;
}

.orient__rail {
  position: absolute;
  top: 0.3rem;
  right: 0.3rem;
  bottom: 1.4rem;
  width: 0.95rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.orient__rail-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.22rem;
}

.orient__land-bar {
  position: absolute;
  left: 0.3rem;
  right: 1.4rem;
  bottom: 0.3rem;
  height: 1.05rem;
  display: grid;
  grid-template-columns: 0.95rem 1fr;
  align-items: center;
}

.orient__land-bar > .phone__bar-btn {
  position: static;
}

.orient__land-primary {
  position: static;
  transform: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
}

.orient__end {
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: #ff2d55;
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.42rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 3px 8px rgba(255, 45, 85, 0.35);
  line-height: 1;
}

.orient__labels {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.orient__label {
  color: rgba(246, 246, 247, 0.35);
}

.orient__label--v {
  animation: orient-label-v 8s ease-in-out infinite;
}

.orient__label--h {
  animation: orient-label-h 8s ease-in-out infinite;
}

.orient__sep {
  color: rgba(246, 246, 247, 0.22);
}

/* Platforms orbit */
.orbit {
  position: relative;
  width: min(94%, 20.5rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: 0.15rem;
}

.orbit__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(201, 166, 107, 0.28);
  pointer-events: none;
}

.orbit__ring--1 {
  inset: 14%;
  animation: ring-spin 28s linear infinite;
}

.orbit__ring--2 {
  inset: 26%;
  border-color: rgba(201, 166, 107, 0.2);
  animation: ring-spin 36s linear infinite reverse;
}

.orbit__ring--3 {
  inset: 38%;
  border-color: rgba(201, 166, 107, 0.14);
  animation: ring-spin 48s linear infinite;
}

.orbit__phone.phone {
  width: 34%;
  max-height: none;
  aspect-ratio: 9 / 16;
  padding: 0.28rem;
  border-radius: 0.9rem;
  z-index: 2;
}

/* Scale shared chrome down for the smaller orbit phone */
.orbit__phone .phone__top {
  top: 4%;
  left: 6%;
  right: 6%;
  height: 1.1rem;
}

.orbit__phone .phone__round {
  width: 0.7rem;
  height: 0.7rem;
}

.orbit__phone .phone__round svg {
  width: 0.34rem;
  height: 0.34rem;
}

.orbit__phone .phone__live {
  top: 0.05rem;
  padding: 0.1rem 0.28rem;
  font-size: 0.34rem;
}

.orbit__phone .phone__bar {
  left: 5%;
  right: 5%;
  bottom: 4%;
  gap: 0.1rem;
}

.orbit__phone .phone__cluster {
  gap: 0.1rem;
}

.orbit__phone .phone__bar-btn {
  width: 0.7rem;
  height: 0.7rem;
}

.orbit__phone .phone__bar-btn svg {
  width: 0.32rem;
  height: 0.32rem;
}

.orbit__phone .phone__mic {
  width: 1.05rem;
  height: 0.78rem;
}

.orbit__phone .phone__mic svg {
  width: 0.38rem;
  height: 0.38rem;
}

.orbit__badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem 0.5rem 0.5rem;
  border-radius: 999px;
  background: rgba(14, 14, 17, 0.94);
  border: 1px solid rgba(246, 246, 247, 0.12);
  font-family: var(--font-display);
  z-index: 3;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.orbit__badge img {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #0e0e11;
}

.orbit__badge img[src*="youtube"],
.orbit__badge img[src*="rtmp"] {
  object-fit: contain;
  padding: 0.14rem;
}

.orbit__badge-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}

.orbit__badge-text strong {
  font-size: 0.85rem;
  font-weight: 700;
}

.orbit__badge-text small {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.orbit__badge--twitch {
  top: 18%;
  left: 6%;
  animation: badge-bob 3.8s ease-in-out infinite;
}

.orbit__badge--kick {
  top: 34%;
  right: 2%;
  animation: badge-bob 3.8s ease-in-out 0.55s infinite;
}

.orbit__badge--youtube {
  bottom: 28%;
  left: -4%;
  animation: badge-bob 3.8s ease-in-out 0.9s infinite;
}

.orbit__badge--rtmp {
  bottom: 8%;
  right: 14%;
  left: auto;
  animation: badge-bob 3.8s ease-in-out 0.3s infinite;
}

/* Audio — app mic picker: Automatic → search → Bluetooth */
.audio-stage {
  width: min(94%, 22rem);
  text-align: center;
  color: var(--accent);
}

.audio-pair {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.85rem;
  min-height: 17.5rem;
  padding: 1.2rem 1.15rem 1.1rem;
  border-radius: 1.2rem;
  background: rgba(14, 14, 17, 0.78);
  border: 1px solid rgba(246, 246, 247, 0.1);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  text-align: left;
}

.audio-pair__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
}

.audio-pair__scan-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--accent-bright);
  opacity: 0;
  animation: audio-scan-label 8s ease-in-out infinite;
}

.audio-pair__scan-dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--accent);
  animation: audio-scan-dot 1s ease-in-out infinite;
}

.audio-pair__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  /* Keep room for all 3 rows so the card never jumps */
  min-height: 10.6rem;
}

.audio-mic {
  display: grid;
  grid-template-columns: 1.25rem 1fr 1.15rem;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.7rem;
  border-radius: 0.85rem;
  background: rgba(23, 23, 28, 0.95);
  border: 1px solid rgba(50, 50, 60, 0.9);
  color: var(--muted);
}

.audio-mic__icon {
  display: grid;
  place-items: center;
  color: inherit;
}

.audio-mic__icon svg {
  width: 1.05rem;
  height: 1.05rem;
  display: block;
}

.audio-mic__text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink);
}

.audio-mic__text small {
  display: block;
  margin-top: 0.12rem;
  font-size: 0.66rem;
  line-height: 1.25;
  color: var(--muted);
}

.audio-mic__check {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--accent);
  opacity: 0;
}

.audio-mic__check svg {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
}

.audio-mic--auto {
  animation: audio-auto-row 8s ease-in-out infinite;
}

.audio-mic--auto .audio-mic__check {
  animation: audio-auto-check 8s ease-in-out infinite;
}

.audio-mic--bt {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  animation: audio-bt-row 8s ease-in-out infinite;
}

.audio-mic--bt .audio-mic__check {
  animation: audio-bt-check 8s ease-in-out infinite;
}

.wave {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.28rem;
  height: 2.4rem;
  opacity: 0.28;
  animation: audio-wave-live 8s ease-in-out infinite;
}

.wave span {
  width: 0.28rem;
  border-radius: 999px;
  background: linear-gradient(to top, var(--accent-dim), var(--accent-bright));
  animation: wave 1.1s ease-in-out infinite;
  transform-origin: bottom center;
}

.wave span:nth-child(1) {
  height: 28%;
  animation-delay: 0s;
}
.wave span:nth-child(2) {
  height: 48%;
  animation-delay: 0.05s;
}
.wave span:nth-child(3) {
  height: 72%;
  animation-delay: 0.1s;
}
.wave span:nth-child(4) {
  height: 55%;
  animation-delay: 0.15s;
}
.wave span:nth-child(5) {
  height: 90%;
  animation-delay: 0.2s;
}
.wave span:nth-child(6) {
  height: 62%;
  animation-delay: 0.25s;
}
.wave span:nth-child(7) {
  height: 78%;
  animation-delay: 0.3s;
}
.wave span:nth-child(8) {
  height: 44%;
  animation-delay: 0.35s;
}
.wave span:nth-child(9) {
  height: 86%;
  animation-delay: 0.4s;
}
.wave span:nth-child(10) {
  height: 50%;
  animation-delay: 0.45s;
}
.wave span:nth-child(11) {
  height: 68%;
  animation-delay: 0.5s;
}
.wave span:nth-child(12) {
  height: 36%;
  animation-delay: 0.55s;
}

.audio-stage__hint {
  margin: 0.95rem 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dim);
}

/* HUD */
.hud {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  transform: scale(0.92);
}

.hud__pill {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(10, 10, 12, 0.88);
  border: 1px solid rgba(246, 246, 247, 0.18);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.hud__bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 0.85rem;
}

.hud__bars i {
  display: block;
  width: 2.5px;
  border-radius: 1px;
  background: var(--accent);
}

.hud__bars i:nth-child(1) {
  height: 35%;
}
.hud__bars i:nth-child(2) {
  height: 55%;
}
.hud__bars i:nth-child(3) {
  height: 75%;
}
.hud__bars i:nth-child(4) {
  height: 100%;
}

.hud__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(246, 246, 247, 0.28);
}

.hud__viewers,
.hud__temp {
  display: inline-flex;
  align-items: center;
  gap: 0.22rem;
  font-variant-numeric: tabular-nums;
}

.hud__viewers svg,
.hud__temp svg {
  width: 0.85rem;
  height: 0.85rem;
  opacity: 0.9;
}

.hud__plat {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  font-variant-numeric: tabular-nums;
}

.hud__plat img {
  width: 0.85rem;
  height: 0.85rem;
  object-fit: contain;
  border-radius: 0.15rem;
}

.hud__tab {
  margin-top: -1px;
  padding: 0.22rem 0.7rem 0.35rem;
  border-radius: 0 0 999px 999px;
  background: rgba(10, 10, 12, 0.88);
  border: 1px solid rgba(246, 246, 247, 0.18);
  border-top: none;
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #f6f6f7;
}

.hud__tab svg {
  width: 0.7rem;
  height: 0.7rem;
  color: var(--live);
  flex: 0 0 auto;
}

.hud__glow {
  position: absolute;
  inset: auto 10% -40%;
  height: 4rem;
  background: radial-gradient(
    ellipse at center,
    rgba(201, 166, 107, 0.25),
    transparent 70%
  );
  z-index: -1;
}

/* Controls */
.controls {
  width: min(88%, 20rem);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.controls__track {
  position: relative;
  height: 2.8rem;
  border-radius: 999px;
  background: rgba(246, 246, 247, 0.06);
  border: 1px solid rgba(246, 246, 247, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 0.6rem;
}

.controls__track::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 50%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 166, 107, 0.55),
    transparent
  );
}

.controls__bubble {
  position: relative;
  z-index: 1;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--muted);
  background: #1a1a20;
  border: 1px solid rgba(246, 246, 247, 0.12);
}

.controls__bubble--on {
  color: var(--on-accent);
  background: var(--accent);
  border-color: transparent;
  transform: scale(1.08);
}

.controls__thumb {
  position: absolute;
  left: 42%;
  top: 50%;
  width: 0.7rem;
  height: 0.7rem;
  margin: -0.35rem 0 0 -0.35rem;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 0 4px rgba(201, 166, 107, 0.2);
  animation: thumb-slide 3.8s ease-in-out infinite;
}

.controls__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}

.controls__round {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(10, 10, 12, 0.75);
  border: 1px solid rgba(246, 246, 247, 0.14);
  color: var(--ink);
}

.controls__round svg {
  width: 1rem;
  height: 1rem;
}

.controls__go {
  min-width: 7.2rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
}

/* Chat phone */
.chat-phone {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.chat-phone__preview {
  position: absolute;
  inset: 0;
}

.chat-phone__overlay {
  position: absolute;
  left: 0.4rem;
  right: 28%;
  bottom: 16%;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  align-items: flex-start;
  z-index: 2;
}

.chat-phone__msg {
  max-width: 100%;
  padding: 0.42rem 0.55rem;
  border-radius: 0.7rem;
  background: rgba(10, 10, 12, 0.78);
  border: 1px solid rgba(246, 246, 247, 0.1);
  font-size: 0.62rem;
  line-height: 1.3;
  color: rgba(246, 246, 247, 0.9);
  opacity: 0;
  transform: translateY(14px);
  animation: chat-pop 5.6s ease-in-out infinite;
}

.chat-phone__msg b {
  margin-right: 0.28rem;
  font-weight: 700;
}

.chat-phone__msg--1 {
  animation-delay: 0s;
}

.chat-phone__msg--2 {
  animation-delay: 0.55s;
}

.chat-phone__msg--3 {
  animation-delay: 1.1s;
}

/* Rec */
.rec {
  width: min(80%, 18rem);
  text-align: center;
}

.rec__frame {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1.1rem;
  border-radius: 0.7rem;
  background: rgba(10, 10, 12, 0.85);
  border: 1px solid rgba(255, 45, 85, 0.35);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.rec__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--live);
  animation: rec-blink 1.2s steps(1) infinite;
}

.rec__label {
  color: var(--live);
  font-size: 0.85rem;
}

.rec__time {
  font-size: 0.85rem;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.rec__strip {
  margin-top: 1.4rem;
  height: 2.4rem;
  display: flex;
  gap: 0.35rem;
  justify-content: center;
  align-items: stretch;
}

.rec__strip i {
  flex: 1;
  max-width: 1.4rem;
  border-radius: 0.2rem;
  background: linear-gradient(
    180deg,
    rgba(201, 166, 107, 0.35),
    rgba(201, 166, 107, 0.08)
  );
  border: 1px solid rgba(201, 166, 107, 0.2);
  animation: strip-pulse 2.4s ease-in-out infinite;
}

.rec__strip i:nth-child(odd) {
  animation-delay: 0.2s;
  opacity: 0.7;
}

/* Close + foot */
.close {
  padding: clamp(4.5rem, 10vw, 7.5rem) var(--pad-x);
  text-align: center;
  border-top: 1px solid rgba(246, 246, 247, 0.1);
  background: radial-gradient(
    ellipse 55% 60% at 50% 100%,
    rgba(201, 166, 107, 0.12),
    transparent 65%
  );
}

.close__inner {
  width: min(100%, 34rem);
  margin: 0 auto;
}

.close h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.2vw, 2.7rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.close p {
  margin: 0.95rem 0 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--muted);
}

.close__cta {
  margin-top: 1.75rem;
}

.foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem var(--pad-x) 2rem;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--muted);
}

.foot a {
  color: var(--muted);
  text-decoration: none;
}

.foot a:hover {
  color: var(--text);
}

/* Privacy / legal */
.legal {
  width: min(100%, 42rem);
  margin: 0 auto;
  padding: clamp(5.5rem, 12vw, 7rem) var(--pad-x) 4rem;
}

.legal h1 {
  margin: 0.35rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.legal__updated {
  margin: 0.75rem 0 1.75rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.legal h2 {
  margin: 2rem 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}

.legal p,
.legal li {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--muted);
}

.legal p + p {
  margin-top: 0.85rem;
}

.legal ul {
  margin: 0.65rem 0 0;
  padding-left: 1.2rem;
}

.legal li + li {
  margin-top: 0.45rem;
}

.legal a {
  color: var(--gold, #c9a66b);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 800ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (max-width: 860px) {
  .scene,
  .scene:nth-of-type(odd) {
    direction: ltr;
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding-block: clamp(3rem, 8vw, 4.5rem);
  }

  .scene__visual {
    min-height: 16.5rem;
    order: -1;
  }

  .scene--about .scene__visual,
  .scene--about .about-card {
    height: auto;
  }

  .scene__copy h2 {
    max-width: 16ch;
  }
}

@media (max-width: 520px) {
  .hero__logo {
    width: min(72vw, 13.5rem);
  }

  .hero__headline {
    max-width: 16ch;
    font-size: clamp(1.4rem, 7vw, 1.85rem);
  }

  .btn {
    width: 100%;
    max-width: 20rem;
  }

  .hud {
    transform: scale(0.78);
    transform-origin: center;
  }

  .hud__pill {
    font-size: 0.62rem;
    gap: 0.28rem;
    padding: 0.45rem 0.6rem;
  }

  .plat-strip {
    max-width: none;
  }

  .plat-strip li {
    padding: 0.9rem 0.95rem;
  }

  .scene__note {
    padding: 0.75rem 0.8rem;
  }

  .foot {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__glow,
  .hero__map,
  .hero__logo,
  .hero__headline,
  .hero__support,
  .hero__cta,
  .phone__pip,
  .orbit__badge,
  .orbit__ring,
  .audio-pair__scan-label,
  .audio-pair__scan-dot,
  .audio-mic--auto,
  .audio-mic--auto .audio-mic__check,
  .audio-mic--bt,
  .audio-mic--bt .audio-mic__check,
  .wave,
  .wave span,
  .controls__thumb,
  .chat-phone__msg,
  .orient__phone,
  .orient__ui--portrait,
  .orient__ui--landscape,
  .orient__label--v,
  .orient__label--h,
  .rec__dot,
  .rec__strip i {
    animation: none !important;
  }

  .orient__phone {
    transform: none !important;
  }

  .orient__label--v,
  .orient__label--h {
    color: rgba(246, 246, 247, 0.75);
  }

  .orient__ui--landscape {
    opacity: 0 !important;
  }

  .orient__ui--portrait {
    opacity: 1 !important;
  }

  .audio-pair__scan-label {
    opacity: 0 !important;
  }

  .audio-mic--auto {
    border-color: rgba(50, 50, 60, 0.9) !important;
    background: rgba(23, 23, 28, 0.95) !important;
    color: var(--muted) !important;
  }

  .audio-mic--auto .audio-mic__check {
    opacity: 0 !important;
  }

  .audio-mic--bt {
    opacity: 1 !important;
    border-width: 1.4px !important;
    border-color: var(--accent) !important;
    background: rgba(201, 166, 107, 0.14) !important;
    color: var(--accent) !important;
    transform: none !important;
  }

  .audio-mic--bt .audio-mic__check,
  .wave {
    opacity: 1 !important;
  }

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

@keyframes logo-in {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes map-drift {
  from {
    transform: translate3d(-2.2%, 0, 0) scale(1.04);
  }
  to {
    transform: translate3d(2.2%, 0, 0) scale(1.04);
  }
}

@keyframes glow-breathe {
  0%,
  100% {
    opacity: 0.85;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

/* Slow path around the preview — shows PiP is movable.
   Stays above the bottom HUD bar. */
@keyframes pip-wander {
  0%,
  100% {
    left: 58%;
    top: 20%;
  }
  25% {
    left: 58%;
    top: 42%;
  }
  50% {
    left: 8%;
    top: 42%;
  }
  75% {
    left: 8%;
    top: 20%;
  }
}

@keyframes badge-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes badge-bob-x {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

@keyframes ring-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.75);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

@keyframes wave {
  0%,
  100% {
    transform: scaleY(0.55);
  }
  50% {
    transform: scaleY(1);
  }
}

/* Mic picker loop: Automatic → search → Bluetooth selected */
@keyframes audio-scan-label {
  0%,
  28% {
    opacity: 0;
  }
  34%,
  58% {
    opacity: 1;
  }
  66%,
  100% {
    opacity: 0;
  }
}

@keyframes audio-scan-dot {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.85);
  }
  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

@keyframes audio-auto-row {
  0%,
  58% {
    border-color: var(--accent);
    background: rgba(201, 166, 107, 0.14);
    color: var(--accent);
  }
  68%,
  100% {
    border-color: rgba(50, 50, 60, 0.9);
    background: rgba(23, 23, 28, 0.95);
    color: var(--muted);
  }
}

@keyframes audio-auto-check {
  0%,
  58% {
    opacity: 1;
  }
  68%,
  100% {
    opacity: 0;
  }
}

@keyframes audio-bt-row {
  0%,
  42% {
    opacity: 0;
    transform: translateY(8px);
    color: var(--muted);
    background: rgba(23, 23, 28, 0.95);
    border-color: rgba(50, 50, 60, 0.9);
    border-width: 1px;
  }
  50%,
  60% {
    opacity: 1;
    transform: translateY(0);
    color: var(--muted);
    background: rgba(23, 23, 28, 0.95);
    border-color: rgba(50, 50, 60, 0.9);
    border-width: 1px;
  }
  70%,
  100% {
    opacity: 1;
    transform: translateY(0);
    color: var(--accent);
    background: rgba(201, 166, 107, 0.14);
    border-color: var(--accent);
    border-width: 1.4px;
  }
}

@keyframes audio-bt-check {
  0%,
  64% {
    opacity: 0;
  }
  72%,
  100% {
    opacity: 1;
  }
}

@keyframes audio-wave-live {
  0%,
  64% {
    opacity: 0.28;
  }
  74%,
  100% {
    opacity: 1;
  }
}

@keyframes thumb-slide {
  0%,
  100% {
    left: 28%;
  }
  50% {
    left: 62%;
  }
}

@keyframes orient-rotate {
  0%,
  34% {
    transform: rotate(0deg);
  }
  44%,
  84% {
    transform: rotate(-90deg);
  }
  94%,
  100% {
    transform: rotate(0deg);
  }
}

/* Swap chrome while the phone is edge-on during the turn */
@keyframes orient-ui-p {
  0%,
  38% {
    opacity: 1;
  }
  42%,
  90% {
    opacity: 0;
  }
  94%,
  100% {
    opacity: 1;
  }
}

@keyframes orient-ui-l {
  0%,
  38% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
  }
  42%,
  90% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(90deg);
  }
  94%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
  }
}

@keyframes orient-label-v {
  0%,
  34% {
    color: #c9a66b;
  }
  44%,
  100% {
    color: rgba(246, 246, 247, 0.35);
  }
}

@keyframes orient-label-h {
  0%,
  34% {
    color: rgba(246, 246, 247, 0.35);
  }
  44%,
  84% {
    color: #c9a66b;
  }
  94%,
  100% {
    color: rgba(246, 246, 247, 0.35);
  }
}

@keyframes chat-pop {
  0%,
  6% {
    opacity: 0;
    transform: translateY(14px);
  }
  16%,
  72% {
    opacity: 1;
    transform: translateY(0);
  }
  88%,
  100% {
    opacity: 0;
    transform: translateY(-8px);
  }
}

@keyframes rec-blink {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0.2;
  }
}

@keyframes strip-pulse {
  0%,
  100% {
    transform: scaleY(0.85);
  }
  50% {
    transform: scaleY(1.08);
  }
}
