/* =========================================================
   WIZPINZ HOMEPAGE – v3.0 "Magical Convenience" Redesign
   ========================================================= */

/* ---------------------------------------------------------
   UTILITY: GLASSMORPHISM
--------------------------------------------------------- */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

/* ---------------------------------------------------------
   MESH GLOW BLOBS
--------------------------------------------------------- */
.mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  opacity: 0.18;
}
.mesh-blob--pink { background: var(--clr-pink); }
.mesh-blob--cyan { background: var(--clr-cyan); }
.mesh-blob--violet { background: var(--clr-violet); }
.mesh-blob--peach { background: var(--clr-peach); }

/* ---------------------------------------------------------
   FADE-UP ANIMATION
--------------------------------------------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
}

/* ---------------------------------------------------------
   1. HERO SECTION
--------------------------------------------------------- */
.hp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hp-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hp-hero__text { position: relative; z-index: 2; }
.hp-hero__headline {
  font-size: clamp(3.25rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
}
.hp-hero__headline .gradient-word {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}
.hp-hero__headline .gradient-word::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.hp-hero__sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.hp-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hp-hero__badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.hp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}

/* Hero floating cards */
.hp-hero__visual {
  position: relative;
  z-index: 2;
  height: 500px;
  perspective: 800px;
}
.hp-hero__blob {
  position: absolute;
  width: 400px; height: 400px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,210,255,0.2) 0%, rgba(155,93,229,0.15) 50%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.float-card {
  position: absolute;
  width: 210px;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  color: var(--clr-white);
  cursor: default;
  transition: transform 0.3s ease;
}
.float-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: var(--card-grad);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.float-card--steam {
  --card-grad: linear-gradient(135deg, #1b2838, #66c0f4);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  animation: float-1 4s ease-in-out infinite;
}
.float-card--psn {
  --card-grad: linear-gradient(135deg, #00439c, #0070d1);
  top: 10%; right: 5%;
  z-index: 2;
  animation: float-2 5.5s ease-in-out infinite;
}
.float-card--xbox {
  --card-grad: linear-gradient(135deg, #107c10, #52b043);
  bottom: 10%; left: 10%;
  z-index: 2;
  animation: float-3 3.5s ease-in-out infinite;
}
.float-card__platform {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}
.float-card__amount {
  font-family: var(--ff-heading);
  font-weight: 900;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}
.float-card__tag {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  color: var(--clr-cyan);
  font-weight: 500;
}

@keyframes float-1 {
  0%, 100% { transform: translate(-50%, -50%) translateY(0) rotate(0deg); }
  50% { transform: translate(-50%, -50%) translateY(-12px) rotate(1deg); }
}
@keyframes float-2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(-2deg); }
}
@keyframes float-3 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

/* Scroll indicator */
.hp-hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.3);
  animation: scroll-pulse 2s ease-in-out infinite;
  z-index: 3;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.7; transform: translateX(-50%) translateY(8px); }
}

/* Hero responsive */
@media (max-width: 900px) {
  .hp-hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hp-hero__sub { margin-left: auto; margin-right: auto; }
  .hp-hero__actions { justify-content: center; }
  .hp-hero__badges { justify-content: center; }
  .hp-hero__visual { height: 350px; margin-top: 2rem; }
  .hp-hero__headline { font-size: clamp(2.5rem, 10vw, 4rem); }
}

/* ---------------------------------------------------------
   2. TRUST / FEATURE BAR
--------------------------------------------------------- */
.hp-trust-bar {
  position: relative;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hp-trust-bar::before,
.hp-trust-bar::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
}
.hp-trust-bar::before {
  top: 0;
  background: linear-gradient(90deg, transparent, rgba(255,107,107,0.3), rgba(0,210,255,0.3), transparent);
}
.hp-trust-bar::after {
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(0,210,255,0.3), rgba(155,93,229,0.3), transparent);
}
.hp-trust-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}
.hp-trust-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-pill);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: all 0.25s ease;
}
.hp-trust-pill:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
}
.hp-trust-pill svg {
  flex-shrink: 0;
  width: 18px; height: 18px;
}

/* ---------------------------------------------------------
   3. FEATURED PRODUCTS — "Fan Favourites"
--------------------------------------------------------- */
.hp-products {
  position: relative;
  padding: 7rem 0;
}
.hp-section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.hp-section-header h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 0.75rem;
}
.hp-section-header p {
  color: var(--clr-text-muted);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* Filter tabs */
.hp-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.hp-filter-tab {
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-pill);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--clr-text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
}
.hp-filter-tab:hover,
.hp-filter-tab.active {
  background: var(--grad-cta);
  border-color: transparent;
  color: #fff;
}

/* Game card — glassmorphic collectible */
.hp-games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1100px) { .hp-games-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .hp-games-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .hp-games-grid { grid-template-columns: 1fr; } }

.hp-game-card {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  --mouse-x: 50%;
  --mouse-y: 50%;
}
.hp-game-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--card-accent, rgba(255,255,255,0.1)), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.hp-game-card:hover::before { opacity: 1; }
.hp-game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 20px rgba(var(--card-r,155), var(--card-g,93), var(--card-b,229), 0.15);
}

/* Holographic glare */
.hp-game-card__glare {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 5;
}
.hp-game-card:hover .hp-game-card__glare { opacity: 1; }

/* Card cover */
.hp-game-card__cover {
  position: relative;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--card-color, #1a1a2e) 0%, var(--card-accent, #2a2a4a) 100%);
  overflow: hidden;
}
.hp-game-card__cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}
.hp-game-card__icon {
  width: 64px;
  height: 64px;
  color: rgba(255,255,255,0.9);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
  position: relative;
  z-index: 1;
}
.hp-game-card__icon svg { width: 100%; height: 100%; }

/* Card badge */
.hp-game-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  background: var(--grad-cta);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transform: rotate(-3deg);
  z-index: 2;
}

/* Card body */
.hp-game-card__body {
  padding: 1.25rem 1.25rem 0;
  flex: 1;
}
.hp-game-card__name {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--clr-white);
  margin-bottom: 0.5rem;
}
.hp-game-card__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}
.hp-game-card__from {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
}
.hp-game-card__price {
  font-family: var(--ff-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--clr-white);
}
.hp-game-card__options {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
}

/* Card footer CTA */
.hp-game-card__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--clr-pink);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.25s ease;
}
.hp-game-card:hover .hp-game-card__cta {
  opacity: 1;
  transform: translateY(0);
}
.hp-game-card__instant {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  color: var(--clr-cyan);
  font-weight: 500;
}

/* ---------------------------------------------------------
   4. HOW IT WORKS
--------------------------------------------------------- */
.hp-how {
  position: relative;
  padding: 7rem 0;
  background: rgba(255,255,255,0.02);
}
.hp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
@media (max-width: 768px) { .hp-steps { grid-template-columns: 1fr; } }

.hp-step {
  position: relative;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hp-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.hp-step__number {
  position: absolute;
  top: -1.5rem; left: 50%;
  transform: translateX(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--grad-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-weight: 900;
  font-size: 1.1rem;
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,107,107,0.3);
}
.hp-step__icon {
  width: 56px; height: 56px;
  margin: 1.5rem auto 1rem;
  color: var(--clr-cyan);
}
.hp-step__icon svg { width: 100%; height: 100%; }
.hp-step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.hp-step p {
  color: var(--clr-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Connector dots between steps */
.hp-steps::before,
.hp-steps::after {
  content: '';
  position: absolute;
  top: 50%;
  width: calc(33.33% - 3rem);
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(255,107,107,0.3) 0, rgba(255,107,107,0.3) 6px, transparent 6px, transparent 12px);
  pointer-events: none;
}
.hp-steps::before { left: calc(33.33% + 0.5rem); }
.hp-steps::after { left: calc(66.66% + 0.5rem); }
@media (max-width: 768px) { .hp-steps::before, .hp-steps::after { display: none; } }

/* ---------------------------------------------------------
   5. PLATFORM SHOWCASE
--------------------------------------------------------- */
.hp-platforms {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}
.hp-platform-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 1rem 0 2rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(155,93,229,0.3) transparent;
}
.hp-platform-scroll::-webkit-scrollbar { height: 4px; }
.hp-platform-scroll::-webkit-scrollbar-track { background: transparent; }
.hp-platform-scroll::-webkit-scrollbar-thumb { background: rgba(155,93,229,0.3); border-radius: 4px; }

.hp-platform-tile {
  flex: 0 0 auto;
  width: 150px;
  height: 150px;
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--clr-white);
  transition: all 0.3s ease;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
}
.hp-platform-tile::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(from var(--tile-angle, 0deg), var(--tile-color1, #FF6B6B), var(--tile-color2, #00D2FF), var(--tile-color1, #FF6B6B));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.hp-platform-tile:hover::before { opacity: 1; }
.hp-platform-tile:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.hp-platform-tile__icon {
  width: 48px; height: 48px;
  transition: transform 0.3s ease;
}
.hp-platform-tile:hover .hp-platform-tile__icon { transform: scale(1.1); }
.hp-platform-tile__icon svg { width: 100%; height: 100%; }
.hp-platform-tile__name {
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: 0.82rem;
  text-align: center;
}

/* ---------------------------------------------------------
   6. SOCIAL PROOF — REVIEWS
--------------------------------------------------------- */
.hp-reviews {
  padding: 7rem 0;
  position: relative;
  background: rgba(255,255,255,0.02);
}
.hp-rating-header {
  text-align: center;
  margin-bottom: 3rem;
}
.hp-rating-big {
  font-family: var(--ff-heading);
  font-weight: 900;
  font-size: 4rem;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.hp-rating-sub {
  color: var(--clr-text-muted);
  font-size: 1rem;
}
.hp-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) { .hp-reviews-grid { grid-template-columns: 1fr; } }

.hp-review-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hp-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.hp-review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}
.hp-review-stars svg { width: 16px; height: 16px; }
.hp-review-text {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hp-review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hp-review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--grad-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
}
.hp-review-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--clr-white);
}
.hp-review-source {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
}

/* ---------------------------------------------------------
   7. NEWSLETTER / DEALS BANNER
--------------------------------------------------------- */
.hp-newsletter {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}
.hp-newsletter__inner {
  position: relative;
  padding: 4rem 3rem;
  border-radius: var(--radius-xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  text-align: center;
  overflow: hidden;
  z-index: 1;
}
.hp-newsletter__blob {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: 0.15;
}
.hp-newsletter__blob--1 {
  background: var(--clr-pink);
  top: -100px; left: -50px;
}
.hp-newsletter__blob--2 {
  background: var(--clr-peach);
  bottom: -100px; right: -50px;
}
.hp-newsletter h2 {
  position: relative; z-index: 2;
  margin-bottom: 0.75rem;
}
.hp-newsletter p {
  position: relative; z-index: 2;
  color: var(--clr-text-muted);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 2rem;
}
.hp-newsletter__form {
  position: relative; z-index: 2;
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto 1rem;
}
@media (max-width: 600px) { .hp-newsletter__form { flex-direction: column; } }
.hp-newsletter__input {
  flex: 1;
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--glass-border);
  background: rgba(255,255,255,0.06);
  color: var(--clr-white);
  font-size: 0.95rem;
  font-family: var(--ff-body);
  outline: none;
  transition: border-color 0.25s ease;
}
.hp-newsletter__input:focus {
  border-color: var(--clr-cyan);
  box-shadow: 0 0 0 3px rgba(0,210,255,0.15);
}
.hp-newsletter__input::placeholder { color: var(--clr-text-muted); }
.hp-newsletter__micro {
  position: relative; z-index: 2;
  font-size: 0.8rem;
  color: var(--clr-text-dim);
}

/* Floating star decorations */
.hp-newsletter__star {
  position: absolute;
  color: rgba(255,255,255,0.08);
  font-size: 1.5rem;
  animation: star-float 6s ease-in-out infinite;
  pointer-events: none;
}
.hp-newsletter__star:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.hp-newsletter__star:nth-child(2) { top: 25%; right: 12%; animation-delay: 1s; font-size: 1rem; }
.hp-newsletter__star:nth-child(3) { bottom: 20%; left: 15%; animation-delay: 2.5s; font-size: 2rem; }
.hp-newsletter__star:nth-child(4) { bottom: 15%; right: 8%; animation-delay: 1.5s; }
@keyframes star-float {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.08; }
  50% { transform: translateY(-12px) rotate(15deg); opacity: 0.15; }
}

/* ---------------------------------------------------------
   8. FAQ SECTION (AISO)
--------------------------------------------------------- */
.hp-faq {
  padding: 5rem 0;
}
.hp-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) { .hp-faq-grid { grid-template-columns: 1fr; } }

.hp-faq-item {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}
.hp-faq-item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.hp-faq-item p {
  color: var(--clr-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ---------------------------------------------------------
   FOCUS VISIBLE
--------------------------------------------------------- */
:focus-visible {
  outline: 2px solid var(--clr-cyan);
  outline-offset: 2px;
}

/* ---------------------------------------------------------
   REDUCED MOTION
--------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .float-card,
  .hp-platform-tile,
  .hp-newsletter__star {
    animation: none !important;
  }
  .hp-game-card,
  .hp-step,
  .hp-review-card,
  .hp-trust-pill {
    transition: none !important;
  }
}
