:root {
  --bg: #060414;
  --bg-2: #0A0817;
  --surface: #111027;
  --surface-2: #181634;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #F5F3FF;
  --text-dim: #B5B0CC;
  --text-mute: #8682A4;
  --primary: #7C3AED;
  --primary-2: #8B5CF6;
  --primary-3: #A78BFA;
  --pink: #EC4899;
  --red: #F43F5E;
  --green: #34D399;
  --amber: #FBBF24;
  --blue: #60A5FA;
  --grad: linear-gradient(135deg, #A78BFA 0%, #EC4899 100%);
  --grad-soft: linear-gradient(135deg, rgba(139, 92, 246, 0.18), rgba(236, 72, 153, 0.18));
  --shadow-lg: 0 30px 80px -20px rgba(124, 58, 237, 0.35);
  --shadow-md: 0 16px 40px -16px rgba(0, 0, 0, 0.6);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --container: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video, iframe {
  max-width: 100%;
  display: block;
}

img {
  height: auto;
}

a {
  color: var(--primary-3);
  text-decoration: none;
  transition: color .2s var(--ease);
}

a:hover {
  color: #C4B5FD;
}

h1, h2, h3, h4, h5 {
  margin: 0 0 0.5em;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  font-weight: 800;
}

p {
  margin: 0 0 1em;
  color: var(--text-dim);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--primary);
  color: white;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  z-index: 1000;
}
.skip-link:focus { left: 12px; top: 12px; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container.narrow {
  max-width: 880px;
}

.center {
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-3);
  background: rgba(167, 139, 250, 0.1);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
  border: 1px solid rgba(167, 139, 250, 0.18);
}

.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--grad);
  color: white;
  box-shadow: 0 10px 30px -10px rgba(167, 139, 250, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.btn-primary:hover {
  color: white;
  box-shadow: 0 16px 40px -10px rgba(167, 139, 250, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: var(--line-strong);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.22);
}

.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-lg { padding: 14px 26px; font-size: 16px; }
.btn-xl { padding: 18px 34px; font-size: 17px; }

.btn-apple {
  background: linear-gradient(180deg, #1f1f24 0%, #0a0a0c 100%);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.btn-apple:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.store-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.store-ctas-center {
  justify-content: center;
  margin: 8px 0 14px;
}
.plan .store-ctas { align-self: flex-start; }
.plan .store-ctas .btn { align-self: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 4, 20, 0.72);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: 18px;
}
.brand:hover { color: var(--text); }

.brand-mark {
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: cover;
  filter: drop-shadow(0 6px 18px rgba(124, 58, 237, 0.45));
}
.foot-brand .brand-mark { width: 28px; height: 28px; border-radius: 7px; }

.primary-nav {
  display: flex;
  gap: 22px;
}

.primary-nav a {
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 500;
}
.primary-nav a:hover { color: var(--text); }

@media (max-width: 720px) {
  .primary-nav { display: none; }
}

section {
  padding: 80px 0;
  position: relative;
}

@media (min-width: 768px) {
  section { padding: 120px 0; }
}

.hero {
  padding-top: 60px;
  padding-bottom: 80px;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(124, 58, 237, 0.28), transparent 60%),
    radial-gradient(900px 600px at 0% 30%, rgba(236, 72, 153, 0.18), transparent 60%),
    var(--bg);
}

@media (min-width: 768px) {
  .hero { padding-top: 80px; padding-bottom: 120px; }
}

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

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.orb-1 { width: 440px; height: 440px; background: #7C3AED; top: -100px; right: -120px; }
.orb-2 { width: 520px; height: 520px; background: #EC4899; bottom: -200px; left: -160px; opacity: 0.4; }
.orb-3 { width: 320px; height: 320px; background: #6D28D9; top: 35%; left: 45%; opacity: 0.35; }

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: 1.15fr 1fr;
    gap: 64px;
  }
}

.hero-title {
  font-size: clamp(38px, 6.4vw, 76px);
  font-weight: 900;
  line-height: 1.04;
  margin-bottom: 22px;
  letter-spacing: -0.035em;
}

.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--text-dim);
  max-width: 56ch;
  margin-bottom: 28px;
}
.hero-sub strong {
  color: var(--text);
  font-weight: 700;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--text-mute);
  font-size: 13px;
}
.hero-badges li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}

.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-frame {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  background: #0A0817;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.04) inset;
  max-width: 360px;
  width: 100%;
  transform: perspective(1400px) rotateY(-6deg) rotateX(2deg);
  transition: transform .6s var(--ease);
}
.phone-frame:hover {
  transform: perspective(1400px) rotateY(0) rotateX(0);
}
.phone-frame img {
  width: 100%;
  display: block;
  border-radius: 0;
}

.phone-sm { max-width: 280px; }

.trust {
  padding: 36px 0;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.02));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  text-align: center;
}
@media (min-width: 720px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}
.trust-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 10px;
}
.trust-card strong {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}
.trust-card span {
  color: var(--text-mute);
  font-size: 13px;
}

.problem {
  padding: 80px 0 40px;
  text-align: center;
}
.problem h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  max-width: 28ch;
  margin: 0 auto 20px;
}
.problem p { font-size: 17px; max-width: 60ch; margin-left: auto; margin-right: auto; }

.section-head {
  margin-bottom: 56px;
  max-width: 760px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(30px, 4vw, 48px);
}
.section-head p {
  font-size: 17px;
  color: var(--text-dim);
}

.features-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .features-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; } }

.feature {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid var(--line);
  padding: 28px;
  border-radius: var(--radius-lg);
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.feature:hover {
  transform: translateY(-3px);
  border-color: rgba(167, 139, 250, 0.3);
  background: linear-gradient(180deg, rgba(167, 139, 250, 0.07), rgba(255,255,255,0.015));
}
.feature h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.feature p {
  font-size: 14.5px;
  color: var(--text-dim);
  margin: 0;
}
.ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: var(--grad-soft);
  border: 1px solid rgba(167, 139, 250, 0.22);
  color: var(--primary-3);
}
.ico svg { width: 22px; height: 22px; }
.ico-sos { background: linear-gradient(135deg, rgba(244, 63, 94, 0.18), rgba(236, 72, 153, 0.18)); border-color: rgba(244, 63, 94, 0.3); color: #FB7185; }
.ico-heart { background: linear-gradient(135deg, rgba(52, 211, 153, 0.18), rgba(96, 165, 250, 0.16)); border-color: rgba(52, 211, 153, 0.28); color: #34D399; }
.ico-flow { background: linear-gradient(135deg, rgba(96, 165, 250, 0.18), rgba(139, 92, 246, 0.18)); border-color: rgba(96, 165, 250, 0.28); color: #93C5FD; }
.ico-streak { background: linear-gradient(135deg, rgba(251, 191, 36, 0.18), rgba(244, 63, 94, 0.18)); border-color: rgba(251, 191, 36, 0.28); color: #FBBF24; }

.screen-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 80px;
}
.screen-row:last-child { margin-bottom: 0; }
@media (min-width: 900px) {
  .screen-row {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-bottom: 100px;
  }
  .screen-row.reverse .screen-copy { order: 2; }
  .screen-row.reverse .screen-art { order: 1; }
}

.screen-copy h3 {
  font-size: clamp(24px, 2.6vw, 34px);
  margin-bottom: 14px;
}
.screen-copy p {
  font-size: 16px;
  margin-bottom: 16px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--text-dim);
  font-size: 15px;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

.screen-art {
  display: flex;
  justify-content: center;
}

.video {
  background:
    radial-gradient(900px 400px at 50% -10%, rgba(124, 58, 237, 0.18), transparent 60%),
    var(--bg);
}

.video-frame {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 9 / 16;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-lg);
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.tech-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .tech-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .tech-grid { grid-template-columns: repeat(3, 1fr); } }

.tech {
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.tech::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.06), transparent 60%);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.tech:hover::before { opacity: 1; }
.tech h3 {
  font-size: 18px;
  margin: 0;
}
.tech p {
  font-size: 14.5px;
  margin: 0;
  color: var(--text-dim);
  flex: 1;
}
.tech .meta {
  font-size: 12px;
  color: var(--text-mute);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(167, 139, 250, 0.12);
  color: var(--primary-3);
  border: 1px solid rgba(167, 139, 250, 0.22);
}
.tech-sos .tag { color: #FB7185; background: rgba(244, 63, 94, 0.12); border-color: rgba(244, 63, 94, 0.22); }
.tech-sleep .tag { color: #93C5FD; background: rgba(96, 165, 250, 0.12); border-color: rgba(96, 165, 250, 0.22); }
.tech-energy .tag { color: #FBBF24; background: rgba(251, 191, 36, 0.12); border-color: rgba(251, 191, 36, 0.22); }
.tech-focus .tag { color: #34D399; background: rgba(52, 211, 153, 0.12); border-color: rgba(52, 211, 153, 0.22); }
.tech-calm .tag { color: var(--primary-3); }

.programs {
  background: linear-gradient(180deg, var(--bg) 0%, #0B0820 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.program-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .program-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .program-grid { grid-template-columns: repeat(4, 1fr); } }
.program {
  padding: 26px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--line);
}
.program h3 { font-size: 17px; }
.program p { font-size: 14.5px; margin: 0; color: var(--text-dim); }

.privacy {
  background:
    radial-gradient(700px 400px at 80% 20%, rgba(52, 211, 153, 0.08), transparent 60%),
    var(--bg);
}
.privacy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 980px) { .privacy-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }
.privacy h2 { font-size: clamp(26px, 3vw, 38px); }
.privacy-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.privacy-list li {
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.02);
  color: var(--text-dim);
  font-size: 15px;
}
.privacy-list strong { color: var(--text); margin-right: 4px; }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 880px;
  margin: 0 auto;
}
@media (min-width: 760px) { .pricing-grid { grid-template-columns: 1fr 1fr; } }

.plan {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.plan-pro {
  border-color: rgba(167, 139, 250, 0.35);
  background:
    radial-gradient(600px 200px at 100% 0%, rgba(236, 72, 153, 0.15), transparent 60%),
    linear-gradient(180deg, rgba(167, 139, 250, 0.08), rgba(255,255,255,0.01));
  box-shadow: 0 30px 80px -30px rgba(167, 139, 250, 0.45);
}
.plan h3 { font-size: 22px; margin: 0; }
.plan .price {
  font-size: 32px;
  font-weight: 800;
  margin: 0;
  color: var(--text);
  letter-spacing: -0.02em;
}
.plan .price span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mute);
  margin-left: 4px;
}
.plan ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.plan ul li {
  position: relative;
  padding-left: 24px;
  color: var(--text-dim);
  font-size: 15px;
}
.plan ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}
.plan .btn { align-self: flex-start; }
.plan-note {
  font-size: 12px;
  color: var(--text-mute);
  margin: 4px 0 0;
  line-height: 1.5;
}
.ribbon {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--grad);
  color: white;
}

.faq details {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 12px;
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.faq details[open] {
  background: rgba(167, 139, 250, 0.06);
  border-color: rgba(167, 139, 250, 0.25);
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--primary-3);
  transition: transform .2s var(--ease);
}
.faq details[open] summary::after { content: "−"; }
.faq details p {
  margin: 14px 0 4px;
  color: var(--text-dim);
  font-size: 15px;
}

.cta {
  text-align: center;
  padding: 100px 0 120px;
  background:
    radial-gradient(1000px 500px at 50% 0%, rgba(124, 58, 237, 0.32), transparent 60%),
    var(--bg);
}
.cta h2 {
  font-size: clamp(30px, 4vw, 48px);
  max-width: 22ch;
  margin: 0 auto 14px;
}
.cta p {
  font-size: 17px;
  color: var(--text-dim);
  margin-bottom: 28px;
}
.cta .tiny {
  margin-top: 18px;
  color: var(--text-mute);
  font-size: 13px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #050310;
  padding: 60px 0 30px;
  color: var(--text-mute);
  font-size: 14.5px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
}
.foot-brand p { color: var(--text-mute); max-width: 36ch; margin-top: 12px; font-size: 14px; }
.site-footer h4 {
  color: var(--text);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.site-footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer nav a {
  color: var(--text-mute);
  font-size: 14px;
}
.site-footer nav a:hover { color: var(--text); }
.foot-meta p { color: var(--text-mute); font-size: 14px; margin: 0; line-height: 1.7; }
.foot-meta a { color: var(--text-dim); }
.foot-bottom {
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: var(--text-mute);
}
.foot-bottom p { margin: 0; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .phone-frame { transform: none; }
}

::selection {
  background: rgba(167, 139, 250, 0.4);
  color: white;
}
