:root {
  color-scheme: light;
  --bg-one: #ebebeb;
  --bg-two: #dfdfdf;
  --label: #050505;
  --label-secondary: rgba(5, 5, 5, 0.55);
  --label-tertiary: rgba(5, 5, 5, 0.35);
  --line: rgba(5, 5, 5, 0.12);
  --line-strong: rgba(5, 5, 5, 0.25);
  --accent-fill: #050505;
  --on-accent: #ebebeb;
  --soft-fill: rgba(255, 255, 255, 0.22);
  --shadow: rgba(0, 0, 0, 0.14);
  --purple: #af52de;
  --orange: #ff9500;
  --teal: #30b0c7;
  --green: #34c759;
  --blue: #007aff;
  --indigo: #5856d6;
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  --font-rounded: ui-rounded, "SF Pro Rounded", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg-one: #1e1e1e;
  --bg-two: #1d1d1d;
  --label: #ebebeb;
  --label-secondary: rgba(235, 235, 235, 0.58);
  --label-tertiary: rgba(235, 235, 235, 0.38);
  --line: rgba(235, 235, 235, 0.12);
  --line-strong: rgba(235, 235, 235, 0.25);
  --accent-fill: #ebebeb;
  --on-accent: #1e1e1e;
  --soft-fill: rgba(255, 255, 255, 0.04);
  --shadow: rgba(0, 0, 0, 0.42);
  --purple: #bf5af2;
  --orange: #ff9f0a;
  --teal: #40c8e0;
  --green: #32d74b;
  --blue: #0a84ff;
  --indigo: #5e5ce6;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg-one);
  letter-spacing: 0;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--label);
  background:
    linear-gradient(135deg, var(--bg-one) 0%, var(--bg-two) 100%);
  font-family: var(--font-sans);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
}

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--on-accent);
  background: var(--accent-fill);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--label);
  outline-offset: 4px;
}

.site-header {
  z-index: 20;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 10px 0 6px;
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-mark {
  position: relative;
  width: clamp(96px, 10vw, 148px);
  height: clamp(96px, 10vw, 148px);
  overflow: hidden;
}

.logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-dark,
.app-logo-dark {
  display: none;
}

:root[data-theme="dark"] .logo-light,
:root[data-theme="dark"] .app-logo-light {
  display: none;
}

:root[data-theme="dark"] .logo-dark,
:root[data-theme="dark"] .app-logo-dark {
  display: block;
}

.theme-toggle {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--label);
  background: transparent;
  cursor: pointer;
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
}

.theme-moon {
  display: none;
}

:root[data-theme="dark"] .theme-sun {
  display: none;
}

:root[data-theme="dark"] .theme-moon {
  display: block;
}

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: 56px;
  align-items: center;
  padding: 12px 0;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--label-secondary);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  font-size: 4.25rem;
  line-height: 1;
  font-weight: 760;
}

h2 {
  margin-bottom: 20px;
  font-size: 3rem;
  line-height: 1.04;
  font-weight: 720;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
  line-height: 1.2;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 18px;
  color: var(--label);
  font-size: 1.42rem;
  line-height: 1.42;
  font-weight: 350;
}

.hero-support,
.section-copy p,
.section-heading p,
.widget-copy p,
.launch-copy p,
.privacy-item p,
.faq-list p,
.site-footer p {
  color: var(--label-secondary);
  font-size: 1rem;
  line-height: 1.65;
}

.hero-support {
  max-width: 530px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.app-store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.app-store-badge img {
  width: 180px;
  height: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-weight: 690;
  line-height: 1;
  cursor: pointer;
}

.button svg {
  width: 18px;
  height: 18px;
}

.button-primary {
  color: var(--on-accent);
  background: var(--accent-fill);
  border-color: var(--accent-fill);
}

.button-secondary {
  color: var(--label);
  background: transparent;
}

.hero-visual {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 575px;
  max-height: 575px;
  overflow: visible;
}

.phone-list {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scale(0.64);
  transform-origin: top center;
}

:root[data-theme="dark"] .eversince-device.device-iphone-14 .device-frame {
  border-color: #bdb4aa;
  box-shadow: inset 0 0 4px 2px #ffffff, inset 0 0 0 6px #d3cdc7;
}

:root[data-theme="dark"] .eversince-device.device-iphone-14 .device-btns,
:root[data-theme="dark"] .eversince-device.device-iphone-14 .device-btns::after,
:root[data-theme="dark"] .eversince-device.device-iphone-14 .device-btns::before,
:root[data-theme="dark"] .eversince-device.device-iphone-14 .device-power {
  background: #bdb4aa;
}

.phone-screen {
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-one), var(--bg-two));
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 60px 28px 10px;
}

.app-logo {
  width: 112px;
  height: 112px;
  object-fit: cover;
}

.mock-add {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--label);
}

.mock-add svg,
.chevron {
  width: 18px;
  height: 18px;
}

.tracker-list {
  padding: 0 26px 28px;
}

.tracker-row {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto 16px;
  align-items: center;
  gap: 12px;
  min-height: 74px;
  border-top: 1px solid var(--line-strong);
}

.tracker-row:first-child {
  border-top-color: transparent;
}

.medallion,
.large-medallion {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #ffffff;
  background: currentColor;
}

.medallion {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.medallion svg {
  width: 21px;
  height: 21px;
  stroke: #ffffff;
}

.tracker-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.tracker-copy strong {
  overflow: hidden;
  color: var(--label);
  font-size: 0.95rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tracker-copy span,
.row-counter small,
.widget-label {
  color: var(--label-secondary);
}

.tracker-copy span {
  overflow: hidden;
  font-size: 0.78rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.row-counter {
  display: grid;
  justify-items: end;
  gap: 1px;
  font-family: var(--font-rounded);
  font-variant-numeric: tabular-nums;
  font-weight: 300;
  line-height: 1;
}

.row-counter > span {
  font-size: 1.9rem;
}

.row-counter small {
  font-family: var(--font-sans);
  font-size: 0.74rem;
}

.chevron {
  color: var(--label-tertiary);
}

.hero-widget-stack {
  position: absolute;
  z-index: 3;
  right: 42px;
  bottom: 94px;
  width: 172px;
  min-height: 172px;
  pointer-events: none;
}

.mini-widget {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 160px;
  aspect-ratio: 1;
  padding: 22px;
  overflow: visible;
  border: 0;
  border-radius: 30px;
  box-shadow: none;
}

.device-widget-adaptive {
  color: #050505;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(235, 235, 235, 0.98));
}

:root[data-theme="dark"] .device-widget-adaptive {
  color: #f5f5f7;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.14), transparent 44%),
    linear-gradient(150deg, #2f2f2f 0%, #171717 64%, #222222 100%);
}

.device-widget-adaptive::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(5, 5, 5, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    inset 0 -1px 0 rgba(5, 5, 5, 0.04),
    0 10px 24px rgba(5, 5, 5, 0.08);
}

:root[data-theme="dark"] .device-widget-adaptive::after {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.18);
}

.device-widget-adaptive .widget-heading,
.device-widget-adaptive .widget-count {
  transition: opacity 180ms ease, transform 180ms ease;
}

.device-widget-adaptive.is-changing .widget-heading,
.device-widget-adaptive.is-changing .widget-count {
  opacity: 0;
  transform: translateY(3px);
}

.widget-heading {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.widget-heading strong {
  min-width: 0;
  overflow: visible;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.24;
  white-space: nowrap;
}

.widget-icon {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 7px;
  color: #ffffff;
}

.widget-icon svg {
  width: 16px;
  height: 16px;
}

.widget-icon.tracker-indigo {
  color: #ffffff;
  background: #6366f1;
}

.widget-icon.tracker-purple {
  color: #ffffff;
  background: #af52de;
}

.widget-icon.tracker-orange {
  color: #ffffff;
  background: #ff9500;
}

.widget-icon.tracker-teal {
  color: #ffffff;
  background: #12c8d2;
}

.widget-icon.tracker-green {
  color: #ffffff;
  background: #34c759;
}

.widget-icon.tracker-blue {
  color: #ffffff;
  background: #007aff;
}

.widget-icon.tracker-pink {
  color: #ffffff;
  background: #ff2d92;
}

.widget-icon.tracker-red {
  color: #ffffff;
  background: #ff3b30;
}

.widget-icon.tracker-mint {
  color: #ffffff;
  background: #00c7be;
}

.widget-icon.tracker-cyan {
  color: #ffffff;
  background: #32ade6;
}

.mini-widget strong,
.widget-preview strong {
  font-family: var(--font-rounded);
  font-variant-numeric: tabular-nums;
  font-weight: 320;
  line-height: 1;
}

.widget-count {
  margin-top: auto;
  font-family: var(--font-rounded);
  font-variant-numeric: tabular-nums;
  font-weight: 300;
  line-height: 1;
}

.widget-count-inline {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding-bottom: 8px;
}

.widget-count-inline span {
  font-size: 2.45rem;
  letter-spacing: 0;
}

.widget-count-inline small {
  color: rgba(5, 5, 5, 0.55);
  font-size: 1.12rem;
  font-weight: 300;
}

:root[data-theme="dark"] .widget-count-inline small {
  color: rgba(245, 245, 247, 0.62);
}

.widget-count-stack {
  display: grid;
  gap: 7px;
  padding-bottom: 0;
}

.widget-count-stack p {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0;
}

.widget-count-stack span {
  width: 17px;
  color: currentColor;
  font-size: 1.42rem;
  text-align: right;
}

.widget-count-stack small {
  color: rgba(5, 5, 5, 0.55);
  font-size: 1.22rem;
  font-weight: 300;
}

:root[data-theme="dark"] .widget-count-stack small {
  color: rgba(245, 245, 247, 0.62);
}

.split-section,
.widget-section,
.philosophy-section,
.pro-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  gap: 72px;
  align-items: center;
  padding: 112px 0;
}

.section-copy,
.section-heading,
.widget-copy {
  max-width: 620px;
}

.quiet-list {
  display: grid;
  gap: 22px;
  margin-top: 36px;
}

.pro-benefits {
  display: grid;
  gap: 22px;
  margin-top: 36px;
}

.pro-benefits div {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  color: var(--label);
  font-size: 1.08rem;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(10px);
}

.pro-benefits.is-visible div {
  animation: quiet-point-in 980ms ease both;
}

.pro-benefits.is-visible div:nth-child(2) {
  animation-delay: 180ms;
}

.pro-benefits.is-visible div:nth-child(3) {
  animation-delay: 360ms;
}

.pro-benefits.is-visible div:nth-child(4) {
  animation-delay: 540ms;
}

.principle-list {
  display: grid;
  gap: 22px;
  margin-top: 32px;
}

.principle-list div {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 0;
  color: var(--label-secondary);
  line-height: 1.55;
  opacity: 0;
  transform: translateY(10px);
}

.principle-list.is-visible div {
  animation: quiet-point-in 980ms ease both;
}

.principle-list.is-visible div:nth-child(2) {
  animation-delay: 180ms;
}

.principle-list.is-visible div:nth-child(3) {
  animation-delay: 360ms;
}

.principle-list.is-visible div:nth-child(4) {
  animation-delay: 540ms;
}

.quiet-list div {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  color: var(--label);
  font-size: 1.14rem;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(10px);
}

.quiet-list.is-visible div {
  animation: quiet-point-in 980ms ease both;
}

.quiet-list.is-visible div:nth-child(2) {
  animation-delay: 180ms;
}

.quiet-list.is-visible div:nth-child(3) {
  animation-delay: 360ms;
}

.quiet-list svg,
.pro-benefits svg,
.principle-list svg,
.privacy-item svg {
  width: 22px;
  height: 22px;
  color: var(--label);
}

.pro-benefits svg,
.quiet-list svg {
  width: 28px;
  height: 28px;
}

.detail-showcase {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 575px;
  overflow: visible;
}

.phone-detail {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.64);
  transform-origin: center;
}

.detail-screen {
  display: grid;
  grid-template-rows: 76px 1fr;
  padding: 52px 30px 58px;
  color: var(--label);
}

.detail-toolbar {
  display: flex;
  align-items: start;
  justify-content: space-between;
  color: var(--label);
}

.detail-toolbar svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.7;
}

.detail-toolbar svg:last-child {
  width: 36px;
  height: 36px;
}

.detail-content {
  display: grid;
  grid-template-rows: 0.92fr 1fr;
  align-items: center;
  min-height: 0;
}

.detail-identity {
  align-self: end;
  display: grid;
  justify-items: center;
  gap: 11px;
  text-align: center;
}

.large-medallion {
  width: 88px;
  height: 88px;
  border-radius: 22px;
}

.large-medallion svg {
  width: 44px;
  height: 44px;
  stroke: #ffffff;
}

.detail-identity .mock-title {
  margin: 20px 0 0;
  color: var(--label);
  font-size: 2.55rem;
  font-weight: 700;
  line-height: 1;
}

.detail-identity p {
  margin: 0;
  color: var(--label-secondary);
  font-size: 1.18rem;
  line-height: 1.2;
}

.detail-counter {
  font-family: var(--font-rounded);
  font-variant-numeric: tabular-nums;
}

.detail-counter-stack {
  align-self: center;
  display: grid;
  justify-content: center;
  gap: 24px;
  padding-top: 8px;
}

.detail-counter-stack p {
  display: flex;
  align-items: baseline;
  gap: 12px;
  min-width: 176px;
  margin: 0;
}

.detail-counter-stack span {
  width: 50px;
  color: var(--label);
  font-size: 4.35rem;
  font-weight: 300;
  line-height: 1;
  text-align: right;
}

.detail-counter-stack small {
  color: var(--label-secondary);
  font-size: 1.58rem;
  font-weight: 300;
}

.faq-section {
  padding: 104px 0;
}

.launch-section {
  padding: 104px 0;
}

.privacy-section {
  padding: 104px 0;
}

.tracker-section {
  padding: 104px 0;
}

.section-heading {
  margin-bottom: 42px;
}

.tracker-marquee {
  display: grid;
  gap: 14px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.tracker-marquee-row {
  overflow: hidden;
}

.tracker-marquee-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: tracker-marquee 34s linear infinite;
  will-change: transform;
}

.tracker-marquee-row-reverse .tracker-marquee-track {
  animation-direction: reverse;
  animation-duration: 40s;
}

.tracker-type {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 208px;
  min-height: 78px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.18);
}

:root[data-theme="dark"] .tracker-type {
  background: rgba(255, 255, 255, 0.035);
}

.tracker-type strong {
  min-width: 0;
  line-height: 1.25;
  white-space: nowrap;
}

.widget-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 82px;
  gap: 14px;
  align-items: stretch;
}

.widget-preview {
  position: relative;
  display: flex;
  flex-direction: column;
  aspect-ratio: 1;
  min-height: 0;
  padding: 22px;
  overflow: visible;
  border: 0;
  border-radius: 30px;
  color: #050505;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(235, 235, 235, 0.98));
}

:root[data-theme="dark"] .widget-preview {
  color: #f5f5f7;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.14), transparent 44%),
    linear-gradient(150deg, #2f2f2f 0%, #171717 64%, #222222 100%);
}

.widget-preview::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(5, 5, 5, 0.1);
  border-radius: inherit;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    inset 0 -1px 0 rgba(5, 5, 5, 0.04),
    0 10px 24px rgba(5, 5, 5, 0.08);
  content: "";
  pointer-events: none;
}

:root[data-theme="dark"] .widget-preview::after {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.18);
}

.widget-preview .widget-heading strong {
  font-size: clamp(0.9rem, 1.35vw, 1rem);
}

.widget-preview .widget-count {
  margin-top: auto;
}

.widget-preview .widget-count-inline span {
  font-size: clamp(2.15rem, 4vw, 3rem);
}

.widget-preview .widget-count-inline small {
  font-size: clamp(1rem, 1.65vw, 1.12rem);
}

.widget-preview .widget-count-stack {
  gap: clamp(6px, 1.2vw, 9px);
}

.widget-preview .widget-count-stack span {
  font-size: clamp(1.28rem, 2.5vw, 1.8rem);
}

.widget-preview .widget-count-stack small {
  font-size: clamp(1.08rem, 2.1vw, 1.55rem);
}

.widget-preview:nth-child(1) {
  grid-column: 1 / span 2;
  grid-row: 1 / span 2;
}

.widget-preview:nth-child(2) {
  grid-column: 3 / span 2;
  grid-row: 2 / span 2;
}

.widget-preview:nth-child(3) {
  grid-column: 5 / span 2;
  grid-row: 1 / span 2;
}

.widget-preview:nth-child(4) {
  grid-column: 1 / span 2;
  grid-row: 3 / span 2;
}

.widget-preview:nth-child(5) {
  grid-column: 3 / span 2;
  grid-row: 4 / span 2;
}

.widget-preview:nth-child(6) {
  grid-column: 5 / span 2;
  grid-row: 3 / span 2;
}

.privacy-grid {
  display: grid;
  max-width: 900px;
  gap: 24px;
}

.privacy-item {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  min-height: 0;
  padding: 0;
  opacity: 0;
  transform: translateY(10px);
}

.privacy-grid.is-visible .privacy-item {
  animation: quiet-point-in 980ms ease both;
}

.privacy-grid.is-visible .privacy-item:nth-child(2) {
  animation-delay: 180ms;
}

.privacy-grid.is-visible .privacy-item:nth-child(3) {
  animation-delay: 360ms;
}

.privacy-item h3 {
  grid-column: 2;
  margin: 0 0 8px;
  font-size: 1.24rem;
  letter-spacing: 0;
}

.privacy-item p {
  grid-column: 2;
  margin-bottom: 0;
  max-width: 620px;
  font-size: 1.04rem;
  line-height: 1.6;
  color: var(--label-secondary);
}

.privacy-item svg {
  grid-row: 1 / span 2;
}

.pro-panel {
  display: grid;
  order: -1;
  gap: 18px;
  align-content: center;
}

.pro-note {
  display: grid;
  gap: 8px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.16);
}

:root[data-theme="dark"] .pro-note {
  background: rgba(255, 255, 255, 0.035);
}

.pro-note strong {
  color: var(--label);
  font-size: 1.08rem;
  line-height: 1.35;
}

.pro-note span {
  color: var(--label-secondary);
  line-height: 1.55;
}

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

.price-option {
  display: grid;
  gap: 8px;
  min-height: 170px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.16);
}

:root[data-theme="dark"] .price-option {
  background: rgba(255, 255, 255, 0.035);
}

.price-option-lifetime {
  border-color: color-mix(in srgb, var(--label) 24%, var(--line));
}

.price-option span,
.price-option small {
  color: var(--label-secondary);
}

.price-option span {
  font-size: 0.78rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-option strong {
  color: var(--label);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1;
}

.price-option small {
  align-self: end;
  font-size: 0.96rem;
}

.principle-list {
  margin-top: 0;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 16px;
  color: var(--label);
  font-size: 1.08rem;
  font-weight: 660;
  cursor: pointer;
}

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--label-tertiary);
  font-size: 1.4rem;
  font-weight: 300;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  max-width: 760px;
  margin: -4px 0 24px;
}

.launch-section {
  padding-bottom: 116px;
}

.launch-cta {
  display: flex;
  justify-content: center;
  text-align: center;
}

.launch-copy {
  max-width: 760px;
}

.launch-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.04;
}

.launch-copy p {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}

.launch-badge img {
  width: 190px;
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 44px;
}

.site-footer p {
  margin: 0;
  font-size: 0.92rem;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--label);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  color: var(--label-secondary);
  font-size: 0.92rem;
  line-height: 1.4;
}

.footer-links a[aria-current="page"] {
  color: var(--label);
}

.footer-meta {
  text-align: right;
}

.legal-page {
  padding-bottom: 48px;
}

.legal-hero {
  padding: 70px 0 44px;
  text-align: center;
}

.legal-hero h1 {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
}

.legal-updated {
  margin-bottom: 28px;
  color: var(--label-secondary);
  font-size: 0.98rem;
}

.legal-lede {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  color: var(--label);
  font-size: 1.32rem;
  font-weight: 350;
  line-height: 1.5;
}

.legal-content {
  display: grid;
  gap: 36px;
  max-width: 860px;
  padding-bottom: 86px;
}

.legal-content article {
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin-bottom: 12px;
  font-size: 1.55rem;
  line-height: 1.2;
}

.legal-content p {
  margin-bottom: 0;
  color: var(--label-secondary);
  font-size: 1.04rem;
  line-height: 1.72;
}

.legal-content a {
  color: var(--label);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

@keyframes quiet-point-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tracker-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 7px));
  }
}

.tracker-purple,
.tracker-purple-text {
  color: var(--purple);
}

.tracker-orange,
.tracker-orange-text {
  color: var(--orange);
}

.tracker-teal,
.tracker-teal-text {
  color: var(--teal);
}

.tracker-green,
.tracker-green-text {
  color: var(--green);
}

.tracker-blue,
.tracker-blue-text {
  color: var(--blue);
}

.tracker-indigo,
.tracker-indigo-text {
  color: var(--indigo);
}

.tracker-pink {
  color: #ff2d92;
}

.tracker-red {
  color: #ff3b30;
}

.tracker-mint {
  color: #00c7be;
}

.tracker-cyan {
  color: #32ade6;
}

@media (max-width: 980px) {
  .site-header {
    width: min(760px, calc(100% - 32px));
  }

  .theme-toggle {
    justify-self: end;
  }

  .section-shell,
  .site-footer {
    width: min(760px, calc(100% - 32px));
  }

  .hero,
  .split-section,
  .widget-section,
  .philosophy-section,
  .pro-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-copy,
  .section-copy,
  .section-heading,
  .widget-copy {
    max-width: none;
  }

  .split-section .section-copy {
    order: -1;
  }

  h1 {
    font-size: 3.8rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .hero-lede {
    font-size: 1.25rem;
  }

  .hero-visual {
    min-height: 575px;
    max-height: 575px;
    overflow: visible;
  }

  .phone-list {
    top: 0;
    transform: translateX(-50%) scale(0.64);
  }

  .hero-widget-stack {
    right: 18px;
    bottom: 94px;
    display: block;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    order: 2;
  }

  .footer-meta {
    order: 3;
    text-align: left;
  }
}

@media (max-width: 620px) {
  .site-header,
  .section-shell,
  .site-footer {
    width: min(100% - 28px, 460px);
  }

  .hero {
    gap: 24px;
    padding: 18px 0;
  }

  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2rem;
  }

  .legal-hero {
    padding: 44px 0 30px;
    text-align: left;
  }

  .legal-hero h1 {
    font-size: 2.6rem;
  }

  .legal-hero h1,
  .legal-lede {
    margin-left: 0;
    margin-right: 0;
  }

  .legal-lede {
    font-size: 1.12rem;
  }

  .legal-content {
    gap: 28px;
    padding-bottom: 54px;
  }

  .legal-content h2 {
    font-size: 1.34rem;
  }

  .hero-lede {
    font-size: 1.12rem;
  }

  .hero-support {
    display: none;
  }

  .hero-actions {
    display: grid;
    margin-top: 24px;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 575px;
    max-height: 575px;
    overflow: visible;
  }

  .phone-list {
    top: 0;
    transform: translateX(-50%) scale(0.64);
  }

  .hero-widget-stack {
    right: -12px;
    bottom: 94px;
    display: block;
  }

  .app-header {
    padding-left: 24px;
    padding-right: 24px;
  }

  .tracker-list {
    padding-left: 22px;
    padding-right: 22px;
  }

  .tracker-row {
    grid-template-columns: 40px minmax(0, 1fr) auto;
  }

  .tracker-row .chevron {
    display: none;
  }

  .row-counter > span {
    font-size: 1.65rem;
  }

  .split-section,
  .widget-section,
  .philosophy-section,
  .pro-section,
  .privacy-section,
  .faq-section,
  .launch-section {
    padding: 76px 0;
  }

  .tracker-section {
    padding: 76px 0;
  }

  .detail-showcase {
    min-height: 575px;
  }

  .phone-detail {
    transform: translate(-50%, -50%) scale(0.64);
  }

  .widget-gallery {
    grid-template-columns: 1fr;
    grid-template-areas: none;
  }

  .privacy-item {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 16px;
  }

  .privacy-item svg {
    width: 20px;
    height: 20px;
  }

  .pro-panel {
    order: 0;
  }

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

  .price-option {
    min-height: 150px;
    padding: 18px;
  }

  .price-option strong {
    font-size: clamp(1.9rem, 8vw, 2.4rem);
  }

  .widget-gallery {
    --mobile-widget-size: calc((100vw - 40px) / 2);
    grid-template-columns: repeat(2, var(--mobile-widget-size));
    grid-auto-rows: auto;
    gap: 12px;
    justify-content: center;
  }

  .widget-preview {
    grid-column: auto !important;
    grid-row: auto !important;
    width: var(--mobile-widget-size);
    height: var(--mobile-widget-size);
    padding: 16px;
    border-radius: 24px;
    transform: none !important;
  }

  .widget-preview .widget-heading {
    gap: 7px;
  }

  .widget-preview .widget-heading strong {
    font-size: 0.86rem;
  }

  .widget-preview .widget-icon {
    width: 24px;
    height: 24px;
    border-radius: 7px;
  }

  .tracker-marquee {
    gap: 10px;
    margin-inline: -14px;
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  }

  .tracker-marquee-track {
    gap: 10px;
    animation-duration: 28s;
  }

  .tracker-marquee-row-reverse .tracker-marquee-track {
    animation-duration: 34s;
  }

  .tracker-type {
    min-width: 176px;
    min-height: 68px;
    padding: 14px 16px;
  }

  .launch-cta {
    text-align: left;
  }

  .launch-copy p {
    margin-left: 0;
    margin-right: 0;
  }
}

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

  .quiet-list div,
  .privacy-item,
  .principle-list div {
    opacity: 1;
    transform: none;
  }

  .tracker-marquee-track {
    animation: none;
  }
}
