/* =========================================================
   PIQUEL · Waitlist Landing — page-specific styles
   Built on top of assets/piquel-tokens.css
   ========================================================= */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--pq-black);
  color: var(--fg);
  font: var(--text-body);
  overflow-x: hidden;
}

/* Selection */
::selection { background: var(--pq-lime); color: #000; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: #1C1C1C; border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: #262626; }

/* =========================================================
   Layout
   ========================================================= */
.pq-page {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}
.pq-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) {
  .pq-container { padding: 0 20px; }
}

/* =========================================================
   Section
   ========================================================= */
.pq-section {
  position: relative;
  padding: 120px 0;
}
.pq-section.tight { padding: 80px 0; }
.pq-section.light {
  background: var(--pq-white);
  color: var(--pq-black);
}
@media (max-width: 720px) {
  .pq-section { padding: 72px 0; }
  .pq-section.tight { padding: 56px 0; }
}

.pq-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.pq-eyebrow-row .dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--pq-lime);
}
.pq-eyebrow-row .num {
  font: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--fg-muted);
}
.pq-eyebrow-row .label {
  font: var(--text-eyebrow);
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--fg-2);
}

.pq-section.light .pq-eyebrow-row .label { color: #1a1a1a; }
.pq-section.light .pq-eyebrow-row .num   { color: #888; }

/* =========================================================
   Typography utilities
   ========================================================= */
.pq-display {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.94;
  margin: 0;
  font-size: clamp(40px, 6vw, 88px);
}
.pq-display-xl {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  line-height: 0.9;
  margin: 0;
  font-size: clamp(56px, 9vw, 144px);
}
.pq-display-sm {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.0;
  margin: 0;
  font-size: clamp(28px, 3.5vw, 48px);
}
.pq-lead {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  color: var(--fg-2);
  max-width: 56ch;
  margin: 0;
}
.pq-section.light .pq-lead { color: #555; }

.pq-lime-text { color: var(--pq-lime); }

/* =========================================================
   Buttons
   ========================================================= */
.pq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 26px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  background: transparent;
  color: inherit;
  transition: transform .2s var(--ease-out), filter .2s var(--ease-out), background .2s var(--ease-out), color .2s var(--ease-out);
  white-space: nowrap;
  text-decoration: none;
}
.pq-btn:active { transform: scale(.97); }
.pq-btn--primary {
  background: var(--pq-lime);
  color: #000;
}
.pq-btn--primary:hover { filter: brightness(1.05); box-shadow: 0 0 36px rgba(200,255,0,.35); }
.pq-btn--ghost {
  border-color: rgba(255,255,255,.18);
  color: #fff;
}
.pq-btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.04); }
.pq-section.light .pq-btn--ghost {
  border-color: rgba(0,0,0,.18);
  color: #000;
}
.pq-section.light .pq-btn--ghost:hover { border-color: #000; background: rgba(0,0,0,.04); }
.pq-btn--dark {
  background: #000;
  color: #fff;
}
.pq-btn--dark:hover { filter: brightness(1.2); }
.pq-btn--sm { padding: 11px 16px; font-size: 10.5px; }
.pq-btn--lg { padding: 21px 32px; font-size: 13px; }

/* =========================================================
   Inputs
   ========================================================= */
.pq-input,
.pq-select {
  width: 100%;
  display: block;
  font-family: var(--font-body);
  font-size: 15px;
  color: #fff;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 10px;
  padding: 14px 16px;
  outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
}
.pq-input::placeholder { color: rgba(255,255,255,.4); }
.pq-input:focus,
.pq-select:focus {
  border-color: var(--pq-lime);
  background: rgba(200,255,0,0.04);
  box-shadow: 0 0 0 4px rgba(200,255,0,0.10);
}
.pq-select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff80' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 40px;
}
.pq-input-label {
  display: block;
  font: var(--text-eyebrow);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.pq-input-error {
  font-family: var(--font-body);
  font-size: 12px;
  color: #FF8B85;
  margin-top: 6px;
  display: block;
}

.pq-section.light .pq-input,
.pq-section.light .pq-select {
  background: #fff;
  border-color: var(--pq-paper-line);
  color: #000;
}
.pq-section.light .pq-input::placeholder { color: #999; }
.pq-section.light .pq-select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><path d='M6 9l6 6 6-6'/></svg>");
}

/* =========================================================
   City combobox (searchable dropdown)
   ========================================================= */
.pq-combo {
  position: relative;
  width: 100%;
}
.pq-combo-control {
  position: relative;
  display: flex;
  align-items: center;
}
.pq-combo-input {
  width: 100%;
  display: block;
  font-family: var(--font-body);
  font-size: 15px;
  color: #fff;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 10px;
  padding: 14px 64px 14px 16px;
  outline: none;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
  appearance: none;
  -webkit-appearance: none;
}
.pq-combo-input::placeholder { color: rgba(255,255,255,.4); }
.pq-combo.is-open .pq-combo-input,
.pq-combo-input:focus {
  border-color: var(--pq-lime);
  background: rgba(200,255,0,0.04);
  box-shadow: 0 0 0 4px rgba(200,255,0,0.10);
}
.pq-combo.is-invalid .pq-combo-input {
  border-color: #FF8B85;
}
.pq-combo-caret {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,.5);
  pointer-events: none;
  display: flex;
  transition: transform .18s ease, color .15s ease;
}
.pq-combo.is-open .pq-combo-caret {
  transform: translateY(-50%) rotate(180deg);
  color: var(--pq-lime);
}
.pq-combo-clear {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 0;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background .15s ease;
}
.pq-combo-clear:hover { background: rgba(255,255,255,.18); }

.pq-combo-list {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  max-height: 280px;
  overflow-y: auto;
  margin: 0;
  padding: 6px;
  list-style: none;
  z-index: 50;
  background: #0e0e0e;
  border: 1px solid rgba(200,255,0,0.18);
  border-radius: 12px;
  box-shadow: 0 24px 48px -12px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.02) inset;
  font-family: var(--font-body);
  scrollbar-width: thin;
  scrollbar-color: rgba(200,255,0,.25) transparent;
}
.pq-combo-list::-webkit-scrollbar { width: 6px; }
.pq-combo-list::-webkit-scrollbar-thumb {
  background: rgba(200,255,0,.22);
  border-radius: 999px;
}
.pq-combo-opt {
  padding: 10px 12px;
  font-size: 14px;
  color: rgba(255,255,255,.85);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  line-height: 1.2;
  transition: background .1s ease, color .1s ease;
}
.pq-combo-opt mark {
  background: transparent;
  color: var(--pq-lime);
  font-weight: 600;
}
.pq-combo-opt.is-active {
  background: rgba(200,255,0,0.10);
  color: #fff;
}
.pq-combo-opt.is-selected::after {
  content: "✓";
  color: var(--pq-lime);
  font-family: var(--font-mono);
  font-size: 12px;
}
.pq-combo-empty {
  padding: 14px 12px;
  font-size: 13px;
  color: rgba(255,255,255,.45);
  text-align: center;
  font-family: var(--font-mono);
  letter-spacing: .04em;
}

/* Radio segmented (role picker) */
.pq-role-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.pq-role-grid > button {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  color: #fff;
  border-radius: 10px;
  padding: 14px 10px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-align: center;
  transition: all .2s var(--ease-out);
}
.pq-role-grid > button:hover {
  border-color: rgba(255,255,255,0.25);
}
.pq-role-grid > button[aria-pressed="true"] {
  background: var(--pq-lime);
  border-color: var(--pq-lime);
  color: #000;
}

/* =========================================================
   Nav
   ========================================================= */
.pq-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: 64px;
  display: flex;
  align-items: center;
  background: transparent;
  transition: background .3s var(--ease-out), border-color .3s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.pq-nav.scrolled {
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(255,255,255,0.06);
}
.pq-nav-inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.pq-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
}
.pq-nav-logo img { height: 24px; display: block; }
.pq-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 20px;
}
.pq-nav-links a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color .2s;
}
.pq-nav-links a:hover { color: #fff; }
.pq-nav-cta { margin-left: auto; display: flex; align-items: center; gap: 12px; }

.pq-lang-toggle {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  padding: 3px;
}
.pq-lang-toggle button {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px 11px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .12em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  transition: background .2s, color .2s;
}
.pq-lang-toggle button[aria-pressed="true"] {
  background: var(--pq-lime);
  color: #000;
}
@media (max-width: 880px) {
  .pq-nav-links { display: none; }
}
@media (max-width: 520px) {
  .pq-nav-cta .pq-btn { display: none; }
}

/* =========================================================
   Hero
   ========================================================= */
.pq-hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
  background: #000;
}
.pq-hero-video,
.pq-hero-fallback {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(.95) contrast(1.04) brightness(0.9);
}
.pq-hero-fallback {
  background:
    radial-gradient(ellipse at 70% 55%, rgba(200,255,0,0.10), transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(70,130,80,0.18), transparent 60%),
    linear-gradient(135deg, #0a1a0a 0%, #000 60%);
}
.pq-hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.82) 28%, rgba(0,0,0,.40) 55%, rgba(0,0,0,.20) 100%),
    linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 70%, rgba(0,0,0,.85) 100%);
  z-index: 1;
}
.pq-hero-grain {
  position: absolute; inset: 0;
  z-index: 2;
  opacity: .55;
  pointer-events: none;
}
.pq-hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 120px 32px 56px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 56px;
}
@media (max-width: 980px) {
  .pq-hero-inner {
    grid-template-columns: 1fr;
    padding: 110px 24px 40px;
    gap: 36px;
  }
}
.pq-hero-copy { max-width: 640px; }
.pq-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(200,255,0,0.30);
  background: rgba(200,255,0,0.05);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--pq-lime);
  margin-bottom: 28px;
}
.pq-hero-eyebrow .pulse {
  width: 7px; height: 7px; border-radius: 999px;
  background: var(--pq-lime);
  box-shadow: 0 0 12px var(--pq-lime);
  animation: pq-pulse 2s ease-in-out infinite;
}
.pq-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  line-height: 0.92;
  font-size: clamp(44px, 6.4vw, 92px);
  margin: 0 0 26px;
  color: #fff;
}
.pq-hero h1 .stack-line { display: block; }
.pq-hero h1 .accent {
  color: var(--pq-lime);
  font-style: italic;
  font-family: 'Source Serif 4', Georgia, serif;
  text-transform: none;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.pq-hero-sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  margin: 0 0 36px;
  max-width: 50ch;
}
.pq-hero-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.pq-hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.pq-hero-trust .line { width: 32px; height: 1px; background: rgba(255,255,255,0.25); }
.pq-hero-trust strong { color: #fff; font-weight: 500; }

/* Hero signup form */
.pq-form-card {
  background: rgba(10,10,10,0.72);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  padding: 28px;
  width: 100%;
  max-width: 460px;
  justify-self: end;
  box-shadow: 0 30px 80px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,0.06);
  position: relative;
}
@media (max-width: 980px) {
  .pq-form-card { justify-self: stretch; max-width: 100%; }
}
.pq-form-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(200,255,0,0.30), rgba(200,255,0,0) 40%);
  z-index: -1;
  filter: blur(.5px);
}
.pq-form-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 22px;
}
.pq-form-head h3 {
  font: var(--text-h2);
  text-transform: uppercase;
  color: #fff;
}
.pq-form-head p {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin: 0;
}
.pq-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.pq-form-grid > .full { grid-column: 1 / -1; }
@media (max-width: 460px) {
  .pq-form-grid { grid-template-columns: 1fr; }
  .pq-form-grid > .full { grid-column: 1; }
}
.pq-form-foot {
  margin-top: 18px;
  font-family: var(--font-body);
  font-size: 11.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}
.pq-form-success {
  text-align: center;
  padding: 24px 8px 12px;
}
.pq-form-success .check {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: var(--pq-lime);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 32px rgba(200,255,0,0.5);
}
.pq-form-success h4 {
  font: var(--text-h2);
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}
.pq-form-success p {
  font-family: var(--font-body);
  color: rgba(255,255,255,0.7);
  margin: 0 0 20px;
  line-height: 1.55;
}
.pq-form-success .position {
  margin: 18px 0 22px;
  padding: 16px;
  border: 1px solid rgba(200,255,0,0.25);
  border-radius: 12px;
  background: rgba(200,255,0,0.05);
}
.pq-form-success .position .label {
  font: var(--text-eyebrow);
  letter-spacing: .18em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}
.pq-form-success .position .num {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 42px;
  color: var(--pq-lime);
  margin-top: 6px;
  letter-spacing: -.02em;
}

/* =========================================================
   Marquee (after hero)
   ========================================================= */
.pq-marquee {
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: #000;
  overflow: hidden;
  padding: 22px 0;
}
.pq-marquee-track {
  display: flex;
  gap: 64px;
  animation: pq-marquee 38s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.pq-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.pq-marquee-item .star {
  width: 6px; height: 6px;
  background: var(--pq-lime);
  transform: rotate(45deg);
}
@keyframes pq-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================
   Problem section (split: friction vs PIQUEL)
   ========================================================= */
.pq-problem-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 980px) {
  .pq-problem-grid { grid-template-columns: 1fr; gap: 48px; }
}

.pq-chat-mock {
  background: #0e0e0e;
  border: 1px solid #1c1c1c;
  border-radius: 22px;
  padding: 22px;
  position: relative;
  overflow: hidden;
}
.pq-chat-mock::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 110px;
  background: linear-gradient(180deg, rgba(14,14,14,0), #0e0e0e 85%);
  pointer-events: none;
}
.pq-chat-mock .head {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 14px; border-bottom: 1px solid #1c1c1c; margin-bottom: 16px;
}
.pq-chat-mock .head .group {
  width: 32px; height: 32px; border-radius: 8px;
  background: linear-gradient(135deg,#2a4a2a, #0a0a0a);
}
.pq-chat-mock .head .name {
  font-family: var(--font-display); font-weight: 700;
  font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: #fff;
}
.pq-chat-mock .head .meta {
  font-family: var(--font-mono); font-size: 11px; color: var(--fg-muted);
}
.pq-chat-msg {
  display: flex; gap: 10px; margin-bottom: 12px;
  align-items: flex-end;
}
.pq-chat-msg.me { flex-direction: row-reverse; }
.pq-chat-msg .av {
  width: 26px; height: 26px; border-radius: 999px;
  background: #1c1c1c; flex: 0 0 26px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 10px; color: #fff;
}
.pq-chat-msg .bubble {
  background: #1c1c1c;
  border-radius: 14px;
  padding: 9px 13px;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: #ddd;
  max-width: 80%;
  line-height: 1.4;
}
.pq-chat-msg.me .bubble {
  background: rgba(200,255,0,0.10);
  color: #fff;
  border: 1px solid rgba(200,255,0,0.18);
}
.pq-chat-msg .stamp {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-muted);
  margin-bottom: 4px;
}
.pq-chat-mock .typing {
  font-family: var(--font-body); font-size: 12px; color: var(--fg-muted);
  display: flex; align-items: center; gap: 6px;
}
.pq-chat-mock .typing .dot {
  width: 4px; height: 4px; border-radius: 999px; background: var(--fg-muted);
  animation: pq-bounce 1.4s ease-in-out infinite;
}
.pq-chat-mock .typing .dot:nth-child(2) { animation-delay: .2s; }
.pq-chat-mock .typing .dot:nth-child(3) { animation-delay: .4s; }
@keyframes pq-bounce { 0%,100%{opacity:.3} 50%{opacity:1} }

.pq-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 36px;
}
.pq-stat-row .cell {
  border: 1px solid #1c1c1c;
  background: #0a0a0a;
  border-radius: 14px;
  padding: 20px;
}
.pq-stat-row .cell .num {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 32px;
  color: var(--pq-lime);
  letter-spacing: -.02em;
}
.pq-stat-row .cell .label {
  font: var(--text-eyebrow);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: 8px;
}

/* =========================================================
   Solution — the 4 steps
   ========================================================= */
.pq-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
@media (max-width: 980px) {
  .pq-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .pq-steps { grid-template-columns: 1fr; }
}
.pq-step {
  position: relative;
  border: 1px solid var(--pq-paper-line);
  border-radius: 18px;
  padding: 24px;
  background: var(--pq-white);
  color: var(--pq-black);
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 320px;
  overflow: hidden;
  transition: transform .3s var(--ease-out), border-color .3s var(--ease-out);
}
.pq-step:hover { transform: translateY(-4px); border-color: #000; }
.pq-step .step-num {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 11px;
  color: #888;
  letter-spacing: .12em;
}
.pq-step h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: -.005em;
  margin: 0;
  line-height: 1.05;
}
.pq-step p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  color: #555;
  margin: 0;
  flex: 1;
}
.pq-step .viz {
  margin-top: auto;
  height: 110px;
  background: #000;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.pq-step .viz .accent {
  color: var(--pq-lime);
}

/* =========================================================
   Features grid
   ========================================================= */
.pq-features-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.pq-feature {
  background: #0a0a0a;
  border: 1px solid #1c1c1c;
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .3s var(--ease-out);
}
.pq-feature:hover { border-color: #2a2a2a; }
.pq-feature .icon-box {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(200,255,0,0.08);
  border: 1px solid rgba(200,255,0,0.20);
  color: var(--pq-lime);
  display: flex; align-items: center; justify-content: center;
}
.pq-feature h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: -.005em;
  margin: 0;
  color: #fff;
}
.pq-feature p {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.6);
  margin: 0;
}
.pq-feature .feature-art {
  margin-top: auto;
  pointer-events: none;
}

.pq-feature.span-4 { grid-column: span 4; }
.pq-feature.span-6 { grid-column: span 6; }
.pq-feature.span-8 { grid-column: span 8; }
.pq-feature.span-12 { grid-column: span 12; }
@media (max-width: 980px) {
  .pq-feature.span-4, .pq-feature.span-6, .pq-feature.span-8, .pq-feature.span-12 {
    grid-column: span 12;
  }
}

/* =========================================================
   Benefits — tabbed
   ========================================================= */
.pq-tabs {
  display: inline-flex;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 40px;
}
.pq-tabs button {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px 20px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #777;
  transition: background .2s, color .2s;
}
.pq-tabs button[aria-pressed="true"] {
  background: #000;
  color: var(--pq-lime);
}
.pq-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
@media (max-width: 880px) {
  .pq-benefits { grid-template-columns: 1fr; }
}
.pq-benefit {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pq-benefit .num {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 12px;
  color: #888;
  letter-spacing: .12em;
}
.pq-benefit h5 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: -.005em;
  margin: 0;
  color: #000;
}
.pq-benefit p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: #555;
  margin: 0;
}

.pq-benefit--enter {
  opacity: 0;
  transform: translateY(8px);
  animation: pqBenefitIn 0.42s cubic-bezier(.2,.7,.2,1) forwards;
}
@keyframes pqBenefitIn {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .pq-benefit--enter { animation: none; opacity: 1; transform: none; }
}

/* =========================================================
   Referral
   ========================================================= */
.pq-referral {
  background: linear-gradient(135deg, #0a0a0a 0%, #050505 100%);
  border: 1px solid rgba(200,255,0,0.18);
  border-radius: 28px;
  padding: 64px;
  position: relative;
  overflow: hidden;
}
.pq-referral::before {
  content: '';
  position: absolute;
  width: 480px; height: 480px;
  right: -120px; top: -120px;
  background: radial-gradient(circle, rgba(200,255,0,0.18), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
.pq-referral-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 980px) {
  .pq-referral { padding: 40px 28px; }
  .pq-referral-inner { grid-template-columns: 1fr; gap: 36px; }
}
.pq-referral-ladder {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pq-rl-row {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  background: #0a0a0a;
  border: 1px solid #1c1c1c;
  border-radius: 14px;
  transition: border-color .3s, transform .3s var(--ease-out);
}
.pq-rl-row:hover { border-color: rgba(200,255,0,0.30); transform: translateX(4px); }
.pq-rl-row .count {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 26px;
  color: var(--pq-lime);
  letter-spacing: -.02em;
}
.pq-rl-row .desc {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: rgba(255,255,255,0.78);
  line-height: 1.4;
}
.pq-rl-row .badge-out {
  font-family: var(--font-display); font-weight: 700;
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  padding: 6px 10px; border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.78);
}
.pq-rl-row.gold .badge-out {
  background: var(--pq-lime);
  color: #000;
  border-color: var(--pq-lime);
}

/* =========================================================
   Product screenshots (phone carousel)
   ========================================================= */
.pq-screenshots {
  margin-top: 56px;
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 20px 0 32px;
  scrollbar-width: thin;
}
.pq-screenshots::-webkit-scrollbar { height: 8px; }
.pq-screenshots > .frame {
  flex: 0 0 auto;
  scroll-snap-align: center;
  width: 280px;
  height: 580px;
  background: #000;
  border-radius: 36px;
  border: 1px solid #1c1c1c;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.pq-screenshots > .frame::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 110px; height: 24px;
  background: #000;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  z-index: 5;
}

/* =========================================================
   Testimonials
   ========================================================= */
.pq-tm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
@media (max-width: 980px) {
  .pq-tm-grid { grid-template-columns: 1fr; }
}
.pq-tm {
  background: #0a0a0a;
  border: 1px solid #1c1c1c;
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 280px;
}
.pq-tm .quote {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 18px;
  line-height: 1.5;
  color: #fff;
  flex: 1;
  letter-spacing: -.005em;
}
.pq-tm .meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #1c1c1c;
}
.pq-tm .av {
  width: 40px; height: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg,#2a4a2a,#0a0a0a);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 13px; color: #fff;
  border: 2px solid #1c1c1c;
}
.pq-tm .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
}
.pq-tm .role {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 2px;
}

/* =========================================================
   FAQ
   ========================================================= */
.pq-faq {
  display: flex;
  flex-direction: column;
  margin-top: 32px;
  border-top: 1px solid var(--pq-paper-line);
}
.pq-section:not(.light) .pq-faq { border-top-color: #1c1c1c; }

.pq-faq-item {
  border-bottom: 1px solid var(--pq-paper-line);
}
.pq-section:not(.light) .pq-faq-item { border-bottom-color: #1c1c1c; }

.pq-faq-q {
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -.005em;
  text-transform: uppercase;
  color: inherit;
  transition: color .2s;
}
.pq-faq-q:hover { color: var(--pq-lime); }
.pq-section.light .pq-faq-q:hover { color: #000; }
.pq-faq-q .plus {
  width: 28px; height: 28px;
  border: 1px solid currentColor;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  opacity: .5;
  transition: transform .3s var(--ease-out), opacity .2s;
  flex-shrink: 0;
}
.pq-faq-item[open] .pq-faq-q .plus { transform: rotate(45deg); opacity: 1; color: var(--pq-lime); }
.pq-section.light .pq-faq-item[open] .pq-faq-q .plus { color: #000; }
.pq-faq-item[open] .pq-faq-q { color: var(--pq-lime); }
.pq-section.light .pq-faq-item[open] .pq-faq-q { color: #000; }
.pq-faq-a {
  padding: 0 0 28px;
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--fg-2);
  max-width: 64ch;
}
.pq-section.light .pq-faq-a { color: #555; }

/* =========================================================
   Final CTA
   ========================================================= */
.pq-final-cta {
  position: relative;
  padding: 120px 32px;
  text-align: center;
  background: #000;
  overflow: hidden;
}
.pq-final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(200,255,0,0.18), transparent 60%),
    radial-gradient(ellipse at 20% 0%, rgba(200,255,0,0.06), transparent 50%);
  pointer-events: none;
}
.pq-final-cta-inner { position: relative; max-width: 880px; margin: 0 auto; }
.pq-final-cta h2 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  line-height: 0.9;
  font-size: clamp(48px, 7vw, 112px);
  color: #fff;
  margin: 0 0 24px;
}
.pq-final-cta h2 .accent {
  color: var(--pq-lime);
  font-style: italic;
  font-family: 'Source Serif 4', Georgia, serif;
  text-transform: none;
  font-weight: 400;
}
.pq-final-cta p {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255,255,255,.72);
  max-width: 56ch;
  margin: 0 auto 40px;
}
.pq-inline-form {
  display: flex;
  max-width: 540px;
  margin: 0 auto;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  padding: 6px;
  align-items: center;
}
.pq-inline-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 14px 20px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  min-width: 0;
}
.pq-inline-form input::placeholder { color: rgba(255,255,255,.45); }
.pq-inline-form button {
  border: none;
  background: var(--pq-lime);
  color: #000;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 14px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: filter .2s, transform .2s var(--ease-out);
}
.pq-inline-form button:hover { filter: brightness(1.05); }
.pq-inline-form button:active { transform: scale(.97); }

/* =========================================================
   Footer
   ========================================================= */
.pq-footer {
  background: #000;
  border-top: 1px solid #1c1c1c;
  padding: 64px 0 32px;
  color: rgba(255,255,255,.55);
  font-family: var(--font-body);
  font-size: 14px;
}
.pq-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 800px) {
  .pq-footer-grid { grid-template-columns: 1fr 1fr; }
}
.pq-footer h6 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 16px;
}
.pq-footer a {
  display: block;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  padding: 5px 0;
  transition: color .2s;
}
.pq-footer a:hover { color: #fff; }
.pq-footer-bottom {
  border-top: 1px solid #1c1c1c;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255,255,255,.4);
}
.pq-footer-brand p {
  margin: 14px 0 0;
  max-width: 36ch;
  line-height: 1.5;
}

/* =========================================================
   Sticky pill CTA
   ========================================================= */
.pq-sticky-cta {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--pq-lime);
  color: #000;
  border: none;
  border-radius: 999px;
  padding: 14px 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 20px 60px rgba(200,255,0,.35), 0 0 30px rgba(200,255,0,.4);
  transform: translateY(120%);
  opacity: 0;
  transition: opacity .4s var(--ease-out), transform .4s var(--ease-out), filter .2s;
}
.pq-sticky-cta.visible { transform: translateY(0); opacity: 1; }
.pq-sticky-cta:hover { filter: brightness(1.05); }
.pq-sticky-cta:active { transform: translateY(0) scale(.97); }
@media (max-width: 600px) {
  .pq-sticky-cta { right: 16px; bottom: 16px; }
}

/* =========================================================
   Reveal animations
   ========================================================= */
.pq-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.pq-reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.pq-reveal[data-stagger="1"] { transition-delay: .08s; }
.pq-reveal[data-stagger="2"] { transition-delay: .16s; }
.pq-reveal[data-stagger="3"] { transition-delay: .24s; }
.pq-reveal[data-stagger="4"] { transition-delay: .32s; }
.pq-reveal[data-stagger="5"] { transition-delay: .40s; }

/* =========================================================
   Small phone-mock visualization helpers
   ========================================================= */
.viz-app-press {
  width: 64px; height: 64px;
  border-radius: 14px;
  background: var(--pq-lime);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  animation: vizPress 2.6s ease-in-out infinite;
}
@keyframes vizPress {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(.92); box-shadow: 0 0 28px rgba(200,255,0,.45); }
}
.viz-active-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  background: rgba(200,255,0,0.10);
  border: 1px solid rgba(200,255,0,0.30);
  border-radius: 999px;
  color: #fff;
  font-family: var(--font-display); font-weight: 700;
  font-size: 12px; letter-spacing: .12em;
}
.viz-active-pill .d {
  width: 8px; height: 8px; border-radius: 999px; background: var(--pq-lime);
  animation: pq-pulse 2s infinite ease-in-out;
}

/* =========================================================
   Scroll progress bar
   ========================================================= */
.pq-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--pq-lime);
  z-index: 100;
  transition: width .12s linear;
  box-shadow: 0 0 12px var(--pq-lime);
}

/* =========================================================
   Demo lightbox
   ========================================================= */
.pq-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease-out);
}
.pq-lightbox.open {
  opacity: 1;
  pointer-events: auto;
}
.pq-lightbox .frame {
  position: relative;
  width: 100%;
  max-width: 1100px;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 60px 120px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.08);
  transform: scale(.96);
  transition: transform .3s var(--ease-out);
}
.pq-lightbox.open .frame {
  transform: scale(1);
}
.pq-lightbox video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.pq-lightbox .close {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.pq-lightbox .close:hover { background: rgba(255,255,255,0.12); }
.pq-lightbox .caption {
  position: absolute;
  bottom: -56px;
  left: 0; right: 0;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* =========================================================
   Social proof ticker
   ========================================================= */
.pq-joined-ticker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 8px 14px 8px 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 12.5px;
  color: rgba(255,255,255,0.78);
}
.pq-joined-ticker .avs {
  display: flex;
}
.pq-joined-ticker .avs > span {
  width: 22px; height: 22px;
  border-radius: 999px;
  border: 2px solid #0a0a0a;
  margin-left: -8px;
  background: linear-gradient(135deg, var(--c1), var(--c2));
}
.pq-joined-ticker .avs > span:first-child { margin-left: 0; }
.pq-joined-ticker strong {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--pq-lime);
  letter-spacing: -.01em;
}
/* Disable scroll lock when no JS */
.no-js .pq-reveal { opacity: 1; transform: none; }

/* =========================================================
   Urgency / scarcity labels (red, subtle pulse)
   ========================================================= */
@keyframes pq-pulse-soft {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.55; }
}
.pq-urgency {
  display: inline-block;
  color: var(--pq-danger);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: pq-pulse-soft 2.4s ease-in-out infinite;
}
.pq-urgency--center { display: block; text-align: center; margin: 14px auto 0; }
.pq-urgency--inline { font-size: 10px; opacity: 0.95; }
@media (prefers-reduced-motion: reduce) {
  .pq-urgency { animation: none; }
}
