@font-face {
  font-family: 'Neue Montreal Regular';
  src: url('assets/NeueMontreal-Regular.woff2') format('woff2');
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Inter';
  src: url('assets/Inter-400.woff2') format('woff2');
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Inter';
  src: url('assets/Inter-500.woff2') format('woff2');
  font-display: swap;
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Courier Prime';
  src: url('assets/CourierPrime-latin.woff2') format('woff2');
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}

:root {
  --accent: #FF2E88;
  --accent-2: #FF7A2E;
  --ink: #111;
  --gray-1: #777;
  --gray-2: #999;
  --line: #f1f1f2;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: #050505;
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

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

/* ---------- Top-right X link ---------- */
.hpi-x {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.75);
  display: grid;
  place-items: center;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}
.hpi-x:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent;
  color: #fff;
  transform: translateY(-1px);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #050505;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
  z-index: 0;
  filter: hue-rotate(70deg) saturate(1.3);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.55) 55%, rgba(0,0,0,.85) 100%);
  z-index: 1;
}

.hero-glow {
  position: absolute;
  z-index: 1;
  width: 900px;
  height: 900px;
  right: -320px;
  top: -260px;
  background: radial-gradient(circle at 35% 35%, rgba(255,46,136,.32), rgba(255,122,46,.16) 45%, transparent 70%);
  filter: blur(70px);
  pointer-events: none;
}

.hero-nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
}
.hero-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.03em;
}
.hero-nav img { width: 30px; height: 30px; }

.hero-body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px 0;
}

.hero-kicker {
  font-family: 'Courier Prime', monospace;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 18px;
  opacity: 0;
  animation: rise .7s ease forwards;
  animation-delay: .05s;
}

.hero-title {
  font-family: 'Neue Montreal Regular', 'Inter', sans-serif;
  font-size: clamp(44px, 8vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0;
  opacity: 0;
  animation: rise .8s ease forwards;
  animation-delay: .15s;
}
.hero-title span { color: var(--accent); }

.hero-sub {
  max-width: 640px;
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.45;
  color: rgba(255,255,255,.85);
  margin: 22px 0 0;
  letter-spacing: -0.01em;
  opacity: 0;
  animation: rise .8s ease forwards;
  animation-delay: .3s;
}

.hero-fine {
  max-width: 560px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.5);
  margin: 16px 0 0;
  opacity: 0;
  animation: rise .8s ease forwards;
  animation-delay: .4s;
}

.hero-cta {
  margin-top: 34px;
  opacity: 0;
  animation: rise .8s ease forwards;
  animation-delay: .5s;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 999px;
  letter-spacing: -0.01em;
  transition: transform .2s ease, filter .2s ease;
}
.btn-primary:hover { filter: brightness(1.08); transform: translateY(-2px); }

.hero-marks {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  padding: 40px 24px 48px;
  opacity: 0;
  animation: rise .8s ease forwards;
  animation-delay: .65s;
}

.hpi-mark {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,.7);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.hpi-mark i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

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

/* ---------- About ---------- */
.pp-about {
  position: relative;
  width: 100%;
  background: #fff;
  color: #111;
  padding: 100px 24px 110px;
  overflow: hidden;
}
.pp-about * { box-sizing: border-box; }
.pp-glow {
  position: absolute;
  z-index: 0;
  top: -140px;
  right: -140px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(255,46,136,.10), rgba(255,122,46,.08) 50%, transparent 75%);
  filter: blur(60px);
  pointer-events: none;
}
.pp-in { position: relative; z-index: 1; width: 100%; max-width: 992px; margin: 0 auto; }
.pp-top { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }

.pp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-2);
  margin-bottom: 18px;
}
.pp-kicker i { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }

.pp-h {
  font-family: 'Neue Montreal Regular', 'Inter', sans-serif;
  font-size: 56px;
  line-height: 54px;
  letter-spacing: -0.03em;
  font-weight: 500;
  margin: 0;
}

.pp-lead {
  font-size: 18px;
  line-height: 28px;
  color: #111;
  margin: 4px 0 0;
  letter-spacing: -0.01em;
}
.pp-lead span { color: var(--gray-2); }

.pp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 72px;
  border-top: 1px solid var(--line);
}
.pp-step { padding: 28px 28px 0 0; }
.pp-step + .pp-step { padding-left: 28px; border-left: 1px solid var(--line); }
.pp-n { font-size: 14px; color: var(--accent); }
.pp-step h3 {
  font-size: 22px;
  line-height: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 14px 0 10px;
}
.pp-step p { font-size: 16px; line-height: 24px; color: var(--gray-1); margin: 0; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Footer ---------- */
.pp-footer {
  background: #fff;
  color: #111;
  border-top: 1px solid var(--line);
  padding: 28px 24px 40px;
  text-align: center;
}
.pp-footer .line1 {
  font-size: 14px;
  color: var(--gray-1);
  margin: 0 0 6px;
}
.pp-footer .line2 {
  font-size: 13px;
  color: var(--gray-2);
  margin: 0;
}

@media (max-width: 809px) {
  .pp-about { padding: 80px 20px; }
  .pp-top { grid-template-columns: 1fr; gap: 20px; }
  .pp-h { font-size: 40px; line-height: 40px; }
  .pp-steps { grid-template-columns: 1fr; margin-top: 40px; }
  .pp-step, .pp-step + .pp-step { padding: 24px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .hero-marks { gap: 16px 22px; }
}
