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

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #08080d;
  color: #e4e4ed;
  line-height: 1.6;
  font-size: clamp(0.9375rem, 0.9rem + 0.25vw, 1.0625rem);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

ul, ol {
  list-style: none;
}

/* ── HEADER / NAV ── */
.pp-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8, 8, 13, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pp-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.pp-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  color: #ffffff;
  flex-shrink: 0;
}

.pp-logo__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.pp-logo__accent {
  color: #e040fb;
}

.pp-nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.pp-nav__link {
  padding: 0.5rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #8a8a9a;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.pp-nav__link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.pp-nav__cta {
  margin-left: 0.75rem;
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #08080d;
  background: #00f0ff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

.pp-nav__cta:hover {
  background: #33f5ff;
  transform: translateY(-1px);
}

.pp-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.pp-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #e4e4ed;
  border-radius: 2px;
  transition: background 0.2s ease;
}

.pp-nav__hamburger:hover span {
  background: #ffffff;
}

/* ── HERO ── */
.pp-hero {
  position: relative;
  padding: clamp(5rem, 12vw, 9rem) clamp(1rem, 3vw, 2.5rem) clamp(4rem, 8vw, 7rem);
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
}

.pp-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(224, 64, 251, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224, 64, 251, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, black 20%, transparent 70%);
  pointer-events: none;
}

.pp-hero__glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(224, 64, 251, 0.08) 0%, rgba(0, 240, 255, 0.03) 40%, transparent 70%);
  pointer-events: none;
}

.pp-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #00f0ff;
  margin-bottom: 1.5rem;
  position: relative;
}

.pp-hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #00f0ff;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.pp-hero__title {
  font-size: clamp(2.75rem, 6vw + 0.5rem, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: #ffffff;
  max-width: 20ch;
  margin-bottom: 1.5rem;
  position: relative;
}

.pp-hero__title-accent {
  background: linear-gradient(135deg, #e040fb 0%, #00f0ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pp-hero__subtitle {
  font-size: clamp(1.0625rem, 1.2vw + 0.3rem, 1.3125rem);
  color: #8a8a9a;
  max-width: 54ch;
  line-height: 1.65;
  margin-bottom: 2.5rem;
  position: relative;
}

.pp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  position: relative;
}

/* ── BUTTONS ── */
.pp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8125rem 1.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-align: center;
}

.pp-btn--primary {
  background: #e040fb;
  color: #ffffff;
}

.pp-btn--primary:hover {
  background: #e855fc;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(224, 64, 251, 0.3);
}

.pp-btn--secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #e4e4ed;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pp-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

/* ── SECTION WRAPPER ── */
.pp-section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 3vw, 2.5rem);
  max-width: 1280px;
  margin: 0 auto;
}

.pp-section--bordered {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.pp-section__header {
  max-width: 65ch;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.pp-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e040fb;
  margin-bottom: 1rem;
}

.pp-section__eyebrow::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 1px;
  background: #e040fb;
}

.pp-section__heading {
  font-size: clamp(1.75rem, 3.5vw + 0.25rem, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 1rem;
}

.pp-section__lead {
  font-size: clamp(1rem, 1.1vw + 0.2rem, 1.1875rem);
  color: #8a8a9a;
  line-height: 1.7;
  max-width: 60ch;
}

/* ── BODY TEXT ── */
.pp-body {
  color: #c4c4d0;
  line-height: 1.75;
  max-width: 65ch;
}

/* ── CARD GRID ── */
.pp-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 1.25rem;
}

.pp-card-grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
}

/* ── CARD ── */
.pp-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.2s ease;
  position: relative;
  overflow: hidden;
}

.pp-card:hover {
  border-color: rgba(224, 64, 251, 0.25);
  background: rgba(255, 255, 255, 0.035);
  transform: translateY(-3px);
}

.pp-card__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.15);
  border-radius: 10px;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.pp-card__title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.625rem;
  letter-spacing: -0.01em;
}

.pp-card__desc {
  font-size: 0.875rem;
  color: #8a8a9a;
  line-height: 1.65;
}

.pp-card__tag {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #00f0ff;
  background: rgba(0, 240, 255, 0.08);
  padding: 0.25rem 0.625rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

/* ── STAT BAR ── */
.pp-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.25rem;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: clamp(3rem, 5vw, 4rem);
}

.pp-stat {
  text-align: center;
}

.pp-stat__value {
  font-family: 'Space Mono', monospace;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #00f0ff;
  line-height: 1.2;
  margin-bottom: 0.375rem;
}

.pp-stat__label {
  font-size: 0.8125rem;
  color: #6a6a78;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ── DATA TABLE ── */
.pp-data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.pp-data-table th {
  text-align: left;
  padding: 0.875rem 1rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6a6a78;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pp-data-table td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: #c4c4d0;
}

.pp-data-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.pp-change {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 0.8125rem;
}

.pp-change--up {
  color: #00e676;
}

.pp-change--down {
  color: #ff5252;
}

/* ── FOOTER ── */
.pp-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.3);
}

.pp-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1rem, 3vw, 2.5rem);
}

.pp-footer__top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
  margin-bottom: 3rem;
}

.pp-footer__brand-desc {
  font-size: 0.875rem;
  color: #6a6a78;
  line-height: 1.65;
  max-width: 35ch;
  margin-top: 1rem;
}

.pp-footer__col-title {
  font-family: 'Space Mono', monospace;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6a6a78;
  margin-bottom: 1rem;
}

.pp-footer__link {
  display: block;
  font-size: 0.875rem;
  color: #8a8a9a;
  padding: 0.3rem 0;
  transition: color 0.2s ease;
}

.pp-footer__link:hover {
  color: #00f0ff;
}

.pp-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  gap: 1rem;
}

.pp-footer__copy {
  font-size: 0.75rem;
  color: #4a4a56;
}

.pp-footer__bottom-links {
  display: flex;
  gap: 1.5rem;
}

.pp-footer__bottom-link {
  font-size: 0.75rem;
  color: #4a4a56;
  transition: color 0.2s ease;
}

.pp-footer__bottom-link:hover {
  color: #8a8a9a;
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .pp-nav__list {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(8, 8, 13, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 1rem clamp(1rem, 3vw, 2.5rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    gap: 0;
  }

  .pp-nav__list.is-open {
    display: flex;
  }

  .pp-nav__link {
    padding: 0.875rem 0;
    width: 100%;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }

  .pp-nav__cta {
    margin-left: 0;
    margin-top: 1rem;
    text-align: center;
    width: 100%;
    display: block;
    padding: 0.875rem 1.25rem;
  }

  .pp-nav__hamburger {
    display: flex;
  }

  .pp-footer__top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .pp-footer__top {
    grid-template-columns: 1fr;
  }

  .pp-hero__actions {
    flex-direction: column;
  }

  .pp-btn {
    width: 100%;
  }

  .pp-stats {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── UTILITY ── */
.pp-text-center {
  text-align: center;
}

.pp-mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.pp-img {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}
/* universal guards (not a template) */
*{box-sizing:border-box}img,svg,video{max-width:100%;height:auto}h1,h2,h3,h4,p,li,a,span,blockquote{overflow-wrap:break-word;word-break:normal}html{-webkit-text-size-adjust:100%}body{margin:0}
