:root {
  --ink: #061c35;
  --ink-soft: #5f7182;
  --night: #001d35;
  --night-deep: #001426;
  --green: #10bf86;
  --green-dark: #05966a;
  --lime: #ccff3d;
  --mint: #dff9ee;
  --paper: #ffffff;
  --cloud: #f3f7f5;
  --line: rgba(6, 28, 53, 0.12);
  --shadow: 0 28px 70px rgba(0, 29, 53, 0.16);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  z-index: 30;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
}

.header-inner {
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.4px;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  box-shadow: 0 8px 20px rgba(13, 190, 133, 0.2);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 600;
  transition: color 180ms ease;
}

.main-nav a:hover {
  color: #fff;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  color: var(--night);
  background: var(--lime);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.header-cta span,
.text-link span,
.button span {
  display: inline-grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 29, 53, 0.1);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  border: 0;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: #fff;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 74% 35%, rgba(7, 151, 127, 0.42), transparent 28%),
    linear-gradient(135deg, #00192f 0%, #003b49 58%, #00634f 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 100px 100px;
  mask-image: linear-gradient(to right, #000 0%, #000 62%, transparent 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(5px);
}

.hero-glow-one {
  right: -180px;
  top: -180px;
  width: 540px;
  height: 540px;
  background: rgba(204, 255, 61, 0.08);
}

.hero-glow-two {
  left: 48%;
  bottom: 80px;
  width: 300px;
  height: 300px;
  background: rgba(0, 255, 188, 0.12);
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 770px;
  padding-top: 150px;
  padding-bottom: 92px;
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  align-items: center;
  gap: 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 19px;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.78);
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(204, 255, 61, 0.12);
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(54px, 6vw, 84px);
  line-height: 0.94;
  letter-spacing: -5px;
  text-transform: uppercase;
}

.hero h1 em {
  color: var(--lime);
  font-style: normal;
}

.hero-lead {
  max-width: 550px;
  margin: 28px 0 30px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  line-height: 1.65;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-button {
  min-width: 172px;
  min-height: 58px;
  padding: 9px 17px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  background: #04080c;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 13px;
  transition: transform 180ms ease, background 180ms ease;
}

.store-button:hover {
  transform: translateY(-3px);
  background: #111820;
}

.store-button svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.store-button span {
  display: flex;
  flex-direction: column;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.05;
}

.store-button small {
  margin-bottom: 3px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.4px;
}

.hero-proof {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.avatars {
  display: flex;
}

.avatars span {
  width: 34px;
  height: 34px;
  margin-left: -8px;
  display: grid;
  place-items: center;
  color: var(--night);
  background: var(--lime);
  border: 3px solid #023343;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 900;
}

.avatars span:first-child {
  margin-left: 0;
  background: #f9aa8f;
}

.avatars span:last-child {
  background: #b5d6ff;
}

.hero-proof > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-proof strong {
  font-size: 12px;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
}

.hero-proof b {
  color: var(--lime);
}

.hero-visual {
  position: relative;
  min-height: 570px;
}

.phone {
  position: absolute;
  overflow: hidden;
  border-radius: 38px;
  filter: drop-shadow(0 32px 42px rgba(0, 12, 24, 0.32));
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-main {
  z-index: 3;
  top: 22px;
  right: 78px;
  width: 286px;
  height: 613px;
  transform: rotate(2deg);
}

.phone-back {
  z-index: 1;
  top: 130px;
  left: 12px;
  width: 220px;
  height: 470px;
  opacity: 0.94;
  transform: rotate(-11deg);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(204, 255, 61, 0.18);
  border-radius: 50%;
}

.orbit-one {
  width: 500px;
  height: 500px;
  top: 48px;
  right: 5px;
}

.orbit-two {
  width: 355px;
  height: 355px;
  top: 118px;
  right: 76px;
}

.lime-card {
  position: absolute;
  z-index: 5;
  right: 2px;
  bottom: 20px;
  width: 205px;
  height: 132px;
  padding: 23px;
  color: var(--night);
  background: var(--lime);
  border-radius: 18px;
  box-shadow: 0 24px 40px rgba(0, 19, 36, 0.25);
  transform: rotate(-6deg);
}

.lime-card span,
.lime-card strong {
  display: block;
}

.lime-card span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
}

.lime-card strong {
  margin-top: 2px;
  font-size: 23px;
  letter-spacing: -1px;
}

.lime-card svg {
  position: absolute;
  right: 17px;
  bottom: 14px;
  width: 54px;
  height: 54px;
  fill: none;
  stroke: var(--night);
  stroke-width: 2;
}

.floating-note {
  position: absolute;
  z-index: 7;
  min-width: 178px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(0, 20, 36, 0.18);
  backdrop-filter: blur(10px);
}

.floating-note .note-icon {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  color: var(--green-dark);
  background: var(--mint);
  border-radius: 11px;
}

.floating-note svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.floating-note > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: #758291;
  font-size: 9px;
}

.floating-note b {
  color: var(--ink);
  font-size: 11px;
}

.note-private {
  top: 75px;
  right: -22px;
}

.note-fast {
  z-index: 8;
  left: 43px;
  bottom: 8px;
}

.partner-bar {
  position: relative;
  z-index: 8;
  color: #fff;
  background: rgba(0, 18, 34, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.partner-inner {
  min-height: 80px;
  display: grid;
  grid-template-columns: 1.8fr repeat(4, 1fr);
  align-items: center;
  gap: 20px;
}

.partner-inner > span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.stat {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.stat strong {
  font-size: 20px;
}

.stat small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  text-transform: uppercase;
}

.section {
  padding: 135px 0;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 100px;
}

.overview {
  background: #fff;
}

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

.soft-square {
  position: absolute;
  width: 470px;
  height: 470px;
  background:
    radial-gradient(circle at 50% 50%, #d9f7e8 0 28%, transparent 29%),
    linear-gradient(145deg, #eef3f0, #f8fbf9);
  border-radius: 44px;
}

.dashboard-panel {
  position: relative;
  z-index: 2;
  width: 370px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(6, 28, 53, 0.08);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  transform: rotate(-3deg);
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
}

.panel-top button {
  margin-left: auto;
  color: var(--ink-soft);
  background: none;
  border: 0;
  cursor: pointer;
}

.mini-logo {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 9px;
  font-weight: 900;
}

.balance-card {
  margin-top: 21px;
  padding: 24px;
  color: #fff;
  background: linear-gradient(135deg, #0fcb91, #0ca975);
  border-radius: 20px;
}

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

.balance-card small {
  opacity: 0.7;
  font-size: 8px;
  letter-spacing: 1.2px;
}

.balance-card strong {
  margin: 7px 0;
  font-size: 32px;
  letter-spacing: -1.2px;
}

.balance-card span {
  font-size: 10px;
}

.chart-card {
  margin-top: 15px;
  padding: 18px;
  background: #f6f8f7;
  border-radius: 18px;
}

.chart-title {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
}

.chart-title b {
  color: var(--ink-soft);
}

.bars {
  height: 120px;
  margin-top: 19px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.bars i {
  flex: 1;
  height: var(--h);
  background: linear-gradient(#ccff3d, #14bc85);
  border-radius: 7px 7px 3px 3px;
}

.mini-transaction {
  position: absolute;
  z-index: 4;
  right: 3px;
  bottom: 76px;
  min-width: 205px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 20px 45px rgba(6, 28, 53, 0.15);
}

.transaction-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--green-dark);
  background: var(--mint);
  border-radius: 12px;
  font-size: 18px;
  font-weight: 800;
}

.mini-transaction > span:last-child {
  display: flex;
  flex: 1;
  justify-content: space-between;
  gap: 15px;
}

.mini-transaction small {
  color: var(--ink-soft);
  font-size: 10px;
}

.mini-transaction b {
  color: var(--green-dark);
  font-size: 12px;
}

.section-copy h2,
.section-heading h2,
.trust-copy h2,
.download-copy h2 {
  margin: 0;
  font-size: clamp(42px, 4.8vw, 68px);
  line-height: 0.98;
  letter-spacing: -3.3px;
}

.section-copy > p,
.trust-copy > p,
.download-copy > p {
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.feature-stack {
  margin-top: 36px;
  display: grid;
  gap: 10px;
}

.feature-item {
  padding: 19px 21px;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.feature-item.active {
  background: var(--mint);
  border-color: transparent;
}

.feature-index {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--green-dark);
  background: #fff;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 900;
}

.feature-item h3 {
  margin: 1px 0 6px;
  font-size: 15px;
}

.feature-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.55;
}

.feature-showcase {
  background: var(--cloud);
}

.check-list {
  margin: 30px 0;
  padding: 0;
  display: grid;
  gap: 13px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #374c5c;
  font-size: 14px;
  font-weight: 600;
}

.check-list span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: var(--green-dark);
  background: var(--mint);
  border-radius: 50%;
  font-size: 12px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 800;
}

.text-link span {
  color: #fff;
  background: var(--ink);
}

.phone-stage {
  position: relative;
  min-height: 600px;
  background:
    linear-gradient(rgba(6, 28, 53, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 28, 53, 0.05) 1px, transparent 1px),
    #edf2ef;
  background-size: 65px 65px;
  border-radius: 42px;
}

.phone-stage .phone {
  width: 233px;
  height: 499px;
}

.tilted-left {
  z-index: 2;
  left: 48px;
  top: 57px;
  transform: rotate(-8deg);
}

.tilted-right {
  z-index: 3;
  right: 42px;
  top: 46px;
  transform: rotate(8deg);
}

.stage-card {
  position: absolute;
  z-index: 5;
  top: 48px;
  left: 28px;
  width: 156px;
  padding: 15px;
  color: #fff;
  background: var(--night);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 29, 53, 0.2);
}

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

.stage-card span,
.stage-card small {
  color: rgba(255, 255, 255, 0.56);
  font-size: 8px;
}

.stage-card strong {
  margin: 6px 0;
  font-size: 23px;
}

.stage-pill {
  position: absolute;
  z-index: 6;
  right: 25px;
  bottom: 30px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--night);
  background: var(--lime);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.stage-pill span {
  width: 8px;
  height: 8px;
  background: var(--green-dark);
  border-radius: 50%;
}

.trust-section {
  position: relative;
  overflow: hidden;
  padding: 125px 0;
  color: #fff;
  background:
    radial-gradient(circle at 35% 65%, rgba(14, 180, 130, 0.28), transparent 28%),
    linear-gradient(115deg, var(--night-deep), #003f43 80%, #00694d);
}

.trust-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
}

.trust-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 110px;
}

.trust-visual {
  position: relative;
  min-height: 565px;
}

.trust-phone {
  z-index: 2;
  left: 70px;
  top: 8px;
  width: 260px;
  height: 556px;
  transform: rotate(-5deg);
}

.secure-card {
  position: absolute;
  z-index: 5;
  right: 8px;
  bottom: 70px;
  width: 230px;
  padding: 24px;
  color: var(--night);
  background: var(--lime);
  border-radius: 22px;
  box-shadow: 0 26px 55px rgba(0, 12, 24, 0.24);
  transform: rotate(4deg);
}

.secure-shield {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--night);
  border-radius: 14px;
}

.secure-shield svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

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

.secure-card small {
  margin-top: 32px;
  font-size: 11px;
}

.secure-card strong {
  margin-top: 3px;
  font-size: 25px;
  letter-spacing: -1px;
}

.trust-copy h2 {
  max-width: 660px;
}

.trust-copy > p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.65);
}

.trust-points {
  margin: 34px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.trust-points span {
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 10px;
}

.trust-points b {
  color: #fff;
  font-size: 15px;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 13px 14px 13px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.button-lime {
  color: var(--night);
  background: var(--lime);
}

.services {
  background: #fff;
}

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

.section-heading.centered {
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 390px 300px;
  gap: 16px;
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  background: var(--cloud);
  border: 1px solid rgba(6, 28, 53, 0.05);
  border-radius: 24px;
}

.service-card.wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 25px;
}

.service-card.dark {
  color: #fff;
  background: var(--night);
}

.service-card.lime {
  color: var(--night);
  background: var(--lime);
}

.service-number {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  margin-bottom: 25px;
  color: var(--green-dark);
  background: #fff;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 900;
}

.service-card.dark .service-number {
  color: var(--night);
  background: var(--lime);
}

.service-card h3 {
  margin: 0;
  max-width: 330px;
  font-size: 29px;
  line-height: 1.05;
  letter-spacing: -1.5px;
}

.service-card p {
  max-width: 330px;
  margin: 15px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.6;
}

.service-card.dark p {
  color: rgba(255, 255, 255, 0.55);
}

.partner-demo {
  position: relative;
  min-height: 300px;
}

.person-card {
  position: absolute;
  z-index: 2;
  width: 115px;
  height: 135px;
  display: grid;
  place-items: center;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 18px 35px rgba(6, 28, 53, 0.12);
}

.person-card span {
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  background: var(--mint);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.person-card b {
  font-size: 11px;
}

.person-one {
  left: 15px;
  top: 38px;
  transform: rotate(-6deg);
}

.person-two {
  right: 2px;
  top: 75px;
  transform: rotate(7deg);
}

.connect-line {
  position: absolute;
  top: 115px;
  left: 105px;
  width: 170px;
  height: 2px;
  background: var(--green);
  transform: rotate(8deg);
}

.shared-total {
  position: absolute;
  z-index: 4;
  left: 105px;
  bottom: 25px;
  width: 170px;
  padding: 20px;
  color: #fff;
  background: var(--night);
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(6, 28, 53, 0.18);
}

.shared-total small,
.shared-total strong {
  display: block;
}

.shared-total small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
}

.shared-total strong {
  margin-top: 6px;
  font-size: 25px;
}

.donut {
  position: absolute;
  right: -28px;
  bottom: -36px;
  width: 210px;
  height: 210px;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--lime) 0 68%, #0d4057 68% 100%);
  border-radius: 50%;
}

.donut::after {
  content: "";
  position: absolute;
  width: 128px;
  height: 128px;
  background: var(--night);
  border-radius: 50%;
}

.donut span {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: 26px;
  font-weight: 900;
}

.donut small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 8px;
  text-transform: uppercase;
}

.offline-art {
  position: absolute;
  right: 25px;
  bottom: 20px;
  width: 110px;
  height: 110px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: var(--mint);
  border-radius: 28px;
  transform: rotate(7deg);
}

.offline-art svg {
  width: 65px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 5;
}

.service-card.lime a {
  position: absolute;
  left: 32px;
  bottom: 30px;
  font-size: 12px;
  font-weight: 900;
}

.image-card {
  padding: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #dce9e4, #eef5f1);
}

.image-card img {
  width: 178px;
  transform: translateY(55px) rotate(5deg);
  filter: drop-shadow(0 25px 25px rgba(6, 28, 53, 0.25));
}

.reviews-section {
  padding: 125px 0;
  background: var(--cloud);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.review-card {
  min-height: 310px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(6, 28, 53, 0.07);
  border-radius: 22px;
}

.review-card.featured {
  color: #fff;
  background: var(--night);
}

.stars {
  color: #ffb400;
  font-size: 13px;
  letter-spacing: 3px;
}

.review-card p {
  margin: 35px 0 30px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: -0.35px;
}

.reviewer {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--night);
  background: var(--lime);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
}

.reviewer div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reviewer strong {
  font-size: 11px;
}

.reviewer small {
  color: var(--ink-soft);
  font-size: 9px;
}

.review-card.featured .reviewer small {
  color: rgba(255, 255, 255, 0.48);
}

.download-section {
  padding: 110px 0;
}

.download-card {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  padding: 72px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 77% 38%, rgba(0, 201, 141, 0.28), transparent 30%),
    var(--night);
  border-radius: 34px;
}

.download-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to right, transparent, #000);
}

.download-copy {
  position: relative;
  z-index: 3;
}

.download-copy > p {
  max-width: 510px;
  color: rgba(255, 255, 255, 0.62);
}

.download-copy .store-row {
  margin-top: 30px;
}

.download-visual {
  position: relative;
  min-height: 440px;
}

.download-phone {
  position: absolute;
  overflow: hidden;
  border-radius: 35px;
  filter: drop-shadow(0 25px 30px rgba(0, 0, 0, 0.25));
}

.download-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.download-phone.back {
  top: 70px;
  right: 0;
  width: 210px;
  height: 450px;
  opacity: 0.75;
  transform: rotate(9deg);
}

.download-phone.front {
  z-index: 2;
  top: 5px;
  left: 40px;
  width: 245px;
  height: 525px;
  transform: rotate(-5deg);
}

.site-footer {
  padding: 75px 0 25px;
  color: #fff;
  background: #06111d;
}

.footer-top {
  padding-bottom: 65px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 70px;
}

.footer-brand p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 13px;
  line-height: 1.6;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-column strong {
  margin-bottom: 8px;
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

.footer-column a:hover {
  color: var(--lime);
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.32);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 9px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.65, 0.25, 1);
}

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

@media (max-width: 1080px) {
  .hero-inner {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .hero h1 {
    font-size: 61px;
  }

  .phone-main {
    right: 28px;
  }

  .phone-back {
    left: 0;
  }

  .split-layout,
  .trust-layout {
    gap: 60px;
  }

  .soft-square {
    width: 420px;
    height: 420px;
  }

  .phone-stage .phone {
    width: 205px;
    height: 438px;
  }

  .service-card h3 {
    font-size: 25px;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 36px, 680px);
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    z-index: 52;
    display: block;
    order: 3;
  }

  .menu-open .menu-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-open .menu-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 50;
    inset: 0;
    padding: 120px 30px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    background: var(--night);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .menu-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    font-size: 30px;
    font-weight: 800;
  }

  .site-header .brand {
    position: relative;
    z-index: 52;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 135px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    position: relative;
    z-index: 5;
  }

  .hero h1 {
    font-size: clamp(50px, 12vw, 72px);
  }

  .hero-visual {
    min-height: 630px;
    margin-top: 10px;
  }

  .phone-main {
    right: 16%;
  }

  .phone-back {
    left: 8%;
  }

  .note-private {
    right: 5%;
  }

  .partner-inner {
    padding: 25px 0;
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-inner > span {
    grid-column: 1 / -1;
  }

  .split-layout,
  .trust-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .reverse-mobile .section-copy {
    order: 2;
  }

  .section {
    padding: 95px 0;
  }

  .overview-visual {
    min-height: 520px;
  }

  .phone-stage {
    width: 100%;
  }

  .trust-copy {
    padding-bottom: 10px;
  }

  .trust-visual {
    min-height: 600px;
  }

  .trust-phone {
    left: 20%;
  }

  .secure-card {
    right: 14%;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .service-card {
    min-height: 330px;
  }

  .service-card.wide {
    grid-column: 1 / -1;
  }

  .image-card img {
    width: 190px;
  }

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

  .review-card {
    min-height: 250px;
  }

  .download-card {
    min-height: 860px;
    padding: 55px 40px;
    grid-template-columns: 1fr;
  }

  .download-visual {
    min-height: 480px;
  }

  .download-phone.front {
    left: 20%;
  }

  .download-phone.back {
    right: 17%;
  }

  .footer-top {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 45px;
  }

  .footer-column:last-child {
    grid-column: 2 / -1;
  }
}

@media (max-width: 580px) {
  .container {
    width: min(100% - 28px, 520px);
  }

  .header-inner {
    height: 78px;
  }

  .hero-inner {
    padding-top: 118px;
    padding-bottom: 55px;
  }

  .hero h1 {
    font-size: 49px;
    line-height: 0.96;
    letter-spacing: -3.4px;
  }

  .hero-lead {
    font-size: 15px;
  }

  .store-button {
    min-width: calc(50% - 6px);
    padding-left: 12px;
    padding-right: 12px;
  }

  .store-button span {
    font-size: 14px;
  }

  .store-button svg {
    width: 23px;
    height: 23px;
  }

  .hero-proof {
    align-items: flex-start;
  }

  .hero-visual {
    min-height: 510px;
    margin-top: 25px;
  }

  .phone-main {
    top: 5px;
    right: 8%;
    width: 215px;
    height: 460px;
  }

  .phone-back {
    top: 92px;
    left: 0;
    width: 160px;
    height: 343px;
  }

  .lime-card {
    right: 0;
    bottom: 0;
    width: 160px;
    height: 102px;
    padding: 17px;
  }

  .lime-card strong {
    font-size: 18px;
  }

  .lime-card svg {
    width: 40px;
    height: 40px;
  }

  .floating-note {
    min-width: 150px;
  }

  .note-private {
    top: 40px;
    right: -5px;
  }

  .note-fast {
    left: 5px;
    bottom: 3px;
  }

  .partner-inner {
    gap: 18px;
  }

  .stat {
    flex-direction: column;
    gap: 2px;
  }

  .section {
    padding: 78px 0;
  }

  .section-copy h2,
  .section-heading h2,
  .trust-copy h2,
  .download-copy h2 {
    font-size: 42px;
    letter-spacing: -2.5px;
  }

  .overview-visual {
    min-height: 460px;
  }

  .soft-square {
    width: 100%;
    height: 390px;
    border-radius: 30px;
  }

  .dashboard-panel {
    width: 88%;
    padding: 16px;
  }

  .mini-transaction {
    right: 0;
    bottom: 28px;
  }

  .phone-stage {
    min-height: 470px;
  }

  .phone-stage .phone {
    width: 165px;
    height: 353px;
  }

  .tilted-left {
    left: 22px;
    top: 65px;
  }

  .tilted-right {
    right: 20px;
    top: 58px;
  }

  .stage-card {
    top: 18px;
    left: 12px;
  }

  .trust-section {
    padding: 80px 0;
  }

  .trust-visual {
    min-height: 495px;
  }

  .trust-phone {
    left: 11%;
    width: 210px;
    height: 450px;
  }

  .secure-card {
    right: 1%;
    bottom: 20px;
    width: 185px;
  }

  .trust-points {
    grid-template-columns: 1fr;
  }

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

  .service-card,
  .service-card.wide {
    min-height: 350px;
    grid-column: auto;
  }

  .service-card.wide {
    grid-template-columns: 1fr;
    min-height: 640px;
  }

  .partner-demo {
    min-height: 300px;
  }

  .service-card.image-card {
    min-height: 350px;
  }

  .reviews-section {
    padding: 80px 0;
  }

  .download-section {
    padding: 28px 0 75px;
  }

  .download-card {
    min-height: 820px;
    padding: 45px 24px;
    border-radius: 26px;
  }

  .download-card .store-button {
    width: 100%;
  }

  .download-visual {
    min-height: 400px;
  }

  .download-phone.front {
    left: 7%;
    width: 195px;
    height: 418px;
  }

  .download-phone.back {
    right: 2%;
    width: 170px;
    height: 364px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px 20px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-column:last-child {
    grid-column: 1 / -1;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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