:root {
  --bg: #ffffff;
  --bg-soft: #f7f7f7;
  --surface: #ffffff;
  --surface-indigo: #f0f1ff;
  --text: #1a1a1a;
  --muted: #707070;
  --muted-2: #9a9aa3;
  --border: #e8e8ee;
  --indigo: #6366f1;
  --indigo-light: #818cf8;
  --indigo-dark: #4f46e5;
  --gold: #fbbf24;
  --premium-teal: #00d9c0;
  --success: #10b981;
  --warning: #d97706;
  --danger: #ef4444;
  --shadow: 0 16px 40px rgba(26, 26, 26, 0.06);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --content: 1160px;
  --font-sans: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Source Serif 4", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(232, 232, 238, 0.8);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(100% - 40px, var(--content));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 750;
  font-size: 22px;
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 38px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 650;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--indigo-dark);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #ffffff;
  background: var(--indigo);
  box-shadow: 0 14px 30px rgba(99, 102, 241, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--indigo-dark);
}

.button-secondary {
  color: var(--text);
  background: #ffffff;
  border-color: var(--border);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--indigo-light);
}

.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 42%, rgba(240, 241, 255, 0.5) 100%),
    #ffffff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(99, 102, 241, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 42%, #000 100%);
}

.hero-scene {
  position: absolute;
  right: max(24px, calc((100vw - var(--content)) / 2));
  top: 50%;
  width: min(48vw, 560px);
  min-width: 430px;
  transform: translateY(-50%);
  z-index: -1;
}

.phone {
  position: relative;
  width: 380px;
  min-height: 720px;
  margin: 0 auto;
  padding: 18px;
  border: 10px solid #171717;
  border-radius: 46px;
  background: #f8f8fb;
  box-shadow: 0 30px 80px rgba(26, 26, 26, 0.18);
}

.phone::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  width: 88px;
  height: 22px;
  transform: translateX(-50%);
  background: #171717;
  border-radius: 0 0 18px 18px;
}

.phone-screen {
  min-height: 664px;
  padding: 42px 18px 20px;
  border-radius: 32px;
  background: #ffffff;
  overflow: hidden;
}

.hero-mock-phone {
  width: 390px;
  min-height: 770px;
  padding: 5px;
  border: 1px solid rgba(15, 15, 18, 0.18);
  border-radius: 48px;
  background: linear-gradient(145deg, #2c2c2f, #0f0f11 42%, #3a3a3d);
  box-shadow:
    0 26px 70px rgba(26, 26, 26, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.hero-mock-phone::before {
  display: none;
}

.hero-mock-screen {
  position: relative;
  min-height: 760px;
  padding: 76px 20px 108px;
  border-radius: 43px;
  overflow: hidden;
}

.android-status {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  display: grid;
  grid-template-columns: auto auto 1fr auto auto;
  align-items: center;
  gap: 10px;
  padding: 0 26px;
  color: #050505;
  font-size: 15px;
  font-weight: 800;
}

.android-status b {
  font-size: 20px;
}

.android-status em {
  align-self: center;
  color: #050505;
  font-style: normal;
  font-size: 16px;
  letter-spacing: -0.22em;
  transform: translateX(-2px);
}

.android-status strong {
  width: 28px;
  height: 16px;
  display: block;
  border-radius: 5px;
  background: #050505;
}

.camera-cutout {
  position: absolute;
  top: 13px;
  left: 50%;
  width: 42px;
  height: 42px;
  transform: translateX(-50%);
  border-radius: 999px;
  background:
    radial-gradient(circle at 52% 48%, #2d2250 0 4px, #0b0b0c 5px 11px, transparent 12px),
    #050505;
  box-shadow:
    inset 0 0 0 4px #0d0d0e,
    inset 0 0 0 7px #1f1f22,
    0 1px 2px rgba(0, 0, 0, 0.28);
}

.mock-top,
.mock-brand,
.mock-actions,
.mock-card-top,
.mock-section-title,
.mock-metrics,
.mock-nav {
  display: flex;
  align-items: center;
}

.mock-top {
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.mock-brand {
  gap: 10px;
  min-width: 0;
  flex: 1 1 auto;
  overflow: hidden;
}

.mock-brand img {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  flex: 0 0 auto;
}

.mock-brand > div {
  min-width: 0;
}

.mock-brand strong,
.mock-brand span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mock-brand strong {
  font-size: 22px;
  line-height: 1;
  font-weight: 1000;
}

.mock-brand span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9.5px;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.mock-actions {
  gap: 8px;
  flex: 0 0 auto;
}

.mock-actions span,
.mock-actions b {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--indigo);
  background: #eeeeff;
  font-size: 22px;
}

.mask-icon {
  display: inline-block;
  width: 25px;
  height: 25px;
  background: currentColor;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.moon-icon {
  width: 17px;
  height: 17px;
  mask-image: url("../assets/icon-moon.svg");
  -webkit-mask-image: url("../assets/icon-moon.svg");
}

.nav-home-icon {
  mask-image: url("../assets/nav-home.svg");
  -webkit-mask-image: url("../assets/nav-home.svg");
  transform: translateY(-2px);
}

.nav-receipt-icon {
  mask-image: url("../assets/nav-receipt.svg");
  -webkit-mask-image: url("../assets/nav-receipt.svg");
}

.nav-subscriptions-icon {
  mask-image: url("../assets/nav-subscriptions.svg");
  -webkit-mask-image: url("../assets/nav-subscriptions.svg");
}

.nav-analytics-icon {
  mask-image: url("../assets/nav-analytics.svg");
  -webkit-mask-image: url("../assets/nav-analytics.svg");
}

.mock-actions b {
  color: #ffffff;
  background: var(--indigo);
  box-shadow: inset 0 0 0 2px rgba(251, 191, 36, 0.45);
  font-size: 20px;
}

.hero-mock-screen .screen-title {
  font-size: 26px;
  font-weight: 700;
}

.mock-tier {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: #a7a7ac;
  font-size: 14px;
  font-weight: 900;
}

.mock-tier span {
  display: inline-flex;
  gap: 6px;
  min-height: 32px;
  align-items: center;
  padding: 0 13px;
  border-radius: 14px;
  color: var(--indigo);
  background: #eeeeff;
  font-weight: 1000;
}

.tier-person-icon {
  position: relative;
  width: 13px;
  height: 13px;
  display: inline-block;
}

.tier-person-icon::before,
.tier-person-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: currentColor;
}

.tier-person-icon::before {
  top: 1px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
}

.tier-person-icon::after {
  bottom: 1px;
  width: 11px;
  height: 6px;
  border-radius: 7px 7px 3px 3px;
}

.hero-mock-screen .spend-card {
  position: relative;
  overflow: hidden;
  margin-top: 18px;
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(135deg, #818cf8 0%, #5750ed 78%);
}

.hero-mock-screen .spend-card::before,
.hero-mock-screen .spend-card::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 54px;
  width: 145px;
  height: 145px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-mock-screen .spend-card::after {
  right: 122px;
  top: 156px;
  width: 88px;
  height: 88px;
}

.mock-card-top,
.mock-metrics,
.hero-mock-screen .spend-card > strong,
.hero-mock-screen .spend-card > p {
  position: relative;
  z-index: 1;
}

.mock-card-top {
  justify-content: space-between;
}

.mock-card-top em {
  padding: 6px 16px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 16px;
  color: #ffffff;
  font-style: normal;
  font-weight: 1000;
}

.hero-mock-screen .spend-card > strong {
  margin-top: 22px;
  font-size: 36px;
}

.hero-mock-screen .spend-card > p {
  margin: 12px 0 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.35;
}

.mock-metrics {
  justify-content: space-between;
  gap: 10px;
}

.mock-metrics span,
.mock-metrics b {
  display: block;
}

.mock-metrics span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  font-weight: 1000;
}

.mock-metrics b {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.15;
}

.mock-section-title {
  justify-content: space-between;
  margin: 22px 0 10px;
}

.mock-section-title strong {
  font-size: 18px;
}

.mock-section-title span {
  color: var(--indigo);
  font-size: 14px;
  font-weight: 1000;
}

.hero-mock-screen .activity {
  margin-top: 12px;
  padding: 0;
  border: 0;
  box-shadow: none;
}

.hero-mock-screen .activity-row {
  gap: 12px;
}

.hero-mock-screen .activity-row > div {
  min-width: 0;
  flex: 1;
}

.hero-mock-screen .activity-row > b {
  font-size: 15px;
  white-space: nowrap;
}

.hero-mock-screen .mock-avatar {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 17px;
  color: #3b82f6;
  background: #dbeafe;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.hero-mock-screen .mock-avatar.red {
  color: #ff335c;
  background: #ffdede;
}

.hero-mock-screen .activity span i {
  display: inline-flex;
  margin-left: 8px;
  padding: 2px 10px;
  border-radius: 999px;
  color: #ff335c;
  background: #ffe2e7;
  font-style: normal;
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-mock-screen .activity span i.software {
  color: #3b82f6;
  background: #dbeafe;
}

.hero-mock-screen .activity-row strong {
  font-weight: 700;
}

.hero-mock-screen .activity-row > b {
  font-weight: 700;
}

.mock-fab {
  position: absolute;
  right: 24px;
  bottom: 118px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #ffffff;
  background: var(--indigo);
  box-shadow: 0 14px 24px rgba(26, 26, 26, 0.18);
  font-size: 34px;
}

.mock-nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 42px;
  height: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  place-items: center;
  border-top: 1px solid var(--border);
  color: #9ca3af;
}

.android-system-nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  place-items: center;
  background: #ffffff;
}

.android-back {
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-right: 14px solid #6f6f72;
}

.android-home {
  width: 19px;
  height: 19px;
  border-radius: 999px;
  background: #6f6f72;
}

.android-recents {
  width: 17px;
  height: 17px;
  border-radius: 3px;
  background: #6f6f72;
}

.mock-nav .active {
  width: 48px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--indigo);
  background: #eeeeff;
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.phone-logo {
  width: 40px;
  height: 40px;
}

.phone-pill,
.mini-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--indigo-dark);
  background: var(--surface-indigo);
  font-size: 12px;
  font-weight: 900;
}

.screen-title {
  margin: 0;
  font-size: 30px;
  line-height: 1.08;
  font-weight: 1000;
}

.spend-card {
  margin: 22px 0 16px;
  padding: 20px;
  color: #ffffff;
  border-radius: 24px;
  background: var(--indigo);
}

.spend-card span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spend-card strong {
  display: block;
  margin-top: 8px;
  font-size: 40px;
  line-height: 1;
  font-weight: 1000;
}

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

.metric,
.activity,
.feature-card,
.step-card,
.privacy-summary,
.premium-panel,
.policy-content,
.toc,
.ios-panel {
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.metric {
  padding: 14px;
  border-radius: 18px;
}

.metric span,
.activity span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.metric strong,
.activity strong {
  display: block;
  margin-top: 4px;
  font-size: 18px;
  font-weight: 1000;
}

.activity {
  margin-top: 14px;
  padding: 14px;
  border-radius: 18px;
}

.activity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.fisky-phone {
  width: 410px;
  min-height: 780px;
  padding: 12px;
  border-radius: 58px;
  background: #050505;
}

.fisky-phone::before {
  top: 18px;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: #050505;
}

.app-screen {
  position: relative;
  min-height: 756px;
  padding: 22px 22px 78px;
  border-radius: 48px;
  color: #1d1d20;
  background: #ffffff;
}

.app-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 34px;
  margin-bottom: 50px;
  color: #050505;
  font-size: 15px;
  font-weight: 900;
}

.app-status.compact {
  margin-bottom: 30px;
}

.camera-dot {
  width: 28px;
  height: 28px;
  display: inline-block;
  border-radius: 999px;
  background: #050505;
}

.app-brand-row,
.app-brand-lockup,
.app-actions,
.screen-toolbar,
.attach-row,
.tier-line,
.activity-title,
.app-row,
.toggle-row,
.chip-row,
.legend-row,
.export-list div {
  display: flex;
  align-items: center;
}

.app-brand-row {
  justify-content: space-between;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--border);
}

.app-brand-lockup {
  gap: 12px;
}

.app-brand-lockup img {
  width: 40px;
  height: 40px;
}

.app-brand-lockup strong {
  display: block;
  font-size: 25px;
  line-height: 1;
  font-weight: 1000;
}

.app-brand-lockup span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.app-actions {
  gap: 10px;
}

.round-action,
.avatar {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--indigo);
  background: #eeeeff;
  font-size: 24px;
  font-weight: 1000;
}

.avatar {
  color: #ffffff;
  background: var(--indigo);
  box-shadow: inset 0 0 0 2px rgba(251, 191, 36, 0.5);
}

.dashboard-body {
  padding-top: 28px;
}

.dashboard-body h2 {
  margin-bottom: 12px;
  font-size: 27px;
  line-height: 1.1;
  font-weight: 1000;
}

.tier-line {
  gap: 12px;
  color: #a7a7ac;
  font-size: 15px;
  font-weight: 800;
}

.tier-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 14px;
  color: var(--indigo);
  background: #eeeeff;
  font-weight: 1000;
}

.expense-card {
  position: relative;
  overflow: hidden;
  margin-top: 20px;
  padding: 28px 26px 24px;
  border-radius: 30px;
  color: #ffffff;
  background: linear-gradient(135deg, #818cf8 0%, #5b55ef 70%);
}

.expense-card::before,
.expense-card::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 58px;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
}

.expense-card::after {
  right: 120px;
  top: 160px;
  width: 92px;
  height: 92px;
}

.expense-header,
.expense-metrics {
  position: relative;
  z-index: 1;
}

.expense-header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.expense-header span:first-child {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.year-pill {
  min-width: 82px;
  display: inline-flex;
  justify-content: center;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 16px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 1000;
}

.expense-card > strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 26px;
  font-size: 42px;
  line-height: 1;
  font-weight: 1000;
}

.expense-card p {
  position: relative;
  z-index: 1;
  margin: 14px 0 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.35;
}

.expense-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.expense-metrics span {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 1000;
}

.expense-metrics b {
  display: block;
  margin-top: 2px;
  font-size: 17px;
  line-height: 1.15;
}

.activity-title {
  justify-content: space-between;
  margin: 24px 0 10px;
}

.activity-title h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1;
}

.activity-title span {
  color: var(--indigo);
  font-weight: 1000;
}

.app-list {
  display: grid;
  gap: 16px;
}

.app-row {
  gap: 12px;
}

.app-row > div {
  min-width: 0;
  flex: 1;
}

.app-row strong,
.app-row span {
  display: block;
}

.app-row strong {
  font-size: 17px;
  line-height: 1.2;
}

.app-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.app-row b {
  font-size: 17px;
  white-space: nowrap;
}

.app-initial {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 18px;
  color: #3b82f6;
  background: #dbeafe;
  font-weight: 1000;
}

.app-initial.red {
  color: #ef4444;
  background: #fee2e2;
}

.app-initial.gold {
  color: #d97706;
  background: #fef3c7;
}

.app-fab {
  position: absolute;
  right: 28px;
  bottom: 84px;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #ffffff;
  background: var(--indigo);
  box-shadow: 0 16px 26px rgba(26, 26, 26, 0.18);
  font-size: 34px;
  font-weight: 300;
}

.app-nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  place-items: center;
  border-top: 1px solid var(--border);
  color: #9ca3af;
  font-size: 27px;
}

.app-nav .active {
  width: 48px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--indigo);
  background: #eeeeff;
}

.product-screens {
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
}

.product-story {
  display: grid;
  gap: 24px;
  margin-top: 44px;
}

.story-row {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 38px;
  align-items: center;
  min-height: 430px;
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.story-row.reverse {
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 0.95fr);
}

.story-row.reverse .story-copy {
  grid-column: 2;
}

.story-row.reverse .glimpse-panel {
  grid-column: 1;
  grid-row: 1;
}

.story-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 30px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: var(--indigo);
  background: #eeeeff;
  font-size: 12px;
  font-weight: 1000;
}

.story-copy h3 {
  max-width: 520px;
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.12;
  font-weight: 500;
}

.story-copy p {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
}

.story-copy .story-support-line {
  max-width: 580px;
  margin-top: 22px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
}

.story-support-line strong {
  color: var(--indigo);
  font-weight: 1000;
}

.story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.story-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--indigo-dark);
  background: #eeeeff;
  font-size: 13px;
  font-weight: 1000;
}

.glimpse-panel {
  position: relative;
  min-height: 350px;
  display: grid;
  place-items: center;
  border-radius: 26px;
  background:
    radial-gradient(circle at 70% 20%, rgba(99, 102, 241, 0.12), transparent 42%),
    #f8f8fb;
}

.phone-glimpse {
  position: relative;
  width: min(260px, 84%);
  height: 330px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 22px 60px rgba(26, 26, 26, 0.13);
}

.phone-glimpse::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff 82%);
}

.phone-glimpse img {
  display: block;
  width: 100%;
  height: auto;
}

.add-document-glimpse img {
  transform: translateY(-24%);
}

.add-document-glimpse::after {
  display: none;
}

.analytics-glimpse img {
  transform: translateY(-4%);
}

.export-glimpse img {
  transform: translateY(-2%);
}

.glimpse-note {
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: 230px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  font-size: 13px;
  font-weight: 900;
}

.screen-showcase {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr 0.94fr;
  gap: 22px;
  margin-top: 44px;
}

.screen-card {
  display: grid;
  align-content: start;
  gap: 22px;
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.screen-card.large {
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr);
  align-items: center;
}

.screen-card h3 {
  margin: 8px 0 10px;
  font-size: 28px;
  line-height: 1.08;
}

.screen-card p {
  color: var(--muted);
}

.mini-phone {
  width: 300px;
  min-height: 620px;
  padding: 8px;
  border-width: 0;
  border-radius: 42px;
  justify-self: center;
}

.mini-phone::before {
  top: 10px;
  width: 44px;
  height: 44px;
}

.mini-phone .app-screen {
  min-height: 604px;
  padding: 16px 16px 32px;
  border-radius: 36px;
}

.short-phone {
  min-height: 560px;
}

.short-phone .app-screen {
  min-height: 544px;
}

.screen-toolbar {
  gap: 12px;
  margin-bottom: 22px;
}

.screen-toolbar.solo {
  justify-content: space-between;
}

.screen-toolbar > span:first-child {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--indigo);
  background: #eeeeff;
  font-size: 34px;
  line-height: 1;
}

.screen-toolbar strong {
  font-size: 26px;
  line-height: 1;
}

.attach-row {
  gap: 12px;
  margin-bottom: 24px;
}

.attach-row > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--indigo);
  background: #eeeeff;
  font-size: 25px;
}

.attach-row div {
  flex: 1;
}

.attach-row strong,
.attach-row small {
  display: block;
}

.attach-row small {
  color: var(--muted);
  font-size: 13px;
}

.app-screen label,
.export-screen label {
  display: block;
  margin: 14px 0 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.field {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border: 2px solid var(--indigo);
  border-radius: 13px;
  color: #26262a;
  background: #ffffff;
  font-size: 18px;
  font-weight: 800;
}

.amount-field span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-right: 12px;
  border-radius: 13px;
  color: var(--indigo);
  background: #eeeeff;
}

.muted-field {
  border: 0;
  background: #f2f2f3;
}

.toggle-row {
  justify-content: space-between;
  margin-top: 18px;
  font-size: 16px;
  font-weight: 800;
}

.toggle-row i,
.export-toggle i {
  width: 50px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border-radius: 999px;
  background: #d8d8dc;
}

.toggle-row i::before,
.export-toggle i::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #ffffff;
}

.toggle-row i.on {
  justify-content: flex-end;
  background: var(--indigo);
}

.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-grid span,
.chip-row span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid #dddde3;
  border-radius: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 1000;
}

.category-grid .selected,
.chip-row .selected {
  color: var(--indigo);
  border-color: transparent;
  background: #eeeeff;
}

.category-grid .medical {
  color: var(--danger);
  border-color: var(--danger);
  background: #fff1f2;
}

.summary-panel,
.chart-panel {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #ffffff;
}

.summary-panel {
  margin-bottom: 12px;
}

.summary-panel span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.summary-panel strong {
  display: block;
  margin: 6px 0 16px;
  font-size: 34px;
  line-height: 1;
}

.summary-panel div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.summary-panel em {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: #3b82f6;
  background: #dbeafe;
  font-style: normal;
  font-size: 12px;
  font-weight: 1000;
}

.summary-panel em::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 6px;
  border-radius: 999px;
  background: currentColor;
}

.summary-panel .red-dot {
  color: var(--danger);
  background: #fee2e2;
}

.summary-panel .green-dot {
  color: var(--success);
  background: #dcfce7;
}

.chart-panel {
  margin-top: 12px;
}

.chart-panel h4 {
  margin: 0 0 14px;
  font-size: 17px;
}

.donut {
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  border-radius: 999px;
  background: conic-gradient(#3b82f6 0 36%, #ef4444 36% 61%, #10b981 61% 82%, #f59e0b 82% 100%);
}

.donut span {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #ffffff;
  font-size: 14px;
  font-weight: 1000;
}

.legend-row {
  justify-content: space-between;
  gap: 12px;
  color: #3b82f6;
  font-size: 13px;
}

.legend-row + .legend-row {
  margin-top: 6px;
}

.legend-row span {
  color: var(--muted);
}

.legend-row.red {
  color: var(--danger);
}

.legend-row.green {
  color: var(--success);
}

.bar-grid {
  height: 98px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 12px;
  padding-top: 8px;
}

.bar-grid i {
  display: block;
  min-height: 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #c7d2fe, var(--indigo));
}

.chip-row {
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.export-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  margin: 16px 0;
  padding: 0 14px;
  border-radius: 16px;
  background: #f2f2f3;
  font-size: 14px;
  font-weight: 900;
}

.export-list {
  display: grid;
  gap: 10px;
}

.export-list div {
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--border);
}

.export-list span,
.export-list small {
  display: block;
}

.export-list span {
  font-size: 14px;
  font-weight: 900;
}

.export-list small {
  color: var(--muted);
  font-size: 11px;
}

.export-list b {
  color: #ff005c;
  font-size: 13px;
  white-space: nowrap;
}

.total-line {
  display: block;
  margin: 14px 0;
  text-align: right;
}

.export-button {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 22px;
  color: #ffffff;
  background: linear-gradient(135deg, #818cf8, var(--indigo));
  font: inherit;
  font-weight: 1000;
}

.real-phone {
  position: relative;
  margin: 0;
  border-radius: 42px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(26, 26, 26, 0.18);
}

.real-phone img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-phone {
  width: min(420px, 72vw);
  margin: 0 auto;
}

.screen-phone {
  width: min(100%, 290px);
  justify-self: center;
}

.screen-card.large .screen-phone {
  width: min(100%, 320px);
}

.screen-card .screen-phone + p,
.screen-card p + .screen-phone {
  margin-top: 4px;
}

.page-section {
  padding: 96px 0;
}

.section-inner,
.hero-content {
  width: min(100% - 40px, var(--content));
  margin: 0 auto;
}

.hero-content {
  min-height: calc(100svh - 72px);
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(620px, 56vw);
  padding: 56px 0 92px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 20px;
  color: var(--indigo-dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-copy > .eyebrow {
  font-size: 11px;
  line-height: 1.2;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
}

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

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: clamp(40px, 4.2vw, 56px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 500;
}

.hero-copy > p {
  max-width: 610px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.section-kicker {
  color: var(--indigo-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
  margin: 10px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.12;
  font-weight: 500;
}

.section-lede {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.feature-card {
  min-height: 260px;
  padding: 24px;
  border-radius: 24px;
}

.icon-box {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 16px;
  color: var(--indigo-dark);
  background: var(--surface-indigo);
}

.icon-box svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3,
.step-card h3,
.premium-panel h3,
.privacy-summary h3 {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
}

.feature-card p,
.step-card p,
.privacy-summary p,
.premium-panel p {
  color: var(--muted);
}

.feature-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.feature-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--indigo-dark);
  background: var(--surface-indigo);
  font-size: 12px;
  font-weight: 1000;
}

.soft-band {
  background: var(--bg-soft);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.step-card {
  padding: 24px;
  border-radius: 24px;
}

.step-number {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--indigo);
  font-size: 14px;
  font-weight: 1000;
}

.step-card img {
  width: 100%;
  height: 170px;
  object-fit: contain;
  margin-top: 18px;
}

.trust-layout,
.premium-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.download-layout {
  display: grid;
  gap: 44px;
}

.download-intro {
  max-width: 760px;
}

.privacy-summary,
.premium-panel,
.ios-panel {
  padding: 34px;
  border-radius: 28px;
}

.download-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-weight: 800;
}

.check-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 4px;
  border-radius: 999px;
  background: var(--premium-teal);
  box-shadow: inset 0 0 0 5px #ffffff;
  border: 2px solid var(--premium-teal);
}

.visual-stack {
  min-height: 380px;
  display: grid;
  place-items: center;
  border-radius: 32px;
  background: #ffffff;
  border: 1px solid var(--border);
  overflow: hidden;
}

.visual-stack img {
  width: min(86%, 520px);
}

.premium-band {
  color: #ffffff;
  background: var(--indigo-dark);
}

.premium-band .section-kicker,
.premium-band .section-lede,
.premium-band p,
.premium-band .check-list li {
  color: rgba(255, 255, 255, 0.78);
}

.premium-band .premium-panel {
  color: var(--text);
}

.premium-band .premium-panel p,
.premium-band .premium-panel .check-list li {
  color: var(--muted);
}

.ios-panel {
  color: var(--text);
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.ios-panel p {
  color: var(--muted);
}

.ios-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 14px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--indigo-dark);
  background: var(--surface-indigo);
  font-size: 12px;
  font-weight: 800;
}

.ios-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.ios-form label > span,
.ios-form legend {
  display: block;
  margin-bottom: 7px;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.ios-form input[type="email"] {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--text);
  background: #ffffff;
  font: inherit;
}

.ios-form input[type="email"]:focus {
  outline: 2px solid rgba(99, 102, 241, 0.24);
  border-color: var(--indigo);
}

.ios-form fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0;
  padding: 0;
  border: 0;
}

.ios-form fieldset label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--text);
  background: var(--bg-soft);
  font-size: 13px;
  font-weight: 700;
}

.ios-form input[type="checkbox"] {
  accent-color: var(--indigo);
}

.ios-form .button {
  width: 100%;
  margin-top: 2px;
}

.footer {
  padding: 56px 0;
  border-top: 1px solid var(--border);
  background: #ffffff;
}

.footer-grid {
  width: min(100% - 40px, var(--content));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
}

.footer p {
  max-width: 360px;
  color: var(--muted);
}

.footer h3 {
  margin: 0 0 12px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer a {
  display: block;
  margin: 8px 0;
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--indigo-dark);
}

.play-placeholder {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  margin-top: 14px;
  padding: 0 14px;
  border-radius: 12px;
  color: var(--muted);
  border: 1px dashed var(--border);
  font-size: 13px;
  font-weight: 900;
}

.policy-hero {
  padding: 72px 0 56px;
  background: var(--bg-soft);
}

.policy-layout {
  width: min(100% - 40px, var(--content));
  display: grid;
  grid-template-columns: 250px minmax(0, 760px);
  gap: 42px;
  align-items: start;
  margin: 56px auto 96px;
}

.toc {
  position: sticky;
  top: 96px;
  padding: 20px;
  border-radius: 20px;
}

.toc h2 {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.toc a {
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.toc a:hover,
.toc a.active {
  color: var(--indigo-dark);
  background: var(--surface-indigo);
}

.policy-content {
  padding: 42px;
  border-radius: 28px;
}

.policy-content section {
  padding-bottom: 42px;
  margin-bottom: 42px;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 104px;
}

.policy-content section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.policy-content h2 {
  margin-bottom: 14px;
  font-size: 26px;
  line-height: 1.2;
}

.policy-content p,
.policy-content li {
  color: var(--muted);
}

.policy-content a {
  color: var(--indigo-dark);
  font-weight: 900;
}

.note {
  margin: 22px 0;
  padding: 18px;
  border-radius: 18px;
  color: var(--indigo-dark);
  background: var(--surface-indigo);
  font-weight: 900;
}

.policy-content ul {
  padding-left: 20px;
}

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

  .hero {
    min-height: auto;
  }

  .hero-content {
    min-height: auto;
    display: block;
    padding-top: 48px;
  }

  .hero-copy {
    width: 100%;
    max-width: 700px;
    padding: 0;
  }

  .hero-scene {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    min-width: 0;
    margin: 32px auto 56px;
    transform: none;
  }

  .phone {
    width: min(100%, 340px);
    min-height: 650px;
  }

  .phone-screen {
    min-height: 594px;
  }

  .fisky-phone {
    width: min(100%, 390px);
    min-height: 740px;
  }

  .fisky-phone .app-screen {
    min-height: 716px;
  }

  .screen-showcase,
  .story-row,
  .story-row.reverse,
  .screen-card.large {
    grid-template-columns: 1fr;
  }

  .story-row.reverse .story-copy,
  .story-row.reverse .glimpse-panel {
    grid-column: auto;
    grid-row: auto;
  }

  .features-grid,
  .steps-grid,
  .trust-layout,
  .premium-layout,
  .download-panels,
  .footer-grid,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .toc {
    position: static;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .nav {
    width: min(100% - 24px, var(--content));
    height: 68px;
    gap: 12px;
  }

  .nav .button {
    width: auto;
    min-height: 38px;
    padding: 0 11px;
    font-size: 12px;
    border-radius: 12px;
    white-space: nowrap;
  }

  .brand {
    min-width: 0;
    font-size: 18px;
  }

  .brand img {
    width: 32px;
    height: 32px;
  }

  .section-inner,
  .hero-content,
  .policy-layout,
  .footer-grid {
    width: min(100% - 32px, var(--content));
  }

  .hero-copy > p,
  .section-lede {
    max-width: 34ch;
    font-size: 17px;
  }

  .cta-row {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .page-section {
    padding: 64px 0;
  }

  .feature-card,
  .step-card,
  .privacy-summary,
  .premium-panel,
  .policy-content {
    padding: 22px;
    border-radius: 20px;
  }

  .phone {
    max-width: 320px;
    border-width: 8px;
    border-radius: 40px;
  }

  .fisky-phone {
    max-width: 340px;
    min-height: 690px;
    border-radius: 48px;
  }

  .fisky-phone .app-screen {
    min-height: 670px;
    border-radius: 40px;
  }

  .screen-showcase {
    gap: 16px;
  }

  .story-row {
    min-height: 0;
    padding: 22px;
    border-radius: 22px;
  }

  .glimpse-panel {
    min-height: 300px;
  }

  .phone-glimpse {
    height: 270px;
  }

  .glimpse-note {
    position: static;
    justify-self: center;
    max-width: 100%;
    margin: -18px 16px 0;
  }

  .screen-card {
    padding: 20px;
    border-radius: 22px;
  }

  .screen-card h3 {
    font-size: 24px;
  }

  .mini-phone {
    max-width: 300px;
    min-height: 600px;
  }

  .mini-phone .app-screen {
    min-height: 584px;
  }

  .expense-card > strong {
    font-size: 34px;
  }

  .expense-metrics {
    grid-template-columns: 1fr;
  }

  .screen-title {
    font-size: 26px;
  }

  .spend-card strong {
    font-size: 34px;
  }

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

  .visual-stack {
    min-height: 260px;
  }

  .policy-hero {
    padding: 52px 0 42px;
  }

  .policy-layout {
    margin: 32px auto 64px;
  }
}

@media (max-width: 430px) {
  .nav {
    width: min(100% - 16px, var(--content));
    gap: 8px;
  }

  .brand {
    gap: 8px;
    font-size: 16px;
  }

  .brand img {
    width: 30px;
    height: 30px;
  }

  .nav .button {
    min-height: 32px;
    padding: 0 8px;
    font-size: 10.5px;
    border-radius: 10px;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #101014;
    --bg-soft: #17171d;
    --surface: #1c1c23;
    --surface-indigo: #26264f;
    --text: #f4f1ea;
    --muted: #b7b2aa;
    --muted-2: #85818a;
    --border: #30303a;
    --shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
  }

  .site-header {
    background: rgba(16, 16, 20, 0.86);
    border-bottom-color: rgba(48, 48, 58, 0.82);
  }

  .hero {
    background:
      linear-gradient(90deg, rgba(16, 16, 20, 0.98) 0%, rgba(16, 16, 20, 0.94) 46%, rgba(38, 38, 79, 0.36) 100%),
      var(--bg);
  }

  .hero::before {
    background-image:
      linear-gradient(rgba(129, 140, 248, 0.11) 1px, transparent 1px),
      linear-gradient(90deg, rgba(129, 140, 248, 0.11) 1px, transparent 1px);
  }

  .button-secondary {
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--border);
  }

  .phone,
  .hero-mock-screen,
  .fisky-phone .app-screen,
  .mini-phone .app-screen,
  .screen-phone .app-screen {
    color: #1a1a1a;
    background: #ffffff;
  }

  .hero-mock-screen .activity {
    color: #1a1a1a;
    background: transparent;
    border-color: transparent;
  }

  .hero-mock-screen .activity span {
    color: #777777;
  }

  .hero-mock-screen .activity-row strong,
  .hero-mock-screen .activity-row > b,
  .hero-mock-screen .screen-title,
  .hero-mock-screen .mock-section-title strong {
    color: #1a1a1a;
  }

  .hero-mock-screen .mock-tier,
  .hero-mock-screen .mock-card-top span,
  .hero-mock-screen .mock-metrics span {
    color: #a7a7ac;
  }

  .hero-mock-screen .mock-tier span,
  .hero-mock-screen .mock-actions span,
  .hero-mock-screen .mock-nav .active {
    color: var(--indigo);
    background: #eeeeff;
  }

  .hero-mock-screen .android-system-nav {
    background: #ffffff;
  }

  .hero-mock-phone,
  .fisky-phone,
  .mini-phone,
  .screen-phone {
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  }

  .product-screens {
    background: linear-gradient(180deg, #101014 0%, #17171d 100%);
  }

  .story-row,
  .feature-card,
  .step-card,
  .privacy-summary,
  .premium-panel,
  .policy-content,
  .toc,
  .ios-panel {
    background: var(--surface);
  }

  .story-row {
    color: var(--text);
    border-color: var(--border);
  }

  .glimpse-panel,
  .visual-stack {
    background:
      radial-gradient(circle at 70% 20%, rgba(99, 102, 241, 0.18), transparent 42%),
      var(--bg-soft);
  }

  .phone-glimpse {
    background: #ffffff;
  }

  .phone-glimpse::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff 82%);
  }

  .glimpse-note {
    color: var(--text);
    background: #252531;
    border-color: #3b3b49;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
  }

  .feature-proof span,
  .story-number,
  .ios-label,
  .mock-tier span,
  .mock-actions span,
  .mock-nav .active,
  .mini-pill {
    color: #c7c9ff;
    background: rgba(99, 102, 241, 0.2);
  }

  .soft-band,
  .footer,
  .policy-hero {
    background: var(--bg-soft);
  }

  .footer {
    border-top-color: var(--border);
  }

  .ios-form input[type="email"] {
    color: var(--text);
    background: #14141a;
    border-color: var(--border);
  }

  .ios-form fieldset label {
    color: var(--text);
    background: #24242c;
  }

  .premium-band {
    background: #3730a3;
  }
}
