:root {
  --vos-bg: #0c0c0a;
  --vos-fg: #e8e5dc;
  --vos-dim: #8c887d;
  --vos-accent: #9bbf8a;
  --vos-accent-deep: #6b8c5e;
  --vos-hairline: rgba(232, 229, 220, 0.08);
  --vos-surface: rgba(255, 255, 255, 0.035);
  --vos-surface-2: rgba(255, 255, 255, 0.06);
  --vos-nav-bg: rgba(12, 12, 10, 0.78);
  --vos-trap: #c97a6d;
  --vos-r-card: 16px;
  --vos-r-card-lg: 20px;
  --vos-r-pill: 999px;
  --font-serif: "Shippori Mincho", serif;
  --font-sans: "IBM Plex Sans", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
}

* {
  box-sizing: border-box;
}

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

body {
  overflow-x: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.app-shell {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  background: var(--vos-bg);
}

.phone-shell {
  position: relative;
  width: min(100%, 430px);
  min-height: 100vh;
  padding: 0 0 104px;
  background: var(--vos-bg);
  color: var(--vos-fg);
  overflow-x: hidden;
}

.phone-shell-full {
  padding-top: 0;
  padding-bottom: 0;
}

.screen {
  padding: 12px 22px 26px;
}

.top-row,
.settings-head,
.evidence-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.kanji {
  font-family: var(--font-serif);
  font-size: 23px;
  line-height: 1;
}

.today-mark {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: var(--vos-dim);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow,
.mono-count {
  margin: 0;
  color: var(--vos-dim);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0;
}

.muted,
.empty-copy {
  color: var(--vos-dim);
  font-size: 13px;
  line-height: 1.55;
}

.glass-card {
  border: 1px solid var(--vos-hairline);
  border-radius: var(--vos-r-card);
  background: var(--vos-surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.icon-btn {
  width: 34px;
  height: 34px;
  border: 1px solid var(--vos-hairline);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--vos-accent);
  font-family: var(--font-mono);
  font-size: 18px;
  line-height: 1;
}

.btn {
  min-height: 44px;
  border: 1px solid var(--vos-hairline);
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.btn-primary {
  border-color: transparent;
  background: var(--vos-accent);
  color: var(--vos-bg);
}

.btn-ghost {
  background: transparent;
  color: var(--vos-dim);
}

.text-btn {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--vos-accent);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.chip,
.tag {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(155, 191, 138, 0.25);
  border-radius: var(--vos-r-pill);
  padding: 4px 9px;
  color: var(--vos-accent);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.tag {
  color: var(--vos-dim);
}

.tag-money {
  color: var(--vos-accent);
}

.tag-person {
  color: #b7caa9;
}

.tag-saved {
  color: #c7bda8;
}

.tag-sync {
  color: #a9bfa0;
}

.vision-carousel {
  margin-top: 18px;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.plate-track {
  position: relative;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--vos-hairline);
  border-radius: var(--vos-r-card-lg);
  overflow: hidden;
  background: #151511;
  touch-action: pan-y;
}

.vision-plate {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 280ms ease-out;
}

.vision-plate.is-active {
  opacity: 1;
}

.vision-plate img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.plate-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 14px;
}

.plate-dots button {
  width: 5px;
  height: 5px;
  border: 0;
  border-radius: 3px;
  padding: 0;
  background: var(--vos-hairline);
  transition: width 280ms ease-out, background 280ms ease-out;
}

.plate-dots button.is-active {
  width: 20px;
  background: var(--vos-accent);
}

.mantra-block {
  padding-top: 28px;
}

.mantra-block h1 {
  max-width: 330px;
  margin: 13px 0 0;
  font-size: clamp(26px, 7vw, 30px);
  line-height: 1.28;
}

.mantra-block h1 span {
  color: var(--vos-accent);
}

.identity-card {
  margin-top: 24px;
  padding: 14px 16px;
}

.identity-card p:last-child {
  margin: 7px 0 0;
  font-size: 13px;
  line-height: 1.45;
}

.ritual-cta {
  position: fixed;
  z-index: 18;
  right: calc(50% - min(50vw, 215px) + 22px);
  bottom: 118px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  border: 1px solid rgba(155, 191, 138, 0.32);
  border-radius: var(--vos-r-pill);
  padding: 0 14px 0 16px;
  background: rgba(155, 191, 138, 0.14);
  color: var(--vos-accent);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-title {
  padding-top: 20px;
}

.page-title h1 {
  margin: 0;
  font-size: 30px;
  line-height: 1.2;
}

.page-title h1 span {
  color: var(--vos-accent);
}

.page-title p {
  margin: 12px 0 0;
  color: var(--vos-dim);
  font-size: 13px;
  line-height: 1.55;
}

.lens-row {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.lens-chip {
  flex: 0 0 auto;
  min-height: 34px;
  border: 1px solid var(--vos-hairline);
  border-radius: var(--vos-r-pill);
  padding: 0 12px;
  background: transparent;
  color: var(--vos-dim);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lens-chip.is-active {
  border-color: rgba(155, 191, 138, 0.42);
  background: rgba(155, 191, 138, 0.1);
  color: var(--vos-accent);
}

.doubt-card {
  margin-top: 20px;
  padding: 16px 18px;
}

.doubt-card textarea {
  width: 100%;
  min-height: 86px;
  margin-top: 8px;
  border: 0;
  outline: 0;
  resize: vertical;
  background: transparent;
  color: var(--vos-dim);
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.35;
  text-decoration: line-through;
  text-decoration-color: rgba(155, 191, 138, 0.55);
  text-decoration-thickness: 1px;
}

.doubt-card textarea::placeholder {
  color: rgba(140, 136, 125, 0.7);
}

.reframe-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 0;
  color: var(--vos-accent);
}

.reframe-divider span {
  width: 1px;
  height: 22px;
  background: linear-gradient(to bottom, transparent, var(--vos-accent));
}

.reframe-divider p {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.output-card {
  border: 1px solid rgba(155, 191, 138, 0.32);
  border-radius: 18px;
  padding: 20px;
  background: linear-gradient(160deg, rgba(155, 191, 138, 0.1), rgba(155, 191, 138, 0.02));
}

.output-card .eyebrow {
  color: var(--vos-accent);
}

.output-text {
  margin-top: 11px;
  color: var(--vos-fg);
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.35;
}

.output-hint {
  margin: 14px 0 0;
  color: var(--vos-dim);
  font-size: 12px;
  font-style: italic;
}

.action-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.recent-list {
  margin-top: 24px;
}

.mini-entry {
  border-top: 1px solid var(--vos-hairline);
  padding: 12px 0;
}

.mini-entry span {
  color: var(--vos-dim);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mini-entry p {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.45;
}

.evidence-head h1,
.screen-compass h1,
.settings-head h1 {
  margin: 0;
  font-size: 25px;
  line-height: 1.1;
}

.rhythm-grid {
  display: grid;
  grid-template-columns: repeat(7, 6px);
  gap: 3px;
}

.rhythm-dot {
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--vos-hairline);
}

.rhythm-dot.level-1 {
  background: var(--vos-accent);
  opacity: 0.35;
}

.rhythm-dot.level-2 {
  background: var(--vos-accent);
  opacity: 0.55;
}

.rhythm-dot.level-3 {
  background: var(--vos-accent);
  opacity: 0.78;
}

.rhythm-dot.level-4 {
  background: var(--vos-accent);
  opacity: 1;
}

.doubt-buster {
  width: 100%;
  margin-top: 15px;
  padding: 13px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--vos-fg);
  text-align: left;
}

.doubt-buster strong,
.doubt-buster small {
  display: block;
}

.doubt-buster strong {
  font-weight: 400;
  font-size: 13px;
}

.doubt-buster small {
  margin-top: 2px;
  color: var(--vos-dim);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.timeline {
  position: relative;
  margin-top: 18px;
  padding-left: 24px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 0;
  left: 7px;
  width: 1px;
  background: var(--vos-hairline);
}

.timeline-entry {
  position: relative;
  padding-bottom: 18px;
}

.timeline-entry::before {
  content: "";
  position: absolute;
  top: 7px;
  left: -23px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--vos-accent);
}

.timeline-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.timeline-meta > span:first-child {
  color: var(--vos-dim);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.timeline-entry p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.fab {
  position: fixed;
  z-index: 20;
  right: calc(50% - min(50vw, 215px) + 22px);
  bottom: 118px;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  background: var(--vos-accent);
  color: var(--vos-bg);
  font-family: var(--font-serif);
  font-size: 30px;
  line-height: 1;
}

.segmented {
  display: flex;
  margin-top: 16px;
  border: 1px solid var(--vos-hairline);
  border-radius: 13px;
  padding: 3px;
  background: var(--vos-surface);
}

.segmented button {
  flex: 1;
  min-height: 34px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--vos-dim);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.segmented button.is-active {
  background: var(--vos-surface-2);
  color: var(--vos-fg);
}

.tab-panel {
  display: none;
  margin-top: 18px;
}

.tab-panel.is-active {
  display: block;
}

.test-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.test-card {
  padding: 14px 16px;
}

.test-card > p {
  margin: 6px 0 12px;
  font-size: 13px;
  line-height: 1.45;
}

.test-card > p:last-child {
  margin-bottom: 0;
  color: rgba(232, 229, 220, 0.88);
}

.test-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.test-row span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.test-row.trap span {
  background: var(--vos-trap);
}

.test-row.action span {
  background: var(--vos-accent);
}

.test-row.action .eyebrow {
  color: var(--vos-accent);
}

.expander-grid {
  display: grid;
  gap: 12px;
}

.expander-card {
  padding: 14px;
}

.expander-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(155, 191, 138, 0.16);
  color: var(--vos-accent);
  font-family: var(--font-serif);
  font-size: 18px;
}

.expander-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expander-card h2 {
  margin: 12px 0 5px;
  font-size: 19px;
}

.expander-card p {
  margin: 0;
  color: var(--vos-dim);
  font-size: 13px;
  line-height: 1.45;
}

.profile-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--vos-accent);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.map-panel .glass-card {
  padding: 18px;
}

.map-panel h2 {
  margin: 8px 0;
  font-size: 24px;
}

.map-panel p:last-child {
  color: var(--vos-dim);
  font-size: 13px;
  line-height: 1.55;
}

.bottom-sheet,
.memory-modal,
.pulse-overlay {
  position: fixed;
  z-index: 60;
  inset: 0;
  display: none;
  background: rgba(12, 12, 10, 0.82);
}

.bottom-sheet.is-open,
.memory-modal.is-open,
.pulse-overlay.is-open {
  display: block;
}

.sheet-panel {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(100%, 430px);
  transform: translateX(-50%);
  border: 1px solid var(--vos-hairline);
  border-bottom: 0;
  border-radius: 22px 22px 0 0;
  padding: 22px;
  background: #10100d;
}

.sheet-close {
  position: absolute;
  top: 16px;
  right: 16px;
}

.sheet-panel h2 {
  margin: 8px 42px 18px 0;
  font-size: 25px;
}

.stack-form,
.settings-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

label span {
  color: var(--vos-dim);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--vos-hairline);
  border-radius: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--vos-fg);
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 82px;
}

select {
  appearance: none;
}

.memory-modal {
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.memory-modal.is-open {
  display: flex;
}

.memory-modal > div {
  width: min(100%, 380px);
}

.memory-modal h2 {
  margin: 12px 0;
  font-size: 28px;
  line-height: 1.25;
}

.memory-modal p:last-child {
  color: var(--vos-dim);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pulse-overlay {
  color: var(--vos-fg);
}

.pulse-overlay.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.pulse-close {
  position: fixed;
  top: 18px;
  right: max(18px, calc(50% - 196px));
  z-index: 70;
}

.pulse-inner {
  width: min(100%, 380px);
}

.pulse-inner h2 {
  margin: 14px 0 24px;
  font-size: clamp(34px, 10vw, 54px);
  line-height: 1.08;
}

.ritual-page .phone-shell {
  width: 100%;
  max-width: none;
  min-height: 100vh;
  padding: 0;
}

.ritual-screen {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #050504;
}

.ritual-close {
  position: fixed;
  z-index: 10;
  top: 18px;
  right: 18px;
}

.ritual-images {
  position: absolute;
  inset: 0;
  opacity: 0.22;
}

.ritual-images img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1600ms ease-out;
}

.ritual-images img.is-active {
  opacity: 1;
}

.ritual-copy {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
}

.ritual-copy h1 {
  max-width: 760px;
  margin: 14px 0 0;
  font-size: clamp(40px, 11vw, 82px);
  line-height: 1.05;
}

.ritual-progress {
  width: 100%;
  height: 2px;
  overflow: hidden;
  background: rgba(232, 229, 220, 0.12);
}

.ritual-screen > .ritual-progress {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
}

.ritual-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--vos-accent);
}

.ritual-screen.is-running .ritual-progress span,
.pulse-overlay.is-open .ritual-progress span {
  animation: ritual-progress 17s linear forwards;
}

@keyframes ritual-progress {
  to {
    width: 100%;
  }
}

.auth-page .phone-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px 22px;
}

.auth-panel {
  width: 100%;
  border: 1px solid var(--vos-hairline);
  border-radius: 20px;
  padding: 22px;
  background: var(--vos-surface);
}

.auth-panel h1 {
  margin: 10px 0;
  font-size: 30px;
  line-height: 1.15;
}

.notice {
  border: 1px solid rgba(155, 191, 138, 0.28);
  border-radius: 13px;
  padding: 11px 13px;
  background: rgba(155, 191, 138, 0.08);
  color: var(--vos-accent);
  font-size: 13px;
}

.notice-error {
  border-color: rgba(201, 122, 109, 0.35);
  background: rgba(201, 122, 109, 0.08);
  color: #d89a90;
}

.screen-settings {
  padding-bottom: 40px;
}

.settings-head {
  justify-content: flex-start;
  margin-bottom: 18px;
}

.settings-section {
  margin-top: 16px;
  padding: 16px;
}

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

.plate-list article {
  display: flex;
  align-items: center;
  gap: 12px;
}

.plate-list img,
.settings-thumb {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  object-fit: cover;
}

.plate-list p {
  margin: 0 0 7px;
  font-size: 13px;
}

.edit-pair,
.expander-edit {
  border-top: 1px solid var(--vos-hairline);
  padding-top: 14px;
  display: grid;
  gap: 12px;
}

.tabbar {
  position: fixed;
  z-index: 40;
  left: 50%;
  bottom: 0;
  width: min(100%, 430px);
  transform: translateX(-50%);
  border-top: 1px solid var(--vos-hairline);
  padding: 14px 18px calc(18px + env(safe-area-inset-bottom));
  display: flex;
  justify-content: space-around;
  background: var(--vos-nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.tabbar-link {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: rgba(140, 136, 125, 0.65);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tabbar-link.is-active {
  color: var(--vos-accent);
}

.tabbar-icon {
  position: relative;
  width: 22px;
  height: 22px;
}

.icon-target,
.icon-compass {
  border: 1.4px solid currentColor;
  border-radius: 50%;
}

.icon-target::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1.4px solid currentColor;
  border-radius: 50%;
}

.icon-arrows::before,
.icon-arrows::after {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  height: 1.4px;
  background: currentColor;
}

.icon-arrows::before {
  top: 7px;
}

.icon-arrows::after {
  bottom: 7px;
}

.icon-lines::before {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  top: 5px;
  height: 1.4px;
  background: currentColor;
  box-shadow: 0 6px 0 currentColor, 0 12px 0 currentColor;
}

.icon-compass::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  width: 6px;
  height: 10px;
  background: currentColor;
  clip-path: polygon(100% 0, 50% 100%, 0 43%);
}

.icon-pulse {
  width: 16px;
  height: 12px;
  background: currentColor;
  clip-path: polygon(0 58%, 24% 58%, 35% 0, 56% 100%, 68% 48%, 100% 48%, 100% 60%, 75% 60%, 57% 100%, 35% 20%, 27% 70%, 0 70%);
}

.icon-settings,
.icon-edit {
  position: relative;
  width: 16px;
  height: 16px;
  display: inline-block;
}

.icon-settings {
  border: 1.4px solid currentColor;
  border-radius: 50%;
}

.icon-settings::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1.4px solid currentColor;
  border-radius: 50%;
}

.icon-settings::after {
  content: "";
  position: absolute;
  left: 7px;
  top: -3px;
  width: 1.4px;
  height: 22px;
  background: currentColor;
  box-shadow: -6px 6px 0 -0.1px currentColor, 6px -6px 0 -0.1px currentColor;
  transform: rotate(45deg);
}

.icon-edit::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 9px;
  width: 12px;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  transform: rotate(-35deg);
}

.icon-edit::after {
  content: "";
  position: absolute;
  left: 1px;
  bottom: 1px;
  width: 13px;
  height: 1px;
  background: currentColor;
}

.icon-arrow {
  position: relative;
  width: 15px;
  height: 15px;
  display: inline-block;
}

.icon-arrow::before,
.icon-arrow::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.icon-arrow::before {
  left: 1px;
  right: 2px;
  top: 7px;
  height: 1px;
}

.icon-arrow::after {
  right: 2px;
  top: 4px;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  background: transparent;
  transform: rotate(45deg);
}

.icon-doubt {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border: 1.5px solid var(--vos-accent);
  border-radius: 50%;
}

.icon-doubt::after {
  content: "?";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vos-accent);
  font-family: var(--font-mono);
  font-size: 11px;
}

@media (min-width: 720px) {
  .phone-shell {
    min-height: 844px;
    margin: 28px 0;
    border: 1px solid rgba(232, 229, 220, 0.06);
    border-radius: 28px;
    overflow: hidden;
  }

  .tabbar {
    position: absolute;
    left: 0;
    width: 100%;
    transform: none;
  }

  .ritual-cta,
  .fab {
    position: absolute;
    right: 22px;
  }
}
