:root {
  --background: #f2f5ff;
  --surface: #ffffff;
  --border: #d7e2ff;
  --border-strong: #e2e8f0;
  --primary: #1f3bcb;
  --primary-dark: #0b1e6d;
  --primary-soft: #eef2ff;
  --text: #0f172a;
  --text-soft: #334155;
  --text-subtle: #475569;
  --muted: #64748b;
  --info-soft: #dbeafe;
  --success: #047857;
  --success-soft: #ecfdf3;
  --warning: #b45309;
  --warning-soft: #fff9ec;
  --amber: #f59e0b;
  --shadow-card: 0 18px 48px rgba(11, 30, 109, 0.12);
  --shadow-soft: 0 12px 36px rgba(11, 30, 109, 0.07);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(242, 245, 255, 0.96), rgba(255, 255, 255, 0.98) 42%, rgba(242, 245, 255, 0.9)),
    radial-gradient(circle at 16px 16px, rgba(31, 59, 203, 0.08) 1px, transparent 1.4px);
  background-size: auto, 32px 32px;
  color: var(--text);
  font-family: "TikTok Sans", "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

button,
input,
textarea {
  font: inherit;
  letter-spacing: 0;
}

::selection {
  background: rgba(31, 59, 203, 0.16);
  color: var(--primary-dark);
}

:focus-visible {
  outline: 3px solid rgba(31, 59, 203, 0.32);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 100;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--primary-dark);
  color: #fff;
  padding: 10px 16px;
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(215, 226, 255, 0);
  background: rgba(242, 245, 255, 0.78);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(215, 226, 255, 0.88);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 28px rgba(11, 30, 109, 0.06);
}

.nav-inner {
  width: min(var(--max-width), calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  color: var(--primary-dark);
  font-weight: 800;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand span {
  font-size: 1.02rem;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.nav-link {
  border-radius: 999px;
  color: var(--text-subtle);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1;
  padding: 11px 12px;
  transition: background 180ms ease, color 180ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  background: var(--primary-soft);
  color: var(--primary);
}

.nav-lang {
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--primary-dark);
  font-size: 0.9rem;
  font-weight: 700;
  margin-left: 6px;
  padding: 10px 12px;
}

.nav-lang-switch {
  position: relative;
  margin-left: 6px;
}

.nav-lang-switch summary {
  list-style: none;
}

.nav-lang-switch summary::-webkit-details-marker {
  display: none;
}

.nav-lang-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(31, 59, 203, 0.18);
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(238, 242, 255, 0.92));
  color: var(--primary-dark);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
  padding: 0;
  overflow: hidden;
}

.nav-lang-trigger:hover,
.nav-lang-switch[open] .nav-lang-trigger {
  background: linear-gradient(145deg, rgba(31, 59, 203, 0.14), rgba(31, 59, 203, 0.08));
  border-color: rgba(31, 59, 203, 0.26);
  box-shadow: 0 12px 24px rgba(31, 59, 203, 0.12);
}

.nav-lang-trigger:focus-visible {
  transform: translateY(-1px);
}

.nav-lang-icon {
  width: 18px;
  height: 18px;
  display: block;
  background: center / contain no-repeat url("https://img.icons8.com/ios-glyphs/24/1f3bcb/language.png");
}

.nav-lang-trigger-label {
  display: none;
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.nav-lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 25;
  display: none;
  min-width: 182px;
  padding: 12px;
  border: 1px solid rgba(215, 226, 255, 0.95);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(241, 245, 255, 0.98)),
    var(--surface);
  box-shadow: 0 18px 44px rgba(11, 30, 109, 0.16);
}

.nav-lang-switch[open] .nav-lang-menu {
  display: grid;
  gap: 8px;
}

.nav-lang-menu a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  color: var(--primary-dark);
  font-size: 0.94rem;
  font-weight: 800;
}

.nav-lang-menu a:hover,
.nav-lang-menu a[aria-current="page"] {
  background: rgba(31, 59, 203, 0.08);
  color: var(--primary);
}

.nav-cta,
.btn-primary,
.btn-secondary,
.btn-soft {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-cta,
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 14px 26px rgba(31, 59, 203, 0.22);
}

.nav-cta {
  min-height: 42px;
  margin-left: 6px;
  padding: 0 18px;
  font-size: 0.9rem;
}

.btn-primary,
.btn-secondary,
.btn-soft {
  padding: 0 22px;
}

.btn-secondary {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.86);
  color: var(--primary-dark);
}

.btn-soft {
  border: 1px solid rgba(31, 59, 203, 0.16);
  background: var(--primary-soft);
  color: var(--primary);
}

.nav-cta:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-soft:hover {
  transform: translateY(-2px);
}

.btn-primary:hover,
.nav-cta:hover {
  box-shadow: 0 18px 34px rgba(31, 59, 203, 0.28);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary-dark);
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span::before {
  transform: translateY(-6px);
}

.menu-toggle span::after {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span::before {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span::after {
  transform: translateY(-2px) rotate(-90deg);
}

.section-shell {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
}

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

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

.band-white {
  background: rgba(255, 255, 255, 0.86);
}

.band-blue {
  background: rgba(238, 242, 255, 0.72);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(31, 59, 203, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 8px 12px;
}

.section-title {
  max-width: 760px;
  color: var(--primary-dark);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.02;
  margin-top: 18px;
}

.section-copy {
  max-width: 650px;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-top: 16px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 36px;
}

.section-heading > div:first-child {
  min-width: 0;
}

.section-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  width: min(306px, 100%);
}

.section-badge {
  display: inline-flex;
  width: 88px;
  height: 88px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(31, 59, 203, 0.14);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(238, 242, 255, 0.88)),
    var(--primary-soft);
  box-shadow: 0 18px 42px rgba(11, 30, 109, 0.13);
}

.section-badge img {
  width: 38px;
  height: 38px;
}

.section-badge.is-primary {
  background: linear-gradient(145deg, #eef2ff, #dbeafe);
}

.section-badge.is-success {
  border-color: rgba(4, 120, 87, 0.16);
  background: linear-gradient(145deg, #ecfdf3, #dbeafe);
}

.section-badge.is-accent {
  border-color: rgba(245, 158, 11, 0.2);
  background: linear-gradient(145deg, #fff9ec, #eef2ff);
}

.section-badges .section-badge:nth-child(2) {
  transform: translateY(18px);
}

.hero-section {
  position: relative;
  overflow: hidden;
  --hero-x: 68%;
  --hero-y: 38%;
  padding: 84px 0 68px;
}

.hero-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(31, 59, 203, 0.09), transparent 34%),
    linear-gradient(295deg, rgba(245, 158, 11, 0.12), transparent 30%);
  content: "";
}

.hero-section::after {
  position: absolute;
  inset: auto -10% -22% -10%;
  height: 42%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.62) 72%, rgba(255, 255, 255, 0.9));
  content: "";
  z-index: 1;
}

.hero-abstract {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.hero-tile-field {
  position: absolute;
  inset: -74px -58px -44px;
  opacity: 0.98;
  perspective: 820px;
  transform-style: preserve-3d;
  contain: layout style paint;
}

.hero-tile {
  position: absolute;
  width: var(--tile-size, 118px);
  height: var(--tile-size, 118px);
  overflow: hidden;
  border: 1.5px solid rgba(31, 59, 203, 0.2);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.42), rgba(219, 234, 254, 0.66)),
    linear-gradient(135deg, rgba(31, 59, 203, 0.2), rgba(4, 120, 87, 0.08));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    inset 0 -1px 0 rgba(31, 59, 203, 0.08),
    0 14px 30px rgba(31, 59, 203, 0.08);
  opacity: 0.62;
  filter: saturate(1.25) contrast(1.08);
  transform: translate3d(0, 0, 0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition:
    transform 70ms linear,
    opacity 70ms linear,
    border-color 70ms linear;
}

.hero-tile::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.92), transparent 30%),
    linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, 0.44) 50%, transparent 62%),
    repeating-linear-gradient(135deg, transparent 0 14px, rgba(31, 59, 203, 0.06) 14px 15px);
  content: "";
  opacity: 0;
  transition: opacity 70ms linear;
}

.hero-tile::after {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(31, 59, 203, 0.15);
  border-radius: 13px;
  content: "";
}

.hero-tile.is-active {
  border-color: rgba(31, 59, 203, 0.42);
  opacity: 0.96;
  will-change: transform;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(31, 59, 203, 0.14),
    0 18px 42px rgba(31, 59, 203, 0.16);
}

.hero-tile.is-active::before {
  opacity: 0.88;
}

.hero-cursor-field {
  position: absolute;
  left: var(--hero-x);
  top: var(--hero-y);
  width: 560px;
  height: 560px;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle, rgba(31, 59, 203, 0.22), rgba(31, 59, 203, 0.08) 38%, transparent 68%),
    radial-gradient(circle at 72% 28%, rgba(4, 120, 87, 0.14), transparent 44%),
    radial-gradient(circle at 28% 70%, rgba(245, 158, 11, 0.12), transparent 40%);
  filter: blur(14px);
  opacity: 0.68;
  transition: opacity 220ms ease;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: 58px;
}

.hero-title {
  color: var(--primary-dark);
  font-size: clamp(4.1rem, 10vw, 8.8rem);
  font-weight: 900;
  line-height: 0.86;
  margin-top: 18px;
}

.hero-line {
  max-width: 700px;
  color: var(--text-soft);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-weight: 500;
  line-height: 1.35;
  margin-top: 22px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.hero-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 612px;
}

.hero-preview-frame {
  position: relative;
  isolation: isolate;
  width: clamp(290px, 31vw, 360px);
  margin: 0;
  border: 0;
  background: transparent;
  padding: 0;
  transform: rotate(-5deg) translateY(6px);
  transform-origin: center;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-preview-frame:hover {
  transform: rotate(-5deg) translateY(6px) scale(1.10);
  will-change: transform;
}

.hero-preview-frame::before,
.hero-preview-frame::after {
  position: absolute;
  border-radius: 28px;
  content: "";
  z-index: -1;
}

.hero-preview-frame::before {
  top: -18px;
  right: -24px;
  width: 148px;
  height: 74px;
  border: 1px solid rgba(245, 158, 11, 0.22);
  background:
    linear-gradient(145deg, rgba(31, 59, 203, 0.98), rgba(31, 59, 203, 0.74)),
    linear-gradient(135deg, rgba(245, 158, 11, 0.22), rgba(255, 255, 255, 0));
  box-shadow: 0 18px 36px rgba(31, 59, 203, 0.12);
  border-radius: 16px;
  transform: none;
}

.hero-preview-frame::after {
  left: -24px;
  bottom: -20px;
  width: 168px;
  height: 84px;
  border: 1px solid rgba(31, 59, 203, 0.16);
  background:
    linear-gradient(145deg, rgba(31, 59, 203, 0.92), rgba(11, 30, 109, 0.72)),
    linear-gradient(135deg, rgba(245, 158, 11, 0.16), rgba(255, 255, 255, 0));
  box-shadow: 0 18px 36px rgba(31, 59, 203, 0.12);
  border-radius: 14px;
  transform: none;
}

.hero-preview-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
  object-fit: contain;
}

.phone-stage {
  position: relative;
  display: grid;
  min-height: 612px;
  place-items: center;
}

.phone-shell {
  position: relative;
  width: min(334px, 86vw);
  border: 1px solid rgba(11, 30, 109, 0.16);
  border-radius: 38px;
  background: linear-gradient(145deg, #08184f, #17378d);
  box-shadow: 0 28px 74px rgba(11, 30, 109, 0.27);
  padding: 12px;
}

.phone-shell::before {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 86px;
  height: 20px;
  transform: translateX(-50%);
  border-radius: 0 0 18px 18px;
  background: #07123c;
  content: "";
  z-index: 2;
}

.phone-screen {
  min-height: 648px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--background);
  padding: 30px 16px 18px;
}

.phone-overlap {
  position: absolute;
  right: -6px;
  bottom: 28px;
  width: 212px;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-card);
  padding: 14px;
}

.phone-overlap .mini-title {
  color: var(--primary-dark);
  font-size: 0.86rem;
  font-weight: 800;
}

.phone-overlap .mini-value {
  color: var(--success);
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1.2;
  margin-top: 8px;
}

.route-line {
  position: absolute;
  left: 4px;
  top: 56px;
  width: 118px;
  height: 118px;
  border-top: 2px solid rgba(245, 158, 11, 0.42);
  border-left: 2px solid rgba(245, 158, 11, 0.42);
  border-radius: 20px 0 0 0;
}

.app-card {
  border: 1px solid rgba(215, 226, 255, 0.96);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(11, 30, 109, 0.06);
}

.app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.app-avatar {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--primary), var(--amber));
}

.app-logo-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-logo-row img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.app-logo-row strong {
  color: var(--primary-dark);
  font-size: 0.9rem;
}

.app-filter-row {
  display: flex;
  gap: 8px;
  margin: 14px 0;
  overflow: hidden;
}

.app-filter {
  min-width: max-content;
  border-radius: 999px;
  background: #fff;
  color: var(--text-subtle);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 8px 10px;
}

.app-filter.is-active {
  background: var(--primary);
  color: #fff;
}

.task-card {
  padding: 14px;
  margin-top: 10px;
}

.task-card-title,
.wallet-label,
.activity-label {
  color: var(--primary-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.task-meta,
.wallet-meta,
.activity-meta {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 600;
  margin-top: 4px;
}

.task-price {
  display: inline-flex;
  border-radius: 999px;
  background: var(--success-soft);
  color: var(--success);
  font-size: 0.76rem;
  font-weight: 900;
  margin-top: 10px;
  padding: 6px 9px;
}

.map-preview {
  position: relative;
  height: 120px;
  overflow: hidden;
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(31, 59, 203, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(31, 59, 203, 0.12) 1px, transparent 1px),
    #fff;
  background-size: 28px 28px;
  margin: 14px 0;
}

.map-pin {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 4px solid #fff;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 8px 16px rgba(31, 59, 203, 0.24);
}

.map-pin.one {
  left: 44px;
  top: 34px;
}

.map-pin.two {
  right: 48px;
  top: 62px;
  background: var(--amber);
}

.map-pin.three {
  left: 126px;
  bottom: 28px;
  background: var(--success);
}

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.proof-card,
.trust-card,
.role-card,
.faq-item,
.contact-card,
.strip-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.proof-card {
  min-height: 170px;
  padding: 22px;
}

.proof-value {
  color: var(--primary-dark);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  margin-top: 18px;
}

.proof-title,
.trust-title,
.role-title,
.feature-title {
  color: var(--primary-dark);
  font-weight: 800;
}

.proof-text,
.trust-text,
.role-text,
.feature-text {
  color: var(--text-soft);
  line-height: 1.65;
  margin-top: 8px;
}

.icon-frame {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(31, 59, 203, 0.12);
  border-radius: 14px;
  background: var(--primary-soft);
}

.icon-frame img {
  width: 24px;
  height: 24px;
}

.steps-list {
  display: grid;
  gap: 18px;
  margin-top: 46px;
}

.how-scroll {
  --how-steps: 4;
  position: relative;
  margin-top: 42px;
}

.how-mobile-stack {
  display: none;
}

.how-visual-sticky {
  position: sticky;
  top: 96px;
  z-index: 2;
  min-height: calc(100svh - 96px);
  display: grid;
  place-items: center;
}

.how-stage {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 1fr);
  align-items: center;
  gap: 34px;
}

.how-markers {
  display: grid;
  grid-template-rows: repeat(var(--how-steps), 100svh);
  pointer-events: none;
}

.how-marker {
  opacity: 0;
}

.how-copy-panel {
  width: min(100%, 560px);
  justify-self: start;
  border: 1px solid rgba(215, 226, 255, 0.9);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 42px rgba(11, 30, 109, 0.08);
  padding: 26px;
}

.how-copy-kicker {
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.how-copy-title {
  color: var(--primary-dark);
  font-size: clamp(1.9rem, 2.8vw, 3.15rem);
  font-weight: 900;
  line-height: 1.02;
  margin-top: 14px;
}

.how-copy-text {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 45ch;
}

.how-copy-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.how-copy-list li {
  color: var(--text-soft);
  display: flex;
  gap: 10px;
  line-height: 1.5;
}

.how-copy-list li::before {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--primary);
  content: "";
  margin-top: 8px;
}

.how-preview-shell {
  --how-scale: 0.94;
  --how-lift: 0px;
  --how-rotate: -4deg;
  position: relative;
  width: min(100%, 332px);
  aspect-ratio: 1750 / 3400;
  justify-self: end;
  transform: translateY(var(--how-lift)) scale(var(--how-scale)) rotate(var(--how-rotate));
  transform-origin: center;
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
  isolation: isolate;
  will-change: transform;
}

.how-preview-shell::before,
.how-preview-shell::after {
  position: absolute;
  content: "";
  z-index: 0;
  pointer-events: none;
  border-radius: 18px;
}

.how-preview-shell::before {
  top: 14px;
  right: -14px;
  width: 34%;
  height: 14%;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.96), rgba(31, 59, 203, 0.88));
  box-shadow: 0 18px 30px rgba(245, 158, 11, 0.18);
}

.how-preview-shell::after {
  left: -14px;
  bottom: 16px;
  width: 40%;
  height: 15%;
  background: linear-gradient(135deg, rgba(31, 59, 203, 0.96), rgba(59, 130, 246, 0.72));
  box-shadow: 0 18px 30px rgba(31, 59, 203, 0.16);
}

.how-image-view {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(10px) scale(0.965);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: none;
  z-index: 1;
}

.how-image-view.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.how-step-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 18px;
  filter: drop-shadow(0 20px 34px rgba(11, 30, 109, 0.16));
}

.step-row {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 22px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  padding: 20px;
  box-shadow: var(--shadow-soft);
}

.step-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--primary-dark);
  color: #fff;
  font-weight: 900;
}

.step-title {
  color: var(--primary-dark);
  font-size: 1.5rem;
  font-weight: 850;
  line-height: 1.08;
  margin-top: 18px;
}

.step-text {
  color: var(--text-soft);
  line-height: 1.7;
  margin-top: 10px;
}

.mini-screen {
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--background);
  padding: 14px;
}

.signup-preview {
  width: min(100%, 520px);
  justify-self: end;
  height: 200px;
  overflow: hidden;
  border-color: rgba(31, 59, 203, 0.18);
  background: #fff;
  box-shadow: 0 18px 40px rgba(11, 30, 109, 0.06);
  padding: 10px;
}

.signup-label {
  color: var(--primary-dark);
  font-size: 0.74rem;
  font-weight: 900;
  margin-bottom: 6px;
}

.signup-toggle-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.signup-toggle {
  min-height: 38px;
  border: 2px solid rgba(31, 59, 203, 0.9);
  border-radius: 14px;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef2ff;
  font-size: 0.72rem;
  font-weight: 900;
  padding: 6px 10px;
}

.signup-toggle.is-active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 14px 28px rgba(31, 59, 203, 0.18);
}

.signup-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 10px;
  margin-top: 10px;
}

.signup-field {
  display: grid;
  gap: 4px;
}

.signup-field-full {
  grid-column: 1 / -1;
}

.signup-field span {
  color: var(--primary-dark);
  font-size: 0.72rem;
  font-weight: 900;
}

.signup-input {
  min-height: 34px;
  display: flex;
  align-items: center;
  border: 2px solid rgba(31, 59, 203, 0.92);
  border-radius: 12px;
  background: #eff4ff;
  color: #70829f;
  font-size: 0.74rem;
  font-weight: 500;
  padding: 6px 10px;
}

.signup-note {
  display: none;
}

.signup-note a {
  color: var(--primary);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}

.mini-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.mini-headline {
  color: var(--primary-dark);
  font-size: 0.94rem;
  font-weight: 900;
}

.mini-pill {
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 900;
  padding: 6px 8px;
}

.mini-list {
  display: grid;
  gap: 8px;
}

.mini-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(215, 226, 255, 0.86);
  border-radius: 14px;
  background: #fff;
  padding: 10px;
}

.mini-row span {
  color: var(--text-soft);
  font-size: 0.8rem;
  font-weight: 750;
}

.mini-row strong {
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.progress-track {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #e9eefc;
}

.progress-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--success));
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 46px;
}

.role-card {
  display: grid;
  gap: 24px;
  padding: 26px;
}

.role-title {
  font-size: 1.8rem;
}

.role-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.role-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-soft);
  line-height: 1.55;
}

.role-list li::before {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--primary);
  content: "";
  margin-top: 8px;
}

.feature-stack {
  display: grid;
  gap: 24px;
  margin-top: 46px;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: 28px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.feature-band:nth-child(even) {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
}

.feature-band:nth-child(even) .feature-copy {
  order: 2;
}

.feature-title {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.1;
}

.feature-note {
  display: inline-flex;
  border-radius: 999px;
  background: var(--warning-soft);
  color: var(--warning);
  font-size: 0.78rem;
  font-weight: 900;
  margin-top: 16px;
  padding: 8px 10px;
}

.feature-shot {
  min-height: 260px;
}

.wallet-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.wallet-card {
  border-radius: 18px;
  background: #fff;
  padding: 16px;
}

.wallet-value {
  color: var(--primary-dark);
  font-size: 1.65rem;
  font-weight: 900;
  margin-top: 10px;
}

.notification-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--amber);
}

.chat-bubble {
  max-width: 84%;
  border-radius: 16px;
  background: #fff;
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.45;
  padding: 10px 12px;
}

.chat-bubble.is-me {
  margin-left: auto;
  background: var(--primary);
  color: #fff;
}

.product-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.strip-card {
  overflow: hidden;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.strip-art {
  margin: 0;
}

.strip-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  filter: drop-shadow(0 22px 48px rgba(11, 30, 109, 0.12));
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.trust-card {
  padding: 20px;
}

.trust-title {
  margin-top: 16px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: 36px;
  margin-top: 44px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  background: transparent;
  color: var(--primary-dark);
  cursor: pointer;
  font-weight: 850;
  line-height: 1.35;
  padding: 20px;
  text-align: left;
}

.faq-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--primary-soft);
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  content: "";
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.faq-item.is-open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: var(--text-soft);
  line-height: 1.65;
  text-align: justify;
  padding: 0 20px;
  transition: max-height 220ms ease, padding 220ms ease;
}

.faq-item.is-open .faq-answer {
  max-height: 220px;
  padding: 0 20px 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
  gap: 26px;
}

.contact-card {
  padding: 28px;
}

.contact-panel {
  border-radius: 24px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  padding: 32px;
  box-shadow: 0 24px 60px rgba(11, 30, 109, 0.22);
}

.contact-panel .section-kicker {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
}

.contact-panel h2 {
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  font-weight: 900;
  line-height: 1.02;
  margin-top: 20px;
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  text-align: justify;
  margin-top: 16px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.form-label {
  color: var(--primary-dark);
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 800;
}

.form-control {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  color: var(--text);
  padding: 13px 14px;
}

textarea.form-control {
  min-height: 118px;
  resize: vertical;
}

.form-message {
  min-height: 24px;
  color: var(--success);
  font-size: 0.9rem;
  font-weight: 800;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, #061039 0%, #07194d 54%, #0b1e6d 100%);
  color: #fff;
  padding: 78px 0 30px;
}

.site-footer::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(31, 59, 203, 0.22), transparent 42%),
    linear-gradient(300deg, rgba(245, 158, 11, 0.16), transparent 35%);
  content: "";
}

.footer-shell {
  position: relative;
  z-index: 1;
}

.footer-panel {
  border: 1px solid rgba(215, 226, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
}

.footer-contact-list,
.footer-data-list {
  color: rgba(255, 255, 255, 0.7);
}

.footer-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(0, 1.02fr) minmax(0, 0.86fr) minmax(0, 0.9fr);
  gap: 16px;
  margin-top: 16px;
}

.footer-panel {
  padding: 22px;
}

.footer-panel h2 {
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.footer-data-list,
.footer-contact-list {
  display: grid;
  gap: 12px;
}

.footer-data-list div,
.footer-contact-list li {
  display: grid;
  gap: 4px;
}

.footer-data-list dt,
.footer-contact-list span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.footer-data-list dd,
.footer-contact-list strong,
.footer-contact-list a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 720;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-contact-list a,
.footer-socials a {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 650;
}

.footer-links a:hover,
.footer-contact-list a:hover,
.footer-socials a:hover {
  color: #fff;
}

.footer-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-partners-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.footer-social-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.94rem;
  font-weight: 800;
  min-height: 44px;
  padding: 10px 14px;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.footer-social-badge:hover,
.footer-social-badge:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 14px 30px rgba(2, 10, 40, 0.2);
}

.footer-social-mark {
  display: none;
}

.footer-social-badge.is-facebook .footer-social-mark {
  background: rgba(24, 119, 242, 0.3);
}

.footer-social-badge.is-instagram .footer-social-mark {
  background: rgba(225, 48, 108, 0.3);
}

.footer-social-badge.is-tiktok .footer-social-mark {
  background: rgba(255, 255, 255, 0.18);
}

.footer-social-badge.is-linkedin .footer-social-mark {
  background: rgba(10, 102, 194, 0.3);
}

.footer-social-badge.is-email .footer-social-mark {
  background: rgba(245, 158, 11, 0.32);
}

.footer-partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  font-weight: 800;
  min-height: 42px;
  padding: 9px 14px;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.footer-partner-badge:hover,
.footer-partner-badge:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: 0 14px 30px rgba(2, 10, 40, 0.18);
}

.footer-partner-logo {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  object-fit: contain;
}

.footer-partner-badge.is-stripe .footer-partner-logo {
  width: 34px;
}

.footer-partner-badge.is-icons8 .footer-partner-logo {
  width: 24px;
  height: 24px;
  border-radius: 0;
  background: transparent;
}

.footer-social-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  object-fit: contain;
}

.launch-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    visibility 0s linear 220ms;
}

.launch-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 220ms ease,
    visibility 0s linear 0s;
}

.launch-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.6);
  backdrop-filter: blur(12px);
}

.launch-modal__panel {
  position: relative;
  width: min(100%, 520px);
  border: 1px solid rgba(215, 226, 255, 0.9);
  border-radius: 28px;
  background:
    radial-gradient(circle at top, rgba(31, 59, 203, 0.1), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 255, 0.98));
  box-shadow: 0 30px 80px rgba(3, 10, 32, 0.3);
  padding: 26px 24px 24px;
  transform: translateY(14px) scale(0.96);
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  isolation: isolate;
  display: grid;
  justify-items: center;
  text-align: center;
}

.launch-modal.is-open .launch-modal__panel {
  transform: translateY(0) scale(1);
}

.launch-modal__panel::before {
  position: absolute;
  inset: auto -36px -42px auto;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.16), transparent 62%);
  content: "";
  z-index: -1;
}

.launch-modal__close {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(31, 59, 203, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary-dark);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(31, 59, 203, 0.08);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.launch-modal__close:hover,
.launch-modal__close:focus-visible {
  transform: translateY(-1px);
  background: rgba(245, 248, 255, 0.98);
  box-shadow: 0 16px 28px rgba(31, 59, 203, 0.12);
}

.launch-modal__icon {
  width: 70px;
  height: 70px;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(31, 59, 203, 0.16), rgba(31, 59, 203, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 242, 255, 0.94));
  box-shadow: 0 18px 34px rgba(31, 59, 203, 0.12);
  display: grid;
  place-items: center;
}

.launch-modal__icon svg {
  width: 34px;
  height: 34px;
  fill: var(--primary);
}

.launch-modal__eyebrow {
  margin: 18px 0 0;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.launch-modal__title {
  margin: 12px 0 0;
  color: var(--primary-dark);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  line-height: 1.04;
}

.launch-modal__text {
  margin: 12px 0 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 42ch;
}

.launch-modal__action {
  margin-top: 22px;
  min-height: 46px;
  border: 1px solid rgba(31, 59, 203, 0.16);
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  padding: 0 18px;
  box-shadow: 0 16px 28px rgba(31, 59, 203, 0.22);
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.launch-modal__action:hover,
.launch-modal__action:focus-visible {
  transform: translateY(-2px);
  background: #2648de;
  box-shadow: 0 20px 34px rgba(31, 59, 203, 0.26);
}

.legal-page .section-pad {
  padding: 64px 0 84px;
}

.legal-page .section-shell {
  width: min(var(--max-width), calc(100% - 32px));
}

.legal-page .legal-main-card {
  border-radius: 28px;
  border: 1px solid rgba(215, 226, 255, 0.95);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.97)),
    var(--surface);
  box-shadow: 0 24px 64px rgba(11, 30, 109, 0.12);
}

.legal-panel {
  max-width: 920px;
  margin: 0 auto;
  padding: 28px;
  display: grid;
  gap: 18px;
  color: var(--text);
}

.legal-panel h1 {
  color: var(--primary-dark);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.06;
  margin: 4px 0 0;
}

.legal-panel h2 {
  color: var(--primary-dark);
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1.25;
  margin: 0;
}

.legal-panel p {
  color: var(--text-soft);
  line-height: 1.7;
  margin: 0;
  text-align: justify;
}

.legal-page .legal-panel li,
.legal-page .legal-panel dd,
.legal-page .legal-panel dt {
  color: var(--text-soft);
  text-align: justify;
}

.legal-page .legal-panel a {
  color: var(--primary);
}

.legal-page .legal-panel .btn-primary,
.legal-page .legal-panel .btn-secondary {
  width: auto;
  text-decoration: none;
}

.legal-page .legal-panel .btn-primary {
  color: #fff;
}

.legal-page .legal-panel .btn-secondary {
  color: var(--primary-dark);
}

.legal-meta {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.legal-section {
  display: grid;
  gap: 10px;
}

.legal-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
  color: var(--text-soft);
  line-height: 1.6;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.cookie-banner {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: auto;
  z-index: 90;
  width: min(360px, calc(100vw - 32px));
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 14px;
  border: 1px solid rgba(215, 226, 255, 0.94);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 245, 255, 0.96)),
    var(--surface);
  box-shadow: 0 24px 64px rgba(11, 30, 109, 0.18);
  padding: 16px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition:
    opacity 220ms ease,
    transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
    visibility 0s linear 0s;
  will-change: opacity, transform;
}

.cookie-banner.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(14px) scale(0.96);
  transition:
    opacity 220ms ease,
    transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
    visibility 0s linear 220ms;
}

.cookie-banner__content {
  min-width: 0;
}

.cookie-banner__title {
  color: var(--primary-dark);
  font-size: 1.05rem;
  font-weight: 900;
  margin: 0;
}

.cookie-banner__text {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 8px 0 0;
}

.cookie-banner__text a {
  color: var(--primary);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 0 0 auto;
  width: 100%;
  justify-content: flex-end;
}

.cookie-banner__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(31, 59, 203, 0.16);
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  padding: 0 18px;
  box-shadow: 0 14px 26px rgba(31, 59, 203, 0.2);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.cookie-banner__button:hover,
.cookie-banner__button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(31, 59, 203, 0.26);
}

.cookie-banner__button--secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary-dark);
  box-shadow: none;
}

.cookie-banner__button--secondary:hover,
.cookie-banner__button--secondary:focus-visible {
  background: rgba(239, 244, 255, 0.98);
  box-shadow: 0 12px 22px rgba(11, 30, 109, 0.08);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
  margin-top: 34px;
  padding-top: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

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

  .hero-cursor-field {
    left: 68%;
    top: 38%;
    opacity: 0.42;
  }
}

@media (max-width: 1060px) {
  .nav-links {
    gap: 2px;
  }

  .nav-link {
    font-size: 0.85rem;
    padding: 10px 9px;
  }

  .hero-grid,
  .contact-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .footer-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-media {
    min-height: auto;
  }

  .hero-preview-frame {
    width: min(100%, 330px);
  }

  .snapshot-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    inset: 72px 0 0 0;
    min-height: calc(100dvh - 72px);
    z-index: 85;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 10px;
    border-top: 1px solid rgba(215, 226, 255, 0.9);
    border-radius: 0;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.995), rgba(245, 248, 255, 0.99)),
      var(--surface);
    box-shadow: 0 24px 56px rgba(11, 30, 109, 0.18);
    padding: 18px 12px 22px;
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
    overflow: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

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

  .nav-link,
  .nav-lang-switch,
  .nav-cta {
    display: flex;
    width: 100%;
    margin-left: 0;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 48px;
    padding: 0 18px;
    box-sizing: border-box;
  }

  .nav-link {
    min-height: 52px;
    border: 1px solid rgba(31, 59, 203, 0.08);
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary-dark);
    border-radius: 16px;
    box-shadow: 0 1px 0 rgba(31, 59, 203, 0.03) inset;
  }

  .nav-link:hover,
  .nav-link.is-active {
    background: rgba(31, 59, 203, 0.08);
    color: var(--primary);
  }

  .nav-lang-trigger {
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 0 16px;
    border-color: rgba(31, 59, 203, 0.16);
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-dark);
    min-height: 52px;
    border-radius: 18px;
  }

  .nav-lang-switch {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-lang-icon {
    width: 19px;
    height: 19px;
    filter: none;
  }

  .nav-lang-trigger-label {
    display: inline-flex;
  }

  .nav-lang-menu {
    position: static;
    min-width: 0;
    width: 100%;
    margin-top: 10px;
    border-radius: 18px;
    border-color: rgba(215, 226, 255, 0.95);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  }

  .nav-lang-switch[open] .nav-lang-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .nav-lang-menu a {
    justify-content: center;
    text-align: center;
  }

  .hero-section {
    padding-top: 56px;
  }

  .hero-abstract {
    opacity: 0.72;
  }

  .hero-grid,
  .role-grid,
  .step-row,
  .feature-band,
  .feature-band:nth-child(even),
  .wallet-panel {
    grid-template-columns: 1fr;
  }

  .how-scroll {
    display: none;
  }

  .how-mobile-stack {
    display: grid;
    gap: 18px;
    margin-top: 32px;
  }

  .how-mobile-step {
    --mobile-tilt: 0deg;
    border: 1px solid rgba(215, 226, 255, 0.9);
    border-radius: 26px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 255, 0.98)),
      var(--surface);
    box-shadow: 0 16px 34px rgba(11, 30, 109, 0.08);
    padding: 18px;
    transform: perspective(1200px) rotateX(var(--mobile-tilt));
    transform-origin: center top;
    transition: transform 180ms ease;
  }

  .how-mobile-step:nth-child(even) {
    transform: perspective(1200px) rotateX(calc(var(--mobile-tilt) * -1));
  }

  .how-mobile-copy {
    display: grid;
    gap: 10px;
  }

  .how-mobile-image {
    display: block;
    width: 100%;
    margin-top: 14px;
    border-radius: 22px;
    filter: drop-shadow(0 18px 34px rgba(11, 30, 109, 0.12));
  }

  .how-stage {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 18px;
  }

  .how-copy-panel {
    width: 100%;
    justify-self: stretch;
  }

  .how-markers {
    display: none;
  }

  .how-preview-shell {
    width: min(100%, 286px);
    justify-self: center;
    margin-top: 4px;
  }

  .feature-band:nth-child(even) .feature-copy {
    order: 0;
  }

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

  .section-pad-tight {
    padding: 56px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 22px;
  }

  .section-badges {
    justify-content: flex-start;
  }

  .section-badges .section-badge:nth-child(2) {
    transform: none;
  }

  .phone-overlap {
    right: 10px;
    bottom: 2px;
  }
}

@media (max-width: 620px) {
  .nav-inner,
  .section-shell {
    width: min(calc(100% - 22px), var(--max-width));
  }

  .brand span {
    font-size: 0.96rem;
  }

  .hero-title {
    font-size: clamp(3.35rem, 18vw, 5.5rem);
  }

  .hero-tile-field {
    inset: -46px -38px -34px;
    perspective: 820px;
  }

  .hero-tile {
    opacity: 0.7;
  }

  .hero-cursor-field {
    width: 420px;
    height: 420px;
    opacity: 0.5;
  }

  .hero-line {
    font-size: 1.12rem;
  }

  .how-step-image {
    border-radius: 16px;
  }

  .signup-toggle-row,
  .signup-grid {
    grid-template-columns: 1fr;
  }

  .signup-toggle,
  .signup-input {
    min-height: 32px;
    border-radius: 12px;
  }

  .signup-preview {
    width: 100%;
    height: 200px;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary,
  .btn-soft {
    width: 100%;
  }

  .hero-preview-frame {
    width: min(100%, 300px);
  }

  .hero-preview-frame:hover {
    animation: none;
  }

  .hero-preview-frame::before {
    top: -12px;
    right: -14px;
    width: 108px;
    height: 54px;
  }

  .hero-preview-frame::after {
    left: -14px;
    bottom: -14px;
    width: 124px;
    height: 62px;
  }

  .hero-preview-image {
    border-radius: 24px;
  }

  .snapshot-grid,
  .trust-grid,
  .product-strip,
  .footer-info-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .proof-card,
  .trust-card,
  .role-card,
  .step-row,
  .feature-band,
  .contact-card,
  .contact-panel,
  .footer-panel {
    border-radius: 18px;
    padding: 20px;
  }

  .section-title {
    max-width: 100%;
    font-size: clamp(1.75rem, 8vw, 2.1rem);
    overflow-wrap: break-word;
  }

  .section-badges {
    gap: 10px;
  }

  .section-badge {
    width: 70px;
    height: 70px;
    border-radius: 22px;
  }

  .section-badge img {
    width: 31px;
    height: 31px;
  }

  .site-footer {
    padding-top: 56px;
  }

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

  .footer-trust-row,
  .footer-partners-row {
    gap: 8px;
  }

  .footer-social-badge,
  .footer-partner-badge {
    width: 100%;
    justify-content: flex-start;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    left: auto;
    width: min(340px, calc(100vw - 24px));
    padding: 14px;
    gap: 12px;
  }

  .cookie-banner__actions {
    width: 100%;
    justify-content: flex-end;
  }

  .cookie-banner__button {
    width: auto;
    flex: 1 1 0;
    min-width: 0;
  }

  .launch-modal {
    padding: 16px;
  }

  .launch-modal__panel {
    width: 100%;
    padding: 22px 18px 18px;
    border-radius: 24px;
  }

  .launch-modal__icon {
    width: 64px;
    height: 64px;
  }

  .launch-modal__icon svg {
    width: 30px;
    height: 30px;
  }

  .launch-modal__title {
    font-size: clamp(1.55rem, 7vw, 2.1rem);
  }

  .launch-modal__text {
    font-size: 0.95rem;
  }
}
