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

:root {
  --void:    #050507;
  --ink:     #0c0c10;
  --panel:   #111116;
  --surface: #18181f;
  --border:  rgba(255,255,255,.07);
  --cyan:    #00e5c8;
  --cyan-dim: rgba(0,229,200,.12);
  --white:   #ffffff;
}

html { scroll-behavior: smooth; }

body {
  background: var(--void);
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px; height: 72px;
  border-bottom: 1px solid transparent;
  transition: background .4s, border-color .4s;
}
nav.stuck {
  background: rgba(5,5,7,.92);
  border-color: var(--border);
  backdrop-filter: blur(16px);
}
.nav-wordmark {
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; color: var(--white); text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.nav-wordmark .nm-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}
.nav-center { display: flex; gap: 40px; list-style: none; }
.nav-center a {
  font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--white); text-decoration: none; transition: color .2s;
}
.nav-center a:hover { color: var(--cyan); }
.nav-end { display: flex; align-items: center; gap: 20px; }
.nav-tel {
  font-family: 'DM Mono', monospace; font-size: 12px;
  color: var(--white); text-decoration: none; transition: color .2s;
}
.nav-tel:hover { color: var(--cyan); }
.nav-btn {
  border: 1px solid var(--cyan); color: var(--cyan);
  padding: 9px 22px; font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; transition: background .2s, color .2s;
  position: relative; overflow: hidden;
}
.nav-btn::before {
  content: ''; position: absolute; inset: 0;
  background: var(--cyan); transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease; z-index: -1;
}
.nav-btn:hover { color: var(--void); }
.nav-btn:hover::before { transform: scaleX(1); }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--white);
  flex-shrink: 0;
}
.nav-toggle:focus-visible { outline: 2px solid var(--cyan); outline-offset: 4px; }
.nav-toggle-bar { display: block; width: 22px; height: 2px; background: currentColor; transition: transform 0.25s ease, opacity 0.2s ease; }
.nav-backdrop { display: none; }

.pp-hero {
  padding: 120px 56px 48px;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse 70% 60% at 20% 20%, rgba(0,229,200,.06) 0%, transparent 55%),
    var(--void);
}
.pp-hero__inner { max-width: 720px; }
.pp-eyebrow {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--cyan);
  margin-bottom: 16px; display: flex; align-items: center; gap: 14px;
}
.pp-eyebrow::before { content: '//'; opacity: .5; }
.pp-hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800; letter-spacing: -.04em; line-height: .98;
  color: var(--white); margin-bottom: 16px;
}
.pp-hero h1 .hl { color: var(--cyan); }
.pp-updated {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.pp-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 56px 56px 80px;
}
.pp-content section + section { margin-top: 40px; }
.pp-content h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700; letter-spacing: -.02em;
  color: var(--white); margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,229,200,.15);
}
.pp-content p,
.pp-content li {
  font-family: 'Source Sans 3', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 18px; line-height: 1.8; font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}
.pp-content p + p { margin-top: 14px; }
.pp-content ul {
  list-style: none;
  margin-top: 14px;
  display: flex; flex-direction: column; gap: 10px;
}
.pp-content li {
  padding-left: 20px; position: relative;
}
.pp-content li::before {
  content: '';
  position: absolute; left: 0; top: .6em;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan); opacity: .7;
}
.pp-content a {
  color: var(--cyan); text-decoration: none;
  transition: opacity .2s;
}
.pp-content a:hover { opacity: .85; }

footer { background: var(--panel); border-top: 1px solid var(--border); padding: 56px 56px 0; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--border); }
.footer-brand-word {
  font-family: 'Inter', sans-serif; font-size: 18px; font-weight: 800;
  letter-spacing: .04em; color: var(--white); text-transform: uppercase; margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.footer-brand-word .fd { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); }
footer .f-tag { font-size: 13px; color: rgba(255, 255, 255, 0.9); line-height: 1.7; max-width: 220px; font-weight: 400; }
.f-wbe { margin-top: 20px; font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--cyan); border: 1px solid rgba(0,229,200,.2); display: inline-block; padding: 6px 12px; text-decoration: none; transition: border-color .2s, background .2s; }
.f-wbe:hover { border-color: rgba(0,229,200,.45); background: rgba(0,229,200,.08); }
footer h5 { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: rgba(255, 255, 255, 0.9); margin-bottom: 20px; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
footer ul a { font-size: 13px; color: rgba(255, 255, 255, 0.9); text-decoration: none; transition: color .2s; }
footer ul a:hover { color: var(--cyan); }
.footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-family: 'DM Mono', monospace; font-size: 10px; color: rgba(255, 255, 255, 0.9); letter-spacing: .08em; }
.footer-bottom a { color: rgba(255, 255, 255, 0.9); text-decoration: none; transition: color .2s; }
.footer-bottom a:hover { color: var(--cyan); }

@media (max-width: 768px) {
  nav { padding: 0 20px; min-height: 64px; height: auto; padding-top: 10px; padding-bottom: 10px; }
  .nav-wordmark { order: 1; z-index: 202; font-size: 12px; }
  .nav-end { order: 2; margin-left: auto; z-index: 202; gap: 10px; }
  .nav-tel { font-size: 11px; }
  .nav-btn { padding: 8px 14px; font-size: 10px; }
  .nav-toggle { display: flex; order: 3; margin-left: 6px; z-index: 202; }
  .nav-center {
    position: fixed; left: 0; right: 0; top: 72px; bottom: 0; z-index: 199;
    flex-direction: column; gap: 0; margin: 0; padding: 8px 0 32px;
    background: rgba(17, 17, 22, 0.98); border-top: 1px solid var(--border);
    overflow-y: auto; transform: translateX(100%); visibility: hidden;
    transition: transform 0.3s ease, visibility 0.3s;
  }
  nav.nav-open .nav-center { transform: translateX(0); visibility: visible; }
  .nav-center li { border-bottom: 1px solid var(--border); }
  .nav-center a { display: block; padding: 16px 24px; font-size: 12px; }
  nav.nav-open .nav-backdrop { display: block; position: fixed; inset: 0; z-index: 198; background: rgba(0,0,0,.55); cursor: pointer; }
  nav.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  nav.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
  nav.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  body.nav-menu-open { overflow: hidden; }
  .pp-hero { padding: 100px 24px 40px; }
  .pp-content { padding: 40px 24px 56px; }
  footer { padding: 48px 24px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .pp-hero { padding: 96px 16px 32px; }
  .pp-content { padding: 32px 16px 48px; }
  footer { padding: 40px 16px 0; }
}
