:root {
  --bg: #fffaf7;
  --paper: #ffffff;
  --ink: #2d2726;
  --muted: #796e6a;
  --line: #eadfda;
  --coral: #ff765f;
  --coral-deep: #f05f4a;
  --coral-soft: #ffe9e3;
  --peach: #ffb59f;
  --green: #93c9ab;
  --green-soft: #e8f5ed;
  --yellow: #f6ce79;
  --yellow-soft: #fff3d7;
  --violet: #a99bd1;
  --violet-soft: #eeebf8;
  --shadow: 0 30px 70px rgba(98, 65, 54, 0.12);
  --soft-shadow: 0 18px 50px rgba(98, 65, 54, 0.08);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --shell: min(1160px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 5% 9%, rgba(255, 199, 181, 0.22), transparent 23rem),
    var(--bg);
  font-family:
    "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", system-ui, -apple-system,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  color: white;
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 18px 0;
  transition:
    padding 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  padding: 10px 0;
  background: rgba(255, 250, 247, 0.88);
  box-shadow: 0 8px 30px rgba(68, 46, 39, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--shell);
  min-height: 50px;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 20px;
  font-weight: 760;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: block;
  width: 38px;
  height: 38px;
  overflow: hidden;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 20px rgba(98, 65, 54, 0.15);
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 33px;
  font-size: 14px;
  font-weight: 600;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  color: #615754;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 50%;
  bottom: -7px;
  left: 50%;
  height: 2px;
  border-radius: 99px;
  content: "";
  background: var(--coral);
  transition:
    right 0.2s ease,
    left 0.2s ease;
}

.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a:not(.nav-cta):focus-visible::after {
  right: 0;
  left: 0;
}

.nav-cta {
  padding: 11px 20px;
  border-radius: 99px;
  color: #fff;
  background: var(--ink);
  box-shadow: 0 8px 20px rgba(45, 39, 38, 0.13);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--coral-deep);
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 0;
  border-radius: 12px;
  background: transparent;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 99px;
  background: var(--ink);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.hero {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  min-height: 820px;
  padding-top: 118px;
  padding-bottom: 82px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 8px 14px 8px 10px;
  border: 1px solid #f1ddd6;
  border-radius: 99px;
  color: #655955;
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 650;
}

.eyebrow-dot {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  background: var(--coral-soft);
}

.eyebrow-dot::after {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--coral);
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(48px, 5.4vw, 78px);
  font-weight: 780;
  line-height: 1.14;
  letter-spacing: -0.065em;
}

.hero h1 span {
  display: block;
  color: var(--coral);
}

.hero-lead {
  max-width: 570px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero-qr-row {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-top: 22px;
  padding: 9px 18px 9px 9px;
  border: 1px solid #efded7;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 15px 35px rgba(98, 65, 54, 0.08);
}

.hero-qr-code {
  width: 104px;
  height: 104px;
  padding: 4px;
  flex: 0 0 auto;
  border-radius: 14px;
  background: #fff;
}

.hero-qr-code img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.hero-qr-row > div:last-child {
  display: grid;
  gap: 6px;
  text-align: left;
}

.hero-qr-row strong {
  font-size: 14px;
}

.hero-qr-row span {
  color: var(--muted);
  font-size: 11px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 25px;
  border-radius: 99px;
  font-size: 15px;
  font-weight: 720;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-primary {
  gap: 17px;
  color: #fff;
  background: var(--coral);
  box-shadow: 0 15px 30px rgba(240, 95, 74, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--coral-deep);
  box-shadow: 0 18px 34px rgba(240, 95, 74, 0.32);
}

.button-ghost {
  border: 1px solid #e5d7d1;
  background: rgba(255, 255, 255, 0.74);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.hero-note {
  display: flex;
  align-items: center;
  margin-top: 31px;
  color: #847773;
  font-size: 13px;
}

.mini-avatar {
  display: grid;
  width: 31px;
  height: 31px;
  margin-left: -7px;
  place-items: center;
  border: 2px solid var(--bg);
  border-radius: 50%;
  color: #554943;
  font-size: 10px;
  font-weight: 800;
}

.mini-avatar:first-child {
  margin-left: 0;
}

.mini-avatar--pink {
  background: #ffb6aa;
}

.mini-avatar--yellow {
  background: #f8d88f;
}

.mini-avatar--green {
  margin-right: 10px;
  background: #a8d7bb;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 655px;
  place-items: center;
}

.hero-visual::before {
  position: absolute;
  width: 545px;
  height: 545px;
  border-radius: 48% 52% 55% 45%;
  content: "";
  background:
    radial-gradient(circle at 40% 30%, rgba(255, 255, 255, 0.94), transparent 35%),
    linear-gradient(145deg, #ffd9cf, #ffeae2 68%);
  transform: rotate(-7deg);
}

.orbit {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(239, 128, 98, 0.18);
  border-radius: 50%;
}

.orbit--one {
  width: 610px;
  height: 610px;
}

.orbit--two {
  width: 675px;
  height: 675px;
  border-style: dashed;
}

.phone {
  position: relative;
  z-index: 2;
  width: 312px;
  padding: 8px;
  border: 7px solid #302a29;
  border-radius: 45px;
  background: #302a29;
  box-shadow:
    0 40px 80px rgba(81, 49, 39, 0.24),
    inset 0 0 0 1px #4f4745;
  transform: rotate(2deg);
}

.phone-screen {
  position: relative;
  aspect-ratio: 640 / 1385;
  overflow: hidden;
  border-radius: 32px;
  background: #fffaf7;
}

.hero-app-shot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 43px;
  padding: 0 19px;
  font-size: 10px;
  font-weight: 700;
}

.phone-status {
  letter-spacing: 2px;
}

.app-greeting {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 20px 17px;
  font-size: 15px;
  font-weight: 760;
}

.app-greeting button {
  width: 29px;
  height: 27px;
  border: 0;
  border-radius: 10px;
  color: var(--muted);
  background: #f2e9e5;
}

.balance-card {
  margin: 0 14px;
  padding: 22px 19px 17px;
  border-radius: 23px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.2), transparent 40%),
    linear-gradient(135deg, #ff8b73, #f36853);
  box-shadow: 0 15px 35px rgba(239, 105, 82, 0.22);
}

.balance-card p {
  margin: 0 0 7px;
  font-size: 11px;
  opacity: 0.82;
}

.balance-card > strong {
  font-size: 27px;
  letter-spacing: -0.04em;
}

.balance-card > strong small {
  font-size: 13px;
}

.balance-row {
  display: flex;
  gap: 27px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 9px;
  opacity: 0.9;
}

.balance-row b {
  display: block;
  margin-top: 4px;
  font-size: 11px;
}

.quick-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 19px 13px;
}

.quick-title strong {
  font-size: 13px;
}

.quick-title span {
  color: #9a8d88;
  font-size: 9px;
}

.expense-list {
  margin: 0 13px;
  padding: 3px 9px;
  border-radius: 18px;
  background: white;
}

.expense-item {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 11px 3px;
  border-bottom: 1px solid #f2eae6;
}

.expense-item:last-child {
  border-bottom: 0;
}

.expense-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 760;
}

.expense-icon--food {
  color: #e2634e;
  background: #ffe4dc;
}

.expense-icon--ride {
  color: #569778;
  background: #def0e5;
}

.expense-icon--daily {
  color: #8b78bc;
  background: #ebe7f7;
}

.expense-name {
  font-size: 11px;
  font-weight: 700;
}

.expense-name small {
  display: block;
  margin-top: 3px;
  color: #aa9d98;
  font-size: 8px;
  font-weight: 400;
}

.expense-item > strong {
  font-size: 10px;
}

.phone-tabbar {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  height: 64px;
  padding: 7px 8px 8px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 -5px 20px rgba(74, 52, 45, 0.05);
}

.phone-tabbar > span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #b4aaa6;
  font-size: 12px;
}

.phone-tabbar small {
  font-size: 8px;
}

.phone-tabbar .active {
  color: var(--coral);
}

.phone-tabbar .add-button {
  align-self: center;
  width: 42px;
  height: 42px;
  margin: 0 auto 8px;
  justify-content: center;
  border-radius: 16px;
  color: #fff;
  background: var(--coral);
  box-shadow: 0 7px 16px rgba(240, 95, 74, 0.25);
  font-size: 25px;
}

.floating-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 150px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 35px rgba(93, 61, 52, 0.12);
  backdrop-filter: blur(12px);
}

.floating-card--budget {
  top: 115px;
  right: -4px;
}

.floating-card--habit {
  bottom: 108px;
  left: -2px;
}

.floating-icon {
  display: grid;
  width: 37px;
  height: 37px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  font-weight: 850;
}

.floating-icon--green {
  color: #4e9b72;
  background: var(--green-soft);
}

.floating-icon--pink {
  color: #e26653;
  background: var(--coral-soft);
}

.floating-card small,
.floating-card strong {
  display: block;
}

.floating-card small {
  margin-bottom: 3px;
  color: #928581;
  font-size: 9px;
}

.floating-card strong {
  font-size: 13px;
}

.promise-strip {
  border-block: 1px solid #eee2dd;
  background: rgba(255, 255, 255, 0.55);
}

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

.promise-grid > div {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 112px;
  padding: 25px 30px;
  border-right: 1px solid #eee2dd;
}

.promise-grid > div:first-child {
  padding-left: 0;
}

.promise-grid > div:last-child {
  border-right: 0;
}

.promise-number {
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: 23px;
  font-style: italic;
}

.promise-grid > div > span:last-child {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.promise-grid strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
}

.feature-section {
  padding-top: 140px;
  padding-bottom: 145px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 58px;
}

.section-kicker {
  display: block;
  margin-bottom: 16px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.08em;
}

.section-heading h2,
.scene-intro h2,
.get-started-copy h2,
.faq-heading h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.24;
  letter-spacing: -0.055em;
}

.section-heading > p {
  max-width: 400px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

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

.feature-card {
  position: relative;
  min-height: 455px;
  overflow: hidden;
  border: 1px solid rgba(115, 83, 72, 0.06);
  border-radius: var(--radius-xl);
  box-shadow: var(--soft-shadow);
}

.feature-card--large {
  min-height: 390px;
}

.feature-card--coral {
  grid-column: 1 / -1;
  background: var(--coral-soft);
}

.feature-card--green {
  background: var(--green-soft);
}

.feature-card--violet {
  background: var(--violet-soft);
}

.feature-card--yellow {
  grid-column: 1 / -1;
  background: var(--yellow-soft);
}

.card-copy {
  position: relative;
  z-index: 2;
  padding: 42px 43px;
}

.feature-card--large .card-copy {
  max-width: 49%;
}

.card-tag {
  display: inline-block;
  margin-bottom: 26px;
  padding: 7px 12px;
  border-radius: 99px;
  color: #786b66;
  background: rgba(255, 255, 255, 0.67);
  font-size: 11px;
  font-weight: 760;
}

.card-copy h3 {
  margin: 0 0 14px;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.card-copy p {
  max-width: 385px;
  margin: 0;
  color: #746965;
  font-size: 14px;
  line-height: 1.85;
}

.ai-mode-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 23px;
}

.ai-mode-list span {
  padding: 8px 12px;
  border: 1px solid rgba(222, 105, 82, 0.14);
  border-radius: 99px;
  color: #8b554a;
  background: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  font-weight: 720;
}

.ai-entry-demo {
  position: absolute;
  right: 42px;
  bottom: -20px;
  width: 44%;
  min-width: 390px;
  padding: 25px;
  border-radius: 28px 28px 0 0;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 50px rgba(98, 65, 54, 0.12);
}

.ai-demo-head {
  display: flex;
  align-items: center;
  gap: 11px;
}

.ai-demo-avatar {
  display: block;
  width: 39px;
  height: 39px;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(98, 65, 54, 0.1);
}

.ai-demo-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ai-demo-head strong,
.ai-demo-head small {
  display: block;
}

.ai-demo-head strong {
  font-size: 12px;
}

.ai-demo-head small {
  margin-top: 4px;
  color: #9a8d88;
  font-size: 9px;
}

.ai-user-message {
  width: fit-content;
  max-width: 88%;
  margin: 19px 0 17px auto;
  padding: 11px 14px;
  border-radius: 15px 15px 4px 15px;
  color: #604e1f;
  background: #ffe46d;
  font-size: 10px;
  font-weight: 650;
}

.ai-result-list {
  overflow: hidden;
  border-radius: 16px;
  background: #fff8f5;
}

.ai-result-list > span {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border-bottom: 1px solid #f0e4df;
}

.ai-result-list > span:last-child {
  border-bottom: 0;
}

.ai-result-list i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 9px;
  color: #d9614c;
  background: #ffe4dc;
  font-size: 9px;
  font-style: normal;
  font-weight: 760;
}

.ai-result-list b,
.ai-result-list strong {
  font-size: 10px;
}

.ai-result-list strong {
  color: #e05d4b;
}

.ai-demo-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  color: #7b716d;
  font-size: 9px;
}

.ai-demo-status span {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #79bd95;
  font-size: 9px;
}

.quick-entry-demo {
  position: absolute;
  right: 42px;
  bottom: -40px;
  width: 44%;
  min-width: 370px;
  padding: 27px;
  border-radius: 28px 28px 0 0;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 50px rgba(98, 65, 54, 0.12);
}

.demo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 750;
}

.demo-close {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  color: #968a86;
  background: #f4efec;
}

.demo-amount {
  display: block;
  margin: 25px 0 20px;
  font-size: 36px;
  letter-spacing: -0.04em;
}

.demo-amount small {
  font-size: 16px;
}

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

.category-pills span {
  padding: 8px 12px;
  border-radius: 99px;
  color: #877a76;
  background: #f5efec;
  font-size: 10px;
}

.category-pills .selected {
  color: #fff;
  background: var(--coral);
}

.demo-submit {
  margin-top: 20px;
  padding: 12px;
  border-radius: 12px;
  color: #fff;
  background: var(--ink);
  font-size: 11px;
  font-weight: 720;
  text-align: center;
}

.budget-demo {
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 29px;
}

.budget-ring {
  display: grid;
  width: 145px;
  height: 145px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(#6fb18d 0 62%, rgba(255, 255, 255, 0.62) 62% 100%);
}

.budget-ring::before {
  position: absolute;
  width: 103px;
  height: 103px;
  border-radius: 50%;
  content: "";
  background: #edf8f1;
}

.budget-ring span {
  position: relative;
  z-index: 1;
  color: #7e8d84;
  font-size: 9px;
  text-align: center;
}

.budget-ring b {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 25px;
}

.budget-legend {
  display: grid;
  gap: 12px;
  color: #6f7d75;
  font-size: 10px;
}

.budget-legend span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.budget-legend i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6fb18d;
}

.budget-legend span:last-child i {
  background: #c9e4d3;
}

.chart-demo {
  position: absolute;
  right: 38px;
  bottom: 33px;
  left: 38px;
  padding: 27px 27px 17px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.66);
}

.chart-bars {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: end;
  gap: 11px;
  height: 112px;
  border-bottom: 1px solid #dcd5ed;
}

.chart-bars i {
  height: var(--bar);
  border-radius: 8px 8px 2px 2px;
  background: linear-gradient(#a99bd1, #c8bee4);
}

.chart-bars i:nth-child(4) {
  background: var(--coral);
}

.chart-labels {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 11px;
  padding-top: 9px;
  color: #9188aa;
  font-size: 8px;
  text-align: center;
}

.asset-demo {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 50%;
  height: 100%;
  padding: 50px 43px;
  align-content: center;
  gap: 28px;
  background: rgba(255, 255, 255, 0.36);
}

.asset-total {
  padding-right: 20px;
  border-right: 1px solid rgba(155, 120, 63, 0.16);
}

.asset-total span,
.asset-total small {
  display: block;
  color: #9a865c;
  font-size: 10px;
}

.asset-total strong {
  display: block;
  margin: 11px 0;
  font-size: 23px;
  letter-spacing: -0.04em;
}

.asset-list {
  display: grid;
  align-content: center;
  gap: 16px;
  color: #77694c;
  font-size: 10px;
}

.asset-list span {
  display: grid;
  grid-template-columns: 9px 1fr auto;
  align-items: center;
  gap: 7px;
}

.asset-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.asset-dot--orange {
  background: #ebaa4e;
}

.asset-dot--pink {
  background: #ec8975;
}

.asset-dot--blue {
  background: #80a6cb;
}

.scene-section {
  padding: 140px 0;
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 125, 95, 0.14), transparent 28rem),
    #2f2928;
}

.scene-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 65px;
}

.scene-intro .section-kicker {
  max-width: 220px;
  margin-bottom: 8px;
  color: #ff9b86;
  line-height: 1.8;
}

.scene-intro h2 {
  text-align: right;
}

.scene-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.scene-card {
  position: relative;
  min-height: 350px;
  padding: 35px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.scene-card:last-child {
  border-right: 0;
}

.scene-card:hover {
  background: rgba(255, 255, 255, 0.045);
  transform: translateY(-5px);
}

.scene-index {
  position: absolute;
  top: 35px;
  right: 28px;
  color: rgba(255, 255, 255, 0.28);
  font-family: Georgia, serif;
  font-style: italic;
}

.scene-icon {
  display: grid;
  width: 61px;
  height: 61px;
  margin-top: 42px;
  place-items: center;
  border-radius: 21px;
  color: #4f4542;
  font-size: 17px;
  font-weight: 800;
  transform: rotate(-3deg);
}

.scene-icon--pink {
  background: #f99a88;
}

.scene-icon--green {
  background: #9acbae;
}

.scene-icon--yellow {
  background: #f0cf84;
}

.scene-icon--violet {
  background: #ad9ecf;
}

.scene-card h3 {
  margin: 30px 0 13px;
  font-size: 21px;
}

.scene-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.8;
}

.screens-section {
  padding-top: 145px;
  padding-bottom: 150px;
}

.section-heading--center {
  display: block;
  text-align: center;
}

.section-heading--center > p {
  max-width: 520px;
  margin: 20px auto 0;
}

.screens-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
  padding-top: 42px;
}

.screen-showcase {
  min-width: 0;
  margin: 0;
}

.screen-showcase--lift {
  margin-top: -28px;
}

.screen-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  padding: 6px;
  border: 4px solid #332c2a;
  border-radius: 28px;
  background: #332c2a;
  box-shadow: 0 22px 50px rgba(68, 46, 39, 0.12);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.screen-showcase:hover .screen-media {
  box-shadow: 0 30px 65px rgba(68, 46, 39, 0.18);
  transform: translateY(-6px);
}

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

.screen-showcase figcaption {
  display: grid;
  gap: 7px;
  padding: 18px 5px 0;
  text-align: center;
}

.screen-showcase figcaption span {
  color: var(--coral);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.04em;
}

.screen-showcase figcaption strong {
  font-size: 13px;
  line-height: 1.45;
}

.get-started-section {
  padding-bottom: 150px;
}

.get-started-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 460px;
  overflow: hidden;
  padding: 70px 90px;
  border-radius: 44px;
  background:
    radial-gradient(circle at 90% 0, rgba(255, 255, 255, 0.4), transparent 22rem),
    #ffd4c8;
}

.get-started-card::before {
  position: absolute;
  top: -95px;
  right: 195px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(229, 102, 76, 0.18);
  border-radius: 50%;
  content: "";
}

.get-started-card::after {
  position: absolute;
  right: 40px;
  bottom: -160px;
  width: 360px;
  height: 360px;
  border: 1px dashed rgba(229, 102, 76, 0.23);
  border-radius: 50%;
  content: "";
}

.get-started-copy {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.get-started-copy .section-kicker {
  color: #d85640;
}

.get-started-copy p {
  max-width: 515px;
  margin: 24px 0;
  color: #78605a;
  font-size: 15px;
  line-height: 1.9;
}

.platform-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 10px 10px;
  border-radius: 99px;
  color: #5a514d;
  background: rgba(255, 255, 255, 0.63);
  font-size: 12px;
  font-weight: 680;
}

.platform-note span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 9px;
  color: #fff;
  background: #51b77b;
  font-size: 10px;
  font-weight: 800;
}

.qr-panel {
  max-width: 300px;
  position: relative;
  z-index: 2;
  padding: 14px 14px 11px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 50px rgba(112, 68, 53, 0.14);
  text-align: center;
  transform: rotate(2deg);
}

.qr-code-wrap {
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid #eee3df;
  border-radius: 17px;
  background: #fff;
}

.qr-code-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qr-panel p {
  margin: 13px 0 2px;
  color: #796c68;
  font-size: 11px;
  font-weight: 680;
}

.deco-flower {
  position: absolute;
  color: rgba(238, 105, 79, 0.34);
}

.deco-flower--one {
  top: 65px;
  right: 370px;
  font-size: 34px;
}

.deco-flower--two {
  right: 46px;
  bottom: 52px;
  font-size: 22px;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 80px;
  padding-bottom: 150px;
}

.faq-heading {
  position: sticky;
  top: 130px;
  align-self: start;
}

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

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

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 2px;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 720;
}

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

.faq-item summary span {
  color: var(--coral);
  font-size: 24px;
  font-weight: 300;
  transition: transform 0.2s ease;
}

.faq-item[open] summary span {
  transform: rotate(45deg);
}

.faq-item div {
  overflow: hidden;
}

.faq-item p {
  margin: -4px 40px 27px 2px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.site-footer {
  color: rgba(255, 255, 255, 0.66);
  background: #292321;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  padding-top: 80px;
  padding-bottom: 70px;
}

.brand--footer {
  color: white;
}

.footer-main > div:first-child > p {
  max-width: 330px;
  margin: 20px 0 0;
  font-size: 13px;
  line-height: 1.8;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 13px;
  font-size: 12px;
}

.footer-links strong {
  margin-bottom: 6px;
  color: #fff;
  font-size: 13px;
}

.footer-links a {
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #ff9580;
}

.footer-links span {
  color: rgba(255, 255, 255, 0.37);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-top: 22px;
  padding-bottom: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 10px;
}

.filing-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.filing-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.filing-links a:hover,
.filing-links a:focus-visible {
  color: #ff9580;
}

.filing-mark {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  font-size: 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr 0.86fr;
  }

  .hero-visual {
    transform: scale(0.86);
  }

  .quick-entry-demo,
  .ai-entry-demo {
    right: 28px;
  }

  .get-started-card {
    padding-inline: 60px;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: min(100% - 32px, 680px);
  }

  .menu-button {
    position: relative;
    z-index: 102;
    display: block;
    cursor: pointer;
  }

  .menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    visibility: hidden;
    background: rgba(255, 250, 247, 0.98);
    opacity: 0;
    transform: translateY(-12px);
    transition:
      opacity 0.22s ease,
      transform 0.22s ease,
      visibility 0.22s ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav > a {
    font-size: 20px;
  }

  .nav-cta {
    padding: 14px 27px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 145px;
    padding-bottom: 100px;
    text-align: center;
  }

  .hero-copy {
    max-width: 650px;
    margin-inline: auto;
  }

  .hero h1 {
    font-size: clamp(47px, 10vw, 68px);
  }

  .hero-lead {
    margin-inline: auto;
  }

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

  .hero-visual {
    min-height: 650px;
    margin-top: 20px;
    transform: scale(0.92);
  }

  .promise-grid {
    grid-template-columns: 1fr;
    padding-block: 10px;
  }

  .promise-grid > div,
  .promise-grid > div:first-child {
    min-height: 86px;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid #eee2dd;
  }

  .promise-grid > div:last-child {
    border-bottom: 0;
  }

  .feature-section,
  .screens-section {
    padding-block: 110px;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 22px;
  }

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

  .feature-card--coral,
  .feature-card--yellow {
    grid-column: auto;
  }

  .feature-card--large {
    min-height: 590px;
  }

  .feature-card--large .card-copy {
    max-width: none;
  }

  .quick-entry-demo,
  .ai-entry-demo {
    right: 7%;
    bottom: -30px;
    left: 7%;
    width: auto;
    min-width: 0;
  }

  .asset-demo {
    right: 6%;
    bottom: 0;
    left: 6%;
    width: auto;
    height: 45%;
    border-radius: 25px 25px 0 0;
  }

  .scene-intro {
    display: block;
  }

  .scene-intro h2 {
    margin-top: 25px;
    text-align: left;
  }

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

  .scene-card:nth-child(2) {
    border-right: 0;
  }

  .scene-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .screens-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 44px;
  }

  .screen-showcase--lift {
    margin-top: 0;
  }

  .get-started-card {
    padding: 58px 48px;
  }

  .get-started-copy {
    padding-right: 30px;
  }

  .qr-panel {
    min-width: 160px;
  }

  .faq-section {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .faq-heading {
    position: static;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .site-header {
    padding-top: 12px;
  }

  .brand {
    font-size: 18px;
  }

  .brand-mark {
    width: 35px;
    height: 35px;
  }

  .hero {
    min-height: auto;
    padding-top: 125px;
    padding-bottom: 70px;
  }

  .hero h1 {
    font-size: clamp(42px, 13.5vw, 58px);
    line-height: 1.18;
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.8;
  }

  .hero-actions {
    flex-direction: column;
    margin-top: 29px;
  }

  .hero-qr-row {
    width: 100%;
    max-width: 350px;
    justify-content: flex-start;
  }

  .hero-qr-code {
    width: 96px;
    height: 96px;
  }

  .button {
    width: 100%;
  }

  .hero-note {
    flex-wrap: wrap;
    row-gap: 9px;
  }

  .hero-note > span:last-child {
    width: 100%;
  }

  .hero-visual {
    min-height: 535px;
    margin: -10px -8px 0;
    transform: scale(0.74);
  }

  .hero-visual::before {
    width: 505px;
    height: 505px;
  }

  .orbit--one {
    width: 555px;
    height: 555px;
  }

  .orbit--two {
    width: 610px;
    height: 610px;
  }

  .floating-card--budget {
    right: -45px;
  }

  .floating-card--habit {
    left: -42px;
  }

  .feature-section,
  .screens-section {
    padding-block: 85px;
  }

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

  .section-heading h2,
  .scene-intro h2,
  .get-started-copy h2,
  .faq-heading h2 {
    font-size: 35px;
  }

  .feature-card {
    min-height: 450px;
    border-radius: 28px;
  }

  .feature-card--large {
    min-height: 570px;
  }

  .card-copy {
    padding: 31px 28px;
  }

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

  .quick-entry-demo,
  .ai-entry-demo {
    right: 18px;
    left: 18px;
    padding: 23px;
  }

  .budget-demo {
    flex-direction: column;
    gap: 17px;
  }

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

  .chart-demo {
    right: 23px;
    left: 23px;
  }

  .asset-demo {
    grid-template-columns: 1fr;
    height: 49%;
    padding: 27px 30px;
    gap: 18px;
  }

  .asset-total {
    padding: 0 0 17px;
    border-right: 0;
    border-bottom: 1px solid rgba(155, 120, 63, 0.16);
  }

  .asset-list {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .scene-section {
    padding-block: 90px;
  }

  .scene-list {
    grid-template-columns: 1fr;
  }

  .scene-card {
    min-height: 270px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .scene-card:last-child {
    border-bottom: 0;
  }

  .scene-icon {
    margin-top: 20px;
  }

  .screens-section {
    overflow: hidden;
  }

  .screens-gallery {
    display: flex;
    gap: 16px;
    margin-inline: -14px;
    padding: 28px 14px 18px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

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

  .screen-showcase {
    width: min(72vw, 270px);
    flex: 0 0 auto;
    scroll-snap-align: center;
  }

  .screen-media {
    border-radius: 25px;
  }

  .screen-media img {
    border-radius: 17px;
  }

  .get-started-section {
    padding-bottom: 95px;
  }

  .get-started-card {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 47px 27px;
    border-radius: 30px;
    text-align: center;
  }

  .get-started-copy {
    padding-right: 0;
  }

  .get-started-copy p {
    font-size: 14px;
  }

  .qr-panel {
    width: 176px;
    min-width: 0;
    margin-inline: auto;
  }

  .deco-flower--one {
    top: 40px;
    right: 25px;
  }

  .faq-section {
    padding-bottom: 95px;
  }

  .faq-item summary {
    font-size: 14px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 50px;
    padding-top: 65px;
    padding-bottom: 50px;
  }

  .footer-bottom {
    gap: 10px;
    flex-direction: column;
    text-align: center;
  }

  .filing-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 14px;
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
