/* ============================================================
   PixelWorkshop — Shared Stylesheet
   ============================================================ */

/* === Reset & Base === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-bg:          #FFFFFF;
  --color-text:        #1A1A1A;
  --color-muted:       #6B7280;
  --color-navy:        #1B2A4A;
  --color-navy-hover:  #263d6b;
  --color-vivid:       #7C3AED;
  --color-vivid-hover: #6d28d9;
  --color-vivid-light: rgba(124, 58, 237, 0.08);
  --color-section:     #F4F6F9;
  --color-border:      #E5E7EB;

  --font-base: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --radius:    14px;
  --radius-sm: 9px;
  --shadow:    0 2px 16px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 6px 32px rgba(0, 0, 0, 0.12);
  --shadow-vivid: 0 4px 24px rgba(124, 58, 237, 0.25);
  --max-width: 1100px;
  --transition: 0.2s ease;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-base);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-navy);
  text-decoration: none;
}

a:hover { color: var(--color-navy-hover); }

/* === Layout === */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section        { padding: 88px 0; }
.section--alt   { background: var(--color-section); }
.section--dark  { background: var(--color-navy); }

/* === Scroll Entrance Animations === */
.animate-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-in.delay-1 { transition-delay: 0.1s; }
.animate-in.delay-2 { transition-delay: 0.2s; }
.animate-in.delay-3 { transition-delay: 0.3s; }
.animate-in.delay-4 { transition-delay: 0.4s; }

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Header / Nav === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-navy);
  letter-spacing: -0.03em;
}

.nav__logo-pixel {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-vivid) 100%);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav__logo-pixel svg {
  width: 14px;
  height: 14px;
  fill: #fff;
}

.nav__logo:hover { color: var(--color-vivid); }

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

.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-muted);
  transition: color var(--transition);
}

.nav__links a:hover { color: var(--color-navy); }

/* === Footer === */
.site-footer {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.6);
  padding: 56px 0 40px;
}

.footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 32px;
}

.footer__brand-block { display: flex; flex-direction: column; gap: 12px; }

.footer__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}

.footer__logo-pixel {
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, var(--color-vivid) 100%);
  border-radius: 6px;
}

.footer__tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  max-width: 200px;
  line-height: 1.5;
}

.footer__nav-group { display: flex; flex-direction: column; gap: 14px; }

.footer__nav-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.footer__nav-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer__nav-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer__nav-links a:hover { color: #fff; }

.footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: none;
  text-decoration: none;
  font-family: var(--font-base);
}

.btn--primary {
  background: var(--color-navy);
  color: #fff;
}

.btn--primary:hover {
  background: var(--color-navy-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn--vivid {
  background: var(--color-vivid);
  color: #fff;
}

.btn--vivid:hover {
  background: var(--color-vivid-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-vivid);
}

.btn--outline {
  background: transparent;
  color: var(--color-navy);
  border: 1.5px solid var(--color-border);
}

.btn--outline:hover {
  border-color: var(--color-navy);
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
}

.btn--outline-white:hover {
  border-color: rgba(255,255,255,0.7);
  color: #fff;
  transform: translateY(-2px);
}

.btn--app-store {
  background: var(--color-navy);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.btn--app-store:hover {
  background: var(--color-navy-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn--app-store svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn__label-top  { font-size: 0.63rem; font-weight: 400; display: block; line-height: 1; opacity: 0.75; }
.btn__label-main { font-size: 0.95rem; font-weight: 700; display: block; line-height: 1.2; }

/* === Hero (Home) === */
.hero {
  padding: 120px 0 96px;
  position: relative;
  overflow: hidden;
}

/* Dot-grid background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(124, 58, 237, 0.13) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
  z-index: 0;
  pointer-events: none;
}

/* Gradient glow blob */
.hero::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at center, rgba(124,58,237,0.12) 0%, transparent 65%);
  z-index: 0;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-vivid);
  background: var(--color-vivid-light);
  border: 1px solid rgba(124, 58, 237, 0.2);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--color-vivid);
  border-radius: 2px;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.hero__title {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 24px;
  background: linear-gradient(140deg, var(--color-navy) 20%, var(--color-vivid) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--color-muted);
  max-width: 480px;
  margin: 0 auto 44px;
  line-height: 1.75;
}

.hero__cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

/* === Stats Bar === */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  width: fit-content;
  margin: 0 auto;
  overflow: hidden;
}

.stats-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-navy);
  border-right: 1px solid var(--color-border);
}

.stats-bar__item:last-child { border-right: none; }

.stats-bar__icon {
  font-size: 0.9rem;
  line-height: 1;
}

/* === App Cards (Home) === */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 56px;
}

.app-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.app-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.app-card__header {
  padding: 32px 32px 24px;
  position: relative;
}

.app-card--rh .app-card__header {
  background: linear-gradient(135deg, rgba(27,42,74,0.05) 0%, rgba(27,42,74,0.02) 100%);
  border-bottom: 2px solid var(--color-navy);
}

.app-card--sts .app-card__header {
  background: linear-gradient(135deg, rgba(124,58,237,0.06) 0%, rgba(124,58,237,0.02) 100%);
  border-bottom: 2px solid var(--color-vivid);
}

.app-card--calmly .app-card__header {
  background: linear-gradient(135deg, rgba(13,148,136,0.06) 0%, rgba(13,148,136,0.02) 100%);
  border-bottom: 2px solid #0D9488;
}

.app-card--crg .app-card__header {
  background: linear-gradient(135deg, rgba(37,99,235,0.08) 0%, rgba(30,64,175,0.02) 100%);
  border-bottom: 2px solid #2563EB;
}

.app-card--wf44 .app-card__header {
  background: linear-gradient(135deg, rgba(77,94,42,0.1) 0%, rgba(44,58,26,0.03) 100%);
  border-bottom: 2px solid #4D5E2A;
}

.app-card__icon-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.app-card__icon {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  flex-shrink: 0;
}

.app-card__icon img { width: 100%; height: 100%; object-fit: cover; }

.app-card__icon--placeholder {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  background: rgba(255,255,255,0.6);
  border: 2px dashed var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--color-muted);
  text-align: center;
  flex-shrink: 0;
}

.app-card__platform-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--color-border);
  color: var(--color-muted);
}

.app-card__body { padding: 0 32px 32px; flex: 1; display: flex; flex-direction: column; gap: 12px; }

.app-card__name {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-navy);
}

.app-card__tagline {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.65;
  flex: 1;
}

.app-card__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
}

/* === App Page Hero === */
.app-hero {
  padding: 72px 0 60px;
  border-bottom: 1px solid var(--color-border);
}

.app-hero__inner {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.app-hero__icon {
  width: 100px;
  height: 100px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}

.app-hero__icon img { width: 100%; height: 100%; object-fit: cover; }

.app-hero__icon--placeholder {
  width: 100px;
  height: 100px;
  border-radius: 22px;
  background: var(--color-section);
  border: 2px dashed var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--color-muted);
  text-align: center;
  flex-shrink: 0;
}

.app-hero__text { flex: 1; min-width: 260px; }

.app-hero__category {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 10px;
}

.app-hero__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--color-navy);
  line-height: 1.1;
  margin-bottom: 14px;
}

.app-hero__desc {
  font-size: 1rem;
  color: var(--color-muted);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 28px;
}

/* === Screenshots === */
.screenshots {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding: 8px 0 24px;
  scrollbar-width: thin;
  scrollbar-color: var(--color-vivid) var(--color-border);
}

.screenshots::-webkit-scrollbar       { height: 6px; }
.screenshots::-webkit-scrollbar-track { background: var(--color-border); border-radius: 3px; }
.screenshots::-webkit-scrollbar-thumb { background: var(--color-vivid); border-radius: 3px; }

/* Spacer so the last screenshot isn't clipped when scrolled to end */
.screenshots::after {
  content: '';
  flex-shrink: 0;
  width: 24px;
}

.screenshot {
  flex-shrink: 0;
  width: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  scroll-snap-align: start;
}

.screenshot img { width: 100%; height: auto; }

.screenshot--placeholder {
  flex-shrink: 0;
  width: 200px;
  aspect-ratio: 9 / 19.5;
  background: var(--color-section);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--color-muted);
  text-align: center;
}

/* === Features Grid === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 52px;
}

.feature-item { display: flex; flex-direction: column; gap: 10px; }

.feature-item__icon {
  width: 44px;
  height: 44px;
  background: var(--color-vivid-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.feature-item__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-navy);
}

.feature-item__desc {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.65;
}

/* === Section Headings === */
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-vivid);
  margin-bottom: 12px;
  display: block;
}

.section-label--light { color: rgba(255,255,255,0.5); }

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--color-navy);
  line-height: 1.12;
  margin-bottom: 16px;
}

.section-title--light { color: #fff; }

.section-desc {
  font-size: 1rem;
  color: var(--color-muted);
  max-width: 520px;
  line-height: 1.75;
}

.section-desc--light { color: rgba(255,255,255,0.65); }

/* === About Strip === */
.about-strip {
  background: var(--color-navy);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.about-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(124, 58, 237, 0.18) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  pointer-events: none;
}

.about-strip__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.about-strip__text { max-width: 560px; }

.about-strip__title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}

.about-strip__desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
}

/* === Support Cards === */
.support-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.support-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.support-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.support-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.support-card__icon img { width: 100%; height: 100%; object-fit: cover; }

.support-card__icon--placeholder {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--color-section);
  border: 2px dashed var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--color-muted);
  text-align: center;
}

.support-card__name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-navy);
  letter-spacing: -0.02em;
}

.support-card__desc {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.65;
  flex: 1;
}

/* === FAQ === */
.faq-list {
  display: flex;
  flex-direction: column;
  margin-top: 44px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item:last-child { border-bottom: none; }

.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background var(--transition);
  font-family: var(--font-base);
}

.faq-item__question:hover { background: var(--color-section); }

.faq-item__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-muted);
  transition: transform var(--transition);
}

.faq-item.open .faq-item__chevron { transform: rotate(180deg); color: var(--color-vivid); }

.faq-item__answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.75;
}

.faq-item.open .faq-item__answer { display: block; }

/* === Contact Form === */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 580px;
  margin-top: 40px;
}

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

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-family: var(--font-base);
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-vivid);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.form-success {
  display: none;
  padding: 16px 20px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-sm);
  color: #15803d;
  font-size: 0.875rem;
  font-weight: 600;
}

/* === Legal Pages === */
.legal-content { max-width: 720px; }

.legal-content h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-navy);
  margin: 40px 0 12px;
  letter-spacing: -0.02em;
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content p,
.legal-content li {
  font-size: 0.925rem;
  color: var(--color-muted);
  line-height: 1.85;
  margin-bottom: 12px;
}

.legal-content ul { padding-left: 20px; margin-bottom: 16px; }
.legal-content li { margin-bottom: 6px; }

.legal-meta {
  font-size: 0.82rem;
  color: var(--color-muted);
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--color-border);
}

/* === Breadcrumb === */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--color-muted);
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.breadcrumb a { color: var(--color-muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--color-vivid); }
.breadcrumb__sep { opacity: 0.35; }

/* === Coming Soon Badge === */
.badge--coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #92400e;
  background: #fef3c7;
  border: 1px solid #fcd34d;
  padding: 4px 10px;
  border-radius: 6px;
}

.badge--coming-soon::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #f59e0b;
  border-radius: 50%;
  flex-shrink: 0;
}

.btn--app-store.btn--disabled {
  background: #e5e7eb;
  color: #9ca3af;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
}

.btn--app-store.btn--disabled svg {
  opacity: 0.4;
}

/* === Responsive === */
@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .hero { padding: 80px 0 64px; }

  .nav__links { gap: 20px; }
  .nav__links .nav__hide-mobile { display: none; }

  .stats-bar { border-radius: var(--radius); }
  .stats-bar__item { padding: 10px 16px; }

  .apps-grid { grid-template-columns: 1fr; }

  .about-strip__inner { flex-direction: column; }

  .footer__top { flex-direction: column; }
}


/* --- Warfront: 1944 Components --- */
.badge--platform {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: rgba(77, 94, 42, 0.1);
  color: #4D5E2A;
  border: 1px solid rgba(77, 94, 42, 0.28);
}

.wf44-band {
  background: linear-gradient(160deg, #1A2210 0%, #2C3A1A 100%);
  padding: 88px 0;
}
@media (max-width: 640px) { .wf44-band { padding: 60px 0; } }

.wf44-band .section-label { color: rgba(168, 198, 80, 0.7); }
.wf44-band .section-title { color: #E8EAD8; }
.wf44-band .section-desc  { color: rgba(232, 234, 216, 0.65); }

.mode-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.mode-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 32px 28px;
}

.mode-card__num {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(168, 198, 80, 0.3);
  line-height: 1;
  margin-bottom: 14px;
}

.mode-card__title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #E8EAD8;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.mode-card__desc {
  font-size: 0.9rem;
  color: rgba(232, 234, 216, 0.6);
  line-height: 1.7;
}

.dlc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.dlc-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.dlc-card__icon { font-size: 1.75rem; margin-bottom: 14px; }

.dlc-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.dlc-card__status {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-vivid);
  background: var(--color-vivid-light);
  padding: 2px 8px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.dlc-card__desc {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.65;
}


/* --- About Page Components --- */
.about-hero {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(124, 58, 237, 0.11) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
  pointer-events: none;
}

.about-hero::after {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle at center, rgba(27,42,74,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.about-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.about-hero__title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 24px;
  background: linear-gradient(140deg, var(--color-navy) 20%, var(--color-vivid) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero__lead {
  font-size: 1.2rem;
  color: var(--color-muted);
  line-height: 1.8;
  max-width: 580px;
}

.about-hero__lead strong {
  color: var(--color-navy);
  font-weight: 700;
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-section);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  padding: 6px 16px 6px 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 28px;
}

.location-badge__pin {
  font-size: 1rem;
  line-height: 1;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.story-body p {
  font-size: 1rem;
  color: var(--color-muted);
  line-height: 1.85;
  margin-bottom: 20px;
}

.story-body p:last-child { margin-bottom: 0; }

.story-body strong {
  color: var(--color-navy);
  font-weight: 700;
}

.story-aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.stat-card__number {
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-vivid) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-card__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 4px;
}

.stat-card__desc {
  font-size: 0.8rem;
  color: var(--color-muted);
  line-height: 1.5;
}

.build-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 52px;
  counter-reset: step-counter;
}

.build-step {
  display: flex;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--color-border);
  align-items: flex-start;
}

.build-step:last-child { border-bottom: none; }

.build-step__number {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-vivid) 100%);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.build-step__content { flex: 1; }

.build-step__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-navy);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.build-step__desc {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.7;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 52px;
}

.value-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-card__emoji {
  font-size: 1.6rem;
  margin-bottom: 14px;
  display: block;
}

.value-card__title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-navy);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.value-card__desc {
  font-size: 0.85rem;
  color: var(--color-muted);
  line-height: 1.65;
}

.cta-strip {
  background: var(--color-section);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 72px 0;
  text-align: center;
}

.cta-strip__title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--color-navy);
  margin-bottom: 12px;
}

.cta-strip__desc {
  font-size: 1rem;
  color: var(--color-muted);
  max-width: 440px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.cta-strip__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 720px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}


/* ============================================================
   NEON GAMING THEME
   Applied via .theme-neon on <body>
   ============================================================ */

/* --- Neon: Base Variables --- */
.theme-neon {
  --color-bg:          #0A0A0F;
  --color-bg-surface:  #12121A;
  --color-text:        #E0E0F0;
  --color-muted:       #8888AA;
  --color-section:     #0F0F18;
  --color-border:      rgba(255, 255, 255, 0.08);
  --color-navy:        #E0E0F0;
  --color-navy-hover:  #FFFFFF;

  --neon-cyan:    #00F0FF;
  --neon-magenta: #FF00AA;
  --neon-purple:  #B347FF;
  --neon-green:   #39FF14;
  --neon-orange:  #FF6B2B;
  --neon-blue:    #4D7CFF;
  --neon-yellow:  #FFE53B;

  --glow-cyan:    0 0 20px rgba(0, 240, 255, 0.4);
  --glow-magenta: 0 0 20px rgba(255, 0, 170, 0.4);
  --glow-purple:  0 0 20px rgba(179, 71, 255, 0.4);
  --glow-green:   0 0 20px rgba(57, 255, 20, 0.4);

  --card-bg:     rgba(255, 255, 255, 0.03);
  --card-border: rgba(255, 255, 255, 0.08);
  --glass-bg:    rgba(10, 10, 15, 0.85);

  --color-vivid:       #B347FF;
  --color-vivid-hover: #9B30FF;
  --color-vivid-light: rgba(179, 71, 255, 0.12);

  --shadow:       0 2px 20px rgba(0, 240, 255, 0.08);
  --shadow-md:    0 8px 40px rgba(179, 71, 255, 0.15);
  --shadow-vivid: 0 4px 30px rgba(179, 71, 255, 0.3);

  --app-accent: var(--neon-cyan);
  --app-glow:   var(--glow-cyan);

  background: var(--color-bg);
  color: var(--color-text);
}

/* --- Neon: Per-App Accents --- */
.theme-neon.app--retro         { --app-accent: #39FF14; --app-glow: 0 0 20px rgba(57,255,20,0.4); }
.theme-neon.app--snooze        { --app-accent: #FF00AA; --app-glow: 0 0 20px rgba(255,0,170,0.4); }
.theme-neon.app--calmly        { --app-accent: #00F0FF; --app-glow: 0 0 20px rgba(0,240,255,0.4); }
.theme-neon.app--constellation { --app-accent: #4D7CFF; --app-glow: 0 0 20px rgba(77,124,255,0.4); }
.theme-neon.app--warfront      { --app-accent: #FF6B2B; --app-glow: 0 0 20px rgba(255,107,43,0.4); }
.theme-neon.app--matchmint     { --app-accent: #2EF2A0; --app-glow: 0 0 20px rgba(46,242,160,0.4); }

/* --- Neon: Global Scanline Overlay --- */
.theme-neon::after {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.015) 2px, rgba(0,0,0,0.015) 4px);
  pointer-events: none;
  z-index: 9999;
}

/* --- Neon: Header --- */
.theme-neon .site-header {
  background: rgba(10, 10, 15, 0.75);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid rgba(0, 240, 255, 0.1);
}
.theme-neon .nav__logo { color: #E0E0F0; }
.theme-neon .nav__logo-pixel {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  box-shadow: var(--glow-cyan);
}
.theme-neon .nav__links a { color: var(--color-muted); }
.theme-neon .nav__links a:hover {
  color: var(--neon-cyan);
  text-shadow: 0 0 8px rgba(0, 240, 255, 0.5);
}

/* --- Neon: Section Overrides --- */
.theme-neon .section-title { color: #E0E0F0; }
.theme-neon .section-label { color: var(--app-accent, var(--neon-cyan)); }
.theme-neon .section-desc  { color: var(--color-muted); }
.theme-neon .section--alt  { background: var(--color-section); }

/* --- Neon: Buttons --- */
.theme-neon .btn--vivid,
.theme-neon .btn--primary {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  color: #0A0A0F;
  border: none;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}
.theme-neon .btn--vivid:hover,
.theme-neon .btn--primary:hover {
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.4), 0 0 60px rgba(179, 71, 255, 0.2);
  transform: translateY(-2px);
  color: #0A0A0F;
}
.theme-neon .btn--outline {
  color: #E0E0F0;
  border-color: rgba(255, 255, 255, 0.15);
}
.theme-neon .btn--outline:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.06);
}
.theme-neon .btn--neon-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  color: #0A0A0F;
  border: none;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
  transition: all 0.2s ease;
}
.theme-neon .btn--neon-primary:hover {
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.5), 0 0 60px rgba(179, 71, 255, 0.3);
  transform: translateY(-2px);
  color: #0A0A0F;
}
.theme-neon .btn--neon-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  background: transparent;
  color: var(--neon-cyan);
  border: 1.5px solid var(--neon-cyan);
  transition: all 0.2s ease;
}
.theme-neon .btn--neon-outline:hover {
  background: rgba(0, 240, 255, 0.08);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
  transform: translateY(-2px);
  color: var(--neon-cyan);
}
.theme-neon .btn--sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* App Store button dark treatment */
.theme-neon .btn--app-store {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #E0E0F0;
}
.theme-neon .btn--app-store:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--app-accent, var(--neon-cyan));
  box-shadow: var(--app-glow, var(--glow-cyan));
  color: #FFFFFF;
}
.theme-neon .btn--app-store.btn--disabled {
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- Neon: Badges --- */
.theme-neon .app-card__platform-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-muted);
}
.theme-neon .badge--platform {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--color-muted);
}
.theme-neon .badge--coming-soon {
  background: rgba(255, 235, 59, 0.1);
  border-color: rgba(255, 235, 59, 0.25);
  color: var(--neon-yellow);
}
.theme-neon .badge--coming-soon::before {
  background: var(--neon-yellow);
}

/* --- Neon: Hero --- */
.theme-neon .neon-hero {
  padding: 160px 0 120px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, rgba(179, 71, 255, 0.15) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 50%, rgba(0, 240, 255, 0.08) 0%, transparent 40%),
              var(--color-bg);
}
.theme-neon .neon-hero__inner {
  position: relative;
  z-index: 3;
  text-align: center;
}
.theme-neon .neon-hero__grid-bg {
  position: absolute;
  bottom: 0;
  left: -50%;
  width: 200%;
  height: 60%;
  background-image:
    linear-gradient(rgba(0, 240, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: perspective(500px) rotateX(60deg);
  transform-origin: center top;
  pointer-events: none;
  mask-image: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
  animation: grid-drift 8s linear infinite;
}
.theme-neon .neon-hero__scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px);
  pointer-events: none;
  z-index: 2;
}
.theme-neon .neon-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(0, 240, 255, 0.15);
  border-radius: 100px;
  padding: 6px 18px 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  margin-bottom: 28px;
}
.theme-neon .neon-hero__eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--neon-cyan);
  box-shadow: 0 0 8px var(--neon-cyan);
  animation: blink 2s ease-in-out infinite;
}
.theme-neon .neon-hero__title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #FFFFFF 0%, var(--neon-cyan) 50%, var(--neon-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.theme-neon .neon-hero__subtitle {
  font-size: 1.15rem;
  color: var(--color-muted);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.75;
}
.theme-neon .neon-hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* --- Neon: 3D Floating Cards --- */
.theme-neon .neon-hero__3d-scene {
  position: absolute;
  inset: 0;
  perspective: 1000px;
  pointer-events: none;
  z-index: 1;
}
.theme-neon .neon-hero__float-card {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
  animation: neon-float 6s ease-in-out infinite;
}
.theme-neon .neon-hero__float-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.theme-neon .neon-hero__float-card--1 {
  top: 18%;
  right: 8%;
  transform: rotateY(-15deg) rotateX(10deg);
  animation-delay: 0s;
}
.theme-neon .neon-hero__float-card--2 {
  top: 58%;
  right: 12%;
  transform: rotateY(10deg) rotateX(-5deg);
  animation-delay: -2s;
}
.theme-neon .neon-hero__float-card--3 {
  top: 38%;
  left: 5%;
  transform: rotateY(15deg) rotateX(8deg);
  animation-delay: -4s;
}

/* --- Neon: Stats Bar --- */
.theme-neon .neon-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  width: fit-content;
  margin: 0 auto;
  overflow: hidden;
}
.theme-neon .neon-stats-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-muted);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.theme-neon .neon-stats-bar__item:last-child { border-right: none; }

/* --- Neon: Showcase Section --- */
.theme-neon .neon-showcase {
  padding: 100px 0 80px;
  background: var(--color-section);
  position: relative;
  overflow: hidden;
}

/* --- Neon: Carousel --- */
.carousel {
  margin-top: 48px;
  position: relative;
  padding: 0 24px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.carousel__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 20px 0 40px;
  scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }

.carousel__card {
  flex: 0 0 min(340px, 80vw);
  scroll-snap-align: center;
  perspective: 800px;
}
.carousel__card-inner {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 40px 32px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  transform-style: preserve-3d;
}
.carousel__card-inner:hover {
  transform: rotateY(-3deg) rotateX(2deg) translateY(-8px);
}

/* Per-app glow on hover */
.carousel__card[data-app-color="green"] .carousel__card-inner:hover {
  box-shadow: 0 20px 60px rgba(57, 255, 20, 0.15);
  border-color: rgba(57, 255, 20, 0.25);
}
.carousel__card[data-app-color="magenta"] .carousel__card-inner:hover {
  box-shadow: 0 20px 60px rgba(255, 0, 170, 0.15);
  border-color: rgba(255, 0, 170, 0.25);
}
.carousel__card[data-app-color="cyan"] .carousel__card-inner:hover {
  box-shadow: 0 20px 60px rgba(0, 240, 255, 0.15);
  border-color: rgba(0, 240, 255, 0.25);
}
.carousel__card[data-app-color="blue"] .carousel__card-inner:hover {
  box-shadow: 0 20px 60px rgba(77, 124, 255, 0.15);
  border-color: rgba(77, 124, 255, 0.25);
}
.carousel__card[data-app-color="orange"] .carousel__card-inner:hover {
  box-shadow: 0 20px 60px rgba(255, 107, 43, 0.15);
  border-color: rgba(255, 107, 43, 0.25);
}
.carousel__card[data-app-color="mint"] .carousel__card-inner:hover {
  box-shadow: 0 20px 60px rgba(46, 242, 160, 0.15);
  border-color: rgba(46, 242, 160, 0.3);
}

.carousel__card-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
.carousel__card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel__card-category {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.carousel__card[data-app-color="green"] .carousel__card-category   { color: #39FF14; }
.carousel__card[data-app-color="magenta"] .carousel__card-category { color: #FF00AA; }
.carousel__card[data-app-color="cyan"] .carousel__card-category    { color: #00F0FF; }
.carousel__card[data-app-color="blue"] .carousel__card-category    { color: #4D7CFF; }
.carousel__card[data-app-color="orange"] .carousel__card-category  { color: #FF6B2B; }
.carousel__card[data-app-color="mint"] .carousel__card-category    { color: #2EF2A0; }

.carousel__card-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: #E0E0F0;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.carousel__card-desc {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}
.carousel__card-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Carousel navigation */
.carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
}
.carousel__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: var(--neon-cyan);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.carousel__btn:hover {
  background: rgba(0, 240, 255, 0.1);
  border-color: var(--neon-cyan);
  box-shadow: var(--glow-cyan);
}
.carousel__dots {
  display: flex;
  gap: 8px;
}
.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.carousel__dot--active {
  background: var(--neon-cyan);
  box-shadow: 0 0 8px rgba(0, 240, 255, 0.5);
  width: 24px;
  border-radius: 4px;
}

/* --- Neon: Download CTA --- */
.theme-neon .neon-cta {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--color-section) 0%, #0D0D1A 100%);
  text-align: center;
}
.theme-neon .neon-cta__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.theme-neon .neon-cta__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #FFFFFF;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.theme-neon .neon-cta__desc {
  font-size: 1.1rem;
  color: var(--color-muted);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}
.theme-neon .neon-cta__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* --- Neon: About Strip Override --- */
.theme-neon .about-strip {
  background: linear-gradient(160deg, #0A0A0F 0%, #12121A 100%);
}
.theme-neon .about-strip::before {
  background-image: radial-gradient(circle, rgba(0, 240, 255, 0.12) 1.5px, transparent 1.5px);
}
.theme-neon .about-strip__title { color: #E0E0F0; }

/* --- Neon: Footer Override --- */
.theme-neon .site-footer {
  background: #06060A;
  border-top: 1px solid rgba(0, 240, 255, 0.05);
}

/* --- Neon: App Detail Page Overrides --- */
.theme-neon .app-hero {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(ellipse at 30% 0%, color-mix(in srgb, var(--app-accent) 8%, transparent) 0%, transparent 50%), var(--color-bg);
}
.theme-neon .app-hero__title {
  color: var(--app-accent, var(--neon-cyan));
}
.theme-neon .app-hero__category { color: var(--color-muted); }
.theme-neon .app-hero__desc { color: var(--color-muted); }
.theme-neon .breadcrumb a { color: var(--color-muted); }
.theme-neon .breadcrumb a:hover { color: var(--neon-cyan); }
.theme-neon .breadcrumb__sep { color: rgba(255,255,255,0.2); }

/* Screenshots dark */
.theme-neon .screenshot {
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}
.theme-neon .screenshots::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); }
.theme-neon .screenshots::-webkit-scrollbar-thumb { background: var(--app-accent, var(--neon-cyan)); }

/* Features grid dark */
.theme-neon .feature-item__title { color: #E0E0F0; }
.theme-neon .feature-item__desc  { color: var(--color-muted); }
.theme-neon .feature-item__icon {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* App card dark (used on app pages if they have cards) */
.theme-neon .app-card {
  background: var(--card-bg);
  border-color: var(--card-border);
}
.theme-neon .app-card__name { color: #E0E0F0; }
.theme-neon .app-card__tagline { color: var(--color-muted); }

/* --- Neon: Warfront-Specific Overrides --- */
.theme-neon .wf44-band {
  background: linear-gradient(160deg, #0A0F05 0%, #141F0A 100%);
}
.theme-neon .wf44-band .section-label { color: rgba(255, 107, 43, 0.7); }
.theme-neon .mode-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 107, 43, 0.1);
}
.theme-neon .dlc-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
}
.theme-neon .dlc-card__title { color: #E0E0F0; }
.theme-neon .dlc-card__desc  { color: var(--color-muted); }

/* --- Neon: Legal Content --- */
.theme-neon .legal-content h2 { color: #E0E0F0; }
.theme-neon .legal-content a { color: var(--neon-cyan); }
.theme-neon .legal-content a:hover { text-shadow: 0 0 8px rgba(0, 240, 255, 0.3); }
.theme-neon .legal-content strong { color: #E0E0F0; }

/* --- Neon: Support Cards --- */
.theme-neon .support-card {
  background: var(--card-bg);
  border-color: var(--card-border);
}
.theme-neon .support-card:hover {
  box-shadow: 0 8px 30px rgba(0, 240, 255, 0.1);
}
.theme-neon .support-card__name { color: #E0E0F0; }

/* --- Neon: FAQ --- */
.theme-neon .faq-list { border-color: var(--card-border); }
.theme-neon .faq-item { border-color: var(--card-border); }
.theme-neon .faq-item__question:hover { background: rgba(255, 255, 255, 0.03); }
.theme-neon .faq-item.open .faq-item__chevron { color: var(--neon-cyan); }

/* --- Neon: Contact Form --- */
.theme-neon .form-group input,
.theme-neon .form-group select,
.theme-neon .form-group textarea {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--card-border);
  color: #E0E0F0;
}
.theme-neon .form-group input:focus,
.theme-neon .form-group select:focus,
.theme-neon .form-group textarea:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.1);
}
.theme-neon .form-group input::placeholder,
.theme-neon .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}
.theme-neon .form-success {
  background: rgba(57, 255, 20, 0.08);
  border-color: rgba(57, 255, 20, 0.2);
  color: #39FF14;
}

/* --- Neon: About Page --- */
.theme-neon .about-hero::before {
  background-image: radial-gradient(circle, rgba(0, 240, 255, 0.08) 1.5px, transparent 1.5px);
}
.theme-neon .about-hero::after {
  background: radial-gradient(circle at center, rgba(0, 240, 255, 0.05) 0%, transparent 65%);
}
.theme-neon .about-hero__title {
  background: linear-gradient(140deg, #FFFFFF 20%, var(--neon-cyan) 60%, var(--neon-purple) 100%);
}
.theme-neon .stat-card {
  background: var(--card-bg);
  border-color: var(--card-border);
}
.theme-neon .value-card {
  background: var(--card-bg);
  border-color: var(--card-border);
}
.theme-neon .value-card:hover {
  box-shadow: 0 8px 30px rgba(0, 240, 255, 0.1);
}
.theme-neon .cta-strip {
  background: var(--color-section);
  border-color: var(--card-border);
}

/* --- Neon: Animations --- */
@keyframes neon-float {
  0%, 100% { transform: translateY(0px) rotateY(-15deg) rotateX(10deg); }
  50%      { transform: translateY(-20px) rotateY(-10deg) rotateX(5deg); }
}
@keyframes grid-drift {
  0%   { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 240, 255, 0.2); }
  50%      { box-shadow: 0 0 40px rgba(0, 240, 255, 0.4); }
}

/* Extend scroll animations for neon */
.theme-neon .animate-in {
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Neon: Responsive --- */
@media (max-width: 900px) {
  .theme-neon .neon-hero__float-card--3 { display: none; }
}
@media (max-width: 640px) {
  .theme-neon .neon-hero { padding: 120px 0 80px; }
  .theme-neon .neon-hero__3d-scene { display: none; }
  .theme-neon .neon-hero__grid-bg { height: 40%; }
  .carousel__card { flex: 0 0 85vw; }
  .theme-neon .neon-cta { padding: 72px 0; }
  .theme-neon .neon-stats-bar { border-radius: var(--radius); }
  .theme-neon .neon-stats-bar__item { padding: 10px 16px; }
  .theme-neon .neon-showcase { padding: 72px 0 60px; }
}
