:root {
  --bg: #05070a;
  --panel: #0d1117;
  --card: #080c14;
  --border: rgba(34, 197, 94, 0.18);
  --pink: #22c55e;
  --pink-dark: #0f8a4f;
  --pink-soft: #86efac;
  --green: #00ff88;
  --amber: #ffb800;
  --blue: #7ab0ff;
  --dim: rgba(190, 175, 215, 0.55);
  --dim2: rgba(190, 175, 215, 0.75);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; }
button { font-family: inherit; cursor: pointer; }

.pink-glow {
  font-family: 'Space Grotesk', 'Arial Black', sans-serif;
  font-weight: 700;
  background: linear-gradient(135deg, #22c55e 0%, #86efac 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(34, 197, 94, 0.5), 0 0 45px rgba(34, 197, 94, 0.25);
  display: inline-block;
}

.shake-word {
  display: inline-block;
  animation: shakeWord 2.4s ease-in-out infinite;
}
@keyframes shakeWord {
  0%, 76%, 100% { transform: translate3d(0,0,0); filter: blur(0); }
  77% { transform: translate3d(-6px,-2px,0) rotate(-2deg); filter: blur(2px); }
  78% { transform: translate3d(6px,3px,0) rotate(2deg); filter: blur(2px); }
  79% { transform: translate3d(-5px,3px,0) rotate(-1.5deg); filter: blur(1.4px); }
  80% { transform: translate3d(5px,-3px,0) rotate(1.5deg); filter: blur(1px); }
  81% { transform: translate3d(-3px,2px,0) rotate(-1deg); filter: blur(0.6px); }
  82% { transform: translate3d(3px,-2px,0) rotate(1deg); filter: blur(0.3px); }
  83% { transform: translate3d(-2px,1px,0) rotate(-0.4deg); filter: blur(0); }
  84%, 100% { transform: translate3d(0,0,0); filter: blur(0); }
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 1.25rem; }

/* Preloader */
#preloader {
  position: fixed; inset: 0; background: var(--bg);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  z-index: 99999; transition: opacity 0.6s ease, visibility 0.6s;
}
#preloader.preloader-hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  width: 84px; height: 84px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; animation: pulseLogo 2s infinite ease-in-out;
}
.loader-logo img {
  width: 84px; height: 84px; border-radius: 18px; object-fit: cover;
  border: 2px solid rgba(34, 197, 94, 0.55); box-shadow: 0 0 18px rgba(34, 197, 94, 0.35);
}
@keyframes pulseLogo {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.08); opacity: 1; filter: drop-shadow(0 0 16px rgba(34, 197, 94, 0.5)); }
}
.loader-bar-container { width: 200px; height: 2px; background: rgba(255,255,255,0.1); border-radius: 10px; overflow: hidden; position: relative; }
.loader-bar { width: 100%; height: 100%; background: linear-gradient(90deg, #22c55e, #86efac); position: absolute; left: -100%; animation: loadingBar 1.4s infinite cubic-bezier(0.4,0,0.2,1); }
@keyframes loadingBar { 0% { left: -100%; } 50% { left: 0; } 100% { left: 100%; } }

/* Background */
.site-bg { position: fixed; inset: 0; z-index: -1; overflow: hidden; }
.bg-orb { position: absolute; border-radius: 50%; filter: blur(90px); }
.orb-a { width: 480px; height: 480px; top: -160px; left: -120px; background: rgba(34, 197, 94, 0.16); }
.orb-b { width: 520px; height: 520px; bottom: -200px; right: -140px; background: rgba(15, 138, 79, 0.12); }
.bg-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(34, 197, 94,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(34, 197, 94,0.05) 1px, transparent 1px); background-size: 46px 46px; }
.bg-noise { position: absolute; inset: 0; opacity: 0.035; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E"); }

/* Header */
.site-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-top: 10px; }
.logo { display: flex; align-items: center; gap: 0.65rem; }
.logo-badge {
  width: 42px; height: 42px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: #0d1117; border: 1.5px solid rgba(34, 197, 94, 0.5); overflow: hidden;
}
.logo-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.logo-copy { font-family: 'Space Grotesk', sans-serif; font-size: 0.8rem; letter-spacing: 0.12em; color: var(--dim2); }
.nav-menu {
  background: rgba(13, 17, 23, 0.85); border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 99px; padding: 0.5rem 1.4rem; display: flex; align-items: center; gap: 1.4rem;
}
.nav-menu ul { display: flex; gap: 1.4rem; list-style: none; }
.nav-menu ul li a { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; color: var(--dim2); transition: color 0.18s; }
.nav-menu ul li a:hover { color: #86efac; }
.header-actions .header-link-btn {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.55rem 1.2rem; border: 1.5px solid rgba(34, 197, 94, 0.4); border-radius: 99px;
  color: #86efac; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.05em; transition: background 0.18s;
}
.header-link-btn:hover { background: rgba(34, 197, 94,0.1); }
.nav-ico { width: 18px; height: 18px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: transparent; border: none; z-index: 1001; }
.hamburger span { display: block; width: 25px; height: 2px; background: #fff; transition: all 0.3s; border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-only { display: none; }

/* Hero */
.hero { position: relative; padding-top: 130px; padding-bottom: 90px; }
.hero-backdrop-lines { position: absolute; inset: 0; pointer-events: none; opacity: 0.5; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 0.55rem; font-size: 0.76rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dim); margin-bottom: 1.3rem; border: 1px solid rgba(34, 197, 94,0.25); padding: 0.4rem 0.9rem; border-radius: 99px; background: rgba(34, 197, 94,0.05); }
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 10px var(--pink); }
.hero h1 { font-size: clamp(3rem, 7vw, 5.2rem); font-weight: 700; line-height: 1; letter-spacing: 0.01em; }
.hero-text { margin-top: 1.4rem; max-width: 520px; font-size: 1rem; line-height: 1.75; color: var(--dim2); font-weight: 400; }
.hero-cta { display: flex; gap: 0.85rem; margin-top: 2rem; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.85rem 1.7rem; border-radius: 10px; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 0.9rem; letter-spacing: 0.06em; text-transform: uppercase; transition: all 0.18s; }
.btn-primary { background: linear-gradient(135deg, #22c55e 0%, #0f8a4f 100%); color: #fff; box-shadow: 0 10px 30px rgba(34, 197, 94,0.25); }
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-secondary { border: 1.5px solid rgba(255,255,255,0.14); color: var(--dim2); }
.btn-secondary:hover { border-color: rgba(34, 197, 94,0.5); color: #86efac; }

.hero-right { position: relative; min-height: 480px; display: flex; align-items: center; justify-content: center; perspective: 1400px; }
.hero-device-stage { position: relative; width: min(560px, 100%); height: 480px; display: flex; align-items: center; justify-content: center; perspective: 1400px; }
.hero-device-glow { position: absolute; width: 82%; height: 70%; border-radius: 50%; background: radial-gradient(ellipse, rgba(34, 197, 94,0.3) 0%, rgba(34, 197, 94,0.1) 40%, transparent 75%); filter: blur(35px); }
.hero-device { position: relative; width: 100%; transform-style: preserve-3d; animation: heroFloat 5.5s ease-in-out infinite; }
@keyframes heroFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.hero-device-inner {
  position: relative; border-radius: 14px; transform: rotateY(-13deg) rotateX(4deg);
  border: 1px solid rgba(34, 197, 94,0.5); background: rgba(8,10,14,0.7);
  box-shadow: 0 0 26px rgba(34, 197, 94,0.3), 0 0 60px rgba(34, 197, 94,0.16), 25px 35px 70px rgba(0,0,0,0.65);
  overflow: hidden;
  transition: transform 0.45s ease-out;
  will-change: transform;
}
.hero-device-inner::before { content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none; background: linear-gradient(115deg, rgba(255,255,255,0.1), transparent 25%, transparent 70%, rgba(255,60,170,0.1)); }
.hero-device-img { width: 100%; height: 100%; object-fit: cover; display: block; user-select: none; pointer-events: none; }
.opti-console { padding: 1rem 1.1rem 1.2rem; }
.console-top { display: flex; align-items: center; gap: 0.45rem; font-family: 'Space Grotesk', sans-serif; font-size: 0.66rem; color: var(--dim); letter-spacing: 0.1em; padding-bottom: 0.8rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.console-top .dot { width: 9px; height: 9px; border-radius: 50%; }
.dot.r { background: #ff5f57; } .dot.y { background: #ffbd2e; } .dot.g { background: #28c840; }
.console-title { margin-left: 0.4rem; }
.console-lines { display: flex; flex-direction: column; gap: 0.5rem; padding: 0.85rem 0 0.9rem; font-family: 'Space Grotesk', monospace; font-size: 0.74rem; min-height: 208px; }
.console-lines .cl { opacity: 0; animation: clIn 0.4s ease forwards; }
.console-lines .cl:nth-child(1) { animation-delay: 0.2s; } .console-lines .cl:nth-child(2) { animation-delay: 0.6s; }
.console-lines .cl:nth-child(3) { animation-delay: 1s; } .console-lines .cl:nth-child(4) { animation-delay: 1.4s; }
.console-lines .cl:nth-child(5) { animation-delay: 1.8s; } .console-lines .cl:nth-child(6) { animation-delay: 2.2s; }
.console-lines .cl:nth-child(7) { animation-delay: 2.6s; }
@keyframes clIn { from { opacity: 0; transform: translateX(6px); } to { opacity: 1; transform: translateX(0); } }
.console-lines .cl.ok::before { content: "✓ "; color: var(--green); }
.console-lines .cl.run::before { content: "… "; color: var(--pink); animation: clBlink 1s infinite; }
@keyframes clBlink { 50% { opacity: 0.2; } }
.console-lines .cl.ok { color: var(--dim2); }
.console-bar { height: 5px; background: rgba(255,255,255,0.08); border-radius: 3px; overflow: hidden; }
.console-bar-fill { height: 100%; width: 0; background: linear-gradient(90deg, #22c55e, #86efac); border-radius: 3px; animation: barFill 3.2s cubic-bezier(0.2,0.6,0.3,1) forwards; }
@keyframes barFill { 0% { width: 0; } 100% { width: 100%; } }
.console-metrics { display: flex; justify-content: space-between; padding-top: 0.9rem; }
.console-metrics div { display: flex; flex-direction: column; align-items: center; }
.console-metrics b { font-family: 'Space Grotesk', sans-serif; font-size: 1.15rem; color: var(--green); }
.console-metrics span { font-size: 0.62rem; color: var(--dim); letter-spacing: 0.08em; text-transform: uppercase; }
.hero-device-reflection { position: absolute; width: 62%; height: 80px; left: 20%; bottom: 30px; border-radius: 50%; background: radial-gradient(ellipse, rgba(34, 197, 94,0.2), transparent 68%); filter: blur(24px); transform: rotateX(75deg); opacity: 0.7; pointer-events: none; }
.hero-floating-dot { position: absolute; width: 4px; height: 4px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 8px #22c55e, 0 0 18px rgba(34, 197, 94,0.7); opacity: 0.7; pointer-events: none; }
.dot-1 { top: 15%; left: 6%; animation: heroDot 4s ease-in-out infinite; }
.dot-2 { top: 26%; right: 6%; animation: heroDot 5s ease-in-out infinite 1s; }
.dot-3 { bottom: 18%; left: 12%; animation: heroDot 4.5s ease-in-out infinite 2s; }
@keyframes heroDot { 0%,100% { transform: translate3d(0,0,0); opacity: 0.35; } 50% { transform: translate3d(0,-18px,35px); opacity: 1; } }

.scroll-indicator { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; animation: scrollFade 1.2s ease 1.5s both; pointer-events: none; }
@keyframes scrollFade { from { opacity: 0; transform: translate(-50%,10px); } to { opacity: 1; transform: translate(-50%,0); } }
.scroll-indicator-text { font-size: 0.6rem; font-family: 'Space Grotesk', sans-serif; font-weight: 600; letter-spacing: 0.18em; color: rgba(180,150,200,0.5); text-transform: uppercase; }
.scroll-mouse { width: 22px; height: 36px; border: 2px solid rgba(180,150,200,0.35); border-radius: 12px; display: flex; justify-content: center; padding-top: 5px; }
.scroll-mouse-wheel { width: 3px; height: 7px; background: rgba(34, 197, 94,0.7); border-radius: 3px; animation: wheelScroll 1.6s ease infinite; }
@keyframes wheelScroll { 0% { transform: translateY(0); opacity: 1; } 80% { transform: translateY(10px); opacity: 0; } 100% { transform: translateY(0); opacity: 0; } }

/* Sections */
.section { padding: 4.5rem 0; }
.section-head { max-width: 640px; margin-bottom: 2.8rem; }
.section-label { font-family: 'Space Grotesk', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--pink); }
.section-head h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); margin: 0.5rem 0 0.7rem; }
.section-head p { color: var(--dim); line-height: 1.65; font-size: 0.95rem; }

/* Features grid */
.pp-feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.4rem; }
.pp-feat-block { background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 1.3rem; backdrop-filter: blur(6px); }
.pp-feat-title { font-family: 'Space Grotesk', sans-serif; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--pink); margin-bottom: 0.2rem; }
.pp-feat-sub { font-size: 0.72rem; color: var(--dim); margin-bottom: 0.85rem; font-style: italic; }
.pp-feat-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.pp-feat-list li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.84rem; color: rgba(215,200,230,0.84); line-height: 1.5; }
.pp-fi { width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 9px; flex-shrink: 0; margin-top: 3px; }
.pp-fi-g { background: rgba(0,255,136,0.14); color: var(--green); }
.pp-fi-p { background: rgba(34, 197, 94,0.14); color: var(--pink); }

.pp-stats-bar { background: linear-gradient(90deg, rgba(34, 197, 94,0.08) 0%, rgba(0,255,136,0.05) 100%); border: 1px solid rgba(34, 197, 94,0.16); border-radius: 10px; padding: 0.8rem 1.4rem; display: flex; align-items: center; gap: 0.5rem 1.6rem; flex-wrap: wrap; }
.pp-stats-bar span { font-size: 0.85rem; color: var(--dim2); }
.pp-stats-bar strong { color: var(--green); font-weight: 700; }

/* Tabs */
.pp-cat-tabs { display: flex; gap: 0.35rem; flex-wrap: wrap; border-bottom: 1px solid rgba(34, 197, 94,0.12); margin-bottom: 2.4rem; }
.pp-cat-tab { padding: 0.7rem 1.4rem; border: none; border-bottom: 2px solid transparent; margin-bottom: -1px; background: transparent; color: var(--dim); font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: color 0.18s, border-color 0.18s; display: flex; align-items: center; gap: 0.5rem; }
.pp-cat-tab:hover { color: #86efac; }
.pp-cat-tab.active { color: var(--pink); border-bottom-color: var(--pink); }
.pp-count { background: rgba(34, 197, 94,0.15); color: var(--pink); font-size: 0.6rem; font-weight: 700; padding: 2px 8px; border-radius: 20px; }
.pp-cat-panel { display: none; }
.pp-cat-panel.active { display: block; animation: ppIn 0.28s ease; }
@keyframes ppIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.pp-meta-row { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 0.6rem; }
.pp-chip { font-family: 'Space Grotesk', sans-serif; font-size: 0.64rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 10px; border-radius: 20px; }
.pp-chip-game { background: rgba(34, 197, 94,0.12); color: var(--pink); border: 1px solid rgba(34, 197, 94,0.25); }
.pp-chip-ok { background: rgba(0,255,136,0.1); color: #00e878; border: 1px solid rgba(0,255,136,0.2); }
.pp-chip-hot { background: rgba(255,180,0,0.12); color: var(--amber); border: 1px solid rgba(255,180,0,0.25); }
.pp-chip-blue { background: rgba(100,160,255,0.1); color: var(--blue); border: 1px solid rgba(100,160,255,0.2); }

.pp-prod-title { font-size: clamp(1.4rem, 3vw, 1.8rem); color: #fff; margin-bottom: 0.35rem; }
.pp-prod-desc { color: var(--dim2); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1.6rem; max-width: 680px; }

.pp-hero { display: grid; grid-template-columns: 1fr 330px; gap: 1.5rem; margin-bottom: 1.6rem; }
.pp-media-box { border-radius: 14px; overflow: hidden; border: 1px solid rgba(34, 197, 94,0.14); background: var(--card); position: relative; }
.pp-media-placeholder { width: 100%; aspect-ratio: 16/9; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.8rem; background: radial-gradient(circle at 50% 40%, rgba(34, 197, 94,0.14), transparent 60%); }
.pp-esp-label { font-family: 'Space Grotesk', monospace; font-size: 0.72rem; letter-spacing: 0.2em; padding: 4px 12px; border-radius: 4px; color: var(--pink); border: 1px solid rgba(34, 197, 94,0.3); }
.pp-esp-title { font-family: 'Space Grotesk', sans-serif; font-size: 2.4rem; font-weight: 700; color: #fff; letter-spacing: 0.05em; }
.pp-esp-sub { font-size: 0.72rem; letter-spacing: 0.14em; color: var(--dim); text-transform: uppercase; }

.pp-buy-panel { background: rgba(13,17,23,0.97); border: 1px solid rgba(34, 197, 94,0.18); border-radius: 14px; padding: 1.4rem; display: flex; flex-direction: column; gap: 0.95rem; backdrop-filter: blur(14px); }
.pp-buy-label { font-family: 'Space Grotesk', sans-serif; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--dim); }
.pp-instant-note { display: flex; align-items: center; gap: 0.4rem; font-size: 0.74rem; color: rgba(0,255,136,0.85); }
.pp-instant-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.pp-plans { display: flex; flex-direction: column; gap: 0.45rem; }
.pp-plan { padding: 0.8rem 1rem; border-radius: 9px; border: 1.5px solid rgba(255,255,255,0.08); position: relative; }
.pp-plan.sel { border-color: var(--pink); background: rgba(34, 197, 94,0.06); }
.pp-plan-row { display: flex; justify-content: space-between; align-items: center; }
.pp-plan-name { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 0.9rem; color: #fff; }
.pp-plan-price { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--pink); }
.pp-strike { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 0.78rem; color: var(--dim2); text-decoration: line-through; opacity: 0.65; margin-left: 0.5rem; vertical-align: middle; }
.pp-spoof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1rem; }
.pp-spoof-col { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 12px; padding: 1rem 1.1rem; }
.pp-spoof-col h4 { font-family: 'Space Grotesk', sans-serif; font-size: 0.92rem; letter-spacing: 0.04em; margin: 0 0 0.8rem; color: var(--dim0); }
.pp-spoof-col p.sub { margin: 0 0 0.8rem; font-size: 0.85rem; color: var(--dim2); }
.pp-spoof-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.pp-spoof-col li { font-size: 0.9rem; color: var(--dim1); display: flex; gap: 0.5rem; align-items: baseline; }
.pp-spoof-col li::before { content: "✓"; color: var(--green); font-weight: 700; }
.pp-spoof-col li.plus::before { content: "+"; color: var(--pink); font-weight: 700; }
.pp-notice { display: flex; gap: 0.75rem; align-items: flex-start; margin-top: 1.25rem; width: 100%; box-sizing: border-box; text-align: left; padding: 0.85rem 1rem; border-radius: 12px; border: 1px solid rgba(250,204,21,0.35); background: rgba(250,204,21,0.07); }
.pp-notice-ico { flex: 0 0 auto; font-size: 1.05rem; line-height: 1.3; }
.pp-notice p { margin: 0; font-size: 0.87rem; color: var(--dim1); text-align: left; }
.pp-notice strong { color: var(--dim0); }
.pp-plan-sub { font-size: 0.7rem; color: var(--dim); margin-top: 0.18rem; }
.pp-plan-badge { position: absolute; top: -1px; right: -1px; background: var(--pink); color: #fff; font-size: 0.5rem; font-weight: 700; letter-spacing: 0.06em; padding: 2px 7px; border-radius: 0 6px 0 5px; text-transform: uppercase; }
.pp-btn-buy { width: 100%; padding: 0.9rem; background: linear-gradient(135deg, #22c55e 0%, #0f8a4f 100%); color: #fff; border: none; border-radius: 9px; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 0.92rem; letter-spacing: 0.07em; cursor: pointer; text-transform: uppercase; text-align: center; transition: opacity 0.2s, transform 0.1s; }
.pp-btn-buy:hover { opacity: 0.88; }
.pp-refund { display: flex; align-items: center; gap: 0.4rem; font-size: 0.7rem; color: rgba(0,255,136,0.78); }
.pp-refund-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex-shrink: 0; }

.pp-why-block { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 1.4rem; }
.pp-why-head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.7rem; margin-bottom: 1rem; }
.pp-why-title { font-family: 'Space Grotesk', sans-serif; font-size: 0.64rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--dim2); }
.pp-compat { display: flex; gap: 0.35rem; flex-wrap: wrap; }
.pp-cb { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.05em; padding: 4px 11px; border-radius: 6px; background: rgba(0,255,136,0.07); color: #00e878; border: 1px solid rgba(0,255,136,0.18); }
.pp-why-bullets { display: flex; flex-direction: column; gap: 0.55rem; list-style: none; }
.pp-why-b { font-size: 0.84rem; color: rgba(205,190,220,0.82); padding-left: 1.1rem; position: relative; line-height: 1.5; }
.pp-why-b::before { content: '→'; position: absolute; left: 0; color: var(--pink); font-weight: 700; }
.pp-why-b strong { color: #fff; font-weight: 600; }

/* Method */
.method-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.method-step { background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 1.4rem; position: relative; }
.method-num { font-family: 'Space Grotesk', sans-serif; font-size: 0.9rem; font-weight: 700; color: var(--pink); }
.method-step h4 { margin: 0.6rem 0 0.4rem; font-size: 1.1rem; }
.method-step p { font-size: 0.82rem; color: var(--dim); line-height: 1.6; }

/* Resell CTA */
.pp-resell-card { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; padding: 2rem 2.2rem; border: 1px solid rgba(34, 197, 94,0.22); border-radius: 16px; overflow: hidden; background: radial-gradient(circle at 85% 50%, rgba(34, 197, 94,0.13), transparent 35%), linear-gradient(135deg, rgba(34, 197, 94,0.07), rgba(255,255,255,0.025)); box-shadow: 0 18px 55px rgba(0,0,0,0.25); }
.pp-resell-card::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,0.035) 50%, transparent 65%); }
.pp-resell-copy, .pp-resell-action { position: relative; z-index: 1; }
.pp-resell-badge { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #86efac; }
.pp-resell-copy h2 { margin: 0.35rem 0 0.55rem; font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.6rem, 3vw, 2.35rem); color: #fff; }
.pp-resell-copy p { max-width: 650px; margin: 0; color: var(--dim2); font-size: 0.9rem; line-height: 1.65; }
.pp-resell-points { display: flex; flex-wrap: wrap; gap: 0.55rem 1rem; margin-top: 1rem; }
.pp-resell-points span { font-size: 0.72rem; color: rgba(230,220,235,0.8); }
.pp-resell-action { min-width: 235px; display: flex; flex-direction: column; align-items: center; gap: 0.55rem; }
.pp-resell-btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.65rem; width: 100%; padding: 0.95rem 1.35rem; border-radius: 9px; background: linear-gradient(135deg, #22c55e 0%, #0f8a4f 100%); color: #fff; font-family: 'Space Grotesk', sans-serif; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.07em; box-shadow: 0 10px 30px rgba(34, 197, 94,0.2); transition: transform 0.18s, opacity 0.18s; }
.pp-resell-btn:hover { transform: translateY(-2px); opacity: 0.92; }
.pp-resell-note { font-size: 0.62rem; color: var(--dim); text-align: center; }

/* Contact */
.contact-box { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; background: rgba(13,17,23,0.9); border: 1px solid rgba(34, 197, 94,0.2); border-radius: 14px; padding: 1.2rem 1.4rem; max-width: 660px; }
.contact-discord { display: flex; align-items: center; gap: 0.8rem; }
.cd-logo { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; overflow: hidden; background: #0d1117; border: 1.5px solid rgba(34,197,94,0.5); }
.cd-logo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.contact-discord h4 { margin-bottom: 0.15rem; }
.contact-discord p { font-size: 0.74rem; color: var(--dim); }
.contact-command { flex: 1; min-width: 220px; font-family: 'Space Grotesk', monospace; font-size: 0.82rem; color: var(--green); background: rgba(0,0,0,0.35); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; padding: 0.65rem 0.9rem; }
.contact-copy { padding: 0.65rem 1.1rem; border: 1.5px solid rgba(34, 197, 94,0.4); border-radius: 8px; background: transparent; color: #86efac; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 0.78rem; transition: background 0.18s; }
.contact-copy:hover { background: rgba(34, 197, 94,0.1); }

/* Footer */
footer { border-top: 1px solid rgba(255,255,255,0.06); padding: 2rem 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-note { font-size: 0.72rem; color: var(--dim); }
.footer-links { display: flex; gap: 1.2rem; }
.footer-links a { font-size: 0.78rem; color: var(--dim2); transition: color 0.18s; }
.footer-links a:hover { color: #86efac; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.08s; } .delay-2 { transition-delay: 0.16s; } .delay-3 { transition-delay: 0.24s; }

/* Promo modal */
.promo-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(6px); z-index: 9000; opacity: 0; visibility: hidden; transition: opacity 0.3s; }
.promo-backdrop.show { opacity: 1; visibility: visible; }
.promo-modal { position: fixed; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(0.96); max-width: 460px; width: calc(100% - 2rem); background: #0d1117; border: 1.5px solid rgba(34, 197, 94,0.3); border-radius: 16px; padding: 1.8rem; box-shadow: 0 25px 60px rgba(0,0,0,0.85); z-index: 9500; opacity: 0; visibility: hidden; transition: opacity 0.25s, transform 0.25s; text-align: center; }
.promo-modal.show { opacity: 1; visibility: visible; transform: translate(-50%,-50%) scale(1); }
.promo-close { position: absolute; top: 0.6rem; right: 0.9rem; font-size: 1.4rem; background: none; border: none; color: var(--dim); }
.promo-badge { display: inline-block; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--pink); padding: 0.28rem 0.85rem; border: 1px solid rgba(34, 197, 94,0.4); border-radius: 99px; }
.promo-modal h2 { font-size: 1.5rem; margin: 0.6rem 0 0.4rem; }
.promo-text { font-size: 0.9rem; color: var(--dim2); line-height: 1.55; margin-bottom: 1rem; }
.promo-coupon-wrap { display: flex; align-items: center; justify-content: center; gap: 0.6rem; margin-bottom: 0.9rem; flex-wrap: wrap; }
.promo-coupon-code { font-family: 'Space Grotesk', sans-serif; font-size: 1.4rem; font-weight: 700; letter-spacing: 0.12em; color: var(--pink); padding: 0.4rem 1.1rem; border: 1.5px dashed rgba(34, 197, 94,0.5); border-radius: 8px; }
.promo-copy-btn { font-size: 0.76rem; font-family: 'Space Grotesk', sans-serif; font-weight: 700; padding: 0.34rem 1rem; border-radius: 7px; border: 1.5px solid rgba(34, 197, 94,0.4); background: transparent; color: #86efac; }
.promo-timer-wrap { display: flex; flex-direction: column; align-items: center; gap: 0.25rem; margin-bottom: 1rem; }
.promo-timer-label { font-size: 0.72rem; color: var(--dim); text-transform: uppercase; letter-spacing: 0.1em; }
.promo-timer { font-size: 1.3rem; font-weight: 700; font-family: 'Space Grotesk', sans-serif; color: #86efac; }
.promo-actions { display: flex; gap: 0.6rem; justify-content: center; margin-bottom: 0.9rem; flex-wrap: wrap; }
.promo-primary-btn { padding: 0.55rem 1.5rem; border-radius: 8px; background: linear-gradient(135deg, #22c55e 0%, #0f8a4f 100%); color: #fff; font-size: 0.85rem; font-weight: 700; font-family: 'Space Grotesk', sans-serif; }
.promo-secondary-btn { padding: 0.55rem 1.5rem; border-radius: 8px; border: 1.5px solid rgba(255,255,255,0.14); background: transparent; color: var(--dim2); font-size: 0.85rem; font-family: 'Space Grotesk', sans-serif; font-weight: 700; }
.promo-points { display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap; }
.promo-points span { font-size: 0.66rem; padding: 0.2rem 0.75rem; border-radius: 14px; background: rgba(34, 197, 94,0.08); color: #86efac; border: 1px solid rgba(34, 197, 94,0.2); }

/* Avis clients */
.avis-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 26px; margin-top: 34px; align-items: stretch; }
.avis-card { display: flex; flex-direction: column; gap: 16px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: 20px; padding: 26px; min-height: 240px; transition: transform 0.25s ease, border-color 0.25s ease; }
.avis-card:hover { transform: translateY(-3px); border-color: rgba(34, 197, 94,0.5); }
.avis-head { display: flex; align-items: center; gap: 14px; }
.avis-head-main { display: flex; flex-direction: column; }
.avis-avatar { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; border: 3px solid var(--green, #22c55e); flex-shrink: 0; }
.avis-head-name { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.15rem; }
.avis-ts { display: block; font-size: 0.78rem; color: var(--dim, rgba(255,255,255,0.55)); margin-top: 3px; }
.avis-eye-btn { margin-left: auto; display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.06); color: var(--dim2); cursor: pointer; transition: all 0.2s ease; flex-shrink: 0; }
.avis-eye-btn:hover { border-color: rgba(34, 197, 94,0.5); color: #86efac; }
.avis-eye-btn.is-open { border-color: rgba(34, 197, 94,0.5); color: #4ade80; }
.avis-eye-btn svg { width: 20px; height: 20px; }
.avis-text { font-size: 1.08rem; line-height: 1.7; color: var(--dim2, rgba(255,255,255,0.78)); flex: 1; }
.avis-modal { position: fixed; inset: 0; z-index: 2000; display: none; align-items: center; justify-content: center; background: rgba(6,10,14,0.9); backdrop-filter: blur(6px); padding: 1.5rem; }
.avis-modal.show { display: flex; }
.avis-modal-img-wrap { max-width: min(92vw, 1200px); max-height: 88vh; overflow: hidden; border-radius: 14px; border: 1px solid rgba(255,255,255,0.16); box-shadow: 0 20px 70px rgba(0,0,0,0.55); }
.avis-modal-img-wrap img { display: block; max-width: min(92vw, 1200px); max-height: 88vh; object-fit: contain; transform-origin: center center; transition: transform 0.12s ease; }
.avis-modal-close { position: absolute; top: 18px; right: 22px; z-index: 3; width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.18); background: rgba(255,255,255,0.06); color: #fff; font-size: 1.5rem; line-height: 1; cursor: pointer; transition: all 0.2s ease; }
.avis-modal-close:hover { border-color: rgba(34, 197, 94,0.6); color: #86efac; }
.avis-zoom-bar { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 8px; background: rgba(15,20,26,0.85); border: 1px solid rgba(255,255,255,0.14); padding: 7px; border-radius: 14px; backdrop-filter: blur(8px); }
.avis-zoom-btn { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 10px; border-radius: 9px; border: 1px solid rgba(255,255,255,0.14); background: transparent; color: #fff; font-size: 1.05rem; font-weight: 700; cursor: pointer; transition: all 0.2s ease; }
.avis-zoom-btn:hover { border-color: rgba(34, 197, 94,0.6); color: #86efac; }
.avis-zoom-reset { font-size: 0.8rem; }
.avis-empty { grid-column: 1 / -1; color: rgba(255,255,255,0.6); text-align: center; padding: 48px 16px; border: 1px dashed rgba(255,255,255,0.18); border-radius: 16px; }

/* Page avis dédiée */
.avis-page { padding-top: 8.5rem; }
.avis-page-cta { text-align: center; margin-top: 2.6rem; }
.avis-page-cta p { color: var(--dim); margin-bottom: 1.1rem; font-size: 0.95rem; }

/* Responsive */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-right { min-height: 420px; margin-top: 6px; }
  .hero-device-stage { height: 420px; }
  .method-grid { grid-template-columns: 1fr 1fr; }
  .pp-hero { grid-template-columns: 1fr; }
  .pp-resell-card { grid-template-columns: 1fr; padding: 1.5rem; }
  .pp-resell-action { min-width: 0; width: 100%; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed; top: 62px; left: 1rem; right: 1rem;
    background: rgba(13,17,23,0.98); padding: 1.4rem 1.2rem;
    border-radius: 14px; backdrop-filter: blur(14px);
    border: 1px solid rgba(34, 197, 94,0.2);
    display: none; flex-direction: column; gap: 1.2rem; z-index: 999;
  }
  .nav-menu.open { display: flex; }
  .nav-menu ul { flex-direction: column; align-items: center; gap: 0.8rem; width: 100%; }
  .nav-menu ul li a { font-size: 1rem; display: block; }
  .header-actions { display: none; }
  .mobile-only { display: block; background: rgba(255,255,255,0.08); border: 1px solid rgba(34, 197, 94,0.3); border-radius: 8px; color: #fff; text-align: center; padding: 0.6rem; font-weight: 600; }
  .hero-right { min-height: 340px; }
  .hero-device-stage { height: 340px; }
  .pp-feat-grid { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .scroll-indicator { bottom: 0.5rem; }
}