/* TreasuryNow Landing Page */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #08080b;
  --surface: #101014;
  --surface-2: #17171c;
  --border: #222228;
  --text: #f0eff4;
  --text-2: #8a8a98;
  --text-3: #4a4a56;
  --green: #4ade80;
  --green-dim: rgba(74, 222, 128, 0.1);
  --yellow: #e8e43e;
  --yellow-dim: rgba(232, 228, 62, 0.08);
  --red: #f87171;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Nav ──────────────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  background: rgba(8, 8, 11, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.03em;
  color: var(--text);
  text-decoration: none;
}

.nav-logo span { color: var(--yellow); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover { color: var(--text); background: var(--surface); }

.nav-cta {
  background: var(--yellow) !important;
  color: #08080b !important;
  font-weight: 600 !important;
  transition: opacity 0.2s !important;
}

.nav-cta:hover { opacity: 0.85; }

/* Mobile nav */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text-2);
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav-hamburger:hover { color: var(--text); background: var(--surface); }
.nav-hamburger svg { display: block; width: 20px; height: 20px; }

.nav-links.mobile-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 8px 20px 16px;
  gap: 4px;
}

.nav-links.mobile-open a { display: flex !important; }

@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-hamburger { display: flex; align-items: center; }
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-links { position: relative; }
}

/* ── Hero ─────────────────────────────────────────────────────── */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(232,228,62,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow-dim);
  border: 1px solid rgba(232, 228, 62, 0.2);
  color: var(--yellow);
  border-radius: 100px;
  padding: 6px 16px 6px 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 32px;
}

.hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  max-width: 900px;
}

.hero h1 .hl {
  color: var(--yellow);
  position: relative;
  display: inline-block;
}

.hero-sub {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--text-2);
  max-width: 540px;
  line-height: 1.6;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: #08080b;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  transition: opacity 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover { opacity: 0.88; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-2);
  text-decoration: none;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
  transition: color 0.2s;
  border: none;
  cursor: pointer;
}

.btn-ghost:hover { color: var(--text); }

.hero-note {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  border-top: 1px solid var(--border);
  padding-top: 40px;
  margin-top: 40px;
}

.hero-stat { text-align: center; }
.hero-stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  display: block;
}
.hero-stat-label {
  font-size: 13px;
  color: var(--text-3);
  margin-top: 4px;
  display: block;
}

/* ── Trusted by ─────────────────────────────────────────────── */

.trusted {
  padding: 48px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.trusted-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-bottom: 28px;
}

.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trusted-logo {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-3);
  letter-spacing: -0.02em;
  transition: color 0.2s;
}

.trusted-logo:hover { color: var(--text-2); }

/* ── Features ──────────────────────────────────────────────── */

.features {
  padding: 120px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--yellow);
  margin-bottom: 16px;
}

.section-heading {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 18px;
  color: var(--text-2);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 64px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.feature-card {
  background: var(--surface);
  padding: 36px 32px;
  transition: background 0.2s;
}

.feature-card:hover { background: var(--surface-2); }

.feature-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--yellow-dim);
  border: 1px solid rgba(232, 228, 62, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--yellow);
}

.feature-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* ── How it works ─────────────────────────────────────────── */

.how {
  padding: 80px 24px 120px;
  max-width: 1100px;
  margin: 0 auto;
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 64px;
  position: relative;
}

.step-item { position: relative; }

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  display: block;
}

.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.step-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .steps-row { grid-template-columns: 1fr; gap: 32px; }
}

/* ── Fee transparency ──────────────────────────────────────── */

.fees {
  padding: 80px 24px 120px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.fees-inner { max-width: 900px; margin: 0 auto; }

.fee-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  margin-top: 48px;
}

.fee-amount {
  font-family: 'Syne', sans-serif;
  font-size: 72px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
}

.fee-amount span { font-size: 32px; color: var(--text-2); font-weight: 500; }

.fee-note {
  font-size: 16px;
  color: var(--text-2);
  margin: 8px 0 40px;
}

.fee-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
}

.fee-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-dim);
  color: var(--green);
  border: 1px solid rgba(74, 222, 128, 0.15);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
}

.fee-tag svg { width: 14px; height: 14px; }

.fee-table {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 40px;
}

.fee-table-row {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  align-items: center;
  gap: 24px;
}

.fee-table-row:last-child { border-bottom: none; }
.fee-table-row:nth-child(even) { background: rgba(255,255,255,0.02); }

.fee-table-label { font-size: 14px; font-weight: 600; }
.fee-table-desc { font-size: 13px; color: var(--text-2); margin-top: 2px; }
.fee-table-price { font-size: 14px; color: var(--green); font-weight: 600; white-space: nowrap; }

/* ── Testimonials ─────────────────────────────────────────── */

.testimonials {
  padding: 80px 24px 120px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.2s;
}

.testimonial-card:hover { border-color: rgba(232, 228, 62, 0.2); }

.testimonial-stars {
  display: flex;
  gap: 3px;
  color: var(--yellow);
}

.testimonial-stars svg { width: 16px; height: 16px; }

.testimonial-quote {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--yellow-dim);
  border: 1px solid rgba(232, 228, 62, 0.2);
  color: var(--yellow);
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-name {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}

.testimonial-meta {
  font-size: 12px;
  color: var(--text-3);
}

.testimonial-meta strong { color: var(--text-2); font-weight: 600; }

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ── CTA ──────────────────────────────────────────────────── */

.cta-section {
  padding: 120px 24px;
  text-align: center;
}

.cta-inner { max-width: 640px; margin: 0 auto; }

.cta-heading {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.cta-sub {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-disclaimer {
  font-size: 13px;
  color: var(--text-3);
  margin-top: 16px;
}

/* ── Footer ─────────────────────────────────────────────────── */

.footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.footer-logo span { color: var(--yellow); }

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

.footer-links a {
  font-size: 13px;
  color: var(--text-3);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--text-2); }

.footer-copy { font-size: 13px; color: var(--text-3); }

/* ── Waitlist Modal ─────────────────────────────────────────── */

.waitlist-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 11, 0.75);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.waitlist-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.waitlist-modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  width: 100%;
  max-width: 440px;
  position: relative;
}

.waitlist-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.waitlist-modal-close:hover { background: var(--border); }

.waitlist-modal-close svg { width: 14px; height: 14px; }

.waitlist-title {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.waitlist-sub {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
  margin-bottom: 28px;
}

.waitlist-form { display: flex; flex-direction: column; gap: 12px; }

.waitlist-form .form-group { display: flex; flex-direction: column; gap: 6px; }

.waitlist-form label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
}

.waitlist-form input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.waitlist-form input::placeholder { color: var(--text-3); }

.waitlist-form input:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(232, 228, 62, 0.12);
}

.waitlist-form input.error { border-color: var(--red); }

.waitlist-form .form-error {
  font-size: 12px;
  color: var(--red);
  display: none;
}

.waitlist-form .form-error.visible { display: block; }

.waitlist-form button[type="submit"] {
  margin-top: 8px;
  background: var(--yellow);
  color: #08080b;
  border: none;
  border-radius: 12px;
  padding: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.waitlist-form button[type="submit"]:hover { background: #f5e83a; }
.waitlist-form button[type="submit"]:active { transform: scale(0.98); }
.waitlist-form button[type="submit"]:disabled { opacity: 0.5; cursor: not-allowed; }

.waitlist-form button[type="submit"] svg { width: 16px; height: 16px; }

.waitlist-success {
  text-align: center;
  padding: 16px 0;
  display: none;
}

.waitlist-success.visible { display: block; }

.waitlist-success-icon {
  width: 56px;
  height: 56px;
  background: var(--green-dim);
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.waitlist-success-icon svg { width: 28px; height: 28px; color: var(--green); }

.waitlist-success h3 {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.waitlist-success p { font-size: 14px; color: var(--text-2); line-height: 1.5; }

.waitlist-disclaimer {
  font-size: 12px;
  color: var(--text-3);
  text-align: center;
  margin-top: 12px;
}

/* ── Cash a Check Modal ─────────────────────────────────────── */

.cash-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 11, 0.75);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.cash-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cash-modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  width: 100%;
  max-width: 440px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.cash-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.cash-modal-close:hover { background: var(--border); }
.cash-modal-close svg { width: 14px; height: 14px; }

.cash-title {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.cash-sub {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
  margin-bottom: 24px;
}

/* Step visibility */
.cash-step { display: none; }
.cash-step.active { display: block; }

/* Capture step */
.cash-capture-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.cash-slot {
  position: relative;
  border: 2px dashed var(--border);
  border-radius: 12px;
  overflow: hidden;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s;
}

.cash-slot:hover { border-color: var(--yellow); }

.cash-slot-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 12px;
  cursor: pointer;
  color: var(--text-2);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  width: 100%;
}

.cash-slot-label svg { width: 28px; height: 28px; }

.cash-slot input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.cash-preview {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cash-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Buttons */
.cash-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  border: none;
}

.cash-btn-primary {
  background: var(--yellow);
  color: #08080b;
}

.cash-btn-primary:hover { background: #f5e83a; }
.cash-btn-primary:active { transform: scale(0.98); }
.cash-btn-primary:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }
.cash-btn-primary svg { width: 16px; height: 16px; }

.cash-btn-ghost {
  background: var(--surface-2);
  color: var(--text-2);
  border: 1px solid var(--border);
  margin-top: 12px;
}

.cash-btn-ghost:hover { background: var(--border); color: var(--text); }

/* KYC form */
.cash-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cash-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cash-form label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.02em;
}

.cash-form input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.cash-form input::placeholder { color: var(--text-3); }

.cash-form input:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(232, 228, 62, 0.12);
}

.cash-form-row {
  flex-direction: row !important;
  gap: 10px;
}

.cash-form-row .form-group {
  flex: 1;
}

.cash-kyc-note {
  font-size: 13px;
  min-height: 18px;
  line-height: 1.4;
}

/* Success step */
.cash-success {
  text-align: center;
  padding: 12px 0 4px;
}

.cash-success-icon {
  width: 64px;
  height: 64px;
  background: var(--green-dim);
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.cash-success-icon svg { width: 32px; height: 32px; color: var(--green); }

.cash-success h3 {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.cash-success p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
  margin-bottom: 4px;
}

.cash-success-amount {
  font-family: 'Syne', sans-serif;
  font-size: 32px !important;
  font-weight: 800;
  color: var(--yellow) !important;
  margin: 16px 0 4px !important;
}

.cash-success-ref {
  font-size: 12px !important;
  color: var(--text-3) !important;
  margin-bottom: 20px !important;
}