:root {
  --bg: #04050a;
  --panel: rgba(13, 15, 24, 0.72);
  --ink: #f2f1ec;
  --dim: #a8a8a4;
  --gold: #fcc76b;
  --line: rgba(255, 255, 255, 0.14);
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* The universe never scrolls away. */
#universe {
  position: fixed; inset: 0; width: 100%; height: 100%;
  z-index: 0; display: block;
}
.content { position: relative; z-index: 1; }

/* ── Chrome ─────────────────────────────────────────────────────────── */
header.site {
  position: fixed; top: 0; left: 0; right: 0; z-index: 10;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 28px;
  background: linear-gradient(rgba(4, 5, 10, 0.85), transparent);
}
a.word {
  /* The app's own wordmark: white, light, wide open air between letters. */
  color: var(--ink); text-decoration: none; font-weight: 300;
  letter-spacing: 0.34em; font-size: 15px;
}
nav.pages a {
  color: var(--dim); text-decoration: none; font-size: 14px; margin-left: 18px;
}
nav.pages a:hover { color: var(--ink); }
.cta {
  display: inline-block; padding: 12px 26px; border-radius: 999px;
  background: #ffffff;
  color: #000000; text-decoration: none; font-weight: 600; font-size: 15px;
  letter-spacing: -0.006em;
  transition: opacity 0.15s ease;
}
.cta:hover { opacity: 0.85; }
.cta.small { padding: 9px 18px; font-size: 13px; box-shadow: none; }
.cta.ghost {
  background: none; color: var(--ink);
  border: 1px solid var(--line); box-shadow: none;
}

/* ── Sections ───────────────────────────────────────────────────────── */
section.stage {
  min-height: 108vh;
  display: flex; align-items: center;
  padding: 12vh 6vw;
}
.split {
  display: flex; align-items: center; gap: 6vw;
  width: 100%; max-width: 1180px; margin: 0 auto;
}
.copy {
  flex: 1 1 46%; max-width: 30em;
  /* Worlds now pass directly behind the text, so the copy rides on glass. */
  background: rgba(6, 7, 12, 0.55);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px 32px;
}
.mockwrap { flex: 1 1 50%; display: flex; justify-content: center; }
section.stage:nth-of-type(even) .split { flex-direction: row-reverse; }

.kicker {
  color: rgba(242, 241, 236, 0.55); font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 14px;
}
h1 {
  font-size: clamp(44px, 7vw, 76px); line-height: 1.03;
  font-weight: 600; letter-spacing: -0.022em; margin-bottom: 20px;
}
h2 {
  font-size: clamp(30px, 4vw, 44px); line-height: 1.08;
  font-weight: 600; letter-spacing: -0.018em; margin-bottom: 14px;
}
.lede { font-size: 20px; font-weight: 400; color: rgba(242, 241, 236, 0.72); letter-spacing: -0.008em; }
.copy p { margin: 12px 0; color: var(--dim); }
.copy p strong { color: var(--ink); font-weight: 600; }
.copy .cta { margin-top: 18px; }

/* Hero */
section.hero {
  min-height: 100vh; text-align: center;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  padding: 20vh 6vw 30vh;
  text-shadow: 0 2px 26px rgba(0, 0, 0, 0.85);
}
.hero h1 { font-size: clamp(60px, 9.5vw, 118px); }
.hero .lede { max-width: 32em; margin: 0 auto 10px; font-size: 22px; }
.hero .cta { margin-top: 30px; padding: 17px 36px; font-size: 17px; }
.hero .fine { font-size: 13px; color: var(--dim); margin-top: 14px; }
.scrollhint {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  color: var(--dim); font-size: 12px; letter-spacing: 0.18em;
}
@keyframes drift { 50% { transform: translate(-50%, 8px); } }
.scrollhint { animation: drift 2.4s ease-in-out infinite; }

/* Finale */
section.finale { min-height: 90vh; text-align: center; align-items: center; justify-content: center; display: flex; flex-direction: column; }

/* ── The phone: large, quiet, one idea per screen ───────────────────── */
.phone {
  width: min(440px, 92vw); aspect-ratio: 390 / 844;
  border-radius: 58px; padding: 11px;
  background: #0c0d12;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.7);
  position: relative;
}
.screen {
  width: 100%; height: 100%; border-radius: 48px; overflow: hidden;
  background: radial-gradient(120% 90% at 50% 0%, #101218 0%, #05060a 60%);
  position: relative;
  font-size: 15px;
}

/* The reference layout: a glowing focal mark, a title that ends with a period,
   one quiet line, one card. Nothing else on the glass. */
.focus {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px; padding: 30px; text-align: center;
}
.focus h3 { font-size: 31px; font-weight: 700; letter-spacing: -0.02em; }
.focus .sub { color: var(--dim); font-size: 15px; line-height: 1.45; max-width: 26ch; }
.card {
  width: 100%; margin-top: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px; padding: 15px 17px;
  display: flex; align-items: center; gap: 13px; text-align: left;
}
.card b { font-size: 15px; display: block; }
.card small { color: var(--dim); font-size: 12.5px; display: block; margin-top: 2px; }
.card .ok {
  margin-left: auto; flex: none;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--gold); color: #171208;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800;
}

/* Star page mock */
.mock-star .orb {
  width: 132px; height: 132px; border-radius: 50%;
  background: radial-gradient(circle at 42% 38%, #fff3e0 0%, #ffb46b 36%, #f4732c 64%, #7a2b0d 92%);
  box-shadow: 0 0 70px rgba(244, 133, 60, 0.55);
  animation: breathe 5s ease-in-out infinite;
}
@keyframes breathe { 50% { transform: scale(1.04); box-shadow: 0 0 90px rgba(244, 133, 60, 0.7); } }
.spectrumbar {
  height: 18px; width: 58px; border-radius: 5px; flex: none;
  background:
    linear-gradient(90deg, transparent 24%, rgba(0,0,0,0.85) 25%, transparent 26%,
      transparent 47%, rgba(0,0,0,0.8) 48%, transparent 49%,
      transparent 87%, rgba(0,0,0,0.85) 89%, transparent 90%),
    linear-gradient(90deg, #6b21a8, #2563eb, #059669, #eab308, #dc2626);
}

/* Spectrum lab mock */
#specDisc { width: 210px; height: 210px; }
.mock-spectrum .strip {
  width: 100%; height: 54px; border-radius: 12px;
  background:
    linear-gradient(90deg, transparent 21%, rgba(0,0,0,0.9) 21.6%, transparent 22.4%,
      transparent 33%, rgba(0,0,0,0.85) 33.6%, transparent 34.2%,
      transparent 52%, rgba(0,0,0,0.85) 52.6%, transparent 53.2%,
      transparent 61%, rgba(0,0,0,0.9) 61.8%, transparent 62.6%,
      transparent 84%, rgba(0,0,0,0.9) 86%, transparent 87.5%),
    linear-gradient(90deg, #4c1d95, #1d4ed8, #059669, #ca8a04, #b91c1c);
}
.mock-spectrum .elements { display: flex; justify-content: center; gap: 8px; width: 100%; }
.mock-spectrum .el {
  flex: 1; height: 44px; border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.05);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 13px; transition: opacity 0.8s;
}

/* Slingshot mock: the real gravity simulator, drag to aim */
.mock-sling { background: radial-gradient(120% 90% at 50% 40%, #0b0d16 0%, #04050a 70%); }
#slingCanvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  touch-action: none; cursor: crosshair;
}
.mock-sling .card {
  position: absolute; bottom: 26px; left: 22px; right: 22px; margin: 0;
  pointer-events: none;
}

/* Long Before mock */
.mock-story .plate { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; }
.mock-story .plate.on { opacity: 1; }
.mock-story .plate .sceneart { position: absolute; inset: 0; }
.mock-story .plate .text { position: absolute; bottom: 120px; left: 26px; right: 26px; }
.mock-story .plate .text h4 { font-size: 26px; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 8px; }
.mock-story .plate .text p { font-size: 14px; line-height: 1.5; color: rgba(255, 255, 255, 0.72); }
.mock-story .transport {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 26px; align-items: center;
  background: rgba(20, 22, 30, 0.85); border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px; padding: 12px 26px; font-size: 15px;
}

/* Compass mock */
/* The Celestial Compass, recreated: a live sky you can drag, under the app's real chrome */
.mock-compass { background: #05070e; }
#compassSky {
  position: absolute; inset: 0; width: 100%; height: 100%;
  touch-action: none; cursor: grab;
}
#compassSky:active { cursor: grabbing; }
.mock-compass .ping {
  position: absolute; width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid #fff; pointer-events: none;
  animation: ping 2.4s ease-out infinite;
}
@keyframes ping {
  0% { transform: scale(0.4); opacity: 1; }
  80%, 100% { transform: scale(3.2); opacity: 0; }
}
.mock-compass .clabel {
  position: absolute; color: #fff; font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; pointer-events: none;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
}
.mock-compass .cdrag {
  position: absolute; bottom: 108px; left: 0; right: 0; text-align: center;
  color: rgba(255, 255, 255, 0.4); font-size: 12px; pointer-events: none;
}
.mock-compass .cchrome {
  position: absolute; top: 18px; left: 18px; right: 18px; z-index: 3;
  display: flex; align-items: center; gap: 10px; pointer-events: none;
}
.mock-compass .cbtn {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  background: rgba(30, 34, 44, 0.7); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.mock-compass .cclose { margin-right: auto; }
.mock-compass .ccompass { position: relative; }
.mock-compass .ccompass b { font-size: 12px; font-weight: 700; transform: translateY(-3px); }
.mock-compass .ccompass i {
  position: absolute; top: 9px; left: 50%; margin-left: -4px;
  width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-bottom: 8px solid #e8442e;
}
.mock-compass .cnav {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; gap: 6px; padding: 10px 12px;
  background: rgba(22, 25, 33, 0.72); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 999px;
}
.mock-compass .cnavitem {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 4px 16px; color: rgba(255, 255, 255, 0.55); font-size: 11px;
}
.mock-compass .cnavitem.on { color: #fff; }
.mock-compass .cnavitem small { font-size: 11px; }

/* Sounds mock: the Perseus cluster, full cover, with a playable waveform at its heart */
.mock-sounds { background: #000; }
.perseusbg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.9;
  transform-origin: 52% 58%;   /* the cluster's bright core */
  animation: perseuszoom 26s ease-in-out infinite alternate;
}
@keyframes perseuszoom {
  from { transform: scale(1.02); }
  to   { transform: scale(1.16); }
}
.mock-sounds::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.05) 40%, rgba(0,0,0,0.85) 100%);
}
.perseusplay {
  position: absolute; top: 44%; left: 50%; transform: translate(-50%, -50%);
  z-index: 2; cursor: pointer;
  width: 82px; height: 82px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: flex; align-items: center; justify-content: center;
  color: #fff; transition: transform 0.15s ease, background 0.15s ease;
}
.perseusplay:hover { transform: translate(-50%, -50%) scale(1.06); background: rgba(255,255,255,0.22); }
.perseusplay .playicon { margin-left: 4px; }
.perseusplay .pauseicon { display: none; }
.perseusplay.playing .pauseicon { display: block; margin-left: 0; }
.perseusplay.playing .playicon { display: none; }
.perseusmeta {
  position: absolute; bottom: 26px; left: 22px; right: 22px; z-index: 2; text-align: center;
}
.perseusmeta h3 { font-size: 30px; font-weight: 700; letter-spacing: -0.02em; }
.perseusmeta .sub {
  color: rgba(255,255,255,0.82); font-size: 14.5px; line-height: 1.45;
  max-width: 30ch; margin: 8px auto 14px;
}
.perseusmeta .card { margin-top: 0; background: rgba(10,12,18,0.6); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.badge {
  display: inline-block; padding: 5px 12px; border-radius: 999px;
  background: rgba(52, 211, 153, 0.14); color: #34d399;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
}

/* ── Static pages (privacy, terms, support) ─────────────────────────── */
main.page { max-width: 680px; margin: 0 auto; padding: 110px 24px 80px; position: relative; z-index: 1; }
main.page h1 { font-size: 44px; }
main.page h2 { font-size: 24px; margin: 42px 0 10px; }
main.page p { margin: 12px 0; }
main.page a { color: var(--ink); text-decoration-color: rgba(255,255,255,0.4); }
main.page ul { margin: 12px 0 12px 22px; }
main.page li { margin: 6px 0; }
.updated { color: var(--dim); font-size: 14px; margin-bottom: 30px; }

footer {
  position: relative; z-index: 1;
  max-width: 1180px; margin: 0 auto; padding: 26px 28px 44px;
  border-top: 1px solid var(--line); color: var(--dim); font-size: 14px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
footer a { color: var(--dim); text-decoration: none; margin-right: 16px; }
footer a:hover { color: var(--ink); }

@media (max-width: 900px) {
  .split, section.stage:nth-of-type(even) .split { flex-direction: column; }
  .copy { max-width: 100%; }
  section.stage { padding: 16vh 7vw; }
  nav.pages { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .scrollhint, .mock-star .orb, .mock-compass .ping, .perseusbg { animation: none; }
}

/* ── The theme, one toggle away ─────────────────────────────────────── */
.theme-toggle {
  display: flex; align-items: center; gap: 8px;
  background: none; border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 14px; cursor: pointer; color: var(--ink);
  font: inherit; font-size: 12px;
}
.theme-toggle:hover { border-color: rgba(255, 255, 255, 0.35); }
.theme-toggle .bars { display: flex; gap: 3px; align-items: center; height: 16px; }
.theme-toggle .bars i {
  /* At rest the wave is already a wave: each bar holds its own height. */
  width: 3px; height: var(--h, 60%); border-radius: 2px; background: #fff;
}
.theme-toggle.playing .bars i { animation: eqbar 1.1s ease-in-out infinite; }
.theme-toggle .bars i:nth-child(1) { --h: 70%; animation-delay: 0s; }
.theme-toggle .bars i:nth-child(2) { --h: 100%; animation-delay: 0.15s; }
.theme-toggle .bars i:nth-child(3) { --h: 55%; animation-delay: 0.3s; }
.theme-toggle .bars i:nth-child(4) { --h: 88%; animation-delay: 0.08s; }
.theme-toggle .bars i:nth-child(5) { --h: 64%; animation-delay: 0.22s; }
@keyframes eqbar { 0%, 100% { height: 30%; } 50% { height: var(--h, 80%); } }
.theme-toggle svg { display: none; }
.theme-toggle svg { display: block; }

/* ── The Betelgeuse page, replicated whole: scrollable inside its phone ── */
.phone.tall { width: min(460px, 92vw); }
.mock-starpage { background: #000; }
.mock-starpage .pchrome {
  position: absolute; top: 16px; left: 16px; right: 16px; z-index: 3;
  display: flex; justify-content: space-between; pointer-events: none;
}
.mock-starpage .pbtn {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(30, 32, 38, 0.72); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: #fff;
}
.pagescroll {
  position: absolute; inset: 0; overflow-y: auto; background: #000;
  scrollbar-width: none; border-radius: inherit;
}
.pagescroll::-webkit-scrollbar { display: none; }
.starhero {
  position: relative; height: 330px;
  background:
    radial-gradient(1.4px 1.4px at 12% 30%, rgba(255,255,255,0.8), transparent 60%),
    radial-gradient(1px 1px at 78% 18%, rgba(255,255,255,0.65), transparent 60%),
    radial-gradient(1.2px 1.2px at 62% 74%, rgba(255,255,255,0.5), transparent 60%),
    radial-gradient(1px 1px at 30% 82%, rgba(255,255,255,0.6), transparent 60%),
    radial-gradient(1.6px 1.6px at 88% 55%, rgba(255,255,255,0.7), transparent 60%),
    #000;
}
.starhero .orbcanvas {
  position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  width: 265px; height: 265px;
}
.starhero .dragline {
  position: absolute; bottom: 12px; width: 100%; text-align: center;
  color: rgba(255, 255, 255, 0.4); font-size: 12px;
}
.starbody { padding: 18px 18px 30px; text-align: left; }
.starbody h1 { font-size: 34px; font-weight: 700; letter-spacing: -0.02em; margin: 4px 0 2px; }
.starbody .classline { color: rgba(255, 255, 255, 0.65); font-size: 13px; font-weight: 600; }
.starbody .tagline { font-size: 17px; font-weight: 500; margin: 14px 0 16px; color: rgba(255,255,255,0.9); }
.starbody h3 { font-size: 20px; font-weight: 700; margin: 24px 0 8px; }
.starbody p { font-size: 14.5px; line-height: 1.55; color: rgba(255, 255, 255, 0.85); margin: 8px 0; }
.starbody .slink { color: #64b5ff; font-weight: 500; }
.approw {
  display: flex; align-items: center; gap: 11px;
  background: rgba(255, 255, 255, 0.08); border-radius: 13px;
  padding: 12px 13px; margin: 10px 0;
}
.approw b { font-size: 14.5px; display: block; }
.approw small { color: rgba(255, 255, 255, 0.55); font-size: 11.5px; display: block; }
.approw .chev { margin-left: auto; color: rgba(255, 255, 255, 0.45); font-size: 19px; }
.approw .playbtn {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  background: rgba(255, 255, 255, 0.14);
  display: flex; align-items: center; justify-content: center; font-size: 14px;
}
.approw .eyebrow { letter-spacing: 0.14em; font-weight: 700; font-size: 10px; }
.approw .listenline { font-size: 15px; font-weight: 400; }
.statcard {
  background: rgba(255, 255, 255, 0.06); border-radius: 16px;
  padding: 8px 16px; margin: 16px 0;
}
.statcard .srow {
  display: flex; justify-content: space-between; align-items: baseline; gap: 14px;
  padding: 9px 0; font-size: 13px;
}
.statcard .srow span {
  color: rgba(255, 255, 255, 0.45); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; flex: none;
}
.statcard .srow b { font-weight: 500; font-size: 14px; text-align: right; }
.starbody figure { margin: 14px 0 18px; }
.starbody .gimg {
  width: 100%; border-radius: 12px; display: block; cursor: zoom-in;
}
.starbody figcaption {
  display: flex; gap: 10px; align-items: flex-start; justify-content: space-between;
  color: rgba(255, 255, 255, 0.6); font-size: 12px; margin-top: 7px; line-height: 1.45;
}
.starbody figcaption i { font-style: normal; color: rgba(255,255,255,0.5); }
.starbody .idea { color: rgba(255, 255, 255, 0.8); }
.starbody .sourceline { color: rgba(255, 255, 255, 0.35); font-size: 11px; margin-top: 18px; }

/* Lightbox: the gallery, full view */
#lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0, 0, 0, 0.92);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px; padding: 5vh 5vw; cursor: zoom-out;
}
#lightbox[hidden] { display: none; }
#lightbox img { max-width: 92vw; max-height: 78vh; border-radius: 10px; }
#lightbox p { color: var(--dim); font-size: 14px; max-width: 60ch; text-align: center; }
#lightboxClose {
  position: absolute; top: 22px; right: 26px;
  background: rgba(255, 255, 255, 0.1); border: none; color: #fff;
  width: 40px; height: 40px; border-radius: 50%; font-size: 22px; cursor: pointer;
}

/* The interactive lab's dial and presets */
.mock-spectrum canvas.strip { height: 54px; }
#specDial {
  width: 100%; appearance: none; -webkit-appearance: none;
  height: 4px; border-radius: 2px;
  background: linear-gradient(90deg, #b3441f, #e8b467, #f6f2e8, #cfe0ff, #9db9ff);
  outline: none;
}
#specDial::-webkit-slider-thumb {
  appearance: none; -webkit-appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: #fff; border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  cursor: ew-resize;
}
#specDial::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: #fff; border: none; cursor: ew-resize;
}
.presets { display: flex; gap: 7px; width: 100%; justify-content: center; flex-wrap: wrap; }
.starpreset {
  font: inherit; font-size: 12.5px; font-weight: 600; color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px; padding: 7px 13px; cursor: pointer;
}
.starpreset.on { background: #fff; color: #000; border-color: #fff; }

/* Lucide icons: real icons, stroke of the text around them */
.luc { flex: none; display: inline-block; vertical-align: -0.15em; }
.starhero .dragline .luc { vertical-align: -0.2em; }
.approw .pauseicon { display: none; }
.approw.playing .pauseicon { display: inline-block; }
.approw.playing .playicon { display: none; }
.approw.listen { cursor: pointer; }
.approw.listen.loading { opacity: 0.6; }
