/* Bright Cash Arcade — Variant C */

:root {
  --royal: #1464f4;
  --sky: #4dcbff;
  --cream: #fff8e8;
  --orange: #ff9d24;
  --coral: #ff5263;
  --green: #31c96b;
  --navy: #10203b;
  --white: #ffffff;
  --text: #10203b;
  --text-soft: #3d4f6a;
  --shadow: 0 12px 32px rgba(16, 32, 59, 0.12);
  --shadow-soft: 0 4px 16px rgba(16, 32, 59, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --wrap: min(1120px, calc(100% - 2rem));
  --header-h: 68px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  color: var(--royal);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

a:hover {
  color: #0d4ec4;
}

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

/* Header */

.arcade-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(20, 100, 244, 0.1);
  backdrop-filter: blur(8px);
}

.arcade-header__bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-h);
}

.arcade-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--navy);
}

.arcade-brand__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 10px;
  object-fit: cover;
}

.arcade-brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.arcade-brand__name {
  font-weight: 700;
  font-size: 0.95rem;
}

.arcade-brand__tag {
  font-size: 0.72rem;
  color: var(--text-soft);
}

.arcade-nav {
  display: none;
  justify-content: flex-end;
  gap: 1.25rem;
  padding-right: 0.5rem;
}

.arcade-nav a {
  text-decoration: none;
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 500;
}

.arcade-nav a:hover,
.arcade-nav a.is-active {
  color: var(--royal);
}

.arcade-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.arcade-age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  background: var(--cream);
  border: 1px solid rgba(255, 157, 36, 0.35);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
}

.arcade-demo-link {
  display: none;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--royal);
}

.arcade-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(20, 100, 244, 0.25);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

.arcade-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(20, 100, 244, 0.1);
  background: var(--white);
}

.js-nav .arcade-mobile-menu.is-open {
  display: flex;
}

.arcade-mobile-menu a {
  padding: 0.85rem 1rem;
  text-decoration: none;
  color: var(--navy);
  font-weight: 500;
  border-bottom: 1px solid rgba(20, 100, 244, 0.08);
}

@media (min-width: 768px) {
  .arcade-nav {
    display: flex;
  }

  .arcade-demo-link {
    display: inline;
  }

  .arcade-menu-btn {
    display: none;
  }
}

/* Hero */

.hero-panel {
  position: relative;
  background: linear-gradient(135deg, #e8f3ff 0%, var(--white) 45%, var(--cream) 100%);
  padding: 2rem 0 3rem;
  overflow: hidden;
}

.hero-panel__slant {
  position: absolute;
  top: -40px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: linear-gradient(145deg, var(--orange), var(--coral));
  transform: rotate(18deg);
  border-radius: 32px;
  opacity: 0.18;
  pointer-events: none;
}

.hero-panel__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-panel__label {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(20, 100, 244, 0.1);
  color: var(--royal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-panel h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  line-height: 1.15;
  color: var(--navy);
  max-width: 18ch;
}

.hero-panel__lead {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 42ch;
}

.hero-panel__cta-block {
  margin-bottom: 1.25rem;
}

.affiliate-disclosure {
  margin: 0 0 0.75rem;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  background: var(--cream);
  border-left: 3px solid var(--orange);
  font-size: 0.82rem;
  color: var(--text-soft);
}

.arcade-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--royal), #0d52d4);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  border: none;
  cursor: pointer;
}

.arcade-cta.is-muted {
  background: #d8e2ef;
  color: #6b7c94;
  box-shadow: none;
  cursor: not-allowed;
}

.mid-page-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 1.5rem;
  min-height: 80px;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(
    90deg,
    rgba(20, 100, 244, 0.1) 0%,
    rgba(77, 203, 255, 0.16) 55%,
    rgba(255, 157, 36, 0.08) 100%
  );
  border: 1px solid rgba(20, 100, 244, 0.14);
  box-shadow: var(--shadow-soft);
}

.mid-page-cta__copy {
  min-width: 0;
}

.mid-page-cta__eyebrow {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-soft);
}

.mid-page-cta__heading {
  margin: 0.2rem 0 0;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}

.mid-page-cta__button {
  flex-shrink: 0;
  min-height: 50px;
  padding-inline: 1.75rem;
  border-radius: var(--radius-sm);
}

@media (max-width: 639px) {
  .mid-page-cta {
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    padding: 1.1rem 1.25rem;
    gap: 0.85rem;
  }

  .mid-page-cta__button {
    width: 100%;
  }
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
}

.hero-visual {
  position: relative;
  margin: 0;
}

.hero-visual__accent {
  position: absolute;
  bottom: -12px;
  left: -16px;
  width: 55%;
  height: 40%;
  background: var(--sky);
  border-radius: 20px;
  transform: rotate(-6deg);
  z-index: 0;
  opacity: 0.55;
}

.hero-visual__frame {
  position: relative;
  z-index: 1;
  padding: 0.65rem;
  background: linear-gradient(145deg, var(--white), #f0f6ff);
  border-radius: 20px;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.hero-visual__frame img {
  width: 100%;
  border-radius: 14px;
}

.hero-visual__caption {
  margin: 0.75rem 0 0;
  font-size: 0.78rem;
  color: var(--text-soft);
  text-align: center;
}

@media (min-width: 900px) {
  .hero-panel__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .hero-facts {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Sections */

.page-section {
  padding: 3rem 0;
}

.page-section:nth-child(even) {
  background: var(--cream);
}

.section-heading {
  margin: 0 0 1rem;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  line-height: 1.2;
  color: var(--navy);
}

.section-lead {
  margin: 0 0 1.5rem;
  color: var(--text-soft);
  max-width: 62ch;
}

.verdict-band {
  background: linear-gradient(90deg, rgba(20, 100, 244, 0.08), rgba(77, 203, 255, 0.12));
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(20, 100, 244, 0.12);
}

.verdict-band p {
  margin: 0;
  font-size: 1.02rem;
}

.mechanic-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
  margin: 1.5rem 0;
  padding: 1.1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.mechanic-flow__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 118px;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  background: var(--cream);
  font-size: 1.17rem;
  font-weight: 700;
  color: var(--navy);
}

.mechanic-flow__step span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-soft);
  margin-bottom: 0.3rem;
}

.mechanic-flow__arrow {
  font-size: 1.65rem;
  color: var(--orange);
  font-weight: 700;
}

.mechanic-values {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 1.5rem;
}

.mechanic-values span {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(49, 201, 107, 0.15);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
}

.mechanic-notes {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .mechanic-notes {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.mechanic-notes div {
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: var(--white);
  border-top: 3px solid var(--royal);
}

.mechanic-notes h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  color: var(--navy);
}

.mechanic-notes p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-soft);
}

.feature-ribbon {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.feature-chip {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.feature-chip:nth-child(1) { border-left: 4px solid var(--royal); }
.feature-chip:nth-child(2) { border-left: 4px solid var(--orange); }
.feature-chip:nth-child(3) { border-left: 4px solid var(--green); }
.feature-chip:nth-child(4) { border-left: 4px solid var(--sky); }
.feature-chip:nth-child(5) { border-left: 4px solid var(--coral); }

.feature-chip__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--white);
}

.feature-chip:nth-child(1) .feature-chip__icon { background: var(--royal); }
.feature-chip:nth-child(2) .feature-chip__icon { background: var(--orange); }
.feature-chip:nth-child(3) .feature-chip__icon { background: var(--green); }
.feature-chip:nth-child(4) .feature-chip__icon { background: var(--sky); color: var(--navy); }
.feature-chip:nth-child(5) .feature-chip__icon { background: var(--coral); }

.feature-chip h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  color: var(--navy);
}

.feature-chip p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-soft);
}

.feature-footnotes {
  margin: 1rem 0 0;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 82, 99, 0.08);
  font-size: 0.9rem;
  color: var(--text-soft);
}

.feature-footnotes ul {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
}

.feature-footnotes li {
  margin-bottom: 0.35rem;
}

@media (min-width: 1024px) {
  .feature-ribbon {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .feature-chip {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.15rem 0.85rem;
  }

  .feature-chip__icon {
    margin: 0 auto 0.5rem;
  }
}

.facts-panel {
  display: grid;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(20, 100, 244, 0.12);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.facts-panel dl {
  display: grid;
  grid-template-columns: 1fr;
  margin: 0;
}

.facts-panel dt,
.facts-panel dd {
  margin: 0;
  padding: 0.75rem 1rem;
}

.facts-panel dt {
  background: rgba(20, 100, 244, 0.06);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.facts-panel dd {
  border-bottom: 1px solid rgba(20, 100, 244, 0.08);
  font-weight: 600;
  color: var(--navy);
}

.facts-panel__note {
  margin: 0;
  padding: 1rem;
  background: var(--cream);
  font-size: 0.88rem;
  color: var(--text-soft);
}

@media (min-width: 768px) {
  .facts-panel dl {
    grid-template-columns: 180px 1fr;
  }

  .facts-panel dt {
    border-right: 1px solid rgba(20, 100, 244, 0.08);
  }
}

.theme-block {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(49, 201, 107, 0.12), rgba(77, 203, 255, 0.15));
  border: 1px solid rgba(49, 201, 107, 0.2);
}

.theme-block p {
  margin: 0;
  font-size: 1.02rem;
}

.faq-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.faq-list details {
  margin-bottom: 0.65rem;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid rgba(20, 100, 244, 0.1);
  overflow: hidden;
}

.faq-list summary {
  padding: 1rem 1.15rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--royal);
  font-weight: 700;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 0 1.15rem 1rem;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.demo-banner {
  position: relative;
  padding: 2.5rem 0;
  background: linear-gradient(135deg, var(--royal) 0%, #0a4bcc 55%, var(--navy) 100%);
  color: var(--white);
  overflow: hidden;
}

.demo-banner__shape {
  position: absolute;
  top: -60px;
  right: 10%;
  width: 200px;
  height: 200px;
  background: var(--orange);
  opacity: 0.2;
  transform: rotate(25deg);
  border-radius: 24px;
  pointer-events: none;
}

.demo-banner h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}

.demo-banner p {
  margin: 0 0 1.25rem;
  max-width: 52ch;
  opacity: 0.92;
}

.demo-banner .arcade-cta.is-muted {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
}

.sources-note {
  padding: 1.5rem 0 0;
  font-size: 0.88rem;
  color: var(--text-soft);
}

.sources-note p {
  margin: 0;
}

.sources-note ul {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
}

.arcade-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  padding: 1.5rem 0;
}

.arcade-footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.arcade-footer a:hover {
  color: var(--sky);
}

.arcade-footer__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
}

.arcade-footer__row--nav {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.arcade-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}

.arcade-footer__brand .arcade-brand__icon {
  width: 36px;
  height: 36px;
}

.arcade-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  font-size: 0.88rem;
}

.arcade-footer__row--note {
  padding-top: 1rem;
  font-size: 0.82rem;
  opacity: 0.85;
}

.arcade-footer__row--note p {
  margin: 0;
}

.arcade-footer__rg {
  margin-top: 0.5rem;
  font-size: 0.82rem;
  opacity: 0.8;
}

.trust-page {
  padding: 2rem 0 3rem;
  background: var(--cream);
  min-height: 50vh;
}

.trust-page__inner {
  max-width: 720px;
}

.trust-page__back {
  margin: 0 0 1.5rem;
}

.trust-page__back a {
  text-decoration: none;
  font-weight: 600;
}

.trust-page h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy);
}

.trust-page h2 {
  margin: 1.75rem 0 0.65rem;
  font-size: 1.15rem;
  color: var(--navy);
}

.trust-page p,
.trust-page li {
  color: var(--text-soft);
}

.trust-page ul {
  padding-left: 1.2rem;
}

.trust-page li {
  margin-bottom: 0.4rem;
}
