/* PONSCHIMP x Robinhood Chain green system — launch on Pons Family */
:root {
  /* Robinhood green system (legacy names kept so UI classes still resolve) */
  --rh-green: #00c805;
  --rh-green-dark: #00a004;
  --rh-green-deep: #003d14;
  --rh-green-mid: #0b5c1e;
  --rh-mint: #e6f9e8;
  --rh-mint-soft: #f0fbf1;
  --rh-lime: #c3f53c;
  --papaya-whip: #e6f9e8;
  --banana-yellow: #00c805;
  --chimpi-brown: #0a2e12;
  --raspberry-pop: #00c805;
  --strawberry-milkshake: #c8f5cc;
  --adventure-blue: #0090fe;
  --meadow-green: #00c805;
  --background: #e8f7ea;
  --foreground: #0a1f0c;
  --card-bg: #ffffff;
  --card-border: #9ad89e;
  --accent: #00c805;
  --accent-hover: #00a004;
  --muted: rgba(10, 46, 18, 0.68);
  --input-bg: #d4f0d7;
  --header-brown: #003d14;
  --cream: #f3fff4;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-3xl: 28px;
  --shadow-card: 0 8px 30px rgba(0, 100, 20, 0.1);
  --shadow-dropdown: 0 8px 30px rgba(0, 80, 20, 0.12);
  --font-body: "Comfortaa", system-ui, sans-serif;
  --font-display: "Nunito", "Comfortaa", system-ui, sans-serif;
  --max-w: 1512px;
  --content-w: 1352px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--background);
  background-image:
    radial-gradient(ellipse 120% 70% at 50% -10%, rgba(0, 200, 5, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 100%, rgba(0, 160, 4, 0.12) 0%, transparent 50%),
    linear-gradient(180deg, #d8f5dc 0%, #e8f7ea 40%, #f0fbf1 100%);
  background-attachment: fixed;
  color: var(--foreground);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 800;
}

/* Shell */
.shell {
  max-width: var(--max-w);
  margin: 0 auto;
  overflow: hidden;
  isolation: isolate;
}

@media (min-width: 1536px) {
  .shell {
    border-radius: var(--radius-3xl);
    margin-top: 12px;
    margin-bottom: 12px;
    box-shadow: 0 0 0 1px rgba(0, 200, 5, 0.15), 0 12px 40px rgba(0, 80, 20, 0.08);
  }
}

/* ========== Loader ========== */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--background);
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--card-border);
  box-shadow: 0 4px 12px rgba(119, 63, 33, 0.15);
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.loader-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.loader-bar {
  width: 12rem;
  height: 8px;
  background: var(--card-border);
  border-radius: 999px;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--banana-yellow), var(--raspberry-pop));
  transition: width 0.3s ease-out;
}

.loader-pct {
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
}

@keyframes pulse {
  50% {
    opacity: 0.6;
  }
}

/* ========== Desktop header ========== */
.header-desktop {
  display: none;
  align-items: center;
  height: 60px;
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 0 80px;
  background: var(--header-brown);
}

@media (min-width: 1536px) {
  .header-desktop {
    display: flex;
  }
}

.header-logo {
  flex-shrink: 0;
  margin-right: 24px;
}

.header-logo img {
  width: 123px;
  height: 36px;
  object-fit: contain;
}

.header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 20px;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--cream);
  white-space: nowrap;
  transition: all 0.15s;
}

.nav-link:hover {
  background: rgba(51, 27, 14, 0.2);
}

.nav-link.is-active {
  background: rgba(119, 63, 33, 0.4);
}

.nav-link svg {
  width: 14px;
  height: 14px;
  opacity: 0.5;
  transition: transform 0.2s;
}

.nav-item {
  position: relative;
}

.nav-item:hover .nav-link svg,
.nav-item:focus-within .nav-link svg {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) scale(0.95);
  margin-top: 8px;
  width: 14rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-dropdown);
  border: 1px solid rgba(119, 63, 33, 0.15);
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s;
  transform-origin: top center;
  z-index: 50;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) scale(1);
}

.nav-dropdown-inner {
  padding: 8px;
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  color: #331b0e;
  transition: all 0.15s;
}

.nav-dropdown a:hover {
  background: rgba(119, 63, 33, 0.06);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 16px;
}

.search-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  background: rgba(51, 27, 14, 0.15);
  transition: background 0.15s;
}

.search-btn:hover {
  background: rgba(51, 27, 14, 0.3);
}

/* ========== Mobile header ========== */
.header-mobile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 0 16px;
  background: var(--header-brown);
}

@media (min-width: 1536px) {
  .header-mobile {
    display: none;
  }
}

.header-mobile .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 18px;
}

.header-mobile .brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
}

.mobile-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  background: rgba(51, 27, 14, 0.15);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--background);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  padding: 16px;
  padding-top: 72px;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu-close {
  position: fixed;
  top: 12px;
  right: 16px;
  z-index: 61;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--header-brown);
  color: var(--cream);
  display: none;
  align-items: center;
  justify-content: center;
}

.mobile-menu.is-open + .mobile-menu-close,
.mobile-menu.is-open ~ .mobile-menu-close {
  display: flex;
}

.mobile-nav-section {
  margin-bottom: 20px;
}

.mobile-nav-section h3 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 8px;
  padding: 0 8px;
}

.mobile-nav-section a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 600;
  color: var(--chimpi-brown);
  font-size: 15px;
}

.mobile-nav-section a:hover {
  background: var(--papaya-whip);
}

.mobile-nav-section a.soon {
  opacity: 0.5;
  pointer-events: none;
}

/* ========== Hero ========== */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0 0 24px 24px;
  aspect-ratio: 820 / 360;
  background: var(--papaya-whip);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== Intro ========== */
.intro {
  max-width: 42rem;
  margin: 0 auto;
  padding: 40px 16px 0;
  text-align: center;
}

@media (min-width: 640px) {
  .intro {
    padding-top: 56px;
  }
}

.intro p.lead {
  font-size: 1.125rem;
  color: var(--chimpi-brown);
  line-height: 1.7;
}

@media (min-width: 640px) {
  .intro p.lead {
    font-size: 1.25rem;
  }
}

.intro-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 16px 0;
}

.intro-divider .bar {
  width: 32px;
  height: 4px;
  background: var(--banana-yellow);
  border-radius: 999px;
}

.intro-divider .dot {
  width: 12px;
  height: 12px;
  background: var(--chimpi-brown);
  border-radius: 50%;
}

.intro p.sub {
  font-size: 1rem;
  color: var(--muted);
}

/* ========== Cards grid ========== */
.content {
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 40px 16px 64px;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cards-grid.full-width-last > a:last-child {
  grid-column: 1 / -1;
}

.card {
  background: var(--card-bg);
  border-radius: 16px;
  border: 1px solid var(--card-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.25s;
}

.card:hover {
  border-color: rgba(119, 63, 33, 0.4);
  box-shadow: 0 20px 40px rgba(119, 63, 33, 0.12);
}

.card-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--papaya-whip);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.card:hover .card-media img {
  transform: scale(1.05);
}

.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  pointer-events: none;
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-body h2 {
  font-size: 1.125rem;
  color: var(--chimpi-brown);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.card-body .tagline {
  font-size: 0.875rem;
  color: var(--chimpi-brown);
  font-weight: 600;
  margin-bottom: 12px;
}

.card-body .desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
  white-space: pre-line;
}

.card-cta {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--raspberry-pop);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.card:hover .card-cta {
  gap: 8px;
}

/* Section page header */
.page-header {
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 40px 16px 24px;
  text-align: center;
}

.page-header h1 {
  font-size: 2rem;
  color: var(--chimpi-brown);
  margin-bottom: 8px;
}

@media (min-width: 640px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
}

.page-header .subtitle {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--chimpi-brown);
  margin-bottom: 12px;
}

.page-header .desc {
  max-width: 36rem;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Sub-cards (section hubs) */
.sub-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .sub-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .sub-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sub-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
}

.sub-card:hover {
  border-color: rgba(119, 63, 33, 0.4);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.sub-card.is-soon {
  opacity: 0.85;
  cursor: default;
}

.sub-card.is-soon:hover {
  transform: none;
}

.sub-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--papaya-whip);
}

.sub-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.sub-card:not(.is-soon):hover .sub-card-media img {
  transform: scale(1.04);
}

.sub-card-body {
  padding: 16px 18px 20px;
}

.sub-card-body h3 {
  font-size: 1.05rem;
  color: var(--chimpi-brown);
  margin-bottom: 6px;
}

.sub-card-body p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
}

.badge-soon {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--banana-yellow);
  color: var(--chimpi-brown);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ========== Footer ========== */
.site-footer {
  margin-top: 32px;
}

.footer-main {
  background: var(--papaya-whip);
  padding: 40px 24px 32px;
}

.footer-grid {
  max-width: var(--content-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.2fr 2fr;
    gap: 48px;
  }
}

.footer-brand img.logo { filter: none !important; height: 40px; width: auto; max-width: 180px; }

.footer-brand p {
  font-size: 0.875rem;
  color: var(--muted);
  max-width: 280px;
  line-height: 1.6;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (min-width: 640px) {
  .footer-cols {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 800;
  color: var(--chimpi-brown);
  margin-bottom: 12px;
  font-family: var(--font-display);
}

.footer-col a,
.footer-col span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  padding: 4px 0;
  transition: color 0.15s;
}

.footer-col a:hover {
  color: var(--chimpi-brown);
}

.footer-col .soon-label {
  opacity: 0.55;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(119, 63, 33, 0.5);
  transition: all 0.15s;
}

.footer-social a:hover {
  color: var(--chimpi-brown);
  background: var(--background);
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-banner {
  background: var(--card-bg);
}

.footer-banner img {
  width: 100%;
  height: auto;
}

.footer-bar {
  background: var(--header-brown);
  padding: 20px 24px;
}

.footer-bar p {
  font-size: 14px;
  font-weight: 700;
  color: var(--cream);
}

.footer-bar .copy {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 252, 246, 0.6);
  margin-top: 4px;
}

/* ========== Floating widgets ========== */
.widgets {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  display: flex;
  gap: 6px;
  align-items: flex-end;
}

.widget-btn {
  transition: transform 0.15s, bottom 0.3s;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.widget-btn:hover {
  transform: translateY(-4px);
}

.widget-btn img {
  width: 70px;
  height: 70px;
}

@media (min-width: 640px) {
  .widget-btn img {
    width: 100px;
    height: 100px;
  }

  .widgets {
    right: 24px;
    bottom: 20px;
  }
}

/* ========== Search modal ========== */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(51, 27, 14, 0.45);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 16px 16px;
  backdrop-filter: blur(4px);
}

.search-overlay.is-open {
  display: flex;
}

.search-panel {
  width: 100%;
  max-width: 520px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-dropdown);
  overflow: hidden;
  animation: slideUp 0.25s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.search-panel form {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--card-border);
}

.search-panel input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--chimpi-brown);
  background: transparent;
}

.search-panel input::placeholder {
  color: #aaa;
}

.search-hints {
  padding: 12px;
}

.search-hints p {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  padding: 4px 8px 8px;
}

.search-hints a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
  color: var(--chimpi-brown);
  font-weight: 600;
}

.search-hints a:hover {
  background: var(--papaya-whip);
}

/* ========== Guide chat panel (simple) ========== */
.guide-panel {
  position: fixed;
  right: 16px;
  bottom: 100px;
  z-index: 50;
  width: min(360px, calc(100vw - 32px));
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--card-border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  max-height: 420px;
  overflow: hidden;
}

.guide-panel.is-open {
  display: flex;
  animation: slideUp 0.25s ease;
}

.guide-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--header-brown);
  color: var(--cream);
}

.guide-header img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--banana-yellow);
}

.guide-header strong {
  font-size: 14px;
  display: block;
}

.guide-header span {
  font-size: 11px;
  opacity: 0.75;
}

.guide-close {
  margin-left: auto;
  color: var(--cream);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guide-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.guide-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--background);
}

.guide-msg {
  max-width: 90%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.5;
}

.guide-msg.bot {
  background: #fff;
  border: 1px solid var(--card-border);
  color: var(--chimpi-brown);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.guide-msg.user {
  background: var(--chimpi-brown);
  color: var(--cream);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.guide-input-row {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--card-border);
  background: #fff;
}

.guide-input-row input {
  flex: 1;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--chimpi-brown);
  outline: none;
  background: var(--input-bg);
}

.guide-input-row input:focus {
  border-color: var(--raspberry-pop);
}

.guide-input-row button {
  padding: 10px 16px;
  border-radius: 12px;
  background: var(--raspberry-pop);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
}

.guide-input-row button:hover {
  background: var(--accent-hover);
}

/* Music toast */
.music-toast {
  position: fixed;
  right: 16px;
  bottom: 100px;
  z-index: 45;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow-dropdown);
  display: none;
  align-items: center;
  gap: 12px;
  max-width: 280px;
  animation: slideUp 0.25s ease;
}

.music-toast.is-open {
  display: flex;
}

.music-toast strong {
  font-size: 13px;
  color: var(--chimpi-brown);
  display: block;
}

.music-toast span {
  font-size: 12px;
  color: var(--muted);
}

/* Utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

body.menu-open {
  overflow: hidden;
}

/* ========== Launch / CA / Buy (Robinhood Chain × Pons) ========== */
.launch-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
  padding: 14px 16px;
  background: linear-gradient(90deg, #002a0e, #003d14 40%, #005a1c);
  border-bottom: 2px solid var(--rh-green);
}

.launch-bar .chain-tag {
  font-size: 12px;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--banana-yellow);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.launch-bar .sep {
  color: rgba(255, 252, 246, 0.35);
  font-size: 12px;
}

.btn-pons {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 12px;
  background: var(--raspberry-pop);
  color: #fff !important;
  font-weight: 800;
  font-size: 14px;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  transition: background 0.15s, transform 0.15s;
  white-space: nowrap;
}

.btn-pons:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-pons.lg {
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 14px;
}

.btn-x-soon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 12px;
  background: rgba(255, 252, 246, 0.12);
  color: rgba(255, 252, 246, 0.75) !important;
  font-weight: 700;
  font-size: 13px;
  font-family: var(--font-display);
  cursor: default;
  border: 1px solid rgba(255, 252, 246, 0.2);
}

.btn-x-soon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.ca-box {
  max-width: 640px;
  margin: 0 auto;
  padding: 16px 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.ca-box .ca-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.ca-box .ca-value {
  font-size: 1.125rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--chimpi-brown);
}

.ca-box .ca-note {
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 12px;
  flex-shrink: 0;
}

.header-cta .btn-pons {
  padding: 8px 14px;
  font-size: 13px;
}

.header-cta .btn-x-soon {
  padding: 8px 12px;
  font-size: 12px;
  background: rgba(255, 252, 246, 0.1);
}

.how-buy {
  max-width: var(--content-w);
  margin: 0 auto 48px;
  padding: 0 16px;
}

.how-buy h2 {
  text-align: center;
  font-size: 1.5rem;
  color: var(--chimpi-brown);
  margin-bottom: 8px;
}

.how-buy > .sub {
  text-align: center;
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.how-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .how-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.how-step {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 20px;
}

.how-step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--banana-yellow);
  color: var(--chimpi-brown);
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 12px;
}

.how-step h3 {
  font-size: 1rem;
  color: var(--chimpi-brown);
  margin-bottom: 8px;
}

.how-step p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
}

.how-step a {
  color: var(--raspberry-pop);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-social a.is-disabled,
.footer-social span.is-disabled {
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
}

.footer-meta {
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.footer-meta a {
  color: var(--raspberry-pop);
  font-weight: 700;
}

.footer-meta strong {
  color: var(--chimpi-brown);
}

/* ===== Robinhood green overrides ===== */
.header-logo img {
  filter: none;
  opacity: 1;
  height: 32px;
  width: auto;
  max-width: 160px;
}
.footer-brand img.logo { filter: none !important; height: 40px; width: auto; max-width: 180px; }
.header-desktop {
  background: linear-gradient(90deg, #002a0e, #003d14 50%, #004d18) !important;
  border-bottom: 1px solid rgba(0, 200, 5, 0.35);
}
.header-mobile {
  background: linear-gradient(90deg, #002a0e, #003d14) !important;
  border-bottom: 1px solid rgba(0, 200, 5, 0.35);
}
.footer-bar {
  background: linear-gradient(90deg, #002a0e, #003d14 50%, #005a1c) !important;
}
.btn-pons {
  background: #00c805 !important;
  color: #041a08 !important;
  box-shadow: 0 2px 12px rgba(0, 200, 5, 0.35);
}
.btn-pons:hover {
  background: #00e006 !important;
  color: #041a08 !important;
}
.card:hover {
  border-color: rgba(0, 200, 5, 0.55) !important;
  box-shadow: 0 20px 40px rgba(0, 120, 20, 0.14) !important;
}
.loader-bar-fill {
  background: linear-gradient(90deg, #00c805, #c3f53c) !important;
}
.nav-link.is-active {
  background: rgba(0, 200, 5, 0.25) !important;
}
.shell {
  background: rgba(255, 255, 255, 0.55);
}
.footer-main {
  background: #d8f5dc !important;
}
