:root {
  --background: #f6f5f1;
  --background-soft: #efede6;
  --surface: #ffffff;
  --surface-soft: #fbfaf7;
  --ink: #0e0e10;
  --text: #1f2024;
  --muted: #74737a;
  --faint: #a8a6ac;
  --line: #e8e5dd;
  --line-soft: #f0ede6;
  --wash: #f1efe8;
  --primary: #0e0e10;
  --primary-text: #fbfaf7;
  --accent: #10b981;
  --accent-soft: #e8faf2;
  --warning: #f97366;
  --warning-soft: #ffeeea;
  --shadow: rgba(10, 10, 11, 0.16);
  --chores: #7c6bff;
  --family: #d9a047;
  --errands: #0ea5e9;
  --trip: #8b5cf6;
  --work: #2563eb;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 90px;
}

body {
  background: var(--background);
  color: var(--text);
  font-family:
    "Avenir Next", Avenir, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body::before {
  background-image:
    linear-gradient(rgba(14, 14, 16, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 14, 16, 0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  content: "";
  inset: 0;
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 72%);
  mask-image: linear-gradient(to bottom, black, transparent 72%);
  pointer-events: none;
  position: fixed;
  z-index: -5;
}

::selection {
  background: var(--accent);
  color: var(--primary-text);
}

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

.site-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 18px 28px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand,
.site-header nav,
.hero-actions,
.trust-strip,
.section-heading,
.download-card,
footer {
  align-items: center;
  display: flex;
}

.brand {
  background: rgba(251, 250, 247, 0.82);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(10, 10, 11, 0.08);
  gap: 9px;
  padding: 7px 12px 7px 8px;
  backdrop-filter: blur(18px);
}

.brand img {
  border-radius: 8px;
  height: 28px;
  width: 28px;
}

.brand span,
.site-header nav a {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.site-header nav {
  background: rgba(251, 250, 247, 0.82);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(10, 10, 11, 0.08);
  gap: 4px;
  padding: 5px;
  backdrop-filter: blur(18px);
}

.site-header nav a {
  border-radius: 999px;
  padding: 9px 12px;
}

.site-header nav a:hover {
  background: var(--wash);
}

.hero {
  isolation: isolate;
  min-height: 100vh;
  overflow: hidden;
  padding: 154px 28px 84px;
  position: relative;
}

.hero::before {
  background:
    linear-gradient(rgba(246, 245, 241, 0.82), rgba(246, 245, 241, 0.9)),
    url("/assets/splash-icon.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: min(860px, 92vw);
  content: "";
  inset: 0;
  opacity: 0.18;
  position: absolute;
  z-index: -2;
}

.hero-scene {
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.hero-copy {
  max-width: 720px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  color: var(--ink);
  font-size: clamp(60px, 7vw, 96px);
  line-height: 0.9;
  margin: 0;
  max-width: 720px;
}

.hero-text {
  color: var(--text);
  font-size: 22px;
  font-weight: 650;
  line-height: 1.45;
  margin: 24px 0 0;
  max-width: 620px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.primary-button,
.secondary-button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 15px;
  font-weight: 900;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.primary-button {
  background: var(--primary);
  box-shadow: 0 14px 30px rgba(10, 10, 11, 0.2);
  color: var(--primary-text);
}

.secondary-button {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

.primary-button:hover {
  box-shadow: 0 18px 40px rgba(10, 10, 11, 0.26);
}

.fallback-note {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  margin: 14px 0 0;
  max-width: 490px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-proof span {
  align-items: center;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  gap: 5px;
  min-height: 34px;
  padding: 0 12px;
}

.hero-proof strong {
  color: var(--ink);
}

.app-shot {
  background: var(--background);
  border: 1px solid rgba(14, 14, 16, 0.08);
  box-shadow: 0 30px 90px rgba(10, 10, 11, 0.18);
  margin: 0;
  overflow: hidden;
}

.app-shot img {
  display: block;
  height: auto;
  width: 100%;
}

.hero-device {
  border-radius: 38px;
  position: absolute;
  right: 8vw;
  top: 104px;
  transform: rotate(3deg);
  width: 330px;
}

.floating-shot {
  border-radius: 30px;
  height: 372px;
  opacity: 0.98;
  position: absolute;
  width: 172px;
}

.floating-shot img {
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.balance-shot {
  right: 33vw;
  top: 456px;
  transform: rotate(-5deg);
}

.calendar-shot {
  right: 3.5vw;
  top: 536px;
  transform: rotate(5deg);
}

.phone {
  background: #0a0a0c;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 36px;
  box-shadow: 0 34px 90px var(--shadow);
  color: #f5f5f0;
  padding: 18px;
  position: absolute;
  right: 7vw;
  top: 122px;
  transform: rotate(4deg);
  width: 312px;
}

.phone::before {
  background: #26262a;
  border-radius: 999px;
  content: "";
  height: 5px;
  left: 50%;
  position: absolute;
  top: 9px;
  transform: translateX(-50%);
  width: 54px;
}

.phone-top,
.mini-header,
.task-card,
.small-task,
.bottom-tabs,
.quick-capture {
  border-radius: 8px;
}

.phone-top,
.mini-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.phone-top {
  margin-top: 12px;
}

.phone-top span,
.mini-header span,
.small-label {
  color: #9d9ca3;
  font-size: 12px;
  font-weight: 800;
}

.phone-top strong,
.mini-header strong {
  color: #34d399;
  font-size: 12px;
}

.quick-capture {
  align-items: center;
  background: #161618;
  border: 1px solid #26262a;
  color: #deddd8;
  display: flex;
  font-size: 13px;
  font-weight: 750;
  gap: 8px;
  line-height: 1.35;
  margin: 18px 0 12px;
  padding: 12px;
}

.pulse-dot {
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 0 0 7px rgba(52, 211, 153, 0.14);
  flex: 0 0 auto;
  height: 9px;
  width: 9px;
}

.task-card {
  align-items: center;
  background: #161618;
  border: 1px solid #26262a;
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  padding: 12px;
}

.task-card strong {
  color: #f5f5f0;
  display: block;
  font-size: 14px;
  line-height: 1.2;
}

.task-card span {
  color: #9d9ca3;
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-top: 4px;
}

.status,
.check {
  border-radius: 999px;
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 900;
  padding: 6px 8px;
}

.status {
  background: #0f2620;
  color: #34d399;
}

.check {
  align-items: center;
  background: #34d399;
  color: #0a0a0c;
  display: inline-flex;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.task-card.groceries {
  border-left: 4px solid var(--accent);
}

.task-card.trip {
  border-left: 4px solid #a78bff;
}

.task-card.chores {
  border-left: 4px solid #9b8dff;
}

.bottom-tabs {
  background: #1c1c1f;
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 12px;
  padding: 6px;
}

.bottom-tabs span {
  color: #9d9ca3;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.mini-panel {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 70px var(--shadow);
  padding: 14px;
  position: absolute;
}

.calendar-panel {
  right: 24vw;
  top: 560px;
  transform: rotate(-3deg);
  width: 300px;
}

.date-strip {
  display: grid;
  gap: 7px;
  grid-template-columns: repeat(4, 1fr);
  margin: 13px 0;
}

.date-strip span {
  background: var(--wash);
  border-radius: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.25;
  padding: 8px 0;
  text-align: center;
}

.date-strip .active {
  background: var(--primary);
  color: var(--primary-text);
}

.small-task {
  background: var(--surface-soft);
  border: 1px solid var(--line-soft);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  margin-top: 7px;
  padding: 10px;
}

.small-task.muted {
  color: var(--muted);
}

.balance-panel {
  right: 5vw;
  top: 520px;
  transform: rotate(5deg);
  width: 232px;
}

.balance-panel strong {
  color: var(--ink);
  display: block;
  font-size: 20px;
  line-height: 1.1;
  margin: 8px 0 14px;
}

.bar-row {
  background: var(--wash);
  border-radius: 999px;
  height: 9px;
  overflow: hidden;
}

.bar-row + .bar-row {
  margin-top: 7px;
}

.bar-row span {
  background: var(--accent);
  border-radius: inherit;
  display: block;
  height: 100%;
}

.bar-row.soft span {
  background: var(--chores);
}

.voice-panel {
  right: 30vw;
  top: 405px;
  transform: rotate(-5deg);
  width: 250px;
}

.voice-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.voice-chip-row span {
  background: var(--accent-soft);
  border-radius: 999px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  padding: 7px 9px;
}

.trust-strip {
  background: var(--primary);
  color: var(--primary-text);
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding: 18px 28px;
}

.trust-strip span {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  padding: 8px 12px;
}

.demo-reel {
  align-items: stretch;
  background:
    radial-gradient(circle at 72% 24%, rgba(52, 211, 153, 0.22), transparent 26%),
    radial-gradient(circle at 18% 88%, rgba(124, 107, 255, 0.18), transparent 30%),
    #0a0a0c;
  box-shadow: 0 0 0 100vmax #0a0a0c;
  clip-path: inset(0 -100vmax);
  color: #f5f5f0;
  display: grid;
  gap: 44px;
  grid-template-columns: 0.78fr 1.22fr;
  isolation: isolate;
  overflow: hidden;
  padding-bottom: 96px;
  padding-top: 96px;
  position: relative;
}

.demo-reel::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  inset: 0;
  opacity: 0.28;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.reel-copy {
  align-self: center;
}

.demo-reel h2 {
  color: #f5f5f0;
  max-width: 520px;
}

.demo-reel .eyebrow {
  color: #34d399;
}

.reel-copy p:not(.eyebrow) {
  color: #c9c8c3;
  font-size: 18px;
  font-weight: 650;
  line-height: 1.6;
  margin: 20px 0 0;
  max-width: 560px;
}

.reel-steps {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.reel-steps span {
  align-items: center;
  background: rgba(245, 245, 240, 0.08);
  border: 1px solid rgba(245, 245, 240, 0.12);
  border-radius: 8px;
  color: #f5f5f0;
  display: flex;
  font-size: 14px;
  font-weight: 900;
  gap: 10px;
  min-height: 52px;
  padding: 0 14px;
}

.reel-steps strong {
  align-items: center;
  background: #34d399;
  border-radius: 999px;
  color: #0a0a0c;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 11px;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.reel-stage {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 245, 240, 0.12);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  display: flex;
  min-height: 646px;
  justify-content: center;
  overflow: hidden;
  padding: 58px 34px 34px;
  position: relative;
}

.reel-stage::before {
  background: radial-gradient(circle, rgba(52, 211, 153, 0.28), transparent 68%);
  content: "";
  height: 520px;
  left: 50%;
  position: absolute;
  top: 46%;
  transform: translate(-50%, -50%);
  width: 520px;
}

.reel-stage-top {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  left: 18px;
  position: absolute;
  right: 18px;
  top: 16px;
  z-index: 3;
}

.reel-stage-top span,
.reel-stage-top strong {
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  min-height: 30px;
  padding: 8px 10px;
}

.reel-stage-top span {
  background: rgba(245, 245, 240, 0.1);
  color: #deddd8;
}

.reel-stage-top strong {
  background: #34d399;
  color: #0a0a0c;
}

.reel-stage-note {
  background: rgba(10, 10, 12, 0.74);
  border: 1px solid rgba(245, 245, 240, 0.12);
  border-radius: 8px;
  bottom: 38px;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
  left: 30px;
  max-width: 218px;
  padding: 13px;
  position: absolute;
  z-index: 4;
}

.reel-stage-note.secondary {
  bottom: auto;
  left: auto;
  right: 30px;
  top: 116px;
}

.reel-stage-note strong,
.reel-stage-note span {
  display: block;
}

.reel-stage-note strong {
  color: #f5f5f0;
  font-size: 14px;
  margin-bottom: 5px;
}

.reel-stage-note span {
  color: #b9b8b2;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
}

.video-shell {
  background: #0a0a0c;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #f5f5f0;
  min-height: 430px;
  overflow: hidden;
}

.real-video-shell {
  background: #050506;
  border: 1px solid rgba(245, 245, 240, 0.16);
  border-radius: 44px;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.46),
    0 0 0 12px rgba(255, 255, 255, 0.035);
  min-height: 0;
  padding: 9px;
  position: relative;
  width: min(100%, 326px);
  z-index: 2;
}

.real-video-shell video {
  aspect-ratio: 444 / 960;
  background: #0a0a0c;
  border-radius: 32px;
  display: block;
  object-fit: cover;
  width: 100%;
}

.video-top {
  align-items: center;
  border-bottom: 1px solid #26262a;
  display: flex;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 16px;
}

.video-top span,
.video-top strong {
  font-size: 12px;
  font-weight: 900;
}

.video-top span {
  color: #9d9ca3;
}

.video-top strong {
  background: #0f2620;
  border-radius: 999px;
  color: #34d399;
  padding: 6px 9px;
}

.video-content {
  align-items: center;
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 380px;
  padding: 24px;
  position: relative;
}

.video-content::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
  inset: 0;
  opacity: 0.18;
  position: absolute;
}

.video-phone {
  background: #161618;
  border: 1px solid #26262a;
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  min-height: 322px;
  padding: 18px;
  position: relative;
  z-index: 1;
}

.video-status {
  align-items: center;
  background: rgba(251, 139, 124, 0.12);
  border: 1px solid rgba(251, 139, 124, 0.18);
  border-radius: 999px;
  color: #fb8b7c;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  gap: 7px;
  padding: 8px 10px;
}

.video-status span {
  animation: voicePulse 1.9s ease-in-out infinite;
  background: #fb8b7c;
  border-radius: 999px;
  height: 8px;
  width: 8px;
}

.video-phone p {
  color: #deddd8;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin: 20px 0;
}

.parsed-stack {
  display: grid;
  gap: 8px;
}

.parsed-stack div {
  background: #1c1c1f;
  border: 1px solid #26262a;
  border-left: 4px solid #34d399;
  border-radius: 8px;
  padding: 12px;
}

.parsed-stack strong,
.parsed-stack span {
  display: block;
}

.parsed-stack strong {
  font-size: 14px;
}

.parsed-stack span {
  color: #9d9ca3;
  font-size: 12px;
  font-weight: 800;
  margin-top: 4px;
}

.play-button {
  align-items: center;
  background: var(--accent);
  border-radius: 999px;
  box-shadow:
    0 0 0 16px rgba(52, 211, 153, 0.12),
    0 22px 64px rgba(16, 185, 129, 0.28);
  display: inline-flex;
  height: 72px;
  justify-self: center;
  position: relative;
  width: 72px;
  z-index: 1;
}

.play-button::before {
  border-bottom: 13px solid transparent;
  border-left: 18px solid #ffffff;
  border-top: 13px solid transparent;
  content: "";
  margin-left: 29px;
}

.reel-caption {
  background: rgba(245, 245, 240, 0.08);
  border: 1px solid rgba(245, 245, 240, 0.12);
  border-radius: 999px;
  bottom: 22px;
  color: #deddd8;
  font-size: 13px;
  font-weight: 900;
  left: 24px;
  padding: 10px 12px;
  position: absolute;
  z-index: 1;
}

.voice-section,
.subtask-section,
.demo-reel,
.section-grid,
.product-band,
.download-section {
  margin: 0 auto;
  max-width: 1160px;
  padding: 88px 28px 0;
}

.voice-section,
.subtask-section {
  align-items: center;
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr 0.92fr;
}

.voice-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.6;
  margin: 20px 0 0;
  max-width: 620px;
}

.voice-points {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.voice-points span {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  display: flex;
  font-size: 14px;
  font-weight: 850;
  gap: 10px;
  min-height: 46px;
  padding: 0 14px;
}

.voice-points span::before {
  background: var(--accent);
  border-radius: 999px;
  content: "";
  height: 8px;
  width: 8px;
}

.voice-demo {
  background: #0a0a0c;
  border: 1px solid #26262a;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(10, 10, 11, 0.24);
  color: #f5f5f0;
  overflow: hidden;
  padding: 22px;
  position: relative;
}

.voice-demo::before {
  background: radial-gradient(circle, rgba(52, 211, 153, 0.18), transparent 62%);
  content: "";
  height: 280px;
  position: absolute;
  right: -90px;
  top: -90px;
  width: 280px;
}

.recording-pill {
  align-items: center;
  background: rgba(249, 115, 102, 0.14);
  border: 1px solid rgba(249, 115, 102, 0.16);
  border-radius: 999px;
  color: #fb8b7c;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  gap: 7px;
  min-height: 30px;
  padding: 0 10px;
  position: relative;
  z-index: 1;
}

.recording-pill span {
  background: #fb8b7c;
  border-radius: 999px;
  height: 8px;
  width: 8px;
}

.voice-orb {
  align-items: center;
  display: flex;
  height: 154px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.voice-orb::before {
  animation: voicePulse 2.2s ease-in-out infinite;
  background: rgba(52, 211, 153, 0.28);
  border-radius: 999px;
  content: "";
  height: 132px;
  position: absolute;
  width: 132px;
}

.voice-orb span {
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 0 36px rgba(52, 211, 153, 0.56);
  height: 82px;
  position: relative;
  width: 82px;
}

.voice-orb span::before,
.voice-orb span::after {
  background: #ffffff;
  border-radius: 999px;
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.voice-orb span::before {
  height: 34px;
  width: 16px;
}

.voice-orb span::after {
  height: 5px;
  top: 66%;
  width: 30px;
}

@keyframes voicePulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(0.86);
  }

  50% {
    opacity: 0.72;
    transform: scale(1.1);
  }
}

.voice-transcript {
  color: #deddd8;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.45;
  margin: 0 auto 18px;
  max-width: 430px;
  position: relative;
  text-align: center;
  z-index: 1;
}

.review-card {
  background: #161618;
  border: 1px solid #26262a;
  border-radius: 8px;
  padding: 12px;
  position: relative;
  z-index: 1;
}

.review-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.review-header strong {
  color: #f5f5f0;
  font-size: 15px;
}

.review-header span {
  color: #9d9ca3;
  font-size: 12px;
  font-weight: 800;
}

.review-todo {
  align-items: center;
  background: #1c1c1f;
  border: 1px solid #26262a;
  border-radius: 8px;
  display: flex;
  gap: 10px;
  padding: 11px;
}

.review-todo + .review-todo {
  margin-top: 7px;
}

.review-check {
  align-items: center;
  background: var(--accent);
  border-radius: 999px;
  color: #0a0a0c;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 950;
  height: 22px;
  justify-content: center;
  width: 22px;
}

.review-todo strong {
  color: #f5f5f0;
  display: block;
  font-size: 14px;
}

.review-todo small {
  color: #9d9ca3;
  display: block;
  font-size: 12px;
  font-weight: 750;
  margin-top: 3px;
}

.voice-shot-grid {
  align-items: center;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-items: center;
  min-height: 620px;
}

.voice-shot,
.review-shot {
  border-radius: 34px;
  width: min(100%, 230px);
}

.voice-shot {
  justify-self: end;
  transform: rotate(-3deg) translateY(-18px);
}

.review-shot {
  justify-self: start;
  transform: rotate(3deg) translateY(36px);
  width: min(100%, 246px);
}

.subtask-section {
  grid-template-columns: 0.88fr 1fr;
}

.subtask-demo {
  min-width: 0;
}

.capture-shot {
  border-radius: 34px;
  margin: 0 auto;
  max-width: 380px;
}

.subtask-phone {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 28px 76px rgba(10, 10, 11, 0.1);
  margin: 0 auto;
  max-width: 430px;
  padding: 16px;
}

.subtask-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
}

.subtask-header span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.subtask-header strong {
  background: var(--accent-soft);
  border-radius: 999px;
  color: var(--accent);
  font-size: 12px;
  padding: 6px 9px;
}

.subtask-phone h3 {
  color: var(--ink);
  font-size: 26px;
  margin: 0 0 14px;
}

.subtask-row {
  align-items: center;
  background: var(--surface-soft);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  display: flex;
  gap: 10px;
  min-height: 48px;
  padding: 0 11px;
}

.subtask-row + .subtask-row {
  margin-top: 7px;
}

.subtask-row p {
  color: var(--text);
  flex: 1;
  font-size: 14px;
  font-weight: 750;
  margin: 0;
}

.subtask-row.done p {
  color: var(--muted);
  text-decoration: line-through;
}

.subtask-check,
.subtask-empty {
  align-items: center;
  border-radius: 6px;
  display: inline-flex;
  flex: 0 0 auto;
  height: 22px;
  justify-content: center;
  width: 22px;
}

.subtask-check {
  background: var(--accent);
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
}

.subtask-empty {
  border: 1.5px solid var(--line);
}

.subtask-remove {
  color: var(--faint);
  font-size: 20px;
  font-weight: 700;
}

.subtask-compose {
  align-items: center;
  display: grid;
  gap: 8px;
  grid-template-columns: 38px 1fr 38px;
  margin-top: 12px;
}

.subtask-compose span:nth-child(2),
.subtask-compose strong {
  align-items: center;
  background: var(--background);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  display: flex;
  font-size: 14px;
  font-weight: 750;
  min-height: 38px;
  padding: 0 11px;
}

.subtask-compose strong {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
  font-size: 22px;
  justify-content: center;
  padding: 0;
}

.subtask-mic {
  align-items: center;
  background: var(--background);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  position: relative;
  width: 38px;
}

.subtask-mic::before {
  background: var(--accent);
  border-radius: 999px;
  content: "";
  height: 18px;
  width: 10px;
}

.subtask-mic::after {
  background: var(--accent);
  border-radius: 999px;
  bottom: 10px;
  content: "";
  height: 3px;
  position: absolute;
  width: 18px;
}

.subtask-listening {
  color: var(--warning);
  font-size: 12px;
  font-weight: 800;
  margin: 8px 0 0;
}

.subtask-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.6;
  margin: 20px 0 0;
  max-width: 620px;
}

.subtask-points {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.subtask-points div {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}

.subtask-points strong {
  color: var(--ink);
  display: block;
  font-size: 15px;
}

.subtask-points span {
  color: var(--muted);
  display: block;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
  margin-top: 5px;
}

.section-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}

.section-heading {
  grid-column: 1 / -1;
  justify-content: space-between;
  margin-bottom: 10px;
}

h2 {
  color: var(--ink);
  font-size: 46px;
  line-height: 1;
  margin: 0;
}

.feature-card,
.product-band,
.download-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(10, 10, 11, 0.06);
}

.feature-card {
  min-height: 286px;
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.feature-dot {
  border-radius: 999px;
  display: block;
  height: 12px;
  margin-bottom: 16px;
  width: 12px;
}

.feature-dot.groceries {
  background: var(--accent);
}

.feature-dot.work {
  background: var(--work);
}

.feature-dot.family {
  background: var(--family);
}

.feature-dot.trip {
  background: var(--trip);
}

.feature-card h3 {
  color: var(--ink);
  font-size: 22px;
  margin: 22px 0 10px;
}

.feature-visual {
  background: var(--surface-soft);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  min-height: 94px;
  overflow: hidden;
  padding: 14px;
}

.capture-visual {
  display: grid;
  gap: 8px;
}

.capture-visual > span {
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 0 0 8px var(--accent-soft);
  height: 12px;
  width: 12px;
}

.capture-visual strong,
.capture-visual small,
.nudge-visual strong,
.nudge-visual span {
  display: block;
}

.capture-visual strong,
.nudge-visual strong {
  color: var(--ink);
  font-size: 14px;
}

.capture-visual small,
.nudge-visual span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.assign-visual {
  align-items: center;
  display: flex;
  gap: 10px;
}

.assign-visual span {
  align-items: center;
  background: var(--primary);
  border-radius: 999px;
  color: var(--primary-text);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  height: 52px;
  justify-content: center;
  width: 52px;
}

.assign-visual span:nth-child(2) {
  background: var(--accent);
}

.assign-visual span:nth-child(3) {
  background: var(--chores);
}

.nudge-visual {
  background:
    linear-gradient(135deg, var(--warning-soft), var(--surface-soft) 70%);
}

.nudge-visual strong {
  margin-bottom: 6px;
}

.balance-visual {
  display: grid;
  gap: 10px;
}

.balance-visual span {
  background: var(--accent);
  border-radius: 999px;
  display: block;
  height: 13px;
}

.balance-visual span:nth-child(2) {
  background: var(--chores);
}

.balance-visual span:nth-child(3) {
  background: var(--work);
}

.feature-card p,
.product-band p,
.download-section p {
  color: var(--muted);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.55;
  margin: 0;
}

.product-band {
  align-items: end;
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr 0.9fr;
  margin-top: 88px;
  padding-bottom: 42px;
}

.band-copy p {
  margin-top: 18px;
  max-width: 560px;
}

.workflow {
  display: grid;
  gap: 8px;
}

.workflow div {
  align-items: center;
  background: var(--surface-soft);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  color: var(--ink);
  display: flex;
  font-weight: 850;
  gap: 10px;
  min-height: 54px;
  padding: 0 12px;
}

.workflow span {
  align-items: center;
  background: var(--accent-soft);
  border-radius: 999px;
  color: var(--accent);
  display: inline-flex;
  font-size: 13px;
  font-weight: 950;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.download-section {
  align-items: center;
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 320px;
  padding-bottom: 80px;
}

.download-section p {
  margin-top: 16px;
  max-width: 590px;
}

.download-card {
  flex-direction: column;
  padding: 22px;
  text-align: center;
}

.download-card img {
  border-radius: 20px;
  height: 88px;
  margin-bottom: 14px;
  width: 88px;
}

.download-card strong {
  color: var(--ink);
  font-size: 24px;
}

.download-card span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  margin: 8px 0 16px;
}

.full {
  width: 100%;
}

.download-card .secondary-button {
  margin-top: 8px;
}

footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  gap: 16px;
  justify-content: center;
  padding: 28px;
}

footer span {
  color: var(--ink);
  font-weight: 900;
}

footer a {
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header nav {
    display: none;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding-top: 118px;
  }

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-text {
    font-size: 19px;
  }

  .hero-scene {
    height: 610px;
    margin-top: 46px;
    order: 2;
    position: relative;
    width: 100%;
    z-index: 0;
  }

  .hero-copy {
    order: 1;
  }

  .phone {
    left: 50%;
    right: auto;
    top: 0;
    transform: translateX(-50%) rotate(2deg);
  }

  .hero-device {
    left: 50%;
    right: auto;
    top: 0;
    transform: translateX(-50%) rotate(2deg);
    width: 314px;
  }

  .floating-shot {
    height: 342px;
    width: 158px;
  }

  .balance-shot {
    left: 3vw;
    right: auto;
    top: 306px;
  }

  .calendar-shot {
    right: 4vw;
    top: 392px;
  }

  .calendar-panel {
    left: 3vw;
    right: auto;
    top: 342px;
    width: 270px;
  }

  .balance-panel {
    right: 4vw;
    top: 430px;
  }

  .voice-panel {
    left: 50%;
    right: auto;
    top: 318px;
    transform: translateX(-116%) rotate(-5deg);
  }

  .voice-section,
  .subtask-section,
  .section-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .voice-section,
  .subtask-section,
  .demo-reel,
  .product-band,
  .download-section {
    grid-template-columns: 1fr;
  }

  .download-card {
    justify-self: start;
    width: min(100%, 340px);
  }

  .subtask-copy {
    order: 1;
  }

  .subtask-demo {
    order: 2;
  }

  .voice-shot-grid {
    min-height: auto;
  }

  .demo-reel {
    gap: 32px;
    padding-bottom: 84px;
    padding-top: 84px;
  }

  .demo-reel h2 {
    max-width: 720px;
  }

  .reel-copy p:not(.eyebrow) {
    max-width: 720px;
  }

  .reel-stage {
    min-height: 620px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px;
  }

  .hero,
  .voice-section,
  .subtask-section,
  .demo-reel,
  .section-grid,
  .product-band,
  .download-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .hero-scene {
    height: 670px;
  }

  .phone {
    width: 292px;
  }

  .hero-device {
    width: 286px;
  }

  .floating-shot {
    height: 292px;
    width: 136px;
  }

  .balance-shot {
    left: 0;
    top: 332px;
  }

  .calendar-shot {
    right: 0;
    top: 438px;
  }

  .calendar-panel {
    left: 0;
    top: 360px;
    width: 250px;
  }

  .balance-panel {
    right: 0;
    top: 520px;
    width: 210px;
  }

  .voice-panel {
    left: 0;
    top: 282px;
    transform: rotate(-3deg);
    width: 228px;
  }

  .section-grid {
    grid-template-columns: 1fr;
  }

  .demo-reel {
    gap: 28px;
    padding-bottom: 68px;
    padding-top: 68px;
  }

  .reel-copy p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.55;
  }

  .reel-steps {
    gap: 8px;
    margin-top: 22px;
  }

  .reel-steps span {
    min-height: 48px;
  }

  .reel-stage {
    align-items: center;
    flex-direction: column;
    gap: 12px;
    min-height: 0;
    padding: 14px;
  }

  .reel-stage::before {
    height: 360px;
    top: 40%;
    width: 360px;
  }

  .reel-stage-top {
    left: auto;
    order: 1;
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
  }

  .reel-stage-note,
  .reel-stage-note.secondary {
    bottom: auto;
    left: auto;
    max-width: none;
    order: 3;
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
  }

  .reel-stage-note.secondary {
    order: 4;
  }

  .video-content {
    gap: 20px;
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .real-video-shell {
    border-radius: 36px;
    order: 2;
    padding: 8px;
    width: min(100%, 286px);
  }

  .real-video-shell video {
    border-radius: 28px;
  }

  .video-phone {
    min-height: 292px;
  }

  .play-button {
    height: 58px;
    justify-self: end;
    margin-right: 18px;
    width: 58px;
  }

  .play-button::before {
    border-bottom-width: 10px;
    border-left-width: 15px;
    border-top-width: 10px;
    margin-left: 23px;
  }

  .reel-caption {
    bottom: 16px;
    left: 18px;
    position: relative;
  }

  .voice-transcript {
    font-size: 17px;
  }

  .voice-shot-grid {
    gap: 10px;
  }

  .voice-shot,
  .review-shot {
    border-radius: 26px;
    width: min(100%, 158px);
  }

  .voice-shot {
    transform: rotate(-2deg);
  }

  .review-shot {
    transform: rotate(2deg) translateY(28px);
  }

  .capture-shot {
    max-width: 330px;
  }

  .subtask-phone h3 {
    font-size: 22px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}
