* {
  box-sizing: border-box;
}

:root {
  --accent: #19bc63;
  --accent2: #0ea152;
  --glow: rgba(25, 188, 99, 0.34);
  --ink: #0f1a14;
  --muted: #5a6b61;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: "Noto Sans SC", "Sora", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

::selection {
  background: rgba(25, 188, 99, 0.2);
}

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

@keyframes vl-floaty2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(12px); }
}

@keyframes vl-glow {
  0%, 100% { opacity: .55; transform: scale(1); }
  50% { opacity: .9; transform: scale(1.08); }
}

@keyframes vl-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.site-shell {
  position: relative;
  overflow-x: hidden;
  background: #fff;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  height: 70px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(16, 38, 24, .07);
  padding: 0 clamp(20px, 5vw, 56px);
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(18px);
}

.brand,
.footer-logo {
  display: flex;
  align-items: center;
  gap: 11px;
}

.brand-icon {
  display: flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 6px 18px var(--glow);
}

.brand-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-name {
  color: var(--ink);
  font-family: "Sora", sans-serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: .01em;
}

.brand-name span {
  color: #b4c2ba;
  font-weight: 500;
  margin: 0 8px;
}

.brand-name b {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-secondary {
  border: 1px solid rgba(16, 38, 24, .13);
  border-radius: 999px;
  padding: 9px 16px;
  color: #3a4a41;
  font-size: 14px;
  font-weight: 600;
}

.nav-primary,
.primary-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 8px 22px rgba(25, 188, 99, .32);
  font-weight: 700;
}

.nav-primary {
  padding: 10px 20px;
  font-size: 14px;
}

.primary-button {
  padding: 15px 28px;
  font-size: 16px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(120px, 16vh, 170px) clamp(20px, 5vw, 56px) clamp(60px, 9vh, 100px);
  background: linear-gradient(180deg, #f4fbf6 0%, #fff 62%);
}

.dot-grid,
.noise,
.glow,
.security-glow,
.download-glow {
  position: absolute;
  pointer-events: none;
}

.dot-grid {
  inset: 0;
  background-image: radial-gradient(circle at center, rgba(25, 188, 99, .1) 1px, transparent 1.4px);
  background-size: 34px 34px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 26%, #000 28%, transparent 72%);
}

.dot-grid.soft {
  background-image: radial-gradient(circle at 1px 1px, rgba(16, 80, 45, .06) 1px, transparent 1.6px);
}

.noise {
  inset: 0;
  opacity: .05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

.glow-a {
  top: -140px;
  right: 4%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, var(--glow), transparent 66%);
  animation: vl-glow 9s ease-in-out infinite;
}

.glow-b {
  bottom: -180px;
  left: -80px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(13, 178, 120, .2), transparent 70%);
}

.hero-inner,
.section-inner,
.download-inner,
.footer-inner,
.copyright {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(40px, 5vw, 72px);
}

.hero-copy {
  flex: 1 1 420px;
  min-width: 300px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
  border: 1px solid rgba(25, 188, 99, .28);
  border-radius: 999px;
  padding: 7px 15px;
  color: var(--accent2);
  background: rgba(25, 188, 99, .08);
  font-family: "Sora", sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

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

h1 {
  margin-bottom: 24px;
  color: #0c1711;
  font-family: "Sora", "Noto Sans SC", sans-serif;
  font-size: clamp(40px, 6.2vw, 72px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.04;
}

.hero-copy p {
  max-width: 520px;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.75;
}

.hero-actions,
.support-list,
.chat-head,
.message-card,
.chat-input,
.float-card {
  display: flex;
  align-items: center;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.ghost-button {
  border: 1px solid rgba(16, 38, 24, .15);
  border-radius: 999px;
  padding: 15px 26px;
  color: #1b2a22;
  background: #fff;
  font-size: 16px;
  font-weight: 600;
}

.support-list {
  flex-wrap: wrap;
  gap: 18px;
  color: #8a9a90;
  font-family: "Sora", sans-serif;
  font-size: 13px;
  letter-spacing: .04em;
}

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

.support-list i {
  opacity: .4;
  font-style: normal;
}

.hero-phone {
  position: relative;
  display: flex;
  flex: 1 1 360px;
  min-width: 300px;
  justify-content: center;
}

.phone-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow), transparent 64%);
  filter: blur(48px);
  transform: translate(-50%, -50%);
}

.phone {
  position: relative;
  width: 300px;
  flex-shrink: 0;
  border-radius: 46px;
  padding: 12px;
  background: linear-gradient(160deg, #fff, #eaf3ec);
  box-shadow: 0 50px 90px -28px rgba(16, 50, 30, .32), 0 0 0 1px rgba(16, 38, 24, .06);
}

.phone-screen {
  display: flex;
  height: 600px;
  flex-direction: column;
  overflow: hidden;
  border-radius: 36px;
  background: #f7fbf8;
}

.chat-head {
  gap: 11px;
  border-bottom: 1px solid rgba(16, 38, 24, .06);
  padding: 38px 16px 14px;
  background: linear-gradient(180deg, rgba(25, 188, 99, .1), transparent);
}

.avatar,
.message-card span {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(140deg, var(--accent), var(--accent2));
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

.chat-head div {
  flex: 1;
}

.chat-head strong,
.message-card strong {
  display: block;
  color: #15221b;
}

.chat-head strong {
  font-size: 14.5px;
}

.chat-head small {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--accent2);
  font-size: 11px;
}

.chat-head small span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.messages {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  padding: 16px 14px;
  background: radial-gradient(circle at 80% 0%, rgba(25, 188, 99, .06), transparent 50%);
}

.bubble {
  max-width: 80%;
  padding: 10px 13px;
  font-size: 13px;
  line-height: 1.5;
}

.left,
.left-card {
  align-self: flex-start;
  border: 1px solid rgba(16, 38, 24, .07);
  border-radius: 16px 16px 16px 5px;
  color: #2a3830;
  background: #fff;
}

.right,
.right-card {
  align-self: flex-end;
  border-radius: 16px 16px 5px 16px;
}

.right {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 6px 16px rgba(25, 188, 99, .28);
  font-weight: 500;
}

.message-card {
  gap: 10px;
  max-width: 84%;
  padding: 10px 12px;
  box-shadow: 0 2px 8px rgba(16, 50, 30, .05);
}

.message-card span {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  color: var(--accent);
  background: rgba(25, 188, 99, .12);
}

.message-card strong {
  font-size: 12.5px;
  font-weight: 600;
}

.message-card small {
  display: block;
  margin-top: 2px;
  color: #7d8f85;
  font-size: 10.5px;
}

.right-card,
.notice-card {
  border: 1px solid rgba(25, 188, 99, .22);
  background: rgba(25, 188, 99, .12);
}

.notice-card {
  align-self: flex-start;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(25, 188, 99, .1), rgba(13, 178, 120, .07));
}

.chat-input {
  gap: 9px;
  border-top: 1px solid rgba(16, 38, 24, .06);
  padding: 12px 14px 22px;
  background: #fff;
}

.chat-input span {
  display: flex;
  height: 38px;
  flex: 1;
  align-items: center;
  border-radius: 999px;
  padding: 0 15px;
  color: #9aaaa0;
  background: #f0f5f1;
  font-size: 12.5px;
}

.chat-input b {
  display: flex;
  width: 46px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  font-size: 12px;
}

.float-card {
  position: absolute;
  gap: 10px;
  border: 1px solid rgba(16, 38, 24, .08);
  border-radius: 16px;
  padding: 11px 14px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 20px 40px -16px rgba(16, 50, 30, .22);
  backdrop-filter: blur(14px);
}

.float-card svg {
  color: var(--accent);
}

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

.float-card strong {
  font-size: 12px;
}

.float-card small {
  color: #9aaaa0;
  font-size: 10.5px;
}

.float-a {
  top: 64px;
  left: -6px;
  animation: vl-floaty 6s ease-in-out infinite;
}

.float-b {
  right: -10px;
  bottom: 72px;
  animation: vl-floaty2 7s ease-in-out infinite;
}

.marquee {
  position: relative;
  display: flex;
  overflow: hidden;
  background: linear-gradient(90deg, #0c8b4c 0%, #19bc63 50%, #0c8b4c 100%);
}

.marquee div {
  display: flex;
  width: max-content;
  flex-shrink: 0;
  align-items: center;
  gap: 50px;
  padding: 18px 25px;
  color: rgba(255, 255, 255, .92);
  font-family: "Sora", sans-serif;
  font-size: 14px;
  letter-spacing: .22em;
  text-transform: uppercase;
  animation: vl-marquee 32s linear infinite;
}

.marquee i {
  color: rgba(255, 255, 255, .55);
  font-style: normal;
}

.features,
.wallet-section {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 11vh, 128px) clamp(20px, 5vw, 56px);
  background: #f6faf6;
}

.section-title {
  max-width: 640px;
  margin-bottom: 54px;
}

.section-title.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-title small,
.security-copy small {
  display: block;
  margin-bottom: 16px;
  color: var(--accent);
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.section-title h2,
.security-copy h2 {
  margin-bottom: 16px;
  color: #0c1711;
  font-family: "Sora", "Noto Sans SC", sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.12;
}

.section-title p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.feature-grid,
.device-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
  gap: 18px;
}

.feature-grid article,
.device-grid article,
.store-card {
  border: 1px solid rgba(16, 38, 24, .08);
  background: #fff;
  box-shadow: 0 16px 40px -22px rgba(16, 50, 30, .16);
}

.feature-grid article {
  border-radius: 22px;
  padding: 30px 28px;
}

.feature-icon {
  display: flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border: 1px solid rgba(25, 188, 99, .2);
  border-radius: 15px;
  color: var(--accent);
  background: rgba(25, 188, 99, .1);
}

.feature-icon svg {
  stroke-width: 1.7;
  stroke-linejoin: round;
}

.feature-grid small {
  color: var(--accent);
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.feature-grid h3 {
  margin: 10px 0;
  font-size: 20px;
}

.feature-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.66;
}

.security {
  position: relative;
  overflow: hidden;
  padding: clamp(88px, 13vh, 156px) clamp(20px, 5vw, 56px);
  color: #fff;
  background: radial-gradient(130% 130% at 6% 0%, #16aa60 0%, #0c7544 44%, #073220 100%);
}

.security::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, .12) 1px, transparent 1.7px);
  background-size: 26px 26px;
  content: "";
  mask-image: linear-gradient(180deg, transparent, #000 26%, #000 74%, transparent);
  opacity: .45;
  pointer-events: none;
}

.security .noise {
  opacity: .1;
  mix-blend-mode: overlay;
}

.security-glow {
  top: -120px;
  right: -60px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(120, 255, 190, .22), transparent 65%);
  filter: blur(50px);
}

.security-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(40px, 6vw, 90px);
}

.security-copy {
  min-width: 300px;
  flex: 1 1 380px;
}

.security-copy small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  padding: 6px 14px;
  color: rgba(255, 255, 255, .9);
  background: rgba(255, 255, 255, .12);
}

.security-copy h2 {
  color: #fff;
}

.security-copy p {
  max-width: 520px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, .82);
  font-size: 16px;
  line-height: 1.75;
}

.security-list {
  display: grid;
  max-width: 560px;
  gap: 12px;
}

.security-list div {
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(6px);
}

.security-list span {
  display: flex;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #eafff3;
  background: rgba(255, 255, 255, .16);
}

.security-list svg {
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shield-wrap {
  display: flex;
  min-width: 280px;
  flex: 1 1 320px;
  justify-content: center;
}

.shield {
  position: relative;
  display: flex;
  width: 300px;
  height: 300px;
  flex: 0 0 300px;
  align-items: center;
  justify-content: center;
}

.shield i {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
}

.shield i:nth-child(1) { inset: 0; }
.shield i:nth-child(2) { inset: 42px; }
.shield i:nth-child(3) { inset: 84px; }

.shield > span {
  position: relative;
  display: flex;
  width: 100px;
  height: 100px;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  color: #0c7544;
  background: linear-gradient(140deg, #fff, #e4fbec);
  box-shadow: 0 28px 56px -14px rgba(4, 40, 22, .55);
}

.shield > span svg {
  stroke-width: 1.7;
  stroke-linejoin: round;
}

.devices {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(76px, 11vh, 128px) clamp(20px, 5vw, 56px);
}

.device-grid article {
  border-radius: 18px;
  padding: 28px 20px;
  text-align: center;
}

.device-grid strong,
.device-grid span {
  display: block;
}

.device-grid strong {
  margin-bottom: 6px;
  font-family: "Sora", sans-serif;
  font-size: 17px;
}

.device-grid span {
  color: #9aaaa0;
  font-size: 12.5px;
}

.download {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(16, 38, 24, .05);
  padding: clamp(80px, 12vh, 140px) clamp(20px, 5vw, 56px);
  background: linear-gradient(180deg, #fff, #f4fbf6);
}

.download-inner {
  max-width: 1100px;
}

.download .section-title {
  max-width: 660px;
  margin-bottom: 50px;
}

.download .section-title h2 {
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 800;
  line-height: 1.08;
}

.download .section-title p {
  font-size: 17px;
  line-height: 1.6;
}

.download-glow {
  top: 0;
  left: 50%;
  width: 600px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(25, 188, 99, .26), transparent 65%);
  filter: blur(50px);
  transform: translateX(-50%);
}

.download-layout {
  display: flex;
  max-width: 580px;
  margin: 0 auto;
  flex-direction: column;
  align-items: stretch;
  border: 1px solid rgba(16, 38, 24, .08);
  border-radius: 26px;
  padding: 18px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 28px 70px -36px rgba(16, 80, 45, .28);
  backdrop-filter: blur(10px);
}

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

.store-card {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 92px;
  border-radius: 18px;
  padding: 20px;
  transition: transform .4s cubic-bezier(.2, .8, .2, 1), box-shadow .4s, border-color .4s;
}

.store-card:hover {
  border-color: rgba(25, 188, 99, .4);
  box-shadow: 0 16px 34px -20px rgba(16, 80, 45, .28);
  transform: translateY(-3px);
}

.store-card.pending {
  cursor: not-allowed;
}

.store-card > span {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 15px;
  color: var(--accent);
  background: rgba(25, 188, 99, .12);
}

.store-card > span svg {
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.store-card small {
  color: #9aaaa0;
  font-size: 12px;
}

.store-card strong {
  color: var(--ink);
  font-size: 21px;
  line-height: 1.2;
}

.footer {
  border-top: 1px solid rgba(16, 38, 24, .07);
  padding: clamp(56px, 8vh, 80px) clamp(20px, 5vw, 56px) 40px;
  background: #fbfdfb;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 48px;
}

.footer p {
  max-width: 300px;
  margin: 18px 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.footer small {
  color: var(--accent2);
  font-family: "Sora", sans-serif;
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links strong {
  margin-bottom: 5px;
  color: #3a4a41;
  font-family: "Sora", sans-serif;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-links a {
  color: #7a8a80;
  font-size: 14px;
}

.copyright {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 44px;
  border-top: 1px solid rgba(16, 38, 24, .06);
  padding-top: 24px;
  color: #9aaaa0;
  font-size: 13px;
}

@media (max-width: 860px) {
  .nav {
    height: auto;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .nav-links {
    width: 100%;
    gap: 24px;
    overflow-x: auto;
  }

  .nav-actions {
    display: none;
  }

  .hero {
    padding-top: 150px;
  }

  .hero-phone {
    justify-content: flex-start;
  }

  .float-card {
    display: none;
  }

  .download-layout {
    max-width: 560px;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 42px;
  }

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

  .primary-button,
  .ghost-button {
    justify-content: center;
    width: 100%;
  }

  .support-list {
    gap: 10px;
  }

  .phone {
    width: min(300px, 100%);
  }

  .feature-grid article {
    padding: 24px;
  }

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

  .marquee div {
    gap: 32px;
    font-size: 12px;
  }
}
