:root {
  --ink: #171717;
  --paper: #f5f2ea;
  --orange: #ff542e;
  --orange-text: #a82d12;
  --lime: #d6ff72;
  --line: rgba(23, 23, 23, 0.18);
  --muted: #67645f;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, 'Helvetica Neue', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
}
.site-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1440px;
  padding: 24px 5vw;
}
.brand img,
footer img {
  display: block;
  height: auto;
}
nav {
  align-items: center;
  display: flex;
  gap: 34px;
}
nav a {
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}
.nav-cta {
  background: var(--ink);
  border-radius: 999px;
  color: white;
  padding: 13px 20px;
}
.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  margin: 0 auto;
  max-width: 1440px;
  min-height: 760px;
  overflow: hidden;
  padding: 64px 5vw 90px;
}
.hero-copy {
  align-self: center;
  max-width: 720px;
  position: relative;
  z-index: 2;
}
.eyebrow {
  align-items: center;
  display: flex;
  font-size: 12px;
  font-weight: 750;
  gap: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.eyebrow span {
  background: var(--orange);
  border-radius: 50%;
  height: 9px;
  width: 9px;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  font-size: clamp(56px, 7.15vw, 108px);
  font-weight: 640;
  letter-spacing: -0.068em;
  line-height: 0.91;
  margin: 34px 0 35px;
  max-width: 870px;
}
h1 em {
  color: var(--orange-text);
  font-style: normal;
}
.hero-intro {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
  max-width: 610px;
}
.store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 35px;
}
.store-button {
  align-items: center;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 12px;
  color: white;
  display: flex;
  gap: 10px;
  min-width: 184px;
  opacity: 0.82;
  padding: 10px 16px;
}
.store-button svg {
  fill: currentcolor;
  height: 28px;
  width: 28px;
}
.store-button span {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}
.store-button small {
  display: block;
  font-size: 10px;
  font-weight: 500;
  margin-bottom: 4px;
}
.availability {
  color: var(--muted);
  font-size: 12px;
  margin: 12px 0 0 3px;
}
.hero-visual {
  min-height: 600px;
  position: relative;
}
.hero-visual:before {
  background: var(--orange);
  border-radius: 50%;
  content: '';
  height: min(42vw, 600px);
  left: 51%;
  position: absolute;
  top: 49%;
  transform: translate(-50%, -50%);
  width: min(42vw, 600px);
}
.orbit {
  border: 1px solid rgba(23, 23, 23, 0.3);
  border-radius: 50%;
  position: absolute;
}
.orbit-one {
  height: 520px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(20deg);
  width: 670px;
}
.orbit-two {
  height: 640px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-40deg);
  width: 460px;
}
.phone {
  background: #f9f8f3;
  border: 7px solid var(--ink);
  border-radius: 42px;
  box-shadow: 0 35px 65px rgba(23, 23, 23, 0.25);
  height: 560px;
  left: 50%;
  overflow: hidden;
  padding: 18px 20px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(4deg);
  width: 285px;
  z-index: 2;
}
.phone-top {
  display: flex;
  font-size: 10px;
  font-weight: 700;
  justify-content: space-between;
}
.phone-top i {
  background: var(--ink);
  border-radius: 5px;
  height: 9px;
  width: 47px;
}
.app-title {
  display: flex;
  flex-direction: column;
  margin: 26px 0 15px;
}
.app-title span {
  color: var(--muted);
  font-size: 10px;
}
.app-title strong {
  font-size: 19px;
}
.balance-card {
  background: var(--ink);
  border-radius: 18px;
  color: white;
  padding: 18px;
}
.balance-card > span {
  color: #b8b8b8;
  display: block;
  font-size: 10px;
}
.balance-card > strong {
  display: block;
  font-size: 31px;
  margin: 8px 0 13px;
}
.balance-card > strong small {
  font-size: 17px;
}
.trend {
  background: var(--lime);
  border-radius: 99px;
  color: var(--ink);
  display: inline-block;
  font-size: 9px;
  font-weight: 750;
  padding: 6px 9px;
}
.flow-heading,
.spending-label {
  display: flex;
  font-size: 10px;
  justify-content: space-between;
  margin: 19px 0 9px;
}
.flow-heading strong {
  font-size: 13px;
}
.flow-heading span {
  color: var(--orange);
}
.flow-row {
  align-items: center;
  border-bottom: 1px solid #e5e2da;
  display: grid;
  gap: 9px;
  grid-template-columns: 33px 1fr auto;
  padding: 10px 0;
}
.flow-icon {
  align-items: center;
  border-radius: 10px;
  display: flex;
  font-size: 14px;
  height: 33px;
  justify-content: center;
  width: 33px;
}
.income {
  background: var(--lime);
}
.expense {
  background: #ffd8cf;
  color: var(--orange-text);
}
.flow-row span:nth-child(2) {
  display: flex;
  flex-direction: column;
}
.flow-row strong,
.flow-row b {
  font-size: 10px;
}
.flow-row small {
  color: var(--muted);
  font-size: 8px;
  margin-top: 2px;
}
.spending-label {
  margin-bottom: 7px;
}
.spending-label strong {
  color: var(--orange);
}
.spending-bar {
  background: #dedbd2;
  border-radius: 5px;
  height: 6px;
  overflow: hidden;
}
.spending-bar i {
  background: var(--orange);
  display: block;
  height: 100%;
  width: 42%;
}
.app-nav {
  align-items: center;
  background: white;
  border-radius: 17px;
  bottom: 17px;
  box-shadow: 0 3px 16px #ddd9d0;
  display: flex;
  justify-content: space-around;
  left: 16px;
  padding: 13px;
  position: absolute;
  right: 16px;
}
.app-nav b {
  color: var(--orange);
}
.app-nav span,
.app-nav b {
  font-size: 15px;
}
.float-card {
  align-items: center;
  background: white;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(23, 23, 23, 0.15);
  display: flex;
  gap: 10px;
  padding: 12px 16px;
  position: absolute;
  z-index: 3;
}
.float-card > span {
  align-items: center;
  background: var(--lime);
  border-radius: 50%;
  display: flex;
  height: 35px;
  justify-content: center;
  width: 35px;
}
.float-card p {
  display: flex;
  flex-direction: column;
  margin: 0;
}
.float-card small {
  color: var(--muted);
  font-size: 9px;
}
.float-card strong {
  font-size: 13px;
  margin-top: 3px;
}
.float-income {
  left: 1%;
  top: 25%;
  transform: rotate(-5deg);
}
.float-insight {
  bottom: 21%;
  right: -2%;
  transform: rotate(5deg);
}
.principle {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8vw;
  grid-template-columns: 1fr 3fr;
  margin: 0 5vw;
  padding: 105px 0;
}
.section-number {
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.principle h2,
.roadmap h2 {
  font-size: clamp(42px, 5.4vw, 76px);
  letter-spacing: -0.055em;
  line-height: 0.98;
  margin-bottom: 35px;
}
.principle > div > p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
  max-width: 670px;
}
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.features article {
  background: #e9e5dc;
  min-height: 420px;
  padding: 45px 4vw;
  position: relative;
}
.features article:nth-child(3) {
  background: var(--lime);
}
.features .feature-dark {
  background: var(--ink);
  color: white;
  transform: translateY(-22px);
}
.feature-icon {
  align-items: center;
  border: 1px solid currentcolor;
  border-radius: 50%;
  display: flex;
  font-size: 24px;
  height: 55px;
  justify-content: center;
  width: 55px;
}
.feature-number {
  font-size: 11px;
  margin: 110px 0 14px;
  opacity: 0.55;
}
.features h3 {
  font-size: 27px;
  letter-spacing: -0.035em;
  margin-bottom: 15px;
}
.features article > p:last-child {
  font-size: 15px;
  line-height: 1.6;
  max-width: 330px;
  opacity: 0.7;
}
.roadmap {
  display: grid;
  gap: 8vw;
  grid-template-columns: 0.9fr 1.1fr;
  padding: 140px 5vw;
}
.roadmap-heading {
  align-self: start;
  position: sticky;
  top: 50px;
}
.roadmap-heading h2 {
  margin-top: 30px;
}
.roadmap-list article {
  align-items: start;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: 70px 1fr 30px;
  padding: 34px 0 42px;
}
.roadmap-list article:last-child {
  border-bottom: 1px solid var(--line);
}
.roadmap-list span {
  color: var(--orange-text);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}
.roadmap-list h3 {
  font-size: 25px;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.roadmap-list p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}
.roadmap-list b {
  font-size: 12px;
  opacity: 0.4;
}
.closing {
  background: var(--orange);
  padding: 120px 5vw 75px;
  text-align: center;
}
.closing .eyebrow {
  justify-content: center;
}
.closing .eyebrow span {
  background: var(--ink);
}
.closing h2 {
  font-size: clamp(64px, 10vw, 145px);
  letter-spacing: -0.075em;
  line-height: 0.8;
  margin: 45px 0;
}
.closing h2 em {
  color: #fff;
}
.closing > p:not(.eyebrow) {
  font-size: 18px;
  line-height: 1.5;
  margin: 0 auto 48px;
  max-width: 520px;
}
.closing a {
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 750;
  padding-bottom: 8px;
  text-decoration: none;
}
.closing a span {
  margin-left: 12px;
}
footer {
  align-items: center;
  background: var(--ink);
  color: white;
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr auto 1fr;
  padding: 45px 5vw;
}
footer img {
  filter: brightness(0) invert(1);
}
footer p {
  font-size: 11px;
  margin: 0;
  opacity: 0.6;
}
.disclaimer {
  justify-self: end;
  line-height: 1.5;
  max-width: 390px;
  text-align: right;
}
@media (max-width: 900px) {
  nav a:not(.nav-cta) {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 45px;
  }
  .hero-copy {
    text-align: center;
  }
  .hero-copy .eyebrow,
  .store-links {
    justify-content: center;
  }
  .hero-intro {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-visual {
    margin-top: 40px;
  }
  .hero-visual:before {
    height: 520px;
    width: 520px;
  }
  .principle,
  .roadmap {
    grid-template-columns: 1fr;
  }
  .roadmap-heading {
    position: static;
  }
  .features article {
    min-height: 380px;
  }
  .feature-number {
    margin-top: 80px;
  }
  footer {
    grid-template-columns: 1fr;
    text-align: center;
  }
  footer img,
  .disclaimer {
    justify-self: center;
  }
  .disclaimer {
    text-align: center;
  }
}
@media (max-width: 650px) {
  .site-header {
    padding-top: 17px;
  }
  .brand img {
    width: 120px;
  }
  .nav-cta {
    padding: 10px 15px;
  }
  .hero {
    min-height: auto;
    padding-bottom: 55px;
  }
  h1 {
    font-size: clamp(52px, 16vw, 78px);
  }
  .hero-intro {
    font-size: 17px;
  }
  .store-button {
    min-width: 165px;
  }
  .hero-visual {
    margin: 0 -8vw;
    min-height: 540px;
    transform: scale(0.88);
  }
  .orbit-one {
    width: 570px;
  }
  .float-income {
    left: 0;
  }
  .float-insight {
    right: -1%;
  }
  .principle {
    gap: 35px;
    margin: 0 6vw;
    padding: 80px 0;
  }
  .principle h2 {
    font-size: 44px;
  }
  .features {
    grid-template-columns: 1fr;
  }
  .features .feature-dark {
    transform: none;
  }
  .features article {
    min-height: 340px;
    padding: 38px 7vw;
  }
  .feature-number {
    margin-top: 65px;
  }
  .roadmap {
    gap: 45px;
    padding: 95px 6vw;
  }
  .roadmap h2 {
    font-size: 48px;
  }
  .roadmap-list article {
    grid-template-columns: 55px 1fr;
  }
  .roadmap-list b {
    display: none;
  }
  .closing {
    padding-top: 90px;
  }
  .closing h2 {
    font-size: 72px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
