@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Rajdhani:wght@400;500;600;700&family=Syne:wght@400;600;700;800&family=Space+Mono:wght@400;700&display=swap');

/* ─── CSS Variables ─────────────────────────────── */
:root {
  --bg-deep:     #050508;
  --bg-card:     #0d0d14;
  --bg-glass:    rgba(255,255,255,0.03);
  --accent-neon: #00f5d4;
  --accent-fire: #ff4d00;
  --accent-volt: #c8ff00;
  --accent-pur:  #8b5cf6;
  --txt-primary: #f0eefd;
  --txt-muted:   #7a7899;
  --border:      rgba(255,255,255,0.07);
  --glow-neon:   0 0 20px rgba(0,245,212,0.35), 0 0 60px rgba(0,245,212,0.12);
  --glow-fire:   0 0 20px rgba(255,77,0,0.4),   0 0 60px rgba(255,77,0,0.15);
}

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

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

body {
  background: var(--bg-deep);
  color: var(--txt-primary);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

::selection { background: var(--accent-neon); color: #000; }

/* ─── Custom Cursor ─────────────────────────────── */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--accent-neon);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform 0.1s, background 0.2s;
  box-shadow: var(--glow-neon);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid var(--accent-neon);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform 0.18s ease, width 0.2s, height 0.2s, opacity 0.2s;
  opacity: 0.55;
}
.cursor-ring.hovered { width: 56px; height: 56px; opacity: 0.9; border-color: var(--accent-fire); }

/* ─── Noise Overlay ─────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.022;
  pointer-events: none; z-index: 9000;
}

/* ─── Scrollbar ─────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--accent-neon); border-radius: 99px; }

/* ─── Navigation ─────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 clamp(20px, 5vw, 80px);
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
  background: rgba(5,5,8,0.75);
  transition: background 0.3s;
}

.nav-logo {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--accent-neon), var(--accent-pur));
  border-radius: 10px;
  display: grid; place-items: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px; color: #000;
  letter-spacing: 1px;
  box-shadow: var(--glow-neon);
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--txt-primary);
}
.nav-logo-text span { color: var(--accent-neon); }

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--txt-muted);
  text-decoration: none;
  position: relative;
  transition: color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1.5px; background: var(--accent-neon);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent-neon); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  padding: 9px 22px;
  background: transparent;
  border: 1.5px solid var(--accent-neon);
  color: var(--accent-neon) !important;
  border-radius: 4px;
  font-family: 'Space Mono', monospace !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.08em !important;
  transition: background 0.25s, box-shadow 0.25s, color 0.25s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--accent-neon) !important; color: #000 !important; box-shadow: var(--glow-neon); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span { width: 24px; height: 2px; background: var(--txt-primary); display: block; transition: 0.3s; }

/* Mobile nav */
@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(5,5,8,0.98); backdrop-filter: blur(20px);
    flex-direction: column; gap: 0;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    transition: transform 0.35s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px clamp(20px,5vw,80px); display: block; }
  .nav-cta { margin: 10px clamp(20px,5vw,80px); display: inline-block; }
}

/* ─── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px;
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  border-radius: 4px; transition: 0.3s;
  position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--accent-neon); color: #000; font-weight: 700;
}
.btn-primary:hover { box-shadow: var(--glow-neon); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--txt-primary);
}
.btn-outline:hover { border-color: var(--accent-neon); color: var(--accent-neon); box-shadow: var(--glow-neon); transform: translateY(-2px); }

/* ─── Section Utility ─────────────────────────────── */
.section { padding: clamp(80px, 12vw, 140px) clamp(20px, 7vw, 120px); }
.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--accent-neon); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before { content: '//'; opacity: 0.5; }
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800; line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.section-title .highlight { color: var(--accent-neon); }
.section-title .fire { color: var(--accent-fire); }
.section-sub {
  font-size: 1.1rem; color: var(--txt-muted);
  max-width: 560px; line-height: 1.75;
  font-weight: 500;
}

/* ─── HERO ───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 100px clamp(20px, 7vw, 120px) 60px;
  position: relative; overflow: hidden;
}

.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,245,212,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,245,212,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,245,212,0.12) 0%, transparent 70%);
  top: -100px; right: -150px;
  animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(139,92,246,0.14) 0%, transparent 70%);
  bottom: 0; left: -80px;
  animation: orbFloat 10s ease-in-out infinite reverse;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,77,0,0.1) 0%, transparent 70%);
  top: 40%; right: 25%;
  animation: orbFloat 7s ease-in-out infinite 2s;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-40px) scale(1.05); }
}

.hero-content { position: relative; z-index: 2; max-width: 800px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px;
  border: 1px solid rgba(0,245,212,0.3);
  border-radius: 99px;
  background: rgba(0,245,212,0.06);
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem; letter-spacing: 0.18em;
  color: var(--accent-neon);
  margin-bottom: 28px;
  animation: fadeInUp 0.6s ease both;
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent-neon);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 11vw, 9rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
  animation: fadeInUp 0.7s ease 0.1s both;
}
.hero-title .line1 { display: block; color: var(--txt-primary); }
.hero-title .line2 {
  display: block;
  background: linear-gradient(90deg, var(--accent-neon) 0%, var(--accent-pur) 60%, var(--accent-fire) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title .line3 { display: block; color: rgba(240,238,253,0.25); }

.hero-desc {
  font-size: 1.15rem; color: var(--txt-muted);
  max-width: 520px; line-height: 1.8; font-weight: 500;
  margin-bottom: 44px;
  animation: fadeInUp 0.7s ease 0.2s both;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.hero-stats {
  position: absolute; right: clamp(20px,7vw,120px); bottom: 60px;
  display: flex; gap: 40px;
  animation: fadeInUp 0.7s ease 0.4s both;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem; letter-spacing: 0.04em;
  background: linear-gradient(135deg, var(--accent-neon), var(--accent-pur));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
}
.hero-stat-label {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--txt-muted); margin-top: 4px;
  font-family: 'Space Mono', monospace;
}

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: fadeInUp 1s ease 0.8s both;
}
.hero-scroll-text {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.2em; color: var(--txt-muted);
}
.hero-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--accent-neon), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

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

/* ─── MARQUEE ─────────────────────────────────────── */
.marquee-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 18px 0;
  background: rgba(0,245,212,0.02);
}
.marquee-track {
  display: flex; gap: 0;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex; align-items: center; gap: 20px;
  padding: 0 40px;
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--txt-muted);
  white-space: nowrap;
}
.marquee-item .dot { color: var(--accent-neon); font-size: 1.2rem; line-height: 0; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── SERVICES ─────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 60px;
}
.service-card {
  background: var(--bg-card);
  padding: 44px 36px;
  position: relative; overflow: hidden;
  transition: background 0.3s;
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--accent-neon), var(--accent-pur));
  opacity: 0; transition: opacity 0.35s;
}
.service-card:hover { background: rgba(0,245,212,0.03); }
.service-card:hover::before { opacity: 0.04; }

.service-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem; line-height: 1;
  color: rgba(255,255,255,0.04);
  position: absolute; top: 20px; right: 24px;
  letter-spacing: -0.02em;
  transition: color 0.3s;
}
.service-card:hover .service-number { color: rgba(0,245,212,0.08); }

.service-icon {
  width: 52px; height: 52px;
  border: 1px solid var(--border);
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
  background: var(--bg-glass);
  transition: border-color 0.3s, box-shadow 0.3s;
  position: relative; z-index: 1;
}
.service-card:hover .service-icon { border-color: var(--accent-neon); box-shadow: var(--glow-neon); }
.service-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem; font-weight: 700;
  margin-bottom: 12px;
  position: relative; z-index: 1;
}
.service-desc {
  color: var(--txt-muted); font-size: 0.95rem;
  line-height: 1.7; font-weight: 500;
  position: relative; z-index: 1;
}
.service-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 20px; position: relative; z-index: 1;
}
.service-tag {
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.7rem; letter-spacing: 0.12em;
  font-family: 'Space Mono', monospace;
  color: var(--txt-muted);
  text-transform: uppercase;
}

/* ─── ABOUT / WHY ─────────────────────────────────── */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
@media (max-width: 900px) { .about-wrap { grid-template-columns: 1fr; gap: 50px; } }

.about-visual {
  position: relative; aspect-ratio: 1;
  max-width: 480px;
}
.about-hex-grid {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 8px; padding: 20px;
}
.about-hex {
  aspect-ratio: 1;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-card);
  display: grid; place-items: center;
  font-size: 1.3rem;
  transition: 0.3s;
  animation: hexPop 3s ease infinite;
}
.about-hex:nth-child(odd) { animation-delay: 0.5s; }
.about-hex:nth-child(3n) { animation-delay: 1s; }
.about-hex:nth-child(7) { border-color: var(--accent-neon); box-shadow: var(--glow-neon); background: rgba(0,245,212,0.06); }
.about-hex:nth-child(13) { border-color: var(--accent-fire); box-shadow: var(--glow-fire); background: rgba(255,77,0,0.06); }
.about-hex:nth-child(18) { border-color: var(--accent-pur); background: rgba(139,92,246,0.06); }
@keyframes hexPop {
  0%,100% { transform: scale(1); }
  50% { transform: scale(0.95); }
}
.about-center-badge {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 140px; height: 140px;
  background: var(--bg-deep);
  border: 1.5px solid var(--accent-neon);
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: var(--glow-neon), 0 0 0 20px rgba(0,245,212,0.04);
  z-index: 2;
}
.about-center-badge-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem; letter-spacing: 0.15em;
  text-align: center; line-height: 1.3;
  color: var(--accent-neon);
}

.feature-list { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.feature-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 20px 24px;
  border: 1px solid var(--border);
  border-radius: 10px; background: var(--bg-card);
  transition: border-color 0.3s, transform 0.3s;
}
.feature-item:hover { border-color: var(--accent-neon); transform: translateX(6px); }
.feature-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.feature-text h4 { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.feature-text p { font-size: 0.9rem; color: var(--txt-muted); font-weight: 500; }

/* ─── PUBLISHER SECTION ─────────────────────────────── */
.publisher-section {
  background: linear-gradient(135deg, rgba(0,245,212,0.04) 0%, rgba(139,92,246,0.04) 50%, rgba(255,77,0,0.04) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.publisher-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px; align-items: center;
}
@media (max-width: 900px) { .publisher-inner { grid-template-columns: 1fr; gap: 50px; } }

.pub-cards { display: flex; flex-direction: column; gap: 16px; }
.pub-card {
  padding: 24px 28px;
  border: 1px solid var(--border);
  border-radius: 12px; background: var(--bg-card);
  display: flex; align-items: center; gap: 20px;
  transition: 0.3s;
}
.pub-card:hover { border-color: var(--accent-neon); transform: translateX(8px); }
.pub-card-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 10px; display: grid; place-items: center;
  font-size: 1.3rem;
}
.pub-card-icon.neon { background: rgba(0,245,212,0.12); }
.pub-card-icon.fire { background: rgba(255,77,0,0.12); }
.pub-card-icon.pur { background: rgba(139,92,246,0.12); }
.pub-card h4 { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 3px; }
.pub-card p { font-size: 0.88rem; color: var(--txt-muted); font-weight: 500; }

/* ─── CTA SECTION ─────────────────────────────────── */
.cta-section {
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(0,245,212,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.95; letter-spacing: 0.02em;
  margin-bottom: 36px;
}
.cta-big span {
  background: linear-gradient(90deg, var(--accent-neon) 0%, var(--accent-pur) 50%, var(--accent-fire) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ─────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 48px clamp(20px, 7vw, 120px);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.footer-left { display: flex; align-items: center; gap: 16px; }
.footer-logo-icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--accent-neon), var(--accent-pur));
  border-radius: 8px; display: grid; place-items: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 14px; color: #000;
}
.footer-brand { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 0.95rem; }
.footer-brand span { color: var(--accent-neon); }
.footer-copy { font-size: 0.8rem; color: var(--txt-muted); font-family: 'Space Mono', monospace; }
.footer-links { display: flex; gap: 28px; }
.footer-links a {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem; letter-spacing: 0.1em;
  color: var(--txt-muted); text-decoration: none;
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--accent-neon); }

/* ─── PRIVACY POLICY PAGE ─────────────────────────── */
.pp-hero {
  padding: 140px clamp(20px, 7vw, 120px) 60px;
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.pp-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,245,212,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.pp-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,245,212,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,245,212,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 60% 80% at 20% 50%, black 20%, transparent 100%);
}
.pp-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px;
  border: 1px solid rgba(0,245,212,0.3);
  border-radius: 99px;
  background: rgba(0,245,212,0.06);
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem; letter-spacing: 0.18em;
  color: var(--accent-neon); margin-bottom: 20px;
  position: relative; z-index: 1;
}
.pp-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95; letter-spacing: 0.02em;
  margin-bottom: 20px;
  position: relative; z-index: 1;
}
.pp-title span { color: var(--accent-neon); }
.pp-meta {
  font-family: 'Space Mono', monospace;
  font-size: 0.78rem; color: var(--txt-muted); letter-spacing: 0.08em;
  position: relative; z-index: 1;
}

.pp-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 80px clamp(20px, 7vw, 60px);
}
.pp-section { margin-bottom: 60px; }
.pp-section-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem; font-weight: 800;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 12px;
}
.pp-section-title::before {
  content: '';
  width: 4px; height: 22px;
  background: var(--accent-neon);
  border-radius: 2px;
  box-shadow: var(--glow-neon);
}
.pp-text {
  color: var(--txt-muted); font-size: 1rem;
  line-height: 1.85; font-weight: 500;
  margin-bottom: 16px;
}
.pp-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.pp-list li {
  display: flex; gap: 12px; align-items: flex-start;
  color: var(--txt-muted); font-size: 1rem;
  line-height: 1.7; font-weight: 500;
}
.pp-list li::before {
  content: '→';
  color: var(--accent-neon); flex-shrink: 0;
  margin-top: 2px; font-family: 'Space Mono', monospace;
}
.pp-list li a {
  color: var(--accent-neon); text-decoration: none;
  border-bottom: 1px solid rgba(0,245,212,0.3);
  transition: border-color 0.2s;
}
.pp-list li a:hover { border-color: var(--accent-neon); }

.pp-contact-card {
  border: 1px solid var(--border);
  border-radius: 14px; background: var(--bg-card);
  padding: 32px 36px;
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap;
}
.pp-contact-icon { font-size: 2.2rem; }
.pp-contact-text h4 { font-family: 'Syne', sans-serif; font-weight: 700; margin-bottom: 6px; }
.pp-contact-text a {
  color: var(--accent-neon); text-decoration: none;
  font-family: 'Space Mono', monospace; font-size: 0.9rem;
  border-bottom: 1px solid rgba(0,245,212,0.3);
  transition: border-color 0.2s;
}
.pp-contact-text a:hover { border-color: var(--accent-neon); }

.pp-highlight-box {
  border: 1px solid rgba(0,245,212,0.2);
  border-left: 3px solid var(--accent-neon);
  border-radius: 0 10px 10px 0;
  background: rgba(0,245,212,0.04);
  padding: 20px 24px;
  margin: 20px 0;
  color: var(--txt-muted); font-size: 0.95rem; line-height: 1.75;
}

/* ─── Scroll Animations ─────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── Responsive Cleanup ─────────────────────────── */
@media (max-width: 600px) {
  .hero-stats { display: none; }
  .hero-scroll { display: none; }
  .cta-actions { flex-direction: column; align-items: center; }
  footer { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}
