:root {
  --blue: #2B8CFF;
  --blue-deep: #1567D6;
  --green: #3DCC5A;
  --yellow: #F5C400;
  --ink: #12161C;
  --muted: #5B6570;
  --line: #E4EBF1;
  --bg: #FAFCFD;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --h: 44px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--ink); background: var(--bg); line-height: 1.6; font-size: 16.5px; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 20px; }

header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,252,253,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 0; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -.03em; }
.brand img { width: 42px; height: 42px; border-radius: 50%; background: #000; object-fit: cover; }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-links { display: flex; align-items: center; gap: 16px; color: var(--muted); font-weight: 600; font-size: .92rem; }
.lang { display: flex; background: #F3F7FA; border: 1px solid var(--line); border-radius: 999px; padding: 3px; }
.lang button { border: 0; background: transparent; padding: 5px 10px; border-radius: 999px; font-weight: 700; font-size: .76rem; color: var(--muted); }
.lang button.active { background: #fff; color: var(--ink); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: var(--h); min-width: 168px; padding: 0 16px;
  border-radius: 999px; border: 1.5px solid var(--line);
  background: #fff; color: var(--ink); font-weight: 750; font-size: 14px;
}
a.btn.btn-wait, button.btn.btn-wait {
  background: #F5C400 !important;
  border-color: #F5C400 !important;
  color: #171717 !important;
}
.btn-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }

.store {
  display: inline-flex; align-items: center; gap: 10px;
  height: var(--h); min-width: 168px; padding: 0 12px;
  border-radius: 12px; border: 1.5px solid var(--line);
  background: #fff; color: var(--ink); text-align: left;
}
.store svg { width: 20px; height: 20px; flex: 0 0 20px; }
.store small { display: block; font-size: .66rem; letter-spacing: .04em; opacity: .65; font-weight: 700; }
.store b { display: block; font-size: .9rem; line-height: 1.1; }

.hero { padding: 36px 0 16px; }
.hero .lead { margin: 8px 0 16px; max-width: 34rem; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 36px; align-items: center; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #eef8f0; color: #1f7a36; border: 1px solid #cfeed6;
  padding: 6px 12px; border-radius: 999px; font-size: .82rem; font-weight: 700;
}
.badge i { width: 8px; height: 8px; border-radius: 50%; background: var(--green); display: inline-block; }
.hero h1 { font-size: clamp(2rem, 4.4vw, 3.3rem); line-height: 1.08; letter-spacing: -.04em; margin: 14px 0 8px; font-weight: 800; }
.hero h1 span { color: var(--blue); }
.tagline { color: var(--blue-deep); font-weight: 700; font-size: 1.08rem; }
.lead { color: var(--muted); max-width: 500px; margin: 8px 0 18px; }

.phone {
  background: linear-gradient(180deg, #0f1318, #1c2430);
  border-radius: 36px; padding: 14px 12px 18px;
  box-shadow: 0 16px 40px rgba(18,22,28,.08);
  max-width: 340px; margin-left: auto; color: #fff;
}
.phone-bar { height: 18px; display: flex; justify-content: center; margin-bottom: 10px; }
.phone-bar span { width: 88px; height: 8px; background: #2a323c; border-radius: 99px; }
.phone-card { background: #fff; color: var(--ink); border-radius: 22px; padding: 14px; }
.phone-card + .phone-card { margin-top: 10px; }
.mini { display: flex; gap: 10px; align-items: center; margin-bottom: 10px; }
.av { width: 42px; height: 42px; border-radius: 14px; object-fit: cover; object-position: top center; }
.chip { display: inline-block; background: #F3F7FA; border: 1px solid var(--line); border-radius: 999px; padding: 3px 8px; font-size: .74rem; font-weight: 700; margin: 0 4px 4px 0; }
.chip.on { background: #eefbf1; color: #1f7a36; border-color: #cfeed6; }
.chip.need { background: #eef4ff; color: var(--blue-deep); border-color: #d5e4ff; }

.strip { height: 4px; background: linear-gradient(90deg, var(--blue), var(--green), var(--yellow)); }
section { padding: 40px 0; }
.section-title { text-align: center; font-size: 1.65rem; letter-spacing: -.03em; font-weight: 800; }
.section-sub { text-align: center; color: var(--muted); max-width: 540px; margin: 8px auto 18px; }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.grid3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 20px; box-shadow: 0 8px 24px rgba(18,22,28,.04); position: relative; overflow: hidden;
}
.card h3 { margin-bottom: 6px; font-size: 1.06rem; }
.card p { color: var(--muted); }
.card.blue::before, .card.green::before, .card.yellow::before {
  content: ""; position: absolute; left: 0; top: 0; width: 5px; height: 100%;
}
.card.blue::before { background: var(--blue); }
.card.green::before { background: var(--green); }
.card.yellow::before { background: var(--yellow); }
.num {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  color: #fff; font-weight: 800; margin-bottom: 12px;
}
.n1 { background: var(--green); }
.n2 { background: var(--blue); }
.n3 { background: var(--yellow); color: #171717; }

.cta-band {
  background: linear-gradient(125deg, var(--blue) 0%, var(--blue-deep) 52%, #2BA345 100%);
  color: #fff; border-radius: 28px; padding: 36px 24px; text-align: center;
}
.cta-band p { opacity: .95; max-width: 460px; margin: 8px auto 16px; }

footer { border-top: 1px solid var(--line); padding: 28px 0 36px; text-align: center; color: var(--muted); }
footer img { width: 36px; height: 36px; border-radius: 50%; margin: 0 auto 10px; background: #000; }
footer p { margin: 6px 0; }
footer strong { color: var(--ink); display: block; }
footer a { color: var(--blue-deep); font-weight: 600; }

.toast { position: fixed; left: 50%; bottom: 20px; transform: translateX(-50%) translateY(10px); background: var(--ink); color: #fff; padding: 11px 14px; border-radius: 12px; opacity: 0; z-index: 80; transition: .2s; max-width: min(92vw, 420px); text-align: center; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.modal-bg { position: fixed; inset: 0; background: rgba(12,16,22,.46); display: none; place-items: center; z-index: 90; padding: 20px; }
.modal-bg.open { display: grid; }
.modal { background: #fff; width: min(420px, 100%); border-radius: 20px; padding: 20px; }
.modal p { color: var(--muted); margin: 8px 0 14px; }

.app-body { background: #F3F7FA; }
.app-bar { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 20; }
.app-bar .inner { display: flex; align-items: center; justify-content: space-between; min-height: 64px; padding: 0 16px; }
.profiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 24px 16px 48px; }
.pcard { background: #fff; border-radius: 18px; overflow: hidden; box-shadow: 0 8px 24px rgba(18,22,28,.06); }
.pcard img { width: 100%; height: 340px; object-fit: cover; object-position: top center; }
.pcard .pad { padding: 14px; }
.pcard .city { color: var(--muted); font-size: .9rem; margin: 2px 0 6px; }
.pcard q { display: block; color: #4B5563; font-size: .92rem; font-style: italic; }

@media (max-width: 860px) {
  .wrap { padding: 0 16px; }
  .nav { gap: 8px; padding: 10px 0; }
  .brand { font-size: .95rem; }
  .brand img { width: 34px; height: 34px; }
  .nav-right { gap: 8px; }
  .nav-links { gap: 8px; }
  .nav-links a.hide { display: none; }
  .nav-links .btn { min-width: 0; height: 36px; padding: 0 12px; font-size: 13px; }
  .hero { padding: 20px 0 8px; }
  .hero-grid, .grid2, .grid3 { grid-template-columns: 1fr; gap: 12px; }
  .hero h1 { font-size: 1.85rem; margin: 8px 0 6px; }
  .hero .lead { font-size: .95rem; margin: 0 0 12px; }
  .phone { display: none; }
  .btn, .store { min-width: 0; width: auto; flex: 1 1 150px; }
  .btn-row { width: 100%; }
  .cta-band { padding: 24px 16px; border-radius: 20px; }
  section { padding: 28px 0; }
  .app-bar .inner { gap: 8px; padding: 8px; }
  .app-bar .btn { min-width: 0; height: 36px; padding: 0 12px; flex: 0 0 auto; }
  .profiles { grid-template-columns: 1fr; padding: 16px 12px 36px; }
  .pcard img { height: 300px; }
}

@media (min-width: 861px) and (max-width: 1100px) {
  .profiles { grid-template-columns: 1fr 1fr; }
  .pcard img { height: 320px; }
}

.btn:focus-visible, .lang button:focus-visible, .store:focus-visible {
  outline: 3px solid rgba(43,140,255,.45);
  outline-offset: 2px;
}
.eyebrow { color: var(--blue-deep); font-weight: 800; font-size: .86rem; letter-spacing: .02em; margin-bottom: 8px; }
.avail { display: flex; flex-wrap: wrap; gap: 6px; margin: 12px 0 0; }
.pill { background: #F3F7FA; border: 1px solid var(--line); border-radius: 999px; padding: 4px 10px; font-size: .78rem; font-weight: 700; color: var(--muted); }
.swaps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.swap { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 18px; text-align: center; box-shadow: 0 8px 24px rgba(18,22,28,.04); }
.swap .give, .swap .get { font-weight: 800; }
.swap .give span, .swap .get span { display: block; font-weight: 600; color: var(--muted); font-size: .75rem; letter-spacing: .04em; text-transform: uppercase; }
.swap .arrow { color: var(--blue); font-weight: 800; margin: 8px 0; }
.swap small { display: block; color: var(--muted); margin-top: 8px; font-size: .8rem; }
.cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.cat { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 16px; }
.cat h3 { font-size: 1rem; margin-bottom: 4px; }
.cat p { color: var(--muted); font-size: .92rem; }
.faq { max-width: 760px; margin: 0 auto; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 12px 16px; margin-bottom: 8px; }
.faq summary { cursor: pointer; font-weight: 750; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq details p { color: var(--muted); margin-top: 8px; }
.legal { max-width: 720px; margin: 32px auto 64px; }
.legal h1 { font-size: 1.8rem; margin-bottom: 12px; }
.legal p, .legal li { color: var(--muted); margin: 8px 0; }
.legal ul { padding-left: 18px; }
.demo-note { text-align: center; color: var(--muted); max-width: 560px; margin: 8px auto 0; }
.demo-cta { text-align: center; padding: 8px 16px 48px; }
.pcard .chips { margin: 8px 0; }
footer .flinks { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 16px; margin: 12px 0; }
footer .flinks a { color: var(--blue-deep); font-weight: 650; }
.who-note { text-align: center; color: var(--muted); font-size: .9rem; margin-top: 10px; }

@media (max-width: 860px) {
  .swaps, .cats { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
.reward {
  display: inline-block;
  margin: 10px 0 14px;
  background: #FFF8D6;
  border: 1px solid #F5C400;
  color: #171717;
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 700;
  font-size: .92rem;
}
.reward span { font-weight: 600; color: #5B6570; display: block; font-size: .82rem; margin-top: 2px; }
.loop { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.loop article { text-align: center; }
.loop .num { margin: 0 auto 10px; }
@media (max-width: 860px) {
  .loop { grid-template-columns: 1fr 1fr; }
}
.ico { width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 10px; background: #F3F7FA; }
.ico svg { width: 22px; height: 22px; display: block; }
.ico.b { background: #eef4ff; }
.ico.g { background: #eefbf1; }
.ico.y { background: #FFF8D6; }
.cat { text-align: center; }
.cat .ico { margin: 0 auto 10px; }
.stat3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.stat3 article { text-align: center; }
.stat3 p { color: var(--muted); }
@media (max-width: 860px) {
  .stat3 { grid-template-columns: 1fr; }
}
.legal h2 { font-size: 1.15rem; margin: 22px 0 8px; }
.token-kicker { font-size: 1.05rem; font-weight: 650; color: var(--ink); margin: 0 0 16px; }
.token-kicker strong { font-weight: 800; letter-spacing: -.02em; }
.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }
.join-form { display:grid; gap:10px; max-width:420px; margin:18px auto 0; text-align:left; }
.join-form input[type=text], .join-form input[type=email] {
  height:44px; border:1.5px solid var(--line); border-radius:12px; padding:0 12px; font:inherit; width:100%;
}
.join-form .agree { font-size:.88rem; color:var(--muted); display:flex; gap:8px; align-items:flex-start; }
.join-form .agree a { text-decoration:underline; }
.join-form .btn { width:100%; }
.join-form .hp { position:absolute; left:-9999px; }
.form-msg { margin-top:8px; font-weight:700; }
.form-msg.ok { color:#1f7a36; }
.form-msg.err { color:#b42318; }
.join-page { max-width: 640px; padding: 28px 20px 72px; }
.join-page h1 { font-size: 1.8rem; margin: 6px 0 8px; }
.gform { background:#fff; border:1px solid var(--line); border-radius:20px; padding:22px; box-shadow:0 10px 30px rgba(18,22,28,.05); display:grid; gap:18px; }
.gform fieldset { border:0; }
.gform label, .gform legend { font-weight:700; display:block; margin-bottom:6px; }
.gform .hint { color:var(--muted); font-size:.88rem; margin:0 0 8px; font-weight:500; }
.gform .req { color:#c2410c; }
.gform input[type=text], .gform input[type=email], .gform textarea {
  width:100%; border:1.5px solid var(--line); border-radius:12px; padding:10px 12px; font:inherit;
}
.gform textarea { min-height:110px; resize:vertical; }
.gform .choices { display:grid; gap:8px; }
.gform .choices label { font-weight:600; display:flex; gap:8px; align-items:center; }
.gform .btn { width:100%; }

.cta-note { display:block; width:100%; color:var(--muted); font-size:.86rem; font-weight:600; margin-top:4px; }
