:root {
  color-scheme: light;
  --ink: #07111f;
  --soft-ink: #13233a;
  --muted: #657186;
  --blue: #0b84ff;
  --blue-dark: #075fc2;
  --cyan: #16c7e8;
  --green: #22d36c;
  --amber: #ff9f2e;
  --red: #ff4d55;
  --paper: #ffffff;
  --wash: #f5f8fc;
  --panel: #ffffff;
  --line: #dce4ef;
  --line-strong: #c6d1df;
  --dark: #07111f;
  --dark-panel: #111b2a;
  --dark-panel-2: #182233;
  --dark-line: #263448;
  --shadow: 0 24px 70px rgba(7, 17, 31, 0.14);
  --shadow-tight: 0 16px 38px rgba(7, 17, 31, 0.18);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f7f9fc;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--ink);
  color: white;
  padding: 0.7rem 1rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(220, 228, 239, 0.9);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  align-items: center;
  display: flex;
  gap: clamp(0.9rem, 2vw, 1.5rem);
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max);
  min-height: 86px;
  padding: 0;
  width: min(var(--max), calc(100% - 40px));
}

.brand,
.nav-links,
.hero-actions,
.site-footer div {
  align-items: center;
  display: flex;
}

.brand {
  flex: 0 0 auto;
  text-decoration: none;
  width: clamp(210px, 19vw, 260px);
}

.brand img {
  aspect-ratio: 1405 / 389;
  height: auto;
  object-fit: contain;
  width: 100%;
}

.nav-links {
  gap: 0.18rem;
  margin-left: auto;
}

.nav-links a,
.site-footer a,
.nav-store {
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 750;
  text-decoration: none;
}

.nav-links a,
.site-footer a {
  color: var(--muted);
  padding: 0.62rem 0.82rem;
}

.nav-links a:hover,
.nav-links a[aria-current="page"],
.site-footer a:hover {
  background: rgba(11, 132, 255, 0.08);
  color: var(--ink);
}

.nav-store {
  align-items: center;
  background: var(--blue);
  box-shadow: 0 12px 24px rgba(11, 132, 255, 0.2);
  color: white;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 0.45rem;
  justify-content: center;
  min-height: 44px;
  padding: 0 1rem;
  white-space: nowrap;
}

.nav-store svg {
  fill: currentColor;
  height: 1.02rem;
  width: 1.02rem;
}

main {
  overflow: hidden;
}

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

h1 {
  color: white;
  font-size: clamp(3.1rem, 6.1vw, 5.65rem);
  letter-spacing: 0;
  line-height: 0.9;
  margin-bottom: 1rem;
}

h2 {
  color: var(--ink);
  font-size: clamp(2.25rem, 4vw, 3.6rem);
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 1rem;
}

h3 {
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.2;
  margin-bottom: 0.55rem;
}

p {
  color: var(--muted);
  font-size: 1.06rem;
}

.money-hero {
  background:
    radial-gradient(circle at 18% 10%, rgba(11, 132, 255, 0.24), transparent 32rem),
    radial-gradient(circle at 88% 22%, rgba(34, 211, 108, 0.16), transparent 28rem),
    linear-gradient(180deg, #07111f 0%, #0b1423 64%, #0e1928 100%);
  color: white;
  padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(4rem, 7vw, 6.5rem);
}

.money-hero-inner {
  align-items: center;
  display: grid;
  gap: clamp(2.5rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 0.68fr) minmax(500px, 1.32fr);
  margin: 0 auto;
  max-width: var(--max);
  width: calc(100% - 40px);
}

.hero-copy {
  max-width: 500px;
  min-width: 0;
}

.hero-copy > p {
  color: #b7c3d6;
  font-size: clamp(1.12rem, 1.5vw, 1.3rem);
}

.subtitle {
  color: white;
  font-size: clamp(1.35rem, 2.5vw, 2.05rem);
  font-weight: 850;
  line-height: 1.15;
  margin-bottom: 1.15rem;
}

.app-icon {
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  margin-bottom: 1.5rem;
  width: 92px;
}

.app-icon.small {
  border-radius: 18px;
  margin-bottom: 1.2rem;
  width: 76px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  gap: 0.52rem;
  font-size: 0.98rem;
  font-weight: 820;
  justify-content: center;
  min-height: 50px;
  padding: 0 1.16rem;
  text-decoration: none;
}

.button svg {
  fill: currentColor;
  height: 1.08rem;
  width: 1.08rem;
}

.button.primary {
  background: var(--blue);
  box-shadow: 0 14px 30px rgba(11, 132, 255, 0.28);
  color: white;
}

.button.primary:hover {
  background: var(--blue-dark);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
  color: white;
}

.button.secondary:hover {
  border-color: rgba(255, 255, 255, 0.46);
}

.hero-points {
  color: #c9d4e5;
  display: grid;
  gap: 0.55rem;
  list-style: none;
  margin: 1.7rem 0 0;
  padding: 0;
}

.hero-points li {
  align-items: center;
  display: flex;
  font-weight: 750;
  gap: 0.55rem;
}

.hero-points li::before {
  background: linear-gradient(135deg, var(--green), var(--cyan));
  border-radius: 999px;
  content: "";
  height: 0.55rem;
  width: 0.55rem;
}

.hero-product {
  min-height: 620px;
  position: relative;
}

.desktop-frame,
.screenshot-card,
.desktop-grid figure {
  background: #0a1019;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  box-shadow: 0 34px 92px rgba(0, 0, 0, 0.34);
  margin: 0;
  overflow: hidden;
  padding: 0.45rem;
}

.desktop-frame img,
.screenshot-card img,
.desktop-grid img {
  border-radius: 14px;
  height: auto;
  width: 100%;
}

.desktop-frame {
  position: absolute;
  right: 0;
  top: 1rem;
  width: min(100%, 780px);
}

.phone-frame {
  background: #080d15;
  border: 7px solid #111722;
  border-radius: 42px;
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.36);
  margin: 0;
  overflow: hidden;
  padding: 0.42rem;
}

.image-phone {
  bottom: 0;
  position: absolute;
  right: clamp(0.6rem, 3vw, 2.6rem);
  width: min(31vw, 250px);
}

.phone-frame img {
  border-radius: 34px;
  height: auto;
  width: 100%;
}

.release-strip,
.story-section,
.showcase-band,
.companion-section,
.trust-section,
.page-shell {
  margin: 0 auto;
  max-width: var(--max);
  padding: clamp(4.5rem, 7vw, 6.5rem) 1.25rem;
}

.release-strip {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-bottom: 2.5rem;
  padding-top: 2.5rem;
}

.release-strip div {
  background: white;
  border: 1px solid var(--line);
  min-height: 132px;
  padding: 1.25rem;
}

.release-strip div:first-child {
  border-radius: var(--radius) 0 0 var(--radius);
}

.release-strip div:last-child {
  border-radius: 0 var(--radius) var(--radius) 0;
}

.release-strip strong,
.release-strip span {
  display: block;
}

.release-strip strong {
  color: var(--ink);
  font-size: 1rem;
  margin-bottom: 0.42rem;
}

.release-strip span {
  color: var(--muted);
  font-size: 0.96rem;
}

.section-heading {
  margin: 0 auto 3rem;
  max-width: 760px;
  text-align: center;
}

.section-heading.left-aligned {
  margin-left: 0;
  text-align: left;
}

.section-heading p {
  margin-left: auto;
  margin-right: auto;
  max-width: 46rem;
}

.story-row {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 0.78fr) minmax(480px, 1.22fr);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.story-row.reverse {
  grid-template-columns: minmax(480px, 1.22fr) minmax(0, 0.78fr);
}

.story-row.reverse .story-copy {
  order: 2;
}

.story-row.reverse .screenshot-card {
  order: 1;
}

.story-copy h3 {
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1;
}

.story-copy p {
  font-size: 1.08rem;
}

.story-copy ul,
.review-section ul {
  color: var(--muted);
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
}

.story-copy li,
.review-section li {
  border-top: 1px solid var(--line);
  padding: 0.72rem 0;
}

.feature-tiles {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(3rem, 6vw, 5rem);
}

.feature-tiles article,
.info-panel,
.legal-copy,
.trust-section article,
.detail-list div {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(7, 17, 31, 0.06);
}

.feature-tiles article {
  min-height: 230px;
  padding: 1.35rem;
}

.feature-tiles p,
.detail-list span,
.info-panel p,
.legal-copy p {
  font-size: 1rem;
}

.tile-mark {
  border-radius: var(--radius);
  display: block;
  height: 46px;
  margin-bottom: 1rem;
  position: relative;
  width: 46px;
}

.tile-mark::after {
  background: currentColor;
  border-radius: inherit;
  content: "";
  height: 20px;
  left: 50%;
  opacity: 0.9;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
}

.tile-mark.blue { background: rgba(11, 132, 255, 0.11); color: var(--blue); }
.tile-mark.green { background: rgba(34, 211, 108, 0.12); color: #19a95a; }
.tile-mark.cyan { background: rgba(22, 199, 232, 0.13); color: #0ca8c5; }
.tile-mark.amber { background: rgba(255, 159, 46, 0.15); color: var(--amber); }

.showcase-band {
  background:
    radial-gradient(circle at 10% 20%, rgba(11, 132, 255, 0.11), transparent 24rem),
    radial-gradient(circle at 92% 28%, rgba(34, 211, 108, 0.1), transparent 22rem),
    #eef3f9;
  max-width: none;
}

.showcase-band > .section-heading,
.desktop-grid {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--max);
}

.desktop-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.desktop-grid figure {
  background: #0d131d;
  border-color: rgba(7, 17, 31, 0.12);
}

.desktop-grid figcaption {
  color: #d8e2ef;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.9rem 0.65rem 0.5rem;
}

.companion-section {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1.28fr);
}

.companion-copy {
  max-width: 540px;
}

.detail-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.detail-list div {
  padding: 1rem 1.1rem;
}

.detail-list strong,
.detail-list span {
  display: block;
}

.detail-list strong {
  color: var(--ink);
  margin-bottom: 0.18rem;
}

.detail-list span {
  color: var(--muted);
}

.phone-row {
  align-items: center;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.phone-row figure {
  background: #080d15;
  border: 7px solid #111722;
  border-radius: 44px;
  box-shadow: var(--shadow-tight);
  margin: 0;
  overflow: hidden;
  padding: 0.42rem;
}

.phone-row .featured-phone {
  transform: translateY(-1.8rem);
}

.phone-row img {
  border-radius: 34px;
  width: 100%;
}

.trust-section {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-top: 2rem;
}

.trust-section article {
  padding: clamp(1.4rem, 3vw, 2.2rem);
}

.trust-section h2,
.info-panel h2,
.legal-copy h2 {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.15;
}

.text-link,
.legal-copy a,
.page-header a,
.trust-section a {
  color: var(--blue-dark);
  font-weight: 820;
}

.page-shell {
  min-height: calc(100vh - 170px);
}

.page-header {
  margin-bottom: 3rem;
  max-width: 680px;
}

.page-header h1 {
  color: var(--ink);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
}

.page-header p {
  color: #334760;
  font-size: clamp(1.08rem, 1.5vw, 1.22rem);
}

.support-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-panel {
  padding: 1.25rem;
}

.legal-copy {
  max-width: 840px;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.support-answers {
  margin-top: 4rem;
  max-width: 840px;
}

.support-answers details {
  border-top: 1px solid var(--line-strong);
  padding: 1rem 0;
}

.support-answers details:last-child {
  border-bottom: 1px solid var(--line-strong);
}

.support-answers summary {
  color: var(--ink);
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 800;
}

.support-answers details p {
  font-size: 1rem;
  margin: 0.75rem 0 0;
  max-width: 48rem;
}

.legal-copy h2:not(:first-child) {
  margin-top: 2rem;
}

.site-footer {
  align-items: center;
  border-top: 1px solid rgba(220, 228, 239, 0.9);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max);
  padding: 1.3rem 1.25rem 2rem;
}

.site-footer p {
  font-size: 0.95rem;
  margin: 0;
}

.site-footer div {
  gap: 0.25rem;
}

@media (max-width: 1080px) {
  .money-hero-inner,
  .story-row,
  .story-row.reverse,
  .companion-section,
  .trust-section {
    grid-template-columns: 1fr;
  }

  .story-row.reverse .story-copy,
  .story-row.reverse .screenshot-card {
    order: initial;
  }

  .hero-product {
    min-height: 560px;
  }

  .desktop-frame {
    position: relative;
    top: 0;
    width: 88%;
  }

  .image-phone {
    width: min(34vw, 230px);
  }

  .release-strip,
  .feature-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .release-strip div:first-child,
  .release-strip div:last-child {
    border-radius: var(--radius);
  }
}

@media (max-width: 760px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
    min-height: 0;
    padding-bottom: 0.9rem;
    padding-top: 0.9rem;
    width: calc(100% - 28px);
  }

  .nav-links {
    flex-wrap: wrap;
    margin-left: 0;
  }

  .nav-store {
    margin-top: 0.15rem;
  }

  .brand {
    width: min(250px, 76vw);
  }

  .money-hero-inner {
    width: calc(100% - 28px);
  }

  .hero-product {
    min-height: 500px;
  }

  .desktop-frame {
    width: 100%;
  }

  .image-phone {
    bottom: 0.5rem;
    right: 0.4rem;
    width: 35%;
  }

  .release-strip,
  .feature-tiles,
  .desktop-grid,
  .support-grid,
  .phone-row {
    grid-template-columns: 1fr;
  }

  .phone-row {
    margin: 0 auto;
    max-width: 320px;
  }

  .phone-row .featured-phone {
    transform: none;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(3.1rem, 16vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 2.85rem);
  }

  .hero-product {
    min-height: 360px;
  }

  .image-phone {
    border-width: 5px;
    border-radius: 28px;
    width: 38%;
  }

  .phone-frame img {
    border-radius: 22px;
  }

  .release-strip,
  .story-section,
  .showcase-band,
  .companion-section,
  .trust-section,
  .page-shell {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }
}
