:root {
  --bg: #f7f1ed;
  --surface: #fffdfb;
  --ink: #2f2430;
  --muted: #87777f;
  --rose: #9b5d64;
  --gold: #b7a16b;
  --sage: #596b52;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--ink);
  background:
    linear-gradient(rgba(31, 24, 31, .72), rgba(31, 24, 31, .82)),
    radial-gradient(circle at 18% 24%, rgba(232, 196, 190, .4), transparent 18%),
    radial-gradient(circle at 82% 70%, rgba(183, 161, 107, .24), transparent 22%),
    linear-gradient(145deg, #211824, #3b2738);
}

button, textarea { font: inherit; }
button { cursor: pointer; }

.phone-shell {
  position: relative;
  width: min(100%, 420px);
  height: min(900px, calc(100vh - 48px));
  min-height: 760px;
  overflow: hidden;
  border: 10px solid #130f13;
  border-radius: 46px;
  background: var(--bg);
  box-shadow: 0 32px 90px rgba(0, 0, 0, .34);
}

.screen {
  height: calc(100% - 86px);
  overflow-y: auto;
  padding: 8px 20px 26px;
  scrollbar-width: none;
}
.screen::-webkit-scrollbar { display: none; }

.app-header, .brand-lockup, .bottom-nav {
  display: flex;
  align-items: center;
}

.app-header {
  justify-content: space-between;
  gap: 12px;
  padding: 22px 2px 20px;
}

.brand-lockup { gap: 12px; }
.brand-lockup h1 {
  margin: 0;
  font: 700 30px/1 Georgia, "Times New Roman", serif;
}
.brand-lockup p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.brand-mark, .icon-button {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(183, 161, 107, .5);
  background: #fff8f2;
  color: var(--rose);
  font: 700 13px/1 Georgia, "Times New Roman", serif;
}

.icon-button {
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: var(--surface);
  box-shadow: 0 12px 28px rgba(47, 36, 48, .12);
}

.brand-hero {
  position: relative;
  min-height: 285px;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 64% 28%, rgba(183, 161, 107, .28), transparent 24%),
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, .3), transparent 18%),
    linear-gradient(145deg, #2b2029, #6e4a55);
  box-shadow: 0 24px 60px rgba(47, 36, 48, .22);
}

.brand-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 32%, rgba(47, 36, 48, .82));
}

.candle {
  position: absolute;
  right: 26px;
  bottom: 34px;
  width: 46px;
  height: 78px;
  border-radius: 16px 16px 9px 9px;
  background: linear-gradient(#fff2dc, #c89370);
  box-shadow: 0 0 38px rgba(255, 217, 178, .52);
}
.candle::before {
  content: "";
  position: absolute;
  left: 17px;
  top: -22px;
  width: 12px;
  height: 22px;
  border-radius: 50% 50% 45% 45%;
  background: #ffe3a4;
}

.brand-hero-copy {
  position: absolute;
  z-index: 1;
  left: 20px;
  right: 20px;
  bottom: 18px;
  color: #fff9f5;
}
.brand-hero-copy p {
  margin: 0 0 8px;
  color: #ead9b7;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.brand-hero-copy h2 {
  max-width: 300px;
  margin: 0;
  font: 700 25px/1.1 Georgia, "Times New Roman", serif;
}

.mood-panel, .path-card {
  border: 1px solid rgba(183, 161, 107, .22);
  background: rgba(255, 250, 247, .94);
  box-shadow: 0 18px 44px rgba(47, 36, 48, .13);
}
.mood-panel {
  margin-top: 16px;
  padding: 24px 20px 18px;
  border-radius: 18px;
}
.mood-panel h2 {
  margin: 0 0 18px;
  font: 700 24px/1.1 Georgia, "Times New Roman", serif;
}
.mood-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
}
.mood-chip {
  min-height: 76px;
  border: 1px solid rgba(47, 36, 48, .1);
  border-radius: 12px;
  color: var(--ink);
  background: #fffdfb;
  font: 700 12px/1 Georgia, "Times New Roman", serif;
}
.mood-chip span {
  display: block;
  max-width: 100%;
  margin-top: 8px;
  color: var(--muted);
  font: 900 9px/1.05 Inter, sans-serif;
  overflow-wrap: anywhere;
  text-align: center;
}
.mood-chip.is-selected {
  border-color: rgba(155, 93, 100, .34);
  color: var(--rose);
  background: #fff5f3;
}
.mood-panel p {
  margin: 16px 0 0;
  color: #62515d;
  font-size: 14px;
  line-height: 1.45;
}

.mood-response {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.mood-prompt {
  padding: 13px 14px;
  border: 1px solid rgba(183, 161, 107, .22);
  border-radius: 17px;
  background: rgba(255, 253, 251, .62);
}

.mood-prompt span {
  display: block;
  margin-bottom: 6px;
  color: var(--rose);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.mood-prompt p {
  margin: 0;
  color: #4d4049;
  font: 700 15px/1.38 Georgia, "Times New Roman", serif;
}

.mood-action {
  min-height: 44px;
  border: 0;
  border-radius: 16px;
  color: #fffaf7;
  background: linear-gradient(135deg, #7e4d68, #9b5d64);
  box-shadow: 0 14px 28px rgba(126, 77, 104, .2);
  font-size: 13px;
  font-weight: 950;
}

.path-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.path-card {
  width: 100%;
  min-height: 100px;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 14px;
  border-radius: 18px;
  padding: 14px;
  text-align: left;
  transition: transform .22s ease, box-shadow .22s ease;
}
.path-card:hover { transform: translateY(-2px); }
.art-bubble {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--rose);
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, .92), transparent 34%),
    linear-gradient(145deg, #fff8f4, #efe3dd);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .7),
    inset 0 -12px 24px rgba(47, 36, 48, .035);
}
.art-bubble svg {
  width: 48px;
  height: 48px;
}
.art-bubble path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.art-bubble .icon-fill {
  fill: rgba(255, 253, 251, .62);
  stroke: rgba(47, 36, 48, .11);
}
.release-path .art-bubble {
  color: #9b5d64;
  background: linear-gradient(145deg, #fff8f5, #f2dfdc);
}
.word-path .art-bubble {
  color: #7e668e;
  background: linear-gradient(145deg, #fff9fb, #ebe1ef);
}
.prayer-path .art-bubble {
  color: #9a7440;
  background: linear-gradient(145deg, #fffaf0, #ede3cc);
}
.breathe-path .art-bubble {
  color: #596b52;
  background: linear-gradient(145deg, #fbfff8, #dfe8dc);
}
.path-card strong {
  display: block;
  font: 700 19px/1.05 Georgia, "Times New Roman", serif;
}
.path-card small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}
.arrow {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fffaf7;
  background: #3a2b37;
  font-size: 22px;
}

.bottom-nav {
  position: absolute;
  inset: auto 0 0;
  height: 86px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 8px 10px 13px;
  border-top: 1px solid rgba(47, 36, 48, .08);
  background: rgba(255, 250, 247, .94);
  backdrop-filter: blur(18px);
}
.bottom-nav button {
  border: 0;
  border-radius: 18px;
  background: transparent;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
}
.bottom-nav .is-active {
  color: #fffaf7;
  background: #3a2b37;
}

.sheet-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10;
  opacity: 0;
  background: rgba(26, 18, 28, .48);
  backdrop-filter: blur(3px);
  transition: opacity .22s ease;
}
.sheet-backdrop.is-open { opacity: 1; }

.bottom-sheet {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 11;
  width: min(calc(100vw - 48px), 410px);
  max-height: min(88vh, 680px);
  overflow-y: auto;
  padding: 12px 20px 18px;
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 30px;
  background:
    radial-gradient(circle at 18% 0%, rgba(201, 139, 136, .2), transparent 28%),
    linear-gradient(180deg, rgba(255, 253, 251, .98), rgba(250, 244, 240, .98));
  box-shadow: 0 28px 90px rgba(0, 0, 0, .36);
  opacity: 0;
  transform: translateX(-50%) translateY(24px) scale(.985);
  transition: transform .24s cubic-bezier(.2, .8, .2, 1), opacity .22s ease;
  scrollbar-width: none;
}
.bottom-sheet::-webkit-scrollbar { display: none; }
.bottom-sheet.is-open {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
}
.sheet-handle {
  width: 46px;
  height: 5px;
  margin: 4px auto 18px;
  border-radius: 999px;
  background: rgba(47, 36, 48, .14);
}
.sheet-close {
  position: absolute;
  right: 18px;
  top: 12px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(89, 107, 82, .28);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 253, 251, .74);
  font-size: 24px;
}
.sheet-kicker {
  margin: 0 0 8px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.sheet-title {
  margin: 0;
  font: 700 30px/1.08 Georgia, "Times New Roman", serif;
}
.sheet-body {
  margin: 12px 0 16px;
  color: #62515d;
  font-size: 15px;
  line-height: 1.55;
}
.release-card {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
  padding: 7px;
  border: 1px solid rgba(183, 161, 107, .22);
  border-radius: 20px;
  background: rgba(255, 253, 251, .72);
}
.release-step {
  min-height: 36px;
  display: flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 15px;
  color: #62515d;
  background: rgba(255, 253, 251, .74);
  font-size: 11px;
  font-weight: 950;
}
.prompt-rail {
  display: flex;
  gap: 8px;
  margin: 0 -20px 12px 0;
  padding-right: 20px;
  overflow-x: auto;
  scrollbar-width: none;
}
.prompt-rail::-webkit-scrollbar { display: none; }
.prompt-chip {
  flex: 0 0 auto;
  min-height: 38px;
  border: 1px solid rgba(47, 36, 48, .1);
  border-radius: 999px;
  padding: 0 13px;
  color: #62515d;
  background: #fbf4f1;
  font-size: 12px;
  font-weight: 850;
}
.vent-box {
  width: 100%;
  min-height: 132px;
  resize: vertical;
  padding: 17px;
  border: 1px solid rgba(126, 77, 104, .15);
  border-radius: 22px;
  color: var(--ink);
  background: linear-gradient(180deg, #fffdfb, #fff8f8);
  line-height: 1.5;
}
.release-meter {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  margin-top: 9px;
  color: var(--muted);
  font-size: 12px;
}
.release-meter span:first-child {
  color: var(--rose);
  font-weight: 950;
}
.saved-note {
  min-height: 22px;
  margin: 8px 0 -2px;
  color: var(--sage);
  font-size: 13px;
  font-weight: 850;
}
.action-row {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.primary-action, .quiet-action {
  min-height: 48px;
  border: 0;
  border-radius: 17px;
  padding: 0 17px;
  font-size: 14px;
  font-weight: 950;
}
.primary-action {
  flex: 1;
  color: #fff;
  background: linear-gradient(135deg, #7e4d68, #9b5d64);
  box-shadow: 0 14px 28px rgba(126, 77, 104, .24);
}
.quiet-action {
  color: #62515d;
  background: rgba(91, 56, 84, .07);
}
.soft-link-action {
  min-height: 38px;
  margin-top: 7px;
  border: 0;
  color: var(--muted);
  background: transparent;
  font-size: 12px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.mini-stack {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.mini-card {
  width: 100%;
  display: grid;
  gap: 5px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, .44);
  border-radius: 18px;
  color: var(--ink);
  text-align: left;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, .72), transparent 38%),
    rgba(255, 249, 243, .56);
  box-shadow:
    0 14px 28px rgba(47, 36, 48, .08),
    inset 0 1px 0 rgba(255, 255, 255, .74);
}

.mini-card strong {
  font-size: 14px;
  line-height: 1.2;
}

.mini-card span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.38;
}

.compact-list {
  max-height: 260px;
  overflow-y: auto;
  padding-right: 2px;
  scrollbar-width: none;
}

.compact-list::-webkit-scrollbar {
  display: none;
}

.quote-card,
.scripture-card,
.prayer-card,
.reading-card {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 20px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, .72), transparent 38%),
    rgba(255, 249, 243, .6);
  box-shadow:
    0 16px 34px rgba(47, 36, 48, .09),
    inset 0 1px 0 rgba(255, 255, 255, .76);
}

.quote-card p,
.prayer-card p {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.28;
}

.scripture-card {
  display: grid;
  gap: 8px;
}

.scripture-card strong,
.reading-card strong {
  color: var(--rose);
  font-size: 12px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.scripture-card p,
.reading-card span {
  margin: 0;
  color: #62515d;
  font-size: 15px;
  line-height: 1.48;
}

.prayer-card,
.reading-card {
  margin-top: 10px;
}

.reading-card {
  display: grid;
  gap: 10px;
}

.reading-bar {
  height: 8px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(47, 36, 48, .08);
}

.reading-bar span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  transition: width .5s ease;
}

.library-item {
  cursor: pointer;
}

.plan-option {
  cursor: pointer;
}

.plan-option.featured {
  border-color: rgba(199, 173, 116, .48);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, .78), transparent 38%),
    linear-gradient(145deg, rgba(255, 246, 228, .72), rgba(246, 232, 220, .58));
}

@media (max-width: 520px) {
  body { padding: 0; background: var(--bg); }
  .phone-shell {
    width: 100%;
    height: 100vh;
    min-height: 680px;
    border: 0;
    border-radius: 0;
  }
  .screen { padding-inline: clamp(14px, 4vw, 18px); }
  .bottom-sheet {
    bottom: 0;
    width: 100vw;
    border-radius: 28px 28px 0 0;
    border-inline: 0;
  }
}

/* Cinematic Anointed Threads luxury pass */
:root {
  --bg: #171017;
  --surface: rgba(255, 248, 242, .72);
  --surface-deep: rgba(41, 29, 39, .72);
  --ink: #251b24;
  --muted: #7d7174;
  --rose: #a2646b;
  --gold: #c7ad74;
  --sage: #65745d;
  --cream-glass: rgba(255, 249, 243, .68);
  --wine: #362330;
}

body {
  background:
    radial-gradient(circle at 50% 16%, rgba(203, 172, 126, .18), transparent 22%),
    radial-gradient(circle at 18% 72%, rgba(162, 100, 107, .2), transparent 25%),
    linear-gradient(rgba(17, 12, 17, .64), rgba(17, 12, 17, .88)),
    linear-gradient(145deg, #160f17, #3b2636 48%, #130d14);
}

.phone-shell {
  isolation: isolate;
  background:
    radial-gradient(circle at 50% -5%, rgba(255, 247, 235, .92), rgba(248, 238, 231, .78) 28%, transparent 58%),
    linear-gradient(180deg, #efe1d7 0%, #f6eee8 46%, #e8d8cf 100%);
  box-shadow:
    0 48px 120px rgba(0, 0, 0, .5),
    0 0 0 1px rgba(255, 255, 255, .08),
    inset 0 0 50px rgba(255, 255, 255, .42);
}

.phone-shell::before {
  content: "AT";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 142px;
  width: 330px;
  height: 330px;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
  border: 1px solid rgba(117, 92, 55, .13);
  border-radius: 50%;
  color: rgba(93, 67, 43, .08);
  font: 700 124px/1 Georgia, "Times New Roman", serif;
  letter-spacing: .02em;
  box-shadow:
    inset 0 0 0 24px rgba(255, 255, 255, .04),
    inset 0 0 0 26px rgba(117, 92, 55, .06);
  pointer-events: none;
}

.phone-shell::after {
  content: "ANOINTED THREADS";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 252px;
  width: 280px;
  transform: translateX(-50%);
  color: rgba(93, 67, 43, .09);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .22em;
  text-align: center;
  pointer-events: none;
}

.screen,
.bottom-nav {
  position: relative;
  z-index: 1;
}

.brand-mark {
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, .95), transparent 32%),
    linear-gradient(145deg, rgba(255, 248, 239, .92), rgba(215, 190, 151, .44));
  color: #6f4e36;
  box-shadow:
    0 12px 28px rgba(58, 38, 44, .12),
    inset 0 0 0 1px rgba(255, 255, 255, .62);
}

.icon-button {
  background:
    radial-gradient(circle at 35% 24%, rgba(255, 255, 255, .95), transparent 38%),
    rgba(255, 250, 244, .66);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 38px rgba(47, 36, 48, .18);
}

.brand-hero {
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, .22), transparent 18%),
    radial-gradient(circle at 68% 32%, rgba(210, 173, 105, .24), transparent 20%),
    radial-gradient(circle at 72% 68%, rgba(255, 223, 175, .18), transparent 20%),
    linear-gradient(145deg, #21161f 0%, #4d303e 54%, #1e141d 100%);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow:
    0 28px 70px rgba(47, 36, 48, .28),
    inset 0 1px 0 rgba(255, 255, 255, .18);
}

.hero-woman {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 40%;
  filter: saturate(.95) contrast(1.04) brightness(.9);
  transform: scale(1.02);
}

.brand-hero::before {
  content: "";
  position: absolute;
  inset: 25px auto auto 38px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(199, 173, 116, .16);
  border-radius: 50%;
  box-shadow: inset 0 0 0 18px rgba(199, 173, 116, .025);
}

.brand-hero::after {
  background:
    linear-gradient(180deg, rgba(23, 16, 23, .08) 12%, rgba(23, 16, 23, .74) 100%),
    linear-gradient(90deg, rgba(23, 16, 23, .86), rgba(23, 16, 23, .28) 48%, transparent 82%);
}

.mood-panel,
.path-card {
  border-color: rgba(255, 255, 255, .34);
  background:
    linear-gradient(135deg, rgba(255, 252, 248, .72), rgba(246, 236, 229, .5));
  backdrop-filter: blur(22px) saturate(1.1);
  box-shadow:
    0 24px 58px rgba(47, 36, 48, .14),
    inset 0 1px 0 rgba(255, 255, 255, .72),
    inset 0 -1px 0 rgba(70, 45, 58, .05);
}

.mood-panel {
  border-radius: 24px;
}

.mood-chip {
  border-color: rgba(255, 255, 255, .38);
  background:
    radial-gradient(circle at 35% 24%, rgba(255, 255, 255, .86), transparent 36%),
    rgba(255, 250, 245, .48);
  box-shadow:
    0 10px 20px rgba(63, 44, 56, .08),
    inset 0 1px 0 rgba(255, 255, 255, .72);
}

.mood-chip.is-selected {
  background:
    radial-gradient(circle at 35% 24%, rgba(255, 255, 255, .92), transparent 36%),
    linear-gradient(145deg, rgba(255, 244, 239, .82), rgba(224, 190, 181, .34));
  transform: translateY(-1px);
  box-shadow:
    0 16px 28px rgba(162, 100, 107, .16),
    inset 0 0 0 1px rgba(162, 100, 107, .18);
}

.mood-response {
  animation: softReveal .28s ease both;
}

.mood-prompt {
  border-color: rgba(255, 255, 255, .4);
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 255, 255, .78), transparent 34%),
    linear-gradient(145deg, rgba(255, 250, 245, .68), rgba(239, 223, 213, .48));
  box-shadow:
    0 16px 34px rgba(47, 36, 48, .09),
    inset 0 1px 0 rgba(255, 255, 255, .78);
}

.mood-action {
  background:
    radial-gradient(circle at 35% 22%, rgba(255, 255, 255, .22), transparent 35%),
    linear-gradient(145deg, #4b2e43, #20151f);
  box-shadow:
    0 16px 30px rgba(47, 36, 48, .2),
    inset 0 1px 0 rgba(255, 255, 255, .16);
}

@keyframes softReveal {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.path-list {
  gap: 15px;
}

.path-card {
  min-height: 112px;
  grid-template-columns: 78px minmax(0, 1fr) 30px;
  border-radius: 25px;
  padding: 16px;
}

.path-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 28px 64px rgba(47, 36, 48, .18),
    inset 0 1px 0 rgba(255, 255, 255, .76);
}

.art-bubble {
  position: relative;
  width: 76px;
  height: 76px;
  overflow: hidden;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .18), rgba(26, 16, 23, .26)),
    linear-gradient(145deg, rgba(255, 247, 239, .62), rgba(72, 48, 58, .16));
  background-size: cover, cover;
  background-position: center, center;
  box-shadow:
    0 18px 34px rgba(47, 36, 48, .18),
    inset 0 1px 0 rgba(255, 255, 255, .8),
    inset 0 -18px 30px rgba(58, 38, 44, .08);
}

.art-bubble::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, .54);
  pointer-events: none;
}

.art-bubble::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 8px;
  width: 28px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  filter: blur(7px);
}

.release-path .art-bubble {
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(26, 16, 23, .22)),
    url("her-space-section-objects.png");
  background-size: cover, 200% 200%;
  background-position: center, 0% 0%;
}

.word-path .art-bubble {
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, .1), rgba(26, 16, 23, .22)),
    url("her-space-section-objects.png");
  background-size: cover, 200% 200%;
  background-position: center, 100% 0%;
}

.prayer-path .art-bubble {
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(26, 16, 23, .18)),
    url("her-space-section-objects.png");
  background-size: cover, 200% 200%;
  background-position: center, 0% 100%;
}

.breathe-path .art-bubble {
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(26, 16, 23, .2)),
    url("her-space-section-objects.png");
  background-size: cover, 200% 200%;
  background-position: center, 100% 100%;
}

.art-bubble svg {
  display: none;
}

.lux-symbol,
.lux-symbol span {
  display: none;
}

.lux-symbol {
  inset: 0;
  transform-style: preserve-3d;
}

.paper {
  left: 20px;
  top: 17px;
  width: 29px;
  height: 39px;
  border-radius: 8px 8px 10px 10px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, .86), rgba(244, 224, 217, .78)),
    linear-gradient(#fff, #e8cbc3);
  box-shadow:
    0 12px 24px rgba(75, 42, 54, .2),
    inset 0 1px 0 rgba(255, 255, 255, .9);
}

.paper::before,
.paper::after {
  content: "";
  position: absolute;
  left: 7px;
  width: 15px;
  height: 1px;
  border-radius: 99px;
  background: rgba(98, 72, 77, .36);
}
.paper::before { top: 13px; }
.paper::after { top: 20px; width: 11px; }

.quill {
  left: 35px;
  top: 21px;
  width: 24px;
  height: 9px;
  transform: rotate(-42deg);
  border-radius: 90% 12px 90% 12px;
  background:
    linear-gradient(90deg, rgba(255, 247, 237, .95), rgba(159, 97, 106, .85));
  box-shadow: 0 10px 18px rgba(81, 45, 58, .22);
}
.quill::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 4px;
  width: 18px;
  height: 2px;
  background: #7d4b55;
}

.ink-drop {
  left: 48px;
  top: 49px;
  width: 7px;
  height: 7px;
  border-radius: 50% 50% 50% 10%;
  transform: rotate(-35deg);
  background: rgba(82, 47, 61, .75);
  box-shadow: 0 0 16px rgba(162, 100, 107, .35);
}

.message-card {
  left: 16px;
  top: 22px;
  width: 43px;
  height: 29px;
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .88), rgba(238, 224, 246, .72));
  box-shadow:
    0 16px 28px rgba(63, 46, 76, .18),
    inset 0 1px 0 rgba(255, 255, 255, .9);
}
.message-card::after {
  content: "";
  position: absolute;
  left: 10px;
  bottom: -6px;
  width: 11px;
  height: 11px;
  transform: rotate(45deg);
  border-radius: 0 0 3px 0;
  background: rgba(238, 224, 246, .78);
}

.gold-spark {
  right: 17px;
  top: 15px;
  width: 12px;
  height: 12px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, #fff2bd, #b79243);
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
  filter: drop-shadow(0 0 10px rgba(199, 173, 116, .6));
}

.soft-line {
  left: 26px;
  height: 2px;
  border-radius: 99px;
  background: rgba(83, 68, 96, .34);
  z-index: 2;
}
.soft-line.one { top: 32px; width: 22px; }
.soft-line.two { top: 39px; width: 15px; }

.halo {
  left: 18px;
  top: 13px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(199, 173, 116, .45);
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(199, 173, 116, .25);
}

.cross {
  left: 35px;
  top: 18px;
  width: 6px;
  height: 31px;
  border-radius: 99px;
  background: linear-gradient(90deg, #fff4c8, #a37c33 56%, #f5d88c);
  box-shadow: 0 10px 22px rgba(108, 76, 34, .24);
}
.cross::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 9px;
  width: 24px;
  height: 5px;
  border-radius: 99px;
  background: inherit;
}

.hands {
  bottom: 17px;
  width: 19px;
  height: 23px;
  border-radius: 12px 12px 15px 15px;
  background:
    linear-gradient(145deg, rgba(255, 237, 208, .92), rgba(179, 136, 80, .58));
  box-shadow: 0 10px 18px rgba(90, 63, 34, .18);
}
.left-hand {
  left: 19px;
  transform: rotate(-23deg);
}
.right-hand {
  right: 19px;
  transform: rotate(23deg);
}

.pearl {
  left: 23px;
  top: 20px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, #fff, rgba(255, 255, 255, .52) 24%, transparent 32%),
    radial-gradient(circle at 70% 75%, rgba(101, 116, 93, .3), transparent 38%),
    linear-gradient(145deg, #fbfff8, #b9c8b2);
  box-shadow:
    0 14px 26px rgba(67, 85, 61, .22),
    0 0 24px rgba(219, 237, 210, .55);
}

.leaf {
  top: 36px;
  width: 24px;
  height: 13px;
  border-radius: 100% 0 100% 0;
  background: linear-gradient(135deg, rgba(246, 255, 239, .95), rgba(101, 116, 93, .72));
  box-shadow: 0 10px 16px rgba(67, 85, 61, .18);
}
.left-leaf {
  left: 13px;
  transform: rotate(18deg);
}
.right-leaf {
  right: 13px;
  transform: rotate(-108deg);
}

.breath-ring {
  left: 14px;
  top: 14px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(235, 250, 229, .52);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(207, 232, 196, .38);
}

.path-card strong {
  color: #21161f;
}

.path-card small {
  color: #75696d;
}

.arrow {
  background:
    radial-gradient(circle at 35% 22%, rgba(255, 255, 255, .22), transparent 35%),
    linear-gradient(145deg, #4b2e43, #20151f);
  box-shadow:
    0 12px 24px rgba(47, 36, 48, .22),
    inset 0 1px 0 rgba(255, 255, 255, .14);
}

.bottom-nav {
  border-top-color: rgba(255, 255, 255, .28);
  background: rgba(255, 248, 242, .64);
  box-shadow: 0 -18px 38px rgba(47, 36, 48, .08);
}

.bottom-nav .is-active {
  background:
    radial-gradient(circle at 35% 24%, rgba(255, 255, 255, .2), transparent 35%),
    linear-gradient(145deg, #4b2e43, #20151f);
}

.bottom-sheet {
  background:
    radial-gradient(circle at 18% 0%, rgba(199, 173, 116, .18), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(162, 100, 107, .16), transparent 30%),
    linear-gradient(180deg, rgba(255, 253, 249, .92), rgba(241, 229, 219, .88));
  backdrop-filter: blur(28px) saturate(1.15);
}
