@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter_regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter_bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #0b0f0c;
  --surface: #171d18;
  --surface-elevated: #1f281f;
  --surface-variant: #24322b;
  --primary: #b0d94a;
  --primary-variant: #8fb636;
  --text: #f5f5f7;
  --text-soft: #cdd5c8;
  --text-muted: #a7b0a3;
  --dim: #596259;
  --border: #2a322b;
  --border-strong: #3d483f;
  --rose: #ff6b6b;
  --blue: #4fc7e8;
  --amber: #d0b85c;
  --violet: #9a6be8;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 42px rgba(176, 217, 74, 0.22);
}

/* Lightweight fallback for the Bootstrap grid/utilities used on this page. */
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 24px;
  padding-left: 24px;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row > * {
  width: 100%;
  max-width: 100%;
  margin-top: var(--bs-gutter-y);
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
}

.g-0 {
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
}

.g-4 {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}

.g-5 {
  --bs-gutter-x: 3rem;
  --bs-gutter-y: 3rem;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.d-flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 1rem;
}

.align-items-center {
  align-items: center;
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-right: auto;
  margin-left: auto;
}

.ms-auto {
  margin-left: auto;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.navbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.navbar > .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.collapse:not(.show) {
  display: none;
}

.navbar-toggler {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 40px;
  padding: 0;
  color: var(--text);
  background: transparent;
}

.navbar-toggler-icon {
  position: relative;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  border-radius: inherit;
  background: inherit;
}

.navbar-toggler-icon::before {
  top: -7px;
}

.navbar-toggler-icon::after {
  top: 7px;
}

.btn-sm {
  min-height: 40px;
  padding: 8px 14px;
  font-size: 14px;
}

.btn-lg {
  min-height: 58px;
  padding: 14px 24px;
  font-size: 16px;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }

  .flex-sm-row {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }

  .col-md-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }

  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }

  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.666667%;
  }

  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.666667%;
  }

  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.333333%;
  }

  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .navbar-expand-lg .navbar-toggler {
    display: none;
  }

  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
    justify-content: flex-end;
  }

  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
    margin-left: auto;
    align-items: center;
  }

  .align-items-lg-center {
    align-items: center;
  }

  .ms-lg-3 {
    margin-left: 1rem;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }

  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  overflow-x: hidden;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(176, 217, 74, 0.08), rgba(11, 15, 12, 0) 460px),
    var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  overflow-x: hidden;
}

main,
header,
footer,
section {
  max-width: 100%;
}

.site-header,
.navbar,
.hero-section,
.value-strip,
.section-pad,
.insights-section,
.simplicity-section,
.final-cta,
.site-footer {
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(176, 217, 74, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(176, 217, 74, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 72%);
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(79, 199, 232, 0.09), transparent 34%),
    linear-gradient(245deg, rgba(208, 184, 92, 0.08), transparent 38%);
  pointer-events: none;
}

img,
svg {
  display: block;
}

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

a:hover {
  color: var(--primary);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(176, 217, 74, 0.75);
  outline-offset: 4px;
}

.navbar {
  padding: 14px 0;
  background: rgba(11, 15, 12, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar-brand {
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
}

.brand-icon,
.screen-logo,
.footer-brand img,
.app-mark img,
.cta-screen-icon {
  border-radius: 14px;
  box-shadow: 0 0 26px rgba(176, 217, 74, 0.22);
}

.navbar .nav-link {
  display: block;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 14px;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--text);
}

.navbar-toggler {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 100%;
  min-height: 48px;
  border-radius: 999px;
  border-width: 1px;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.play-store-icon {
  flex: 0 0 auto;
  width: 1.15em;
  height: 1.15em;
  object-fit: contain;
}

.btn-dark-cta .play-store-icon,
.footer-play .play-store-icon {
  filter: invert(86%) sepia(47%) saturate(683%) hue-rotate(23deg) brightness(96%) contrast(94%);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-static {
  cursor: default;
}

.btn-static:hover {
  transform: none;
}

.btn-accent {
  color: #0b0f0c;
  background: linear-gradient(135deg, var(--primary), var(--primary-variant));
  border-color: rgba(176, 217, 74, 0.78);
  box-shadow: 0 16px 34px rgba(143, 182, 54, 0.28);
}

.btn-accent:hover,
.btn-accent:focus {
  color: #0b0f0c;
  border-color: var(--primary);
  box-shadow: 0 20px 42px rgba(176, 217, 74, 0.36);
}

.btn-outline-soft {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
}

.btn-outline-soft:hover,
.btn-outline-soft:focus {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(176, 217, 74, 0.4);
}

.btn-dark-cta {
  color: var(--primary);
  background: #0b0f0c;
  border-color: rgba(11, 15, 12, 0.8);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.26);
}

.btn-dark-cta:hover,
.btn-dark-cta:focus {
  color: #e8f7b2;
  background: #111811;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  padding: 132px 0 76px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(31, 40, 31, 0.8), rgba(11, 15, 12, 0.48) 44%, rgba(11, 15, 12, 0.82)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0, rgba(255, 255, 255, 0.025) 1px, transparent 1px, transparent 96px);
}

.hero-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 150px;
  background: linear-gradient(180deg, rgba(11, 15, 12, 0), var(--bg));
  pointer-events: none;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow.centered {
  justify-content: center;
}

.eyebrow svg {
  width: 18px;
  height: 18px;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--text);
  font-size: 64px;
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: 0;
}

h2 {
  color: var(--text);
  font-size: 44px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0;
}

h3 {
  color: var(--text);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-lede,
.section-heading p,
.showcase-section p,
.insights-section p,
.simplicity-section p,
.final-cta p {
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.72;
}

.hero-lede {
  max-width: 630px;
  margin-bottom: 34px;
}

.hero-actions {
  margin-bottom: 32px;
}

.hero-proof {
  color: var(--text-muted);
  font-size: 14px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  min-height: 34px;
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.hero-proof strong {
  margin-right: 4px;
  color: var(--text);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 680px;
}

.phone-mockup {
  position: relative;
  width: 336px;
  max-width: 100%;
  filter: drop-shadow(0 34px 80px rgba(0, 0, 0, 0.44));
}

.phone-shell {
  position: relative;
  padding: 12px;
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.04) 24%, rgba(0, 0, 0, 0.5) 78%),
    #111511;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    var(--shadow-glow);
}

.phone-shell::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 50%;
  z-index: 3;
  width: 84px;
  height: 22px;
  transform: translateX(-50%);
  border-radius: 0 0 18px 18px;
  background: #050806;
}

.phone-screen {
  min-height: 640px;
  overflow: hidden;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(176, 217, 74, 0.08), transparent 42%),
    var(--bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 25px 18px 20px;
}

.screenshot-screen {
  min-height: 0;
  aspect-ratio: 390 / 844;
  padding: 0;
  background: var(--bg);
}

.screenshot-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
  transform: translateZ(0);
  backface-visibility: hidden;
  border-radius: inherit;
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 250px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  color: var(--text);
  background: rgba(31, 40, 31, 0.72);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
  font-size: 13px;
  font-weight: 700;
  animation: floatCard 6s ease-in-out infinite;
}

.floating-card svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  color: var(--primary);
}

.float-one {
  top: 108px;
  left: -92px;
}

.float-two {
  right: -86px;
  top: 255px;
  animation-delay: 700ms;
}

.float-three {
  left: -88px;
  bottom: 136px;
  animation-delay: 1300ms;
}

.value-strip {
  position: relative;
  padding: 0 0 38px;
}

.value-grid {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(23, 29, 24, 0.78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.value-item {
  height: 100%;
  padding: 28px;
}

.value-item svg {
  width: 26px;
  height: 26px;
  margin-bottom: 16px;
  color: var(--primary);
}

.value-item h2 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.35;
}

.value-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}

.value-grid > [class*="col-"] + [class*="col-"] .value-item {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

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

.section-heading {
  max-width: 780px;
  margin-bottom: 48px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.feature-card {
  position: relative;
  min-height: 358px;
  height: 100%;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(36, 50, 43, 0.72), rgba(23, 29, 24, 0.92)),
    var(--surface);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(176, 217, 74, 0.34);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.3);
}

.feature-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.feature-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: var(--primary);
  background: rgba(176, 217, 74, 0.12);
}

.feature-icon svg {
  width: 23px;
  height: 23px;
}

.feature-card h3 {
  margin-bottom: 0;
}

.feature-card p {
  min-height: 78px;
  margin-bottom: 22px;
  color: var(--text-muted);
  font-size: 14px;
}

.mini-illustration {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  height: 92px;
  border-radius: 18px;
  background: rgba(11, 15, 12, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-snapshot {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 10px;
  min-height: 118px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(11, 15, 12, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.snapshot-balance {
  padding: 14px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(176, 217, 74, 0.16), rgba(31, 40, 31, 0.82));
}

.snapshot-balance span,
.snapshot-pair span,
.snapshot-row small,
.snapshot-bill small,
.account-snapshot small,
.report-snapshot small {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
}

.snapshot-balance strong {
  display: block;
  color: var(--text);
  font-size: 22px;
  line-height: 1.1;
}

.snapshot-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.snapshot-pair span {
  padding: 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
}

.snapshot-pair b {
  display: block;
  color: var(--text);
  font-size: 12px;
}

.snapshot-row,
.snapshot-bill {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 48px;
}

.snapshot-row + .snapshot-row,
.snapshot-bill + .snapshot-bill {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.snapshot-row svg,
.snapshot-bill svg,
.account-snapshot svg {
  width: 18px;
  height: 18px;
}

.snapshot-row > i,
.snapshot-bill > i,
.account-snapshot > span > i {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 12px;
  color: var(--primary);
  background: rgba(176, 217, 74, 0.12);
}

.snapshot-row.expense > i {
  color: var(--rose);
  background: rgba(255, 107, 107, 0.12);
}

.snapshot-row b,
.snapshot-bill b,
.account-snapshot b,
.report-snapshot strong {
  display: block;
  color: var(--text);
  font-size: 13px;
  line-height: 1.2;
}

.snapshot-row strong,
.snapshot-bill strong {
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.snapshot-budget {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 8px;
}

.snapshot-budget span,
.snapshot-budget b {
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
}

.snapshot-budget b {
  color: var(--primary);
}

.snapshot-budget i {
  position: relative;
  grid-column: 1 / -1;
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.snapshot-budget i::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--fill);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--primary-variant));
}

.account-snapshot {
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.account-snapshot > span {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 10px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
}

.account-snapshot > span > i {
  width: 30px;
  height: 30px;
}

.account-snapshot b,
.account-snapshot small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.report-snapshot {
  grid-template-columns: auto 1fr;
  align-items: center;
}

.snapshot-donut {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: conic-gradient(var(--primary) 0 44%, var(--blue) 44% 68%, var(--amber) 68% 82%, var(--rose) 82% 100%);
}

.snapshot-donut span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--primary);
  background: var(--bg);
  font-size: 14px;
  font-weight: 800;
}

.dashboard-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 14px;
}

.dashboard-mini span {
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(176, 217, 74, 0.34), rgba(79, 199, 232, 0.18));
}

.dashboard-mini span:first-child {
  grid-column: 1 / -1;
}

.list-mini,
.progress-mini,
.bills-mini {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 14px;
}

.list-mini span,
.bills-mini span {
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(176, 217, 74, 0.32), rgba(255, 255, 255, 0.08));
}

.list-mini span:nth-child(2) {
  width: 76%;
}

.list-mini span:nth-child(3) {
  width: 62%;
}

.progress-mini span {
  position: relative;
  height: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.progress-mini span::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--fill);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--primary-variant));
}

.accounts-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 14px;
}

.accounts-mini span {
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(176, 217, 74, 0.18));
}

.accounts-mini span:nth-child(2) {
  background: linear-gradient(180deg, rgba(79, 199, 232, 0.22), rgba(255, 255, 255, 0.08));
}

.accounts-mini span:nth-child(3) {
  background: linear-gradient(180deg, rgba(208, 184, 92, 0.25), rgba(255, 255, 255, 0.08));
}

.bills-mini span:first-child {
  width: 94%;
  background: linear-gradient(90deg, rgba(208, 184, 92, 0.38), rgba(255, 255, 255, 0.08));
}

.bills-mini span:nth-child(2) {
  width: 74%;
}

.bills-mini span:nth-child(3) {
  width: 54%;
  background: linear-gradient(90deg, rgba(255, 107, 107, 0.36), rgba(255, 255, 255, 0.08));
}

.insight-mini {
  display: flex;
  align-items: end;
  gap: 9px;
  padding: 14px;
}

.insight-mini span {
  flex: 1;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, rgba(176, 217, 74, 0.86), rgba(143, 182, 54, 0.56));
}

.insight-mini span:first-child {
  height: 74%;
}

.insight-mini span:nth-child(2) {
  height: 46%;
  background: linear-gradient(180deg, rgba(79, 199, 232, 0.86), rgba(79, 199, 232, 0.42));
}

.insight-mini span:nth-child(3) {
  height: 88%;
  background: linear-gradient(180deg, rgba(255, 107, 107, 0.82), rgba(255, 107, 107, 0.42));
}

.insight-mini span:nth-child(4) {
  height: 58%;
  background: linear-gradient(180deg, rgba(208, 184, 92, 0.86), rgba(208, 184, 92, 0.42));
}

.showcase-section {
  position: relative;
  background:
    linear-gradient(180deg, rgba(242, 242, 247, 0.045), rgba(242, 242, 247, 0.01)),
    #0f1511;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.showcase-section h2,
.insights-section h2,
.simplicity-section h2,
.final-cta h2 {
  margin-bottom: 18px;
}

.showcase-section p,
.insights-section p,
.simplicity-section p,
.final-cta p {
  max-width: 620px;
}

.showcase-phones {
  display: flex;
  align-items: end;
  justify-content: center;
  min-height: 540px;
  gap: 0;
}

.phone-small {
  width: 225px;
}

.phone-small .phone-shell {
  padding: 9px;
  border-radius: 34px;
}

.phone-small .phone-shell::before {
  width: 60px;
  height: 16px;
  top: 10px;
  border-radius: 0 0 13px 13px;
}

.phone-small .phone-screen {
  min-height: 435px;
  border-radius: 26px;
  padding: 22px 13px 15px;
}

.phone-small .screenshot-screen {
  min-height: 0;
  padding: 0;
}

.rotate-left {
  transform: rotate(-5deg) translateX(18px);
}

.rotate-right {
  transform: rotate(5deg) translateX(-18px);
}

.front-phone {
  z-index: 3;
  transform: translateY(-28px);
}

.compact-hero {
  margin-bottom: 15px;
  padding: 16px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(176, 217, 74, 0.22), rgba(31, 40, 31, 0.9));
}

.compact-hero small,
.compact-row em {
  display: block;
  color: var(--text-muted);
  font-size: 10px;
  font-style: normal;
}

.compact-hero strong {
  display: block;
  color: var(--text);
  font-size: 22px;
}

.compact-row {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 9px;
  min-height: 45px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.compact-row span {
  width: 26px;
  height: 26px;
  border-radius: 10px;
  background: rgba(176, 217, 74, 0.16);
}

.compact-row:nth-child(4) span {
  background: rgba(255, 107, 107, 0.16);
}

.compact-row b {
  color: var(--text);
  font-size: 12px;
}

.compact-chart {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 116px;
  margin-top: 16px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.compact-chart span {
  flex: 1;
  border-radius: 999px 999px 6px 6px;
  background: var(--primary);
}

.compact-chart span:first-child {
  height: 55%;
}

.compact-chart span:nth-child(2) {
  height: 82%;
  background: var(--blue);
}

.compact-chart span:nth-child(3) {
  height: 38%;
  background: var(--amber);
}

.compact-chart span:nth-child(4) {
  height: 68%;
  background: var(--rose);
}

.budget-screen h3,
.report-screen h3,
.cta-screen h3 {
  margin-bottom: 18px;
  font-size: 20px;
}

.budget-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 7px 10px;
  margin-bottom: 18px;
}

.budget-line strong {
  color: var(--text);
  font-size: 12px;
}

.budget-line span {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
}

.budget-line i {
  position: relative;
  grid-column: 1 / -1;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.budget-line i::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--fill);
  background: linear-gradient(90deg, var(--primary), var(--primary-variant));
}

.budget-summary {
  margin-top: 30px;
  padding: 17px;
  border-radius: 20px;
  background: rgba(176, 217, 74, 0.12);
}

.budget-summary span {
  color: var(--text-muted);
  font-size: 11px;
}

.budget-summary strong {
  display: block;
  color: var(--text);
  font-size: 20px;
}

.report-ring {
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  margin: 16px auto 22px;
  border-radius: 50%;
  background: conic-gradient(var(--primary) 0 44%, var(--blue) 44% 68%, var(--amber) 68% 82%, var(--rose) 82% 100%);
}

.report-ring span {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  color: var(--primary);
  background: var(--bg);
  font-size: 22px;
  font-weight: 800;
}

.report-bars {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 90px;
  margin-bottom: 18px;
}

.report-bars span {
  flex: 1;
  border-radius: 999px 999px 8px 8px;
  background: rgba(176, 217, 74, 0.75);
}

.report-bars span:first-child {
  height: 44%;
}

.report-bars span:nth-child(2) {
  height: 84%;
  background: rgba(255, 107, 107, 0.75);
}

.report-bars span:nth-child(3) {
  height: 58%;
  background: rgba(79, 199, 232, 0.75);
}

.report-bars span:nth-child(4) {
  height: 68%;
  background: rgba(208, 184, 92, 0.78);
}

.report-note {
  padding: 12px;
  border-radius: 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.steps-path {
  position: relative;
}

.steps-path::before {
  content: "";
  position: absolute;
  left: 16.666%;
  right: 16.666%;
  top: 42px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(176, 217, 74, 0.6), transparent);
}

.step-item {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 0 20px;
  text-align: center;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 84px;
  height: 84px;
  margin-bottom: 24px;
  border-radius: 50%;
  color: #0b0f0c;
  background: linear-gradient(135deg, var(--primary), var(--primary-variant));
  box-shadow: var(--shadow-glow);
  font-size: 28px;
  font-weight: 800;
}

.step-item h3 {
  margin-bottom: 10px;
}

.step-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
}

.insights-section {
  background:
    linear-gradient(180deg, rgba(176, 217, 74, 0.06), rgba(79, 199, 232, 0.035)),
    #0d130f;
}

.report-card-large {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(36, 50, 43, 0.94), rgba(11, 15, 12, 0.96)),
    var(--surface);
  box-shadow: var(--shadow-soft), var(--shadow-glow);
}

.report-card-large::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(176, 217, 74, 0.18), transparent 36%, rgba(79, 199, 232, 0.08));
  pointer-events: none;
}

.report-card-large > * {
  position: relative;
  z-index: 1;
}

.report-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.report-card-header svg {
  width: 24px;
  height: 24px;
}

.report-amount {
  display: block;
  margin: 22px 0 4px;
  color: var(--text);
  font-size: 50px;
  line-height: 1.08;
  letter-spacing: 0;
}

.report-card-large p {
  margin-bottom: 24px;
  color: var(--text-muted);
}

.report-breakdown {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 18px;
  margin-bottom: 26px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.breakdown-chart {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 168px;
}

.breakdown-chart span {
  flex: 1;
  height: var(--h);
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--primary), rgba(143, 182, 54, 0.42));
}

.breakdown-chart span:nth-child(3) {
  background: linear-gradient(180deg, var(--blue), rgba(79, 199, 232, 0.36));
}

.breakdown-chart span:nth-child(4) {
  background: linear-gradient(180deg, var(--rose), rgba(255, 107, 107, 0.36));
}

.breakdown-chart span:nth-child(5) {
  background: linear-gradient(180deg, var(--amber), rgba(208, 184, 92, 0.36));
}

.breakdown-list {
  display: grid;
  align-content: center;
  gap: 12px;
}

.breakdown-list span {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.breakdown-list b {
  color: var(--text-muted);
}

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

.dot.green {
  background: var(--primary);
}

.dot.blue {
  background: var(--blue);
}

.dot.amber {
  background: var(--amber);
}

.insight-stack {
  display: grid;
  gap: 12px;
}

.insight-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 700;
}

.insight-pill svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.simplicity-section {
  background: var(--bg);
}

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

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 74px;
  padding: 18px;
  border-radius: 20px;
  color: var(--text);
  background: rgba(31, 40, 31, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 700;
}

.highlight-item svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: var(--primary);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  color: #0b0f0c;
  background:
    linear-gradient(135deg, rgba(176, 217, 74, 0.98), rgba(143, 182, 54, 0.96));
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 15, 12, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(11, 15, 12, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.final-cta .container {
  position: relative;
  z-index: 1;
}

.app-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 800;
}

.final-cta h2 {
  max-width: 760px;
  color: #0b0f0c;
}

.final-cta p {
  margin-bottom: 30px;
  color: rgba(11, 15, 12, 0.78);
}

.cta-phone-wrap {
  display: flex;
  justify-content: center;
}

.phone-cta {
  width: 265px;
  transform: rotate(4deg);
}

.phone-cta .phone-screen {
  min-height: 505px;
}

.phone-cta .screenshot-screen {
  min-height: 0;
}

.cta-screen {
  text-align: center;
}

.cta-screen-icon {
  width: 74px;
  height: 74px;
  margin: 24px auto 18px;
}

.cta-screen h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.cta-screen p {
  margin: 0 auto 24px;
  color: var(--text-muted);
  font-size: 14px;
}

.cta-progress {
  height: 12px;
  margin: 0 6px 24px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.cta-progress span {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--primary-variant));
}

.cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 50px;
  padding: 0 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--text);
  font-size: 13px;
}

.cta-row strong {
  color: var(--primary);
  font-size: 12px;
}

.site-footer {
  padding: 62px 0 28px;
  background: #080b09;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(260px, 1.6fr) repeat(3, minmax(150px, 1fr));
  gap: 28px;
  align-items: start;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--text);
  font-size: 20px;
  font-weight: 800;
}

.site-footer p {
  max-width: 390px;
  margin-bottom: 22px;
  color: var(--text-muted);
  font-size: 14px;
}

.footer-play {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
}

.footer-play-static {
  cursor: default;
}

.footer-play svg {
  width: 18px;
  height: 18px;
}

.footer-play .play-store-icon {
  width: 18px;
  height: 18px;
}

.site-footer h2 {
  margin-bottom: 16px;
  color: var(--text);
  font-size: 14px;
  text-transform: uppercase;
}

.site-footer ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
}

.site-footer a:hover {
  color: var(--primary);
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--dim);
  font-size: 13px;
}

.legal-page {
  min-height: 100vh;
}

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

.legal-card {
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  background: rgba(23, 29, 24, 0.82);
  box-shadow: var(--shadow-soft);
}

.legal-card h1 {
  margin-bottom: 22px;
  font-size: 42px;
}

.legal-card h2 {
  margin: 30px 0 10px;
  font-size: 22px;
}

.legal-card p {
  color: var(--text-soft);
}

.legal-card a {
  color: var(--primary);
  font-weight: 700;
}

.legal-card a:hover {
  color: #e8f7b2;
}

.legal-page .footer-brand {
  margin-bottom: 22px;
}

.legal-page .footer-brand img {
  border-radius: 14px;
}

.auth-action-page {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}

.auth-action-page [hidden] {
  display: none !important;
}

.auth-action-shell {
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  padding: 42px 20px;
  background:
    linear-gradient(180deg, rgba(176, 217, 74, 0.08), rgba(11, 15, 12, 0) 420px),
    radial-gradient(circle at 12% 16%, rgba(176, 217, 74, 0.18), transparent 31%),
    radial-gradient(circle at 88% 76%, rgba(79, 199, 232, 0.12), transparent 34%);
}

.auth-action-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  width: min(100%, 640px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(36, 50, 43, 0.88), rgba(11, 15, 12, 0.97)),
    var(--surface);
  box-shadow: var(--shadow-soft), var(--shadow-glow);
  text-align: center;
}

.auth-action-card[data-state="expired"] {
  max-width: 640px;
}

.auth-action-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(135deg, #000, transparent 78%);
  pointer-events: none;
}

.auth-action-main,
.auth-action-side {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.auth-action-main {
  padding: 38px;
}

.auth-action-brand {
  justify-content: center;
  margin-bottom: 28px;
}

.auth-action-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin: 0 auto 22px;
  border-radius: 24px;
  color: #0b0f0c;
  background: linear-gradient(135deg, var(--primary), var(--primary-variant));
  box-shadow: var(--shadow-glow);
}

.auth-action-card[data-state="success"] .auth-action-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-variant));
}

.auth-action-card[data-state="form"] .auth-action-icon {
  background: linear-gradient(135deg, #d6ee82, var(--primary-variant));
}

.auth-action-icon span,
.auth-action-icon span::before,
.auth-action-icon span::after {
  display: block;
  box-sizing: border-box;
}

.auth-action-icon span {
  position: relative;
  width: 30px;
  height: 30px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.auth-action-icon span::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 7px;
  width: 11px;
  height: 6px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(-45deg);
}

.auth-action-icon[data-state="loading"] span {
  border-right-color: transparent;
  animation: authSpin 850ms linear infinite;
}

.auth-action-icon[data-state="loading"] span::before,
.auth-action-icon[data-state="form"] span::before {
  display: none;
}

.auth-action-icon[data-state="form"] span {
  width: 28px;
  height: 22px;
  margin-top: 9px;
  border-radius: 7px;
}

.auth-action-icon[data-state="form"] span::after {
  content: "";
  position: absolute;
  left: 4px;
  top: -14px;
  width: 14px;
  height: 15px;
  border: 3px solid currentColor;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.auth-action-icon[data-state="error"],
.auth-action-icon[data-state="expired"] {
  color: #fff;
  background: linear-gradient(135deg, var(--rose), #b63a3a);
  box-shadow: 0 0 42px rgba(255, 107, 107, 0.2);
}

.auth-action-icon[data-state="error"] span::before,
.auth-action-icon[data-state="error"] span::after,
.auth-action-icon[data-state="expired"] span::before,
.auth-action-icon[data-state="expired"] span::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 5px;
  width: 3px;
  height: 15px;
  border: 0;
  border-radius: 999px;
  background: currentColor;
}

.auth-action-icon[data-state="error"] span::before,
.auth-action-icon[data-state="expired"] span::before {
  transform: rotate(45deg);
}

.auth-action-icon[data-state="error"] span::after,
.auth-action-icon[data-state="expired"] span::after {
  transform: rotate(-45deg);
}

.auth-action-eyebrow {
  margin-bottom: 14px;
}

.auth-action-eyebrow:empty {
  display: none;
}

.auth-action-card h1 {
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.12;
}

.auth-action-card[data-state="expired"] h1 {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.22;
}

.auth-action-message {
  max-width: 460px;
  margin: 0 auto 24px;
  color: var(--text-soft);
}

.auth-action-message:empty {
  display: none;
}

.auth-action-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  min-height: 46px;
  padding: 10px 16px;
  border: 1px solid rgba(176, 217, 74, 0.2);
  border-radius: 999px;
  color: var(--primary);
  background: rgba(176, 217, 74, 0.08);
  font-weight: 800;
}

.auth-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(176, 217, 74, 0.32);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: authSpin 850ms linear infinite;
}

.auth-action-form {
  display: grid;
  gap: 16px;
  margin-top: 26px;
  text-align: left;
}

.auth-action-form .btn {
  width: 100%;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.form-field input {
  width: 100%;
  min-height: 54px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  font: inherit;
  outline: 0;
}

.form-field input:focus {
  border-color: rgba(176, 217, 74, 0.68);
  box-shadow: 0 0 0 4px rgba(176, 217, 74, 0.12);
}

.form-error {
  min-height: 22px;
  margin: -4px 0 0;
  color: #ffb3b3;
  font-size: 14px;
  font-weight: 700;
}

.auth-action-actions {
  margin-top: 28px;
}

.auth-action-side {
  display: grid;
  align-content: center;
  gap: 16px;
  min-height: 560px;
  padding: 38px;
  overflow: hidden;
  text-align: left;
  background:
    linear-gradient(160deg, rgba(176, 217, 74, 0.16), rgba(255, 255, 255, 0.04) 48%, rgba(79, 199, 232, 0.08)),
    rgba(255, 255, 255, 0.035);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.auth-side-orbit {
  position: absolute;
  width: 340px;
  height: 340px;
  right: -118px;
  top: -106px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(176, 217, 74, 0.18), transparent 58%),
    conic-gradient(from 120deg, rgba(176, 217, 74, 0.32), rgba(79, 199, 232, 0.06), rgba(176, 217, 74, 0.32));
  opacity: 0.65;
  filter: blur(0.3px);
}

.auth-side-card,
.auth-side-mini-grid > div,
.auth-side-list {
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(11, 15, 12, 0.42);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.auth-side-card {
  padding: 22px;
  border-radius: 22px;
}

.auth-side-card span,
.auth-side-mini-grid span {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.auth-side-card strong {
  display: block;
  margin: 10px 0 8px;
  color: var(--text);
  font-size: 28px;
  line-height: 1.1;
}

.auth-side-card small {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.55;
}

.auth-side-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.auth-side-mini-grid > div {
  min-height: 112px;
  padding: 18px;
  border-radius: 18px;
}

.auth-side-mini-grid strong {
  display: block;
  margin-top: 16px;
  color: var(--primary);
  font-size: 20px;
}

.auth-side-list {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 18px;
}

.auth-side-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 700;
}

.auth-side-list i {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(176, 217, 74, 0.16);
}

.auth-side-list i::before {
  content: "";
  width: 8px;
  height: 5px;
  border-left: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(-45deg) translateY(-1px);
}

.auth-action-card[data-state="error"] .auth-side-mini-grid strong {
  color: #ffb3b3;
}

.auth-action-card[data-state="expired"] .auth-action-side {
  display: none;
}

@keyframes authSpin {
  to {
    transform: rotate(360deg);
  }
}

.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.js-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes growUp {
  from {
    transform: scaleY(0.2);
  }
  to {
    transform: scaleY(1);
  }
}

@media (max-width: 1199.98px) {
  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 38px;
  }

  .hero-visual {
    min-height: 620px;
  }

  .phone-hero {
    width: 312px;
  }

  .floating-card {
    max-width: 225px;
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 16px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    background: rgba(23, 29, 24, 0.96);
  }

  .navbar-collapse .navbar-nav {
    gap: 4px;
  }

  .navbar-collapse .nav-link,
  .navbar-collapse .btn {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-section {
    padding-top: 118px;
    text-align: center;
  }

  .hero-copy,
  .showcase-section p,
  .insights-section p,
  .simplicity-section p,
  .final-cta p {
    margin-left: auto;
    margin-right: auto;
  }

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

  .hero-visual {
    min-height: 660px;
  }

  .float-one {
    left: calc(50% - 410px);
  }

  .float-two {
    right: calc(50% - 410px);
  }

  .float-three {
    left: calc(50% - 410px);
  }

  .showcase-section,
  .insights-section,
  .simplicity-section,
  .final-cta {
    text-align: center;
  }

  .showcase-phones {
    min-height: 510px;
  }

  .phone-small {
    width: 205px;
  }

  .auth-action-card {
    grid-template-columns: 1fr;
    width: min(100%, 620px);
  }

  .auth-action-side {
    min-height: auto;
    padding: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 0;
  }

  .auth-side-card strong {
    font-size: 24px;
  }

  .steps-path::before {
    display: none;
  }

  .step-item {
    padding: 0 8px;
  }
}

@media (max-width: 767.98px) {
  html {
    scroll-padding-top: 78px;
  }

  body {
    font-size: 15px;
  }

  .navbar {
    padding: 10px 0;
  }

  .hero-section {
    min-height: auto;
    padding: 108px 0 54px;
  }

  h1 {
    font-size: 40px;
    line-height: 1.08;
  }

  h2 {
    font-size: 31px;
    line-height: 1.16;
  }

  .hero-lede,
  .showcase-section p,
  .insights-section p,
  .simplicity-section p,
  .final-cta p {
    font-size: 16px;
  }

  .hero-visual {
    min-height: 590px;
  }

  .phone-hero {
    width: 286px;
  }

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

  .screenshot-screen {
    min-height: 0;
  }

  .floating-card {
    position: absolute;
    max-width: 210px;
    padding: 10px 12px;
    border-radius: 16px;
    font-size: 12px;
  }

  .float-one {
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
    animation: none;
  }

  .float-two {
    right: 0;
    top: 194px;
  }

  .float-three {
    left: 0;
    bottom: 74px;
  }

  .value-grid {
    border-radius: 20px;
  }

  .value-grid > [class*="col-"] + [class*="col-"] .value-item {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .section-pad {
    padding: 72px 0;
  }

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

  .feature-card {
    min-height: 316px;
  }

  .showcase-phones {
    min-height: auto;
    flex-wrap: nowrap;
    align-items: center;
    gap: 12px;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 14px 6px 28px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .phone-small {
    flex: 0 0 210px;
    scroll-snap-align: center;
  }

  .rotate-left,
  .rotate-right,
  .front-phone {
    transform: none;
  }

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

  .report-card-large {
    padding: 22px;
    text-align: left;
  }

  .report-amount {
    font-size: 38px;
  }

  .report-breakdown {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .breakdown-chart {
    height: 130px;
  }

  .final-cta {
    padding: 72px 0;
  }

  .phone-cta {
    transform: none;
  }
}

@media (max-width: 575.98px) {
  .container {
    max-width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-section .row {
    --bs-gutter-x: 0;
  }

  .hero-copy,
  .hero-lede,
  .hero-actions,
  .hero-proof {
    width: 100%;
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-copy h1 {
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
    font-size: 31px;
    line-height: 1.12;
    overflow-wrap: normal;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-proof {
    justify-content: center;
  }

  .hero-visual {
    width: 100%;
    max-width: 330px;
    min-height: 470px;
    margin-left: auto;
    margin-right: auto;
  }

  .phone-hero {
    width: 236px;
  }

  .float-one,
  .float-two,
  .float-three {
    display: none;
  }

  .floating-card {
    backdrop-filter: none;
    animation: none;
  }

  .hero-section {
    padding-bottom: 34px;
  }

  .value-strip {
    padding-top: 18px;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-group {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
  }

  .footer-group ul {
    grid-template-columns: 1fr 1fr;
  }

  .auth-action-shell {
    min-height: 100svh;
    padding: 18px;
    place-items: start center;
  }

  .auth-action-card {
    border-radius: 24px;
  }

  .auth-action-main {
    padding: 26px 20px;
  }

  .auth-action-brand {
    margin-bottom: 22px;
  }

  .auth-action-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
    border-radius: 21px;
  }

  .auth-action-message {
    margin-bottom: 20px;
    font-size: 15px;
  }

  .auth-action-card h1 {
    font-size: 28px;
  }

  .auth-action-card[data-state="expired"] h1 {
    font-size: 23px;
    line-height: 1.25;
  }

  .auth-action-side {
    gap: 12px;
    padding: 20px;
  }

  .auth-side-orbit {
    display: none;
  }

  .auth-side-mini-grid {
    grid-template-columns: 1fr;
  }

  .auth-side-mini-grid > div {
    min-height: 88px;
  }

  .form-field input {
    min-height: 52px;
  }
}

@media (max-width: 420px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: 31px;
  }

  h2 {
    font-size: 28px;
  }

  .btn-lg {
    width: 100%;
    min-height: 54px;
    padding-left: 14px;
    padding-right: 14px;
    font-size: 15px;
  }

  .hero-proof span {
    flex: 1 1 100%;
    justify-content: center;
  }

  .hero-visual {
    min-height: 450px;
  }

  .phone-hero {
    width: 226px;
  }

  .phone-screen {
    min-height: 0;
    padding-left: 14px;
    padding-right: 14px;
  }

  .screenshot-screen {
    padding: 0;
  }

  .screen-header strong {
    font-size: 25px;
  }

  .balance-card {
    padding: 14px;
    border-radius: 22px;
  }

  .balance-card strong {
    font-size: 15px;
  }

  .floating-card {
    max-width: 184px;
    font-size: 11px;
  }

  .float-two {
    right: -4px;
  }

  .float-three {
    left: -4px;
  }

  .feature-card {
    padding: 20px;
    min-height: 352px;
  }

  .mini-illustration,
  .feature-snapshot {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .report-amount {
    font-size: 32px;
  }

  .legal-shell {
    width: min(100% - 32px, 900px);
    padding: 40px 0;
  }

  .legal-card {
    padding: 24px;
  }

  .legal-card h1 {
    font-size: 31px;
  }

  .insight-pill {
    align-items: flex-start;
    font-size: 13px;
  }

  .footer-group ul {
    grid-template-columns: 1fr;
  }

  .auth-action-shell {
    padding: 14px;
  }

  .auth-action-main {
    padding: 24px 18px;
  }

  .auth-action-card h1 {
    font-size: 26px;
  }

  .auth-action-card[data-state="expired"] h1 {
    font-size: 21px;
  }

  .auth-action-side {
    padding: 18px;
  }
}

@media (hover: none) and (pointer: coarse) {
  .feature-card:hover,
  .btn:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .js-ready [data-reveal],
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
