@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500;600&display=swap');

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: #fff;
  color: #000;
  overflow-x: hidden;
}

/* ================================
   SCROLLBAR
================================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #000; border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: #333; }
* { scrollbar-width: thin; scrollbar-color: #000 #f1f5f9; }

/* ================================
   HEADER
================================ */
.header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 74px;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-top: none;
    border-bottom-right-radius: 24px;
    border-bottom-left-radius: 24px;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.08),
        0 1px 0 rgba(0, 0, 0, 0.04);
    z-index: 10000;
    transition: all 0.3s ease;
}

.logo img {
    height: 52px;
    margin-top: 4px;
    object-fit: contain;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.logo img:hover { opacity: 0.55; }

/* ================================
   NAV
================================ */
.navBar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navBar ul.all {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navBar li { list-style: none; }

.navBar li a {
    color: #000;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    transition: opacity 0.2s ease;
}

.navBar li a:hover { opacity: 0.45; }

.navBar li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #000;
    transition: width 0.3s ease;
}

.navBar li a:hover::after { width: 100%; }

/* ================================
   DROPDOWN
================================ */
.dropdown { position: relative; }

.dropdown-menu {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 82%;
    max-height: calc(100vh - 120px);
    background: rgb(255, 255, 255);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 20px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    display: none;
    padding: 36px 56px;
    z-index: 9999;
    overflow-y: auto;
}

.dropdown-menu li {
    list-style: none;
    padding: 5px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.dropdown-menu li:last-child { border-bottom: none; }

.dropdown-menu li a {
    display: block;
    padding: 7px 0;
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-menu li a::after { display: none; }

.dropdown-menu li a:hover {
    color: #000;
    padding-left: 10px;
    opacity: 1;
}

.dropdown.open .dropdown-menu { display: block; }

.dropdown > a i {
    transition: transform 0.3s ease;
    font-size: 9px;
    margin-left: 4px;
    opacity: 0.3;
}

.dropdown.open > a i { transform: rotate(180deg); }

/* ================================
   BUTTONS
================================ */
.signup-login {
    display: flex;
    gap: 8px;
    align-items: center;
}

.signup-login a {
    padding: 8px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.25s ease;
    width: auto;
    text-decoration: none;
}

#login {
    background: transparent;
    border: 1.5px solid rgba(0, 0, 0, 0.2);
    color: #000;
}

#login:hover {
    background: #000;
    border-color: #000;
    color: #fff;
}

#signUp {
    background: #000;
    color: #fff;
}

#signUp:hover {
    background: #222;
    transform: translateY(-1px);
}

/* ================================
   HERO
================================ */
.pp-hero {
  padding-top: 68px;
  min-height: 42vh;
  background: #000;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}

.pp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: ppGrid 14s linear infinite;
}

@keyframes ppGrid {
  from { background-position: 0 0; }
  to   { background-position: 60px 60px; }
}

.pp-hero-content {
  position: relative;
  z-index: 1;
  padding: 50px 10%;
}

.pp-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.pp-hero-tag span {
  width: 24px;
  height: 1px;
  background: rgba(255,255,255,0.3);
  display: inline-block;
}

.pp-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 86px);
  line-height: 0.95;
  color: #fff;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(24px);
  animation: ppIn 0.9s cubic-bezier(0.16,1,0.3,1) 0.1s forwards;
}

.pp-hero h1 em {
  font-style: normal;
  color: rgba(255,255,255,0.28);
}

.pp-hero p {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
  opacity: 0;
  animation: ppIn 0.9s cubic-bezier(0.16,1,0.3,1) 0.25s forwards;
}

@keyframes ppIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ================================
   CONTENT CONTAINER
================================ */
.pp-container {
  max-width: 860px;
  margin: 60px auto 80px;
  padding: 0 40px;
}

.pp-intro {
  font-size: 15px;
  color: rgba(0,0,0,0.55);
  line-height: 1.8;
  font-weight: 300;
  padding-bottom: 10px;
}

.pp-outro{
  border-bottom: 1px solid rgba(0,0,0,0.07);
  margin-bottom: 5px;
}

.pp-emailboldbold{
  font-weight: bold;
}

/* ================================
   SECTION BLOCKS
================================ */
.pp-section {
  display: flex;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.pp-section.pp-visible {
  opacity: 1;
  transform: translateY(0);
}

.pp-section-icon {
  width: 44px;
  height: 44px;
  background: #000;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 17px;
  flex-shrink: 0;
  margin-top: 3px;
}

.pp-section-body { flex: 1; }

.pp-section-body h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #000;
  margin-bottom: 14px;
}

.pp-section-body p {
  font-size: 14px;
  color: rgba(0,0,0,0.5);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 12px;
}

.pp-section-body p:last-child { margin-bottom: 0; }

.pp-section-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pp-section-body ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(0,0,0,0.5);
  font-weight: 300;
}

.pp-section-body ul li i {
  color: #000;
  font-size: 13px;
  flex-shrink: 0;
}

/* ================================
   FOOTER
================================ */
.footer {
    padding-top: 60px;
    background: #fff;
    border-top: 1px solid #11111111;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 80px 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.footer-brand img {
    width: 120px;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 13px;
    color: #000;
    line-height: 1.7;
}

.footer-links h3,
.footer-contact h3 {
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 18px;
    color: rgb(0, 0, 0);
}

.footer-links a {
    display: block;
    text-decoration: none;
    color: #000;
    margin-bottom: 10px;
    font-size: 13px;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: #000;
    transform: translateX(4px);
}

.footer-contact p {
    font-size: 13px;
    color: #000;
    margin-bottom: 10px;
}

.footer-contact i {
    margin-right: 8px;
    color: #000;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.075);
    font-size: 12px;
    color: #000;
    letter-spacing: 0.03em;
}

.footer-bottom a {
    text-decoration: none;
    color: #111;
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: #272727;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.24);
    border: 1px solid rgba(0, 0, 0, 0.123);
    color: #000;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: #2e2e2e;
    background: #999;
    border-color: #ddd;
    transform: translateY(-2px);
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .pp-container { padding: 0 24px; margin: 40px auto 60px; }
  .pp-section { flex-direction: column; gap: 16px; }
  .footer-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .footer-container { grid-template-columns: 1fr; }
  .pp-header { left: 0; width: 100%; border-radius: 0; }
}