/* ============================================================
   WinPKR — Pakistani Gaming / App Website
   style.css | Dark Theme | Mobile-First | Production Ready
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================================ */
:root {
  /* Colours */
  --clr-bg:           #0a0e1a;
  --clr-bg-2:         #0f1528;
  --clr-bg-3:         #141929;
  --clr-surface:      rgba(255, 255, 255, 0.04);
  --clr-surface-hover:rgba(255, 255, 255, 0.08);
  --clr-border:       rgba(255, 215, 0, 0.15);
  --clr-border-light: rgba(255, 255, 255, 0.08);

  --clr-gold:         #FFD700;
  --clr-gold-dark:    #e6c200;
  --clr-gold-light:   #ffe84d;
  --clr-gold-muted:   rgba(255, 215, 0, 0.15);

  --clr-green:        #00C853;
  --clr-green-dark:   #00a844;
  --clr-green-light:  #00e060;
  --clr-green-muted:  rgba(0, 200, 83, 0.15);

  --clr-accent:       #7c3aed;     /* purple accent */
  --clr-accent-2:     #06b6d4;    /* cyan accent */

  --clr-text:         #e8eaf0;
  --clr-text-muted:   #8b92a8;
  --clr-text-dim:     #5a6280;

  --clr-white:        #ffffff;
  --clr-danger:       #ef4444;
  --clr-warning:      #f59e0b;

  /* Gradients */
  --grad-gold:        linear-gradient(135deg, #FFD700 0%, #e6a817 100%);
  --grad-green:       linear-gradient(135deg, #00C853 0%, #007c32 100%);
  --grad-hero:        linear-gradient(160deg, #0a0e1a 0%, #0f1a35 40%, #0d1f0d 100%);
  --grad-card:        linear-gradient(145deg, rgba(255,215,0,0.06) 0%, rgba(0,200,83,0.04) 100%);
  --grad-overlay:     linear-gradient(180deg, rgba(10,14,26,0) 0%, rgba(10,14,26,0.85) 70%, #0a0e1a 100%);
  --grad-accent:      linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);

  /* Typography */
  --font-primary:     'Poppins', system-ui, -apple-system, sans-serif;

  --fs-xs:    0.75rem;    /*  12px */
  --fs-sm:    0.875rem;   /*  14px */
  --fs-base:  1rem;       /*  16px */
  --fs-md:    1.125rem;   /*  18px */
  --fs-lg:    1.25rem;    /*  20px */
  --fs-xl:    1.5rem;     /*  24px */
  --fs-2xl:   1.875rem;   /*  30px */
  --fs-3xl:   2.25rem;    /*  36px */
  --fs-4xl:   3rem;       /*  48px */
  --fs-5xl:   3.75rem;    /*  60px */

  --fw-light:   300;
  --fw-regular: 400;
  --fw-medium:  500;
  --fw-semi:    600;
  --fw-bold:    700;
  --fw-extra:   800;
  --fw-black:   900;

  --lh-tight:  1.2;
  --lh-snug:   1.4;
  --lh-normal: 1.6;
  --lh-loose:  1.8;

  /* Spacing */
  --sp-1:   0.25rem;
  --sp-2:   0.5rem;
  --sp-3:   0.75rem;
  --sp-4:   1rem;
  --sp-5:   1.25rem;
  --sp-6:   1.5rem;
  --sp-8:   2rem;
  --sp-10:  2.5rem;
  --sp-12:  3rem;
  --sp-16:  4rem;
  --sp-20:  5rem;
  --sp-24:  6rem;

  /* Borders */
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   18px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.4), 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.5);
  --shadow-lg:   0 8px 32px rgba(0,0,0,0.6);
  --shadow-xl:   0 20px 60px rgba(0,0,0,0.7);
  --shadow-gold: 0 0 20px rgba(255,215,0,0.35), 0 0 60px rgba(255,215,0,0.12);
  --shadow-green:0 0 20px rgba(0,200,83,0.35), 0 0 60px rgba(0,200,83,0.12);
  --shadow-glow: 0 0 40px rgba(255,215,0,0.2);

  /* Transitions */
  --ease-fast:   150ms ease;
  --ease-base:   250ms ease;
  --ease-slow:   400ms cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --nav-height:  70px;
  --container:   1200px;
  --container-sm:  800px;
  --container-xs:  640px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  color: var(--clr-text);
  background-color: var(--clr-bg);
  background-image:
    radial-gradient(ellipse 80% 60% at 50% -20%, rgba(124,58,237,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 90% 80%, rgba(0,200,83,0.06) 0%, transparent 60%);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--clr-gold);
  text-decoration: none;
  transition: color var(--ease-fast);
}

a:hover {
  color: var(--clr-gold-light);
}

ul, ol {
  list-style: none;
}

button {
  font-family: var(--font-primary);
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: var(--font-primary);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  color: var(--clr-white);
}

p {
  color: var(--clr-text-muted);
  line-height: var(--lh-loose);
}

/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0,200,83,0.5); }
  50%       { transform: scale(1.03); box-shadow: 0 0 0 14px rgba(0,200,83,0); }
}

@keyframes glowGold {
  0%, 100% { box-shadow: 0 0 10px rgba(255,215,0,0.3); }
  50%       { box-shadow: 0 0 30px rgba(255,215,0,0.7), 0 0 60px rgba(255,215,0,0.3); }
}

@keyframes glowGreen {
  0%, 100% { box-shadow: 0 0 10px rgba(0,200,83,0.3); }
  50%       { box-shadow: 0 0 30px rgba(0,200,83,0.7), 0 0 60px rgba(0,200,83,0.3); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes borderGlow {
  0%, 100% { border-color: rgba(255,215,0,0.2); }
  50%       { border-color: rgba(255,215,0,0.6); }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); max-height: 0; }
  to   { opacity: 1; transform: translateY(0);     max-height: 600px; }
}

@keyframes ripple {
  0%   { transform: scale(0); opacity: 0.6; }
  100% { transform: scale(3); opacity: 0; }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-4);
}

.container--sm  { max-width: var(--container-sm); }
.container--xs  { max-width: var(--container-xs); }

.section {
  padding-block: var(--sp-16);
}

.section--lg {
  padding-block: var(--sp-24);
}

.text-gold    { color: var(--clr-gold) !important; }
.text-green   { color: var(--clr-green) !important; }
.text-muted   { color: var(--clr-text-muted); }
.text-center  { text-align: center; }
.text-left    { text-align: left; }

.fw-bold   { font-weight: var(--fw-bold); }
.fw-semi   { font-weight: var(--fw-semi); }

.d-none    { display: none; }
.d-flex    { display: flex; }
.d-grid    { display: grid; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Section heading block */
.section-header {
  text-align: center;
  margin-bottom: var(--sp-12);
}

.section-header__eyebrow {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-gold);
  background: var(--clr-gold-muted);
  border: 1px solid var(--clr-border);
  padding: var(--sp-1) var(--sp-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--sp-4);
}

.section-header__title {
  font-size: clamp(var(--fs-2xl), 4vw, var(--fs-4xl));
  font-weight: var(--fw-black);
  margin-bottom: var(--sp-4);
  background: linear-gradient(135deg, var(--clr-white) 0%, var(--clr-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header__desc {
  font-size: var(--fs-md);
  color: var(--clr-text-muted);
  max-width: 600px;
  margin-inline: auto;
}

/* Divider */
.divider {
  width: 60px;
  height: 3px;
  background: var(--grad-gold);
  border-radius: var(--radius-full);
  margin: var(--sp-4) auto;
}

/* Separator line */
.hr {
  border: none;
  border-top: 1px solid var(--clr-border-light);
  margin-block: var(--sp-8);
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--clr-bg); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--clr-gold) 0%, var(--clr-green) 100%);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover { background: var(--clr-gold); }

/* ============================================================
   GLASSMORPHISM CARD BASE
   ============================================================ */
.glass {
  background: var(--clr-surface);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-lg);
}

.glass--gold {
  border-color: var(--clr-border);
  background: linear-gradient(145deg, rgba(255,215,0,0.06) 0%, rgba(255,255,255,0.02) 100%);
}

.glass--green {
  border-color: rgba(0,200,83,0.2);
  background: linear-gradient(145deg, rgba(0,200,83,0.06) 0%, rgba(255,255,255,0.02) 100%);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-primary);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  letter-spacing: 0.03em;
  padding: 0.7em 1.6em;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--ease-base),
    box-shadow var(--ease-base),
    background var(--ease-base),
    color var(--ease-base),
    border-color var(--ease-base);
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--ease-fast);
}

.btn:hover::after { opacity: 1; }
.btn:active { transform: scale(0.97); }

/* Ripple effect */
.btn::before {
  content: '';
  position: absolute;
  width: 0; height: 0;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease, opacity 0.5s ease;
  opacity: 0;
}
.btn:active::before {
  width: 300px; height: 300px;
  opacity: 0;
}

/* Primary — Gold */
.btn--primary {
  background: var(--grad-gold);
  color: #0a0e1a;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(255,215,0,0.3);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: #0a0e1a;
}

/* CTA — Green */
.btn--cta {
  background: var(--grad-green);
  color: var(--clr-white);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(0,200,83,0.3);
}
.btn--cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
  color: var(--clr-white);
}

/* Outline Gold */
.btn--outline {
  background: transparent;
  color: var(--clr-gold);
  border-color: var(--clr-gold);
}
.btn--outline:hover {
  background: var(--clr-gold-muted);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--clr-gold);
}

/* Outline Green */
.btn--outline-green {
  background: transparent;
  color: var(--clr-green);
  border-color: var(--clr-green);
}
.btn--outline-green:hover {
  background: var(--clr-green-muted);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
  color: var(--clr-green);
}

/* Ghost */
.btn--ghost {
  background: var(--clr-surface);
  color: var(--clr-text);
  border-color: var(--clr-border-light);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: var(--clr-surface-hover);
  border-color: var(--clr-gold);
  color: var(--clr-gold);
  transform: translateY(-2px);
}

/* Sizes */
.btn--sm  { font-size: var(--fs-xs); padding: 0.5em 1.2em; }
.btn--lg  { font-size: var(--fs-base); padding: 0.85em 2em; }
.btn--xl  { font-size: var(--fs-md); padding: 1em 2.5em; }
.btn--full { width: 100%; }

/* Download / pulsing CTA */
.btn--download {
  background: var(--grad-green);
  color: var(--clr-white);
  border-color: transparent;
  font-size: var(--fs-base);
  padding: 0.9em 2.2em;
  font-weight: var(--fw-bold);
  box-shadow: 0 4px 20px rgba(0,200,83,0.4);
  animation: pulse 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.btn--download:hover {
  animation: none;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 40px rgba(0,200,83,0.6);
  color: var(--clr-white);
}

.btn--download .btn__icon {
  font-size: 1.2em;
}

/* Icon button */
.btn--icon {
  width: 42px; height: 42px;
  padding: 0;
  border-radius: var(--radius-md);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(10, 14, 26, 0.82);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--clr-border-light);
  transition: background var(--ease-base), box-shadow var(--ease-base);
}

.nav--scrolled {
  background: rgba(10, 14, 26, 0.96);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav__inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo-img {
  height: 38px;
  width: auto;
}

.nav__logo-text {
  font-size: var(--fs-xl);
  font-weight: var(--fw-black);
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.nav__logo-text span {
  -webkit-text-fill-color: var(--clr-green);
  color: var(--clr-green);
}

/* Menu */
.nav__menu {
  display: none;
  align-items: center;
  gap: var(--sp-1);
  margin-left: auto;
}

.nav__link {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--clr-text-muted);
  text-decoration: none;
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--radius-md);
  transition:
    color var(--ease-fast),
    background var(--ease-fast);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: var(--grad-gold);
  border-radius: var(--radius-full);
  transition: transform var(--ease-base);
}

.nav__link:hover,
.nav__link.active {
  color: var(--clr-gold);
  background: var(--clr-gold-muted);
}

.nav__link:hover::after,
.nav__link.active::after {
  transform: translateX(-50%) scaleX(1);
}

/* Dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + var(--sp-2));
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 200px;
  background: var(--clr-bg-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--sp-2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity var(--ease-base),
    transform var(--ease-base),
    visibility var(--ease-base);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
  z-index: 100;
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-link {
  display: block;
  padding: var(--sp-2) var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  border-radius: var(--radius-sm);
  transition: color var(--ease-fast), background var(--ease-fast);
}

.nav__dropdown-link:hover {
  color: var(--clr-gold);
  background: var(--clr-gold-muted);
}

/* Nav actions */
.nav__actions {
  display: none;
  align-items: center;
  gap: var(--sp-3);
  margin-left: auto;
}

/* Hamburger */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px; height: 38px;
  padding: var(--sp-2);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-md);
  cursor: pointer;
  margin-left: auto;
  transition: background var(--ease-fast), border-color var(--ease-fast);
  flex-shrink: 0;
}

.nav__hamburger:hover {
  background: var(--clr-surface-hover);
  border-color: var(--clr-gold);
}

.nav__hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--clr-text);
  border-radius: var(--radius-full);
  transition: transform var(--ease-base), opacity var(--ease-base), background var(--ease-fast);
}

.nav__hamburger.open .nav__hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--clr-gold);
}
.nav__hamburger.open .nav__hamburger-line:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.open .nav__hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--clr-gold);
}

/* Mobile Menu Overlay */
.nav__mobile {
  position: fixed;
  inset: 0;
  top: var(--nav-height);
  background: rgba(10,14,26,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: var(--sp-8) var(--sp-6);
  gap: var(--sp-2);
  transform: translateX(100%);
  transition: transform var(--ease-slow);
  overflow-y: auto;
}

.nav__mobile.open {
  transform: translateX(0);
}

.nav__mobile-link {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--fs-lg);
  font-weight: var(--fw-semi);
  color: var(--clr-text);
  padding: var(--sp-4) var(--sp-4);
  border-radius: var(--radius-md);
  border-bottom: 1px solid var(--clr-border-light);
  text-decoration: none;
  transition: color var(--ease-fast), background var(--ease-fast);
}

.nav__mobile-link:hover,
.nav__mobile-link.active {
  color: var(--clr-gold);
  background: var(--clr-gold-muted);
  border-bottom-color: var(--clr-border);
}

.nav__mobile-actions {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--clr-border-light);
}

/* Desktop breakpoint */
@media (min-width: 900px) {
  .nav__menu    { display: flex; }
  .nav__actions { display: flex; }
  .nav__hamburger { display: none; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--grad-hero);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.25;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-overlay);
}

/* Decorative orbs */
.hero__bg::before {
  content: '';
  position: absolute;
  top: 10%; right: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,215,0,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__bg::after {
  content: '';
  position: absolute;
  bottom: 5%; left: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,200,83,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding: var(--sp-20) var(--sp-4) var(--sp-16);
  display: grid;
  gap: var(--sp-12);
  align-items: center;
}

.hero__text {
  animation: fadeInUp 0.8s ease both;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-gold);
  background: var(--clr-gold-muted);
  border: 1px solid var(--clr-border);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--sp-5);
}

.hero__badge-dot {
  width: 6px; height: 6px;
  background: var(--clr-green);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
  flex-shrink: 0;
}

.hero__title {
  font-size: clamp(var(--fs-3xl), 6vw, var(--fs-5xl));
  font-weight: var(--fw-black);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--clr-white);
  margin-bottom: var(--sp-5);
}

.hero__title-accent {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero__title-line {
  display: block;
}

.hero__desc {
  font-size: clamp(var(--fs-base), 2vw, var(--fs-md));
  color: var(--clr-text-muted);
  max-width: 560px;
  margin-bottom: var(--sp-8);
  line-height: var(--lh-loose);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  align-items: center;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-6);
  margin-top: var(--sp-10);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--clr-border-light);
}

.hero__stat-value {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-black);
  color: var(--clr-gold);
  display: block;
  line-height: 1;
}

.hero__stat-label {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero__visual {
  animation: fadeInUp 0.8s 0.2s ease both;
}

.hero__mockup {
  position: relative;
  animation: float 4s ease-in-out infinite;
}

.hero__mockup-img {
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl), var(--shadow-gold);
  border: 1px solid var(--clr-border);
}

/* Scroll cue */
.hero__scroll {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: var(--clr-text-dim);
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeIn 1s 1s both;
}

.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--clr-gold) 0%, transparent 100%);
  animation: float 2s ease-in-out infinite;
}

@media (min-width: 768px) {
  .hero__content {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================
   TICKER / MARQUEE STRIP
   ============================================================ */
.ticker {
  background: var(--clr-gold);
  padding-block: var(--sp-2);
  overflow: hidden;
}

.ticker__track {
  display: flex;
  gap: var(--sp-8);
  animation: marquee 25s linear infinite;
  width: max-content;
}

.ticker__item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: #0a0e1a;
  white-space: nowrap;
}

.ticker__sep {
  color: rgba(10,14,26,0.4);
}

/* ============================================================
   CARDS — GENERIC
   ============================================================ */
.card {
  background: var(--clr-surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  transition:
    transform var(--ease-base),
    box-shadow var(--ease-base),
    border-color var(--ease-base),
    background var(--ease-base);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-card);
  opacity: 0;
  transition: opacity var(--ease-base);
  border-radius: inherit;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--clr-border);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(255,215,0,0.08);
}

.card:hover::before {
  opacity: 1;
}

/* Feature cards */
.card--feature {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.card__icon-wrap {
  width: 54px; height: 54px;
  background: var(--clr-gold-muted);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-xl);
  flex-shrink: 0;
  transition: background var(--ease-base), box-shadow var(--ease-base);
}

.card:hover .card__icon-wrap {
  background: rgba(255,215,0,0.2);
  box-shadow: var(--shadow-gold);
}

.card__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semi);
  color: var(--clr-white);
  margin-bottom: var(--sp-1);
}

.card__desc {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-loose);
}

/* Card grid */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}

@media (min-width: 480px) {
  .card-grid--2 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .card-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .card-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* Numbered / step cards */
.card--step {
  counter-increment: step-counter;
  position: relative;
}

.card--step::after {
  content: "0" counter(step-counter);
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-5);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-black);
  color: rgba(255,215,0,0.07);
  line-height: 1;
}

.card-grid--steps {
  counter-reset: step-counter;
}

/* ============================================================
   ARTICLE / BLOG CARDS
   ============================================================ */
.article-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform var(--ease-base),
    box-shadow var(--ease-base),
    border-color var(--ease-base);
}

.article-card:hover {
  transform: translateY(-6px);
  border-color: var(--clr-border);
  box-shadow: var(--shadow-lg);
}

.article-card__thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--clr-bg-3);
}

.article-card__thumb-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.article-card:hover .article-card__thumb-img {
  transform: scale(1.06);
}

.article-card__thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,14,26,0.7) 100%);
}

.article-card__tag {
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-3);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0a0e1a;
  background: var(--clr-gold);
  padding: 2px var(--sp-3);
  border-radius: var(--radius-full);
}

.article-card__body {
  padding: var(--sp-5);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-card__meta {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--fs-xs);
  color: var(--clr-text-dim);
  margin-bottom: var(--sp-3);
}

.article-card__meta-sep { color: var(--clr-text-dim); }

.article-card__title {
  font-size: var(--fs-md);
  font-weight: var(--fw-semi);
  color: var(--clr-white);
  line-height: var(--lh-snug);
  margin-bottom: var(--sp-3);
  transition: color var(--ease-fast);
}

.article-card:hover .article-card__title {
  color: var(--clr-gold);
}

.article-card__excerpt {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-normal);
  margin-bottom: var(--sp-4);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card__link {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--clr-gold);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  transition: gap var(--ease-fast);
}

.article-card__link:hover { gap: var(--sp-2); color: var(--clr-gold); }

/* ============================================================
   SCREENSHOT GALLERY GRID
   ============================================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
}

.gallery__item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--clr-bg-3);
  cursor: pointer;
  group: true;
}

.gallery__item--large {
  grid-column: span 2;
  grid-row: span 1;
}

.gallery__img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 160px;
  transition: transform 0.5s ease;
}

.gallery__item:hover .gallery__img {
  transform: scale(1.05);
}

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,14,26,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--ease-base);
}

.gallery__item:hover .gallery__overlay {
  opacity: 1;
}

.gallery__overlay-icon {
  width: 48px; height: 48px;
  background: var(--clr-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-xl);
  color: #0a0e1a;
  transform: scale(0.8);
  transition: transform var(--ease-spring);
}

.gallery__item:hover .gallery__overlay-icon {
  transform: scale(1);
}

@media (min-width: 640px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery__item--large {
    grid-column: span 2;
  }
}

@media (min-width: 1024px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }
  .gallery__item--large {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery__img { min-height: 200px; }
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.faq__item {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--ease-base), box-shadow var(--ease-base);
}

.faq__item.open {
  border-color: var(--clr-border);
  box-shadow: 0 4px 20px rgba(255,215,0,0.08);
}

.faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  font-weight: var(--fw-semi);
  color: var(--clr-white);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color var(--ease-fast), background var(--ease-fast);
}

.faq__trigger:hover {
  color: var(--clr-gold);
  background: var(--clr-gold-muted);
}

.faq__item.open .faq__trigger {
  color: var(--clr-gold);
}

.faq__icon {
  width: 24px; height: 24px;
  background: var(--clr-gold-muted);
  border: 1px solid var(--clr-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: var(--fs-sm);
  color: var(--clr-gold);
  transition: transform var(--ease-base), background var(--ease-base);
}

.faq__item.open .faq__icon {
  transform: rotate(45deg);
  background: var(--clr-gold);
  color: #0a0e1a;
}

.faq__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__item.open .faq__body {
  max-height: 600px;
}

.faq__content {
  padding: 0 var(--sp-6) var(--sp-5);
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-loose);
  border-top: 1px solid var(--clr-border-light);
  padding-top: var(--sp-4);
  margin-inline: var(--sp-6);
  margin-inline: 0;
}

.faq__content p + p { margin-top: var(--sp-3); }
.faq__content a { color: var(--clr-gold); }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-4) 0;
  font-size: var(--fs-sm);
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  color: var(--clr-text-muted);
}

.breadcrumb__item:last-child {
  color: var(--clr-gold);
  font-weight: var(--fw-medium);
}

.breadcrumb__link {
  color: var(--clr-text-muted);
  text-decoration: none;
  transition: color var(--ease-fast);
}

.breadcrumb__link:hover { color: var(--clr-gold); }

.breadcrumb__sep {
  color: var(--clr-text-dim);
  font-size: var(--fs-xs);
}

/* ============================================================
   TABLE STYLES
   ============================================================ */
.table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border-light);
  background: var(--clr-surface);
  backdrop-filter: blur(12px);
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-sm);
}

.table th {
  padding: var(--sp-4) var(--sp-5);
  background: rgba(255,215,0,0.08);
  color: var(--clr-gold);
  font-weight: var(--fw-semi);
  text-align: left;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  border-bottom: 1px solid var(--clr-border);
}

.table td {
  padding: var(--sp-4) var(--sp-5);
  color: var(--clr-text-muted);
  border-bottom: 1px solid var(--clr-border-light);
  vertical-align: middle;
}

.table tbody tr:last-child td {
  border-bottom: none;
}

.table tbody tr {
  transition: background var(--ease-fast);
}

.table tbody tr:hover {
  background: var(--clr-surface-hover);
}

.table tbody tr:hover td {
  color: var(--clr-text);
}

/* Table badges */
.table__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  padding: 2px var(--sp-2);
  border-radius: var(--radius-full);
}

.table__badge--gold {
  background: var(--clr-gold-muted);
  color: var(--clr-gold);
  border: 1px solid var(--clr-border);
}

.table__badge--green {
  background: var(--clr-green-muted);
  color: var(--clr-green);
  border: 1px solid rgba(0,200,83,0.25);
}

.table__badge--red {
  background: rgba(239,68,68,0.1);
  color: var(--clr-danger);
  border: 1px solid rgba(239,68,68,0.25);
}

/* Comparison table with check marks */
.table--compare .table td { text-align: center; }
.table--compare .table th:first-child,
.table--compare .table td:first-child { text-align: left; }

.table__check { color: var(--clr-green); font-size: var(--fs-md); }
.table__cross  { color: var(--clr-text-dim); font-size: var(--fs-md); }

/* ============================================================
   BLOCKQUOTE
   ============================================================ */
blockquote,
.blockquote {
  position: relative;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-left: 4px solid var(--clr-gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--sp-6) var(--sp-6) var(--sp-6) var(--sp-8);
  margin-block: var(--sp-6);
  font-style: italic;
  color: var(--clr-text-muted);
  line-height: var(--lh-loose);
}

blockquote::before,
.blockquote::before {
  content: '\201C';
  position: absolute;
  top: var(--sp-2);
  left: var(--sp-4);
  font-size: 5rem;
  color: rgba(255,215,0,0.12);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

blockquote p,
.blockquote p {
  color: var(--clr-text);
  font-size: var(--fs-md);
  margin-bottom: var(--sp-3);
}

blockquote cite,
.blockquote__cite {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-style: normal;
  font-size: var(--fs-sm);
  color: var(--clr-gold);
  font-weight: var(--fw-semi);
  margin-top: var(--sp-2);
}

blockquote cite::before,
.blockquote__cite::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--clr-gold);
  border-radius: var(--radius-full);
}

/* ============================================================
   TESTIMONIAL CARDS
   ============================================================ */
.testimonial-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition: transform var(--ease-base), box-shadow var(--ease-base), border-color var(--ease-base);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--clr-border);
  box-shadow: var(--shadow-md);
}

.testimonial-card__stars {
  color: var(--clr-gold);
  font-size: var(--fs-sm);
  letter-spacing: 2px;
}

.testimonial-card__text {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-loose);
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--clr-border-light);
}

.testimonial-card__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--clr-gold-muted);
  border: 2px solid var(--clr-border);
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--clr-white);
}

.testimonial-card__location {
  font-size: var(--fs-xs);
  color: var(--clr-text-dim);
}

/* ============================================================
   PRICING / PLAN CARDS
   ============================================================ */
.pricing-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  transition: transform var(--ease-base), box-shadow var(--ease-base), border-color var(--ease-base);
  position: relative;
}

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

.pricing-card--featured {
  border-color: var(--clr-gold);
  background: linear-gradient(145deg, rgba(255,215,0,0.07) 0%, rgba(255,255,255,0.02) 100%);
  box-shadow: var(--shadow-gold);
}

.pricing-card--featured:hover {
  box-shadow: var(--shadow-gold), var(--shadow-lg);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #0a0e1a;
  background: var(--grad-gold);
  padding: var(--sp-1) var(--sp-4);
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.pricing-card__name {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--clr-white);
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: var(--sp-1);
}

.pricing-card__amount {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-black);
  color: var(--clr-gold);
  line-height: 1;
}

.pricing-card__period {
  font-size: var(--fs-sm);
  color: var(--clr-text-dim);
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  flex: 1;
}

.pricing-card__feature {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
}

.pricing-card__feature-icon {
  color: var(--clr-green);
  font-size: var(--fs-base);
  flex-shrink: 0;
}

.pricing-card__feature--disabled {
  opacity: 0.4;
  text-decoration: line-through;
}

/* ============================================================
   STATS / COUNTERS
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-card {
  text-align: center;
  padding: var(--sp-6);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-lg);
  transition: border-color var(--ease-base), box-shadow var(--ease-base);
}

.stat-card:hover {
  border-color: var(--clr-border);
  box-shadow: var(--shadow-gold);
}

.stat-card__value {
  font-size: clamp(var(--fs-2xl), 4vw, var(--fs-4xl));
  font-weight: var(--fw-black);
  color: var(--clr-gold);
  line-height: 1;
  margin-bottom: var(--sp-2);
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-card__label {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================
   DOWNLOAD SECTION
   ============================================================ */
.download-section {
  padding-block: var(--sp-20);
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(0,200,83,0.08) 0%, transparent 70%),
    var(--clr-bg-2);
  border-top: 1px solid var(--clr-border-light);
  border-bottom: 1px solid var(--clr-border-light);
  text-align: center;
}

.download-section__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}

.download-section__store-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-md);
  padding: var(--sp-3) var(--sp-5);
  text-decoration: none;
  transition: border-color var(--ease-base), box-shadow var(--ease-base), transform var(--ease-base);
}

.download-section__store-badge:hover {
  border-color: var(--clr-gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}

.download-section__store-icon {
  font-size: var(--fs-2xl);
}

.download-section__store-text {
  text-align: left;
}

.download-section__store-sub {
  display: block;
  font-size: var(--fs-xs);
  color: var(--clr-text-dim);
}

.download-section__store-name {
  display: block;
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: var(--clr-white);
}

.download-section__meta {
  display: flex;
  justify-content: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
  font-size: var(--fs-sm);
  color: var(--clr-text-dim);
  margin-top: var(--sp-6);
}

.download-section__meta span {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

/* ============================================================
   FORM ELEMENTS
   ============================================================ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}

.form-label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--clr-text);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-md);
  color: var(--clr-text);
  font-size: var(--fs-sm);
  font-family: var(--font-primary);
  transition: border-color var(--ease-fast), box-shadow var(--ease-fast), background var(--ease-fast);
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--clr-text-dim);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--clr-gold);
  box-shadow: 0 0 0 3px rgba(255,215,0,0.12);
  background: var(--clr-surface-hover);
}

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

/* ============================================================
   BADGE / TAG COMPONENTS
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  padding: 2px var(--sp-3);
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
}

.badge--gold {
  background: var(--clr-gold-muted);
  color: var(--clr-gold);
  border: 1px solid var(--clr-border);
}

.badge--green {
  background: var(--clr-green-muted);
  color: var(--clr-green);
  border: 1px solid rgba(0,200,83,0.25);
}

.badge--new {
  background: linear-gradient(135deg, var(--clr-gold) 0%, #e6a817 100%);
  color: #0a0e1a;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
}

/* ============================================================
   ALERT / NOTICE BARS
   ============================================================ */
.alert {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  border-left: 3px solid;
  margin-bottom: var(--sp-4);
}

.alert__icon { font-size: var(--fs-md); flex-shrink: 0; margin-top: 1px; }
.alert__body { flex: 1; }
.alert__title { font-weight: var(--fw-semi); margin-bottom: var(--sp-1); }
.alert p { margin: 0; line-height: var(--lh-snug); }

.alert--info {
  background: rgba(6,182,212,0.08);
  border-color: var(--clr-accent-2);
  color: var(--clr-accent-2);
}

.alert--success {
  background: var(--clr-green-muted);
  border-color: var(--clr-green);
  color: var(--clr-green);
}

.alert--warning {
  background: rgba(245,158,11,0.1);
  border-color: var(--clr-warning);
  color: var(--clr-warning);
}

.alert--danger {
  background: rgba(239,68,68,0.1);
  border-color: var(--clr-danger);
  color: var(--clr-danger);
}

/* ============================================================
   PROGRESS / LOADING
   ============================================================ */
.progress-bar {
  width: 100%;
  height: 6px;
  background: var(--clr-surface);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-bar__fill {
  height: 100%;
  background: var(--grad-gold);
  border-radius: var(--radius-full);
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.progress-bar__fill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 2s linear infinite;
  background-size: 200% 100%;
}

/* Spinner */
.spinner {
  width: 32px; height: 32px;
  border: 3px solid var(--clr-border-light);
  border-top-color: var(--clr-gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* ============================================================
   STICKY HIGHLIGHT BAR
   ============================================================ */
.info-bar {
  background: rgba(255,215,0,0.06);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: var(--sp-3) 0;
}

.info-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-4);
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
}

.info-bar__highlight {
  color: var(--clr-gold);
  font-weight: var(--fw-semi);
}

/* ============================================================
   APP FEATURES / HIGHLIGHTS ROW
   ============================================================ */
.features-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-6);
  justify-content: center;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-full);
  padding: var(--sp-3) var(--sp-5);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--clr-text);
  transition: border-color var(--ease-base), box-shadow var(--ease-base);
}

.feature-pill:hover {
  border-color: var(--clr-gold);
  box-shadow: 0 0 16px rgba(255,215,0,0.12);
}

.feature-pill__icon {
  font-size: var(--fs-lg);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--clr-bg-2);
  border-top: 1px solid var(--clr-border-light);
  padding-top: var(--sp-16);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid var(--clr-border-light);
}

@media (min-width: 640px) {
  .footer__top { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer__top { grid-template-columns: 2fr repeat(3, 1fr); }
}

/* Brand column */
.footer__brand { }

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  text-decoration: none;
  margin-bottom: var(--sp-4);
}

.footer__logo-text {
  font-size: var(--fs-xl);
  font-weight: var(--fw-black);
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer__desc {
  font-size: var(--fs-sm);
  color: var(--clr-text-dim);
  line-height: var(--lh-loose);
  margin-bottom: var(--sp-6);
  max-width: 300px;
}

/* Social icons */
.footer__socials {
  display: flex;
  gap: var(--sp-3);
}

.footer__social-link {
  width: 38px; height: 38px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-md);
  text-decoration: none;
  color: var(--clr-text-muted);
  transition:
    background var(--ease-fast),
    border-color var(--ease-fast),
    color var(--ease-fast),
    transform var(--ease-fast);
}

.footer__social-link:hover {
  background: var(--clr-gold-muted);
  border-color: var(--clr-gold);
  color: var(--clr-gold);
  transform: translateY(-3px);
}

/* Column links */
.footer__col-title {
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--clr-white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--sp-5);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer__link {
  font-size: var(--fs-sm);
  color: var(--clr-text-dim);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  transition: color var(--ease-fast), gap var(--ease-fast);
}

.footer__link:hover {
  color: var(--clr-gold);
  gap: var(--sp-3);
}

.footer__link::before {
  content: '';
  display: inline-block;
  width: 4px; height: 4px;
  background: var(--clr-text-dim);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background var(--ease-fast);
}

.footer__link:hover::before { background: var(--clr-gold); }

/* Footer bottom */
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding-block: var(--sp-6);
}

.footer__copyright {
  font-size: var(--fs-xs);
  color: var(--clr-text-dim);
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

.footer__legal-link {
  font-size: var(--fs-xs);
  color: var(--clr-text-dim);
  text-decoration: none;
  transition: color var(--ease-fast);
}

.footer__legal-link:hover { color: var(--clr-gold); }

/* Disclaimer */
.footer__disclaimer {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-md);
  padding: var(--sp-4) var(--sp-5);
  margin-bottom: var(--sp-6);
  font-size: var(--fs-xs);
  color: var(--clr-text-dim);
  line-height: var(--lh-normal);
}

/* ============================================================
   PAGE LAYOUT HELPERS
   ============================================================ */
/* Two-column content + sidebar */
.layout-sidebar {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
  align-items: start;
}

@media (min-width: 1024px) {
  .layout-sidebar {
    grid-template-columns: 1fr 320px;
  }
}

.sidebar__widget {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  margin-bottom: var(--sp-5);
}

.sidebar__widget-title {
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  color: var(--clr-white);
  padding-bottom: var(--sp-4);
  margin-bottom: var(--sp-4);
  border-bottom: 1px solid var(--clr-border-light);
}

/* Article/post body content */
.prose {
  color: var(--clr-text-muted);
  line-height: var(--lh-loose);
  font-size: var(--fs-base);
}

.prose h1, .prose h2, .prose h3,
.prose h4, .prose h5, .prose h6 {
  color: var(--clr-white);
  font-weight: var(--fw-bold);
  margin-top: var(--sp-8);
  margin-bottom: var(--sp-3);
  line-height: var(--lh-snug);
}

.prose h1 { font-size: var(--fs-3xl); }
.prose h2 { font-size: var(--fs-2xl); border-bottom: 1px solid var(--clr-border-light); padding-bottom: var(--sp-3); }
.prose h3 { font-size: var(--fs-xl); }
.prose h4 { font-size: var(--fs-lg); }

.prose p { margin-bottom: var(--sp-5); }

.prose a { color: var(--clr-gold); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--clr-gold-light); }

.prose ul, .prose ol {
  margin-bottom: var(--sp-5);
  padding-left: var(--sp-6);
}

.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }

.prose li {
  margin-bottom: var(--sp-2);
  color: var(--clr-text-muted);
}

.prose li::marker { color: var(--clr-gold); }

.prose strong { color: var(--clr-white); font-weight: var(--fw-semi); }
.prose em { color: var(--clr-text); }

.prose code {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-sm);
  padding: 2px var(--sp-2);
  font-size: 0.875em;
  color: var(--clr-gold);
  font-family: 'Courier New', monospace;
}

.prose pre {
  background: var(--clr-bg-3);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-md);
  padding: var(--sp-5);
  overflow-x: auto;
  margin-bottom: var(--sp-5);
}

.prose pre code {
  background: none;
  border: none;
  padding: 0;
  color: var(--clr-text);
}

.prose img {
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border-light);
  margin-block: var(--sp-6);
}

.prose hr {
  border: none;
  border-top: 1px solid var(--clr-border-light);
  margin-block: var(--sp-8);
}

/* ============================================================
   MODAL / LIGHTBOX
   ============================================================ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10,14,26,0.92);
  backdrop-filter: blur(8px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease-base);
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: var(--clr-bg-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.92) translateY(20px);
  transition: transform var(--ease-spring);
  box-shadow: var(--shadow-xl);
}

.modal-backdrop.open .modal {
  transform: scale(1) translateY(0);
}

.modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}

.modal__title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--clr-white);
}

.modal__close {
  width: 32px; height: 32px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-lg);
  color: var(--clr-text-muted);
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--ease-fast), color var(--ease-fast);
}

.modal__close:hover {
  background: var(--clr-surface-hover);
  color: var(--clr-danger);
}

/* ============================================================
   NOTIFICATION / TOAST
   ============================================================ */
.toast-wrap {
  position: fixed;
  bottom: var(--sp-5);
  right: var(--sp-5);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.toast {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  background: var(--clr-bg-2);
  border: 1px solid var(--clr-border);
  border-left: 3px solid var(--clr-gold);
  border-radius: var(--radius-md);
  padding: var(--sp-3) var(--sp-4);
  min-width: 260px;
  max-width: 360px;
  box-shadow: var(--shadow-lg);
  animation: slideInRight 0.3s ease both;
  font-size: var(--fs-sm);
  color: var(--clr-text);
}

.toast--success { border-left-color: var(--clr-green); }
.toast--error   { border-left-color: var(--clr-danger); }

/* ============================================================
   SECTION-SPECIFIC: HOW IT WORKS
   ============================================================ */
.steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

@media (min-width: 768px) {
  .steps {
    flex-direction: row;
    align-items: flex-start;
  }

  .steps::before {
    content: '';
    position: absolute;
    top: 27px;
    left: calc(33.33% - 0px);
    right: calc(33.33% - 0px);
    height: 2px;
    background: linear-gradient(90deg, var(--clr-gold) 0%, var(--clr-green) 100%);
    z-index: 0;
  }
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  gap: var(--sp-4);
  position: relative;
  z-index: 1;
}

.step__number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--clr-bg);
  border: 2px solid var(--clr-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-xl);
  font-weight: var(--fw-black);
  color: var(--clr-gold);
  flex-shrink: 0;
  box-shadow: var(--shadow-gold);
}

.step__title {
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  color: var(--clr-white);
  margin-bottom: var(--sp-1);
}

.step__desc {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-normal);
}

/* ============================================================
   SECTION-SPECIFIC: CTA BANNER
   ============================================================ */
.cta-banner {
  background:
    radial-gradient(ellipse 80% 80% at 50% 50%, rgba(255,215,0,0.07) 0%, transparent 70%),
    var(--clr-bg-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-12) var(--sp-8);
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: borderGlow 4s ease-in-out infinite;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(255,215,0,0.03) 60deg, transparent 120deg);
  animation: spin 20s linear infinite;
  pointer-events: none;
}

.cta-banner__title {
  font-size: clamp(var(--fs-2xl), 4vw, var(--fs-4xl));
  font-weight: var(--fw-black);
  background: linear-gradient(135deg, var(--clr-white) 0%, var(--clr-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--sp-4);
  position: relative;
}

.cta-banner__desc {
  font-size: var(--fs-md);
  color: var(--clr-text-muted);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: var(--sp-8);
  position: relative;
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-4);
  position: relative;
}

/* ============================================================
   SECTION-SPECIFIC: GAME CATEGORIES
   ============================================================ */
.game-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--clr-text-muted);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-full);
  padding: var(--sp-2) var(--sp-4);
  cursor: pointer;
  text-decoration: none;
  transition:
    background var(--ease-fast),
    border-color var(--ease-fast),
    color var(--ease-fast);
}

.game-chip:hover,
.game-chip.active {
  background: var(--clr-gold-muted);
  border-color: var(--clr-gold);
  color: var(--clr-gold);
}

.game-chip__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.game-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  align-items: center;
  margin-bottom: var(--sp-8);
}

/* ============================================================
   SCROLL REVEAL UTILITY
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--left  { transform: translateX(-30px); }
.reveal--right { transform: translateX(30px); }

.reveal--left.visible,
.reveal--right.visible { transform: translateX(0); }

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

/* ============================================================
   RESPONSIVE UTILITIES
   ============================================================ */
@media (max-width: 479px) {
  .hide-xs { display: none !important; }
}

@media (max-width: 767px) {
  .hide-sm { display: none !important; }
  .section { padding-block: var(--sp-12); }
  .section--lg { padding-block: var(--sp-16); }
}

@media (min-width: 768px) {
  .show-sm-only { display: none !important; }
}

@media (max-width: 1023px) {
  .hide-md { display: none !important; }
}

/* ============================================================
   FOCUS & ACCESSIBILITY
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--clr-gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: var(--sp-4);
  background: var(--clr-gold);
  color: #0a0e1a;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  z-index: 99999;
  transition: top var(--ease-fast);
}

.skip-link:focus { top: var(--sp-4); }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .nav, .footer, .btn--download, .ticker { display: none !important; }
  body { background: white; color: black; }
  a { color: black; }
}

/* ============================================================
   HTML COMPATIBILITY LAYER
   Maps HTML class names → existing styles
   ============================================================ */

/* ── Site Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* ── Navbar ── */
.navbar {
  width: 100%;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(10,14,26,0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--clr-border-light);
  transition: background var(--ease-base), box-shadow var(--ease-base);
}
.navbar.scrolled {
  background: rgba(10,14,26,0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-container,
.nav-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  width: 100%;
}
/* Article nav: hamburger before nav-links - fix order on mobile */
.navbar .hamburger { order: 3; }
.navbar .nav-links  { order: 2; }
.navbar .nav-logo   { order: 1; }
.navbar .btn-primary,
.navbar .nav-cta    { order: 4; margin-left: auto; }
/* On mobile hide Download Now inside nav (hamburger replaces it) */
@media (max-width: 767px) {
  .navbar .btn-primary:not(.nav-cta) { display: none; }
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  height: 42px;
  width: auto;
}
.nav-links {
  display: none;
  list-style: none;
  align-items: center;
  gap: var(--sp-1);
  margin-left: auto;
}
.nav-links a {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--clr-text-muted);
  text-decoration: none;
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--radius-md);
  transition: color var(--ease-fast), background var(--ease-fast);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--clr-gold);
  background: var(--clr-gold-muted);
}
.nav-cta {
  margin-left: auto;
  flex-shrink: 0;
}
/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  border-radius: var(--radius-sm);
  transition: background var(--ease-fast);
}
.hamburger:hover { background: var(--clr-surface-hover); }
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--clr-gold);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav open state */
@media (max-width: 767px) {
  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10,14,26,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--sp-6);
    margin: 0;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  }
  .nav-links.open {
    display: flex;
    transform: translateX(0);
  }
  .nav-links a {
    font-size: var(--fs-lg);
    padding: var(--sp-3) var(--sp-6);
  }
  .nav-cta { display: none; }
}

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

/* ── Buttons extra aliases ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-primary);
  font-weight: var(--fw-semi);
  text-decoration: none;
  cursor: pointer;
  border: none;
  outline: none;
  padding: 0.7em 1.8em;
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  background: var(--grad-gold);
  color: #000;
  box-shadow: 0 4px 20px rgba(255,215,0,0.3);
  transition: transform var(--ease-base), box-shadow var(--ease-base), filter var(--ease-base);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  filter: brightness(1.08);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-primary);
  font-weight: var(--fw-semi);
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid var(--clr-border);
  outline: none;
  padding: 0.7em 1.8em;
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  background: transparent;
  color: var(--clr-gold);
  transition: border-color var(--ease-base), background var(--ease-base), transform var(--ease-base);
}
.btn-secondary:hover {
  border-color: var(--clr-gold);
  background: var(--clr-gold-muted);
  transform: translateY(-2px);
}
.btn-large {
  font-size: var(--fs-base) !important;
  padding: 0.85em 2.2em !important;
}
.btn-green {
  background: var(--grad-green) !important;
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(0,200,83,0.3);
}
.pulse {
  animation: pulse 2.2s cubic-bezier(0.4,0,0.6,1) infinite;
}

/* ── Hero Section ── */
.hero-section {
  position: relative;
  padding: var(--sp-20) 0 var(--sp-16);
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 40%, rgba(0,200,83,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 10% 60%, rgba(255,215,0,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-12);
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1fr 1fr; }
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--clr-gold-muted);
  border: 1px solid var(--clr-border);
  color: var(--clr-gold);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--sp-5);
  letter-spacing: 0.02em;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: var(--fw-black);
  line-height: 1.15;
  margin-bottom: var(--sp-5);
  color: var(--clr-white);
}
.hero-title .highlight,
.highlight {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: var(--fs-md);
  color: var(--clr-text-muted);
  line-height: var(--lh-loose);
  margin-bottom: var(--sp-8);
  max-width: 560px;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-bottom: var(--sp-10);
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-6);
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat-number {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-black);
  color: var(--clr-gold);
  line-height: 1;
}
.stat-label {
  font-size: var(--fs-xs);
  color: var(--clr-text-dim);
  font-weight: var(--fw-medium);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image img {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl), 0 0 60px rgba(255,215,0,0.12);
  border: 1px solid var(--clr-border);
}
.hero-image-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--clr-green-muted);
  border: 1px solid rgba(0,200,83,0.4);
  color: var(--clr-green);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-full);
  white-space: nowrap;
}

/* ── Section Header ── */
.section-header {
  text-align: center;
  margin-bottom: var(--sp-12);
}
.section-badge {
  display: inline-block;
  background: var(--clr-gold-muted);
  color: var(--clr-gold);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  padding: var(--sp-1) var(--sp-4);
  border-radius: var(--radius-full);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
  border: 1px solid var(--clr-border);
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--clr-white);
  line-height: var(--lh-tight);
  margin-bottom: var(--sp-4);
}
.section-subtitle {
  font-size: var(--fs-md);
  color: var(--clr-text-muted);
  max-width: 600px;
  margin-inline: auto;
  line-height: var(--lh-loose);
}

/* ── Sections spacing ── */
.about-section,
.features-section,
.download-section,
.login-section,
.vip-section,
.version-section,
.screenshots-section,
.articles-section,
.faq-section,
.cta-section {
  padding: var(--sp-20) 0;
}
.about-section { background: var(--clr-bg-2); }
.features-section { background: var(--clr-bg); }
.download-section { background: var(--clr-bg-3); }
.login-section { background: var(--clr-bg); }
.vip-section { background: var(--clr-bg-2); }
.version-section { background: var(--clr-bg); }
.screenshots-section { background: var(--clr-bg-3); }
.articles-section { background: var(--clr-bg); }
.faq-section { background: var(--clr-bg-2); }
.cta-section {
  background: linear-gradient(135deg, rgba(255,215,0,0.08) 0%, rgba(0,200,83,0.06) 100%);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  text-align: center;
}

/* ── About grid ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  align-items: start;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 3fr 2fr; }
}
.about-content p {
  color: var(--clr-text-muted);
  line-height: var(--lh-loose);
  margin-bottom: var(--sp-5);
}
.about-content p strong { color: var(--clr-gold); }
.about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-lg);
}

/* ── Features grid ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-6);
}
.feature-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  transition: transform var(--ease-base), border-color var(--ease-base), box-shadow var(--ease-base);
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--clr-border);
  box-shadow: var(--shadow-gold);
}
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: var(--sp-4);
  display: block;
}
.feature-title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semi);
  color: var(--clr-white);
  margin-bottom: var(--sp-3);
}
.feature-desc {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-loose);
}

/* ── Steps / Download ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-6);
  margin-bottom: var(--sp-10);
}
.step {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  position: relative;
  transition: transform var(--ease-base), border-color var(--ease-base);
}
.step:hover { transform: translateY(-3px); border-color: var(--clr-border); }
.step-number {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-black);
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--sp-3);
}
.step-title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semi);
  color: var(--clr-white);
  margin-bottom: var(--sp-2);
}
.step-desc {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-loose);
}
.download-screenshots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sp-4);
  margin-bottom: var(--sp-10);
}
.download-screenshots img {
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border-light);
}
.download-cta {
  text-align: center;
  margin-top: var(--sp-8);
}

/* ── Login section ── */
.login-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  align-items: center;
}
@media (min-width: 900px) {
  .login-grid { grid-template-columns: 1fr 1fr; }
}
.login-steps { list-style: none; counter-reset: login-step; }
.login-steps li {
  counter-increment: login-step;
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--clr-border-light);
}
.login-steps li::before {
  content: counter(login-step, decimal-leading-zero);
  font-size: var(--fs-lg);
  font-weight: var(--fw-black);
  color: var(--clr-gold);
  flex-shrink: 0;
  width: 2rem;
}
.login-steps li strong { color: var(--clr-white); display: block; margin-bottom: 4px; }
.login-steps li p { color: var(--clr-text-muted); font-size: var(--fs-sm); margin: 0; }
.login-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-lg);
}

/* ── VIP Tiers ── */
.vip-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-5);
  margin-bottom: var(--sp-10);
}
.vip-tier {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  text-align: center;
  transition: transform var(--ease-base), border-color var(--ease-base);
}
.vip-tier:hover { transform: translateY(-4px); border-color: var(--clr-gold); }
.tier-badge {
  font-size: 2rem;
  display: block;
  margin-bottom: var(--sp-3);
}
.tier-name {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-4);
}
.tier-name.bronze { color: #cd7f32; }
.tier-name.silver { color: #c0c0c0; }
.tier-name.gold   { color: var(--clr-gold); }
.tier-name.platinum { color: #e5e4e2; }
.tier-name.diamond { color: var(--clr-accent-2); }
.tier-benefits {
  list-style: none;
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  text-align: left;
  line-height: var(--lh-loose);
}
.tier-benefits li::before { content: '✓ '; color: var(--clr-green); font-weight: bold; }
.vip-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-lg);
}

/* ── Version comparison ── */
.version-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  align-items: start;
}
@media (min-width: 900px) {
  .version-grid { grid-template-columns: 1fr 1fr; }
}
.version-content h3 {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--clr-gold);
  margin-bottom: var(--sp-4);
}
.version-list {
  list-style: none;
  color: var(--clr-text-muted);
  font-size: var(--fs-sm);
  line-height: var(--lh-loose);
}
.version-list li { padding: var(--sp-2) 0; border-bottom: 1px solid var(--clr-border-light); }
.version-list li::before { content: '▶ '; color: var(--clr-green); }
.version-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
}

/* ── Screenshots gallery ── */
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}
@media (min-width: 640px) {
  .screenshots-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .screenshots-grid { grid-template-columns: repeat(4, 1fr); }
}
.screenshot-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border-light);
  aspect-ratio: 9/16;
  cursor: pointer;
}
.screenshot-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.screenshot-item:hover img { transform: scale(1.05); }
.screenshot-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-3);
  background: linear-gradient(transparent, rgba(10,14,26,0.9));
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
}

/* ── Articles grid ── */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--sp-6);
}
.article-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  text-decoration: none;
  transition: transform var(--ease-base), border-color var(--ease-base), box-shadow var(--ease-base);
  display: block;
}
.article-card:hover {
  transform: translateY(-4px);
  border-color: var(--clr-border);
  box-shadow: var(--shadow-md);
}
.article-tag {
  display: inline-block;
  background: var(--clr-green-muted);
  color: var(--clr-green);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  margin-bottom: var(--sp-3);
  letter-spacing: 0.05em;
}
.article-title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semi);
  color: var(--clr-white);
  margin-bottom: var(--sp-3);
  line-height: var(--lh-snug);
}
.article-excerpt {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-loose);
  margin-bottom: var(--sp-4);
}
.article-link {
  color: var(--clr-gold);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  text-decoration: none;
}
.article-link:hover { text-decoration: underline; }

/* ── FAQ ── */
.faq-list { max-width: 800px; margin-inline: auto; }
.faq-item {
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-md);
  margin-bottom: var(--sp-3);
  overflow: hidden;
  transition: border-color var(--ease-fast);
}
.faq-item.open { border-color: var(--clr-border); }
.faq-question {
  width: 100%;
  background: var(--clr-surface);
  border: none;
  padding: var(--sp-5) var(--sp-6);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  color: var(--clr-white);
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
  font-family: var(--font-primary);
  transition: background var(--ease-fast);
}
.faq-question:hover { background: var(--clr-surface-hover); }
.faq-question .faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--clr-gold-muted);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--clr-gold);
  transition: transform 0.3s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease;
  padding: 0 var(--sp-6);
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding: var(--sp-5) var(--sp-6);
}
.faq-answer p {
  color: var(--clr-text-muted);
  font-size: var(--fs-sm);
  line-height: var(--lh-loose);
  margin: 0;
}

/* ── CTA section ── */
.cta-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: var(--fw-black);
  color: var(--clr-white);
  margin-bottom: var(--sp-4);
}
.cta-desc {
  font-size: var(--fs-md);
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-8);
  max-width: 540px;
  margin-inline: auto;
}

/* ── Footer aliases ── */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid var(--clr-border-light);
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1.5fr 1.5fr 1fr; }
}
.footer-brand img { margin-bottom: var(--sp-4); display: block; }
.footer-tagline {
  font-size: var(--fs-sm);
  color: var(--clr-text-dim);
  line-height: var(--lh-loose);
  max-width: 280px;
}
.footer-nav h3,
.footer-contact h3,
.footer-heading {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--clr-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-4);
}
.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.footer-nav a {
  font-size: var(--fs-sm);
  color: var(--clr-text-dim);
  text-decoration: none;
  transition: color var(--ease-fast);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.footer-nav a::before { content: '›'; color: var(--clr-gold); }
.footer-nav a:hover { color: var(--clr-gold); }
.footer-contact p {
  font-size: var(--fs-sm);
  color: var(--clr-text-dim);
  margin-bottom: var(--sp-2);
}
.footer-contact-btn {
  display: inline-block;
  margin-top: var(--sp-3);
  color: var(--clr-green);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  text-decoration: none;
}
.footer-contact-btn:hover { text-decoration: underline; }
.footer-bottom {
  padding: var(--sp-6) 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: flex-start; }
}
.footer-copyright p,
.footer-disclaimer p,
.footer-keywords,
.disclaimer {
  font-size: var(--fs-xs);
  color: var(--clr-text-dim);
  line-height: var(--lh-loose);
}
.footer-copyright p a,
.footer-disclaimer p a { color: var(--clr-gold); text-decoration: none; }
.footer-copyright p a:hover { text-decoration: underline; }
.footer-disclaimer { max-width: 55ch; }

/* ── Breadcrumb alias ── */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-2);
  list-style: none;
  font-size: var(--fs-sm);
  color: var(--clr-text-dim);
  padding: var(--sp-4) 0;
  margin-bottom: var(--sp-6);
}
.breadcrumb a {
  color: var(--clr-text-muted);
  text-decoration: none;
}
.breadcrumb a:hover { color: var(--clr-gold); }
.breadcrumb li + li::before { content: '/'; margin-right: var(--sp-2); }

/* ── Article page layout ── */
.article-hero {
  padding: var(--sp-12) 0 var(--sp-8);
  background: var(--clr-bg-2);
  border-bottom: 1px solid var(--clr-border-light);
}
.article-hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: var(--fw-black);
  color: var(--clr-white);
  line-height: var(--lh-tight);
  margin-bottom: var(--sp-4);
}
.article-hero p {
  font-size: var(--fs-md);
  color: var(--clr-text-muted);
  max-width: 700px;
  line-height: var(--lh-loose);
}
.article-body {
  padding: var(--sp-12) 0;
}
.article-body h2 {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--clr-white);
  margin: var(--sp-10) 0 var(--sp-4);
}
.article-body h3 {
  font-size: var(--fs-xl);
  font-weight: var(--fw-semi);
  color: var(--clr-gold);
  margin: var(--sp-6) 0 var(--sp-3);
}
.article-body p {
  color: var(--clr-text-muted);
  line-height: var(--lh-loose);
  margin-bottom: var(--sp-5);
}
.article-body strong { color: var(--clr-white); }
.article-body ul, .article-body ol {
  padding-left: var(--sp-6);
  color: var(--clr-text-muted);
  line-height: var(--lh-loose);
  margin-bottom: var(--sp-5);
}
.article-body li { margin-bottom: var(--sp-2); }
.article-body img {
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border-light);
  margin: var(--sp-6) 0;
}
.article-cta {
  background: linear-gradient(135deg, rgba(255,215,0,0.08), rgba(0,200,83,0.06));
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-10);
  text-align: center;
  margin: var(--sp-12) 0;
}
.article-cta h3 {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--clr-white);
  margin-bottom: var(--sp-3);
}
.article-cta p {
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-6);
}
.related-articles {
  padding: var(--sp-12) 0;
  border-top: 1px solid var(--clr-border-light);
}
.related-articles h2 {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--clr-white);
  margin-bottom: var(--sp-8);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-5);
}

/* ── About/Contact/Privacy page ── */
.page-hero {
  padding: var(--sp-16) 0 var(--sp-12);
  background: var(--clr-bg-2);
  text-align: center;
  border-bottom: 1px solid var(--clr-border-light);
}
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: var(--fw-black);
  color: var(--clr-white);
  margin-bottom: var(--sp-4);
}
.page-hero p {
  font-size: var(--fs-md);
  color: var(--clr-text-muted);
  max-width: 600px;
  margin-inline: auto;
}
.page-content {
  padding: var(--sp-12) 0;
  max-width: 800px;
  margin-inline: auto;
}
.page-content h2 {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--clr-white);
  margin: var(--sp-10) 0 var(--sp-4);
}
.page-content h3 {
  font-size: var(--fs-xl);
  font-weight: var(--fw-semi);
  color: var(--clr-gold);
  margin: var(--sp-6) 0 var(--sp-3);
}
.page-content p {
  color: var(--clr-text-muted);
  line-height: var(--lh-loose);
  margin-bottom: var(--sp-5);
}
.page-content ul {
  padding-left: var(--sp-6);
  color: var(--clr-text-muted);
  line-height: var(--lh-loose);
  margin-bottom: var(--sp-5);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--sp-5);
  margin: var(--sp-10) 0;
}
.stat-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  text-align: center;
}
.stat-card .stat-number { font-size: var(--fs-3xl); }
.stat-card .stat-label { margin-top: var(--sp-2); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  padding: var(--sp-12) 0;
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; align-items: start; }
}
.contact-info h2,
.contact-form-wrap h2 {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--clr-white);
  margin-bottom: var(--sp-6);
}
.contact-info p {
  color: var(--clr-text-muted);
  line-height: var(--lh-loose);
  margin-bottom: var(--sp-4);
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-md);
  margin-bottom: var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
}
.contact-detail strong { color: var(--clr-white); }
.contact-form {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
}
.form-group {
  margin-bottom: var(--sp-5);
}
.form-group label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-2);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--clr-bg);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-md);
  padding: var(--sp-3) var(--sp-4);
  color: var(--clr-text);
  font-family: var(--font-primary);
  font-size: var(--fs-sm);
  transition: border-color var(--ease-fast);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--clr-gold);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── Version compare table ── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--sp-6) 0;
}
.compare-table th {
  background: var(--clr-surface);
  color: var(--clr-gold);
  font-weight: var(--fw-semi);
  padding: var(--sp-3) var(--sp-4);
  text-align: left;
  border-bottom: 1px solid var(--clr-border);
}
.compare-table td {
  padding: var(--sp-3) var(--sp-4);
  border-bottom: 1px solid var(--clr-border-light);
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
}
.compare-table tr:hover td { background: var(--clr-surface); }
.badge-new {
  background: var(--clr-green-muted);
  color: var(--clr-green);
  font-size: 11px;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-weight: var(--fw-semi);
}

/* ── Privacy TOC ── */
.toc {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  margin-bottom: var(--sp-8);
}
.toc h3 { font-size: var(--fs-base); font-weight: var(--fw-semi); color: var(--clr-white); margin-bottom: var(--sp-4); }
.toc ol { padding-left: var(--sp-5); }
.toc li { margin-bottom: var(--sp-2); }
.toc a { color: var(--clr-gold); font-size: var(--fs-sm); text-decoration: none; }
.toc a:hover { text-decoration: underline; }

/* ── Responsive containers ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-4);
}
@media (min-width: 640px) { .container { padding-inline: var(--sp-6); } }
@media (min-width: 1024px) { .container { padding-inline: var(--sp-8); } }

