:root {
  --bg: #000000;
  --surface: #1c1c1e;
  --surface-2: #2c2c2e;
  --text: #ffffff;
  --text-secondary: #8e8e93;
  --text-tertiary: #636366;
  --accent: #0a84ff;
  --urgent: #ff453a;
  --soon: #ff9f0a;
  --someday: #34c759;
  --border: #38383a;
  --radius: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100%;
}

body {
  overflow-x: hidden;
}

a {
  color: inherit;
}

.glow {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(40px);
}

.glow-blue {
  width: 560px;
  height: 560px;
  background: rgba(10, 132, 255, 0.22);
  top: -180px;
  left: 50%;
  transform: translateX(-30%);
}

.glow-orange {
  width: 320px;
  height: 320px;
  background: rgba(255, 159, 10, 0.12);
  top: 38%;
  right: -80px;
}

.glow-green {
  width: 280px;
  height: 280px;
  background: rgba(52, 199, 89, 0.1);
  bottom: -40px;
  left: -60px;
}

.site-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 28px 40px;
}

.logo {
  position: relative;
  display: inline-flex;
  color: var(--text);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -1.4px;
  text-decoration: none;
  line-height: 1;
}

.logo-dot {
  position: absolute;
  top: -4px;
  right: -12px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(10, 132, 255, 0.9);
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-header nav a {
  color: var(--text-secondary);
  font-size: 15px;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
}

.site-header nav a:hover,
.site-header nav a.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-btn {
  color: var(--text) !important;
  background: rgba(10, 132, 255, 0.18);
}

.nav-btn:hover,
.nav-btn.is-active {
  background: rgba(10, 132, 255, 0.32) !important;
}

.page {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

.page.home {
  padding-top: 48px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(10, 132, 255, 0.14);
  color: #64d2ff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.wordmark {
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -4px;
  line-height: 1;
  background: linear-gradient(180deg, #fff 40%, #8ec5ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tagline {
  margin-top: 14px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 24px;
  letter-spacing: -0.32px;
}

.pills {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.pill {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
}

.pill.urgent {
  color: var(--urgent);
  background: rgba(255, 69, 58, 0.14);
}

.pill.soon {
  color: var(--soon);
  background: rgba(255, 159, 10, 0.14);
}

.pill.someday {
  color: var(--someday);
  background: rgba(52, 199, 89, 0.14);
}

.phone {
  margin: 36px auto 28px;
  padding: 28px 16px 20px;
  border-radius: 32px;
  background: linear-gradient(180deg, #1c1c1e 0%, #111113 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 0 1px rgba(10, 132, 255, 0.08),
    0 24px 80px rgba(10, 132, 255, 0.12);
}

.phone-notch {
  width: 92px;
  height: 8px;
  border-radius: 999px;
  background: #2c2c2e;
  margin: 0 auto 18px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.card {
  display: flex;
  align-items: center;
  background: #2c2c2e;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 68px;
  animation: rise 0.7s ease both;
}

.card-1 { animation-delay: 0.1s; }
.card-2 { animation-delay: 0.25s; }
.card-3 { animation-delay: 0.4s; }

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

.stripe {
  width: 3px;
  align-self: stretch;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin: 0 12px;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.card-copy {
  min-width: 0;
  padding-right: 14px;
}

.card-title {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.24px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-meta {
  margin-top: 3px;
  font-size: 12px;
  font-weight: 600;
}

.actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.store-btn,
.ghost-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 56px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.4px;
}

.store-btn {
  background: #fff;
  color: #000;
  box-shadow: 0 10px 40px rgba(10, 132, 255, 0.28);
}

.store-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 48px rgba(10, 132, 255, 0.4);
}

.store-btn svg {
  display: block;
}

.ghost-btn {
  color: var(--text);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.ghost-btn:hover {
  background: rgba(255, 255, 255, 0.06);
}

.store-note {
  margin-top: 14px;
  text-align: center;
  color: var(--text-tertiary);
  font-size: 13px;
}

.footer-links {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 13px;
  color: var(--text-secondary);
}

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

.page.legal-page {
  max-width: 640px;
  padding-top: 32px;
}

.page h1 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.36px;
}

.page.home h1.wordmark {
  font-size: 72px;
  letter-spacing: -4px;
}

.updated {
  margin-top: 8px;
  color: var(--text-tertiary);
  font-size: 13px;
}

.legal {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.legal h2 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.41px;
  margin-bottom: 8px;
}

.legal p,
.legal li {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 22px;
  letter-spacing: -0.24px;
}

.legal ul {
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.legal a {
  color: var(--accent);
}

.support-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 28px;
  border: 1px solid rgba(10, 132, 255, 0.18);
}

.support-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 22px;
}

.support-card a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 480px) {
  .page.home h1.wordmark {
    font-size: 56px;
  }

  .site-header {
    padding: 20px;
  }

  .logo {
    font-size: 24px;
  }

  .site-header nav {
    gap: 4px;
  }

  .site-header nav a {
    padding: 6px 10px;
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .card {
    animation: none;
  }
}
