/* Layout shell */
.pr-wrap { max-width: 1440px; margin: 0 auto; padding: 0 40px; }

/* Top rail */
.pr-rail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--hp-line);
  color: var(--hp-ink-3);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pr-rail .pulse { display: inline-flex; align-items: center; gap: 8px; }
.pr-rail .dot {
  width: 6px;
  height: 6px;
  background: var(--hp-lime);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--hp-lime);
  animation: prPulse 1.6s infinite;
}
@keyframes prPulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

/* Nav */
.pr-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--hp-line);
}
.pr-nav .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.02em;
}
.pr-nav .brand .mk {
  width: 22px;
  height: 22px;
  background: var(--hp-lime);
  position: relative;
}
.pr-nav .brand .mk::after {
  content: "";
  position: absolute;
  inset: 6px;
  background: var(--hp-bg);
}
.pr-nav .links {
  display: flex;
  gap: 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--hp-ink-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pr-nav .links a:hover { color: var(--hp-lime); }

/* Crosshair registration marks */
.pr-xhair {
  position: absolute;
  width: 14px;
  height: 14px;
  pointer-events: none;
  opacity: 0.6;
}
.pr-xhair::before, .pr-xhair::after { content: ""; position: absolute; background: var(--hp-ink-3); }
.pr-xhair::before { left: 0; right: 0; top: 50%; height: 1px; }
.pr-xhair::after  { top: 0; bottom: 0; left: 50%; width: 1px; }

/* Hero — split with device render */
.pr-hero {
  position: relative;
  padding: 60px 0 100px;
  border-bottom: 1px solid var(--hp-line);
}
.pr-hero .grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.pr-hero .left .coord { color: var(--hp-ink-3); margin-bottom: 28px; }
.pr-hero .left .coord b { color: var(--hp-lime); font-weight: 500; }
.pr-hero h1 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(56px, 6vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0;
  text-wrap: balance;
}
.pr-hero h1 .b { color: var(--hp-lime); font-weight: 600; }
.pr-hero .lede {
  margin-top: 28px;
  font-size: 18px;
  line-height: 1.5;
  color: var(--hp-ink-2);
  max-width: 46ch;
}
.pr-hero .lede b { color: var(--hp-ink); font-weight: 500; }
.pr-hero .row {
  margin-top: 40px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.pr-hero .stats {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--hp-line);
}
.pr-hero .stat .k {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hp-ink-3);
  margin-bottom: 8px;
}
.pr-hero .stat .v {
  font-family: var(--font-sans);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.pr-hero .stat .v b { color: var(--hp-lime); }

/* Device mock — iPhone with Swipeys */
.pr-device {
  position: relative;
  justify-self: end;
  width: 360px;
  height: 720px;
  background: linear-gradient(180deg, #1a1d22 0%, #0f1114 100%);
  border-radius: 48px;
  padding: 16px;
  box-shadow:
    0 0 0 2px #2a2d32,
    0 40px 80px -20px rgba(198,245,71,0.15),
    0 30px 60px -30px #000;
}
.pr-device .screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: #0a0b0e;
  border-radius: 36px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pr-device .notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 32px;
  background: #000;
  border-radius: 20px;
  z-index: 2;
}
.pr-device .statbar {
  padding: 18px 28px 8px;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}
.pr-device .app-area {
  flex: 1;
  padding: 44px 20px 12px;
  color: var(--hp-ink-2);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.6;
}
.pr-device .app-area .u {
  background: rgba(198,245,71,0.15);
  color: #fff;
  padding: 1px 4px;
}
.pr-device .kb-area {
  background: #0E1014;
  padding: 18px 14px 28px;
  border-top: 1px solid #1a1d22;
}

/* Crosshair frame around the hero device */
.pr-hero .right { position: relative; }
.pr-hero .right .xh-tl { top: -7px;    left: -7px; }
.pr-hero .right .xh-tr { top: -7px;    right: -7px; }
.pr-hero .right .xh-bl { bottom: -7px; left: -7px; }
.pr-hero .right .xh-br { bottom: -7px; right: -7px; }

/* Buttons */
.pr-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.01em;
  background: var(--hp-lime);
  color: #0A0B0E;
  border: 1px solid var(--hp-lime);
  border-radius: 0;
  cursor: pointer;
  transition: all .15s;
}
.pr-btn:hover { background: transparent; color: var(--hp-lime); }
.pr-btn .arr { font-family: var(--font-mono); font-size: 13px; }
.pr-btn.ghost {
  background: transparent;
  color: var(--hp-ink);
  border-color: var(--hp-line-2);
}
.pr-btn.ghost:hover {
  border-color: var(--hp-lime);
  color: var(--hp-lime);
}

/* Generic section */
.pr-sec {
  padding: 100px 0;
  border-bottom: 1px solid var(--hp-line);
  position: relative;
}
.pr-sech {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 56px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--hp-line);
}
.pr-sech .L .coord {
  color: var(--hp-lime);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.pr-sech .L h2 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(36px, 4.5vw, 64px);
  margin: 0;
  letter-spacing: -0.035em;
  line-height: 0.95;
  max-width: 22ch;
}
.pr-sech .L h2 .b { color: var(--hp-lime); }
.pr-sech .R {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hp-ink-3);
  text-align: right;
  line-height: 1.8;
}
.pr-sech .R b { color: var(--hp-ink); font-weight: 500; }

/* Feature panels */
.pr-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--hp-line);
  border: 1px solid var(--hp-line);
}
.pr-feat {
  background: var(--hp-panel);
  padding: 40px;
  position: relative;
  min-height: 320px;
}
.pr-feat .coord {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--hp-ink-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.pr-feat .coord b { color: var(--hp-lime); }
.pr-feat h3 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  line-height: 1.15;
}
.pr-feat p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--hp-ink-2);
  margin: 0 0 24px;
  max-width: 40ch;
}
.pr-feat .vis {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

/* Pricing */
.pr-price {
  padding: 120px 0;
  border-bottom: 1px solid var(--hp-line);
  position: relative;
  background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(198,245,71,0.06), transparent 70%);
}
.pr-price .inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.pr-price .coord {
  color: var(--hp-lime);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.pr-price .big {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(120px, 15vw, 220px);
  line-height: 0.9;
  letter-spacing: -0.055em;
}
.pr-price .big .cur { color: var(--hp-lime); font-size: 0.45em; vertical-align: super; margin-right: 6px; }
.pr-price .big .c   { color: var(--hp-ink-3); font-size: 0.45em; vertical-align: super; }
.pr-price .note {
  margin-top: 24px;
  font-size: 17px;
  color: var(--hp-ink-2);
  line-height: 1.5;
  max-width: 32ch;
}
.pr-price .specs {
  border: 1px solid var(--hp-line);
  background: rgba(255,255,255,0.01);
}
.pr-price .specs .hd {
  padding: 16px 24px;
  border-bottom: 1px solid var(--hp-line);
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hp-ink-3);
}
.pr-price .specs .hd b { color: var(--hp-lime); }
.pr-price .specs .r {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 14px 24px;
  border-bottom: 1px solid var(--hp-line);
  font-size: 14px;
}
.pr-price .specs .r:last-child { border-bottom: none; }
.pr-price .specs .r .k { color: var(--hp-ink-2); }
.pr-price .specs .r .v {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hp-ink);
}
.pr-price .specs .r .v.no  { color: var(--hp-ink-3); }
.pr-price .specs .r .v.yes { color: var(--hp-lime); }
.pr-price .cta-row {
  margin-top: 40px;
  display: flex;
  gap: 12px;
}

/* Close */
.pr-close {
  padding: 140px 0;
  position: relative;
  border-bottom: 1px solid var(--hp-line);
  text-align: center;
}
.pr-close h2 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(72px, 10vw, 180px);
  line-height: 0.92;
  letter-spacing: -0.055em;
  margin: 0;
}
.pr-close h2 .b { color: var(--hp-lime); }
.pr-close .row {
  margin-top: 44px;
  display: flex;
  gap: 12px;
  justify-content: center;
}
.pr-close .fp {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--hp-line);
  text-align: left;
}
.pr-close .fp div {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hp-ink-3);
  line-height: 1.8;
}
.pr-close .fp div b { color: var(--hp-ink); font-weight: 500; }

/* Footer */
footer.pr-foot {
  padding: 32px 0 52px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hp-ink-3);
  display: flex;
  justify-content: space-between;
}
footer.pr-foot a { color: var(--hp-ink-3); }
footer.pr-foot a:hover { color: var(--hp-lime); }
footer.pr-foot .links { display: flex; gap: 20px; }
