:root {
  color-scheme: dark;
  --ink: #07070a;
  --app-ink: #0b0b0e;
  --app-panel: #121216;
  --panel: rgba(12, 13, 18, 0.72);
  --panel-solid: #111218;
  --paper: #f7faf4;
  --muted: rgba(247, 250, 244, 0.68);
  --faint: rgba(247, 250, 244, 0.14);
  --line: rgba(247, 250, 244, 0.16);
  --mint: #9be15d;
  --teal: #00e3ae;
  --sky: #88e0ff;
  --blue: #7ba7ff;
  --amber: #ffc53d;
  --rose: #ff8fa3;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
  --sans: "Geist", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #07070a;
  overscroll-behavior: none;
}

body {
  margin: 0;
  min-width: 320px;
  background: transparent;
  overscroll-behavior: none;
  color: var(--paper);
  font-family: var(--sans);
  letter-spacing: 0;
}

body::selection {
  background: var(--mint);
  color: var(--app-ink);
}

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

main {
  background: linear-gradient(
    180deg,
    rgba(7, 7, 10, 0) 0%,
    rgba(7, 7, 10, 0) 60vh,
    rgba(7, 7, 10, 0.82) 95vh,
    #07070a 120vh
  );
}

button,
input {
  font: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.5' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.7'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.site-header {
  position: fixed;
  top: 1.5rem;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.header-pill {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.35rem 0.5rem 0.35rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(18, 18, 22, 0.45);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  max-width: 95%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--paper);
  font-weight: 800;
}

.brand-logo {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
  border-radius: 5px;
}

.brand-text {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.nav-links a {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
}

.nav-links a.active {
  color: var(--app-ink);
  background: var(--paper);
}

.header-cta {
  min-height: 2.1rem;
  padding: 0.45rem 1.15rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
  transition: background 180ms ease, border-color 180ms ease;
}

.header-cta:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 8.5rem clamp(1rem, 4vw, 3.5rem) 6rem;
  isolation: isolate;
}

#fluid-canvas {
  position: fixed;
  inset: 0;
  z-index: -10;
  width: 100vw;
  height: 100vh;
  display: block;
  background: #07070a;
  pointer-events: none;
}

#fluid-canvas.is-off {
  visibility: hidden;
}

.hero-shell {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-copy {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

h1,
h2,
h3 {
  color: var(--paper);
}

h1 {
  font-weight: 500;
  max-width: 850px;
  margin: 0 auto 1.5rem;
  font-size: clamp(3.2rem, 6.8vw, 6.2rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

h2 {
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h3 {
  font-weight: 600;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 0.65rem;
}

.hero-lede {
  max-width: 580px;
  margin: 0 auto 2.5rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  align-items: center;
}

.store-badge img {
  height: 170px;
  width: auto;
  transition: transform 180ms ease;
}

.plan-cta-peek {
  position: absolute;
  right: 6px;
  bottom: -14px;
  width: 48px;
  height: 48px;
  clip-path: inset(0 0 25% 0);
  transform: rotate(-8deg) translateY(30px);
  opacity: 0;
  pointer-events: none;
  transition: transform 300ms ease, opacity 300ms ease;
}

.plan-cta-text:hover .plan-cta-peek,
.plan-cta-text.is-auto-active .plan-cta-peek {
  transform: rotate(-8deg) translateY(0);
  opacity: 1;
}

.plan-cta-peek-eyes {
  transform-box: fill-box;
  transform-origin: center;
  animation: plan-cta-peek-blink 4s ease-in-out infinite;
}

@keyframes plan-cta-peek-blink {
  0%, 88%, 100% {
    transform: scaleY(1);
  }
  92% {
    transform: scaleY(0.1);
  }
}

.plan-cta-text {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 0;
  margin-top: 8px;
  border-radius: 999px;
  border: 1px solid var(--paper);
  background: var(--paper);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  overflow: hidden;
  transition: background 300ms ease, border-color 300ms ease, color 300ms ease;
}

.plan-cta-text.hero-cta-text {
  display: inline-block;
  width: auto;
  margin-top: 0;
  padding: 16px 32px;
  font-size: 1rem;
}

.plan-cta-text:hover,
.plan-cta-text.is-auto-active {
  background: var(--ink);
  border-color: var(--line);
  color: var(--paper);
}

.hero-cta-label {
  position: relative;
  z-index: 2;
}

.hero-cta-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 300ms ease;
}

.hero-cta-stars .pricing-star-dot {
  background: #fff;
}

.plan-cta-text:hover .hero-cta-stars,
.plan-cta-text.is-auto-active .hero-cta-stars {
  opacity: 1;
}

.store-badge:hover img {
  transform: translateY(-2px) scale(1.03);
}

.desktop-mockup {
  position: relative;
  width: min(100%, 1060px);
  justify-self: center;
  overflow: visible;
  display: block;
}

.mockup-frame {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  z-index: 1;
}

.mockup-screen {
  position: absolute;
  left: 10%;
  top: 1%;
  width: 80%;
  height: 88%;
  overflow: hidden;
  background: transparent;
  border-radius: 3.2% 3.2% 0 0 / 4% 4% 0 0;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.preview-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 3.2% 3.2% 0 0 / 4% 4% 0 0;
}

.widget-card {
  background: #ffffff;
  border-radius: 0.85rem;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  margin-bottom: 1.25rem;
  color: #0c0d12;
}

.widget-card:last-child {
  margin-bottom: 0;
}

.widget-header {
  font-size: 0.75rem;
  font-weight: 750;
  color: #71717a;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.spendings-hero {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.25rem;
}

.spendings-hero .amount {
  font-size: 2.6rem;
  font-weight: 600;
  color: #09090b;
  letter-spacing: -0.03em;
  line-height: 1;
}

.spendings-hero .trend {
  font-size: 0.8rem;
  font-weight: 600;
  color: #16a34a;
}

.widget-chart {
  height: 65px;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.chart-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.progress-container {
  margin-bottom: 1.5rem;
}

.progress-labels {
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  color: #71717a;
}

.white-text {
  color: #09090b;
  font-weight: 700;
}

.progress-bar {
  height: 6px;
  background: #e4e4e7;
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: #18181b;
  border-radius: 999px;
}

.widget-btn {
  width: 100%;
  background: #18181b;
  color: #ffffff;
  border: none;
  padding: 0.85rem;
  border-radius: 0.75rem;
  font-size: 0.88rem;
  font-weight: 650;
  cursor: pointer;
  transition: background 180ms ease, transform 150ms ease;
}

.widget-btn:hover {
  background: #09090b;
}

.widget-btn:active {
  transform: scale(0.98);
}

.task-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.task-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #f4f4f5;
  color: #18181b;
}

.task-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.task-item .checkbox {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  border: 1.5px solid #d4d4d8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #ffffff;
  transition: all 180ms ease;
}

.task-item.completed .checkbox {
  background: #18181b;
  border-color: #18181b;
  color: #ffffff;
}

.task-item .checkbox svg {
  width: 0.65rem;
  height: 0.65rem;
  display: none;
}

.task-item.completed .checkbox svg {
  display: block;
}

.task-item .task-text {
  font-size: 0.88rem;
  font-weight: 500;
  color: #27272a;
}

.task-item.completed .task-text {
  text-decoration: line-through;
  color: #a1a1aa;
}

.news-widget {
  background: #ffffff;
  border-radius: 0.85rem;
  padding: 1.5rem;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  color: #0c0d12;
  display: flex;
  flex-direction: column;
}

.news-header {
  font-size: 0.75rem;
  font-weight: 750;
  color: #71717a;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}

.news-feed {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
}

.news-item {
  border-bottom: 1px solid #f4f4f5;
  padding-bottom: 1.25rem;
}

.news-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.news-date {
  font-size: 0.75rem;
  font-weight: 600;
  color: #a1a1aa;
  display: block;
  margin-bottom: 0.35rem;
}

.news-title {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.15;
  color: #09090b;
  margin-bottom: 0.6rem;
}

.news-tags {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.tag {
  font-size: 0.7rem;
  font-weight: 600;
  background: #f4f4f5;
  color: #71717a;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
}

.news-excerpt {
  font-size: 0.85rem;
  line-height: 1.55;
  color: #52525b;
  margin: 0;
}

.button,
.waitlist-form button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.8rem 2.2rem;
  border: 1px solid var(--line);
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.waitlist-form button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.waitlist-form button:focus-visible,
input:focus-visible,
a:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 4px;
}

.button-primary,
.waitlist-form button {
  background: var(--paper);
  color: var(--app-ink);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.15);
}

.button-primary:hover,
.waitlist-form button:hover {
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.25);
}

.proof-band {
  width: min(1180px, calc(100% - clamp(2rem, 8vw, 7rem)));
  margin: clamp(2rem, 5vw, 4.5rem) auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-band div {
  min-height: 7rem;
  display: grid;
  align-content: center;
  gap: 0.6rem;
  padding: 1.2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.proof-band div:last-child {
  border-right: 0;
}

.proof-band span {
  color: var(--mint);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.proof-band strong {
  color: rgba(247, 250, 244, 0.88);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.2;
}

.section {
  padding: clamp(6.5rem, 12vw, 10.5rem) clamp(1rem, 4vw, 3.5rem);
  background: transparent;
}

.section > * {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.68fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.split p,
.privacy-copy p,
.waitlist-copy p {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.75;
}

.timeline {
  display: grid;
  align-content: start;
}

.timeline-nodes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.timeline-node {
  position: absolute;
  width: 280px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.timeline-node.revealed {
  opacity: 1;
  transform: translateY(0);
}

.timeline-node h3 {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 0.4rem;
}

.node-1 { left: 15%; top: 50%; }
.node-2 { left: 45%; top: 62%; }
.node-3 { left: 75%; top: 75%; }

.feature-index {
  display: inline-flex;
  margin-bottom: 1.25rem;
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.timeline-node p,
.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.story-pin-container {
  height: 600vh;
  background: transparent;
  position: relative;
  z-index: 10;
}

.story-sticky-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
}

.story-track {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.story-svg {
  width: 100%;
  height: 100%;
}

.story-content {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 90%;
  transform: translateY(-80%);
  pointer-events: none;
  z-index: 1;
}

.story-text {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
}

.story-text-1 { left: 15%; }
.story-text-2 { left: 35%; }
.story-text-3 { left: 55%; }
.story-text-4 { left: 75%; }

.story-text span {
  font-size: clamp(3rem, 5vw, 5rem);
  color: var(--faint);
  line-height: 1;
}

.story-text strong {
  font-family: var(--sans);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 500;
  margin-top: 0.5rem;
  max-width: 200px;
}

.checkins-pin-container {
  position: relative;
  height: 250vh;
}

.checkins-sticky-wrapper {
  position: sticky;
  top: 0;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  overflow: hidden;
  background: var(--bg);
  padding: 0;
}

.built-for-you-msg {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  font-size: clamp(2rem, 10vw, 8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  pointer-events: none;
  text-align: center;
  z-index: 50;
  color: var(--paper);
}

.built-for-you-msg.revealed {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.features-pin-container {
  position: relative;
  height: 300vh;
}

.features-sticky-wrapper {
  position: sticky;
  top: 0;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  overflow: hidden;
  background: var(--bg);
  padding: 0;
}

.feature-track {
  width: 100vw;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  transition: opacity 0.8s ease;
}

.feature-track.dimmed {
  opacity: 0.15;
}

.feature-svg {
  width: 100%;
  height: 60vh;
  display: block;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.feature-svg.revealed {
  opacity: 1;
}

.feature-nodes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.feature-node {
  position: absolute;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  width: min(90vw, 300px);
  padding: 1rem;
}

.feature-node h3 {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--paper);
}

.feature-node p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.9rem;
}

.feature-node.revealed {
  opacity: 1;
  transform: translateY(0);
}

.fnode-1 {
  left: 75%;
  top: 50%;
}

.fnode-2 {
  left: 52%;
  top: 60%;
}

.fnode-3 {
  left: 29%;
  top: 64%;
}

.fnode-4 {
  left: 6%;
  top: 80%;
}

.form-habits-msg {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  pointer-events: none;
  text-align: center;
  z-index: 50;
  color: var(--paper);
}

.form-habits-msg.revealed {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.checkin-track {
  width: 100vw;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  transition: opacity 0.8s ease;
}

.checkin-track.dimmed {
  opacity: 0.15;
}

.checkin-svg {
  width: 100%;
  height: 60vh;
  display: block;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.checkin-svg.revealed {
  opacity: 1;
}

@keyframes blink {
  0%, 92%, 98%, 100% {
    transform: scaleY(1);
  }
  95% {
    transform: scaleY(0.1);
  }
}

.perch-eye {
  transform-box: fill-box;
  transform-origin: center;
  animation: blink 4s infinite ease-in-out;
}

#storyEyes .perch-eye {
  animation: none;
}

#storyHole {
  opacity: 0;
  transition: opacity 0.9s ease;
}

#storyHole.is-glowing {
  opacity: 1;
}

#checkinPath,
#featurePath,
#privacyPath {
  stroke-width: 7;
}

.checkin-svg,
.feature-svg,
.privacy-svg,
.story-svg {
  filter: drop-shadow(0 0 5px rgba(168, 85, 247, 0.45));
}

.features-sticky-wrapper {
  background: transparent;
}

.features-sticky-wrapper.section {
  padding-top: clamp(2rem, 4vw, 4rem);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.feature-card {
  padding: 1.5rem 0 0;
  border: none;
  background: transparent;
}

.privacy-pin-container {
  position: relative;
  height: 250vh;
}

.privacy-sticky-wrapper {
  position: sticky;
  top: 0;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  overflow: hidden;
  background: var(--bg);
  padding: 0;
}

.privacy-track {
  position: absolute;
  top: 25vh;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.privacy-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.waiting-perches {
  opacity: 0;
}

.privacy-panel {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  width: min(1200px, calc(100% - clamp(2rem, 8vw, 7rem)));
  margin: 0 auto;
  opacity: 0;
  transform: translateY(40px);
}

.privacy-copy ul {
  display: grid;
  gap: 0.8rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.privacy-copy li {
  position: relative;
  padding-left: 1.6rem;
  color: rgba(247, 250, 244, 0.82);
  line-height: 1.6;
}

.privacy-copy li::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--mint);
}

.waitlist {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(290px, 0.65fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  width: min(1180px, calc(100% - clamp(2rem, 8vw, 7rem)));
  margin: clamp(4rem, 8vw, 8rem) auto;
  padding: clamp(2rem, 6vw, 4.5rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  background: rgba(18, 18, 22, 0.45);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.waitlist h2 {
  margin-bottom: 1.25rem;
}

.waitlist-form {
  display: grid;
  gap: 0.75rem;
}

.waitlist-form label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-row {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.waitlist-form input {
  flex: 1;
  min-height: 3.25rem;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 0 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  color: var(--paper);
  transition: border-color 180ms ease, background 180ms ease;
}

.waitlist-form input:focus {
  border-color: var(--mint);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.waitlist-form button {
  flex-shrink: 0;
  min-height: 3.25rem;
  padding: 0 2rem;
  border-radius: 999px;
  border: none;
  font-weight: 700;
  background: #ffffff;
  color: #000000;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.waitlist-form button:hover {
  transform: translateY(-2px);
  background: #f4f4f5;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.form-note {
  margin: 0.25rem 0 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: clamp(4.5rem, 10vw, 9rem);
  background: #07070a;
  overflow: clip;
  margin-top: -1px;
  padding: 1.5rem clamp(1rem, 4vw, 3.5rem) 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  margin-top: 2rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-grid-single {
  grid-template-columns: minmax(0, 380px);
  justify-content: center;
}

.pricing .split {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  gap: 0.75rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.pricing .split h2 {
  margin: 0;
}

.pricing .split p {
  max-width: 480px;
}

.plan-tagline {
  font-size: 0.85rem;
  opacity: 0.7;
  margin: -0.25rem 0 0.5rem;
}

.pricing-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 2.25rem 2rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
  color: var(--paper);
  text-align: left;
}

.pricing-card.featured {
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25), 0 0 35px rgba(139, 92, 246, 0.3);
}

.pricing-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pricing-stars {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 150px;
  pointer-events: none;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(4, 4, 12, 0.75) 0%, rgba(4, 4, 12, 0.35) 60%, rgba(4, 4, 12, 0) 100%);
}

.pricing-star-dot {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  animation: star-twinkle 3.4s ease-in-out infinite;
}

@keyframes star-twinkle {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.85;
  }
}

.shooting-star {
  position: absolute;
  left: var(--start-x);
  top: var(--start-y);
  width: 46px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.9));
  opacity: 0;
  animation: shooting-star-fly 1.4s ease-out forwards;
}

@keyframes shooting-star-fly {
  0% {
    left: var(--start-x);
    top: var(--start-y);
    opacity: 0;
  }
  12% {
    opacity: 0.95;
  }
  100% {
    left: var(--end-x);
    top: var(--end-y);
    opacity: 0;
  }
}

.badge-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.plan-badge {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  width: fit-content;
}

.plan-badge.pro-badge {
  background: rgba(155, 225, 93, 0.15);
  color: var(--mint);
}

.plan-badge.lifetime-badge {
  background: rgba(136, 224, 255, 0.15);
  color: var(--sky);
}

.promo-tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.plan-name {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.plan-price {
  display: flex;
  align-items: baseline;
  margin-bottom: 0.5rem;
  font-family: var(--sans);
}

.plan-price .currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
}

.plan-price .value {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

.plan-price .period {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  margin-left: 0.35rem;
}

.alternative-price {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.save-tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--mint);
  background: rgba(155, 225, 93, 0.1);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
}

.plan-desc {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--muted);
  margin-bottom: 1.75rem;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
}

.plan-features li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.75);
}

.plan-features li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #c084fc;
  font-weight: 700;
}

.plan-cta {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--paper);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 180ms ease;
  text-align: center;
}

.plan-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.pricing-card.featured .plan-cta {
  background: var(--paper);
  color: var(--app-ink);
  border: none;
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.15);
}

.pricing-card.featured .plan-cta:hover {
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.25);
}

@media (max-width: 920px) {
  .site-header {
    top: 1rem;
  }

  .header-pill {
    padding: 0.35rem 0.5rem 0.35rem 1rem;
    gap: 1rem;
  }

  .hero {
    min-height: auto;
    padding-top: 7rem;
  }

  .hero-shell,
  .split,
  .privacy-panel,
  .pricing-grid,
  .waitlist {
    grid-template-columns: 1fr;
  }

  .desktop-mockup {
    width: 100%;
  }

  .proof-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-band div:nth-child(2) {
    border-right: 0;
  }

  .proof-band div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 0.75rem;
  }

  .header-pill {
    gap: 0.5rem;
    padding: 0.25rem 0.4rem 0.25rem 0.8rem;
  }

  .brand-text {
    display: none;
  }

  .nav-links {
    gap: 0.15rem;
  }

  .nav-links a {
    padding: 0.25rem 0.3rem;
    font-size: 0.6rem;
  }

  .header-cta {
    padding: 0.35rem 0.85rem;
    font-size: 0.78rem;
    min-height: 1.8rem;
  }

  .hero {
    padding-top: 6.5rem;
  }

  h1 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
    letter-spacing: -0.03em;
  }

  h2 {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
  }

  h3 {
    font-size: clamp(1.0rem, 5vw, 1.2rem);
  }

  p,
  .hero-lede {
    font-size: clamp(0.85rem, 4vw, 0.95rem);
    line-height: 1.5;
  }

  .hero-actions,
  .form-row,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .waitlist-form button {
    width: 100%;
    min-height: 2.4rem;
    padding: 0.5rem 1.4rem;
    font-size: 0.82rem;
  }

  .signal-row,
  .proof-band {
    grid-template-columns: 1fr;
  }

  .proof-band div,
  .proof-band div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .proof-band div:last-child {
    border-bottom: 0;
  }

  .section {
    padding-top: 3rem;
    padding-bottom: 3rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .split {
    margin-bottom: 1.5rem;
  }

  .proof-band div {
    min-height: auto;
    padding: 0.85rem 1rem;
    font-size: 0.82rem;
  }

  .proof-band div span {
    font-size: 0.72rem;
  }

  .feature-card h3 {
    font-size: clamp(1.05rem, 4vw, 1.2rem);
    margin-bottom: 0.35rem;
  }

  .feature-card p {
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .voice-band {
    padding: 3rem 0;
  }

  .wave-marquee {
    height: clamp(120px, 40vw, 170px) !important;
  }

  .pricing-card {
    padding: 1.2rem 1.0rem;
  }

  .plan-name {
    font-size: 1.25rem;
    margin-bottom: 0.4rem;
  }

  .plan-price .value {
    font-size: 2.0rem;
  }

  .plan-price .currency {
    font-size: 0.9rem;
  }

  .plan-price .period {
    font-size: 0.8rem;
  }

  .alternative-price {
    font-size: 0.75rem;
    margin-bottom: 0.85rem;
  }

  .plan-desc {
    font-size: 0.8rem;
    margin-bottom: 0.95rem;
  }

  .plan-features {
    gap: 0.45rem;
    margin-bottom: 1.25rem;
  }

  .plan-features li {
    font-size: 0.78rem;
  }

  .plan-cta {
    min-height: 2.3rem;
    font-size: 0.8rem;
  }

  .pricing-grid {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .pricing-grid-single {
    display: flex;
    overflow: visible;
    scroll-snap-type: none;
  }

  .pricing-grid-single .pricing-card {
    flex: 1 1 auto;
  }

  .feature-grid {
    display: flex;
    gap: 1rem;
    overflow-x: hidden;
    overflow-y: hidden;
    scrollbar-width: none;
    touch-action: pan-y;
  }

  .feature-grid::-webkit-scrollbar,
  .pricing-grid::-webkit-scrollbar {
    display: none;
  }

  .feature-card,
  .pricing-card {
    flex: 0 0 80%;
    scroll-snap-align: start;
  }

  .pricing-card:hover {
    transform: none;
  }

  .pricing-card {
    padding: 1.5rem 1.25rem;
  }
  .pricing-card .plan-name {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }
  .pricing-card .plan-price .value {
    font-size: 2.25rem;
  }
  .pricing-card .plan-desc {
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
  }
  .pricing-card .plan-features {
    margin: 0 0 1.5rem 0;
    gap: 0.65rem;
  }
  .pricing-card .plan-features li {
    font-size: 0.82rem;
  }

  .pricing-grid-single .pricing-card {
    max-width: 320px;
    margin: 0 auto;
  }

  .plan-cta-text {
    padding: 12px 0;
    font-size: 0.85rem;
  }

  .plan-cta-text.hero-cta-text {
    align-self: center;
    width: max-content;
    max-width: 90%;
    padding: 12px 22px;
    font-size: 0.88rem;
  }

  .site-footer {
    gap: 3rem;
  }

  .waitlist {
    width: min(100% - 2rem, 1180px);
  }

  .story-text span {
    font-size: 2rem;
  }

  .story-text strong {
    font-size: 0.65rem;
    max-width: 18vw;
    line-height: 1.1;
    margin-top: 0.25rem;
  }

  .timeline-node {
    width: min(220px, 80vw);
  }
  
  .node-1 {
    left: 6%;
    right: auto;
    top: 54%;
    text-align: left;
  }

  .node-2 {
    left: 30%;
    right: auto;
    top: 63%;
    text-align: left;
  }

  .node-3 {
    left: 55%;
    right: auto;
    top: 72%;
    text-align: left;
  }

  .feature-node {
    padding: 0.5rem;
  }

  .fnode-1 {
    left: auto;
    right: 6%;
    top: 52%;
    text-align: right;
  }

  .fnode-2 {
    left: 38%;
    right: auto;
    top: 60%;
    text-align: left;
  }

  .fnode-3 {
    left: 21%;
    right: auto;
    top: 68%;
    text-align: left;
  }

  .timeline-node h3,
  .feature-node h3 {
    font-size: 0.55rem;
    letter-spacing: 0.03em;
    margin-bottom: 0.12rem;
  }

  .timeline-node p,
  .feature-node p {
    font-size: 0.5rem !important;
    line-height: 1.35 !important;
  }

  .timeline-node,
  .feature-node {
    width: min(150px, 48vw);
  }

  .perch-head-scaler {
    transform: scale(0.65);
    transform-origin: 0 -29px;
  }

  #checkinPath,
  #featurePath,
  #privacyPath {
    stroke-width: 12 !important;
  }

  .checkin-svg {
    height: 40vw;
  }

  .checkin-svg .perch-head-scaler {
    transform: scale(1.35);
    transform-box: fill-box;
    transform-origin: center;
  }

  .feature-svg {
    height: 40vw;
  }

  .feature-svg .perch-head-scaler {
    transform: scale(1.35);
    transform-box: fill-box;
    transform-origin: center;
  }

  #storyBallInner {
    transform: scale(1.35);
    transform-box: fill-box;
    transform-origin: center;
  }

  .form-habits-msg {
    font-size: clamp(1.75rem, 8vw, 2.75rem);
  }

  .checkins-pin-container {
    height: 180vh !important;
  }

  .features-pin-container {
    height: 200vh !important;
  }

  .privacy-pin-container {
    height: 180vh !important;
  }

  .fnode-4 {
    left: 6%;
    right: auto;
    top: 76%;
    text-align: left;
  }

  .privacy-panel {
    gap: 1rem;
    height: auto !important;
    padding-top: 4rem;
    padding-bottom: 5rem;
    align-items: start !important;
  }

  .privacy-panel > div {
    margin-top: 0 !important;
    transform: none !important;
  }

  #privacy-title {
    font-size: clamp(2rem, 7.5vw, 2.75rem) !important;
    line-height: 1.15 !important;
  }

  .privacy-track {
    top: 40vh;
  }

  .waiting-perches {
    transform: translate(670px, 200px);
  }
  .waiting-perches > g:nth-child(1) { transform: translate(0, 0); }
  .waiting-perches > g:nth-child(2) { transform: translate(66px, 0); }
  .waiting-perches > g:nth-child(3) { transform: translate(132px, 0); }
  .waiting-perches > g:nth-child(4) { transform: translate(198px, 0); }
  .waiting-perches > g:nth-child(5) { transform: translate(264px, 0); }

  .waiting-perches .perch-head-scaler {
    transform: translateY(-8px) scale(1.35);
    transform-box: fill-box;
    transform-origin: center;
  }

  #privacyBall .perch-head-scaler {
    transform: scale(1.35);
    transform-box: fill-box;
    transform-origin: center;
  }
}

.hero-eyebrow {
  display: block;
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.button-static,
.plan-cta-static {
  cursor: default;
}

.voice-band {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.wave-marquee {
  position: relative;
  width: 100%;
  height: clamp(200px, 26vw, 300px);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.wave-marquee svg {
  display: block;
  width: 100%;
  height: 100%;
}

.wave-marquee text {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 64px;
  letter-spacing: -1px;
  fill: var(--paper);
}

.footer-meta {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-note {
  color: rgba(255, 255, 255, 0.22);
}

.footer-link {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 180ms ease;
}

.footer-link:hover {
  color: var(--paper);
}

.footer-wordmark {
  font-weight: 500;
  font-size: clamp(5rem, 23vw, 20rem);
  line-height: 0.8;
  letter-spacing: -0.04em;
  text-align: center;
  color: var(--paper);
  user-select: none;
}

@media (max-width: 620px) {
  .footer-meta {
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    text-align: center;
  }

  .feature-grid,
  .pricing-grid {
    touch-action: pan-x pan-y;
    cursor: grab;
  }

  .feature-grid.dragging,
  .pricing-grid.dragging {
    scroll-snap-type: none;
    cursor: grabbing;
    user-select: none;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 700ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.music-toggle {
  display: inline-flex;
  align-items: center;
  padding: 4px 6px;
  margin-left: 0.15rem;
  border: none;
  background: none;
  color: var(--faint);
  cursor: pointer;
  line-height: 0;
  filter: none;
  transition: transform var(--duration-fast, 150ms) ease, color 200ms ease, filter 200ms ease;
}

.music-toggle:hover {
  transform: translateY(-1px);
  color: var(--muted);
}

.music-toggle.is-playing {
  color: var(--paper);
}

.eq {
  display: flex;
  align-items: center;
  gap: 2.5px;
  height: 15px;
}

.eq-bar {
  width: 2.5px;
  height: 100%;
  border-radius: 2px;
  background: currentColor;
  transform-origin: center;
  transform: scaleY(0.3);
  animation: eq-bounce 1s ease-in-out infinite;
  animation-play-state: paused;
}

.eq-bar:nth-child(1) { animation-delay: -0.15s; }
.eq-bar:nth-child(2) { animation-delay: -0.55s; }
.eq-bar:nth-child(3) { animation-delay: -0.05s; }
.eq-bar:nth-child(4) { animation-delay: -0.75s; }
.eq-bar:nth-child(5) { animation-delay: -0.35s; }

.music-toggle.is-playing .eq-bar {
  animation-play-state: running;
}

@keyframes eq-bounce {
  0%, 100% { transform: scaleY(0.3); }
  50% { transform: scaleY(1); }
}

@media (prefers-reduced-motion: reduce) {
  .music-toggle {
    transition: none;
  }
  .eq-bar {
    animation: none;
    transform: scaleY(0.6);
  }
}
