/* =========================================================
   LeaseUp Bulldog — PRODUCT-FIRST home
   Linear / Vercel style: the actual product UI is the hero.
   ========================================================= */

body.product-first { background: #000; }

.site-header.solid.is-scrolled {
  background: rgba(0, 0, 0, 0.94);
  border-bottom: 1px solid var(--line);
}

.pf-main { position: relative; }

/* =========== HERO =========== */
.pf-hero {
  position: relative;
  padding: calc(var(--header-h) + 64px) 6vw 96px;
  overflow: hidden;
  isolation: isolate;
}
.pf-hero-glow {
  position: absolute;
  top: -10%; right: 0;
  width: 70vw; height: 80vh;
  background: radial-gradient(circle at 70% 30%, rgba(200,16,46,0.18) 0%, transparent 60%);
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
}
.pf-hero-grid {
  position: absolute; inset: 0;
  z-index: -1;
  opacity: 0.35;
  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: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 80%);
          mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 80%);
}

.pf-hero-inner {
  max-width: 1340px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 540px;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.pf-hero-copy {
  display: flex;
  flex-direction: column;
}
.pf-hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 4.8vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 14px 0 22px;
  max-width: 14ch;
}
.pf-hero-title em {
  color: var(--accent);
  display: inline;
}
.pf-hero-lede {
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 50ch;
  margin-bottom: 32px;
}
.pf-hero-lede strong { color: var(--ink); font-weight: 600; }

.pf-hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 24px;
}
.pf-hero-trust {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  flex-wrap: wrap;
}
.pf-hero-trust .dot {
  width: 3px; height: 3px;
  background: var(--ink-faint);
  border-radius: 50%;
}

/* === Phone mockup === */
.pf-hero-product {
  position: relative;
  display: flex;
  justify-content: center;
}
.pf-phone {
  position: relative;
  width: 100%;
  max-width: 420px;
}
.pf-phone-bezel {
  border-radius: 36px;
  padding: 8px;
  background: linear-gradient(180deg, #1a1a22 0%, #08080d 100%);
  box-shadow:
    0 40px 80px -20px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 30px 80px -30px rgba(200, 16, 46, 0.35);
}
.pf-phone-screen {
  border-radius: 28px;
  background: #0a0a10;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
}
.pf-phone-header {
  display: flex; align-items: center;
  padding: 14px 16px;
  gap: 12px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--line);
}
.pf-phone-back {
  width: 20px; height: 20px;
  display: grid; place-items: center;
  opacity: 0.85;
}
.pf-phone-contact {
  flex: 1;
  display: flex; align-items: center; gap: 10px;
}
.pf-phone-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #8a0a1f);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  display: grid; place-items: center;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.pf-phone-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.pf-phone-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--accent-light);
  display: flex; align-items: center; gap: 6px;
  margin-top: 2px;
}
.pf-phone-sub .live-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 1.4s ease-in-out infinite;
}
.pf-phone-time {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-mute);
}

/* === SMS thread === */
.pf-thread {
  padding: 18px 14px 20px;
  display: flex; flex-direction: column;
  gap: 8px;
}
.pf-msg {
  max-width: 84%;
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--ink);
  position: relative;
}
.pf-msg .pf-meta {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 6px;
}
.pf-msg-ai {
  align-self: flex-start;
  background: rgba(200, 16, 46, 0.12);
  border: 1px solid rgba(200, 16, 46, 0.32);
  border-bottom-left-radius: 4px;
}
.pf-msg-lead {
  align-self: flex-end;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-bottom-right-radius: 4px;
}
.pf-msg-lead .pf-meta { text-align: right; }

.pf-booking {
  margin-top: 8px;
  padding: 14px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(200, 16, 46, 0.18), rgba(200, 16, 46, 0.04));
  border: 1px solid rgba(200, 16, 46, 0.45);
  box-shadow: 0 8px 30px -10px rgba(200, 16, 46, 0.5);
}
.pf-booking-row {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 6px;
}
.pf-booking-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 1.4s ease-in-out infinite;
}
.pf-booking-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--accent-light);
}
.pf-booking-detail {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.pf-booking-sub {
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 4px;
}

/* === Floating callouts === */
.pf-callout {
  position: absolute;
  background: rgba(10, 10, 14, 0.94);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.pf-callout-top {
  top: -16px;
  right: -40px;
}
.pf-callout-bottom {
  bottom: 32px;
  left: -50px;
}
.pf-callout-dot {
  width: 8px; height: 8px;
  background: var(--ink-faint);
  border-radius: 50%;
}
.pf-callout-dot-active {
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 1.4s ease-in-out infinite;
}
.pf-callout-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.pf-callout-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

/* === Trust bar marquee === */
.pf-trust-bar {
  margin: 96px auto 0;
  max-width: 1340px;
  position: relative;
  z-index: 1;
}
.pf-trust-text {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 24px;
}
.pf-trust-marquee {
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.pf-trust-track {
  display: inline-flex;
  gap: 32px;
  white-space: nowrap;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.32);
  animation: pf-trust-scroll 30s linear infinite;
}
.pf-trust-track span:nth-child(even) { color: rgba(255, 255, 255, 0.16); }
@keyframes pf-trust-scroll {
  to { transform: translateX(-50%); }
}

/* =========== GENERAL SECTIONS =========== */
.pf-section {
  position: relative;
  padding: 100px 6vw;
}
.pf-section-inner {
  max-width: 1340px;
  margin: 0 auto;
}
.pf-section-inner.center { text-align: center; }

.pf-section-header {
  margin-bottom: 56px;
  max-width: 64ch;
}
.pf-section-header.center {
  text-align: center;
  margin-left: auto; margin-right: auto;
}
.pf-heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--ink);
  max-width: 20ch;
}
.pf-heading em { color: var(--accent); }
.pf-section-header.center .pf-heading { margin: 0 auto; }
.pf-sub {
  font-size: 1.04rem;
  line-height: 1.6;
  color: var(--ink-mute);
  max-width: 60ch;
  margin-top: 14px;
}
.pf-section-header.center .pf-sub { margin: 14px auto 0; }

/* =========== CAPABILITIES with mini product UI =========== */
.pf-cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pf-cap-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0;
  background: rgba(10, 10, 14, 0.65);
  overflow: hidden;
  transition: border-color 0.4s var(--ease-out), transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  display: flex; flex-direction: column;
}
.pf-cap-card:hover {
  border-color: rgba(200, 16, 46, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 30px 60px -20px rgba(200, 16, 46, 0.2);
}
.pf-cap-mini {
  height: 110px;
  background: linear-gradient(180deg, rgba(200, 16, 46, 0.08), rgba(0, 0, 0, 0));
  border-bottom: 1px solid var(--line);
  padding: 18px 18px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.pf-cap-num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
  padding: 16px 20px 6px;
}
.pf-cap-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 20px 6px;
  letter-spacing: -0.005em;
}
.pf-cap-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--ink-mute);
  padding: 0 20px 20px;
}

/* --- mini bubble (cap 01) --- */
.pf-mini-bubble {
  background: rgba(200, 16, 46, 0.18);
  border: 1px solid rgba(200, 16, 46, 0.4);
  border-bottom-left-radius: 4px;
  border-radius: 12px;
  padding: 8px 12px;
  font-size: 11px;
  color: var(--ink);
  max-width: 80%;
}
.pf-mini-time {
  position: absolute;
  bottom: 12px;
  right: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--accent-light);
  letter-spacing: 0.1em;
}

/* --- mini tags (cap 02) --- */
.pf-mini-tags {
  display: flex; flex-direction: column; gap: 4px;
  width: 100%;
}
.pf-mini-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--ink-mute);
  align-self: flex-start;
}
.pf-mini-tag-done {
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--ink-soft);
}
.pf-mini-tag-active {
  background: rgba(200, 16, 46, 0.16);
  border-color: rgba(200, 16, 46, 0.5);
  color: var(--accent-light);
}

/* --- mini calendar (cap 03) --- */
.pf-mini-cal {
  width: 100%;
  display: flex; flex-direction: column; gap: 3px;
}
.pf-mini-cal-head {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  margin-bottom: 4px;
}
.pf-mini-cal-slot {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink-mute);
}
.pf-mini-cal-booked {
  background: rgba(200, 16, 46, 0.16);
  border-color: rgba(200, 16, 46, 0.5);
  color: var(--accent-light);
  font-weight: 700;
}

/* --- mini shield (cap 04) --- */
.pf-mini-shield {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--accent-light);
}
.pf-mini-shield span {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

/* =========== BRAND MOMENT (bulldog video) =========== */
.pf-brand-moment {
  background:
    radial-gradient(ellipse 60% 60% at 30% 50%, rgba(200, 16, 46, 0.1), transparent 60%),
    #000;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.pf-brand-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: center;
  max-width: 1340px;
  margin: 0 auto;
}

.pf-brand-video-wrap {
  position: relative;
}
.pf-brand-video-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
  aspect-ratio: 1 / 1;
  box-shadow:
    0 40px 80px -20px rgba(0, 0, 0, 0.6),
    0 30px 80px -30px rgba(200, 16, 46, 0.4);
}
.pf-brand-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.pf-brand-video-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 55%, rgba(0, 0, 0, 0.45) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, transparent 22%, transparent 78%, rgba(0, 0, 0, 0.42) 100%);
}
.pf-brand-video-meta {
  margin-top: 16px;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.pf-brand-tag {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent-light);
  font-weight: 600;
}
.pf-brand-tag .pulse {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 1.4s ease-in-out infinite;
}
.pf-brand-stat {
  color: var(--ink-mute);
  font-weight: 600;
}

.pf-brand-copy { max-width: 50ch; }
.pf-brand-body {
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.pf-brand-body:last-of-type { margin-bottom: 24px; }
.pf-brand-list {
  list-style: none;
  margin: 8px 0 28px;
  border-top: 1px solid var(--line);
}
.pf-brand-list li {
  display: flex; align-items: baseline; gap: 12px;
  font-size: 0.96rem;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.pf-brand-bullet {
  color: var(--accent);
  font-weight: 900;
  font-size: 1.4rem;
  line-height: 0;
  vertical-align: middle;
}

@media (max-width: 1100px) {
  .pf-brand-grid { grid-template-columns: 1fr; gap: 48px; }
  .pf-brand-video-frame { aspect-ratio: 16 / 11; }
}

/* =========== PRODUCT SHOWCASE (app browser mockup) =========== */
.pf-product-showcase {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(200, 16, 46, 0.06), transparent 60%),
    #000;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pf-app {
  margin: 0 auto;
  max-width: 1280px;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #0a0a0e;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.7), 0 30px 80px -30px rgba(200, 16, 46, 0.18);
}
.pf-app-chrome {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}
.pf-chrome-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.pf-chrome-r { background: #ff5f57; }
.pf-chrome-y { background: #febc2e; }
.pf-chrome-g { background: #28c840; }
.pf-chrome-url {
  margin-left: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 5px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-mute);
  flex: 1;
  max-width: 460px;
}

.pf-app-body {
  display: grid;
  grid-template-columns: 200px 1fr 360px;
  height: 520px;
}

/* Sidebar */
.pf-app-sidebar {
  border-right: 1px solid var(--line);
  padding: 18px 14px;
  background: rgba(0, 0, 0, 0.4);
}
.pf-side-section { margin-bottom: 28px; }
.pf-side-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-faint);
  margin-bottom: 10px;
  font-weight: 600;
}
.pf-side-item {
  font-size: 13px;
  color: var(--ink-soft);
  padding: 8px 10px;
  border-radius: 6px;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
  transition: background 0.3s var(--ease-out);
}
.pf-side-item:hover { background: rgba(255, 255, 255, 0.04); }
.pf-side-active {
  background: rgba(200, 16, 46, 0.14);
  color: var(--ink);
  border: 1px solid rgba(200, 16, 46, 0.3);
}
.pf-side-count {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accent-light);
  background: rgba(200, 16, 46, 0.18);
  padding: 2px 7px;
  border-radius: 999px;
  font-weight: 700;
}

/* Conversation list */
.pf-app-list {
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column;
}
.pf-list-header {
  padding: 14px 18px;
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}
.pf-list-filter {
  color: var(--accent-light);
  letter-spacing: 0.1em;
}
.pf-list-row {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 12px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
  align-items: center;
  cursor: pointer;
  transition: background 0.3s var(--ease-out);
}
.pf-list-row:hover { background: rgba(255, 255, 255, 0.03); }
.pf-list-row-active {
  background: rgba(200, 16, 46, 0.08);
  border-left: 2px solid var(--accent);
  padding-left: 16px;
}
.pf-list-row-dim { opacity: 0.55; }
.pf-list-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  display: grid; place-items: center;
  border: 1px solid var(--line);
}
.pf-list-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  display: flex; align-items: center; gap: 8px;
}
.pf-list-snippet {
  font-size: 11.5px;
  color: var(--ink-mute);
  margin-top: 3px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  max-width: 220px;
}
.pf-list-time {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-faint);
  letter-spacing: 0.05em;
}
.pf-list-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 2px 6px;
  border-radius: 999px;
}
.pf-tag-qualified { background: rgba(200, 16, 46, 0.2); color: var(--accent-light); }
.pf-tag-engaged { background: rgba(248, 191, 113, 0.15); color: #f7c878; }
.pf-tag-applied { background: rgba(70, 200, 90, 0.15); color: #6fdf8f; }
.pf-tag-new { background: rgba(255, 255, 255, 0.08); color: var(--ink-soft); }
.pf-tag-cold { background: rgba(255, 255, 255, 0.04); color: var(--ink-faint); }

/* Detail */
.pf-app-detail {
  display: flex; flex-direction: column;
  background: rgba(0, 0, 0, 0.3);
}
.pf-detail-head {
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.pf-detail-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.pf-detail-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  margin-top: 3px;
}
.pf-detail-takeover {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.3s var(--ease-out);
}
.pf-detail-takeover:hover { border-color: var(--accent); color: var(--accent-light); }

.pf-detail-body {
  flex: 1;
  padding: 18px 20px;
  display: flex; flex-direction: column;
  gap: 8px;
}
.pf-detail-bubble {
  font-size: 12.5px;
  line-height: 1.45;
  padding: 8px 12px;
  border-radius: 14px;
  max-width: 80%;
}
.pf-detail-ai {
  align-self: flex-start;
  background: rgba(200, 16, 46, 0.12);
  border: 1px solid rgba(200, 16, 46, 0.3);
  color: var(--ink);
  border-bottom-left-radius: 4px;
}
.pf-detail-lead {
  align-self: flex-end;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--ink);
  border-bottom-right-radius: 4px;
}
.pf-detail-status {
  margin-top: auto;
  padding: 10px 12px;
  border: 1px solid rgba(200, 16, 46, 0.4);
  background: rgba(200, 16, 46, 0.08);
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--accent-light);
  display: flex; align-items: center; gap: 8px;
}
.pf-detail-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
}

/* =========== STATS =========== */
.pf-stats {
  background: rgba(0, 0, 0, 0.4);
}
.home-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-width: 1340px;
  margin: 0 auto;
}
.home-stat {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; align-items: center;
  gap: 14px;
}
.home-stat:last-child { border-right: none; }
.home-stat-value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 4.8vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--accent);
  display: inline-flex; align-items: baseline; gap: 1px;
  white-space: nowrap;
}
.home-stat-value .stat-prefix {
  font-size: 0.45em;
  font-weight: 800;
  color: var(--accent);
}
.home-stat-value .stat-suffix {
  font-size: 0.5em;
  font-weight: 700;
  color: var(--accent);
}
.home-stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  max-width: 18ch;
  line-height: 1.4;
}

/* =========== OPERATORS =========== */
.quote-grid-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.quote-card-home {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 26px 22px;
  background: rgba(10, 10, 14, 0.7);
  display: flex; flex-direction: column;
  transition: border-color 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.quote-card-home:hover {
  border-color: rgba(200, 16, 46, 0.5);
  transform: translateY(-3px);
}
.quote-text-home {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 26px;
  flex: 1;
}
.quote-mark {
  color: var(--accent);
  font-size: 2rem;
  font-weight: 900;
  line-height: 0;
  margin-right: 4px;
  display: inline-block;
  vertical-align: -8px;
}
.quote-meta-home {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.quote-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.quote-name {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--ink);
}
.quote-role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--ink-mute);
  margin-top: 2px;
}
.see-all-link { text-align: center; margin-top: 36px; }

/* =========== PRICING (reused) =========== */
.pricing-card-home {
  max-width: 720px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 44px 40px 36px;
  background: radial-gradient(ellipse at top, rgba(200, 16, 46, 0.1), transparent 60%), rgba(10, 10, 14, 0.85);
  box-shadow: 0 30px 80px -20px rgba(200, 16, 46, 0.18);
}
.pricing-amount {
  display: flex; align-items: baseline; gap: 4px;
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 14px;
}
.pricing-amount .currency {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 600;
  color: var(--ink-soft);
}
.pricing-amount .value {
  font-size: clamp(3.8rem, 7vw, 5.8rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  color: var(--accent);
}
.pricing-amount .period {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: var(--ink-mute);
  margin-left: 10px;
  font-weight: 500;
}
.pricing-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.pricing-meta span { color: var(--accent); font-weight: 700; }
.pricing-list {
  list-style: none;
  border-top: 1px solid var(--line);
  margin-bottom: 28px;
}
.pricing-list li {
  position: relative;
  padding: 12px 0 12px 24px;
  font-size: 0.96rem;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.pricing-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 19px;
  width: 12px; height: 1px;
  background: var(--accent);
}
.pricing-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.inline-link {
  color: var(--accent-light);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease-out), color 0.3s var(--ease-out);
}
.inline-link:hover { border-color: var(--accent-light); color: var(--ink); }

/* =========== CTA =========== */
.pf-cta {
  position: relative;
  text-align: center;
  padding: 140px 6vw;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.pf-cta-glow {
  position: absolute;
  width: 70vw; height: 60vh;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(200, 16, 46, 0.2), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.pf-cta-heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 6.4vw, 6rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 22px;
  position: relative; z-index: 1;
}
.pf-cta-heading em {
  color: var(--accent);
  text-shadow: 0 0 40px rgba(200, 16, 46, 0.4);
}
.pf-cta-body {
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0 auto 32px;
  line-height: 1.6;
  position: relative; z-index: 1;
}
.pf-cta-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  position: relative; z-index: 1;
}

/* =========================================================
   REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1180px) {
  .pf-hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .pf-hero-product { justify-content: flex-start; }
  .pf-app-body { grid-template-columns: 180px 1fr; height: 480px; }
  .pf-app-detail { display: none; }
  .pf-cap-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-grid-home { grid-template-columns: 1fr; gap: 12px; }
}
@media (max-width: 800px) {
  .pf-hero { padding-top: calc(var(--header-h) + 40px); }
  .pf-app-body { grid-template-columns: 1fr; }
  .pf-app-sidebar { display: none; }
  .pf-cap-grid { grid-template-columns: 1fr; }
  .home-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .home-stat { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .home-stat:nth-child(2n) { border-right: none; }
  .home-stat:nth-last-child(-n+2) { border-bottom: none; }
  .pf-callout-top { right: 0; }
  .pf-callout-bottom { left: 0; }
}
