:root {
  --bg: #090908;
  --bg-soft: #0e0e0c;
  --surface: #131310;
  --surface-raised: #181814;
  --surface-gold: #d9ba77;
  --gold: #d8b66d;
  --gold-bright: #efcf87;
  --gold-dark: #9b7b3f;
  --cream: #f5f1e8;
  --text: #ece8df;
  --muted: #9a9890;
  --muted-light: #c3beb3;
  --line: rgba(255, 255, 255, 0.1);
  --line-soft: rgba(255, 255, 255, 0.065);
  --max-width: 1180px;
  --radius-lg: 32px;
  --radius-md: 22px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  color-scheme: dark;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(rgba(255, 255, 255, 0.013) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.013) 1px, transparent 1px);
  background-size: 68px 68px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

svg {
  display: block;
}

.container {
  width: min(calc(100% - 48px), var(--max-width));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 15px;
  border-radius: 10px;
  background: var(--cream);
  color: #11110f;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  background: rgba(9, 9, 8, 0.78);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  color: var(--cream);
  font-size: 20px;
  font-weight: 720;
  letter-spacing: -0.035em;
}

.brand-mark {
  display: block;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  filter: drop-shadow(0 5px 12px rgba(45, 168, 255, 0.16));
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
}

.site-nav {
  display: flex;
  gap: 32px;
  margin-left: 70px;
  color: var(--muted-light);
  font-size: 14px;
  font-weight: 560;
}

.site-nav a {
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: var(--cream);
}

.nav-cta {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid rgba(235, 207, 146, 0.22);
  border-radius: 12px;
  background: rgba(216, 182, 109, 0.1);
  color: var(--gold-bright);
  font-size: 13px;
  font-weight: 650;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.nav-cta:hover {
  border-color: rgba(235, 207, 146, 0.45);
  background: rgba(216, 182, 109, 0.16);
  transform: translateY(-1px);
}

.nav-cta svg {
  width: 16px;
  fill: currentColor;
}

.hero {
  position: relative;
  min-height: 910px;
  padding: 146px 0 72px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}

.hero::before {
  position: absolute;
  top: 0;
  right: -12%;
  width: 61%;
  height: 100%;
  background: radial-gradient(circle at 42% 42%, rgba(216, 182, 109, 0.115), transparent 54%);
  content: "";
}

.hero-glow {
  position: absolute;
  top: -200px;
  left: -180px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(216, 182, 109, 0.055);
  filter: blur(100px);
}

.hero-grid {
  position: relative;
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 0.92fr);
  gap: 42px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 4;
  min-width: 0;
  padding-bottom: 24px;
}

.eyebrow,
.section-kicker {
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 12px 8px 10px;
  border: 1px solid rgba(216, 182, 109, 0.17);
  border-radius: 999px;
  background: rgba(216, 182, 109, 0.065);
  letter-spacing: 0.08em;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 0 4px rgba(216, 182, 109, 0.09);
}

.hero h1 {
  max-width: 670px;
  margin: 25px 0 24px;
  color: var(--cream);
  font-size: clamp(58px, 5.5vw, 82px);
  font-weight: 610;
  letter-spacing: -0.064em;
  line-height: 0.98;
}

.hero h1 span {
  color: var(--gold);
}

.hero-lede {
  max-width: 600px;
  margin: 0;
  color: #b8b5ae;
  font-size: clamp(18px, 1.5vw, 20px);
  letter-spacing: -0.015em;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  gap: 26px;
  align-items: center;
  margin-top: 36px;
}

.app-store-button {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 60px;
  padding: 9px 20px 9px 17px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 15px;
  background: var(--cream);
  color: #0d0d0b;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.27);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.app-store-button:hover {
  background: #fff;
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}

.app-store-button svg {
  width: 28px;
  fill: currentColor;
}

.app-store-button > span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.app-store-button small {
  margin-bottom: 5px;
  font-size: 10px;
  font-weight: 530;
  letter-spacing: 0.015em;
  text-transform: none;
}

.app-store-button strong {
  font-size: 20px;
  font-weight: 620;
  letter-spacing: -0.025em;
}

.text-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: var(--muted-light);
  font-size: 15px;
  font-weight: 620;
  transition: color 160ms ease;
}

.text-link:hover {
  color: var(--cream);
}

.text-link svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 160ms ease;
}

.text-link:hover svg {
  transform: translateX(3px);
}

.hero-note {
  display: flex;
  gap: 9px;
  align-items: center;
  margin: 26px 0 0;
  color: #7f7e77;
  font-size: 12px;
  line-height: 1.4;
}

.hero-note svg {
  width: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--gold-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.device-scene {
  position: relative;
  z-index: 2;
  width: 560px;
  min-width: 0;
  height: 705px;
  margin: 0 -20px 0 auto;
}

.scene-ring {
  position: absolute;
  border: 1px solid rgba(216, 182, 109, 0.09);
  border-radius: 50%;
}

.scene-ring-one {
  top: 80px;
  left: -4px;
  width: 510px;
  height: 510px;
}

.scene-ring-two {
  top: 25px;
  left: -60px;
  width: 620px;
  height: 620px;
  opacity: 0.6;
}

.phone {
  position: absolute;
  top: 0;
  left: 112px;
  z-index: 3;
  width: 350px;
  height: 706px;
  padding: 8px;
  border: 1px solid #565650;
  border-radius: 55px;
  background: linear-gradient(145deg, #3c3b36 0%, #121210 18%, #23221f 78%, #626057 100%);
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.72), 0 0 0 2px #070706, inset 0 0 0 1px rgba(255, 255, 255, 0.23);
}

.phone::before {
  position: absolute;
  inset: 5px;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 49px;
  content: "";
}

.phone-side {
  position: absolute;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(#52514b, #1b1b18);
}

.phone-side-left-one {
  top: 120px;
  left: -4px;
  height: 35px;
}

.phone-side-left-two {
  top: 176px;
  left: -4px;
  height: 65px;
}

.phone-side-right {
  top: 161px;
  right: -4px;
  height: 92px;
}

.phone-screen {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid #11110f;
  border-radius: 47px;
  background: #0b0b0a;
  color: #eee9de;
}

.phone-screen::before {
  position: absolute;
  top: -130px;
  left: -100px;
  width: 380px;
  height: 330px;
  border-radius: 50%;
  background: rgba(204, 163, 77, 0.11);
  filter: blur(65px);
  content: "";
}

.screenshot-screen::before {
  content: none;
}

.screenshot-screen picture,
.screen-frame picture {
  display: block;
  width: 100%;
  height: 100%;
}

.screenshot-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.dynamic-island {
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 5;
  width: 92px;
  height: 26px;
  border-radius: 20px;
  background: #000;
  transform: translateX(-50%);
}

.status-bar {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 47px;
  padding: 11px 22px 0 24px;
  color: #e9e5dc;
  font-size: 11px;
  font-weight: 680;
}

.status-icons {
  display: flex;
  gap: 5px;
  align-items: center;
}

.status-icons svg:first-child {
  width: 15px;
  fill: currentColor;
}

.status-icons svg:nth-child(2) {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.4;
}

.battery {
  position: relative;
  display: inline-flex;
  width: 18px;
  height: 9px;
  padding: 1px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 3px;
}

.battery::after {
  position: absolute;
  top: 2px;
  right: -3px;
  width: 2px;
  height: 4px;
  border-radius: 0 1px 1px 0;
  background: rgba(255, 255, 255, 0.5);
  content: "";
}

.battery i {
  width: 12px;
  border-radius: 1px;
  background: #eae6dc;
}

.app-topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 17px 20px 17px;
}

.app-topbar small {
  display: block;
  margin-bottom: 2px;
  color: #817f77;
  font-size: 9px;
  font-weight: 500;
}

.app-topbar h2 {
  margin: 0;
  color: #f2eee5;
  font-size: 25px;
  font-weight: 660;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.app-add-button {
  display: grid;
  width: 35px;
  height: 35px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(229, 198, 128, 0.24);
  border-radius: 12px;
  background: rgba(215, 179, 99, 0.13);
  color: var(--gold-bright);
}

.app-add-button svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.7;
}

.summary-panel {
  position: relative;
  z-index: 2;
  margin: 0 17px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(236, 207, 139, 0.19);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(218, 184, 111, 0.19), rgba(83, 66, 34, 0.09));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
}

.summary-panel::after {
  position: absolute;
  top: -70px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(236, 202, 127, 0.13);
  filter: blur(25px);
  content: "";
}

.summary-label {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #a8a298;
  font-size: 9px;
  font-weight: 560;
}

.summary-period {
  padding: 4px 7px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  color: #bbae91;
}

.summary-main {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  margin-top: 3px;
}

.summary-main strong {
  color: #f1d99f;
  font-size: 34px;
  font-weight: 630;
  letter-spacing: -0.055em;
}

.summary-main span {
  margin-left: 5px;
  color: #958f83;
  font-size: 9px;
}

.summary-divider {
  height: 1px;
  margin: 9px 0 10px;
  background: rgba(255, 255, 255, 0.075);
}

.summary-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.summary-stats span {
  display: flex;
  flex-direction: column;
}

.summary-stats span + span {
  padding-left: 13px;
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}

.summary-stats small {
  color: #726f68;
  font-size: 7px;
}

.summary-stats strong {
  margin-top: 1px;
  color: #d7d2c8;
  font-size: 11px;
  font-weight: 610;
}

.items-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 20px 10px;
}

.items-heading h3 {
  margin: 0;
  color: #ddd8ce;
  font-size: 13px;
  font-weight: 630;
  letter-spacing: -0.02em;
}

.items-heading span {
  color: #9d814b;
  font-size: 8px;
  font-weight: 570;
}

.phone-item {
  display: flex;
  gap: 11px;
  margin: 0 17px 9px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 17px;
  background: #121210;
}

.phone-item-primary {
  border-color: rgba(216, 182, 109, 0.12);
  background: linear-gradient(110deg, #15140f, #121210);
}

.item-visual {
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(218, 184, 111, 0.13);
  border-radius: 12px;
  background: rgba(216, 182, 109, 0.09);
  color: #c7a968;
}

.item-visual-alt {
  border-color: rgba(161, 142, 106, 0.12);
  background: rgba(146, 132, 103, 0.08);
  color: #aaa188;
}

.item-visual svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.2;
}

.item-copy {
  min-width: 0;
  flex: 1;
}

.item-title-row {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: space-between;
}

.item-title-row h4 {
  overflow: hidden;
  margin: 0;
  color: #d8d3c9;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: -0.015em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.item-title-row span {
  color: #c6a65f;
  font-size: 8px;
  font-weight: 600;
}

.item-copy > p {
  margin: 2px 0 6px;
  color: #8e8a81;
  font-size: 8px;
}

.progress-track {
  height: 3px;
  overflow: hidden;
  border-radius: 4px;
  background: #292721;
}

.progress-track span {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #957237, #d7b467);
}

.item-foot {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  color: #625f58;
  font-size: 6.5px;
}

.phone-tabbar {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 74px;
  padding: 10px 24px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
  background: rgba(12, 12, 11, 0.95);
}

.phone-tabbar span {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
  justify-content: flex-start;
  color: #55534f;
  font-size: 6.5px;
  font-weight: 580;
}

.phone-tabbar span.active {
  color: #c9a85f;
}

.phone-tabbar svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.home-indicator {
  position: absolute;
  bottom: 6px;
  left: 50%;
  z-index: 10;
  width: 105px;
  height: 3px;
  border-radius: 4px;
  background: #eae6dd;
  transform: translateX(-50%);
}

.floating-metric {
  position: absolute;
  z-index: 6;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  background: rgba(27, 26, 22, 0.88);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.32), inset 0 1px rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(18px);
}

.floating-metric > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.floating-metric small {
  color: #817e76;
  font-size: 7px;
  font-weight: 540;
}

.floating-metric strong {
  margin-top: 2px;
  color: #e8dfcc;
  font-size: 12px;
  font-weight: 610;
}

.metric-month {
  top: 112px;
  left: 12px;
  animation: float 6s ease-in-out infinite;
}

.metric-progress {
  right: -13px;
  bottom: 140px;
  animation: float 7s 1.2s ease-in-out infinite;
}

.metric-icon {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 9px;
  background: rgba(216, 182, 109, 0.11);
  color: #caa75e;
}

.metric-icon svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.mini-ring {
  position: relative;
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--gold) 0 21%, #37342d 21% 100%);
}

.mini-ring::before {
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #1b1a17;
  content: "";
}

.mini-ring b {
  position: relative;
  color: #dfc17f;
  font-size: 7px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.problem-section,
.features-section,
.use-section,
.how-section {
  padding: 135px 0;
}

.problem-section {
  position: relative;
  background: #0c0c0a;
}

.problem-section::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(100% - 48px, var(--max-width));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 182, 109, 0.24), transparent);
  content: "";
  transform: translateX(-50%);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.8fr;
  gap: 110px;
  align-items: center;
}

.section-heading h2 {
  margin: 17px 0 21px;
  color: var(--cream);
  font-size: clamp(42px, 4.4vw, 63px);
  font-weight: 570;
  letter-spacing: -0.057em;
  line-height: 1.05;
}

.section-heading h2 span {
  color: #77746c;
}

.section-heading > p:last-child {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.context-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.context-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.context-number {
  padding-top: 3px;
  color: var(--gold-dark);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 11px;
}

.context-list h3 {
  margin: 0 0 3px;
  color: #e4e0d7;
  font-size: 18px;
  font-weight: 590;
  letter-spacing: -0.025em;
}

.context-list p {
  margin: 0;
  color: #88867f;
  font-size: 14px;
}

.features-section {
  position: relative;
  background: var(--bg);
}

.features-section::after {
  position: absolute;
  top: 10%;
  left: 50%;
  z-index: 0;
  width: 780px;
  height: 480px;
  border-radius: 50%;
  background: rgba(211, 173, 91, 0.035);
  filter: blur(100px);
  content: "";
  transform: translateX(-50%);
  pointer-events: none;
}

.centered-heading {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}

.centered-heading > p:last-child {
  margin-inline: auto;
}

.feature-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.feature-card {
  position: relative;
  min-height: 325px;
  padding: 29px;
  overflow: hidden;
  grid-column: span 4;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, #141412, #10100e);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
  transition: border-color 200ms ease, transform 200ms ease;
}

.feature-card:hover {
  border-color: rgba(216, 182, 109, 0.18);
  transform: translateY(-3px);
}

.feature-card-wide {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 35px;
  align-items: center;
  min-height: 380px;
  grid-column: span 8;
  background: radial-gradient(circle at 78% 35%, rgba(216, 182, 109, 0.085), transparent 40%), linear-gradient(145deg, #151512, #10100e);
}

.feature-progress-card {
  min-height: 390px;
  grid-column: span 4;
}

.feature-archive-card {
  min-height: 390px;
  grid-column: span 4;
}

.feature-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  place-items: center;
  border: 1px solid rgba(216, 182, 109, 0.15);
  border-radius: 12px;
  background: rgba(216, 182, 109, 0.075);
  color: var(--gold);
}

.feature-icon svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.feature-card h3 {
  max-width: 360px;
  margin: 0 0 10px;
  color: #e8e3d9;
  font-size: 20px;
  font-weight: 590;
  letter-spacing: -0.03em;
}

.feature-card p {
  max-width: 430px;
  margin: 0;
  color: #89877f;
  font-size: 14px;
  line-height: 1.65;
}

.cost-stack {
  position: relative;
  min-height: 282px;
}

.cost-stack > div {
  position: absolute;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  align-items: center;
  min-height: 86px;
  padding: 16px 19px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 17px;
  background: rgba(25, 24, 20, 0.96);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.26);
}

.cost-stack > div:nth-child(1) {
  top: 0;
  z-index: 3;
  border-color: rgba(216, 182, 109, 0.21);
  transform: rotate(-1.5deg);
}

.cost-stack > div:nth-child(2) {
  top: 94px;
  z-index: 2;
  right: 10px;
  left: -8px;
  transform: rotate(1deg);
}

.cost-stack > div:nth-child(3) {
  top: 188px;
  right: -4px;
  left: 8px;
  opacity: 0.78;
  transform: rotate(-0.5deg);
}

.cost-stack span {
  color: #969187;
  font-size: 10px;
}

.cost-stack strong {
  color: #e6ca8b;
  font-size: 22px;
  font-weight: 610;
  letter-spacing: -0.04em;
  text-align: right;
}

.cost-stack small {
  grid-column: 1 / -1;
  margin-top: 3px;
  color: #5f5c56;
  font-size: 8px;
}

.frequency-pills {
  position: absolute;
  right: 27px;
  bottom: 27px;
  left: 27px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  padding: 5px;
  border: 1px solid var(--line-soft);
  border-radius: 13px;
  background: #0d0d0b;
}

.frequency-pills span {
  padding: 9px 5px;
  border-radius: 9px;
  color: #67645e;
  font-size: 9px;
  font-weight: 570;
  text-align: center;
}

.frequency-pills span.active {
  border: 1px solid rgba(216, 182, 109, 0.13);
  background: rgba(216, 182, 109, 0.1);
  color: #d9bb79;
}

.extra-cost {
  position: absolute;
  right: 27px;
  bottom: 27px;
  left: 27px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  border: 1px solid var(--line-soft);
  border-radius: 13px;
  background: #0d0d0b;
  font-size: 9px;
}

.extra-cost span {
  color: #77746d;
}

.extra-cost strong {
  color: #cbb379;
  font-weight: 580;
}

.large-progress {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: grid;
  width: 146px;
  height: 146px;
  place-items: center;
}

.large-progress svg {
  position: absolute;
  inset: 0;
  width: 100%;
  transform: rotate(-90deg);
}

.large-progress circle {
  fill: none;
  stroke: #25231e;
  stroke-width: 6;
}

.large-progress .progress-value {
  stroke: var(--gold);
  stroke-dasharray: 205 302;
  stroke-linecap: round;
}

.large-progress span {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.large-progress strong {
  color: #e4c886;
  font-size: 26px;
  font-weight: 610;
  letter-spacing: -0.04em;
}

.large-progress small {
  color: #77736b;
  font-size: 8px;
}

.archive-list {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: #0d0d0b;
}

.archive-list span {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 11px;
  align-items: center;
  padding: 12px 14px;
  color: #aaa69d;
  font-size: 10px;
}

.archive-list span + span {
  border-top: 1px solid var(--line-soft);
}

.archive-list i {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: linear-gradient(145deg, #24221d, #171713);
}

.archive-list small {
  color: #5f5c56;
  font-size: 8px;
}

.product-tour {
  position: relative;
  z-index: 1;
  margin-top: 118px;
  padding-top: 86px;
  border-top: 1px solid var(--line);
}

.product-tour-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 70px;
  align-items: end;
  margin-bottom: 48px;
}

.product-tour-heading h3 {
  max-width: 650px;
  margin: 14px 0 0;
  color: var(--cream);
  font-size: clamp(38px, 4vw, 55px);
  font-weight: 570;
  letter-spacing: -0.055em;
  line-height: 1.06;
}

.product-tour-heading > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.screen-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.screen-shot-card {
  min-width: 0;
  margin: 0;
}

.screen-frame {
  position: relative;
  height: 640px;
  padding: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 43px;
  background: linear-gradient(145deg, #54534e, #11110f 18%, #22211e 82%, #5c5a53);
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.13);
}

.screen-frame::after {
  position: absolute;
  right: 6px;
  bottom: 6px;
  left: 6px;
  height: 100px;
  border-radius: 0 0 36px 36px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.74));
  content: "";
  pointer-events: none;
}

.screen-frame img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 36px;
  object-fit: cover;
  object-position: center top;
}

.screen-frame-list img {
  object-position: center 24%;
}

.screen-frame-cost img {
  object-position: center 12%;
}

.screen-shot-card figcaption {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  margin-top: 21px;
}

.screen-shot-card figcaption > span {
  padding-top: 3px;
  color: var(--gold-dark);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 9px;
}

.screen-shot-card figcaption div {
  display: flex;
  flex-direction: column;
}

.screen-shot-card figcaption strong {
  color: #ded9cf;
  font-size: 14px;
  font-weight: 590;
  letter-spacing: -0.02em;
}

.screen-shot-card figcaption small {
  margin-top: 3px;
  color: #74716a;
  font-size: 11px;
}

.swipe-hint {
  display: none;
}

.use-section {
  border-top: 1px solid var(--line-soft);
  background: #0c0c0a;
}

.use-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 62px;
}

.use-heading .section-kicker {
  order: 2;
  margin-bottom: 13px;
}

.use-heading h2 {
  max-width: 760px;
  margin: 0;
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.use-grid article {
  position: relative;
  min-height: 345px;
  padding: 27px 25px 30px;
}

.use-grid article + article {
  border-left: 1px solid var(--line);
}

.use-index {
  color: #5d5b55;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 10px;
}

.use-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin: 68px 0 25px;
  place-items: center;
  border: 1px solid rgba(216, 182, 109, 0.13);
  border-radius: 15px;
  background: rgba(216, 182, 109, 0.05);
  color: #c5a35b;
  transition: background 200ms ease, transform 200ms ease;
}

.use-grid article:hover .use-icon {
  background: rgba(216, 182, 109, 0.1);
  transform: translateY(-3px);
}

.use-icon svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.use-grid h3 {
  margin: 0 0 9px;
  color: #e3ded4;
  font-size: 18px;
  font-weight: 590;
  letter-spacing: -0.027em;
}

.use-grid p {
  margin: 0;
  color: #7f7d76;
  font-size: 13px;
  line-height: 1.65;
}

.how-section {
  background: var(--bg);
}

.steps-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-list::before {
  position: absolute;
  top: 20px;
  right: 16.5%;
  left: 16.5%;
  z-index: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(216, 182, 109, 0.2), rgba(216, 182, 109, 0.06), rgba(216, 182, 109, 0.2));
  content: "";
}

.steps-list li {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-number {
  display: grid;
  width: 40px;
  height: 40px;
  margin: 0 auto 26px;
  place-items: center;
  border: 1px solid rgba(216, 182, 109, 0.21);
  border-radius: 50%;
  background: #11110f;
  color: var(--gold);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 11px;
}

.step-visual {
  display: flex;
  height: 190px;
  margin-bottom: 27px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  background: linear-gradient(145deg, #141412, #0f0f0d);
}

.step-form {
  flex-direction: column;
  gap: 9px;
  padding: 30px;
}

.step-form span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  background: #0c0c0b;
}

.step-form small,
.step-result small {
  color: #6e6b64;
  font-size: 9px;
}

.step-form strong {
  color: #b9b4aa;
  font-size: 10px;
  font-weight: 570;
}

.step-dials {
  gap: 18px;
}

.step-dials span {
  display: flex;
  width: 95px;
  height: 95px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(216, 182, 109, 0.14);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 182, 109, 0.07), transparent 70%);
}

.step-dials b {
  color: #dcc184;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.step-dials small {
  color: #74716a;
  font-size: 8px;
}

.step-result span {
  display: flex;
  width: 76%;
  padding: 21px;
  flex-direction: column;
  border: 1px solid rgba(216, 182, 109, 0.16);
  border-radius: 15px;
  background: rgba(216, 182, 109, 0.055);
  text-align: left;
}

.step-result strong {
  margin-top: 4px;
  color: #e7cb8c;
  font-size: 26px;
  font-weight: 610;
  letter-spacing: -0.045em;
}

.step-result em {
  color: #79756d;
  font-size: 10px;
  font-style: normal;
  font-weight: 520;
  letter-spacing: 0;
}

.steps-list h3 {
  margin: 0 0 8px;
  color: #e5e0d6;
  font-size: 19px;
  font-weight: 590;
  letter-spacing: -0.03em;
}

.steps-list p {
  max-width: 310px;
  margin: 0 auto;
  color: #817f77;
  font-size: 13px;
  line-height: 1.65;
}

.final-cta {
  padding: 0 0 28px;
}

.final-cta-inner {
  position: relative;
  display: flex;
  min-height: 580px;
  padding: 80px 40px;
  overflow: hidden;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 36px;
  background: linear-gradient(135deg, #e1c381, #c7a35a);
  color: #17140d;
  text-align: center;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.35), inset 0 1px rgba(255, 255, 255, 0.35);
}

.final-cta-inner::before,
.final-cta-inner::after {
  position: absolute;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(48, 37, 17, 0.08);
  border-radius: 50%;
  content: "";
}

.final-cta-inner::before {
  top: -220px;
  left: -100px;
}

.final-cta-inner::after {
  right: -170px;
  bottom: -280px;
}

.cta-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  width: 600px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 246, 218, 0.28);
  filter: blur(70px);
  transform: translateX(-50%);
}

.app-icon-large {
  position: relative;
  z-index: 1;
  display: block;
  width: 86px;
  height: 86px;
  margin-bottom: 27px;
  filter: drop-shadow(0 15px 28px rgba(45, 72, 130, 0.22));
}

.app-icon-large img {
  display: block;
  width: 100%;
  height: 100%;
}

.final-cta .section-kicker {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(43, 32, 13, 0.68);
}

.final-cta h2 {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 15px 0 18px;
  color: #18150e;
  font-size: clamp(46px, 5vw, 70px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1;
}

.final-cta h2 span {
  color: rgba(49, 37, 17, 0.53);
}

.final-cta-inner > p:not(.section-kicker) {
  position: relative;
  z-index: 1;
  max-width: 590px;
  margin: 0 0 29px;
  color: rgba(45, 34, 15, 0.67);
  font-size: 16px;
}

.app-store-button-light {
  position: relative;
  z-index: 1;
  border-color: rgba(0, 0, 0, 0.45);
  background: #15130f;
  color: #f4ebd8;
  box-shadow: 0 16px 35px rgba(73, 51, 11, 0.2);
}

.app-store-button-light:hover {
  background: #000;
  box-shadow: 0 18px 38px rgba(73, 51, 11, 0.28);
}

.cta-meta {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  color: rgba(47, 35, 14, 0.48);
  font-size: 10px;
  font-weight: 580;
}

.site-footer {
  padding: 34px 0 42px;
}

.footer-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.brand-mark-small {
  width: 27px;
  height: 27px;
}

.site-footer .brand {
  font-size: 17px;
}

.footer-wrap > p {
  margin: 0;
  color: #5e5c56;
  font-size: 11px;
}

.footer-links {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: flex-end;
  color: #5e5c56;
  font-size: 11px;
}

.footer-links a {
  transition: color 160ms ease;
}

.footer-links a:hover {
  color: #a5a198;
}

/* Privacy policy */

.privacy-page {
  background: #090908;
}

.privacy-main {
  padding-top: 74px;
}

.privacy-hero {
  position: relative;
  padding: 130px 0 94px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
  background: radial-gradient(circle at 74% 20%, rgba(55, 108, 255, 0.07), transparent 35%), radial-gradient(circle at 84% 42%, rgba(55, 214, 163, 0.055), transparent 31%);
}

.privacy-hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 68px 68px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 90%);
  pointer-events: none;
}

.privacy-glow {
  position: absolute;
  top: -240px;
  right: -160px;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: rgba(55, 108, 255, 0.06);
  filter: blur(100px);
}

.privacy-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.privacy-hero h1 {
  max-width: 820px;
  margin: 19px 0 26px;
  color: var(--cream);
  font-size: clamp(58px, 6.2vw, 88px);
  font-weight: 590;
  letter-spacing: -0.064em;
  line-height: 0.98;
}

.privacy-hero h1 span {
  color: #88857d;
}

.privacy-hero-copy > p:not(.section-kicker):not(.policy-date) {
  max-width: 720px;
  margin: 0;
  color: #aaa79f;
  font-size: 19px;
  letter-spacing: -0.015em;
  line-height: 1.68;
}

.policy-date {
  display: flex;
  gap: 9px;
  align-items: center;
  margin: 28px 0 0;
  color: #696760;
  font-size: 11px;
}

.policy-date strong {
  color: #9e9a91;
  font-weight: 570;
}

.policy-date i {
  width: 3px;
  height: 3px;
  margin: 0 5px;
  border-radius: 50%;
  background: #514f49;
}

.privacy-principles {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 75px;
}

.privacy-principles article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  min-height: 148px;
  padding: 24px;
  border: 1px solid var(--line-soft);
  border-radius: 19px;
  background: rgba(19, 19, 16, 0.7);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(12px);
}

.privacy-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(55, 168, 255, 0.15);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(55, 108, 255, 0.09), rgba(55, 214, 163, 0.06));
  color: #7eabef;
}

.privacy-icon svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.privacy-principles h2 {
  margin: 1px 0 5px;
  color: #e1ddd3;
  font-size: 16px;
  font-weight: 610;
  letter-spacing: -0.025em;
}

.privacy-principles p {
  margin: 0;
  color: #77756e;
  font-size: 12px;
  line-height: 1.58;
}

.privacy-content {
  padding: 112px 0 145px;
  background: #0b0b09;
}

.privacy-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 760px);
  gap: 115px;
  justify-content: center;
  align-items: start;
}

.privacy-toc {
  position: sticky;
  top: 112px;
}

.privacy-toc > p {
  margin: 0 0 17px;
  color: var(--gold-dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.privacy-toc nav {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line-soft);
}

.privacy-toc a {
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  color: #716f69;
  font-size: 11px;
  line-height: 1.35;
  transition: color 160ms ease, padding-left 160ms ease;
}

.privacy-toc a:hover {
  padding-left: 5px;
  color: #c6c1b7;
}

.policy-article {
  min-width: 0;
}

.policy-article section {
  padding: 0 0 52px;
  scroll-margin-top: 110px;
}

.policy-article section + section {
  padding-top: 54px;
  border-top: 1px solid var(--line);
}

.policy-section-number {
  margin: 0 0 11px !important;
  color: var(--gold-dark) !important;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 9px !important;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.policy-article h2 {
  margin: 0 0 20px;
  color: #e8e3d9;
  font-size: 30px;
  font-weight: 590;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.policy-article p {
  margin: 0 0 18px;
  color: #96938b;
  font-size: 15px;
  line-height: 1.8;
}

.policy-article p:last-child {
  margin-bottom: 0;
}

.policy-article ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
}

.policy-article li {
  position: relative;
  padding-left: 23px;
  color: #a09d95;
  font-size: 14px;
  line-height: 1.65;
}

.policy-article li::before {
  position: absolute;
  top: 9px;
  left: 2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-dark);
  content: "";
  box-shadow: 0 0 0 4px rgba(216, 182, 109, 0.055);
}

.policy-callout {
  display: grid;
  grid-template-columns: 29px 1fr;
  gap: 15px;
  align-items: start;
  margin-top: 28px;
  padding: 20px 21px;
  border: 1px solid rgba(55, 168, 255, 0.13);
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(55, 108, 255, 0.055), rgba(55, 214, 163, 0.035));
}

.policy-callout svg {
  width: 24px;
  fill: none;
  stroke: #75a7ee;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.policy-callout p {
  margin: 0;
  color: #9c9a93;
  font-size: 13px;
  line-height: 1.65;
}

.policy-callout strong {
  color: #d4d0c7;
  font-weight: 610;
}

.policy-external-link,
.policy-contact-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 4px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 580;
  transition: color 160ms ease;
}

.policy-external-link:hover,
.policy-contact-link:hover {
  color: var(--gold-bright);
}

.policy-external-link svg,
.policy-contact-link svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  transition: transform 160ms ease;
}

.policy-external-link:hover svg,
.policy-contact-link:hover svg {
  transform: translate(2px, -2px);
}

.privacy-footer {
  border-top: 1px solid var(--line-soft);
}

@media (max-width: 1080px) {
  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
    gap: 0;
  }

  .hero h1 {
    font-size: clamp(54px, 6.4vw, 70px);
  }

  .device-scene {
    width: 470px;
    margin-right: -45px;
    transform: scale(0.9);
    transform-origin: center right;
  }

  .phone {
    left: 72px;
  }

  .metric-month {
    left: -20px;
  }

  .metric-progress {
    right: -30px;
  }

  .problem-grid {
    gap: 65px;
  }

  .feature-card-wide {
    grid-column: span 12;
  }

  .feature-card:not(.feature-card-wide):not(.feature-progress-card):not(.feature-archive-card) {
    grid-column: span 6;
  }

  .feature-progress-card,
  .feature-archive-card {
    grid-column: span 6;
  }

  .screen-frame {
    height: 570px;
    border-radius: 38px;
  }

  .screen-frame img {
    border-radius: 31px;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(calc(100% - 40px), var(--max-width));
  }

  .site-nav {
    display: none;
  }

  .hero {
    padding-top: 130px;
  }

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

  .hero-grid > * {
    min-width: 0;
  }

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

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

  .hero-actions,
  .hero-note {
    justify-content: center;
  }

  .device-scene {
    width: 560px;
    margin: 42px auto -30px;
    transform: scale(0.92);
    transform-origin: center top;
  }

  .phone {
    left: 105px;
  }

  .metric-month {
    left: 4px;
  }

  .metric-progress {
    right: -2px;
  }

  .problem-section,
  .features-section,
  .use-section,
  .how-section {
    padding: 105px 0;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .problem-heading {
    max-width: 680px;
  }

  .product-tour-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-tour-heading > p {
    max-width: 600px;
  }

  .feature-card-wide {
    grid-template-columns: 1fr 1fr;
  }

  .use-heading {
    display: block;
  }

  .use-heading .section-kicker {
    display: block;
    margin-bottom: 17px;
  }

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

  .use-grid article:nth-child(3) {
    border-left: 0;
  }

  .use-grid article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .steps-list {
    grid-template-columns: 1fr;
    gap: 54px;
    max-width: 520px;
    margin-inline: auto;
  }

  .steps-list::before {
    top: 18px;
    bottom: 18px;
    left: 19px;
    width: 1px;
    height: auto;
    background: linear-gradient(rgba(216, 182, 109, 0.2), rgba(216, 182, 109, 0.05), rgba(216, 182, 109, 0.2));
  }

  .step-number {
    margin-left: 0;
  }

  .final-cta-inner {
    min-height: 540px;
  }

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

  .footer-wrap > p {
    display: none;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .nav-wrap {
    min-height: 66px;
  }

  .nav-cta {
    min-height: 36px;
    padding-inline: 12px;
    font-size: 12px;
  }

  .hero {
    padding: 111px 0 22px;
  }

  .eyebrow {
    padding: 7px 10px;
    font-size: 10px;
  }

  .hero h1 {
    margin-top: 21px;
    font-size: clamp(46px, 13vw, 62px);
  }

  .hero-lede {
    font-size: 17px;
    line-height: 1.58;
  }

  .hero-actions {
    flex-direction: column;
    gap: 18px;
    margin-top: 30px;
  }

  .hero-note {
    align-items: flex-start;
    max-width: 330px;
    margin: 24px auto 0;
    text-align: left;
  }

  .device-scene {
    left: auto;
    width: 100%;
    max-width: 100%;
    height: 630px;
    margin: 42px auto -6px;
    transform: none;
  }

  .device-scene .phone {
    left: 50%;
    transform: translateX(-50%) scale(0.88);
    transform-origin: top center;
  }

  .device-scene .scene-ring-one {
    left: 50%;
    transform: translateX(-50%) scale(0.72);
  }

  .device-scene .scene-ring-two {
    left: 50%;
    transform: translateX(-50%) scale(0.66);
  }

  .metric-month {
    left: calc(50% - 175px);
    animation: none;
    transform: scale(0.86);
    transform-origin: left center;
  }

  .metric-progress {
    display: none;
  }

  .phone {
    left: 96px;
  }

  .metric-month {
    left: 3px;
  }

  .metric-progress {
    right: 1px;
  }

  .problem-section,
  .features-section,
  .use-section,
  .how-section {
    padding: 82px 0;
  }

  .section-heading h2 {
    font-size: clamp(39px, 11vw, 51px);
  }

  .section-heading > p:last-child {
    font-size: 15px;
  }

  .centered-heading {
    margin-bottom: 44px;
    text-align: left;
  }

  .context-list article {
    grid-template-columns: 42px 1fr;
  }

  .feature-grid {
    display: flex;
    flex-direction: column;
  }

  .product-tour {
    margin-top: 82px;
    padding-top: 68px;
  }

  .product-tour-heading {
    margin-bottom: 35px;
  }

  .product-tour-heading h3 {
    font-size: clamp(37px, 10vw, 48px);
  }

  .screen-gallery {
    display: flex;
    width: calc(100% + 16px);
    margin-right: -16px;
    padding: 0 16px 20px 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 0 16px;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .screen-gallery::-webkit-scrollbar {
    display: none;
  }

  .screen-shot-card {
    width: min(79vw, 330px);
    flex: 0 0 min(79vw, 330px);
    scroll-snap-align: start;
  }

  .screen-frame {
    height: 610px;
  }

  .swipe-hint {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
    margin: 9px 0 0;
    color: #68665f;
    font-size: 10px;
    font-weight: 570;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .swipe-hint span {
    color: var(--gold-dark);
    font-size: 15px;
  }

  .feature-card,
  .feature-card-wide,
  .feature-progress-card,
  .feature-archive-card {
    min-height: 320px;
    padding: 24px;
  }

  .feature-card-wide {
    display: block;
    min-height: 620px;
  }

  .cost-stack {
    margin-top: 34px;
  }

  .feature-progress-card,
  .feature-archive-card {
    min-height: 370px;
  }

  .frequency-pills,
  .extra-cost,
  .archive-list {
    right: 23px;
    bottom: 23px;
    left: 23px;
  }

  .large-progress {
    right: 23px;
    bottom: 23px;
  }

  .use-heading {
    margin-bottom: 40px;
  }

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

  .use-grid article {
    min-height: 270px;
    padding: 24px 4px;
  }

  .use-grid article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .use-icon {
    margin: 44px 0 22px;
  }

  .steps-list {
    gap: 44px;
  }

  .step-visual {
    height: 175px;
  }

  .final-cta {
    padding-bottom: 16px;
  }

  .final-cta-inner {
    min-height: 560px;
    padding: 62px 22px;
    border-radius: 27px;
  }

  .final-cta h2 {
    font-size: clamp(44px, 12.5vw, 58px);
  }

  .site-footer {
    padding: 28px 0 34px;
  }

  .footer-wrap {
    display: flex;
    gap: 24px;
    flex-direction: column;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 390px) {
  .brand {
    font-size: 18px;
  }

  .nav-cta span {
    display: none;
  }

  .nav-cta {
    width: 38px;
    padding: 0;
    justify-content: center;
  }

  .hero h1 {
    font-size: 45px;
  }

  .device-scene .phone {
    transform: translateX(-50%) scale(0.81);
  }

  .metric-month {
    left: calc(50% - 155px);
    transform: scale(0.78);
  }

  .screen-frame {
    height: 570px;
  }
}

@media (max-width: 860px) {
  .privacy-main {
    padding-top: 66px;
  }

  .privacy-hero {
    padding: 105px 0 82px;
  }

  .privacy-principles {
    margin-top: 58px;
  }

  .privacy-principles article {
    grid-template-columns: 40px 1fr;
    gap: 13px;
    padding: 20px;
  }

  .privacy-icon {
    width: 40px;
    height: 40px;
  }

  .privacy-content {
    padding: 92px 0 115px;
  }

  .privacy-layout {
    grid-template-columns: minmax(0, 760px);
    gap: 0;
  }

  .privacy-toc {
    display: none;
  }
}

@media (max-width: 640px) {
  .privacy-hero {
    padding: 80px 0 66px;
  }

  .privacy-hero h1 {
    margin-top: 16px;
    font-size: clamp(46px, 13vw, 60px);
  }

  .privacy-hero-copy > p:not(.section-kicker):not(.policy-date) {
    font-size: 16px;
    line-height: 1.65;
  }

  .policy-date {
    flex-wrap: wrap;
    row-gap: 3px;
    max-width: 330px;
    line-height: 1.5;
  }

  .policy-date i {
    flex-basis: 100%;
    width: 0;
    height: 0;
    margin: 0;
  }

  .privacy-principles {
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 46px;
  }

  .privacy-principles article {
    min-height: 0;
  }

  .privacy-content {
    padding: 72px 0 90px;
  }

  .policy-article section {
    padding-bottom: 42px;
  }

  .policy-article section + section {
    padding-top: 43px;
  }

  .policy-article h2 {
    margin-bottom: 16px;
    font-size: 27px;
  }

  .policy-article p {
    font-size: 14px;
    line-height: 1.75;
  }

  .policy-article li {
    font-size: 13px;
  }

  .policy-callout {
    grid-template-columns: 24px 1fr;
    gap: 12px;
    padding: 18px;
  }

  .policy-callout svg {
    width: 21px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
