
/* ── Venmo Sans (canonical fonts) ── */
@font-face {
  font-family: "Venmo Sans";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/venmo-sans/VenmoSans-w400.woff2") format("woff2");
}
@font-face {
  font-family: "Venmo Sans";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/venmo-sans/VenmoSans-w500.woff2") format("woff2");
}
@font-face {
  font-family: "Venmo Sans";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/venmo-sans/VenmoSans-w700.woff2") format("woff2");
}

:root {
  --font: "Venmo Sans", "Helvetica Neue", Arial, sans-serif;
  --fw-base: 400;
  --fw-strong: 500;
  --fw-headline: 700;
  --primary-bg: #FFFFFF;
  --tertiary-1-bg: #4BB4FF;
  --secondary-bg: #0074DE;
  --extended-1-bg: #3F34EE;
  --text-h1: clamp(2.5rem, 4.9vw, 5.5rem);
  --lh-h1: .95;
  --ls-h1: -0.03em;
  --text-h2: clamp(2rem, 1.107rem + 1.786vw, 3.125rem);
  --lh-h2: .95;
  --ls-h2: -0.03em;
  --text-body: clamp(1rem, .893rem + .214vw, 1.071rem);
  --lh-body: 1.35;
  --text-product: clamp(1.071rem, .929rem + .286vw, 1.25rem);
  --lh-product: 1.35;
  --btn-h: 3rem;
  --btn-pad-y: 1rem;
  --btn-pad-x: 1.25rem;
  --btn-fs: clamp(1rem, .857rem + .223vw, 1.125rem);
  --btn-lh: clamp(1rem, .429rem + .893vw, 1.5rem);
  --btn-fw: 500;
  --btn-radius: 1.5rem;
  --section-pad-top: 4.95rem;
  --section-pad-bot: 3.3rem;
  --media-radius: clamp(1.5rem, .605rem + 2.18vw, 2rem);
  --nav-h: 88px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  font-weight: var(--fw-base);
  color: #000;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
img, video { display: block; max-width: 100%; }

/* NAV */
.site-header {
  position: sticky; top: 0; z-index: 200; background: #fff;
  height: var(--nav-h); border-bottom: 1px solid rgba(0,0,0,.12);
  display: flex; align-items: center;
}
.nav-wrap {
  width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; gap: 0;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; margin-right: 2rem; }
.nav-logo-img { height: 20px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 0; flex: 1; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  font-size: var(--text-body); font-weight: var(--fw-base); color: #000;
  padding: 0 .75rem; height: 44px; border-radius: .5rem;
  transition: background .15s; white-space: nowrap; cursor: pointer;
}
.nav-link:hover { background: rgba(0,0,0,.06); }
.nav-link svg { opacity: .6; }
.nav-actions { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }
.nav-help {
  font-size: var(--text-body); font-weight: var(--fw-base); color: #000;
  padding: 0 .75rem; height: 44px; display: flex; align-items: center;
  border-radius: .5rem; transition: background .15s; cursor: pointer; white-space: nowrap;
}
.nav-help:hover { background: rgba(0,0,0,.06); }
.btn-login {
  background: rgba(0,0,0,.1); color: #000; font-size: var(--btn-fs);
  font-weight: var(--btn-fw); line-height: var(--btn-lh);
  padding: var(--btn-pad-y) var(--btn-pad-x); height: var(--btn-h);
  border-radius: var(--btn-radius); transition: background .15s; white-space: nowrap;
}
.btn-login:hover { background: rgba(0,0,0,.16); }
.btn-signup {
  background: #000; color: #fff; font-size: var(--btn-fs);
  font-weight: var(--btn-fw); line-height: var(--btn-lh);
  padding: var(--btn-pad-y) var(--btn-pad-x); height: var(--btn-h);
  border-radius: var(--btn-radius); transition: opacity .15s; white-space: nowrap;
}
.btn-signup:hover { opacity: .85; }
.btn-hamburger {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  transition: background .15s; margin-left: .25rem;
}
.btn-hamburger:hover { background: rgba(0,0,0,.06); }

/* SHARED WRAPPER */
.section-content { max-width: 1044px; margin: 0 auto; padding: 0 2rem; }

/* HERO */
.hero {
  background: var(--tertiary-1-bg);
  padding: var(--section-pad-top) 0 var(--section-pad-bot);
  text-align: center;
}
.hero-text { padding: 0 2rem; }
.hero h1 {
  font-size: var(--text-h1); font-weight: var(--fw-headline);
  line-height: var(--lh-h1); letter-spacing: var(--ls-h1);
  color: #000; text-wrap: balance; margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: var(--text-body); font-weight: var(--fw-base); line-height: var(--lh-body);
  color: #000; max-width: 480px; margin: 0 auto .75rem; text-wrap: balance;
}
.hero-badges { display: flex; justify-content: center; gap: .75rem; margin-bottom: .75rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #000; color: #fff; padding: .625rem 1.125rem;
  border-radius: .625rem; text-decoration: none; transition: opacity .15s;
}
.hero-badge:hover { opacity: .85; }
.hero-badge svg { flex-shrink: 0; }
.hero-badge-text { display: flex; flex-direction: column; text-align: left; }
.hero-badge-pre { font-size: .625rem; opacity: .75; line-height: 1.2; }
.hero-badge-name { font-size: .9375rem; font-weight: 700; line-height: 1.2; }
.hero-form {
  display: flex; justify-content: center; gap: .5rem;
  margin: 0 auto 1rem; max-width: 480px;
}
.hero-email {
  flex: 1; min-width: 0; height: 48px; padding: 0 16px;
  font-family: var(--font); font-size: 1rem; font-weight: 400;
  color: #000; background: #fff; border: 2px solid transparent;
  border-radius: var(--btn-radius); outline: none; transition: border-color .15s;
  -webkit-appearance: none; appearance: none;
}
.hero-email::placeholder { color: #aaa; }
.hero-email:focus { border-color: rgba(0,0,0,.3); }
.hero-email.error { border-color: #c0392b; }
.hero-submit {
  flex-shrink: 0; height: 48px; padding: 0 1.375rem;
  font-family: var(--font); font-size: 1rem; font-weight: 700;
  color: #fff; background: #000; border: none; border-radius: var(--btn-radius);
  cursor: pointer; transition: opacity .15s; white-space: nowrap;
}
.hero-submit:hover { opacity: .85; }
.hero-disclaimer { font-size: .857rem; color: rgba(0,0,0,.55); margin-bottom: 2rem; }
.hero-media {
  max-width: clamp(860px, 60vw, 1200px); margin: 0 auto 0;
  border-radius: var(--media-radius) var(--media-radius) 0 0;
  overflow: hidden; aspect-ratio: 16 / 9;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

/* WAYS */
.ways-header { background: var(--primary-bg); padding: var(--section-pad-top) 0 0; text-align: center; }
.ways-header h2 {
  font-size: var(--text-h2); font-weight: var(--fw-headline);
  line-height: var(--lh-h2); letter-spacing: var(--ls-h2); color: #000; text-wrap: balance;
}

/* PRODUCT TABS */
.product-section { background: var(--primary-bg); padding-bottom: var(--section-pad-bot); min-height: 600px; }
.product-inner {
  max-width: 1044px; margin: 0 auto; padding: 2.8rem 2rem 0;
  display: grid; grid-template-columns: 260px 1fr; gap: 0 80px; align-items: start;
}
.tab-list { display: flex; flex-direction: column; padding-top: .5rem; }
.tab-btn {
  font-size: clamp(1.75rem, 1.286rem + .893vw, 2.375rem); font-weight: var(--fw-headline);
  line-height: 1.1; letter-spacing: -.02em; color: rgba(0,0,0,.18);
  text-align: left; padding: .25rem 0; cursor: pointer; background: none; border: none;
  font-family: var(--font); transition: color .2s;
}
.tab-btn.active { color: #000; }
.tab-btn:hover:not(.active) { color: rgba(0,0,0,.45); }
.tab-desc { display: none; padding-top: .5rem; }
.tab-desc.active { display: block; }
.tab-desc p {
  font-size: var(--text-product); font-weight: var(--fw-base); line-height: var(--lh-product);
  color: #000; margin-bottom: 1.75rem; max-width: 520px; text-wrap: balance;
}
.tab-desc p sup { font-size: .65em; }
.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font); font-size: var(--btn-fs); font-weight: var(--btn-fw);
  line-height: var(--btn-lh); height: var(--btn-h); padding: var(--btn-pad-y) var(--btn-pad-x);
  border-radius: var(--btn-radius); background: rgba(0,0,0,.08); color: #000;
  cursor: pointer; transition: background .15s; border: none;
}
.btn-secondary:hover { background: rgba(0,0,0,.14); }
.product-media {
  display: none; margin-top: 2.5rem; border-radius: var(--media-radius);
  overflow: hidden; width: 100%; max-width: 560px;
}
.product-media.active { display: block; }
.product-media img { width: 100%; height: auto; display: block; }

/* TRIPS */
.trips-section { background: var(--primary-bg); padding: var(--section-pad-top) 0 0; text-align: center; }
.trips-section h2 {
  font-size: var(--text-h2); font-weight: var(--fw-headline);
  line-height: var(--lh-h2); letter-spacing: var(--ls-h2); color: #000;
  margin-bottom: 1.25rem; text-wrap: balance;
}
.trips-section .trips-sub {
  font-size: var(--text-body); line-height: var(--lh-body); color: #000;
  max-width: 640px; margin: 0 auto 2rem; text-wrap: balance;
}
.trips-section .trips-sub strong { font-weight: var(--fw-strong); }
.trips-media { max-width: 860px; margin: 2.5rem auto 0; border-radius: var(--media-radius); overflow: hidden; position: relative; }
.trips-media-img {
  width: 100%; background: linear-gradient(160deg, #1e3320 0%, #2d5023 35%, #8b7355 65%, #6b5a3e 100%);
  aspect-ratio: 16/8; position: relative; display: flex; align-items: flex-start;
  justify-content: center; padding: 2rem 1rem 0; gap: 1rem;
}
.pay-bubble {
  background: #fff; border-radius: 1rem; padding: 1rem 1.125rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.2); min-width: 240px; text-align: left;
}
.pay-bubble-row { display: flex; align-items: center; gap: .625rem; font-size: .9375rem; line-height: 1.4; margin-bottom: .5rem; }
.avatar-sm { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; }
.pay-comment { display: flex; align-items: center; gap: .375rem; color: #666; font-size: .8125rem; }
.reaction-pill {
  background: #fff; border-radius: 999px; padding: .625rem 1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.2); display: flex; align-items: center; gap: .5rem;
  font-size: .875rem; font-weight: var(--fw-strong); margin-top: 5rem; align-self: flex-start; white-space: nowrap;
}
.avatar-xs { width: 22px; height: 22px; border-radius: 50%; }

/* STASH */
.stash-section { background: var(--extended-1-bg); padding: var(--section-pad-top) 0 0; text-align: center; overflow: hidden; }
.stash-section h2 {
  font-size: var(--text-h2); font-weight: var(--fw-headline); line-height: var(--lh-h2);
  letter-spacing: var(--ls-h2); color: #fff; margin-bottom: 1.25rem; text-wrap: balance;
}
.stash-sub { font-size: var(--text-body); line-height: var(--lh-body); color: rgba(255,255,255,.85); max-width: 640px; margin: 0 auto 1rem; text-wrap: balance; }
.stash-footnote { font-size: .8125rem; color: rgba(255,255,255,.5); max-width: 520px; margin: 0 auto 2rem; line-height: 1.5; }
.stash-footnote a { color: rgba(255,255,255,.7); text-decoration: underline; }
.btn-stash {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font); font-size: var(--btn-fs); font-weight: var(--btn-fw);
  line-height: var(--btn-lh); height: var(--btn-h); padding: var(--btn-pad-y) var(--btn-pad-x);
  border-radius: var(--btn-radius); background: #fff; color: var(--extended-1-bg);
  cursor: pointer; border: none; margin-bottom: 3rem; transition: opacity .15s;
}
.btn-stash:hover { opacity: .9; }
.stash-phone-wrap { max-width: 340px; margin: 0 auto; }
.phone-shell { background: linear-gradient(160deg,#c44daa 0%,#7c3aed 50%,#1e40af 100%); border-radius: 2.25rem 2.25rem 0 0; padding: 1rem 1rem 0; box-shadow: 0 -8px 48px rgba(0,0,0,.4); }
.phone-screen { background: linear-gradient(160deg,#e879aa 0%,#9333ea 55%,#1d4ed8 100%); border-radius: 1.5rem 1.5rem 0 0; padding: 1.25rem; min-height: 420px; }
.phone-notch { width: 70px; height: 5px; background: rgba(0,0,0,.2); border-radius: 999px; margin: 0 auto 1rem; }
.phone-status { display: flex; justify-content: space-between; font-size: .75rem; color: rgba(255,255,255,.8); margin-bottom: 1rem; }
.stash-card-ui { background: rgba(255,255,255,.14); border-radius: 1rem; padding: 1rem; backdrop-filter: blur(8px); }
.stash-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.stash-eyebrow { font-size: .625rem; color: rgba(255,255,255,.6); letter-spacing: .06em; text-transform: uppercase; margin-bottom: .25rem; }
.stash-title { font-size: 1rem; font-weight: var(--fw-headline); color: #fff; }
.check-circle { width: 22px; height: 22px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; }
.brand-row { display: flex; gap: .5rem; margin-bottom: .5rem; }
.brand-dot { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .5rem; font-weight: 700; color: #fff; flex-shrink: 0; }
.brands-label { font-size: .75rem; color: rgba(255,255,255,.65); margin-bottom: 1rem; }
.stash-feature { display: flex; align-items: flex-start; gap: .625rem; font-size: .8125rem; color: rgba(255,255,255,.9); margin-bottom: .625rem; line-height: 1.4; }
.feat-icon { width: 26px; height: 26px; min-width: 26px; border-radius: 50%; background: rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; font-size: .875rem; margin-top: .0625rem; }
.btn-confirm { width: 100%; margin-top: 1rem; background: #fff; color: var(--extended-1-bg); border: none; border-radius: var(--btn-radius); padding: .875rem; font-size: .9375rem; font-weight: var(--fw-headline); font-family: var(--font); cursor: pointer; }
.confirm-terms { font-size: .6875rem; color: rgba(255,255,255,.4); text-align: center; margin-top: .5rem; }

/* CRYPTO */
.crypto-section { background: var(--primary-bg); padding: var(--section-pad-top) 0 var(--section-pad-bot); }
.split-layout { max-width: 1044px; margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.split-text h2 { font-size: clamp(1.75rem, 1.036rem + 1.429vw, 2.607rem); font-weight: var(--fw-headline); line-height: .95; letter-spacing: -.025em; color: #000; margin-bottom: 1rem; text-wrap: balance; }
.split-text p { font-size: var(--text-product); line-height: var(--lh-product); color: #000; margin-bottom: 1.75rem; text-wrap: balance; }
.split-text p sup { font-size: .65em; }
.crypto-list-card { background: #fff; border-radius: 1.25rem; box-shadow: 0 4px 32px rgba(0,0,0,.1); overflow: hidden; }
.crypto-list-header { display: flex; align-items: center; gap: .75rem; padding: 1rem 1.25rem; border-bottom: 1px solid #f0f0f0; }
.crypto-back { width: 30px; height: 30px; border-radius: 50%; background: #f2f2f2; display: flex; align-items: center; justify-content: center; font-size: .875rem; color: #333; flex-shrink: 0; }
.crypto-list-title { font-size: .9375rem; font-weight: var(--fw-strong); }
.crypto-row { display: flex; align-items: center; gap: .875rem; padding: .875rem 1.25rem; border-bottom: 1px solid #f7f7f7; }
.crypto-row:last-child { border-bottom: none; }
.crypto-ico { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .9375rem; flex-shrink: 0; }
.crypto-name { font-size: .9375rem; font-weight: var(--fw-strong); }
.crypto-ticker { font-size: .8125rem; color: #888; }

/* BIZ */
.biz-section { background: var(--primary-bg); padding: 0 0 var(--section-pad-bot); }
.biz-card-ui { background: #f5f5f5; border-radius: 1.25rem; padding: 1.5rem; width: 290px; }
.biz-profile { display: flex; align-items: center; gap: .875rem; margin-bottom: 1.25rem; }
.biz-ava { width: 50px; height: 50px; border-radius: .875rem; background: linear-gradient(135deg,#ff6b6b,#ee5a24); display: flex; align-items: center; justify-content: center; font-size: 1.375rem; flex-shrink: 0; }
.biz-name-text { font-size: 1rem; font-weight: var(--fw-headline); }
.biz-handle { font-size: .8125rem; color: #888; }
.biz-stats { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-bottom: 1.25rem; }
.biz-stat { background: #fff; border-radius: .875rem; padding: 1rem; }
.biz-stat-val { font-size: 1.375rem; font-weight: 800; }
.biz-stat-lbl { font-size: .75rem; color: #888; margin-top: .125rem; }
.btn-biz { width: 100%; background: #000; color: #fff; border: none; border-radius: var(--btn-radius); padding: .875rem; font-size: .9375rem; font-weight: var(--fw-strong); font-family: var(--font); cursor: pointer; }

/* APP */
.app-section { background: #f2f2f2; padding: var(--section-pad-top) 2rem var(--section-pad-bot); text-align: center; }
.app-section h2 { font-size: clamp(3.5rem, 1.786rem + 4vw, 6.625rem); font-weight: 400; line-height: .9; letter-spacing: -.06em; color: #000; margin-bottom: 1rem; text-wrap: balance; }
.app-sub { font-size: var(--text-body); color: #555; margin-bottom: 2rem; }
.app-badges { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.badge-pill { display: inline-flex; align-items: center; gap: .625rem; background: #000; color: #fff; padding: .875rem 1.375rem; border-radius: .875rem; text-decoration: none; transition: opacity .15s; }
.badge-pill:hover { opacity: .85; }
.badge-icon { font-size: 1.75rem; line-height: 1; }
.badge-text { text-align: left; }
.badge-pre { font-size: .6875rem; opacity: .75; display: block; }
.badge-name { font-size: 1.0625rem; font-weight: var(--fw-headline); display: block; line-height: 1.2; }

/* FOOTER */
.site-footer { background: #fff; border-top: 1px solid rgba(0,0,0,.1); padding: 3rem 2rem; }
.footer-inner { max-width: 1044px; margin: 0 auto; }
.footer-logo { margin-bottom: 1.5rem; }
.footer-logo img { height: 16px; width: auto; }
.footer-links { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; margin-bottom: 2rem; }
.footer-links a { font-size: .875rem; color: #444; text-decoration: underline; text-decoration-color: rgba(0,0,0,.2); }
.footer-links a:hover { color: #000; }
.footer-legal { font-size: .8125rem; color: #888; line-height: 1.7; max-width: 760px; }
.footer-legal p { margin-bottom: .75rem; }

/* RESPONSIVE */
@media (max-width: 992px) {
  .product-inner { grid-template-columns: 1fr; gap: 0; }
  .product-media { max-width: 100%; }
  .split-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .split-layout .split-visual { order: -1; }
  .crypto-list-card { max-width: 360px; }
  .biz-card-ui { width: 100%; max-width: 340px; }
}
@media (max-width: 768px) {
  :root { --section-pad-top: 2.8rem; --section-pad-bot: 2rem; --nav-h: 60px; }
  .nav-links { display: none; }
  .nav-help { display: none; }
  .nav-logo { margin-right: auto; }
  .hero h1 { font-size: clamp(2rem, 1.5rem + 2.5vw, 2.5rem); }
  .hero-media { border-radius: 1rem 1rem 0 0; }
  .ways-header h2, .trips-section h2, .stash-section h2 { font-size: clamp(1.75rem, 1.25rem + 2.5vw, 2.5rem); }
  .tab-list { flex-direction: row; gap: 1rem; overflow-x: auto; padding-bottom: .5rem; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .tab-list::-webkit-scrollbar { display: none; }
  .tab-btn { font-size: 1.5rem; white-space: nowrap; }
  .tab-btn:not(.active) { color: rgba(0,0,0,.35); }
  .trips-media-img { aspect-ratio: 4/3; padding: 1.5rem 1rem 0; }
  .pay-bubble { min-width: 200px; }
  .split-layout { gap: 2rem; }
  .app-section h2 { font-size: clamp(2.5rem, 1.5rem + 3vw, 4.5rem); }
}
@media (max-width: 480px) {
  .section-content, .footer-inner { padding: 0 1rem; }
  .nav-wrap { padding: 0 1rem; }
  .hero-text { padding: 0 1rem; }
  .hero-badges { flex-wrap: wrap; gap: .5rem; }
  .hero-badge { flex: 1 1 calc(50% - .25rem); justify-content: center; padding: .5rem .875rem; }
  .product-inner { padding: 2rem 1rem 0; }
  .app-section { padding: 2.8rem 1rem 2rem; }
  .site-footer { padding: 2rem 1rem; }
}
@media (max-width: 360px) {
  .hero-badges { flex-direction: column; align-items: center; }
  .hero-badge { width: 100%; max-width: 200px; }
}
