/* VINISEED Wallet Demo — isolated page styles. */
.vs-app {
  --vs-bg: #070b09;
  --vs-panel: #0c120f;
  --vs-panel-2: #111a15;
  --vs-ink: #f4f8f4;
  --vs-muted: #9ba8a0;
  --vs-line: rgba(255,255,255,.1);
  --vs-lime: #68ef82;
  --vs-lime-2: #b9ff7c;
  --vs-green: #31cc64;
  --vs-red: #ff665e;
  --vs-amber: #ffb84d;
  --vs-light: #f4f5ef;
  --vs-dark-ink: #0b110d;
  color: var(--vs-ink);
  background: var(--vs-bg);
  font-family: inherit;
  overflow: clip;
}

.vs-app *, .vs-app *::before, .vs-app *::after { box-sizing: border-box; }
.vs-app button, .vs-app input { font: inherit; }
.vs-app button { cursor: pointer; }
.vs-app svg { width: 1.25em; height: 1.25em; }
.vs-container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.vs-positive { color: var(--vs-lime) !important; }

.vs-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--vs-lime);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.vs-kicker i { width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 16px currentColor; }
.vs-kicker--dark { color: #1a8f44; }

.vs-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none !important;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.vs-button:hover { transform: translateY(-2px); }
.vs-button svg { width: 17px; height: 17px; }
.vs-button--primary { color: #061008 !important; background: var(--vs-lime); box-shadow: 0 12px 36px rgba(104,239,130,.2); }
.vs-button--primary:hover { background: #91f99e; box-shadow: 0 16px 42px rgba(104,239,130,.28); }
.vs-button--ghost { color: var(--vs-ink) !important; border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.025); }
.vs-button--ghost:hover { border-color: rgba(255,255,255,.42); background: rgba(255,255,255,.06); }
.vs-button--lime { color: #071008 !important; background: var(--vs-lime); }
.vs-button--block { width: 100%; }

/* Hero */
.vs-hero {
  position: relative;
  min-height: 750px;
  display: grid;
  align-items: center;
  padding: 105px 0 95px;
  background:
    radial-gradient(circle at 72% 42%, rgba(62,196,101,.11), transparent 30%),
    linear-gradient(180deg, #060a08 0%, #090f0b 100%);
  isolation: isolate;
}
.vs-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .12;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 25%, #000 75%, transparent);
}
.vs-orb { position: absolute; border-radius: 50%; filter: blur(90px); z-index: -1; pointer-events: none; }
.vs-orb--one { width: 310px; height: 310px; right: 2%; top: 18%; background: rgba(93,236,128,.11); }
.vs-orb--two { width: 220px; height: 220px; left: 5%; bottom: 4%; background: rgba(183,255,123,.06); }
.vs-hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.vs-hero__copy h1 {
  max-width: 760px;
  margin: 19px 0 22px;
  color: #f7faf7;
  font-size: clamp(48px, 5.7vw, 78px);
  line-height: .98;
  letter-spacing: -.057em;
  font-weight: 800;
}
.vs-hero__copy > p { max-width: 660px; margin: 0; color: #b6c0ba; font-size: 19px; line-height: 1.65; }
.vs-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.vs-hero__proof { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 28px; color: #a9b5ad; font-size: 12px; font-weight: 700; }
.vs-hero__proof span { display: inline-flex; align-items: center; gap: 7px; }
.vs-hero__proof svg { width: 15px; height: 15px; color: var(--vs-lime); }

.vs-hero__visual { position: relative; min-height: 570px; display: grid; place-items: center; perspective: 1200px; }
.vs-phone-card {
  position: relative;
  width: min(445px, 93%);
  min-height: 515px;
  padding: 29px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(24,35,29,.94), rgba(9,14,11,.96));
  box-shadow: 0 48px 100px rgba(0,0,0,.5), inset 0 1px rgba(255,255,255,.06);
  transform: rotateY(-7deg) rotateX(2deg);
}
.vs-phone-card::after { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(255,255,255,.05); border-radius: 21px; pointer-events: none; }
.vs-phone-card__top { display: flex; align-items: center; margin-bottom: 66px; }
.vs-brand-mark { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; color: #08120a; background: var(--vs-lime); }
.vs-brand-mark svg { width: 19px; height: 19px; }
.vs-phone-card__brand { margin-left: 9px; font-size: 13px; font-weight: 900; letter-spacing: .08em; }
.vs-live-pill { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; padding: 6px 9px; border: 1px solid rgba(104,239,130,.25); border-radius: 99px; color: #bfffc8; background: rgba(104,239,130,.08); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.vs-live-pill i { width: 5px; height: 5px; border-radius: 50%; background: var(--vs-lime); box-shadow: 0 0 10px var(--vs-lime); }
.vs-phone-card__label { display: block; color: #87958c; font-size: 12px; font-weight: 700; }
.vs-phone-card > strong { display: block; margin: 7px 0 5px; color: #fff; font-size: 42px; line-height: 1; letter-spacing: -.04em; }
.vs-phone-card > .vs-positive { font-size: 12px; font-weight: 800; }
.vs-phone-card > .vs-positive small { color: #738078; font-weight: 600; }
.vs-mini-chart { display: block; width: 100% !important; height: 135px !important; margin-top: 24px; overflow: visible; }
.vs-mini-chart__fill { fill: url(#vs-chart-fill); }
.vs-mini-chart__line { fill: none; stroke: var(--vs-lime); stroke-width: 3; stroke-linecap: round; filter: drop-shadow(0 0 5px rgba(104,239,130,.45)); }
.vs-phone-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 25px; }
.vs-phone-actions > span { height: 75px; display: grid; place-items: center; align-content: center; gap: 6px; border: 1px solid rgba(255,255,255,.08); border-radius: 14px; background: rgba(255,255,255,.03); color: #e6ece7; }
.vs-phone-actions > span.is-accent { color: var(--vs-lime); background: rgba(104,239,130,.07); border-color: rgba(104,239,130,.17); }
.vs-phone-actions svg { width: 20px; height: 20px; }
.vs-phone-actions small { font-size: 10px; font-weight: 800; }
.vs-float-card { position: absolute; display: flex; align-items: center; gap: 11px; min-width: 205px; padding: 14px 16px; border: 1px solid rgba(255,255,255,.13); border-radius: 15px; background: rgba(14,21,17,.93); box-shadow: 0 20px 50px rgba(0,0,0,.35); backdrop-filter: blur(16px); animation: vs-float 5s ease-in-out infinite; }
.vs-float-card > svg { flex: 0 0 auto; width: 24px; height: 24px; color: var(--vs-lime); }
.vs-float-card span { display: grid; gap: 2px; color: #f1f7f2; font-size: 12px; font-weight: 800; }
.vs-float-card small { color: #829087; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.vs-float-card--risk { right: -45px; top: 75px; }
.vs-float-card--metal { left: -56px; bottom: 62px; animation-delay: -2.5s; }
@keyframes vs-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Shared section heading */
.vs-section-heading { margin-bottom: 38px; }
.vs-section-heading h2 { margin: 13px 0 0; color: #f5faf6; font-size: clamp(36px, 4.6vw, 58px); line-height: 1.05; letter-spacing: -.045em; }
.vs-section-heading--split { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 70px; }
.vs-section-heading--split > p { margin: 0 0 6px; color: #9eaba3; font-size: 16px; line-height: 1.7; }
.vs-section-heading--center { max-width: 760px; margin-inline: auto; text-align: center; }

/* Wallet demo */
.vs-demo-section { padding: 105px 0 118px; background: #080d0a; }
.vs-demo-notice { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; padding: 13px 16px; border: 1px solid rgba(255,184,77,.22); border-radius: 13px; color: #f2d49f; background: rgba(255,184,77,.055); }
.vs-demo-notice > svg { flex: 0 0 auto; width: 20px; height: 20px; color: var(--vs-amber); }
.vs-demo-notice div { display: grid; gap: 2px; }
.vs-demo-notice strong { font-size: 12px; }
.vs-demo-notice span { color: #a99c82; font-size: 11px; }
.vs-demo-boost { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 16px; padding: 16px; border: 1px solid rgba(104,239,130,.18); border-radius: 15px; background: linear-gradient(90deg, rgba(104,239,130,.075), rgba(104,239,130,.02)); }
.vs-demo-boost > div { display: flex; align-items: center; gap: 12px; }
.vs-demo-boost__icon { flex: 0 0 auto; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; color: #071008; background: var(--vs-lime); box-shadow: 0 10px 28px rgba(104,239,130,.18); }
.vs-demo-boost__icon svg { width: 20px; height: 20px; }
.vs-demo-boost p { display: grid; gap: 3px; margin: 0; }
.vs-demo-boost small { color: var(--vs-lime); font-size: 8px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.vs-demo-boost strong { color: #dfe9e2; font-size: 11px; }
.vs-demo-boost .vs-button { min-height: 42px; padding-inline: 17px; border-radius: 10px; font-size: 10px; white-space: nowrap; }

.vs-wallet-shell { min-height: 735px; display: grid; grid-template-columns: 210px 1fr; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 24px; background: #0d1310; box-shadow: 0 45px 110px rgba(0,0,0,.42); }
.vs-wallet-sidebar { display: flex; flex-direction: column; padding: 23px 14px 18px; border-right: 1px solid rgba(255,255,255,.08); background: #090e0b; }
.vs-wallet-logo { display: flex; align-items: center; gap: 9px; padding: 0 9px 26px; }
.vs-wallet-logo > span { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 9px; color: #071109; background: var(--vs-lime); }
.vs-wallet-logo svg { width: 18px; height: 18px; }
.vs-wallet-logo b { font-size: 12px; letter-spacing: .09em; }
.vs-wallet-nav { display: grid; gap: 6px; }
.vs-wallet-nav button { width: 100%; min-height: 46px; display: flex; align-items: center; gap: 11px; padding: 0 12px; border: 0; border-radius: 10px; color: #7f8d84; background: transparent; font-size: 12px; font-weight: 750; text-align: left; transition: .2s ease; }
.vs-wallet-nav button:hover { color: #dce5de; background: rgba(255,255,255,.035); }
.vs-wallet-nav button.is-active { color: #eff9f1; background: rgba(104,239,130,.09); box-shadow: inset 3px 0 var(--vs-lime); }
.vs-wallet-nav button svg { width: 17px; height: 17px; }
.vs-wallet-nav button i { min-width: 18px; height: 18px; display: grid; place-items: center; margin-left: auto; border-radius: 99px; color: #071009; background: var(--vs-lime); font-size: 9px; font-style: normal; font-weight: 900; }
.vs-sidebar-status { margin-top: auto; display: flex; align-items: center; gap: 10px; padding: 12px; border: 1px solid rgba(104,239,130,.1); border-radius: 12px; background: rgba(104,239,130,.045); }
.vs-sidebar-status > span { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 9px; color: var(--vs-lime); background: rgba(104,239,130,.1); }
.vs-sidebar-status svg { width: 15px; height: 15px; }
.vs-sidebar-status div { display: grid; gap: 2px; }
.vs-sidebar-status b { color: #d9e5dc; font-size: 10px; }
.vs-sidebar-status small { color: #718078; font-size: 8px; }

.vs-wallet-main { min-width: 0; background: linear-gradient(180deg, #111814 0%, #0d1310 100%); }
.vs-wallet-topbar { height: 77px; display: flex; align-items: center; justify-content: space-between; padding: 0 28px; border-bottom: 1px solid rgba(255,255,255,.07); }
.vs-wallet-topbar > div:first-child { display: grid; gap: 2px; }
.vs-wallet-topbar small { color: #76847b; font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.vs-wallet-topbar button { display: inline-flex; align-items: center; gap: 5px; padding: 0; border: 0; color: #dce6df; background: transparent; font-size: 11px; font-weight: 800; }
.vs-wallet-topbar button svg { width: 12px; height: 12px; color: #738078; }
.vs-wallet-topbar__right { display: flex; align-items: center; gap: 11px; }
.vs-network { display: inline-flex; align-items: center; gap: 7px; height: 32px; padding: 0 11px; border: 1px solid rgba(255,255,255,.08); border-radius: 9px; color: #c7d1ca; background: rgba(255,255,255,.025); font-size: 9px; font-weight: 800; }
.vs-network i { width: 7px; height: 7px; border-radius: 50%; background: #7086ff; box-shadow: 0 0 9px rgba(112,134,255,.7); }
.vs-icon-button { width: 32px; height: 32px; display: grid !important; place-items: center; border: 1px solid rgba(255,255,255,.08) !important; border-radius: 9px; color: #9caaa1 !important; background: rgba(255,255,255,.025) !important; }
.vs-icon-button svg { width: 15px !important; height: 15px !important; }
.vs-avatar { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 9px; color: #071009; background: var(--vs-lime); font-size: 9px; font-weight: 900; }
.vs-wallet-view { display: none; min-height: 658px; padding: 30px; animation: vs-fade-up .28s ease; }
.vs-wallet-view.is-active { display: block; }
@keyframes vs-fade-up { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: none; } }

.vs-dashboard-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 26px; }
.vs-dashboard-head > div:first-child > span { display: block; color: #7f8c84; font-size: 10px; font-weight: 700; }
.vs-dashboard-head h3 { margin: 5px 0 6px; color: #fff; font-size: 34px; line-height: 1; letter-spacing: -.04em; }
.vs-dashboard-head p { margin: 0; color: #78857d; font-size: 9px; }
.vs-dashboard-head p b { color: var(--vs-lime); }
.vs-action-row { display: flex; gap: 8px; }
.vs-action-row button { min-width: 72px; height: 54px; display: grid; place-items: center; align-content: center; gap: 4px; border: 1px solid rgba(255,255,255,.08); border-radius: 11px; color: #cbd5ce; background: rgba(255,255,255,.025); font-size: 8px; font-weight: 800; transition: .2s ease; }
.vs-action-row button:hover { color: #fff; border-color: rgba(255,255,255,.18); transform: translateY(-2px); }
.vs-action-row button.is-primary { color: #081009; border-color: var(--vs-lime); background: var(--vs-lime); }
.vs-action-row svg { width: 16px; height: 16px; }
.vs-overview-grid { display: grid; grid-template-columns: minmax(0,1.7fr) minmax(220px,.8fr); gap: 13px; }
.vs-portfolio-card, .vs-shield-card, .vs-assets-card, .vs-transaction-preview, .vs-scan-result { border: 1px solid rgba(255,255,255,.075); border-radius: 15px; background: rgba(255,255,255,.022); }
.vs-portfolio-card { min-width: 0; padding: 17px 19px 13px; }
.vs-card-title { min-height: 26px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.vs-card-title > div { display: flex; align-items: center; gap: 9px; }
.vs-card-title h4 { margin: 0; color: #eaf1ec; font-size: 11px; font-weight: 800; }
.vs-card-title > span, .vs-card-title > button { padding: 0; border: 0; color: #748178; background: transparent; font-size: 8px; font-weight: 700; }
.vs-card-title .vs-positive { padding: 3px 6px; border-radius: 99px; background: rgba(104,239,130,.08); font-size: 7px; }
.vs-main-chart { display: block; width: 100% !important; height: 174px !important; margin-top: 5px; overflow: visible; }
.vs-chart-grid line { stroke: rgba(255,255,255,.055); stroke-width: 1; stroke-dasharray: 3 5; }
.vs-main-chart__fill { fill: url(#vs-main-fill); }
.vs-main-chart__line { fill: none; stroke: var(--vs-lime); stroke-width: 3; stroke-linecap: round; filter: drop-shadow(0 0 4px rgba(104,239,130,.35)); }
.vs-chart-days { display: flex; justify-content: space-between; color: #5e6a62; font-size: 7px; }
.vs-shield-card { padding: 16px; text-align: center; }
.vs-shield-icon { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 8px; color: var(--vs-lime); background: rgba(104,239,130,.09); }
.vs-shield-icon svg { width: 15px; height: 15px; }
.vs-free-badge { color: var(--vs-lime) !important; background: rgba(104,239,130,.08) !important; border: 1px solid rgba(104,239,130,.15) !important; border-radius: 99px; padding: 4px 7px !important; text-transform: uppercase; }
.vs-score-ring { width: 90px; height: 90px; display: grid; place-items: center; margin: 17px auto 10px; border-radius: 50%; background: conic-gradient(var(--vs-lime) 92%, rgba(255,255,255,.08) 0); position: relative; }
.vs-score-ring::before { content: ""; position: absolute; inset: 7px; border-radius: 50%; background: #121a15; }
.vs-score-ring span { position: relative; z-index: 1; }
.vs-score-ring b { font-size: 24px; }
.vs-score-ring small { color: #728078; font-size: 8px; }
.vs-shield-card h5 { margin: 0 0 5px; color: #eaf4ec; font-size: 10px; }
.vs-shield-card p { margin: 0 auto; max-width: 200px; color: #75827a; font-size: 8px; line-height: 1.55; }
.vs-shield-card > button { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; padding: 0; border: 0; color: var(--vs-lime); background: transparent; font-size: 8px; font-weight: 800; }
.vs-shield-card > button svg { width: 11px; height: 11px; }
.vs-assets-card { margin-top: 13px; padding: 16px 19px 8px; }
.vs-assets-card .vs-card-title { padding-bottom: 10px; }
.vs-assets-card .vs-card-title button { color: var(--vs-lime); }
.vs-asset-row { min-height: 57px; display: grid; grid-template-columns: 34px minmax(100px,1fr) minmax(120px,.8fr) 55px; align-items: center; gap: 10px; border-top: 1px solid rgba(255,255,255,.055); color: #cdd8d0; }
.vs-token { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 50%; font-size: 13px; font-weight: 900; }
.vs-token--eth { color: #fff; background: #6576d6; }
.vs-token--btc { color: #fff; background: #f59d26; }
.vs-token--usdc { color: #fff; background: #2775ca; }
.vs-asset-row > div, .vs-asset-row > span:nth-child(3), .vs-asset-row > strong { display: grid; gap: 2px; }
.vs-asset-row b, .vs-asset-row > span:nth-child(3) { font-size: 9px; font-weight: 800; }
.vs-asset-row small { color: #69766e; font-size: 7px; font-weight: 600; }
.vs-asset-row > em { justify-self: end; color: #7b877f; font-size: 8px; font-style: normal; font-weight: 800; }
.vs-asset-row > span:nth-child(3) { text-align: right; }

/* Wallet sub views */
.vs-view-heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 8px; }
.vs-view-heading > div:first-child { display: flex; align-items: center; gap: 11px; }
.vs-view-heading .vs-shield-icon { width: 40px; height: 40px; border-radius: 11px; }
.vs-view-heading .vs-shield-icon svg { width: 21px; height: 21px; }
.vs-view-heading small { display: block; margin-bottom: 2px; color: #728078; font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.vs-view-heading h3 { margin: 0; color: #f1f6f2; font-size: 20px; letter-spacing: -.025em; }
.vs-status-safe { display: inline-flex; align-items: center; gap: 6px; padding: 7px 9px; border: 1px solid rgba(104,239,130,.13); border-radius: 99px; color: var(--vs-lime); background: rgba(104,239,130,.05); font-size: 8px; font-weight: 800; }
.vs-status-safe i { width: 5px; height: 5px; border-radius: 50%; background: currentColor; box-shadow: 0 0 8px currentColor; }
.vs-view-intro { max-width: 630px; margin: 10px 0 23px; color: #7f8c84; font-size: 10px; line-height: 1.6; }
.vs-scenario-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 13px; }
.vs-scenario-grid button { min-height: 92px; display: grid; grid-template-columns: 35px 1fr; grid-template-rows: auto auto; align-content: center; column-gap: 10px; padding: 12px; border: 1px solid rgba(255,255,255,.075); border-radius: 13px; color: #cdd6d0; background: rgba(255,255,255,.018); text-align: left; transition: .2s ease; }
.vs-scenario-grid button:hover, .vs-scenario-grid button.is-active { border-color: rgba(104,239,130,.34); background: rgba(104,239,130,.045); }
.vs-scenario-grid button > span { grid-row: 1 / 3; width: 35px; height: 35px; display: grid; place-items: center; align-self: center; border-radius: 9px; color: var(--vs-lime); background: rgba(104,239,130,.08); }
.vs-scenario-grid button > span svg { width: 17px; height: 17px; }
.vs-scenario-grid b { align-self: end; font-size: 9px; }
.vs-scenario-grid small { align-self: start; color: #6f7c74; font-size: 7px; }
.vs-scan-workspace { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: 13px; }
.vs-transaction-preview, .vs-scan-result { min-height: 330px; padding: 18px; }
.vs-transaction-preview dl { margin: 14px 0 17px; }
.vs-transaction-preview dl > div { min-height: 47px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.055); }
.vs-transaction-preview dt { color: #707d75; font-size: 8px; }
.vs-transaction-preview dd { margin: 0; color: #d8e1db; font-size: 9px; font-weight: 800; text-align: right; }
.vs-transaction-preview .vs-button { min-height: 42px; font-size: 10px; border-radius: 9px; }
.vs-scan-result { display: grid; place-items: center; overflow: hidden; }
.vs-scan-idle { max-width: 310px; text-align: center; }
.vs-scan-idle > span { width: 70px; height: 70px; display: grid; place-items: center; margin: 0 auto 15px; border: 1px solid rgba(104,239,130,.16); border-radius: 50%; color: var(--vs-lime); background: radial-gradient(circle, rgba(104,239,130,.14), rgba(104,239,130,.02)); }
.vs-scan-idle > span svg { width: 33px; height: 33px; }
.vs-scan-idle h4 { margin: 0 0 6px; color: #e9f1eb; font-size: 15px; }
.vs-scan-idle p { margin: 0; color: #718078; font-size: 9px; line-height: 1.6; }
.vs-scanning { width: 100%; text-align: center; }
.vs-scanning__ring { width: 74px; height: 74px; margin: 0 auto 17px; border: 3px solid rgba(104,239,130,.1); border-top-color: var(--vs-lime); border-radius: 50%; animation: vs-spin 1s linear infinite; }
@keyframes vs-spin { to { transform: rotate(360deg); } }
.vs-scanning h4 { margin: 0 0 15px; color: #f0f6f1; font-size: 13px; }
.vs-scanning ul { width: min(270px,100%); margin: 0 auto; padding: 0; list-style: none; text-align: left; }
.vs-scanning li { display: flex; align-items: center; gap: 8px; padding: 6px 0; color: #748178; font-size: 8px; }
.vs-scanning li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--vs-lime); box-shadow: 0 0 8px var(--vs-lime); }
.vs-result-card { width: 100%; }
.vs-result-card__head { display: flex; align-items: center; gap: 12px; padding-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,.07); }
.vs-result-card__icon { width: 49px; height: 49px; display: grid; place-items: center; border-radius: 13px; }
.vs-result-card__icon svg { width: 25px; height: 25px; }
.vs-result-card.is-safe .vs-result-card__icon { color: var(--vs-lime); background: rgba(104,239,130,.1); }
.vs-result-card.is-risk .vs-result-card__icon { color: var(--vs-red); background: rgba(255,102,94,.1); }
.vs-result-card.is-warning .vs-result-card__icon { color: var(--vs-amber); background: rgba(255,184,77,.1); }
.vs-result-card__head div { display: grid; gap: 2px; }
.vs-result-card__head small { color: #77847c; font-size: 7px; text-transform: uppercase; letter-spacing: .08em; }
.vs-result-card__head h4 { margin: 0; color: #f0f5f1; font-size: 15px; }
.vs-result-card__score { margin-left: auto; font-size: 20px; font-weight: 900; }
.vs-result-card.is-safe .vs-result-card__score { color: var(--vs-lime); }
.vs-result-card.is-risk .vs-result-card__score { color: var(--vs-red); }
.vs-result-card.is-warning .vs-result-card__score { color: var(--vs-amber); }
.vs-result-card__explain { margin: 14px 0; padding: 12px; border-radius: 10px; color: #a9b4ad; background: rgba(255,255,255,.03); font-size: 9px; line-height: 1.55; }
.vs-result-card ul { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.vs-result-card li { display: flex; align-items: flex-start; gap: 8px; color: #929f97; font-size: 8px; line-height: 1.45; }
.vs-result-card li svg { flex: 0 0 auto; width: 13px; height: 13px; color: var(--vs-lime); }
.vs-result-card.is-risk li svg { color: var(--vs-red); }
.vs-result-card.is-warning li svg { color: var(--vs-amber); }
.vs-result-card__note { display: block; margin-top: 13px; color: #5f6c64; font-size: 7px; }

.vs-filter-button { display: inline-flex; align-items: center; gap: 6px; padding: 8px 10px; border: 1px solid rgba(255,255,255,.08); border-radius: 9px; color: #98a59d; background: rgba(255,255,255,.02); font-size: 8px; font-weight: 800; }
.vs-filter-button svg { width: 12px; height: 12px; }
.vs-activity-list { margin-top: 25px; border: 1px solid rgba(255,255,255,.075); border-radius: 15px; overflow: hidden; }
.vs-activity-list article { min-height: 86px; display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 13px; padding: 0 18px; border-bottom: 1px solid rgba(255,255,255,.055); background: rgba(255,255,255,.018); }
.vs-activity-list article:last-child { border-bottom: 0; }
.vs-activity-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; }
.vs-activity-icon svg { width: 18px; height: 18px; }
.vs-activity-icon.is-received { color: var(--vs-lime); background: rgba(104,239,130,.08); }
.vs-activity-icon.is-sent { color: #8ea3ff; background: rgba(113,136,255,.09); }
.vs-activity-icon.is-blocked { color: var(--vs-red); background: rgba(255,102,94,.09); }
.vs-activity-list article > div, .vs-activity-list article > strong { display: grid; gap: 4px; }
.vs-activity-list b, .vs-activity-list strong { color: #dbe4de; font-size: 10px; }
.vs-activity-list small { color: #6d7a72; font-size: 8px; font-weight: 600; }
.vs-activity-list strong { text-align: right; }
.vs-risk-text { color: var(--vs-red) !important; }
.vs-recovery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 25px; }
.vs-recovery-grid article { min-height: 245px; padding: 20px; border: 1px solid rgba(255,255,255,.075); border-radius: 15px; background: rgba(255,255,255,.018); }
.vs-recovery-grid article > span { width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 34px; border-radius: 12px; color: #87958c; background: rgba(255,255,255,.05); }
.vs-recovery-grid article > span.is-complete { color: var(--vs-lime); background: rgba(104,239,130,.09); }
.vs-recovery-grid article > span svg { width: 21px; height: 21px; }
.vs-recovery-grid small { color: var(--vs-lime); font-size: 8px; font-weight: 800; }
.vs-recovery-grid h4 { margin: 5px 0 8px; color: #e5ede7; font-size: 12px; }
.vs-recovery-grid p { margin: 0; color: #758279; font-size: 9px; line-height: 1.6; }
.vs-recovery-cta { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 13px; padding: 15px 17px; border: 1px solid rgba(104,239,130,.15); border-radius: 14px; background: rgba(104,239,130,.045); }
.vs-recovery-cta > div { display: flex; align-items: center; gap: 12px; }
.vs-recovery-cta > div > svg { width: 27px; height: 27px; color: var(--vs-lime); }
.vs-recovery-cta span { display: grid; gap: 3px; }
.vs-recovery-cta small { color: #748178; font-size: 7px; text-transform: uppercase; letter-spacing: .08em; }
.vs-recovery-cta strong { color: #dce6df; font-size: 10px; }
.vs-recovery-cta .vs-button { min-height: 39px; padding-inline: 15px; border-radius: 9px; font-size: 9px; }

/* Benefit story */
.vs-benefits { padding: 108px 0 120px; background: #0a100c; }
.vs-benefit-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 15px; }
.vs-benefit-grid article { position: relative; min-height: 330px; padding: 28px; border: 1px solid rgba(255,255,255,.08); border-radius: 18px; background: linear-gradient(145deg, rgba(255,255,255,.032), rgba(255,255,255,.012)); overflow: hidden; }
.vs-benefit-grid article::after { content: ""; position: absolute; width: 180px; height: 180px; right: -90px; bottom: -90px; border-radius: 50%; background: rgba(104,239,130,.06); filter: blur(22px); }
.vs-benefit-grid article > span { display: block; margin-bottom: 68px; color: #647169; font-size: 11px; font-weight: 800; }
.vs-benefit-grid article > svg { width: 34px; height: 34px; color: var(--vs-lime); }
.vs-benefit-grid h3 { margin: 20px 0 10px; color: #eef5ef; font-size: 23px; letter-spacing: -.025em; }
.vs-benefit-grid p { max-width: 290px; margin: 0; color: #859188; font-size: 14px; line-height: 1.65; }

/* Founder funding story */
.vs-founder-story { position: relative; padding: 118px 0; background: radial-gradient(circle at 10% 0, rgba(104,239,130,.11), transparent 36%), #070b09; }
.vs-founder-story::before { content: ""; position: absolute; inset: 0; opacity: .08; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(90deg,#000,transparent 72%); pointer-events: none; }
.vs-founder-story__grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 72px; align-items: center; }
.vs-founder-story__copy h2 { max-width: 660px; margin: 17px 0 22px; color: #f5faf6; font-size: clamp(48px,5.5vw,72px); line-height: .98; letter-spacing: -.055em; }
.vs-founder-story__copy > p { max-width: 680px; margin: 0 0 17px; color: #94a198; font-size: 15px; line-height: 1.75; }
.vs-founder-story__copy > p.vs-founder-story__lead { color: #d4ddd6; font-size: 18px; }
.vs-founder-story blockquote { position: relative; display: grid; gap: 5px; margin: 28px 0; padding: 18px 20px 18px 23px; border: 1px solid rgba(104,239,130,.18); border-left: 3px solid var(--vs-lime); border-radius: 0 13px 13px 0; background: rgba(104,239,130,.05); }
.vs-founder-story blockquote strong { color: #f1f7f2; font-size: 13px; }
.vs-founder-story blockquote span { color: #8f9d94; font-size: 12px; line-height: 1.55; }
.vs-founder-story__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; }
.vs-text-link { padding: 0; border: 0; color: #a2afa6; background: transparent; font-size: 12px; font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }
.vs-text-link:hover { color: var(--vs-lime); }
.vs-funding-card { padding: 28px; border: 1px solid rgba(255,255,255,.11); border-radius: 22px; background: linear-gradient(145deg, rgba(25,37,30,.96), rgba(12,18,14,.98)); box-shadow: 0 38px 90px rgba(0,0,0,.38); }
.vs-funding-card__head { display: flex; align-items: center; gap: 13px; padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,.08); }
.vs-funding-card__head > span { flex: 0 0 auto; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 13px; color: #071008; background: var(--vs-lime); }
.vs-funding-card__head > span svg { width: 22px; height: 22px; }
.vs-funding-card__head small { display: block; color: var(--vs-lime); font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.vs-funding-card__head h3 { margin: 5px 0 0; color: #eef5ef; font-size: 19px; letter-spacing: -.025em; }
.vs-funding-list { display: grid; }
.vs-funding-list article { min-height: 87px; display: grid; grid-template-columns: 36px 1fr; align-items: center; gap: 12px; border-bottom: 1px solid rgba(255,255,255,.065); }
.vs-funding-list article > span { color: #647269; font-size: 9px; font-weight: 900; }
.vs-funding-list article > div { display: grid; gap: 4px; }
.vs-funding-list b { color: #dbe5de; font-size: 11px; }
.vs-funding-list small { color: #75837a; font-size: 9px; line-height: 1.45; }
.vs-funding-card__status { display: flex; align-items: center; gap: 10px; margin-top: 20px; padding: 13px; border: 1px solid rgba(104,239,130,.14); border-radius: 12px; background: rgba(104,239,130,.05); }
.vs-funding-card__status > i { flex: 0 0 auto; width: 8px; height: 8px; border-radius: 50%; background: var(--vs-lime); box-shadow: 0 0 13px var(--vs-lime); }
.vs-funding-card__status span { display: grid; gap: 2px; }
.vs-funding-card__status small { color: #708078; font-size: 7px; text-transform: uppercase; letter-spacing: .08em; }
.vs-funding-card__status b { color: #cfe0d3; font-size: 9px; }

/* Honest competitor and feature comparison */
.vs-compare { padding: 118px 0; color: #111a14; background: #eef0e9; }
.vs-compare .vs-kicker { color: #218f43; }
.vs-compare .vs-section-heading h2 { color: #0b130e; }
.vs-compare .vs-section-heading--split > p { color: #59665e; }
.vs-compare-legend { display: flex; flex-wrap: wrap; gap: 18px; margin: -6px 0 22px; color: #637068; font-size: 10px; font-weight: 750; }
.vs-compare-legend span { display: inline-flex; align-items: center; gap: 7px; }
.vs-compare-legend i { width: 8px; height: 8px; border-radius: 50%; }
.vs-compare-legend .is-live { background: #269848; }
.vs-compare-legend .is-limited { background: #c18c24; }
.vs-compare-legend .is-demo { background: #22372a; }
.vs-table-wrap { overflow-x: auto; border: 1px solid rgba(15,29,20,.12); border-radius: 18px; background: #f8faf5; box-shadow: 0 24px 60px rgba(23,41,29,.08); }
.vs-compare-table { width: 100%; min-width: 1010px; border-collapse: collapse; color: #243028; background: transparent; }
.vs-compare-table th, .vs-compare-table td { height: 76px; padding: 13px 15px; border-right: 1px solid rgba(15,29,20,.08); border-bottom: 1px solid rgba(15,29,20,.08); text-align: center; vertical-align: middle; }
.vs-compare-table tr:last-child th, .vs-compare-table tr:last-child td { border-bottom: 0; }
.vs-compare-table th:last-child, .vs-compare-table td:last-child { border-right: 0; }
.vs-compare-table thead th { height: 58px; color: #5c6961; background: #e8ece4; font-size: 10px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.vs-compare-table thead th:first-child, .vs-compare-table tbody th { width: 225px; text-align: left; }
.vs-compare-table tbody th { color: #17221a; background: #f3f6f0; font-size: 11px; font-weight: 850; line-height: 1.35; }
.vs-compare-table .is-viniseed { background: rgba(83,222,115,.09); }
.vs-compare-table thead .is-viniseed { color: #176d31; background: rgba(65,207,98,.18); }
.vs-cell { display: inline-flex; align-items: center; justify-content: center; min-height: 27px; padding: 5px 8px; border-radius: 7px; font-size: 8px; font-weight: 850; line-height: 1.25; }
.vs-cell.is-live { color: #176d32; background: #dff3e3; }
.vs-cell.is-limited { color: #885d13; background: #f7ead1; }
.vs-cell.is-demo { color: #eff8f1; background: #243a2c; }
.vs-cell.is-muted { color: #68746c; background: #e8ebe6; }
.vs-cell.is-unique { color: #09210f; background: var(--vs-lime); box-shadow: 0 6px 18px rgba(71,190,95,.16); }
.vs-compare-note { margin: 15px 0 0; color: #77827b; font-size: 9px; line-height: 1.65; }
.vs-compare-note a { color: #247c3b; font-weight: 800; text-decoration: underline; text-underline-offset: 2px; }
.vs-feature-catalog { margin-top: 92px; }
.vs-feature-catalog__head { display: grid; grid-template-columns: 1fr .75fr; align-items: end; gap: 50px; margin-bottom: 28px; }
.vs-feature-catalog__head h3 { margin: 11px 0 0; color: #0c150f; font-size: clamp(34px,4vw,50px); line-height: 1.04; letter-spacing: -.045em; }
.vs-feature-catalog__head > p { margin: 0; color: #647169; font-size: 13px; line-height: 1.65; }
.vs-feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.vs-feature-grid article { position: relative; min-height: 218px; padding: 22px; border: 1px solid rgba(13,26,17,.1); border-radius: 15px; background: rgba(255,255,255,.52); }
.vs-feature-grid article > svg { width: 28px; height: 28px; margin-top: 42px; color: #258c43; }
.vs-feature-grid h4 { margin: 13px 0 7px; color: #17221a; font-size: 16px; letter-spacing: -.02em; }
.vs-feature-grid p { margin: 0; color: #647068; font-size: 11px; line-height: 1.55; }
.vs-feature-status { position: absolute; top: 16px; right: 16px; padding: 5px 7px; border-radius: 6px; font-size: 7px; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
.vs-feature-status.is-demo { color: #eaf5ec; background: #243a2c; }
.vs-feature-status.is-planned { color: #7a5817; background: #f0dfbd; }
.vs-feature-status.is-physical { color: #0d4e21; background: #c8f5d1; }

/* Physical product */
.vs-metal { padding: 110px 0; color: var(--vs-dark-ink); background: var(--vs-light); }
.vs-metal__grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 75px; align-items: center; }
.vs-metal__image { position: relative; }
.vs-metal__image::before { content: ""; position: absolute; inset: 20px -15px -20px 30px; border-radius: 24px; background: #cdddca; transform: rotate(-3deg); }
.vs-metal__image img { position: relative; z-index: 1; display: block; width: 100%; aspect-ratio: 3/2; object-fit: cover; border-radius: 22px; box-shadow: 0 30px 70px rgba(25,40,29,.2); }
.vs-metal__image > span { position: absolute; z-index: 2; left: 15px; bottom: 14px; padding: 7px 9px; border-radius: 8px; color: rgba(255,255,255,.8); background: rgba(0,0,0,.58); backdrop-filter: blur(10px); font-size: 9px; }
.vs-metal__copy h2 { margin: 16px 0 22px; color: #0a110c; font-size: clamp(40px,4.7vw,62px); line-height: 1.02; letter-spacing: -.052em; }
.vs-metal__copy > p { margin: 0; color: #536057; font-size: 16px; line-height: 1.75; }
.vs-metal__copy ul { display: grid; gap: 15px; margin: 27px 0 31px; padding: 0; list-style: none; }
.vs-metal__copy li { display: flex; gap: 11px; color: #59655c; font-size: 13px; }
.vs-metal__copy li > svg { flex: 0 0 auto; width: 19px; height: 19px; padding: 3px; border-radius: 50%; color: #0b4f21; background: #b7f7c4; }
.vs-metal__copy li span { display: grid; gap: 2px; }
.vs-metal__copy li b { color: #162019; font-size: 13px; }

/* Progress */
.vs-build { padding: 110px 0; background: #080d0a; }
.vs-progress-grid { display: grid; gap: 12px; }
.vs-progress-grid article { min-height: 150px; display: grid; grid-template-columns: 100px 1fr; align-items: center; padding: 24px 32px; border: 1px solid rgba(255,255,255,.08); border-radius: 17px; background: rgba(255,255,255,.018); }
.vs-progress-grid article > span { color: #4d5a51; font-size: 13px; font-weight: 800; }
.vs-progress-grid article > div { position: relative; padding-left: 35px; border-left: 1px solid rgba(255,255,255,.08); }
.vs-progress-grid article > div > i { position: absolute; width: 9px; height: 9px; left: -5px; top: 5px; border: 2px solid #080d0a; border-radius: 50%; background: #546159; box-shadow: 0 0 0 1px rgba(255,255,255,.12); }
.vs-progress-grid article.is-live > div > i, .vs-progress-grid article.is-demo > div > i { background: var(--vs-lime); box-shadow: 0 0 15px rgba(104,239,130,.8); }
.vs-progress-grid small { display: block; color: #6f7d74; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.vs-progress-grid .is-live small { color: var(--vs-lime); }
.vs-progress-grid .is-demo small { color: #a9f6b6; }
.vs-progress-grid h3 { margin: 7px 0 5px; color: #e9f1eb; font-size: 21px; }
.vs-progress-grid p { margin: 0; color: #7e8a82; font-size: 13px; line-height: 1.55; }

/* FAQ and CTA */
.vs-faq { padding: 110px 0; color: var(--vs-dark-ink); background: #edf0e8; }
.vs-faq .vs-kicker { color: #238c45; }
.vs-faq__grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; }
.vs-faq__grid > div:first-child h2 { margin: 15px 0 18px; color: #0c140f; font-size: clamp(42px,5vw,62px); line-height: 1.02; letter-spacing: -.05em; }
.vs-faq__grid > div:first-child p { max-width: 390px; margin: 0; color: #657069; line-height: 1.7; }
.vs-accordion details { border-top: 1px solid rgba(12,20,15,.15); }
.vs-accordion details:last-child { border-bottom: 1px solid rgba(12,20,15,.15); }
.vs-accordion summary { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 16px; color: #172019; font-size: 15px; font-weight: 800; cursor: pointer; list-style: none; }
.vs-accordion summary::-webkit-details-marker { display: none; }
.vs-accordion summary svg { width: 17px; height: 17px; transition: transform .2s ease; }
.vs-accordion details[open] summary svg { transform: rotate(45deg); }
.vs-accordion details p { margin: -4px 48px 24px 0; color: #627068; font-size: 13px; line-height: 1.65; }
.vs-final-cta { padding: 110px 0; text-align: center; background: radial-gradient(circle at 50% 0, rgba(104,239,130,.13), transparent 46%), #070b09; }
.vs-final-cta .vs-container { max-width: 830px; }
.vs-final-cta h2 { margin: 17px 0 16px; color: #f5faf6; font-size: clamp(48px,6vw,74px); line-height: .98; letter-spacing: -.055em; }
.vs-final-cta p { max-width: 640px; margin: 0 auto; color: #92a097; font-size: 16px; line-height: 1.7; }
.vs-final-cta .vs-container > div { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 31px; }

/* Modals and toast */
.vs-modal { position: fixed; inset: 0; z-index: 99999; display: none; place-items: center; padding: 20px; }
.vs-modal.is-open { display: grid; }
.vs-modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.76); backdrop-filter: blur(9px); }
.vs-modal__panel { position: relative; z-index: 1; width: min(430px,100%); max-height: calc(100vh - 40px); overflow: auto; padding: 30px; border: 1px solid rgba(255,255,255,.13); border-radius: 22px; color: #edf4ef; background: #111914; box-shadow: 0 30px 90px rgba(0,0,0,.6); text-align: center; animation: vs-modal-in .25s ease; }
.vs-modal__panel--wide { width: min(500px,100%); text-align: left; }
@keyframes vs-modal-in { from { opacity: 0; transform: translateY(12px) scale(.98); } to { opacity: 1; transform: none; } }
.vs-modal__close { position: absolute; top: 15px; right: 15px; width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.08); border-radius: 9px; color: #9ba8a0; background: rgba(255,255,255,.03); }
.vs-modal__close svg { width: 16px; height: 16px; }
.vs-modal__icon { width: 48px; height: 48px; display: grid; place-items: center; margin: 0 auto 15px; border-radius: 14px; color: #061008; background: var(--vs-lime); }
.vs-modal__icon svg { width: 23px; height: 23px; }
.vs-modal__panel--wide .vs-modal__icon { margin-inline: 0; }
.vs-modal__panel > small { color: var(--vs-lime); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.vs-modal__panel h3 { margin: 7px 0 10px; color: #f4f8f5; font-size: 24px; letter-spacing: -.03em; }
.vs-modal__panel > p { margin: 0; color: #829087; font-size: 12px; line-height: 1.6; }
.vs-qr { width: 154px; height: 154px; display: grid; grid-template-columns: repeat(13,1fr); grid-template-rows: repeat(13,1fr); gap: 1px; margin: 21px auto; padding: 10px; border-radius: 10px; background: #f4f7f3; }
.vs-qr i { background: transparent; }
.vs-qr i.is-dark { background: #111914; }
.vs-copy-address { width: 100%; min-height: 47px; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 0 12px; border: 1px solid rgba(255,255,255,.09); border-radius: 10px; color: #d9e3dc; background: rgba(255,255,255,.025); font-size: 10px; font-weight: 800; }
.vs-copy-address svg { width: 14px; height: 14px; color: var(--vs-lime); }
.vs-modal__warning { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 14px; color: #d5a860; font-size: 9px; }
.vs-modal__warning svg { width: 14px; height: 14px; }
.vs-modal form { display: grid; gap: 15px; margin-top: 22px; }
.vs-modal label { display: grid; gap: 7px; color: #89968e; font-size: 10px; font-weight: 700; }
.vs-modal input { width: 100%; height: 48px; padding: 0 13px; border: 1px solid rgba(255,255,255,.1); border-radius: 10px; outline: none; color: #e9f0eb; background: rgba(255,255,255,.03); font-size: 11px; }
.vs-modal input:focus { border-color: rgba(104,239,130,.55); box-shadow: 0 0 0 3px rgba(104,239,130,.07); }
.vs-input-wrap { position: relative; }
.vs-input-wrap b { position: absolute; right: 13px; top: 50%; transform: translateY(-50%); color: var(--vs-lime); font-size: 10px; }
.vs-input-wrap input { padding-right: 55px; }
.vs-send-summary { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.vs-send-summary span { display: grid; gap: 4px; padding: 11px; border: 1px solid rgba(255,255,255,.07); border-radius: 9px; color: #75837a; background: rgba(255,255,255,.018); font-size: 8px; }
.vs-send-summary b { color: #dce5df; font-size: 10px; }
.vs-modal form .vs-button { min-height: 46px; font-size: 11px; }
.vs-text-button { padding: 0; border: 0; color: #96a39b; background: transparent; font-size: 9px; text-decoration: underline; text-underline-offset: 3px; }
.vs-toast { position: fixed; z-index: 100000; left: 50%; bottom: 24px; transform: translate(-50%, 20px); max-width: calc(100% - 32px); padding: 11px 15px; border: 1px solid rgba(104,239,130,.2); border-radius: 10px; color: #e8f2eb; background: #101913; box-shadow: 0 16px 50px rgba(0,0,0,.45); opacity: 0; pointer-events: none; transition: .25s ease; font-size: 11px; font-weight: 700; }
.vs-toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
body.vs-modal-open { overflow: hidden; }

/* Accessibility */
.vs-app button:focus-visible, .vs-app a:focus-visible, .vs-app summary:focus-visible, .vs-app input:focus-visible { outline: 3px solid rgba(104,239,130,.55); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  .vs-app *, .vs-app *::before, .vs-app *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Responsive */
@media (max-width: 1080px) {
  .vs-hero__grid { gap: 35px; }
  .vs-float-card--risk { right: -5px; }
  .vs-float-card--metal { left: -8px; }
  .vs-wallet-shell { grid-template-columns: 180px 1fr; }
  .vs-wallet-view { padding: 24px; }
  .vs-metal__grid { gap: 48px; }
}

@media (max-width: 900px) {
  .vs-hero { min-height: auto; padding: 86px 0 92px; }
  .vs-hero__grid { grid-template-columns: 1fr; }
  .vs-hero__copy { text-align: center; }
  .vs-hero__copy > p { margin-inline: auto; }
  .vs-hero__actions, .vs-hero__proof { justify-content: center; }
  .vs-hero__visual { min-height: 550px; }
  .vs-section-heading--split { grid-template-columns: 1fr; gap: 18px; }
  .vs-section-heading--split > p { max-width: 680px; }
  .vs-wallet-shell { display: block; }
  .vs-wallet-sidebar { display: block; padding: 13px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .vs-wallet-logo, .vs-sidebar-status { display: none; }
  .vs-wallet-nav { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; }
  .vs-wallet-nav button { justify-content: center; min-height: 44px; padding: 0 8px; }
  .vs-wallet-nav button.is-active { box-shadow: inset 0 -2px var(--vs-lime); }
  .vs-wallet-nav button i { display: none; }
  .vs-benefit-grid { grid-template-columns: 1fr; }
  .vs-benefit-grid article { min-height: 255px; }
  .vs-benefit-grid article > span { margin-bottom: 40px; }
  .vs-founder-story__grid { grid-template-columns: 1fr; gap: 48px; }
  .vs-funding-card { max-width: 720px; }
  .vs-feature-catalog__head { grid-template-columns: 1fr; gap: 15px; }
  .vs-feature-grid { grid-template-columns: repeat(2,1fr); }
  .vs-metal__grid { grid-template-columns: 1fr; }
  .vs-metal__image { max-width: 720px; }
  .vs-faq__grid { grid-template-columns: 1fr; gap: 45px; }
}

@media (max-width: 720px) {
  .vs-container { width: min(100% - 28px, 1180px); }
  .vs-hero__copy h1 { font-size: clamp(44px,13vw,68px); }
  .vs-hero__copy > p { font-size: 16px; }
  .vs-hero__proof { gap: 13px; }
  .vs-hero__visual { min-height: 520px; }
  .vs-phone-card { width: min(410px,89%); min-height: 480px; transform: none; }
  .vs-float-card { min-width: 175px; padding: 11px 13px; }
  .vs-float-card--risk { right: 0; top: 42px; }
  .vs-float-card--metal { left: 0; bottom: 25px; }
  .vs-demo-section, .vs-benefits, .vs-founder-story, .vs-compare, .vs-metal, .vs-build, .vs-faq, .vs-final-cta { padding-block: 78px; }
  .vs-demo-boost { align-items: flex-start; flex-direction: column; }
  .vs-demo-boost .vs-button { width: 100%; }
  .vs-wallet-topbar { padding: 0 16px; }
  .vs-wallet-view { padding: 20px 15px; }
  .vs-dashboard-head { align-items: flex-start; }
  .vs-overview-grid { grid-template-columns: 1fr; }
  .vs-shield-card { min-height: 250px; }
  .vs-score-ring { margin-top: 20px; }
  .vs-scenario-grid, .vs-recovery-grid { grid-template-columns: 1fr; }
  .vs-scenario-grid button { min-height: 78px; }
  .vs-scan-workspace { grid-template-columns: 1fr; }
  .vs-recovery-grid article { min-height: 190px; }
  .vs-recovery-grid article > span { margin-bottom: 20px; }
  .vs-recovery-cta { align-items: flex-start; flex-direction: column; }
  .vs-founder-story__copy h2 { font-size: clamp(44px,12vw,66px); }
  .vs-founder-story__grid { gap: 36px; }
  .vs-feature-catalog { margin-top: 68px; }
  .vs-feature-grid { grid-template-columns: 1fr; }
  .vs-feature-grid article { min-height: 195px; }
  .vs-progress-grid article { grid-template-columns: 55px 1fr; padding: 22px 18px; }
}

@media (max-width: 520px) {
  .vs-button { width: 100%; }
  .vs-hero__actions { display: grid; }
  .vs-hero__proof { align-items: center; flex-direction: column; }
  .vs-hero__visual { min-height: 470px; }
  .vs-phone-card { width: 100%; min-height: 445px; padding: 23px; border-radius: 23px; }
  .vs-phone-card__top { margin-bottom: 45px; }
  .vs-phone-card > strong { font-size: 35px; }
  .vs-mini-chart { height: 118px !important; }
  .vs-float-card--risk { top: 18px; right: -8px; }
  .vs-float-card--metal { left: -8px; bottom: 2px; }
  .vs-wallet-nav button { min-width: 0; flex-direction: column; gap: 3px; font-size: 8px; }
  .vs-wallet-nav button svg { width: 15px; height: 15px; }
  .vs-demo-boost > div { align-items: flex-start; }
  .vs-demo-boost strong { line-height: 1.45; }
  .vs-wallet-topbar { height: 67px; }
  .vs-network { display: none; }
  .vs-dashboard-head { display: grid; }
  .vs-action-row { width: 100%; }
  .vs-action-row button { flex: 1; }
  .vs-assets-card { overflow-x: auto; }
  .vs-assets-card .vs-asset-row { min-width: 480px; }
  .vs-view-heading { align-items: flex-start; }
  .vs-status-safe { display: none; }
  .vs-activity-list article { grid-template-columns: 38px 1fr; padding: 13px; }
  .vs-activity-list article > strong { grid-column: 2; text-align: left; }
  .vs-metal__image::before { inset: 15px -8px -15px 18px; }
  .vs-progress-grid article { grid-template-columns: 42px 1fr; }
  .vs-progress-grid article > div { padding-left: 22px; }
  .vs-founder-story__actions { display: grid; }
  .vs-founder-story__actions .vs-button { width: 100%; }
  .vs-funding-card { padding: 21px; }
  .vs-funding-card__head { align-items: flex-start; }
  .vs-compare-legend { display: grid; gap: 9px; }
  .vs-compare-table .is-viniseed { position: sticky; right: 0; z-index: 3; min-width: 124px; background: #e1f2e1; box-shadow: -9px 0 18px rgba(25,42,31,.08); }
  .vs-compare-table thead .is-viniseed { z-index: 4; background: #ccebcf; }
  .vs-feature-catalog__head h3 { font-size: 36px; }
  .vs-final-cta .vs-container > div { display: grid; }
  .vs-modal__panel { padding: 25px 20px; }
}
