@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

:root {
  --page-bg: rgb(246, 246, 246);
  --surface: rgb(242, 242, 242);
  --surface-strong: rgb(234, 240, 255);
  --stroke: rgba(23, 23, 23, 0.08);
  --text: rgb(23, 23, 23);
  --muted: rgba(23, 23, 23, 0.68);
  --blue: rgb(0, 64, 193);
  --blue-deep: rgb(0, 52, 168);
  --white: rgb(250, 250, 250);
  --container: 1040px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(0, 64, 193, 0.035), transparent 22%),
    linear-gradient(180deg, var(--page-bg) 0%, var(--page-bg) 100%);
  color: var(--text);
}

.page-shell {
  min-height: 100vh;
  padding: 18px 20px 32px;
}

.site-header {
  width: min(100%, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 180px;
  align-items: center;
  gap: 24px;
  padding: 4px 0;
  animation: reveal 0.6s ease-out both;
  position: relative;
  z-index: 60;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  flex: 0 0 auto;
  justify-self: start;
}

.brand-mark {
  position: relative;
  width: 16px;
  height: 16px;
  transform: rotate(-18deg);
  flex: 0 0 auto;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  background: var(--blue);
  border-radius: 999px;
}

.brand-mark::before {
  width: 7px;
  height: 7px;
  left: 0;
  top: 4px;
}

.brand-mark::after {
  width: 8px;
  height: 8px;
  right: 0;
  top: 2px;
}

.mobile-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 999px;
  background: rgb(250, 250, 250);
  box-shadow: 0 10px 24px rgba(37, 63, 133, 0.08);
  cursor: pointer;
}

.mobile-nav-toggle span {
  position: absolute;
  width: 16px;
  height: 1.5px;
  border-radius: 999px;
  background: rgb(23, 23, 23);
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.mobile-nav-toggle span:nth-child(1) {
  transform: translateY(-5px);
}

.mobile-nav-toggle span:nth-child(2) {
  transform: translateY(0);
}

.mobile-nav-toggle span:nth-child(3) {
  transform: translateY(5px);
}

.site-header.is-open .mobile-nav-toggle span:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}

.site-header.is-open .mobile-nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .mobile-nav-toggle span:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}

.main-nav {
  display: flex;
  justify-content: center;
  min-width: 0;
  position: relative;
  z-index: 55;
}

.lang-switcher {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  justify-self: end;
  min-width: 92px;
}

.lang-switcher-current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 92px;
  height: 42px;
  padding: 0 16px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  background: var(--surface);
  color: var(--blue);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition:
    box-shadow 0.24s ease,
    transform 0.24s ease,
    border-color 0.24s ease;
}

.lang-switcher-current:hover,
.lang-switcher-current:focus-visible {
  outline: none;
  transform: translateY(-1px);
  border-color: rgba(0, 64, 193, 0.18);
  box-shadow: 0 10px 24px rgba(57, 92, 189, 0.12);
}

.lang-switcher-current-label {
  line-height: 1;
}

.lang-switcher-caret {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-1px) rotate(45deg);
  transition: transform 0.24s ease;
}

.lang-switcher-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: grid;
  gap: 6px;
  padding: 10px 8px 8px;
  border-radius: 20px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 40px rgba(57, 92, 189, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition:
    opacity 0.22s ease,
    visibility 0.22s ease,
    transform 0.22s ease;
  z-index: 20;
}

.lang-switcher.is-open .lang-switcher-menu,
.lang-switcher:focus-within .lang-switcher-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.lang-switcher.is-open .lang-switcher-caret,
.lang-switcher:focus-within .lang-switcher-caret {
  transform: translateY(1px) rotate(225deg);
}

.lang-switcher-button {
  width: 100%;
  min-width: 0;
  height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: left;
  cursor: pointer;
  transition:
    background-color 0.24s ease,
    color 0.24s ease,
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.lang-switcher-button:hover,
.lang-switcher-button:focus-visible {
  outline: none;
  color: var(--blue);
  background: rgba(239, 244, 255, 0.95);
  transform: translateY(-1px);
}

.lang-switcher-button.is-active {
  display: none;
}

.nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  margin: 0;
  padding: 6px;
  list-style: none;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--stroke);
  overflow: visible;
}

.nav-pill > li {
  position: relative;
  overflow: visible;
}

.nav-pill-lang {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
  z-index: 30;
}

.nav-pill-lang .lang-switcher {
  min-width: 92px;
  z-index: 30;
}

.nav-pill-lang .lang-switcher-menu {
  left: auto;
  right: 0;
  z-index: 40;
}

.nav-link,
.cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  overflow: hidden;
  transition:
    transform 0.28s ease,
    background-color 0.28s ease,
    box-shadow 0.28s ease;
}

.nav-link {
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.nav-link.active {
  background: var(--surface-strong);
  color: var(--blue);
}

.nav-link:hover,
.nav-link:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.nav-link:not(.active):hover,
.nav-link:not(.active):focus-visible {
  background: rgb(247, 247, 247);
}

.nav-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(0, 64, 193, 0.1);
  flex: 0 0 auto;
}

.rolling-mask {
  --roll-height: 1.5em;
  display: inline-flex;
  height: var(--roll-height);
  overflow: hidden;
  line-height: var(--roll-height);
}

.rolling-track {
  display: inline-flex;
  flex-direction: column;
  transform: translateY(0);
  transition: transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.rolling-track span {
  display: block;
  white-space: nowrap;
  line-height: var(--roll-height);
}

.brand .rolling-mask {
  --roll-height: 1.25em;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.brand:hover .rolling-track,
.brand:focus-visible .rolling-track,
.nav-link:hover .rolling-track,
.nav-link:focus-visible .rolling-track,
.cta-button:hover .rolling-track,
.cta-button:focus-visible .rolling-track {
  transform: translateY(calc(-1 * var(--roll-height)));
}

.header-cta {
  display: flex;
  justify-content: flex-end;
}

.cta-button {
  min-height: 40px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgb(12, 82, 218) 0%, var(--blue) 100%);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  box-shadow: 0 12px 24px rgba(0, 64, 193, 0.2);
}

.cta-button:hover,
.cta-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(0, 64, 193, 0.26);
  outline: none;
}

.site-main {
  width: min(100%, var(--container));
  margin: 0 auto;
}

.hero-section {
  position: relative;
  padding-top: 34px;
}

.hero-grid {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 540px;
}

.hero-copy,
.hero-side {
  position: relative;
  z-index: 4;
}

.hero-copy {
  width: 540px;
  padding-top: 96px;
  max-width: none;
}

.hero-heading {
  display: grid;
  gap: 4px;
}

.hero-line {
  margin: 0;
  font-size: clamp(2.45rem, 3.05vw, 3rem);
  line-height: 0.97;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.hero-line-primary {
  font-size: clamp(2.28rem, 2.82vw, 2.76rem);
}

.hero-highlight {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-top: 2px;
}

.hero-highlight-line {
  width: 70px;
  height: 2px;
  border-radius: 999px;
  background: rgba(23, 23, 23, 0.25);
}

.hero-line-muted {
  color: rgb(75, 85, 99);
  font-size: clamp(1.95rem, 2.5vw, 2.55rem);
  font-weight: 400;
  letter-spacing: -0.044em;
  white-space: nowrap;
}

.reveal-line,
.fade-up {
  opacity: 1;
}

body:not(.is-ready) .reveal-line,
body:not(.is-ready) .fade-up,
body:not(.is-ready) .hero-action {
  opacity: 0;
  transform: translateY(28px);
}

body:not(.is-ready) .hero-phone {
  opacity: 0;
  transform: translateY(18px) scale(0.96);
}

body.is-ready .reveal-line,
body.is-ready .fade-up {
  animation: fade-up-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

body.is-ready .hero-heading .reveal-line:nth-child(1) {
  animation-delay: 0.08s;
}

body.is-ready .hero-heading .reveal-line:nth-child(2) {
  animation-delay: 0.18s;
}

body.is-ready .hero-heading .reveal-line:nth-child(3) {
  animation-delay: 0.28s;
}

.hero-action {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-top: 52px;
  border-radius: 999px;
  text-decoration: none;
  background: rgb(239, 244, 255);
  box-shadow: inset 0 0 0 1px rgba(0, 64, 193, 0.04);
  overflow: hidden;
  opacity: 1;
}

body.is-ready .hero-action {
  animation: fade-up-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}

.hero-action-text {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 28px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hero-action-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue);
  margin: 0 0 0 -2px;
  box-shadow: 0 10px 22px rgba(0, 64, 193, 0.24);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  display: grid;
  place-items: center;
}

.hero-action-icon::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--white);
  border-right: 2px solid var(--white);
  transform: translate(-1px, 1px) rotate(45deg);
  transform-origin: center;
}

.hero-action:hover .hero-action-icon,
.hero-action:focus-visible .hero-action-icon {
  transform: scale(1.06);
  box-shadow: 0 14px 28px rgba(0, 64, 193, 0.3);
}

.hero-visual {
  position: absolute;
  top: 24px;
  left: 57%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 460px;
  min-height: 520px;
  z-index: 2;
  overflow: visible;
  transform: translateX(-50%);
}

.hero-grid-mark {
  position: absolute;
  width: 150px;
  height: 150px;
  background-image:
    linear-gradient(rgba(23, 23, 23, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 23, 23, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.65;
  pointer-events: none;
}

.hero-grid-mark-left {
  top: 34px;
  left: -18px;
}

.hero-grid-mark-right {
  right: -8px;
  bottom: 132px;
}

.hero-plus,
.hero-note-plus {
  position: absolute;
  width: 36px;
  height: 36px;
}

.hero-plus::before,
.hero-plus::after,
.hero-note-plus::before,
.hero-note-plus::after {
  content: "";
  position: absolute;
  background: rgba(0, 64, 193, 0.72);
  border-radius: 999px;
}

.hero-plus::before,
.hero-note-plus::before {
  width: 2px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.hero-plus::after,
.hero-note-plus::after {
  width: 100%;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
}

.hero-plus-right {
  top: 102px;
  right: -2px;
}

.hero-plus-bottom {
  display: none;
}

.hero-phone-motion {
  position: absolute;
  top: 0;
  left: 40%;
  display: inline-flex;
  transform: translateX(-50%);
  animation: phone-float 6.8s ease-in-out infinite 1s;
  transform-origin: center center;
}

.hero-phone-frame {
  --phone-x: 0px;
  --phone-y: 0px;
  --phone-r: 0deg;
  position: relative;
  width: 500px;
  max-width: none;
  transform: translate3d(var(--phone-x), var(--phone-y), 0) rotate(var(--phone-r));
  transform-origin: 50% 60%;
  transition: transform 0.22s ease-out;
  will-change: transform;
  filter: drop-shadow(0 34px 40px rgba(0, 0, 0, 0.18));
}

.hero-phone {
  display: block;
  width: 100%;
  height: auto;
  opacity: 1;
  transform: translateY(0) scale(1);
}

body.is-ready .hero-phone {
  animation: phone-enter 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.24s forwards;
}

.hero-side {
  position: relative;
  width: 230px;
  margin-left: auto;
  padding-top: 132px;
  display: grid;
  gap: 64px;
  max-width: none;
}

.hero-note {
  position: relative;
  padding-top: 38px;
  animation-delay: 0.38s;
}

.hero-note-plus {
  top: 0;
  left: 0;
}

.hero-note p {
  margin: 0;
  max-width: 276px;
  font-size: 14px;
  line-height: 1.55;
  color: rgb(10, 10, 10);
}

.hero-proof {
  display: grid;
  gap: 10px;
  animation-delay: 0.5s;
}

.hero-proof-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-proof-avatars {
  display: flex;
  align-items: center;
}

.hero-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--page-bg);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  object-fit: cover;
  display: block;
}

.hero-avatar + .hero-avatar {
  margin-left: -10px;
}

.hero-proof-copy {
  display: grid;
  gap: 4px;
}

.hero-proof-top strong {
  font-size: clamp(2rem, 2.3vw, 2.1rem);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: rgb(23, 23, 23);
}

.hero-proof-copy p {
  margin: 0;
  max-width: 192px;
  color: rgb(107, 114, 128);
  font-size: 12px;
  line-height: 1.35;
}

.hero-band {
  width: min(100%, var(--container));
  position: relative;
  margin-top: -86px;
  padding: 144px 44px 52px;
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 82%, rgba(149, 174, 255, 0.66), transparent 24%),
    linear-gradient(180deg, rgb(19, 72, 206) 0%, rgb(18, 71, 203) 58%, rgb(71, 92, 214) 100%);
}

.hero-marquee {
  position: absolute;
  top: 54px;
  left: 0;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}

.hero-marquee-track {
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.hero-marquee-track span {
  color: rgb(209, 224, 255);
  font-size: clamp(4rem, 8.2vw, 7.25rem);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.hero-marquee-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgb(209, 224, 255);
  flex: 0 0 auto;
}

.hero-band-divider {
  position: absolute;
  left: 44px;
  right: 44px;
  top: 194px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(209, 224, 255, 0.16) 14%, rgba(209, 224, 255, 0.3) 50%, rgba(209, 224, 255, 0.16) 86%, transparent 100%);
  opacity: 0.95;
}

.hero-band-content {
  display: grid;
  justify-items: center;
  gap: 28px;
  padding-top: 60px;
  animation-delay: 0.62s;
}

.hero-band-content p {
  margin: 0;
  max-width: 760px;
  text-align: center;
  color: var(--white);
  font-size: clamp(1.8rem, 2.8vw, 2.9rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
  font-weight: 500;
}

.hero-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.hero-logos span {
  opacity: 0.92;
}

.feature-promo {
  position: relative;
  margin-top: 88px;
  padding: 88px 28px 92px;
  min-height: 620px;
  overflow: hidden;
}

.feature-promo-grid {
  position: absolute;
  width: 236px;
  height: 132px;
  background-image:
    linear-gradient(rgba(23, 23, 23, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 23, 23, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.46;
  pointer-events: none;
}

.feature-promo-grid-left {
  left: 12px;
  top: 234px;
}

.feature-promo-grid-right {
  right: 12px;
  top: 236px;
}

.feature-card {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 2;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: none;
}

.feature-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card-pig {
  top: 18px;
  left: 6px;
  width: 132px;
  height: 82px;
  padding: 0;
  background: linear-gradient(180deg, rgb(216, 213, 255) 0%, rgb(207, 202, 255) 100%);
}

.feature-card-pig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card-clock {
  top: 64px;
  right: 8px;
  width: 130px;
  height: 82px;
  padding: 0;
  background: linear-gradient(180deg, rgb(223, 242, 252) 0%, rgb(208, 235, 248) 100%);
}

.feature-card-clock img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card-crypto {
  left: 58px;
  bottom: 74px;
  width: 128px;
  height: 74px;
  padding: 0;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgb(234, 245, 255) 0%, rgb(215, 234, 255) 100%);
}

.feature-card-crypto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card-cubes {
  right: 34px;
  bottom: 28px;
  width: 132px;
  height: 74px;
  padding: 0;
  border-radius: 999px;
  overflow: hidden;
  background: linear-gradient(135deg, rgb(243, 206, 255) 0%, rgb(214, 223, 255) 100%);
}

.feature-card-cubes img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-promo-content {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding-top: 10px;
}

.feature-promo-title {
  margin: 0;
  max-width: 760px;
  color: var(--blue);
  font-size: clamp(2.65rem, 5vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 500;
}

.feature-promo-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  margin-top: 30px;
}

.feature-promo-caption-line {
  width: 54px;
  height: 1px;
  background: rgba(0, 64, 193, 0.5);
  flex: 0 0 auto;
}

.feature-promo-caption p {
  margin: 0;
  max-width: 350px;
  color: rgba(23, 23, 23, 0.74);
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.feature-promo-action {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-top: 24px;
  border-radius: 999px;
  text-decoration: none;
  background: rgb(239, 244, 255);
  box-shadow: inset 0 0 0 1px rgba(0, 64, 193, 0.04);
  overflow: hidden;
}

.feature-promo-action-text {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 22px;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.feature-promo-action-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  margin-left: -2px;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 22px rgba(0, 64, 193, 0.24);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.feature-promo-action-icon::before {
  content: "";
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--white);
  border-right: 2px solid var(--white);
  transform: translate(-1px, 1px) rotate(45deg);
  transform-origin: center;
}

.feature-promo-action:hover .feature-promo-action-icon,
.feature-promo-action:focus-visible .feature-promo-action-icon {
  transform: scale(1.06);
  box-shadow: 0 14px 28px rgba(0, 64, 193, 0.3);
}

body.is-ready .feature-card.fade-up {
  animation:
    fade-up-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards,
    feature-card-float 9s ease-in-out infinite 0.95s;
}

.feature-card-pig.fade-up {
  animation-delay: 0.14s, 1.05s;
}

.feature-card-clock.fade-up {
  animation-delay: 0.22s, 1.25s;
}

.feature-card-crypto.fade-up {
  animation-delay: 0.32s, 1.4s;
}

.feature-card-cubes.fade-up {
  animation-delay: 0.4s, 1.55s;
}

@keyframes fade-up-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes phone-enter {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes phone-float {
  0%,
  100% {
    transform: translateX(-50%) translateY(0) rotate(0deg);
  }

  50% {
    transform: translateX(-50%) translateY(-16px) rotate(1.4deg);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-33.333%);
  }
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes feature-card-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 980px) {
  .site-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .main-nav {
    width: 100%;
  }

  .nav-pill {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }

  .header-cta {
    width: 100%;
  }

  .cta-button {
    width: 100%;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: auto;
    gap: 24px;
  }

  .hero-copy,
  .hero-side {
    padding-top: 0;
    text-align: center;
  }

  .hero-highlight {
    justify-content: center;
  }

  .hero-side {
    position: relative;
    top: auto;
    right: auto;
    gap: 28px;
    max-width: 420px;
    width: 100%;
    margin-left: 0;
    padding-top: 0;
  }

  .hero-note {
    padding-top: 54px;
  }

  .hero-note-plus {
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-note p,
  .hero-proof-copy p {
    max-width: 420px;
  }

  .hero-proof {
    justify-items: center;
  }

  .hero-visual {
    position: relative;
    top: auto;
    left: auto;
    min-height: 480px;
    width: 100%;
    transform: none;
  }

  .hero-grid-mark-left {
    left: -50px;
  }

  .hero-grid-mark-right {
    right: -40px;
    bottom: 100px;
  }

  .hero-band {
    margin-top: 4px;
    padding: 110px 28px 46px;
  }

  .hero-band-content {
    padding-top: 48px;
  }

  .feature-promo {
    margin-top: 68px;
    padding: 128px 18px 120px;
    min-height: auto;
  }

  .feature-promo-grid {
    width: 180px;
    height: 126px;
    background-size: 42px 42px;
    opacity: 0.35;
  }

  .feature-promo-grid-left {
    left: -18px;
    top: 206px;
  }

  .feature-promo-grid-right {
    right: -18px;
    top: 206px;
  }

  .feature-promo-title {
    max-width: 680px;
    font-size: clamp(2.3rem, 7vw, 3.4rem);
  }

  .feature-promo-caption {
    gap: 12px;
    margin-top: 24px;
  }

  .feature-promo-caption-line {
    width: 34px;
  }

  .feature-card-pig,
  .feature-card-clock {
    width: 118px;
    height: 74px;
  }

  .feature-card-pig {
    top: 14px;
    left: 10px;
  }

  .feature-card-clock {
    top: 32px;
    right: 10px;
  }

  .feature-card-crypto {
    left: 16px;
    bottom: 32px;
    width: 112px;
    height: 66px;
  }

  .feature-card-cubes {
    right: 12px;
    bottom: 20px;
    width: 116px;
    height: 68px;
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding: 10px 12px 24px;
  }

  .nav-link {
    width: 100%;
    min-height: 40px;
  }

  .nav-pill {
    gap: 6px;
    border-radius: 28px;
  }

  .hero-section {
    padding-top: 12px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-line {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .hero-highlight {
    gap: 12px;
  }

  .hero-highlight-line {
    width: 42px;
  }

  .hero-action {
    margin-top: 32px;
  }

  .hero-action-text {
    padding: 0 22px;
    font-size: 14px;
  }

  .hero-visual {
    min-height: 350px;
    width: 100%;
  }

  .hero-phone-frame {
    width: min(100vw - 60px, 380px);
  }

  .hero-grid-mark {
    width: 108px;
    height: 108px;
    background-size: 36px 36px;
  }

  .hero-grid-mark-left {
    top: 18px;
    left: -8px;
  }

  .hero-grid-mark-right {
    right: -8px;
    bottom: 82px;
  }

  .hero-plus-right {
    top: 22px;
    right: 8px;
  }

  .hero-plus-bottom {
    left: 14px;
    bottom: 46px;
  }

  .hero-note p {
    font-size: 15px;
  }

  .hero-band {
    margin-top: 4px;
    padding: 92px 20px 32px;
    border-radius: 28px;
  }

  .hero-marquee {
    top: 34px;
  }

  .hero-marquee-track span {
    font-size: clamp(3rem, 12vw, 4.2rem);
  }

  .hero-band-content {
    gap: 22px;
    padding-top: 38px;
  }

  .hero-band-content p {
    font-size: 1.95rem;
  }

  .hero-logos {
    gap: 14px 18px;
    font-size: 17px;
  }

  .feature-promo {
    margin-top: 54px;
    padding: 116px 10px 116px;
  }

  .feature-promo-grid {
    width: 128px;
    height: 94px;
    background-size: 32px 32px;
  }

  .feature-promo-grid-left {
    left: -10px;
    top: 194px;
  }

  .feature-promo-grid-right {
    right: -10px;
    top: 188px;
  }

  .feature-promo-content {
    max-width: 100%;
  }

  .feature-promo-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .feature-promo-caption {
    display: grid;
    gap: 10px;
  }

  .feature-promo-caption-line {
    display: none;
  }

  .feature-promo-caption p {
    max-width: 290px;
    font-size: 13px;
  }

  .feature-promo-action {
    margin-top: 20px;
  }

  .feature-card-pig,
  .feature-card-clock {
    width: 106px;
    height: 66px;
  }

  .feature-card-pig {
    top: 18px;
    left: 0;
  }

  .feature-card-clock {
    top: 48px;
    right: 0;
  }

  .feature-card-crypto {
    left: 0;
    bottom: 26px;
    width: 96px;
    height: 56px;
  }

  .feature-card-cubes {
    right: 0;
    bottom: 26px;
    width: 102px;
    height: 58px;
  }
}

@media (min-width: 981px) {
  :root {
    --container: 1100px;
  }

  .page-shell {
    padding: 22px 24px 32px;
  }

  .site-header {
    grid-template-columns: 220px minmax(0, 1fr) 220px;
    gap: 20px;
    padding: 0;
  }

  .brand {
    gap: 12px;
  }

  .brand-mark {
    width: 18px;
    height: 18px;
  }

  .brand .rolling-mask {
    font-size: 28px;
  }

  .main-nav {
    justify-self: center;
  }

  .header-cta {
    justify-self: end;
  }

  .nav-pill {
    padding: 6px;
  }

  .nav-link {
    min-height: 40px;
    padding: 0 18px;
    font-size: 15px;
  }

  .cta-button {
    min-height: 44px;
    padding: 0 26px;
    font-size: 15px;
  }

  .site-main {
    width: min(100%, var(--container));
  }

  .hero-section {
    padding-top: 18px;
  }

  .hero-grid {
    min-height: 620px;
  }

  .hero-copy {
    width: 520px;
    padding-top: 104px;
  }

  .hero-heading {
    gap: 8px;
  }

  .hero-line {
    font-size: 3.45rem;
    line-height: 0.96;
    letter-spacing: -0.045em;
  }

  .hero-line-primary {
    font-size: 3.18rem;
  }

  .hero-highlight {
    gap: 16px;
    padding-top: 4px;
  }

  .hero-highlight-line {
    width: 64px;
  }

  .hero-line-muted {
    font-size: 2.58rem;
  }

  .hero-action {
    margin-top: 56px;
  }

  .hero-action-text {
    min-height: 44px;
    padding: 0 30px;
    font-size: 15px;
  }

  .hero-action-icon {
    width: 44px;
    height: 44px;
  }

  .hero-visual {
    top: -6px;
    left: 54.6%;
    width: 540px;
    min-height: 560px;
    transform: translateX(-50%);
  }

  .hero-phone-motion {
    top: -2px;
  }

  .hero-phone-frame {
    width: 665px;
  }

  .hero-grid-mark {
    width: 160px;
    height: 160px;
    background-size: 54px 54px;
  }

  .hero-grid-mark-left {
    top: 54px;
    left: -8px;
  }

  .hero-grid-mark-right {
    right: -8px;
    bottom: 128px;
  }

  .hero-plus-right {
    top: 106px;
    right: 6px;
  }

  .hero-side {
    width: 292px;
    padding-top: 132px;
    gap: 78px;
  }

  .hero-note {
    padding-top: 40px;
  }

  .hero-note p {
    max-width: 292px;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-proof-top {
    gap: 12px;
  }

  .hero-proof-top strong {
    font-size: 2.25rem;
  }

  .hero-proof-copy p {
    max-width: 200px;
    font-size: 12.5px;
  }

  .hero-band {
    margin-top: -146px;
    padding: 170px 46px 56px;
    border-radius: 34px;
  }

  .hero-marquee {
    top: 54px;
  }

  .hero-marquee-track span {
    font-size: 7rem;
  }

  .hero-band-divider {
    left: 46px;
    right: 46px;
    top: 220px;
  }

  .hero-band-content {
    gap: 32px;
    padding-top: 76px;
  }

  .hero-band-content p {
    max-width: 760px;
    font-size: 2.95rem;
    line-height: 1.05;
  }

  .hero-logos {
    gap: 20px 30px;
    font-size: 17px;
  }

  .feature-promo {
    margin-top: 96px;
    padding: 82px 28px 90px;
    min-height: 640px;
  }

  .feature-promo-grid {
    width: 260px;
    height: 136px;
  }

  .feature-promo-grid-left {
    left: 6px;
    top: 252px;
  }

  .feature-promo-grid-right {
    right: 8px;
    top: 254px;
  }

  .feature-card-pig {
    top: 10px;
    left: 8px;
    width: 124px;
    height: 78px;
  }

  .feature-card-clock {
    top: 58px;
    right: 6px;
    width: 124px;
    height: 78px;
  }

  .feature-card-crypto {
    left: 62px;
    bottom: 66px;
    width: 128px;
    height: 74px;
  }

  .feature-card-cubes {
    right: 30px;
    bottom: 20px;
    width: 130px;
    height: 74px;
  }

  .feature-promo-content {
    max-width: 720px;
    padding-top: 6px;
  }

  .feature-promo-title {
    max-width: 700px;
    font-size: 3.2rem;
  }

  .feature-promo-caption {
    margin-top: 34px;
    gap: 16px;
  }

  .feature-promo-caption-line {
    width: 58px;
  }

  .feature-promo-caption p {
    max-width: 360px;
    font-size: 14px;
  }

  .feature-promo-action {
    margin-top: 22px;
  }
}

/* Standout section restore */
.standout-section {
  margin-top: 72px;
  padding: 24px 0 80px;
}

.standout-badge {
  width: fit-content;
  margin: 0 auto;
  padding: 8px 14px;
  border: 1px solid rgba(114, 155, 255, 0.36);
  border-radius: 999px;
  background: rgba(245, 249, 255, 0.92);
  color: var(--blue);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.standout-heading {
  margin-top: 24px;
  text-align: center;
}

.standout-title {
  margin: 0;
  color: rgb(23, 23, 23);
  font-size: clamp(2.6rem, 5vw, 4.25rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.standout-title + .standout-title {
  margin-top: 4px;
}

.standout-title-accent {
  color: var(--blue);
}

.standout-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: 452px 246px;
  gap: 24px;
  max-width: 1296px;
  margin: 42px auto 0;
}

.standout-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: url("images/crest.png") center / 116% 116% no-repeat;
  box-shadow: 0 18px 38px rgba(104, 132, 210, 0.08);
}

.standout-card-expense,
.standout-card-goals {
  height: 452px;
}

.standout-card-analytics,
.standout-card-app {
  height: 246px;
}

.standout-card-expense {
  grid-column: span 6;
  min-height: 452px;
  background: url("images/crest.png") 92% 86% / 112% 112% no-repeat;
}

.standout-card-goals {
  grid-column: span 6;
  background: url("images/crest.png") center / 116% 116% no-repeat;
}

.standout-card-analytics {
  grid-column: span 7;
  background: url("images/crest.png") center / 116% 116% no-repeat;
}

.standout-card-app {
  grid-column: span 5;
}

.standout-copy,
.expense-card-copy {
  position: relative;
  z-index: 2;
}

.standout-copy {
  padding: 28px 28px 0;
  max-width: 240px;
}

.standout-copy h3,
.expense-card-copy h3 {
  margin: 0;
  color: rgb(23, 23, 23);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.standout-copy p,
.expense-card-copy p {
  margin: 10px 0 0;
  color: rgba(64, 74, 98, 0.72);
  font-size: 14px;
  line-height: 1.45;
}

.standout-visual {
  position: absolute;
  inset: 0;
}

.standout-plus {
  position: absolute;
  width: 58px;
  height: 58px;
  opacity: 0.66;
}

.standout-plus::before,
.standout-plus::after {
  content: "";
  position: absolute;
  background: rgba(104, 146, 255, 0.28);
  border-radius: 999px;
}

.standout-plus::before {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
}

.standout-plus::after {
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  transform: translateY(-50%);
}

.standout-plus-a {
  top: 12px;
  right: 12px;
}

.standout-plus-b {
  top: 72px;
  right: -6px;
}

.standout-plus-c {
  left: 18px;
  bottom: 26px;
}

.standout-plus-d {
  left: 68px;
  bottom: -6px;
}

.expense-card-scene {
  position: absolute;
  inset: 0;
  height: 294px;
  z-index: 2;
}

.expense-card-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.expense-card-lines path {
  fill: none;
  stroke: rgba(86, 129, 241, 0.72);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.expense-card-icon {
  position: absolute;
  z-index: 3;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 24px rgba(98, 122, 199, 0.14);
  color: var(--blue);
}

.expense-card-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.expense-card-icon-cart {
  left: 52px;
  top: 68px;
}

.expense-card-icon-send {
  left: calc(50% - 22px);
  top: 24px;
}

.expense-card-icon-card {
  right: 52px;
  top: 68px;
}

.expense-card-icon-chart {
  left: 52px;
  top: 256px;
}

.expense-card-icon-globe {
  left: calc(50% - 22px);
  top: 264px;
}

.expense-card-icon-lock {
  right: 52px;
  top: 256px;
}

.expense-card-visual {
  position: absolute;
  left: 50%;
  top: 82px;
  width: 274px;
  transform: translateX(-50%) rotate(-2.7deg);
  z-index: 2;
  filter: drop-shadow(0 18px 34px rgba(40, 72, 167, 0.16));
}

.expense-card-copy {
  position: absolute;
  left: 36px;
  top: 356px;
  max-width: 340px;
}

.standout-visual-goals {
  position: absolute;
  inset: 0;
}

.standout-card-goals .standout-copy {
  width: calc(100% - 56px);
  max-width: none;
}

.standout-card-goals .standout-copy p {
  max-width: none;
}

.goal-stack {
  position: absolute;
  left: 50%;
  top: 62%;
  width: 430px;
  height: 156px;
  transform: translate(-50%, -50%);
}

.goal-card {
  position: absolute;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 34px rgba(104, 132, 210, 0.14);
}

.goal-card-back {
  left: 28px;
  right: 28px;
  bottom: 0;
  opacity: 0.82;
}

.goal-card-front {
  top: 0;
}

.goal-card-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(129, 166, 255, 0.95), rgba(105, 145, 246, 0.95));
  color: white;
}

.goal-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
}

.goal-card-copy {
  display: grid;
  gap: 4px;
}

.goal-card-copy span,
.goal-card-amount strong {
  font-size: 12px;
  line-height: 1.1;
}

.goal-card-copy small,
.goal-card-amount small {
  color: rgba(90, 104, 138, 0.62);
  font-size: 10px;
}

.goal-card-amount {
  display: grid;
  justify-items: end;
  gap: 4px;
}

.goal-card-amount strong {
  color: var(--blue);
  font-size: 16px;
}

.standout-visual-analytics {
  position: absolute;
  inset: 0;
}

.standout-card-analytics .standout-copy {
  max-width: 320px;
}

.analytics-chart-card {
  position: absolute;
  right: 44px;
  top: 48%;
  width: 252px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(0, 64, 193, 0.2);
  transform: translateY(-50%) rotate(12deg);
}

.analytics-graph-image {
  display: block;
  width: 100%;
  height: auto;
}

.standout-card-app {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 28px 28px 26px;
  background:
    linear-gradient(180deg, rgba(20, 78, 215, 0.98), rgba(53, 92, 235, 0.96)),
    url("images/crest.png") center / 118% 118% no-repeat;
}

.standout-card-app .standout-plus {
  width: 74px;
  height: 74px;
  opacity: 0.28;
  z-index: 0;
}

.standout-card-app .standout-plus::before,
.standout-card-app .standout-plus::after {
  background: rgba(150, 184, 255, 0.3);
}

.standout-plus-app-a {
  top: 10px;
  left: 108px;
}

.standout-plus-app-b {
  top: 10px;
  left: 178px;
}

.standout-plus-app-c {
  top: 10px;
  right: 104px;
}

.standout-plus-app-d {
  top: 10px;
  right: 34px;
}

.standout-plus-app-e {
  top: 78px;
  left: 108px;
}

.standout-plus-app-f {
  top: 78px;
  left: 178px;
}

.standout-plus-app-g {
  top: 78px;
  right: 104px;
}

.standout-plus-app-h {
  top: 78px;
  right: 34px;
}

.standout-app-mark {
  position: absolute;
  top: 36px;
  right: 42px;
  width: 86px;
  height: 46px;
  z-index: 1;
  transform: rotate(-24deg);
  transform-origin: center;
}

.standout-app-mark span {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 22px rgba(255, 255, 255, 0.08);
}

.standout-app-mark span:first-child {
  right: 0;
  top: 4px;
  width: 28px;
  height: 28px;
}

.standout-app-mark span:last-child {
  right: 34px;
  top: 12px;
  width: 14px;
  height: 14px;
}

.standout-app-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 16px;
  margin-top: auto;
  max-width: 260px;
}

.standout-app-copy h3 {
  margin: 0;
  color: var(--white);
  font-size: 22px;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.standout-app-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 255, 0.96));
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
  box-shadow:
    0 12px 24px rgba(7, 38, 117, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.7);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.standout-app-button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 28px rgba(7, 38, 117, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.76);
}

.standout-app-button:active {
  transform: translateY(0);
}

.expense-card-scene.is-animated .expense-card-lines path {
  stroke-dasharray: 480;
  stroke-dashoffset: 480;
  animation: expense-line-draw 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.expense-card-scene.is-animated .expense-card-icon {
  opacity: 0;
  animation: expense-icon-burst 0.62s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.standout-card-goals .goal-card {
  opacity: 0;
}

.standout-card-goals.is-animated .goal-card-back {
  animation: goal-card-rise-back 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.standout-card-goals.is-animated .goal-card-front {
  animation: goal-card-rise-front 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

@keyframes expense-line-draw {
  from {
    stroke-dashoffset: 480;
  }

  to {
    stroke-dashoffset: 0;
  }
}

@keyframes expense-icon-burst {
  0% {
    opacity: 0;
    transform: scale(0.72);
  }

  70% {
    opacity: 1;
    transform: scale(1.08);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes goal-card-rise-back {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }

  to {
    opacity: 0.82;
    transform: translateY(0) scale(1);
  }
}

@keyframes goal-card-rise-front {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 980px) {
  .standout-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    max-width: 720px;
  }

  .standout-card-expense,
  .standout-card-goals,
  .standout-card-analytics,
  .standout-card-app {
    grid-column: auto;
    height: auto;
  }

  .standout-card-expense {
    min-height: 486px;
  }

  .standout-card-goals {
    min-height: 320px;
  }

  .standout-card-analytics,
  .standout-card-app {
    min-height: 280px;
  }

  .goal-stack {
    width: 86%;
  }

  .analytics-chart-card {
    right: 28px;
    top: 48%;
    width: 214px;
    transform: translateY(-50%) rotate(10deg);
  }

  .standout-app-mark {
    top: 34px;
    right: 24px;
    width: 74px;
    height: 40px;
  }

  .standout-plus-app-a {
    top: 14px;
    left: 78px;
  }

  .standout-plus-app-b {
    top: 14px;
    left: 136px;
  }

  .standout-plus-app-c {
    top: 14px;
    right: 84px;
  }

  .standout-plus-app-d {
    top: 14px;
    right: 22px;
  }

  .standout-plus-app-e {
    top: 72px;
    left: 78px;
  }

  .standout-plus-app-f {
    top: 72px;
    left: 136px;
  }

  .standout-plus-app-g {
    top: 72px;
    right: 84px;
  }

  .standout-plus-app-h {
    top: 72px;
    right: 22px;
  }
}

@media (max-width: 640px) {
  .standout-section {
    margin-top: 54px;
  }

  .standout-grid {
    margin-top: 28px;
    gap: 18px;
  }

  .standout-copy {
    padding: 22px 20px 0;
  }

  .expense-card-scene {
    height: 292px;
  }

  .expense-card-visual {
    top: 82px;
    width: 262px;
  }

  .expense-card-icon {
    width: 42px;
    height: 42px;
  }

  .expense-card-icon svg {
    width: 18px;
    height: 18px;
  }

  .expense-card-icon-cart {
    left: 54px;
    top: 72px;
  }

  .expense-card-icon-send {
    left: calc(50% - 21px);
    top: 18px;
  }

  .expense-card-icon-card {
    right: 54px;
    top: 72px;
  }

  .expense-card-icon-chart {
    left: 54px;
    top: 244px;
  }

  .expense-card-icon-globe {
    left: calc(50% - 21px);
    top: 258px;
  }

  .expense-card-icon-lock {
    right: 54px;
    top: 244px;
  }

  .expense-card-copy {
    left: 48px;
    top: 376px;
    max-width: 290px;
  }
}

/* More features section */
.more-features-section {
  position: relative;
  margin-top: 110px;
  padding: 18px 0 64px;
  overflow: hidden;
}

.more-features-title {
  margin: 0;
  text-align: center;
  color: rgb(23, 23, 23);
  font-size: clamp(2.2rem, 4vw, 3.35rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.05em;
}

.more-features-cards {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px 18px;
  max-width: 1020px;
  margin: 44px auto 0;
}

.mini-feature-card {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: start;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(246, 249, 255, 0.96);
  box-shadow: 0 12px 28px rgba(122, 146, 218, 0.08);
}

.mini-feature-card:nth-child(1),
.mini-feature-card:nth-child(2),
.mini-feature-card:nth-child(3) {
  grid-column: span 2;
}

.mini-feature-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.mini-feature-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.mini-feature-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.mini-feature-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mini-feature-card-blue .mini-feature-icon {
  background: linear-gradient(180deg, rgba(206, 222, 255, 0.95), rgba(187, 209, 255, 0.95));
  color: rgb(61, 117, 255);
}

.mini-feature-card-indigo .mini-feature-icon {
  background: linear-gradient(180deg, rgba(216, 225, 255, 0.95), rgba(195, 210, 255, 0.95));
  color: rgb(82, 104, 241);
}

.mini-feature-card-cyan .mini-feature-icon {
  background: linear-gradient(180deg, rgba(226, 246, 255, 0.95), rgba(212, 240, 251, 0.95));
  color: rgb(59, 165, 224);
}

.mini-feature-card-pink .mini-feature-icon {
  background: linear-gradient(180deg, rgba(255, 223, 244, 0.96), rgba(255, 202, 233, 0.96));
  color: rgb(244, 93, 176);
}

.mini-feature-card-green .mini-feature-icon {
  background: linear-gradient(180deg, rgba(226, 248, 217, 0.96), rgba(211, 243, 201, 0.96));
  color: rgb(82, 193, 95);
}

.mini-feature-copy h3 {
  margin: 0;
  color: rgb(23, 23, 23);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.mini-feature-copy p {
  margin: 4px 0 0;
  color: rgba(81, 88, 106, 0.76);
  font-size: 13px;
  line-height: 1.35;
}

.more-features-phone-wrap {
  position: relative;
  max-width: 980px;
  min-height: 560px;
  margin: 20px auto 0;
}

.more-features-phone-wrap::before {
  content: none;
}

.more-features-ghost {
  position: absolute;
  top: 232px;
  color: rgba(55, 102, 232, 0.06);
  font-size: clamp(4.4rem, 9vw, 7.4rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.035em;
  pointer-events: none;
  user-select: none;
  opacity: var(--ghost-opacity, 0.9);
  transition: opacity 180ms linear;
}

.more-features-ghost-left {
  left: -34px;
  transform: translate3d(var(--ghost-left-shift, -150px), 0, 0);
}

.more-features-ghost-right {
  right: -30px;
  transform: translate3d(var(--ghost-right-shift, 150px), 0, 0);
}

.more-features-phone {
  position: absolute;
  left: 50%;
  bottom: -360px;
  width: min(406px, 40vw);
  transform: translateX(-50%);
  overflow: hidden;
  border-radius: 66px 66px 0 0;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 43%, rgba(0, 0, 0, 0.94) 47%, rgba(0, 0, 0, 0.72) 52%, rgba(0, 0, 0, 0.2) 58%, rgba(0, 0, 0, 0) 64%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 43%, rgba(0, 0, 0, 0.94) 47%, rgba(0, 0, 0, 0.72) 52%, rgba(0, 0, 0, 0.2) 58%, rgba(0, 0, 0, 0) 64%);
  z-index: 1;
}

.more-features-phone::before {
  content: none;
}

.more-features-phone-screen,
.more-features-phone-frame {
  display: block;
  width: 100%;
  height: auto;
}

.more-features-phone-screen {
  position: relative;
  z-index: 1;
  border-radius: 42px;
  transform: translate(-4px, 34px) scale(0.94);
  transform-origin: top center;
}

.more-features-phone-frame {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.more-features-phone-overlay {
  position: absolute;
  left: -8%;
  right: -8%;
  top: 48%;
  height: 12%;
  z-index: 8;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.18) 30%, rgba(255, 255, 255, 0.7) 78%, rgba(255, 255, 255, 1) 100%),
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.6) 36%, rgba(255, 255, 255, 0.12) 72%, rgba(255, 255, 255, 0) 100%);
  filter: blur(18px);
  opacity: 1;
}

.more-features-phone-wrap::after {
  content: none;
}

@media (max-width: 980px) {
  .more-features-section {
    margin-top: 88px;
  }

  .more-features-cards {
    grid-template-columns: 1fr 1fr;
    max-width: 760px;
  }

  .mini-feature-card:nth-child(1),
  .mini-feature-card:nth-child(2),
  .mini-feature-card:nth-child(3),
  .mini-feature-card:nth-child(4),
  .mini-feature-card:nth-child(5) {
    grid-column: auto;
  }

  .more-features-phone-wrap {
    min-height: 500px;
    margin-top: 20px;
  }

  .more-features-phone-wrap::before {
    content: none;
  }

  .more-features-ghost {
    top: 214px;
    font-size: clamp(4.5rem, 12vw, 7rem);
  }

  .more-features-phone {
    bottom: -280px;
    width: min(360px, 50vw);
  }
}

@media (max-width: 640px) {
  .more-features-section {
    margin-top: 64px;
    padding-bottom: 28px;
  }

  .more-features-title {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
    line-height: 1.04;
  }

  .more-features-cards {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
  }

  .mini-feature-card {
    grid-template-columns: 42px 1fr;
    gap: 12px;
    padding: 12px;
  }

  .mini-feature-icon {
    width: 42px;
    height: 42px;
  }

  .mini-feature-copy h3 {
    font-size: 14px;
  }

  .mini-feature-copy p {
    font-size: 12px;
  }

  .more-features-phone-wrap {
    min-height: 410px;
    margin-top: 18px;
  }

  .more-features-phone-wrap::before {
    content: none;
  }

  .more-features-ghost {
    top: 172px;
    font-size: clamp(3.5rem, 14vw, 5rem);
  }

  .more-features-ghost-left {
    left: -10px;
  }

  .more-features-ghost-right {
    right: -10px;
  }

  .more-features-phone {
    bottom: -180px;
    width: min(300px, 76vw);
  }

  .more-features-phone-wrap::after {
    content: none;
  }
}

/* Stats section */
.stats-section {
  margin-top: 108px;
  padding: 10px 0 24px;
}

.stats-badge {
  width: fit-content;
  margin: 0 auto;
  padding: 8px 14px;
  border: 1px solid rgba(114, 155, 255, 0.36);
  border-radius: 999px;
  background: rgba(245, 249, 255, 0.92);
  color: var(--blue);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.stats-heading {
  margin-top: 22px;
  text-align: center;
}

.stats-title {
  margin: 0;
  color: rgb(23, 23, 23);
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.stats-title + .stats-title {
  margin-top: 4px;
}

.stats-title-accent {
  color: var(--blue);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1.08fr 1.48fr 1.08fr;
  gap: 18px 18px;
  max-width: 960px;
  margin: 42px auto 0;
}

.stats-pill {
  position: relative;
  min-height: 132px;
  border-radius: 999px;
  overflow: hidden;
}

.stats-pill-outline {
  border: 1px solid rgba(153, 183, 255, 0.64);
  background: rgba(255, 255, 255, 0.9);
}

.stats-pill-soft {
  background: linear-gradient(180deg, rgba(244, 247, 255, 0.96), rgba(235, 241, 255, 0.96));
}

.stats-pill-blue {
  background: linear-gradient(135deg, rgb(40, 86, 226) 0%, rgb(110, 146, 255) 100%);
}

.stats-pill-wide {
  padding: 0 34px;
}

.stats-pill-large {
  padding: 0 44px;
}

.stats-pill-center {
  display: grid;
  place-items: center;
}

.stats-grid .stats-pill:nth-child(1) {
  width: 104%;
  justify-self: start;
}

.stats-grid .stats-pill:nth-child(3) {
  width: 104%;
  justify-self: end;
}

.stats-grid .stats-pill:nth-child(4) {
  min-height: 140px;
  padding: 0 34px 0 46px;
  width: 138%;
  justify-self: start;
}

.stats-grid .stats-pill:nth-child(4) .stats-highlight {
  gap: 18px;
}

.stats-grid .stats-pill:nth-child(4) .stats-highlight p {
  max-width: 150px;
}

.stats-grid .stats-pill:nth-child(5) {
  min-height: 140px;
  width: 54%;
  justify-self: center;
}

.stats-grid .stats-pill:nth-child(6) {
  min-height: 140px;
  padding: 0 34px;
  width: 138%;
  justify-self: end;
}

.stats-grid .stats-pill:nth-child(6) .stats-highlight {
  justify-content: flex-start;
  gap: 16px;
}

.stats-grid .stats-pill:nth-child(6) .stats-highlight p {
  max-width: 132px;
}

.stats-cross-row {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.stats-cross-row span {
  position: relative;
  width: 48px;
  height: 48px;
}

.stats-cross-row span::before,
.stats-cross-row span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1px;
  height: 100%;
  background: rgba(90, 132, 255, 0.72);
  transform-origin: center;
}

.stats-cross-row span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.stats-cross-row span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.stats-highlight {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 100%;
}

.stats-highlight strong {
  color: rgb(73, 125, 255);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.stats-highlight p {
  max-width: 210px;
  margin: 0;
  color: rgba(79, 87, 106, 0.76);
  font-size: 15px;
  line-height: 1.35;
}

.stats-pill-blue .stats-highlight strong,
.stats-pill-blue .stats-highlight p {
  color: rgb(255, 255, 255);
}

.stats-plus-mark {
  position: relative;
  width: 68px;
  height: 68px;
}

.stats-plus-mark::before,
.stats-plus-mark::after {
  content: "";
  position: absolute;
  background: rgba(98, 139, 255, 0.9);
  border-radius: 999px;
}

.stats-plus-mark::before {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
}

.stats-plus-mark::after {
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  transform: translateY(-50%);
}

@media (max-width: 980px) {
  .stats-section {
    margin-top: 84px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 760px;
  }

  .stats-pill {
    min-height: 120px;
  }

  .stats-highlight {
    padding: 0 24px;
  }
}

@media (max-width: 640px) {
  .stats-section {
    margin-top: 64px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
  }

  .stats-pill {
    min-height: 110px;
    border-radius: 999px;
  }

  .stats-pill-wide,
  .stats-pill-large {
    padding: 0 22px;
  }

  .stats-highlight strong {
    font-size: 2.6rem;
  }

  .stats-highlight p {
    font-size: 14px;
  }
}

.testimonials-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(420px, 1.1fr);
  gap: 42px;
  align-items: center;
  margin-top: 132px;
}

.testimonials-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 660px;
  padding: 54px 0 48px;
}

.testimonials-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(132, 168, 255, 0.56);
  border-radius: 999px;
  color: rgb(27, 83, 220);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.testimonials-heading {
  margin-top: 42px;
}

.testimonials-heading h2 {
  margin: 0;
  color: rgb(20, 20, 22);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.testimonials-title-accent {
  margin-top: 6px;
  color: rgb(20, 83, 220);
}

.testimonials-rating {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-top: auto;
}

.testimonials-rating-copy {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 6px;
  row-gap: 2px;
  align-items: center;
}

.testimonials-rating-copy strong {
  color: rgb(22, 22, 24);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.testimonials-rating-copy span {
  color: rgb(255, 191, 49);
  font-size: 13px;
  letter-spacing: 0.18em;
}

.testimonials-rating-copy p {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(95, 102, 118, 0.8);
  font-size: 13px;
}

.testimonials-marquee {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 22px;
  min-height: 660px;
  overflow: hidden;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 10%, rgba(0, 0, 0, 0.9) 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 10%, rgba(0, 0, 0, 0.9) 90%, transparent 100%);
}

.testimonials-column {
  position: relative;
  height: 660px;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  flex-direction: column;
  gap: 18px;
  will-change: transform;
}

.testimonials-column-down .testimonials-track {
  animation: testimonials-scroll-down 22s linear infinite;
}

.testimonials-column-up .testimonials-track {
  animation: testimonials-scroll-up 22s linear infinite;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 238px;
  padding: 28px 30px 26px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(250, 252, 255, 0.98), rgba(245, 248, 255, 0.98));
  box-shadow: 0 18px 44px rgba(69, 96, 166, 0.08);
  text-align: center;
}

.testimonial-avatar {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: rgb(255, 255, 255);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.04em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 14px 34px rgba(45, 60, 105, 0.16);
}

.testimonial-avatar-amber {
  background: linear-gradient(135deg, rgb(255, 172, 86), rgb(243, 122, 68));
}

.testimonial-avatar-ink {
  background: linear-gradient(135deg, rgb(68, 69, 79), rgb(26, 28, 36));
}

.testimonial-avatar-pink {
  background: linear-gradient(135deg, rgb(255, 137, 175), rgb(241, 92, 155));
}

.testimonial-avatar-graphite {
  background: linear-gradient(135deg, rgb(87, 88, 96), rgb(21, 21, 26));
}

.testimonial-avatar-gold {
  background: linear-gradient(135deg, rgb(212, 176, 102), rgb(126, 92, 48));
}

.testimonial-avatar-ice {
  background: linear-gradient(135deg, rgb(124, 181, 255), rgb(64, 117, 227));
}

.testimonial-card h3 {
  margin: 18px 0 0;
  color: rgb(21, 22, 24);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.testimonial-place {
  margin-top: 6px;
  color: rgba(127, 105, 72, 0.74);
  font-size: 14px;
}

.testimonial-stars {
  margin-top: 18px;
  color: rgb(20, 83, 220);
  font-size: 15px;
  letter-spacing: 0.22em;
}

.testimonial-card p {
  margin: 16px 0 0;
  color: rgb(19, 22, 32);
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

@keyframes testimonials-scroll-up {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(calc(-50% - 9px));
  }
}

@keyframes testimonials-scroll-down {
  from {
    transform: translateY(calc(-50% - 9px));
  }
  to {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonials-column-down .testimonials-track,
  .testimonials-column-up .testimonials-track {
    animation: none;
  }
}

@media (max-width: 980px) {
  .testimonials-section {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 104px;
  }

  .testimonials-intro {
    min-height: auto;
    padding: 0;
  }

  .testimonials-marquee {
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
  }

  .testimonials-column {
    height: 560px;
  }
}

@media (max-width: 640px) {
  .testimonials-section {
    margin-top: 80px;
  }

  .testimonials-heading {
    margin-top: 28px;
  }

  .testimonials-marquee {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 16px;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .testimonials-column {
    height: auto;
    overflow: visible;
  }

  .testimonials-track {
    animation: none !important;
  }

  .testimonial-card {
    min-height: auto;
    padding: 24px 22px;
  }
}

.cta-section {
  margin-top: 132px;
}

.cta-block {
  position: relative;
  min-height: 632px;
  border-radius: 40px;
  overflow: hidden;
  isolation: isolate;
  background: rgb(42, 102, 240);
}

.cta-block::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(42, 102, 240, 0) 0%, rgba(42, 102, 240, 0.9) 100%);
}

.cta-block::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 108px;
  z-index: 4;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(42, 102, 240, 0) 0%, rgba(42, 102, 240, 0.12) 38%, rgba(42, 102, 240, 0.44) 72%, rgba(42, 102, 240, 0.86) 100%),
    radial-gradient(ellipse at center, rgba(73, 128, 255, 0.62) 0%, rgba(59, 116, 248, 0.18) 58%, rgba(59, 116, 248, 0) 100%);
  filter: blur(14px);
}

.cta-block-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.cta-copy {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 632px;
  max-width: 760px;
  margin: 0 auto;
  padding: 68px 24px 92px;
  text-align: center;
}

.cta-copy h2 {
  max-width: 760px;
  margin: 0;
  color: rgb(255, 255, 255);
  font-size: clamp(2.2rem, 4.8vw, 3.95rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.08em;
}

.cta-copy p {
  max-width: 520px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  line-height: 1.45;
  letter-spacing: -0.03em;
}

.cta-center-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 50px;
  margin-top: 26px;
  padding: 0 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
  color: rgb(33, 86, 221);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.03em;
  box-shadow: 0 16px 34px rgba(19, 54, 143, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.cta-center-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(19, 54, 143, 0.22);
}

.cta-side-image {
  position: absolute;
  bottom: -52px;
  z-index: 2;
  display: block;
  width: clamp(210px, 18vw, 280px);
  height: auto;
  pointer-events: none;
  user-select: none;
  -webkit-mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 40%,
    rgba(0, 0, 0, 0.9) 56%,
    rgba(0, 0, 0, 0.55) 74%,
    rgba(0, 0, 0, 0.08) 92%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 40%,
    rgba(0, 0, 0, 0.9) 56%,
    rgba(0, 0, 0, 0.55) 74%,
    rgba(0, 0, 0, 0.08) 92%,
    rgba(0, 0, 0, 0) 100%
  );
}

.cta-side-image-left {
  left: 58px;
  transform: rotate(-8deg);
  transform-origin: bottom left;
}

.cta-side-image-right {
  right: 58px;
  transform: rotate(10deg);
  transform-origin: bottom right;
}

@media (max-width: 980px) {
  .cta-section {
    margin-top: 104px;
  }

  .cta-block {
    min-height: 560px;
    border-radius: 32px;
  }

  .cta-block::before {
    height: 8px;
  }

  .cta-block::after {
    height: 84px;
  }

  .cta-copy {
    min-height: 560px;
    max-width: 620px;
    padding: 50px 24px 72px;
  }

  .cta-copy h2 {
    font-size: clamp(2rem, 4.8vw, 3.2rem);
  }

  .cta-copy p {
    font-size: 14px;
  }

  .cta-center-button {
    min-width: 154px;
    min-height: 46px;
    margin-top: 22px;
    font-size: 16px;
  }

  .cta-side-image {
    width: clamp(170px, 18vw, 220px);
    bottom: -34px;
    opacity: 0.92;
  }

  .cta-side-image-left {
    left: 26px;
  }

  .cta-side-image-right {
    right: 26px;
  }
}

@media (max-width: 640px) {
  .cta-section {
    margin-top: 80px;
  }

  .cta-block {
    min-height: 420px;
    border-radius: 28px;
  }

  .cta-block::before {
    height: 6px;
  }

  .cta-block::after {
    height: 64px;
    filter: blur(10px);
  }

  .cta-copy {
    min-height: 420px;
    padding: 38px 20px 48px;
  }

  .cta-copy h2 {
    font-size: 2rem;
  }

  .cta-copy p {
    max-width: 320px;
    margin-top: 18px;
    font-size: 14px;
  }

  .cta-side-image {
    width: 132px;
    bottom: -22px;
    opacity: 0.58;
  }

  .cta-side-image-left {
    left: -6px;
  }

  .cta-side-image-right {
    right: -6px;
  }
}

.site-footer {
  margin-top: 96px;
  padding-bottom: 34px;
}

.site-footer-line {
  width: 100%;
  height: 1px;
  background: rgba(122, 163, 255, 0.46);
}

.site-footer-content {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  align-items: center;
  gap: 20px;
  padding-top: 48px;
}

.site-footer-copy {
  max-width: 540px;
  margin: 0;
  color: rgb(33, 33, 36);
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.site-footer-legal {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-footer-legal-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(44, 99, 238, 0.3);
  background: rgba(255, 255, 255, 0.82);
  color: rgb(33, 86, 221);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.site-footer-legal-link:hover {
  background: rgb(33, 86, 221);
  color: rgb(255, 255, 255);
  border-color: rgb(33, 86, 221);
  transform: translateY(-1px);
}

.site-footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-footer-social {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(244, 247, 255, 1);
  color: rgb(34, 35, 41);
  box-shadow: inset 0 0 0 1px rgba(208, 220, 255, 0.72);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.site-footer-social:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 1px rgba(163, 189, 255, 0.92), 0 14px 28px rgba(53, 86, 171, 0.12);
}

.site-footer-social svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  min-height: 48px;
  padding: 0 28px;
  border: 1.5px solid rgb(44, 99, 238);
  border-radius: 999px;
  color: rgb(33, 86, 221);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.03em;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.site-footer-cta:hover {
  background: rgb(33, 86, 221);
  color: rgb(255, 255, 255);
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  .site-footer {
    margin-top: 84px;
  }

  .site-footer-content {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 24px;
    padding-top: 34px;
  }

  .site-footer-copy {
    max-width: 680px;
  }

  .site-footer-legal {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .site-footer {
    margin-top: 68px;
    padding-bottom: 26px;
  }

  .site-footer-copy {
    font-size: 14px;
  }

  .site-footer-social {
    width: 36px;
    height: 36px;
  }

  .site-footer-legal {
    width: 100%;
    flex-direction: column;
    gap: 8px;
  }

  .site-footer-legal-link {
    width: 100%;
    max-width: 320px;
    min-height: 44px;
    font-size: 15px;
  }

  .site-footer-cta {
    width: 100%;
    max-width: 260px;
    min-height: 46px;
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  :root {
    --container: 100%;
  }

  .page-shell {
    padding: 6px 12px 24px;
  }

  .site-header {
    position: relative;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: start;
    justify-items: stretch;
    padding: 2px 0 0;
  }

  .brand {
    justify-self: start;
    align-self: start;
  }

  .mobile-nav-toggle {
    position: absolute;
    display: inline-flex;
    top: 0;
    right: 0;
  }

  .site-header.is-open .mobile-nav-toggle span:nth-child(1) {
    transform: translateY(-5px);
  }

  .site-header.is-open .mobile-nav-toggle span:nth-child(2) {
    opacity: 1;
  }

  .site-header.is-open .mobile-nav-toggle span:nth-child(3) {
    transform: translateY(5px);
  }

  .main-nav,
  .header-cta {
    grid-column: 1 / -1;
    width: 100%;
    display: none;
  }

  .nav-pill-lang {
    margin-left: 0;
    justify-content: flex-start;
  }

  .lang-switcher {
    min-width: 74px;
  }

  .lang-switcher-current {
    min-width: 74px;
    height: 34px;
    padding: 0 12px;
    font-size: 12px;
  }

  .lang-switcher-menu {
    top: 100%;
    left: 0;
    right: auto;
    padding: 8px 6px 6px;
    gap: 4px;
    border-radius: 18px;
  }

  .lang-switcher-button {
    height: 32px;
    padding: 0 12px;
    font-size: 11px;
  }

  .site-header.is-open .main-nav,
  .site-header.is-open .header-cta {
    display: flex;
  }

  .site-header.is-open .main-nav {
    margin-top: 2px;
  }

  .site-header.is-open .header-cta {
    margin-top: 0;
  }

  .main-nav {
    justify-content: stretch;
  }

  .nav-pill {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 10px;
    border-radius: 24px;
    background: rgba(246, 246, 246, 0.98);
  }

  .nav-link {
    width: 100%;
    min-height: 42px;
    justify-content: flex-start;
    padding: 0 14px;
    font-size: 13px;
  }

  .header-cta {
    justify-content: stretch;
  }

  .cta-button {
    width: 100%;
    max-width: none;
    min-height: 46px;
  }

  .hero-section {
    padding-top: 18px;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 18px;
  }

  .hero-copy,
  .hero-visual,
  .hero-side {
    width: 100%;
    max-width: 100%;
  }

  .hero-copy {
    padding-top: 18px;
    text-align: center;
  }

  .hero-heading {
    gap: 8px;
  }

  .hero-line {
    font-size: 2.45rem;
  }

  .hero-highlight {
    justify-content: center;
    gap: 12px;
  }

  .hero-highlight-line {
    width: 42px;
  }

  .hero-action {
    margin: 18px auto 0;
  }

  .hero-visual {
    min-height: 380px;
  }

  .hero-phone-motion {
    top: 8px;
  }

  .hero-phone-frame {
    width: 320px;
  }

  .hero-grid-mark-left {
    left: 6%;
    top: 22px;
  }

  .hero-grid-mark-right {
    right: 4%;
    top: 120px;
  }

  .hero-plus-right {
    right: 10%;
    top: 34px;
  }

  .hero-plus-bottom {
    left: 18%;
    top: auto;
    bottom: 8px;
  }

  .hero-side {
    display: grid;
    gap: 16px;
    justify-items: center;
    text-align: center;
    margin-top: -82px;
  }

  .hero-note,
  .hero-proof {
    width: min(100%, 320px);
  }

  .hero-note {
    padding-top: 0;
  }

  .hero-note-plus {
    display: none;
  }

  .hero-proof {
    align-items: center;
  }

  .hero-proof-top {
    justify-content: center;
  }

  .hero-band {
    margin-top: 12px;
    min-height: 300px;
    padding: 88px 18px 18px;
    border-radius: 32px;
  }

  .hero-marquee {
    top: 26px;
  }

  .hero-marquee-track span {
    font-size: clamp(3.4rem, 17vw, 4.8rem);
  }

  .hero-band-divider {
    top: 138px;
  }

  .hero-band-content {
    padding-top: 26px;
  }

  .hero-band-content p {
    font-size: 13px;
  }

  .hero-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
  }

  .feature-promo {
    margin-top: 72px;
    min-height: auto;
    padding: 0 0 12px;
  }

  .feature-promo-content {
    max-width: 100%;
    padding: 0 8px;
  }

  .feature-promo-title {
    font-size: 2.2rem;
    line-height: 1.02;
  }

  .feature-card-pig,
  .feature-card-clock,
  .feature-card-crypto,
  .feature-card-cubes {
    display: none !important;
  }

  .feature-promo-caption {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
    justify-items: center;
  }

  .feature-promo-caption-line {
    display: none;
  }

  .feature-promo-caption p {
    max-width: 320px;
    font-size: 14px;
    text-align: center;
  }

  .feature-promo-action {
    margin-top: 24px;
    margin-left: auto;
    margin-right: auto;
  }

  .standout-section {
    margin-top: 34px;
  }

  .standout-heading {
    margin-top: 12px;
  }

  .standout-title {
    font-size: 2.2rem;
  }

  .standout-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 16px;
    margin-top: 28px;
  }

  .standout-card {
    min-height: auto !important;
    height: auto !important;
  }

  .standout-card-expense {
    min-height: 428px !important;
  }

  .standout-card-goals {
    min-height: 368px !important;
  }

  .standout-card-analytics {
    min-height: 248px !important;
  }

  .standout-card-app {
    min-height: 220px !important;
  }

  .expense-card-copy {
    top: 316px !important;
    left: 22px !important;
    right: 22px !important;
  }

  .expense-card-scene {
    height: 312px !important;
  }

  .standout-card-expense .expense-card-scene::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 40px;
    width: 2px;
    height: 54px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: rgba(86, 129, 241, 0.72);
    z-index: 1;
  }

  .expense-card-visual,
  .standout-card-expense .standout-card-image,
  .standout-card-expense .expense-card-image,
  .standout-card-expense img[src*="card"] {
    top: 92px !important;
    width: 212px !important;
    max-width: 212px !important;
  }

  .expense-card-icon-cart,
  .expense-card-icon-chart {
    left: 34px !important;
  }

  .expense-card-icon-card,
  .expense-card-icon-lock {
    right: 34px !important;
  }

  .expense-card-icon-cart,
  .expense-card-icon-card {
    top: 84px !important;
  }

  .expense-card-icon-chart,
  .expense-card-icon-lock {
    top: 232px !important;
  }

  .expense-card-icon-globe {
    top: 242px !important;
  }

  .standout-card-goals .standout-copy,
  .standout-card-analytics .standout-copy {
    max-width: 100% !important;
  }

  .standout-card-goals .standout-copy {
    width: calc(100% - 44px) !important;
    max-width: none !important;
  }

  .standout-card-goals .standout-copy p {
    max-width: none !important;
  }

  .goal-stack {
    width: min(100%, 310px) !important;
    top: 58% !important;
  }

  .analytics-chart-card {
    left: 50% !important;
    right: auto !important;
    top: 58% !important;
    transform: translateX(-50%) rotate(10deg) !important;
    width: 190px !important;
  }

  .more-features-section {
    margin-top: 12px;
    padding-bottom: 0;
  }

  .more-features-title {
    font-size: 2.3rem;
    line-height: 1.04;
  }

  .more-features-cards {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
  }

  .mini-feature-card {
    grid-column: auto !important;
  }

  .more-features-phone-wrap {
    min-height: 340px;
    margin-top: 10px;
  }

  .more-features-ghost {
    top: 148px;
    font-size: 3.8rem;
  }

  .more-features-ghost-left {
    left: -8px;
  }

  .more-features-ghost-right {
    right: -8px;
  }

  .more-features-phone {
    width: min(280px, 82vw);
    bottom: -266px;
    border-radius: 54px 54px 0 0;
  }

  .more-features-phone-screen {
    transform: translate(-4px, 30px) scale(0.94);
  }

  .more-features-phone-overlay {
    top: 48%;
    height: 13%;
  }

  .stats-section {
    margin-top: 72px;
  }

  .stats-title {
    font-size: 2.25rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .stats-grid .stats-pill:nth-child(1),
  .stats-grid .stats-pill:nth-child(3),
  .stats-grid .stats-pill:nth-child(4),
  .stats-grid .stats-pill:nth-child(5),
  .stats-grid .stats-pill:nth-child(6) {
    width: 100%;
    justify-self: stretch;
  }

  .stats-grid .stats-pill:nth-child(1),
  .stats-grid .stats-pill:nth-child(3),
  .stats-grid .stats-pill:nth-child(5) {
    display: none;
  }

  .stats-pill {
    min-height: 112px;
  }

  .stats-highlight {
    justify-content: center;
    text-align: center;
    padding: 0 18px;
  }

  .stats-grid .stats-pill:nth-child(4),
  .stats-grid .stats-pill:nth-child(6) {
    padding: 0 22px;
  }

  .testimonials-section {
    margin-top: 74px;
  }

  .testimonials-badge {
    display: none;
  }

  .testimonials-heading h2 {
    font-size: 2.5rem;
  }

  .testimonials-intro {
    align-items: center;
    text-align: center;
  }

  .testimonials-rating {
    margin-top: 22px;
    justify-content: center;
  }

  .testimonials-marquee {
    display: flex;
    gap: 14px;
    min-height: auto;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 4px 10px;
    mask-image: none;
    -webkit-mask-image: none;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
  }

  .testimonials-marquee::-webkit-scrollbar {
    display: none;
  }

  .testimonials-marquee.is-dragging {
    cursor: grabbing;
    user-select: none;
  }

  .testimonials-column {
    display: contents;
    height: auto;
  }

  .testimonials-track {
    display: contents;
    animation: none !important;
  }

  .testimonials-column .testimonial-card {
    display: flex;
    flex: 0 0 86%;
    scroll-snap-align: center;
  }

  .testimonials-column .testimonial-card[aria-hidden="true"] {
    display: none;
  }

  .testimonial-card {
    min-height: 338px;
    padding: 28px 22px 26px;
    border-radius: 22px;
  }

  .testimonial-avatar {
    width: 64px;
    height: 64px;
    font-size: 20px;
  }

  .testimonial-card h3 {
    margin-top: 18px;
    font-size: 18px;
  }

  .testimonial-place {
    font-size: 13px;
  }

  .testimonial-stars {
    margin-top: 26px;
    font-size: 16px;
  }

  .testimonial-card p {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.5;
  }

  .cta-section {
    margin-top: 74px;
  }

  .cta-block {
    min-height: 380px;
    border-radius: 26px;
  }

  .cta-copy {
    min-height: 380px;
    max-width: 320px;
    padding: 30px 18px 34px;
  }

  .cta-copy h2 {
    font-size: 2rem;
  }

  .cta-copy p {
    max-width: 280px;
    margin-top: 14px;
    font-size: 13px;
  }

  .cta-center-button {
    min-width: 138px;
    min-height: 42px;
    margin-top: 18px;
    font-size: 15px;
  }

  .cta-side-image {
    width: 124px;
    bottom: -18px;
    opacity: 0.8;
  }

  .cta-side-image-left {
    left: 4px;
  }

  .cta-side-image-right {
    right: 4px;
  }

  .site-footer {
    margin-top: 58px;
  }

  .site-footer-content {
    gap: 18px;
    padding-top: 24px;
  }

  .site-footer-copy {
    max-width: 320px;
  }
}

@media (min-width: 641px) and (max-width: 980px) {
  .page-shell {
    padding: 10px 18px 28px;
  }

  .site-header {
    position: relative;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: start;
    padding: 6px 0 0;
  }

  .brand {
    justify-self: start;
    align-self: start;
  }

  .mobile-nav-toggle {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-flex;
  }

  .main-nav,
  .header-cta {
    grid-column: 1 / -1;
    width: 100%;
    display: none;
  }

  .nav-pill-lang {
    margin-left: 0;
    justify-content: flex-start;
  }

  .lang-switcher {
    min-width: 78px;
  }

  .lang-switcher-current {
    min-width: 78px;
    height: 36px;
    padding: 0 12px;
    font-size: 12px;
  }

  .lang-switcher-menu {
    top: 100%;
    left: 0;
    right: auto;
    padding: 8px 6px 6px;
    gap: 4px;
  }

  .lang-switcher-button {
    height: 34px;
    padding: 0 12px;
  }

  .site-header.is-open .main-nav,
  .site-header.is-open .header-cta {
    display: flex;
  }

  .site-header.is-open .main-nav {
    margin-top: 6px;
  }

  .main-nav {
    justify-content: stretch;
  }

  .nav-pill {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
    border-radius: 28px;
  }

  .nav-link {
    width: 100%;
    min-height: 42px;
    justify-content: flex-start;
    padding: 0 14px;
  }

  .header-cta {
    justify-content: stretch;
  }

  .cta-button {
    width: 100%;
    max-width: none;
    min-height: 48px;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: auto;
  }

  .hero-copy,
  .hero-visual,
  .hero-side {
    width: 100%;
    max-width: 100%;
  }

  .hero-copy {
    padding-top: 20px;
    text-align: center;
  }

  .hero-highlight {
    justify-content: center;
  }

  .hero-action {
    margin: 22px auto 0;
  }

  .hero-visual {
    min-height: 390px;
  }

  .hero-phone-frame {
    width: 390px;
  }

  .hero-side {
    display: grid;
    gap: 18px;
    justify-items: center;
    text-align: center;
    margin-top: -118px;
  }

  .hero-note-plus {
    display: none;
  }

  .hero-note,
  .hero-proof {
    width: min(100%, 420px);
  }

  .hero-proof-top {
    justify-content: center;
  }

  .hero-band {
    min-height: 370px;
    padding: 104px 22px 26px;
  }

  .hero-band-content {
    padding-top: 18px;
  }

  .hero-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-promo {
    margin-top: 0;
    min-height: auto;
    padding-bottom: 12px;
  }

  .feature-card-pig,
  .feature-card-clock,
  .feature-card-crypto,
  .feature-card-cubes {
    display: none !important;
  }

  .feature-promo-content {
    max-width: 720px;
  }

  .feature-promo-title {
    font-size: 3rem;
  }

  .feature-promo-caption {
    grid-template-columns: 48px 1fr 48px;
    margin-top: 28px;
  }

  .feature-promo-caption p {
    max-width: 540px;
    text-align: center;
  }

  .feature-promo-action {
    margin-left: auto;
    margin-right: auto;
  }

  .standout-section {
    margin-top: 42px;
  }

  .standout-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 18px;
  }

  .standout-card-expense {
    min-height: 450px !important;
  }

  .standout-card-goals {
    min-height: 500px !important;
  }

  .standout-card-analytics {
    min-height: 270px !important;
  }

  .standout-card-app {
    min-height: 240px !important;
  }

  .standout-card-goals .standout-copy {
    width: calc(100% - 12px) !important;
    max-width: none !important;
    padding: 22px 8px 0 18px !important;
  }

  .standout-card-goals .standout-copy p {
    max-width: none !important;
    font-size: 12px !important;
    line-height: 1.38 !important;
  }

  .goal-stack {
    top: 81% !important;
    width: calc(100% - 42px) !important;
  }

  .more-features-section {
    margin-top: 28px;
  }

  .more-features-cards {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
  }

  .more-features-phone-wrap {
    min-height: 430px;
  }

  .more-features-phone {
    width: min(320px, 58vw);
    bottom: -220px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid .stats-pill:nth-child(1),
  .stats-grid .stats-pill:nth-child(3),
  .stats-grid .stats-pill:nth-child(5) {
    display: none;
  }

  .stats-grid .stats-pill:nth-child(4),
  .stats-grid .stats-pill:nth-child(6) {
    width: 100%;
    justify-self: stretch;
  }

  .testimonials-badge {
    display: none;
  }

  .testimonials-section {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .testimonials-intro {
    min-height: auto;
    padding: 0;
    align-items: center;
    text-align: center;
  }

  .testimonials-rating {
    margin-top: 20px;
    justify-content: center;
  }

  .testimonials-marquee {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    min-height: 560px;
    overflow: hidden;
    padding: 6px 0 0;
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.92) 10%, rgba(0, 0, 0, 0.92) 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.92) 10%, rgba(0, 0, 0, 0.92) 90%, transparent 100%);
  }

  .testimonials-column {
    display: block;
    height: 560px;
    overflow: hidden;
  }

  .testimonials-track {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .testimonials-column .testimonial-card {
    display: flex;
    flex: 0 0 auto;
  }

  .testimonial-card {
    min-height: 220px;
    padding: 24px 20px;
  }

  .cta-section {
    margin-top: 92px;
  }

  .cta-block {
    min-height: 500px;
    border-radius: 32px;
  }

  .cta-copy {
    min-height: 500px;
    max-width: 520px;
    padding: 48px 22px 44px;
  }

  .cta-copy h2 {
    font-size: 2.9rem;
  }

  .cta-side-image {
    width: 180px;
    bottom: -28px;
    opacity: 0.86;
  }

  .cta-side-image-left {
    left: 24px;
  }

  .cta-side-image-right {
    right: 24px;
  }

  .site-footer-content {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 22px;
  }
}

@media (max-width: 640px) {
  .testimonials-marquee.is-mobile-slider {
    display: block !important;
    overflow: hidden !important;
    min-height: auto !important;
    padding: 6px 6px 12px !important;
    mask-image: none !important;
    -webkit-mask-image: none !important;
    scrollbar-width: none;
    touch-action: pan-x;
    cursor: grab;
    user-select: none;
    -webkit-overflow-scrolling: touch;
  }

  .testimonials-marquee.is-mobile-slider::-webkit-scrollbar {
    display: none;
  }

  .testimonials-marquee.is-mobile-slider .testimonials-column {
    display: none !important;
  }

  .testimonials-track-mobile {
    display: flex;
    gap: 18px;
    width: 100%;
    will-change: transform;
  }

  .testimonials-track-mobile .testimonial-card {
    flex: 0 0 calc(100% - 12px);
  }
}

@media (max-width: 980px) {
  .standout-card-goals {
    min-height: 360px !important;
  }

  .standout-card-goals .standout-copy {
    width: calc(100% - 20px) !important;
    max-width: none !important;
    padding: 22px 10px 0 18px !important;
  }

  .standout-card-goals .standout-copy p {
    max-width: none !important;
    font-size: 12px !important;
    line-height: 1.36 !important;
  }

  .goal-stack {
    top: 60% !important;
    bottom: auto !important;
    width: calc(100% - 54px) !important;
  }

  .standout-card-goals .goal-card {
    grid-template-columns: 52px 1fr auto !important;
    gap: 12px !important;
    padding: 12px 14px !important;
  }
}
