/* Homepage-specific responsive components */

/* Hero carousel (fade overlay implementation) */
.hero-carousel { position: relative; overflow: visible; border-bottom: 1px solid rgba(255,255,255,0.08); }
.hero-carousel .slides { position: relative; min-height: clamp(360px, 50vh, 600px); }
.hero-carousel .slide { position: absolute; inset: 0; width: 100%; display: grid; grid-template-columns: 1fr; align-items: center; gap: 1.25rem; padding: clamp(1.5rem, 6vw, 3rem) var(--gutter); opacity: 0; transform: translateY(6px); transition: opacity .6s ease, transform .6s ease; pointer-events: none; }
.hero-carousel .slide.active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.hero-carousel .slide:first-child { opacity: 1; transform: translateY(0); pointer-events: auto; }
.hero-carousel .media { border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(255,255,255,0.08); background: var(--bg-card); aspect-ratio: 16/9; }
.hero-carousel .media img { width: 100%; height: 100%; object-fit: cover; display:block; }
.hero-carousel .text h1 { margin: 0; }
.hero-carousel .text { max-width: 52ch; }
.hero-carousel .text p { color: var(--muted); margin: .5rem 0 1rem; }
.hero-carousel .actions { display: flex; gap: .5rem; flex-wrap: wrap; }

@media (min-width: 56rem) { .hero-carousel .slide { grid-template-columns: 1.1fr 1fr; } }

/* Mobile tuning for carousel */
@media (max-width: 30rem) {
  .hero-carousel .slides { min-height: clamp(320px, 46vh, 520px); }
  .hero-carousel .slide { padding: clamp(1rem, 5vw, 1.5rem) var(--gutter); }
  .hero-carousel .text { max-width: 100%; }
  .hero-carousel .text h1 { font-size: clamp(1.25rem, 6vw + 0.25rem, 1.75rem); line-height: 1.2; }
  .hero-carousel .actions { flex-direction: column; gap: .5rem; }
  .hero-carousel .actions .btn { width: 100%; }
  .carousel-controls { padding: 0 calc(var(--gutter) / 2); }
  .carousel-indicators { bottom: 8px; }
}

.carousel-nav { position: absolute; inset: 0; pointer-events: none; z-index: 3; }
.carousel-controls { position: absolute; top: 50%; left: 0; right: 0; display:flex; justify-content: space-between; transform: translateY(-50%); padding: 0 var(--gutter); gap: .5rem; pointer-events: none; }
.carousel-btn { pointer-events: auto; --btn-size: 44px; width: var(--btn-size); height: var(--btn-size); border-radius: 50%; border:1px solid var(--border-medium); background: var(--bg-secondary); color: var(--text-primary); display:flex; align-items:center; justify-content:center; backdrop-filter: blur(6px); box-shadow: var(--shadow-sm); }
.carousel-btn:hover { background: var(--bg-tertiary); box-shadow: var(--shadow-md); }
.carousel-controls [data-action="prev"] { transform: translateX(calc(-1 * (var(--btn-size) + 16px))); }
.carousel-controls [data-action="next"] { transform: translateX(calc(var(--btn-size) + 16px)); }
@media (max-width: 48rem) {
  .carousel-controls [data-action="prev"] { transform: translateX(calc(-1 * (var(--btn-size) + 8px))); }
  .carousel-controls [data-action="next"] { transform: translateX(calc(var(--btn-size) + 8px)); }
}
.carousel-indicators { position: absolute; bottom: clamp(8px, 2vw, 16px); left: 50%; transform: translateX(-50%); display:flex; gap: 8px; }
.carousel-indicators button { width: 36px; height: 3px; background: var(--border-medium); border: none; border-radius: 2px; }
.carousel-indicators button.active { background: var(--brand); width: 48px; }

/* Bento hero section - Full width wrapper with darker main bg */
.bento-section {
  background: var(--bg-primary);
  padding: clamp(4rem, 8vw, 6rem) 0;
}

/* Bento grid - Contained content */
.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  /* banner theming vars */
  --bento-banner-bg: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.85));
  --bento-banner-border: rgba(255,255,255,0.10);
  --bento-banner-pad-y: 1rem;
  --bento-banner-pad-x: 1.25rem;
}
.bento-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(21, 21, 21, 0.1);
  border-radius: var(--radius-lg);
  background: #E8E0D4; /* Creamy light grey default */
  box-shadow: var(--shadow-md);
  --bento-scale: 0.95; /* Start smaller on mobile */
  transition: all var(--transition-normal);
  cursor: pointer;
}
/* Removed dark overlay - using clean banner instead */
.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 16 / 9;
  filter: grayscale(100%);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.bento-item:hover img {
  transform: scale(1.03);
  filter: grayscale(0%);
}
.bento-item.big {
  grid-column: 1 / -1;
  --bento-scale: 1.05; /* Moderate scale on mobile */
}

/* Tablet: increase gap and scale slightly */
@media (min-width: 48rem) {
    .bento-item { --bento-scale: 1; }
    .bento-item.big { --bento-scale: 1.15; }
}

/* Desktop: 2-column layout with larger scale */
@media (min-width: 56rem) {
    .bento { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .bento-item.big { --bento-scale: 1.35; }
}

/* Bento banner overlay - Matches card background */
.bento-item .bento-banner {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: calc(var(--bento-banner-pad-y) * var(--bento-scale)) calc(var(--bento-banner-pad-x) * var(--bento-scale));
  color: #1A1A1A; /* Dark text on cream bg */
  background: #E8E0D4; /* Creamy background */
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.bento-item:hover .bento-banner {
  background: linear-gradient(135deg, rgba(90, 90, 90, 0.7) 0%, rgba(60, 60, 60, 0.8) 100%);
}
[data-theme="light"] .bento-item:hover .bento-banner {
  background: linear-gradient(135deg, rgba(243, 241, 234, 0.15) 0%, rgba(239, 238, 231, 0.25) 100%);
}
.bento-item .bento-banner h3 {
  margin: 0 0 .25rem 0;
  font-size: calc(clamp(1rem, 1.3vw + .65rem, 1.25rem) * var(--bento-scale));
  line-height: 1.2;
  color: #1A1A1A; /* Dark text on cream */
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.bento-item:hover .bento-banner h3 {
  color: #F4EEE0; /* Light cream on hover */
}
.bento-item .bento-banner p {
  margin: 0;
  color: #101010; /* Dark grey text on cream bg */
  font-size: calc(clamp(.875rem, 1.1vw + .5rem, 1rem) * var(--bento-scale));
  letter-spacing: -0.01em;
  font-weight: 400;
  transition: color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.bento-item:hover .bento-banner p {
  color: #E8E0D4; /* Light cream on hover */
}

/* Hover polish for desktop */
@media (hover: hover) and (pointer: fine) {
  .bento-item:hover img { transform: scale(1.02); transition: transform .35s ease; }
  .bento-item img { transition: transform .35s ease; }
}

/* SHMUP banner - Featured section */
.shmup-banner {
  padding: clamp(5rem, 10vw, 6.25rem) 0;
  background: var(--bg-primary); /* Matches main page background */
}
.shmup-card {
  display:grid;
  grid-template-columns: 1fr;
  gap: 1.5rem; /* Tighter gap on mobile */
  align-items:center;
  background: var(--bg-card); /* Will be overridden by flip styles */
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 5vw, 4rem); /* Reduce padding on mobile */
  box-shadow: var(--shadow-lg); /* Card has shadow */
}
.shmup-card .media {
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  overflow:hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}
.shmup-card .media img { width:100%; height:100%; object-fit:cover; }

/* Tablet and up: increase spacing */
@media (min-width: 48rem) {
    .shmup-card { gap: 2rem; }
}

/* Desktop: side-by-side layout */
@media (min-width: 56rem) {
    .shmup-card { grid-template-columns: 1.2fr 1fr; gap: 3rem; }
}

/* SHMUP features list - Enhanced typography */
.shmup-info h2 {
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.shmup-info h3 {
  font-size: 1.25rem;
  margin: 1.5rem 0 1rem;
  color: var(--text-primary);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.3;
}
.shmup-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.shmup-features li {
  position: relative;
  padding: 0.875rem 0 0.875rem 1.75rem;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  display: flex;
  gap: .5rem;
  align-items: center;
  transition: all 0.2s ease;
  font-size: 1.0625rem;
  line-height: 1.65;
  letter-spacing: -0.01em;
  font-weight: 400;
}
.shmup-features li:hover {
  color: var(--text-primary);
}
.shmup-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.875rem;
  color: var(--primary-accent);
  font-weight: 600;
  font-size: 1rem;
}
.shmup-features li:last-child { border-bottom: none; }

/* SHMUP section buttons - Increased gap to prevent touching with squash/stretch */
.shmup-info .actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* Trusted By marquee - Darker main bg */
.trusted-by-section {
  padding: clamp(4rem, 8vw, 6.25rem) 0;
  background: var(--bg-primary);
}
.trusted-by-title {
  text-align: center;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-weight: 600;
}
.marquee {
  display: flex;
  block-size: var(--marquee-item-height);
  margin-block: var(--marquee-item-height);
  position: relative;
  overflow-x: hidden;
  mask-image: linear-gradient(to right, hsl(0 0% 0% / 0), hsl(0 0% 0% / 1) 20%, hsl(0 0% 0% / 1) 80%, hsl(0 0% 0% / 0));
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,1) 20%, rgba(0,0,0,1) 80%, rgba(0,0,0,0));
}
.marquee__item {
  /* Use box width (image + gap) for spacing, image keeps its width */
  --marquee-item-box-width: calc(var(--marquee-item-width) + var(--marquee-item-gap, 0px));
  --marquee-item-offset: max(
    calc(var(--marquee-item-box-width) * var(--marquee-items)),
    calc(100% + var(--marquee-item-box-width))
  );
  --marquee-delay: calc(var(--marquee-duration) / var(--marquee-items) * (var(--marquee-items) - var(--marquee-item-index)) * -1);
  position: absolute;
  inset-inline-start: var(--marquee-item-offset);
  transform: translateX(-50%);
  animation: go linear var(--marquee-duration) var(--marquee-delay, 0s) infinite;
  display: grid; place-items: center;
  inline-size: var(--marquee-item-box-width);
  block-size: var(--marquee-item-height);
}
.marquee__item img { height: 100%; width: auto; object-fit: contain; opacity: .85; filter: grayscale(40%); }
@keyframes go { to { inset-inline-start: calc(var(--marquee-item-width) * -1); } }
/* 4 logos */
.marquee--4 { --marquee-item-width: 180px; --marquee-item-gap: 8px; --marquee-item-height: 40px; --marquee-duration: 48s; --marquee-items: 4; }
.marquee--4 .marquee__item:nth-of-type(1) { --marquee-item-index: 1; }
.marquee--4 .marquee__item:nth-of-type(2) { --marquee-item-index: 2; }
.marquee--4 .marquee__item:nth-of-type(3) { --marquee-item-index: 3; }
.marquee--4 .marquee__item:nth-of-type(4) { --marquee-item-index: 4; }

/* Tablet: reduce logo size */
@media (max-width: 48rem) {
    .marquee--4 { --marquee-item-width: 150px; --marquee-item-gap: 6px; --marquee-item-height: 32px; --marquee-duration: 48s; }
}

/* Small mobile: further reduce for 320px screens */
@media (max-width: 30rem) {
    .marquee--4 { --marquee-item-width: 120px; --marquee-item-gap: 4px; --marquee-item-height: 28px; }
}

/* Newsletter strip */
.newsletter-strip { padding: clamp(1.25rem, 4vw, 2rem); border:1px solid rgba(255,255,255,0.1); border-radius: var(--radius); background: rgba(255,255,255,0.02); }
.newsletter-strip .row { display:flex; flex-direction: column; gap: .75rem; }
@media (min-width: 48rem) { .newsletter-strip .row { flex-direction: row; align-items:center; justify-content: space-between; } }

/* Trust stats bar - Lighter grey accent section to draw attention */
.trust-bar {
  padding: clamp(4rem, 6vw, 5rem) 0;
  background: var(--bg-secondary);
}
.trust-container { display:flex; gap: clamp(0.75rem, 6vw, 5rem); flex-wrap: wrap; align-items:center; justify-content: center; }
.trust-stat {
  display:flex;
  flex-direction: column;
  align-items:center;
  min-width: 160px;
  padding: 1rem 2rem;
  border: 1px solid rgba(21, 21, 21, 0.1);
  border-radius: var(--radius-md);
  background: #E8E0D4; /* Cream background in dark mode */
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.trust-stat:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.trust-number {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: #0e0e0e; /* Dark grey on light bg in dark mode - NO ORANGE */
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.trust-stat:hover .trust-number {
  color: #0e0e0e; /* Keep dark grey on hover */
}
.trust-label {
  font-size: 0.9375rem;
  color: #101010; /* Slightly lighter dark grey on light bg */
  text-align: center;
  letter-spacing: -0.005em;
  font-weight: 400;
  margin-top: 0.25rem;
}

/* Desktop: ensure wide spacing */
@media (min-width: 48rem) {
    .trust-container { gap: 4rem; }
    .trust-stat { margin: 0 1rem; }
}

/* Mobile: stack 2x2 grid for better fit on narrow screens */
@media (max-width: 30rem) {
    .trust-container { gap: 0.75rem; }
    .trust-stat {
        min-width: 0; /* Remove min-width constraint */
        flex: 1 1 calc(50% - 0.75rem); /* 2 columns */
        max-width: calc(50% - 0.75rem);
        padding: .5rem .5rem;
    }
    .trust-label { font-size: 0.8rem; line-height: 1.3; }
}

/* About section - Centered layout with darker main bg */
.about-section {
  padding: clamp(5rem, 10vw, 6.25rem) 0;
  background: var(--bg-primary);
}
.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--gutter);
}
.about-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--border-subtle);
  box-shadow: var(--shadow-lg);
  margin: 0 auto 1.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
}
.about-avatar:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}
.about-avatar img { width:100%; height:100%; object-fit: cover; display:block; }
.about-title {
  margin: 0 0 1.25rem 0;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.about-text {
  color: var(--text-secondary);
  max-width: 60ch;
  margin: 0 auto 1.875rem;
  line-height: 1.7;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
  font-weight: 400;
}

/* Reduced motion: keep marquee, just slow it down */
@media (prefers-reduced-motion: reduce) {
  .marquee--4 { --marquee-duration: 120s; }
  .hero-carousel .slide { transition: none; }
}
/* Card Slider (Webflow-like) */
.card-slider { position: relative; padding: clamp(1rem, 4vw, 2rem) 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.card-slider .track {
  display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scroll-behavior: smooth;
  padding-inline: var(--gutter); mask-image: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,1) 6%, rgba(0,0,0,1) 94%, rgba(0,0,0,0));
}
.card-slider .track::-webkit-scrollbar { display: none; }
.card-slider .card { flex: 0 0 85%; max-width: 85%; scroll-snap-align: center; background: var(--bg-secondary); border: 1px solid var(--border-subtle); border-radius: 16px; padding: clamp(1rem, 3vw, 1.5rem); box-shadow: var(--shadow-xl); transform: scale(.94); opacity: .9; transition: transform .35s ease, opacity .35s ease; }
.card-slider .card.is-active { transform: scale(1); opacity: 1; }
.card-slider .card .grid { display: grid; grid-template-columns: 1fr; gap: 1rem; align-items: center; }
@media (min-width: 56rem) { .card-slider .card { flex-basis: 70%; max-width: 70%; } .card-slider .card .grid { grid-template-columns: 1.1fr 1fr; } }

.slider-controls { position: absolute; top: 50%; left: 0; right: 0; display: flex; justify-content: space-between; transform: translateY(-50%); pointer-events: none; padding-inline: calc(var(--gutter)); }
.slider-btn { pointer-events: auto; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border-medium); background: var(--bg-secondary); color: var(--text-primary); display: flex; align-items: center; justify-content: center; backdrop-filter: blur(6px); box-shadow: var(--shadow-sm); }
.slider-btn:hover { background: var(--bg-tertiary); box-shadow: var(--shadow-md); }

.slider-dots { display: flex; gap: 8px; justify-content: center; margin-top: .75rem; }
.slider-dots button { width: 36px; height: 3px; background: var(--border-medium); border: none; border-radius: 2px; }
.slider-dots button.active { background: var(--brand); width: 48px; }

@media (max-width: 30rem) { .card-slider .card { flex-basis: 90%; max-width: 90%; } .slider-controls { padding-inline: calc(var(--gutter) / 2); } }

/* ============================================================================
   CARD BACKGROUND FLIPS (Bland.ai style)
   Dark mode: major cards use light backgrounds
   Light mode: major cards use dark backgrounds

   PATTERN FOR EXPANDING THIS FEATURE:
   ------------------------------------
   Dark Mode (default):
   - Card background: #E8E0D4 (cream)
   - Text heading: #1A1A1A (dark)
   - Text body/muted: var(--text-secondary) (muted dark)
   - Hover heading: #F4EEE0 (light cream)
   - Hover body: #E8E0D4 (cream)
   - Hover gradient: Dark grey overlay

   Light Mode [data-theme="light"]:
   - Card background: #1A1A1A (dark)
   - Text heading: #F4EEE0 (light)
   - Text body/muted: var(--text-secondary) (muted light)
   - Hover heading: #1A1A1A (dark)
   - Hover body: var(--text-secondary) (muted dark)
   - Hover gradient: Light cream overlay

   Borders/dividers also flip to match the card background color scheme.
   ========================================================================== */

/* Dark mode: SHMUP card gets creamy light background with dark text */
:root .shmup-card,
[data-theme="dark"] .shmup-card {
  background: #E8E0D4; /* Creamy warm grey in dark mode */
  border-color: rgba(21, 21, 21, 0.12);
}
:root .shmup-banner .shmup-info h2,
[data-theme="dark"] .shmup-banner .shmup-info h2 {
  color: #0e0e0e; /* Dark heading on light bg */
}
:root .shmup-banner .shmup-info h3,
[data-theme="dark"] .shmup-banner .shmup-info h3 {
  color: #0e0e0e; /* Dark heading - NO ORANGE */
}
:root .shmup-banner .shmup-info p.muted,
[data-theme="dark"] .shmup-banner .shmup-info p.muted {
  color: #101010; /* Slightly lighter dark grey on light bg */
}
:root .shmup-banner .shmup-features li,
[data-theme="dark"] .shmup-banner .shmup-features li {
  color: #101010; /* Dark grey text on light bg */
}
:root .shmup-banner .shmup-features li:hover,
[data-theme="dark"] .shmup-banner .shmup-features li:hover {
  color: #0e0e0e; /* Darker on hover */
}
:root .shmup-banner .shmup-features li::before,
[data-theme="dark"] .shmup-banner .shmup-features li::before {
  color: #0e0e0e; /* Dark checkmark - NO ORANGE */
}

/* Light mode: SHMUP card gets dark background with light text */
[data-theme="light"] .shmup-card {
  background: #1A1A1A; /* Dark bg in light mode */
  border-color: rgba(243, 241, 234, 0.12);
}
[data-theme="light"] .shmup-banner .shmup-info h2 {
  color: #FFFDF5; /* Light heading on dark bg */
}
[data-theme="light"] .shmup-banner .shmup-info h3 {
  color: #FFFDF5; /* Light heading - NO ORANGE */
}
[data-theme="light"] .shmup-banner .shmup-info p.muted {
  color: #F3F1EA; /* Slightly darker cream on dark bg */
}
[data-theme="light"] .shmup-banner .shmup-features li {
  color: #F3F1EA; /* Cream text on dark bg */
}
[data-theme="light"] .shmup-banner .shmup-features li:hover {
  color: #FFFDF5; /* Lighter on hover */
}
[data-theme="light"] .shmup-banner .shmup-features li::before {
  color: #FFFDF5; /* Light checkmark - NO ORANGE */
}

/* Adjust borders and dividers in flipped section */
:root .shmup-banner .shmup-card .media,
[data-theme="dark"] .shmup-banner .shmup-card .media {
  border-color: rgba(21, 21, 21, 0.12); /* Dark border on light bg */
}
[data-theme="light"] .shmup-banner .shmup-card .media {
  border-color: rgba(243, 241, 234, 0.15); /* Cream border on dark bg */
}
:root .shmup-banner .shmup-features li,
[data-theme="dark"] .shmup-banner .shmup-features li {
  border-bottom-color: rgba(21, 21, 21, 0.1); /* Dark dividers on cream bg */
}
[data-theme="light"] .shmup-banner .shmup-features li {
  border-bottom-color: rgba(243, 241, 234, 0.12); /* Cream dividers on dark bg */
}

/* Adjust buttons in flipped section */
:root .shmup-banner .btn.secondary,
[data-theme="dark"] .shmup-banner .btn.secondary {
  background: #1A1A1A;
  color: #F4EEE0;
  border: 1px solid rgba(21, 21, 21, 0.2);
}
:root .shmup-banner .btn.secondary:hover,
[data-theme="dark"] .shmup-banner .btn.secondary:hover {
  background: #252525;
}
[data-theme="light"] .shmup-banner .btn.secondary {
  background: #E8E0D4;
  color: #1A1A1A;
  border: 1px solid rgba(243, 241, 234, 0.3);
}
[data-theme="light"] .shmup-banner .btn.secondary:hover {
  background: #EFEEE7;
}

/* Primary buttons stay consistent (brand color works on both) */
:root .shmup-banner .btn.primary,
[data-theme="dark"] .shmup-banner .btn.primary,
[data-theme="light"] .shmup-banner .btn.primary {
  /* Brand accent has good contrast on both light and dark */
}

/* ============================================================================
   BENTO CARDS - Background Flip
   ========================================================================== */

/* Light mode: Bento cards get dark backgrounds */
[data-theme="light"] .bento-item {
  background: #1A1A1A; /* Dark bg in light mode */
  border-color: rgba(255, 253, 245, 0.12);
}
[data-theme="light"] .bento-item .bento-banner {
  background: #1A1A1A; /* Dark banner */
  color: #F4EEE0; /* Light text */
}
[data-theme="light"] .bento-item .bento-banner h3 {
  color: #F4EEE0; /* Light heading */
}
[data-theme="light"] .bento-item .bento-banner p {
  color: #F3F1EA; /* Cream text on dark bg */
}
[data-theme="light"] .bento-item:hover .bento-banner h3 {
  color: #1A1A1A; /* Dark on hover (dark card gets darker text) */
}
[data-theme="light"] .bento-item:hover .bento-banner p {
  color: #101010; /* Dark text on hover (when banner goes light) */
}

/* ============================================================================
   TRUST STATS CARDS - Background Flip
   ========================================================================== */

/* Light mode: Trust stat cards get dark backgrounds */
[data-theme="light"] .trust-stat {
  background: #1A1A1A; /* Dark bg in light mode */
  border-color: rgba(255, 253, 245, 0.12);
}
[data-theme="light"] .trust-number {
  color: #FFFDF5; /* Cream white on dark bg - NO ORANGE */
}
[data-theme="light"] .trust-stat:hover .trust-number {
  color: #FFFDF5; /* Keep cream white on hover */
}
[data-theme="light"] .trust-label {
  color: #F3F1EA; /* Slightly darker cream on dark bg */
}
