:root {
  --shades-50: #fff;
  --shades-100: #000;
  --neutral-50: #e6e8ef;
  --neutral-100: #c7cbdc;
  --neutral-200: #a3a8bd;
  --neutral-300: #8188a7;
  --neutral-400: #5f6891;
  --neutral-500: #38426b;
  --neutral-600: #283157;
  --neutral-700: #1b213c;
  --neutral-800: #141a30;
  --neutral-900: #101423;
  --neutral-950: #0a0f1f;
  --yellow-50: #fffde5;
  --yellow-100: #fff0b3;
  --yellow-200: #ffe680;
  --yellow-300: #ffdb4d;
  --yellow-400: #ffd222;
  --yellow-500: #e6b800;
  --orange-100: #fcdcb5;
  --orange-200: #fbc584;
  --green-300: #62ea99;
  --green-400: #35e47b;
  --blue-200: #809bff;
  --violet-300: #7753f9;

  --bg: var(--neutral-800);
  --bg-2: var(--neutral-900);
  --panel: var(--neutral-700);
  --panel-2: var(--neutral-600);
  --line: rgba(179, 195, 255, 0.15);
  --line-strong: rgba(179, 195, 255, 0.2);
  --text: var(--shades-50);
  --muted: var(--neutral-100);
  --caption: var(--neutral-300);
  --link: var(--orange-200);
  --link-hover: var(--orange-100);
  --ink: var(--neutral-950);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --font: "Inter", "Segoe UI", sans-serif;
  --display: "Poppins", "Inter", sans-serif;
  --header-h: 56px;
  --content-max: 1200px;
  --transition: 0.2s ease-in-out;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(900px 480px at 85% -5%, rgba(53, 36, 240, 0.22) 0%, transparent 55%),
    radial-gradient(700px 420px at 5% 0%, rgba(255, 210, 34, 0.06) 0%, transparent 50%),
    var(--bg);
  color: var(--muted);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--link); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--link-hover); }
p { margin: 0 0 14px; color: var(--muted); }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--text);
}
h1 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.35rem, 2.2vw, 2rem); margin-top: 8px; }
h3 { font-size: 1.125rem; }
ul, ol { margin: 0 0 16px; padding-left: 1.2rem; color: var(--muted); }
.content section ul > li + li,
.content section ol > li + li { margin-top: 6px; }
.skip { position: absolute; left: -999px; }
.skip:focus {
  left: 12px; top: 8px; z-index: 80;
  background: var(--text); color: var(--ink);
  padding: 8px 12px; border-radius: var(--radius);
}

.topbar {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; gap: 12px;
  min-height: var(--header-h); padding: 0 16px;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}
.header-logo img { height: 28px; width: auto; }
.nav {
  display: flex; gap: 16px; margin-left: 12px; flex-wrap: wrap;
}
.nav a {
  color: var(--muted); font-size: 0.875rem; font-weight: 600;
  transition: color var(--transition);
}
.nav a[aria-current="page"], .nav a:hover { color: var(--text); }
.top-spacer { flex: 1; }
.top-actions { display: flex; gap: 8px; }
.menu-toggle {
  display: none;
  background: rgba(179, 195, 255, 0.1);
  border: 0;
  color: var(--text);
  border-radius: var(--radius);
  width: 40px; height: 40px;
  cursor: pointer;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 0 16px;
  border-radius: var(--radius);
  background: var(--yellow-400);
  color: var(--ink);
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  border: 0;
  cursor: pointer;
  transition: background-color var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 -2px 4px rgba(0, 0, 0, 0.12) inset,
    0 4px 12px rgba(0, 0, 0, 0.2);
}
.btn:hover {
  background: var(--yellow-200);
  color: var(--ink);
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 -2px 4px rgba(0, 0, 0, 0.12) inset,
    0 6px 16px rgba(0, 0, 0, 0.25),
    0 0 24px rgba(255, 219, 77, 0.2);
}
.btn:active { background: var(--yellow-500); transform: none; }
.btn-ghost {
  background: rgba(179, 195, 255, 0.15);
  color: var(--text);
  box-shadow: none;
  border: 0;
}
.btn-ghost:hover {
  background: rgba(179, 195, 255, 0.2);
  color: var(--text);
  box-shadow: none;
  transform: none;
}

.content {
  width: min(var(--content-max), calc(100% - 32px));
  margin: 0 auto;
  padding: 12px 0 72px;
}
.cashy-home-bleed + .content { padding-top: 8px; }
.hero {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 28px;
  align-items: center; padding: 24px 0 12px;
}
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 0 0 12px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(179, 195, 255, 0.05);
  color: var(--muted);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.lede { font-size: 1.0625rem; max-width: 38rem; color: var(--muted); }
.pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 18px; }
.pill {
  border: 1px solid var(--line);
  background: rgba(179, 195, 255, 0.08);
  color: var(--text);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.8125rem;
  font-weight: 600;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 8px 0 6px; }
.hero-media, .frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}
.hero-media img, .frame img { width: 100%; height: 100%; object-fit: cover; }
.band {
  display: flex; gap: 16px; align-items: center; justify-content: space-between;
  flex-wrap: wrap; margin: 28px 0; padding: 20px 22px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 210, 34, 0.18);
  background:
    linear-gradient(98deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(255, 210, 34, 0.12), rgba(27, 33, 60, 0.95));
}
.band p { margin: 0; color: var(--text); max-width: 48rem; font-weight: 500; }
.section { margin: 42px 0; }
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center;
}
.grid-2, .grid-3 { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.card, .feature {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 20px;
  backdrop-filter: blur(16px);
}
.card h3, .feature h3 { margin-bottom: 8px; }
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(40, 49, 87, 0.35);
}
table { width: 100%; border-collapse: collapse; min-width: 520px; }
th, td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
th {
  color: var(--text);
  font-weight: 600;
  background: rgba(56, 66, 107, 0.45);
  width: 34%;
}
td { color: var(--muted); }
tr:last-child th, tr:last-child td { border-bottom: 0; }
.check { list-style: none; padding-left: 0; }
.check li { position: relative; padding-left: 28px; }
.check li::before {
  content: "";
  position: absolute; left: 0; top: 0.45em;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--green-400);
  box-shadow: inset 0 0 0 3px var(--neutral-950);
}
.defs { display: grid; gap: 12px; }
.defs div {
  display: grid; grid-template-columns: 140px 1fr; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--line);
}
.defs dt { color: var(--text); font-weight: 600; }
.defs dd { margin: 0; color: var(--muted); }
details {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  margin: 0 0 10px;
  background: var(--panel);
}
summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 600;
  font-family: var(--display);
}
details p { margin: 10px 0 0; }
.crumbs { margin: 0 0 18px; }
.crumbs ol {
  list-style: none; display: flex; gap: 8px;
  padding: 0; margin: 0; flex-wrap: wrap;
}
.crumbs li { color: var(--caption); font-size: 0.875rem; }
.crumbs a { color: var(--caption); }
.crumbs a:hover { color: var(--text); }
.crumbs li + li::before {
  content: "/"; margin-right: 8px; color: var(--neutral-400);
}
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  padding: 42px 0 28px;
}
.footer-inner {
  width: min(var(--content-max), calc(100% - 32px));
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 22px;
  margin-bottom: 24px;
}
.footer-brand p { max-width: 28rem; color: var(--caption); }
.footer-brand img { height: 28px; margin-bottom: 12px; }
.site-footer h2 {
  font-size: 0.875rem;
  margin-bottom: 10px;
  color: var(--text);
}
.site-footer a {
  display: block;
  color: var(--caption);
  margin: 0 0 8px;
  font-size: 0.875rem;
}
.site-footer a:hover { color: var(--text); }
.legal { color: var(--caption); font-size: 0.75rem; line-height: 1.5; }
.overlay { display: none; }

@media (max-width: 900px) {
  .hero, .split, .grid-2, .grid-3, .footer-grid { grid-template-columns: 1fr; }
  .nav { display: none; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  body.nav-open .nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--panel);
    padding: 16px;
    border-bottom: 1px solid var(--line);
    z-index: 50;
    gap: 4px;
    margin-left: 0 !important;
  }
  body.nav-open .nav a {
    padding: 12px 14px;
    border-radius: var(--radius);
  }
  body.nav-open .nav a[aria-current="page"],
  body.nav-open .nav a:hover {
    background: var(--bg);
  }
  body.nav-open .overlay {
    display: block;
    position: fixed;
    inset: var(--header-h) 0 0;
    background: rgba(10, 15, 31, 0.72);
    z-index: 30;
  }
  .defs div { grid-template-columns: 1fr; }
  .content { width: min(var(--content-max), calc(100% - 24px)); }
}
