* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background: radial-gradient(circle at top, #1b2848 0%, #050814 45%, #000000 100%);
  color: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* LOGO PP CUSTOM */
.pp-logo {
  font-weight: 800;
  font-size: 18px;
  display: flex;
  gap: 2px;
}

.pp-white {
  color: #ffffff;
}

.pp-blue {
  color: #0059FF;
}

/* Black background for PP icon */
.logo-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 18px rgba(0, 255, 179, 0.6);
}

/* PRO BLUE GRADIENT */
.pro-gradient {
  background: linear-gradient(135deg, #0059FF, #00C6FF);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 800;
}

/* HEADER */
header {
  padding: 18px 7vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: linear-gradient(
    to bottom,
    rgba(5, 8, 20, 0.9),
    rgba(5, 8, 20, 0.4),
    transparent
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-text-title {
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 16px;
}

.logo-text-sub {
  font-size: 11px;
  opacity: 0.7;
}

.header-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn {
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #00ffb3, #00b3ff);
  color: #050814;
  box-shadow: 0 0 18px rgba(0, 255, 179, 0.5);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 0 24px rgba(0, 255, 179, 0.7);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* HERO */
.hero {
  padding: 40px 7vw 60px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 28px;
  }
}

.hero-left {
  position: relative;
  padding-right: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 255, 179, 0.08);
  border: 1px solid rgba(0, 255, 179, 0.35);
  font-size: 11px;
  margin-bottom: 18px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #00ffb3;
  box-shadow: 0 0 12px rgba(0, 255, 179, 0.9);
}

.hero-title {
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 14px;
}

.hero-title span.gradient {
  background: linear-gradient(135deg, #00ffb3, #00b3ff, #7b3fff);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 15px;
  opacity: 0.8;
  max-width: 480px;
  line-height: 1.5;
  margin-bottom: 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-note {
  font-size: 11px;
  opacity: 0.6;
  max-width: 420px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
}

.stat {
  min-width: 120px;
}

.stat-label {
  font-size: 11px;
  opacity: 0.6;
  margin-bottom: 4px;
}

.stat-value {
  font-size: 18px;
  font-weight: 700;
}

.stat-value span.green {
  color: #00ffb3;
}

/* REAL APP SCREEN */
.app-screen {
  width: 280px;
  max-width: 80vw;
  border-radius: 28px;
  box-shadow:
    0 0 40px rgba(0, 179, 255, 0.35),
    0 0 20px rgba(0, 255, 179, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* FEATURES */
.section {
  padding: 0 7vw 60px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 26px;
}

@media (max-width: 800px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

.section-title {
  font-size: 22px;
  font-weight: 700;
}

.section-sub {
  font-size: 13px;
  opacity: 0.7;
  max-width: 420px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 1000px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  border-radius: 16px;
  padding: 14px 14px 16px;
  position: relative;
  overflow: hidden;
  color: #050814;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.35), transparent 60%);
  opacity: 0.7;
  pointer-events: none;
}

.feature-inner {
  position: relative;
  z-index: 1;
}

.feature-label {
  font-size: 11px;
  opacity: 0.8;
}

.feature-title {
  font-size: 16px;
  font-weight: 700;
  margin-top: 2px;
}

.feature-desc {
  font-size: 12px;
  margin-top: 4px;
  opacity: 0.85;
}

.feature-btn {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
}

.feature-btn span.icon {
  font-size: 14px;
}

.feature-tag {
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-size: 10px;
  opacity: 0.7;
}

.feature-card.green {
  background: linear-gradient(135deg, #00ffb3, #00b36b);
}

.feature-card.red {
  background: linear-gradient(135deg, #ff3f6b, #ff7b3f);
}

.feature-card.blue {
  background: linear-gradient(135deg, #00b3ff, #3f7bff);
}

.feature-card.purple {
  background: linear-gradient(135deg, #7b3fff, #b33fff);
}

/* CTA SECTION */
.cta {
  padding: 0 7vw 50px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
}

@media (max-width: 900px) {
  .cta {
    grid-template-columns: 1fr;
  }
}

.cta-box {
  border-radius: 18px;
  padding: 18px 18px 20px;
  background: radial-gradient(circle at top left, #1b2848, #050814);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.cta-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.cta-sub {
  font-size: 13px;
  opacity: 0.75;
  max-width: 420px;
  margin-bottom: 16px;
}

.cta-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  margin-bottom: 16px;
}

.cta-list-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #00ffb3;
  box-shadow: 0 0 10px rgba(0, 255, 179, 0.9);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cta-right {
  font-size: 12px;
  opacity: 0.7;
}

.cta-right strong {
  color: #00ffb3;
}

/* FOOTER */
footer {
  padding: 16px 7vw 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
  opacity: 0.6;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

footer a {
  opacity: 0.8;
}

footer a:hover {
  opacity: 1;
}
