@font-face {
  font-family: "Figtree";
  src: url("assets/fonts/figtree-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Serif";
  src: url("assets/fonts/instrument-serif-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

:root {
  color-scheme: light;
  --ink: #111317;
  --muted: #626b78;
  --muted-strong: #46505e;
  --paper: #f8fafc;
  --surface: rgba(255, 255, 255, 0.78);
  --line: rgba(45, 68, 99, 0.13);
  --blue: #1677f3;
  --blue-deep: #0762dc;
  --cyan: #05b9cb;
  --green: #2ac75f;
  --gold: #e9a11a;
  --header-reserved: 94px;
  --feature-dock-rest: 14px;
  --feature-index-offset: -46px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }

html {
  min-height: 100%;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  background-color: #f5f8fc;
  background-image:
    radial-gradient(circle at 12% 4%, rgba(66, 143, 244, 0.11), transparent 25rem),
    radial-gradient(circle at 88% 18%, rgba(40, 213, 208, 0.08), transparent 28rem),
    linear-gradient(180deg, #f7f9fc, #fff 42%, #f8fafc);
  background-attachment: fixed;
}

body {
  min-width: 320px;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  padding-top: var(--header-reserved);
  overflow-x: hidden;
  color: var(--ink);
  background: transparent;
  font-size: 16px;
  line-height: 1.6;
}

body::before {
  position: fixed;
  z-index: 100;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.85'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { overflow-wrap: break-word; }

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

h1,
h2,
h3,
.wordmark {
  font-family: "Figtree", "Inter", sans-serif;
}

em {
  color: var(--blue);
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}

monthmade-header {
  display: block;
  height: 0;
}

monthmade-footer { display: block; }

.liquid-glass {
  background: rgba(248, 250, 252, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow:
    0 12px 38px rgba(45, 64, 90, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    inset 0 0 0 1px rgba(75, 91, 113, 0.07);
  -webkit-backdrop-filter: blur(12px) saturate(135%);
  backdrop-filter: blur(12px) saturate(135%);
}

@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .liquid-glass { background: rgba(255, 255, 255, 0.16); }
}

.site-header {
  position: fixed;
  z-index: 120;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  padding: 14px 16px;
}

.feature-navigation-handoff .site-header {
  position: absolute;
  top: var(--feature-header-release-y, 0);
}

.feature-index-active .site-header { visibility: hidden; }

.header-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  width: min(1160px, 100%);
  min-height: 58px;
  margin: 0 auto;
  padding: 7px;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.94);
  border-radius: 24px;
  box-shadow: 0 0 0 1px rgba(45, 68, 99, 0.14), 0 12px 38px rgba(45, 64, 90, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.96), inset 0 0 0 1px rgba(75, 91, 113, 0.07);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-size: 19px;
  font-variation-settings: "wght" 620;
  letter-spacing: -0.03em;
}

.wordmark img {
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(31, 82, 157, 0.12);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  color: #566171;
}

.desktop-nav a {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.74), 0 4px 14px rgba(38, 72, 116, 0.07);
}

.header-inner:has(.desktop-nav a:hover, .header-cta:hover) .desktop-nav a.active:not(:hover) {
  color: inherit;
  background: transparent;
  box-shadow: none;
}

.button.header-cta {
  justify-self: end;
  min-height: 42px;
  padding: 0 19px;
  font-size: 14px;
}

.button-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 13px 30px rgba(15, 84, 180, 0.22);
}

.spotlight {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(18px);
}

.spotlight-blue {
  top: -180px;
  left: 50%;
  width: 680px;
  height: 540px;
  background: radial-gradient(circle, rgba(57, 140, 255, 0.19), rgba(86, 162, 255, 0.06) 48%, transparent 72%);
  transform: translateX(-55%);
}

.spotlight-cyan {
  top: 230px;
  right: -170px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 211, 216, 0.12), transparent 68%);
}

.spotlight-gold {
  top: -160px;
  left: 50%;
  width: 620px;
  height: 500px;
  background: radial-gradient(circle, rgba(239, 171, 52, 0.14), transparent 69%);
  transform: translateX(-50%);
}

.home-hero {
  position: relative;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0 76px;
  text-align: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.home-hero h1,
.page-hero h1,
.download-hero h1 {
  margin: 0;
  font-size: clamp(46px, 5.1vw, 58px);
  font-variation-settings: "wght" 620;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.home-hero h1 em,
.page-hero h1 em,
.download-hero h1 em {
  font-size: 1.08em;
  line-height: 0.95;
}

.hero-copy > p,
.page-hero > p,
.download-hero > p {
  max-width: 650px;
  margin: 25px auto 0;
  color: var(--muted-strong);
  font-size: 19px;
  line-height: 1.58;
  letter-spacing: -0.01em;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #2387ff, #0b69e9);
  border: 1px solid rgba(8, 88, 207, 0.38);
  box-shadow: 0 11px 26px rgba(14, 107, 230, 0.22), 0 0 24px rgba(43, 145, 255, 0.09);
}

.button-secondary {
  color: #2f3947;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  box-shadow: 0 9px 24px rgba(35, 58, 89, 0.06);
}

.button-secondary:hover {
  transform: translateY(-1px);
  border-color: rgba(22, 119, 243, 0.27);
}

.hero-product {
  position: relative;
  z-index: 2;
  width: min(1040px, 94%);
  margin: 66px auto 0;
}

.app-shot {
  position: relative;
  z-index: 2;
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.94);
  box-shadow: 0 30px 75px rgba(29, 54, 91, 0.17), 0 0 0 1px rgba(50, 78, 118, 0.08);
}

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

.app-shot-hero {
  aspect-ratio: 1.66 / 1;
  border-radius: 25px;
}

.menu-shot {
  position: absolute;
  right: -3%;
  bottom: -9%;
  z-index: 4;
  width: 31%;
  aspect-ratio: 800 / 698;
  border-radius: 19px;
  box-shadow: 0 26px 62px rgba(18, 42, 78, 0.23), 0 0 36px rgba(45, 133, 250, 0.12);
  transform: rotate(1.2deg);
}

.screenshot-glow {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(24px);
}

.screenshot-glow-blue {
  inset: 9% 10% -10%;
  background: radial-gradient(ellipse, rgba(35, 131, 255, 0.26), rgba(39, 176, 246, 0.08) 48%, transparent 72%);
}

.screenshot-glow-cyan {
  inset: 8% 5% -8%;
  background: radial-gradient(ellipse, rgba(0, 190, 213, 0.21), rgba(38, 123, 246, 0.08) 47%, transparent 72%);
}

.month-logic {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
  padding: 118px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.7fr);
  gap: 90px;
  align-items: end;
  margin-bottom: 55px;
}

.section-heading h2,
.story-copy h2,
.quiet-card h2,
.simple-cta h2,
.feature-row h2,
.duo-card h2,
.pricing-card h2,
.pricing-notes h2,
.download-details h2,
.support-cta h2 {
  margin: 0;
  font-size: clamp(37px, 4vw, 48px);
  font-variation-settings: "wght" 610;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.logic-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.logic-points article {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.logic-points h3 {
  margin: 0 0 9px;
  font-size: 20px;
  font-variation-settings: "wght" 600;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.logic-points p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.feature-story {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(500px, 1.32fr);
  gap: 68px;
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 110px;
  padding: 64px 0 64px 64px;
  overflow: hidden;
  background:
    radial-gradient(circle at 87% 26%, rgba(0, 197, 218, 0.09), transparent 24rem),
    rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 31px;
  box-shadow: 0 24px 65px rgba(35, 61, 98, 0.08);
}

.feature-label {
  display: inline-block;
  margin-bottom: 15px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.015em;
}

.story-copy h2 { font-size: clamp(38px, 4vw, 47px); }
.story-copy > p,
.quiet-card > div > p,
.feature-row-copy > p,
.duo-card > p {
  margin: 19px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 25px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 600;
}

.story-visual,
.feature-row-visual {
  position: relative;
  min-width: 0;
}

.report-shot {
  width: 730px;
  max-width: none;
  aspect-ratio: 1.04 / 1;
  border-radius: 24px 0 0 24px;
}

.quiet-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto 110px;
}

.quiet-card {
  position: relative;
  min-height: 590px;
  padding: 42px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 20px 55px rgba(35, 61, 98, 0.07);
}

.quiet-card h2 { font-size: clamp(34px, 3.5vw, 43px); }
.compact-menu-shot {
  position: absolute;
  right: -4%;
  bottom: -5%;
  width: 80%;
  aspect-ratio: 800 / 698;
  border-radius: 21px;
  transform: rotate(-1.5deg);
}

.privacy-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 84%, rgba(66, 205, 220, 0.2), transparent 18rem),
    radial-gradient(circle at 8% 6%, rgba(79, 150, 250, 0.13), transparent 16rem),
    rgba(249, 253, 255, 0.82);
  border-color: rgba(48, 143, 217, 0.14);
  box-shadow: 0 24px 68px rgba(35, 83, 126, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  backdrop-filter: blur(20px) saturate(150%);
}

.privacy-card .feature-label,
.duo-card-privacy .feature-label { color: #0699ad; }
.privacy-card h2,
.duo-card-privacy h2 { color: var(--ink); }
.privacy-card > div > p,
.duo-card-privacy > p { color: var(--muted); }
.privacy-orb { position: absolute; right: -100px; bottom: -90px; width: 340px; height: 340px; background: radial-gradient(circle, rgba(0, 190, 211, 0.17), transparent 68%); border-radius: 50%; filter: blur(15px); }
.privacy-value { position: relative; z-index: 2; color: #268ba5; font-size: 30px; letter-spacing: 0.15em; text-shadow: 0 0 24px rgba(87, 192, 220, 0.18); }
.text-link-light { color: var(--blue); }

.simple-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 55px;
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto 105px;
  padding: 48px;
  background: rgba(255, 255, 255, 0.73);
  border: 1px solid var(--line);
  border-radius: 27px;
  box-shadow: 0 18px 52px rgba(35, 61, 98, 0.07);
}

.simple-cta h2 { max-width: 650px; font-size: clamp(34px, 3.7vw, 45px); }
.simple-cta p { max-width: 650px; margin: 17px 0 0; color: var(--muted); font-size: 16px; }
.simple-cta .button { flex: 0 0 auto; }

.site-footer {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0 26px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 46px 0;
  border-top: 1px solid var(--line);
}

.footer-brand > p {
  max-width: 350px;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 82px;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 9px;
  min-width: 110px;
}

.footer-links strong {
  margin-bottom: 3px;
  color: #424c59;
  font-size: 13px;
  font-weight: 600;
}

.footer-links a {
  color: var(--muted);
  font-size: 14px;
}

.footer-links a:hover { color: var(--blue); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 18px;
  color: #7c8592;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

/* Shared page layout */
.page-hero,
.download-hero {
  position: relative;
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
  padding: 105px 0 92px;
  text-align: center;
}

.page-hero > :not(.spotlight),
.download-hero > :not(.spotlight) {
  position: relative;
  z-index: 2;
}

.feature-index-trigger {
  position: relative;
  top: var(--feature-index-offset);
  height: 0;
  pointer-events: none;
}

.feature-index-dock {
  position: sticky;
  top: var(--header-reserved);
  z-index: 115;
  width: max-content;
  max-width: calc(100% - 32px);
  margin: var(--feature-index-offset) auto 68px;
}

.feature-navigation-handoff .feature-index-dock { top: var(--feature-dock-rest); }

.feature-index {
  position: relative;
  display: flex;
  gap: 0;
  width: max-content;
  max-width: 100%;
  margin: 0;
  padding: 5px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  color: #596474;
  border-radius: 999px;
}

.feature-index::-webkit-scrollbar { display: none; }

.feature-index a {
  flex: 0 0 auto;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 550;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.feature-index a:hover,
.feature-index a.active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72), 0 4px 14px rgba(38, 72, 116, 0.07);
}

.feature-index:has(a:hover) a.active:not(:hover) {
  color: inherit;
  background: transparent;
  box-shadow: none;
}

.scroll-top-button {
  position: fixed;
  right: max(calc(24px + env(safe-area-inset-right)), calc(50vw - 660px));
  bottom: calc(64px + env(safe-area-inset-bottom));
  z-index: 118;
  width: 54px;
  height: 54px;
  min-height: 54px;
  padding: 0;
  visibility: hidden;
  opacity: 0;
  cursor: pointer;
  pointer-events: none;
  transition: transform 160ms ease, opacity 180ms ease, visibility 180ms linear, box-shadow 160ms ease, border-color 160ms ease;
}

.scroll-top-button svg { width: 21px; height: 21px; }

body.feature-index-active .scroll-top-button {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.header-cta:focus-visible,
.desktop-nav a:focus-visible,
.feature-index a:focus-visible,
.scroll-top-button:focus-visible {
  outline: 3px solid rgba(22, 119, 243, 0.28);
  outline-offset: 3px;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 22px;
}

.feature-tags span,
.tier-pill {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 4px 10px;
  color: #39506f;
  background: rgba(232, 241, 253, 0.85);
  border: 1px solid rgba(39, 114, 213, 0.12);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 570;
}

.screen-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto 110px;
}

.screen-card {
  position: relative;
  min-width: 0;
  padding: 36px 36px 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 22px 58px rgba(35, 61, 98, 0.08);
}

.screen-card h3 { margin: 0; font-size: 22px; font-weight: 610; letter-spacing: -0.03em; }
.screen-card p { margin: 8px 0 25px; color: var(--muted); font-size: 15px; line-height: 1.6; }
.screen-card .app-shot { height: 455px; border-radius: 20px 20px 0 0; }
.screen-card .app-shot img { object-position: top center; }

.menu-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 34px;
}

.menu-pair .app-shot { aspect-ratio: 800 / 698; border-radius: 18px; }
.menu-pair .app-shot img { object-fit: cover; }

.payment-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.payment-types div {
  padding: 17px;
  background: rgba(245, 248, 253, 0.86);
  border: 1px solid rgba(45, 68, 99, 0.08);
  border-radius: 15px;
}

.payment-types strong { display: block; font-size: 15px; }
.payment-types span { display: block; margin-top: 4px; color: var(--muted); font-size: 13px; line-height: 1.45; }

.feature-navigation-page .section-anchor { scroll-margin-top: calc(var(--feature-dock-rest) + 58px); }

.feature-row {
  display: grid;
  grid-template-columns: minmax(310px, 0.72fr) minmax(500px, 1.28fr);
  gap: 65px;
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 100px;
  padding: 58px 0 58px 58px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.73);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: 0 22px 62px rgba(35, 61, 98, 0.08);
}

.feature-row-reverse {
  background:
    radial-gradient(circle at 18% 20%, rgba(0, 192, 212, 0.08), transparent 22rem),
    rgba(255, 255, 255, 0.73);
}

.feature-row h2 { font-size: clamp(37px, 3.8vw, 46px); }

.plain-list {
  display: grid;
  gap: 10px;
  margin: 23px 0 0;
  padding: 0;
  color: var(--muted-strong);
  list-style: none;
  font-size: 15px;
}

.plain-list li {
  position: relative;
  padding-left: 20px;
}

.plain-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--blue);
  content: "·";
  font-size: 25px;
  font-weight: 700;
  line-height: 0.8;
}

.feature-dashboard-shot,
.feature-reports-shot {
  width: 760px;
  max-width: none;
  aspect-ratio: 1.17 / 1;
  border-radius: 23px 0 0 23px;
}

.feature-row-reverse .feature-row-copy { order: 2; padding-right: 58px; }
.feature-row-reverse .feature-row-visual { order: 1; margin-left: -58px; }
.feature-row-reverse .feature-reports-shot { border-radius: 0 23px 23px 0; }

.feature-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto 100px;
}

.duo-card {
  position: relative;
  min-height: 570px;
  padding: 42px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 20px 55px rgba(35, 61, 98, 0.07);
}

.duo-card h2 { font-size: clamp(34px, 3.4vw, 42px); }
.feature-menu-shot { position: absolute; right: -5%; bottom: -5%; width: 80%; aspect-ratio: 800 / 698; border-radius: 21px; transform: rotate(-1deg); }
.duo-card-privacy {
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 10%, rgba(65, 147, 246, 0.14), transparent 18rem),
    radial-gradient(circle at 86% 88%, rgba(49, 207, 215, 0.17), transparent 17rem),
    rgba(249, 253, 255, 0.84);
  border-color: rgba(46, 142, 215, 0.14);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  backdrop-filter: blur(20px) saturate(150%);
}

.duo-card-privacy .privacy-value { margin-top: auto; margin-bottom: 18px; }

/* Pricing */
.pricing-hero { padding-bottom: 64px; }

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
  width: min(1040px, calc(100% - 48px));
  margin: 0 auto 90px;
}

.pricing-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  min-height: 0;
  padding: 38px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.79);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 22px 62px rgba(35, 61, 98, 0.08);
}

.pricing-card-premium {
  isolation: isolate;
  color: var(--ink);
  background: rgba(244, 249, 255, 0.92);
  border-color: rgba(22, 119, 243, 0.38);
  box-shadow: 0 28px 72px rgba(22, 119, 243, 0.13), 0 0 0 6px rgba(22, 119, 243, 0.035), inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.pricing-card-footer {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 26px;
  margin-top: 24px;
}

.premium-purchase-grid {
  position: relative;
  display: grid;
  grid-template-rows: repeat(2, 98px);
  grid-template-columns: 1fr;
  gap: 14px;
  padding-top: 18px;
}

.purchase-option {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 16px;
  align-items: center;
  min-width: 0;
  min-height: 98px;
  padding: 17px 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(22, 119, 243, 0.16);
  border-radius: 18px;
}

.purchase-option-copy {
  min-width: 0;
}

.purchase-option h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 620;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.purchase-option-copy p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.purchase-price {
  position: relative;
  grid-column: 2;
  align-self: center;
  display: grid;
  justify-items: end;
  width: 120px;
  min-width: 120px;
  text-align: right;
}

.purchase-price-view {
  position: relative;
  grid-area: 1 / 1;
  display: grid;
  justify-items: end;
  opacity: 0;
  transition: opacity 160ms cubic-bezier(0.2, 0, 0, 1);
}

.purchase-price-view.is-active { opacity: 1; }

.purchase-price strong {
  font-family: "Figtree";
  font-size: 42px;
  font-variation-settings: "wght" 640;
  line-height: 1;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.purchase-period {
  position: absolute;
  top: calc(100% + 3px);
  right: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}

.billing-switch {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 4px 9px 4px 11px;
  color: var(--muted-strong);
  background: rgba(248, 251, 255, 0.98);
  border: 1px solid rgba(22, 119, 243, 0.32);
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 7px 18px rgba(35, 61, 98, 0.12), 0 0 0 5px rgba(244, 249, 255, 0.9);
  transform: translate(-50%, -50%);
}

.billing-switch-label {
  font-size: 12px;
  font-weight: 590;
  line-height: 1;
  white-space: nowrap;
}

.billing-switch-track {
  position: relative;
  flex: 0 0 auto;
  width: 42px;
  height: 24px;
  background: #c4cedb;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(45, 68, 99, 0.1);
  transition: background 160ms ease;
}

.billing-switch-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(35, 61, 98, 0.28);
  transition: transform 160ms ease;
}

.billing-switch input:checked + .billing-switch-track { background: var(--blue); }
.billing-switch input:checked + .billing-switch-track .billing-switch-thumb { transform: translateX(18px); }
.billing-switch input:focus-visible + .billing-switch-track { outline: 3px solid rgba(22, 119, 243, 0.28); outline-offset: 2px; }
.billing-switch[data-billing-state="month"] .billing-switch-month,
.billing-switch[data-billing-state="year"] .billing-switch-year { color: var(--ink); font-weight: 700; }
.billing-switch[data-billing-state="month"] .billing-switch-year,
.billing-switch[data-billing-state="year"] .billing-switch-month { color: var(--muted); font-weight: 590; }

.purchase-option-subscription {
  background: rgba(255, 255, 255, 0.79);
}

.purchase-value {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 16px;
  padding: 4px 10px;
  color: var(--blue-deep);
  background: rgba(241, 247, 255, 0.98);
  border: 1px solid rgba(22, 119, 243, 0.2);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  white-space: nowrap;
  box-shadow: 0 5px 14px rgba(35, 61, 98, 0.08), 0 0 0 4px rgba(244, 249, 255, 0.84);
  transform: translateY(-50%);
}

.purchase-option-lifetime {
  background: rgba(22, 119, 243, 0.08);
  border-color: rgba(22, 119, 243, 0.31);
  box-shadow: 0 8px 22px rgba(22, 119, 243, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.purchase-option-free { min-height: 98px; }
.purchase-option-free .purchase-price strong { font-size: 42px; }

.faq-section {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto 105px;
}

.faq-list {
  width: min(800px, 100%);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  position: relative;
  padding: 21px 52px 21px 4px;
  cursor: pointer;
  list-style: none;
  font-family: "Figtree";
  font-size: 18px;
  font-variation-settings: "wght" 610;
  letter-spacing: -0.025em;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 6px;
  color: var(--blue-deep);
  content: "+";
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list summary:focus-visible { outline: 3px solid rgba(22, 119, 243, 0.25); outline-offset: 4px; border-radius: 10px; }
.faq-list p { margin: -4px 52px 0 4px; padding-bottom: 23px; color: var(--muted); font-size: 15px; line-height: 1.65; }

.pricing-card-head {
  position: relative;
  z-index: 2;
  display: block;
}

.pricing-card-head > div { min-width: 0; }

.plan-name {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 28px;
  margin-bottom: 18px;
  padding: 0 10px;
  color: var(--blue);
  background: rgba(45, 68, 99, 0.055);
  border: 1px solid rgba(45, 68, 99, 0.07);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.pricing-card-premium .plan-name { color: #fff; background: var(--blue); border-color: rgba(7, 98, 220, 0.16); box-shadow: 0 8px 20px rgba(22, 119, 243, 0.2); }
.pricing-card h2 { max-width: none; min-height: 0; font-size: 30px; }

.plan-summary {
  position: relative;
  z-index: 2;
  min-height: 0;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.plan-list {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: start;
  gap: 11px;
  margin: 22px 0 0;
  padding: 0;
  color: var(--muted-strong);
  list-style: none;
  font-size: 16px;
  line-height: 1.45;
}

.plan-list li {
  position: relative;
  padding-left: 24px;
}

.plan-list li::before {
  position: absolute;
  left: 0;
  color: var(--blue);
  content: "✓";
  font-weight: 700;
}

.pricing-card-premium .plan-list { color: var(--muted-strong); }
.pricing-card-premium .plan-list li::before { color: var(--blue); }
.pricing-card .button { position: relative; z-index: 2; width: 100%; margin-top: 0; }

.section-heading.centered {
  display: block;
  max-width: 650px;
  margin: 0 auto 42px;
  text-align: center;
}

.pricing-notes,
.download-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: min(1040px, calc(100% - 48px));
  margin: 0 auto 105px;
}

.pricing-notes article,
.download-details article {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.pricing-notes h2,
.download-details h2 { font-size: 24px; }
.pricing-notes p,
.download-details p { margin: 10px 0 0; color: var(--muted); font-size: 15px; }

/* Download */
.download-hero { padding-top: 75px; }
.download-icon { width: 116px; margin: 0 auto 28px; }
.download-icon img { border-radius: 28px; box-shadow: 0 22px 55px rgba(31, 80, 154, 0.2), 0 0 42px rgba(40, 137, 255, 0.12); }
.download-button { margin-top: 27px; }
.system-note { display: block; margin-top: 13px; color: var(--muted); font-size: 14px; }
.download-details { padding-top: 15px; }
.support-cta { display: flex; align-items: center; justify-content: space-between; gap: 50px; width: min(1040px, calc(100% - 48px)); margin: 0 auto 105px; padding: 38px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.support-cta h2 { font-size: 30px; }
.support-cta p { margin: 8px 0 0; color: var(--muted); font-size: 15px; }

/* Contact */
.contact-hero { padding-bottom: 72px; }
.contact-email-button { margin-top: 28px; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto 105px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 31px;
  background:
    radial-gradient(circle at 95% 0, rgba(93, 174, 255, 0.1), transparent 13rem),
    rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 20px 55px rgba(35, 61, 98, 0.07);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  backdrop-filter: blur(18px) saturate(145%);
}

.contact-card h2 { margin: 0; font-size: 25px; font-variation-settings: "wght" 610; font-weight: 400; line-height: 1.16; letter-spacing: -0.035em; }
.contact-card p { margin: 14px 0 0; color: var(--muted); font-size: 15px; line-height: 1.64; }
.contact-card .text-link { margin-top: auto; padding-top: 22px; }

.contact-guidance {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto 105px;
}

.contact-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.contact-notes article {
  padding: 28px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.contact-notes h3 { margin: 0; font-size: 19px; font-weight: 610; letter-spacing: -0.025em; }
.contact-notes p { margin: 9px 0 0; color: var(--muted); font-size: 15px; line-height: 1.62; }

/* Privacy and support */
.legal-body {
  background: transparent;
}

.legal-shell {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
  padding: 82px 0 35px;
}

.legal-title { max-width: 690px; }
.legal-title .section-kicker { margin: 0 0 10px; color: var(--blue); font-size: 14px; font-weight: 600; }
.legal-title h1 { margin: 0; font-family: "Figtree"; font-size: 56px; font-variation-settings: "wght" 620; font-weight: 400; line-height: 1.05; letter-spacing: -0.04em; }
.legal-updated { margin: 16px 0 0; color: var(--muted); font-size: 14px; }
.draft-notice { display: grid; gap: 5px; margin: 38px 0 18px; padding: 18px 20px; color: #65490f; background: #fff8e7; border: 1px solid rgba(207, 140, 19, 0.19); border-radius: 14px; }
.draft-notice strong { font-size: 14px; }
.draft-notice span { color: #7c642e; font-size: 14px; line-height: 1.5; }
.legal-content { overflow: hidden; background: rgba(255, 255, 255, 0.83); border: 1px solid var(--line); border-radius: 23px; box-shadow: 0 22px 65px rgba(35, 61, 98, 0.08); }
.legal-content section { padding: 34px 38px; border-bottom: 1px solid var(--line); }
.legal-content section:last-child { border-bottom: 0; }
.legal-content h2 { margin: 0 0 13px; font-family: "Figtree"; font-size: 24px; font-variation-settings: "wght" 600; font-weight: 400; letter-spacing: -0.03em; }
.legal-content p { margin: 11px 0 0; color: #566171; font-size: 15px; line-height: 1.72; }
.legal-content p:first-of-type { margin-top: 0; }
.legal-content code { padding: 2px 5px; color: #38527a; background: #f1f5fb; border-radius: 5px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.92em; overflow-wrap: anywhere; }
.legal-content a { color: var(--blue); font-weight: 600; }
.legal-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-top: 20px; }
.legal-facts div { display: grid; gap: 5px; padding: 14px; background: #f5f8fc; border-radius: 11px; }
.legal-facts strong { font-size: 14px; }
.legal-facts span { color: #6f7a89; font-size: 13px; line-height: 1.45; }
.legal-content ol { display: grid; gap: 10px; margin: 14px 0 0; padding-left: 20px; color: #566171; font-size: 15px; line-height: 1.68; }
.legal-content li::marker { color: var(--blue); font-weight: 700; }
.legal-footer { padding-top: 45px; }

@media (max-width: 940px) {
  .feature-story,
  .feature-row { grid-template-columns: 1fr; gap: 42px; padding: 52px; }
  .report-shot,
  .feature-dashboard-shot,
  .feature-reports-shot { width: 100%; border-radius: 23px; }
  .feature-row-reverse .feature-row-copy,
  .feature-row-reverse .feature-row-visual { order: initial; margin: 0; padding: 0; }
  .feature-row-reverse .feature-reports-shot { border-radius: 23px; }
}

@media (max-width: 840px) {
  :root { --header-reserved: 126px; --feature-dock-rest: 10px; }
  .site-header { padding: 10px 12px; }
  .header-inner { grid-template-columns: 1fr auto; row-gap: 7px; padding: 8px; border-radius: 25px; }
  .desktop-nav { grid-column: 1 / -1; grid-row: 2; justify-content: flex-start; width: 100%; overflow-x: auto; overscroll-behavior-x: contain; scrollbar-width: none; }
  .desktop-nav::-webkit-scrollbar { display: none; }
  .desktop-nav a { flex: 1 0 auto; padding: 7px 10px; text-align: center; }
  .desktop-nav a:focus-visible { outline: 0; box-shadow: inset 0 0 0 3px rgba(22, 119, 243, 0.28); }
}

@media (max-width: 760px) {
  .home-hero { padding-top: 68px; }
  .app-shot-hero { aspect-ratio: 1.25 / 1; }
  .menu-shot { width: 40%; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; }
  .logic-points { grid-template-columns: 1fr; gap: 24px; }
  .feature-story { margin-bottom: 85px; }
  .quiet-features,
  .feature-duo,
  .pricing-cards { grid-template-columns: 1fr; }
  .quiet-card,
  .duo-card { min-height: 540px; }
  .simple-cta,
  .support-cta { align-items: flex-start; flex-direction: column; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .pricing-notes,
  .download-details { grid-template-columns: 1fr; gap: 25px; }
  .screen-pair,
  .contact-grid,
  .contact-notes { grid-template-columns: 1fr; }
  .payment-types { grid-template-columns: 1fr 1fr; }
  .feature-index-dock {
    max-width: calc(100% - max(14px, env(safe-area-inset-left)) - max(14px, env(safe-area-inset-right)));
    margin-right: auto;
    margin-bottom: 54px;
    margin-left: auto;
  }
  .feature-index { justify-content: flex-start; border-radius: 17px; }
  .contact-card { min-height: 270px; }
}

@media (max-width: 520px) {
  .wordmark { font-size: 17px; }
  .wordmark img { width: 33px; height: 33px; }
  .button.header-cta { min-height: 38px; padding: 0 15px; }
  .desktop-nav a { flex: 1 1 0; min-width: 0; padding: 6px 3px; font-size: 12px; }
  .home-hero,
  .page-hero,
  .download-hero { width: calc(100% - 28px); }
  .home-hero { padding: 62px 0 68px; }
  .home-hero h1,
  .page-hero h1,
  .download-hero h1 { font-size: 40px; line-height: 1.1; }
  .hero-copy > p,
  .page-hero > p,
  .download-hero > p { font-size: 17px; }
  .hero-actions { flex-direction: column; align-items: stretch; width: min(290px, 100%); margin-right: auto; margin-left: auto; }
  .hero-product { width: 100%; margin-top: 50px; }
  .app-shot-hero { aspect-ratio: 1.03 / 1; border-radius: 18px; }
  .menu-shot { right: -2%; bottom: -15%; width: 52%; border-radius: 14px; }
  .month-logic,
  .quiet-features,
  .feature-duo,
  .screen-pair,
  .faq-section,
  .simple-cta,
  .pricing-cards,
  .pricing-notes,
  .download-details,
  .support-cta,
  .contact-grid,
  .contact-guidance { width: calc(100% - 28px); }
  .month-logic { padding: 90px 0; }
  .section-heading h2,
  .story-copy h2,
  .quiet-card h2,
  .simple-cta h2,
  .feature-row h2,
  .duo-card h2 { font-size: 36px; }
  .feature-story,
  .feature-row { width: calc(100% - 20px); padding: 42px 20px 20px; border-radius: 24px; }
  .report-shot,
  .feature-dashboard-shot,
  .feature-reports-shot { aspect-ratio: 0.98 / 1; border-radius: 18px; }
  .quiet-card,
  .duo-card { min-height: 510px; padding: 28px; border-radius: 24px; }
  .screen-card { padding: 27px 20px 0; border-radius: 23px; }
  .screen-card .app-shot { height: 390px; }
  .menu-pair { grid-template-columns: 1fr; }
  .payment-types { grid-template-columns: 1fr; }
  .compact-menu-shot,
  .feature-menu-shot { width: 91%; }
  .simple-cta { padding: 34px 28px; border-radius: 23px; }
  .page-hero { padding: 78px 0 70px; }
  .pricing-card { padding: 24px; border-radius: 24px; }
  .pricing-card h2 { font-size: 28px; }
  .plan-summary,
  .plan-list { font-size: 15px; }
  .purchase-option { min-height: 94px; column-gap: 10px; padding: 16px; }
  .premium-purchase-grid { grid-template-rows: repeat(2, 94px); }
  .purchase-option h3 { font-size: 17px; }
  .purchase-option-copy p { font-size: 12px; }
  .purchase-price { width: 108px; min-width: 108px; }
  .purchase-price strong { font-size: 38px; }
  .purchase-period { font-size: 10px; }
  .billing-switch { left: 50%; right: auto; gap: 6px; min-height: 34px; padding: 3px 7px; transform: translate(-50%, -50%); }
  .billing-switch-label { font-size: 11px; }
  .billing-switch-track { width: 40px; height: 23px; }
  .billing-switch-thumb { width: 19px; height: 19px; }
  .billing-switch input:checked + .billing-switch-track .billing-switch-thumb { transform: translateX(17px); }
  .purchase-value { right: 12px; }
  .purchase-option-free { min-height: 94px; }
  .purchase-option-free .purchase-price strong { font-size: 38px; }
  .faq-list summary { padding-right: 42px; font-size: 17px; }
  .faq-list p { margin-right: 36px; }
  .scroll-top-button { right: calc(20px + env(safe-area-inset-right)); bottom: calc(48px + env(safe-area-inset-bottom)); width: 50px; height: 50px; min-height: 50px; }
  .download-icon { width: 96px; }
  .download-icon img { border-radius: 23px; }
  .site-footer { width: calc(100% - 28px); }
  .footer-links { gap: 45px; }
  .footer-bottom { display: grid; gap: 6px; }
  .legal-shell { width: calc(100% - 28px); padding-top: 65px; }
  .legal-title h1 { font-size: 46px; }
  .legal-content { border-radius: 19px; }
  .legal-content section { padding: 28px 22px; }
  .legal-facts { grid-template-columns: 1fr; }
}

@media (max-width: 360px) {
  .purchase-option { column-gap: 8px; padding: 14px; }
  .purchase-option h3 { font-size: 16px; }
  .purchase-price { width: 98px; min-width: 98px; }
  .purchase-price strong { font-size: 34px; }
  .purchase-option-free .purchase-price strong { font-size: 34px; }
  .purchase-period { font-size: 9px; }
  .billing-switch { gap: 4px; padding: 3px 6px; }
  .billing-switch-label { font-size: 10px; }
  .billing-switch-track { width: 36px; height: 22px; }
  .billing-switch-thumb { width: 18px; height: 18px; }
  .billing-switch input:checked + .billing-switch-track .billing-switch-thumb { transform: translateX(14px); }
  .purchase-value { right: 8px; padding: 3px 7px; font-size: 10px; }
}

.legal-title.privacy-title { max-width: none; }
.legal-title.privacy-title h1 { font-size: clamp(20px, 6.2vw, 56px); white-space: nowrap; overflow-wrap: normal; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .purchase-price-view { transition: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}

@media (prefers-reduced-transparency: reduce) {
  .liquid-glass { background: rgba(248, 250, 252, 0.94); -webkit-backdrop-filter: none; backdrop-filter: none; }
}
