/* PixelPros — PIXEL RETRO THEME (sitewide)
   Sharp corners · neon · Press Start · arcade chrome · ALIVE */

/* ========== Header: tight + balanced logo / menu ========== */
:root {
  --header-h: 56px !important;
}
.site-header {
  height: 56px !important;
  min-height: 56px !important;
  box-shadow: 0 0 36px rgba(0, 240, 200, 0.14);
  border-bottom: 2px solid rgba(0, 240, 200, 0.35) !important;
}
.site-header .container {
  align-items: center !important;
  min-height: 56px !important;
  padding-block: 0 !important;
}
.logo-img,
.logo-img--header {
  width: 40px !important;
  height: 40px !important;
  border-radius: 0 !important;
  border: 2px solid rgba(0, 240, 200, 0.6) !important;
  image-rendering: pixelated;
  box-shadow:
    0 0 0 1px rgba(255, 45, 149, 0.3),
    0 0 18px rgba(0, 240, 200, 0.4) !important;
}

/* ========== Pixel retro hamburger = same footprint as logo ========== */
.menu-toggle {
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  min-height: 40px !important;
  display: none;
  place-items: center !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 5px !important;
  border-radius: 0 !important;
  background:
    linear-gradient(180deg, rgba(0, 240, 200, 0.18), rgba(255, 45, 149, 0.1)),
    #0a0914 !important;
  border: 2px solid rgba(0, 240, 200, 0.65) !important;
  box-shadow:
    2px 2px 0 rgba(255, 45, 149, 0.35),
    0 0 16px rgba(0, 240, 200, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08) !important;
  padding: 0 !important;
  position: relative;
  overflow: hidden;
}
.menu-toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 2px, rgba(0, 240, 200, 0.06) 2px 3px, transparent 3px),
    linear-gradient(0deg, transparent 0 2px, rgba(255, 45, 149, 0.05) 2px 3px, transparent 3px);
  background-size: 4px 4px;
  opacity: 0.9;
}
@media (max-width: 899px) {
  .menu-toggle {
    display: flex !important;
    flex-direction: column !important;
  }
}
/* Thick pixel bars — not thin “normal” lines */
.menu-toggle span {
  display: block !important;
  width: 20px !important;
  height: 4px !important;
  background: var(--primary, #00f0c8) !important;
  border-radius: 0 !important;
  box-shadow:
    0 0 8px rgba(0, 240, 200, 0.9),
    1px 1px 0 rgba(255, 45, 149, 0.45) !important;
  margin: 0 !important;
  position: relative;
  z-index: 1;
  transition: transform 0.18s steps(3), opacity 0.12s !important;
}
/* Tiny pixel “caps” on each bar */
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  top: 0;
  width: 3px;
  height: 4px;
  background: #5dffe0;
  box-shadow: 0 0 4px rgba(0, 240, 200, 0.8);
}
.menu-toggle span::before {
  left: -1px;
}
.menu-toggle span::after {
  right: -1px;
}
.menu-toggle[aria-expanded="true"] {
  border-color: rgba(255, 45, 149, 0.7) !important;
  box-shadow:
    2px 2px 0 rgba(0, 240, 200, 0.35),
    0 0 18px rgba(255, 45, 149, 0.4) !important;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(9px) rotate(45deg) !important;
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0 !important;
  transform: scaleX(0) !important;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg) !important;
}

/* Promo strip sits flush under header — no big empty gap */
.promo-strip {
  margin: 0 !important;
  padding: 0.55rem 0.75rem !important;
  line-height: 1.55 !important;
  border-bottom: 1px solid rgba(0, 240, 200, 0.2);
}

/* ========== Global pixel geometry (sharp, not soft) ========== */
.btn,
.btn-primary,
.btn-secondary,
.btn-block,
.btn-lg,
.card,
.form-card,
.aside-card,
.price-card,
.feature-tile,
.problem-item,
.benefit-item,
.step,
.faq-item,
.cta-band,
.field input,
.field select,
.field textarea,
.nav a,
.pixel-chat__panel,
.pixel-chat__launcher,
.pixel-chat__bubble,
.pixel-chat__chip,
.pixel-chat__send,
.pixel-chat__close,
.pixel-chat__avatar,
.hero-visual {
  border-radius: 0 !important;
}

/* Pixel outer frame on cards */
.card,
.form-card,
.aside-card,
.price-card,
.feature-tile,
.problem-item,
.benefit-item,
.step,
.faq-item {
  border: 2px solid rgba(0, 240, 200, 0.28) !important;
  box-shadow:
    4px 4px 0 rgba(255, 45, 149, 0.18),
    0 0 28px rgba(0, 240, 200, 0.12),
    0 12px 40px rgba(0, 0, 0, 0.45) !important;
  transition: transform 0.2s steps(2), box-shadow 0.2s, border-color 0.2s !important;
}
.card:hover,
.feature-tile:hover,
.price-card:hover,
.aside-card:hover {
  border-color: rgba(0, 240, 200, 0.65) !important;
  box-shadow:
    6px 6px 0 rgba(255, 45, 149, 0.3),
    0 0 42px rgba(0, 240, 200, 0.28),
    0 0 60px rgba(255, 45, 149, 0.18) !important;
  transform: translate(-2px, -2px) !important;
}

.form-card {
  background:
    linear-gradient(180deg, rgba(0, 240, 200, 0.09), transparent 45%),
    var(--bg-card, #12101c) !important;
  box-shadow:
    4px 4px 0 rgba(255, 45, 149, 0.2),
    0 0 36px rgba(0, 240, 200, 0.15) !important;
}

/* ========== Buttons = arcade capsules ========== */
.btn {
  font-family: "Press Start 2P", var(--font-pixel), monospace !important;
  font-size: 0.55rem !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  border-radius: 0 !important;
  border: 2px solid transparent !important;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.45) !important;
  transition: transform 0.12s steps(2), box-shadow 0.12s !important;
}
.btn:hover {
  transform: translate(-1px, -1px) !important;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.5) !important;
}
.btn:active {
  transform: translate(2px, 2px) !important;
  box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5) !important;
}
.btn-primary {
  border-color: rgba(255, 255, 255, 0.3) !important;
  animation: neon-pulse-strong 2.4s ease-in-out infinite !important;
}
.btn-secondary {
  border: 2px solid rgba(0, 240, 200, 0.5) !important;
  color: var(--primary, #00f0c8) !important;
  background: transparent !important;
  box-shadow: 3px 3px 0 rgba(0, 240, 200, 0.18) !important;
}
.btn-secondary::after {
  content: " »" !important;
}

@keyframes neon-pulse-strong {
  0%,
  100% {
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.45), 0 0 18px rgba(0, 240, 200, 0.5),
      0 0 32px rgba(255, 45, 149, 0.2);
  }
  50% {
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.45), 0 0 32px rgba(0, 240, 200, 0.85),
      0 0 48px rgba(255, 45, 149, 0.35);
  }
}
@media (prefers-reduced-motion: reduce) {
  .btn-primary {
    animation: none !important;
  }
}

/* ========== Inputs = pixel fields ========== */
.field input,
.field select,
.field textarea {
  border-radius: 0 !important;
  border: 2px solid rgba(0, 240, 200, 0.32) !important;
  background: #0a0914 !important;
  box-shadow: inset 2px 2px 0 rgba(0, 0, 0, 0.35);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--primary, #00f0c8) !important;
  box-shadow:
    inset 2px 2px 0 rgba(0, 0, 0, 0.35),
    0 0 0 2px rgba(0, 240, 200, 0.25),
    0 0 24px rgba(0, 240, 200, 0.35) !important;
}
.field label {
  font-family: "Press Start 2P", monospace !important;
  font-size: 0.48rem !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase;
  color: var(--primary, #00f0c8) !important;
  text-shadow: 0 0 10px rgba(0, 240, 200, 0.45);
}

/* ========== Typography accents ========== */
.eyebrow,
.tier,
.price-badge,
.promo-strip,
.level-up,
.growth-banner,
.pay-methods__label,
.footer-col h4,
.breadcrumb {
  font-family: "Press Start 2P", monospace !important;
}
.price-card .tier {
  font-size: 0.5rem !important;
  letter-spacing: 0.08em;
}
.price-badge {
  border-radius: 0 !important;
  border: 2px solid #07060f;
  box-shadow: 2px 2px 0 rgba(255, 45, 149, 0.45);
  font-size: 0.45rem !important;
}

/* ========== Payment badges ========== */
.pay-methods {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.65rem;
  margin: 0.85rem 0 1.1rem;
}
.pay-methods__label {
  width: 100%;
  text-align: center;
  font-size: 0.42rem;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}
.pay-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 0.55rem;
  border-radius: 0;
  background: #fff;
  border: 2px solid rgba(0, 240, 200, 0.4);
  box-shadow: 2px 2px 0 rgba(255, 45, 149, 0.2);
}
.pay-badge svg {
  height: 16px;
  width: auto;
  display: block;
}
.pay-badge--klarna {
  background: #ffb3c7;
}
.pay-badge--apple {
  background: #000;
}
.pay-badge--google {
  background: #fff;
}
.price-card .pay-methods {
  margin-top: auto;
}
.deposit-note {
  font-family: "Press Start 2P", monospace;
  font-size: 0.38rem;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  text-align: center;
  margin-top: 0.55rem;
  line-height: 1.7;
}
.growth-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  padding: 1rem 1.25rem;
  margin: 0 auto 2rem;
  max-width: 720px;
  background: linear-gradient(90deg, rgba(0, 240, 200, 0.12), rgba(255, 45, 149, 0.12));
  border: 2px solid rgba(0, 240, 200, 0.4);
  border-radius: 0;
  font-size: 0.48rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  text-shadow: 0 0 12px var(--primary-glow);
  line-height: 1.7;
  box-shadow: 4px 4px 0 rgba(255, 45, 149, 0.22);
}
.growth-banner span {
  color: var(--accent);
}
.level-up {
  display: inline-block;
  font-size: 0.5rem;
  letter-spacing: 0.08em;
  color: var(--success);
  text-shadow: 0 0 12px rgba(57, 255, 20, 0.45);
  margin-bottom: 0.75rem;
}
.secure-checkout-note {
  text-align: center;
  font-family: "Press Start 2P", monospace;
  font-size: 0.4rem;
  letter-spacing: 0.04em;
  line-height: 1.8;
  color: var(--text-dim);
  margin-top: 1.5rem;
}

@keyframes pixel-glitch {
  0%,
  88%,
  100% {
    transform: none;
    filter: none;
  }
  90% {
    transform: translate(1px, -1px);
    filter: hue-rotate(12deg);
  }
  92% {
    transform: translate(-1px, 1px);
  }
  94% {
    transform: translate(1px, 0);
  }
}
.logo-word {
  animation: pixel-glitch 7s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .logo-word {
    animation: none;
  }
}

/* ========== Ambient + CRT — louder ========== */
body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: -25% -15%;
  z-index: 0;
  background:
    radial-gradient(ellipse 55% 45% at 12% 18%, rgba(0, 240, 200, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 40% at 88% 12%, rgba(255, 45, 149, 0.16), transparent 50%),
    radial-gradient(ellipse 45% 35% at 70% 85%, rgba(123, 97, 255, 0.14), transparent 50%),
    radial-gradient(ellipse 30% 25% at 40% 60%, rgba(0, 240, 200, 0.08), transparent 50%);
  animation: ambient-drift 14s ease-in-out infinite alternate;
}
@keyframes ambient-drift {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.9;
  }
  100% {
    transform: translate(-3%, 4%) scale(1.08);
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  body::before {
    animation: none;
  }
}

/* Stronger scanlines (pixel CRT) */
body::after {
  opacity: 0.5 !important;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 1px,
    rgba(0, 0, 0, 0.2) 1px,
    rgba(0, 0, 0, 0.2) 2px
  ) !important;
}

/* Grid more visible */
.bg-grid {
  background-size: 22px 22px !important;
  background-image:
    linear-gradient(rgba(0, 240, 200, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 45, 149, 0.08) 1px, transparent 1px) !important;
}

.page-hero h1,
.hero h1 {
  text-shadow:
    0 0 48px rgba(0, 240, 200, 0.32),
    2px 2px 0 rgba(255, 45, 149, 0.25);
}

.eyebrow {
  animation: eyebrow-pulse 2.8s ease-in-out infinite;
}
@keyframes eyebrow-pulse {
  0%,
  100% {
    text-shadow: 0 0 14px rgba(0, 240, 200, 0.5);
  }
  50% {
    text-shadow: 0 0 26px rgba(0, 240, 200, 0.9), 0 0 42px rgba(255, 45, 149, 0.4);
  }
}
@media (prefers-reduced-motion: reduce) {
  .eyebrow {
    animation: none;
  }
}

/* ========== Pixel Assistant — ALWAYS show name ========== */
.pixel-chat__launcher {
  border-radius: 0 !important;
  background: linear-gradient(135deg, #00f0c8 0%, #7b61ff 55%, #ff2d95 100%) !important;
  color: #07060f !important;
  font-family: "Press Start 2P", monospace !important;
  font-weight: 400 !important;
  font-size: 0.42rem !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  padding: 0.75rem 0.95rem !important;
  border: 2px solid rgba(255, 255, 255, 0.4) !important;
  box-shadow:
    3px 3px 0 rgba(0, 0, 0, 0.55),
    0 0 28px rgba(0, 240, 200, 0.55),
    0 0 48px rgba(255, 45, 149, 0.25) !important;
  animation: neon-pulse-strong 2.6s ease-in-out infinite;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.45rem !important;
  width: auto !important;
  height: auto !important;
  min-height: 48px;
}
.pixel-chat__launcher-label {
  display: inline !important;
  font-family: "Press Start 2P", monospace !important;
  font-size: 0.42rem !important;
  white-space: nowrap !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.pixel-chat__launcher-icon {
  width: 18px !important;
  height: 18px !important;
  border-radius: 0 !important;
  background: rgba(7, 6, 15, 0.35) !important;
  font-size: 0.7rem !important;
  display: grid !important;
  place-items: center !important;
  flex-shrink: 0;
}
.pixel-chat.is-open .pixel-chat__launcher {
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
  padding: 0.65rem 0.8rem !important;
}
.pixel-chat.is-open .pixel-chat__launcher-label {
  display: inline !important;
}
@media (max-width: 480px) {
  .pixel-chat__launcher-label {
    display: inline !important;
  }
  .pixel-chat__launcher {
    width: auto !important;
    height: auto !important;
    padding: 0.7rem 0.85rem !important;
    border-radius: 0 !important;
    justify-content: center !important;
  }
}

.pixel-chat__panel {
  border: 2px solid rgba(0, 240, 200, 0.5) !important;
  border-radius: 0 !important;
  box-shadow:
    6px 6px 0 rgba(255, 45, 149, 0.25),
    0 0 48px rgba(0, 240, 200, 0.25),
    0 24px 60px rgba(0, 0, 0, 0.6) !important;
}
.pixel-chat__header {
  background:
    linear-gradient(90deg, rgba(0, 240, 200, 0.16), rgba(255, 45, 149, 0.12)),
    #0e0c18 !important;
  border-bottom: 2px solid rgba(0, 240, 200, 0.35) !important;
}
.pixel-chat__avatar {
  border-radius: 0 !important;
  background: linear-gradient(135deg, #00f0c8, #ff2d95) !important;
  color: #07060f !important;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.4);
  font-family: "Press Start 2P", monospace !important;
  font-size: 0.55rem !important;
  font-weight: 400 !important;
}
.pixel-chat__brand strong {
  font-family: "Press Start 2P", monospace !important;
  font-size: 0.5rem !important;
  letter-spacing: 0.04em;
  background: linear-gradient(90deg, #00f0c8, #ff2d95);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pixel-chat__status {
  font-family: "Press Start 2P", monospace !important;
  font-size: 0.35rem !important;
  letter-spacing: 0.04em;
  color: var(--success, #39ff14) !important;
  text-shadow: 0 0 8px rgba(57, 255, 20, 0.5);
}
.pixel-chat__bubble {
  border-radius: 0 !important;
  border: 1px solid rgba(0, 240, 200, 0.18);
}
.pixel-chat__row--user .pixel-chat__bubble {
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
}
.pixel-chat__chip {
  border-radius: 0 !important;
  font-family: "Press Start 2P", monospace !important;
  font-size: 0.38rem !important;
  letter-spacing: 0.03em;
  border: 1px solid rgba(0, 240, 200, 0.4) !important;
}
.pixel-chat__send {
  border-radius: 0 !important;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.35);
}
.pixel-chat__close {
  border-radius: 0 !important;
}
.pixel-chat__form textarea {
  border-radius: 0 !important;
  border: 2px solid rgba(0, 240, 200, 0.35) !important;
}

.cta-band {
  border: 2px solid rgba(0, 240, 200, 0.35) !important;
  box-shadow:
    6px 6px 0 rgba(255, 45, 149, 0.18),
    0 0 60px rgba(0, 240, 200, 0.14) !important;
}

.hero-visual {
  border: 2px solid rgba(0, 240, 200, 0.45) !important;
  box-shadow:
    6px 6px 0 rgba(255, 45, 149, 0.22),
    0 0 48px rgba(0, 240, 200, 0.2) !important;
  animation: soft-float 5.5s ease-in-out infinite;
}
@keyframes soft-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-visual {
    animation: none;
  }
}

/* Steps numbered like arcade levels */
.step::before {
  font-family: "Press Start 2P", monospace !important;
  font-size: 0.55rem !important;
}

/* Nav mobile panel pixel edge */
@media (max-width: 899px) {
  .nav.is-open {
    border-bottom: 2px solid rgba(0, 240, 200, 0.4) !important;
  }
  .nav a {
    border-bottom: 1px solid rgba(0, 240, 200, 0.1);
    font-family: "Press Start 2P", monospace;
    font-size: 0.55rem !important;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
}

.form-card .btn-primary {
  animation: neon-pulse-strong 2.2s ease-in-out infinite !important;
}

/* ========== STATE-OF-THE-ART brand layer (growth + pixels) ========== */

/* Price cards: stack CTAs + pay badges cleanly */
.price-card {
  display: flex !important;
  flex-direction: column !important;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(165deg, rgba(0, 240, 200, 0.07) 0%, transparent 42%),
    var(--bg-card, #12101c) !important;
}
.price-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 64px;
  height: 64px;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 50%, rgba(0, 240, 200, 0.12) 50%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 3px,
      rgba(255, 45, 149, 0.08) 3px,
      rgba(255, 45, 149, 0.08) 4px
    );
  opacity: 0.9;
}
.price-card.featured {
  border-color: rgba(0, 240, 200, 0.65) !important;
  box-shadow:
    6px 6px 0 rgba(255, 45, 149, 0.32),
    0 0 48px rgba(0, 240, 200, 0.28),
    0 0 80px rgba(255, 45, 149, 0.12) !important;
}
.price-card .features {
  flex: 1 1 auto;
  margin-bottom: 0.5rem;
}
.price-card .btn-checkout,
.price-card .btn-block {
  margin-top: 0.25rem;
}
.btn-checkout.is-loading {
  opacity: 0.75;
  pointer-events: none;
}

/* Premium payment badges */
.pay-methods {
  gap: 0.45rem 0.5rem !important;
  padding: 0.65rem 0.4rem 0.35rem;
  border-top: 1px dashed rgba(0, 240, 200, 0.22);
  margin-top: 0.75rem !important;
}
.pay-methods__label {
  color: var(--primary, #00f0c8) !important;
  text-shadow: 0 0 10px rgba(0, 240, 200, 0.35);
  margin-bottom: 0.35rem !important;
}
.pay-badge {
  height: 32px !important;
  min-width: 52px;
  padding: 0 0.5rem !important;
  transition: transform 0.12s steps(2), box-shadow 0.12s;
}
.pay-badge:hover {
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 rgba(255, 45, 149, 0.35);
}
.pay-badge svg {
  height: 18px !important;
  width: auto;
}
.pay-badge--apple {
  background: #000 !important;
  border-color: #333 !important;
}
.pay-badge--google {
  background: #fff !important;
  border-color: #dadce0 !important;
}
.pay-badge--klarna {
  background: #ffb3c7 !important;
  border-color: #ff8fb0 !important;
}
.pay-badge--card {
  background: #f8fafc !important;
  border-color: #cbd5e1 !important;
}

/* Hero: competition-grade split product layout */
.hero {
  text-align: left !important;
}
.hero .container.hero-grid,
.hero-grid {
  width: min(100% - 2.5rem, var(--container-wide, 1180px)) !important;
  max-width: var(--container-wide, 1180px) !important;
  margin-inline: auto !important;
  display: grid !important;
  align-items: center !important;
  gap: clamp(1.75rem, 3.5vw, 3.25rem) !important;
}
@media (min-width: 900px) {
  .hero .container.hero-grid,
  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr) !important;
  }
}
.hero-copy {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  max-width: none !important;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero .eyebrow {
  margin-bottom: 0.9rem !important;
  letter-spacing: 0.1em;
}
.hero h1 {
  margin: 0 0 1.1rem !important;
  margin-inline: 0 !important;
  max-width: 13ch !important;
  font-size: clamp(2.35rem, 4.6vw, 3.65rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.035em !important;
  text-wrap: balance;
  text-shadow:
    0 0 48px rgba(0, 240, 200, 0.22),
    2px 2px 0 rgba(255, 45, 149, 0.12) !important;
}
.hero h1 .grad {
  white-space: nowrap !important;
  display: inline;
}
.hero .lead {
  margin: 0 0 1.6rem !important;
  margin-inline: 0 !important;
  max-width: 40ch !important;
  text-align: left !important;
  color: var(--text-muted, #a89ec4) !important;
  font-size: 1.08rem !important;
  line-height: 1.55 !important;
  letter-spacing: -0.015em;
}
.hero .hero-actions {
  margin: 0 0 1.2rem !important;
  gap: 0.75rem !important;
  justify-content: flex-start !important;
}
.hero-meta {
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-dim, #6e6490);
  letter-spacing: -0.01em;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.35rem 0.55rem;
}
.hero-meta span[aria-hidden="true"] {
  color: rgba(0, 240, 200, 0.45);
  font-weight: 600;
}

/* Product visual: in-viewport, brand-forward */
.hero .hero-visual {
  margin: 0 !important;
  width: 100%;
  max-height: min(52vh, 440px);
  border: 2px solid rgba(0, 240, 200, 0.5) !important;
  box-shadow:
    6px 6px 0 rgba(255, 45, 149, 0.22),
    0 0 56px rgba(0, 240, 200, 0.22),
    0 24px 60px rgba(0, 0, 0, 0.5) !important;
  position: relative;
}
.hero .hero-visual img {
  width: 100%;
  height: 100%;
  max-height: min(52vh, 440px);
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-visual-wrap {
  position: relative;
}
.hero-visual-chip {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  z-index: 2;
  font-family: "Press Start 2P", monospace;
  font-size: 0.42rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.5;
  color: #07060f;
  background: linear-gradient(90deg, #00f0c8, #5dffe0);
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: 3px 3px 0 rgba(255, 45, 149, 0.35), 0 0 20px rgba(0, 240, 200, 0.4);
  padding: 0.55rem 0.7rem;
  max-width: calc(100% - 1.7rem);
}

@media (max-width: 899px) {
  .hero {
    text-align: center !important;
  }
  .hero .container.hero-grid,
  .hero-grid {
    grid-template-columns: 1fr !important;
    width: min(100% - 1.75rem, var(--container-wide, 1180px)) !important;
  }
  .hero-copy {
    align-items: center !important;
  }
  .hero h1 {
    margin-inline: auto !important;
    max-width: 11ch !important;
    font-size: clamp(2.1rem, 9vw, 2.75rem) !important;
  }
  .hero .lead {
    margin-inline: auto !important;
    text-align: center !important;
  }
  .hero .hero-actions {
    justify-content: center !important;
  }
  .hero-meta {
    justify-content: center;
  }
  .hero .hero-visual,
  .hero .hero-visual img {
    max-height: min(42vh, 320px);
  }
  .hero-visual-chip {
    left: 50%;
    transform: translateX(-50%);
    bottom: 0.65rem;
    white-space: nowrap;
  }
}

/* Promo strip: quiet utility bar, not a second headline */
.promo-strip {
  background: rgba(0, 0, 0, 0.25) !important;
  border-bottom: 1px solid rgba(0, 240, 200, 0.12) !important;
  font-size: 0.78rem !important;
  font-family: var(--font-sans), Inter, system-ui, sans-serif !important;
  letter-spacing: -0.01em !important;
  text-transform: none !important;
  font-weight: 500;
  color: var(--text-muted, #a89ec4) !important;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0.5rem;
}
.promo-strip a {
  color: var(--primary, #00f0c8);
  text-decoration: none;
  text-underline-offset: 2px;
}
.promo-strip a:hover {
  text-decoration: underline;
}
.promo-strip__dot {
  opacity: 0.45;
  color: var(--primary, #00f0c8);
}

/* Growth banner: only where intentional (pricing), not stacked in hero */
.hero .growth-banner,
.hero .growth-hud,
.hero .hero-trust {
  display: none !important;
}
.section-head .growth-banner {
  margin-top: 1.25rem;
  margin-bottom: 0;
}

/* Innovation strip under services / pricing */
.pixel-feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.75rem;
}
.pixel-feature {
  padding: 1rem 0.85rem;
  border: 2px solid rgba(0, 240, 200, 0.25);
  background: rgba(7, 6, 15, 0.55);
  box-shadow: 3px 3px 0 rgba(255, 45, 149, 0.12);
  text-align: center;
}
.pixel-feature__icon {
  font-family: "Press Start 2P", monospace;
  font-size: 0.85rem;
  color: var(--primary, #00f0c8);
  text-shadow: 0 0 12px rgba(0, 240, 200, 0.5);
  margin-bottom: 0.55rem;
  display: block;
}
.pixel-feature h3 {
  font-family: "Press Start 2P", monospace !important;
  font-size: 0.48rem !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.45rem !important;
  line-height: 1.55 !important;
}
.pixel-feature p {
  font-size: 0.88rem;
  color: var(--text-muted, #a89ec4);
  line-height: 1.45;
  margin: 0;
}
@media (max-width: 900px) {
  .pixel-feature-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 520px) {
  .pixel-feature-row {
    grid-template-columns: 1fr;
  }
}

/* Success / victory screen */
.victory-screen {
  position: relative;
  padding: 2.5rem 1.25rem 3rem;
  text-align: center;
}
.victory-screen::before {
  content: "★ LEVEL CLEAR ★";
  display: block;
  font-family: "Press Start 2P", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  color: var(--success, #39ff14);
  text-shadow: 0 0 18px rgba(57, 255, 20, 0.55);
  margin-bottom: 1.25rem;
  animation: eyebrow-pulse 2.2s ease-in-out infinite;
}
.victory-card {
  text-align: left;
  margin: 0 auto 2rem;
  max-width: 560px;
  border: 2px solid rgba(0, 240, 200, 0.4) !important;
  box-shadow:
    6px 6px 0 rgba(255, 45, 149, 0.22),
    0 0 40px rgba(0, 240, 200, 0.18) !important;
}
.victory-meter {
  height: 14px;
  margin: 1.25rem auto 0.5rem;
  max-width: 320px;
  background: #0a0914;
  border: 2px solid rgba(0, 240, 200, 0.45);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}
.victory-meter__fill {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #00f0c8, #7b61ff, #ff2d95);
  box-shadow: 0 0 16px rgba(0, 240, 200, 0.65);
  animation: meter-load 1.1s steps(12) both;
}
@keyframes meter-load {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .victory-meter__fill {
    animation: none;
  }
}

/* Secure note + pay strip global */
.secure-checkout-note {
  padding: 1rem 1.1rem;
  border: 2px solid rgba(0, 240, 200, 0.28);
  background: rgba(0, 240, 200, 0.05);
  box-shadow: 3px 3px 0 rgba(255, 45, 149, 0.12);
}
.secure-checkout-note strong {
  color: var(--primary, #00f0c8);
}

/* Homepage pricing section header boost */
#pricing .section-head .level-up {
  display: inline-block;
}

/* Subtle marquee energy on growth banner spans */
.growth-banner {
  position: relative;
  overflow: hidden;
}
.growth-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255, 255, 255, 0.06) 45%,
    transparent 60%
  );
  transform: translateX(-100%);
  animation: banner-shine 4.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes banner-shine {
  0%,
  60% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .growth-banner::before {
    animation: none;
  }
}

/* Logo wordmark = brand pixel identity */
.logo-word {
  font-family: "Press Start 2P", monospace !important;
  font-size: 0.62rem !important;
  letter-spacing: 0.04em;
  background: linear-gradient(90deg, #00f0c8, #c4b5fd, #ff2d95);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  text-shadow: none !important;
  filter: drop-shadow(0 0 10px rgba(0, 240, 200, 0.35));
}


/* ========== QUALITY PASS: obvious hover + interactive chrome ========== */

/* Desktop nav: clear neon target on hover / current */
.nav a {
  position: relative;
  opacity: 1 !important;
  border-radius: 0 !important;
  transition:
    color 0.12s steps(2),
    background 0.12s steps(2),
    box-shadow 0.12s steps(2),
    border-color 0.12s,
    transform 0.12s steps(2) !important;
}
.nav a:not(.btn):hover,
.nav a:not(.btn):focus-visible {
  color: #07060f !important;
  background: var(--primary, #00f0c8) !important;
  box-shadow:
    3px 3px 0 rgba(255, 45, 149, 0.45),
    0 0 18px rgba(0, 240, 200, 0.55) !important;
  outline: none;
  z-index: 1;
}
.nav a[aria-current="page"]:not(.btn) {
  color: var(--primary, #00f0c8) !important;
  background: rgba(0, 240, 200, 0.12) !important;
  box-shadow:
    inset 0 0 0 2px rgba(0, 240, 200, 0.55),
    0 0 14px rgba(0, 240, 200, 0.25) !important;
}
.nav a[aria-current="page"]:not(.btn):hover,
.nav a[aria-current="page"]:not(.btn):focus-visible {
  color: #07060f !important;
  background: var(--primary, #00f0c8) !important;
  box-shadow:
    3px 3px 0 rgba(255, 45, 149, 0.45),
    0 0 22px rgba(0, 240, 200, 0.65) !important;
}
.nav a.btn-primary.nav-cta:hover,
.nav a.btn-primary.nav-cta:focus-visible {
  filter: brightness(1.08);
  box-shadow:
    4px 4px 0 rgba(255, 45, 149, 0.4),
    0 0 28px rgba(0, 240, 200, 0.55) !important;
  transform: translate(-1px, -1px) !important;
}

/* Mobile drawer: solid panel + full-row hover (hamburger-level chrome) */
@media (max-width: 899px) {
  .nav {
    z-index: 99 !important;
  }
  .nav.is-open {
    background: #07060f !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: 2px solid rgba(0, 240, 200, 0.5) !important;
    box-shadow:
      0 12px 40px rgba(0, 0, 0, 0.75),
      0 0 40px rgba(0, 240, 200, 0.12) !important;
    padding: 0.65rem 0.85rem 1.1rem !important;
    gap: 0.35rem !important;
  }
  .nav a:not(.btn) {
    border: 2px solid transparent !important;
    border-bottom: 2px solid rgba(0, 240, 200, 0.12) !important;
    border-radius: 0 !important;
    padding: 0.95rem 0.9rem !important;
    font-family: "Press Start 2P", monospace !important;
    font-size: 0.55rem !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    color: var(--text, #f4f0ff) !important;
    background: transparent !important;
    box-shadow: none !important;
  }
  .nav a:not(.btn):hover,
  .nav a:not(.btn):focus-visible {
    color: #07060f !important;
    background:
      linear-gradient(90deg, #00f0c8 0%, #5dffe0 100%) !important;
    border-color: rgba(255, 255, 255, 0.35) !important;
    border-bottom-color: rgba(255, 255, 255, 0.35) !important;
    box-shadow:
      4px 4px 0 rgba(255, 45, 149, 0.4),
      0 0 24px rgba(0, 240, 200, 0.45) !important;
    transform: translate(-2px, -2px) !important;
  }
  .nav a:not(.btn):active {
    transform: translate(1px, 1px) !important;
    box-shadow: 1px 1px 0 rgba(255, 45, 149, 0.35) !important;
  }
  .nav a[aria-current="page"]:not(.btn) {
    color: var(--primary, #00f0c8) !important;
    background: rgba(0, 240, 200, 0.1) !important;
    border-color: rgba(0, 240, 200, 0.55) !important;
    box-shadow:
      inset 3px 0 0 #00f0c8,
      0 0 16px rgba(0, 240, 200, 0.2) !important;
  }
  .nav a[aria-current="page"]:not(.btn):hover {
    color: #07060f !important;
    background: linear-gradient(90deg, #00f0c8, #5dffe0) !important;
    border-color: rgba(255, 255, 255, 0.35) !important;
    box-shadow:
      4px 4px 0 rgba(255, 45, 149, 0.4),
      0 0 24px rgba(0, 240, 200, 0.5) !important;
  }
  .nav .btn.nav-cta,
  .nav a.btn {
    margin-top: 0.55rem !important;
    border: 2px solid rgba(255, 255, 255, 0.35) !important;
    box-shadow:
      3px 3px 0 rgba(255, 45, 149, 0.3),
      0 0 20px rgba(0, 240, 200, 0.35) !important;
  }
  .nav .btn.nav-cta:hover,
  .nav a.btn:hover {
    transform: translate(-2px, -2px) !important;
    box-shadow:
      5px 5px 0 rgba(255, 45, 149, 0.4),
      0 0 28px rgba(0, 240, 200, 0.55) !important;
    filter: brightness(1.06);
  }
  .menu-toggle:hover,
  .menu-toggle:focus-visible {
    border-color: #5dffe0 !important;
    box-shadow:
      3px 3px 0 rgba(255, 45, 149, 0.45),
      0 0 22px rgba(0, 240, 200, 0.55) !important;
    outline: none;
  }
}

/* Logo hover */
.logo:hover .logo-img,
.logo:hover .logo-img--header {
  border-color: #5dffe0 !important;
  box-shadow:
    0 0 0 1px rgba(255, 45, 149, 0.45),
    0 0 26px rgba(0, 240, 200, 0.65) !important;
}
.logo:hover .logo-word {
  filter: drop-shadow(0 0 14px rgba(0, 240, 200, 0.65));
}

/* Buttons: stronger press-in arcade hover */
.btn:hover,
.btn:focus-visible {
  outline: none;
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: #5dffe0 !important;
  color: #07060f !important;
  transform: translate(-2px, -2px) !important;
  box-shadow:
    5px 5px 0 rgba(255, 45, 149, 0.4),
    0 0 32px rgba(0, 240, 200, 0.65) !important;
}
.btn-secondary:hover,
.btn-secondary:focus-visible {
  color: #07060f !important;
  background: var(--primary, #00f0c8) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  transform: translate(-2px, -2px) !important;
  box-shadow:
    5px 5px 0 rgba(255, 45, 149, 0.35),
    0 0 24px rgba(0, 240, 200, 0.45) !important;
}
.btn-secondary:hover::after,
.btn-secondary:focus-visible::after {
  content: " »" !important;
}

/* Cards / tiles / steps / FAQ */
.card:hover,
.feature-tile:hover,
.price-card:hover,
.aside-card:hover,
.problem-item:hover,
.benefit-item:hover,
.step:hover,
.faq-item:hover,
.blog-card:hover {
  border-color: rgba(0, 240, 200, 0.75) !important;
  box-shadow:
    6px 6px 0 rgba(255, 45, 149, 0.35),
    0 0 48px rgba(0, 240, 200, 0.32),
    0 0 64px rgba(255, 45, 149, 0.16) !important;
  transform: translate(-3px, -3px) !important;
}
.feature-tile a:hover,
.footer-col a:hover,
.breadcrumb a:hover,
.blog-card h3 a:hover {
  color: var(--primary, #00f0c8) !important;
  text-shadow: 0 0 12px rgba(0, 240, 200, 0.55);
}
.faq-item summary {
  cursor: pointer;
  transition: color 0.12s, text-shadow 0.12s;
}
.faq-item summary:hover {
  color: var(--primary, #00f0c8) !important;
  text-shadow: 0 0 14px rgba(0, 240, 200, 0.45);
}

/* Focus visible for keyboard — same obvious language */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--primary, #00f0c8);
  outline-offset: 3px;
}

/* Checkout / price CTAs */
.btn-checkout:hover,
.btn-checkout:focus-visible {
  transform: translate(-2px, -2px) !important;
}

/* Soft reduce-motion */
@media (prefers-reduced-motion: reduce) {
  .nav a,
  .btn,
  .card,
  .feature-tile,
  .price-card {
    transition: background 0.15s, color 0.15s, border-color 0.15s !important;
  }
  .nav a:hover,
  .btn:hover,
  .card:hover,
  .feature-tile:hover,
  .price-card:hover {
    transform: none !important;
  }
}
