.pv2 *, .pv2 *::before, .pv2 *::after { margin: 0; padding: 0; box-sizing: border-box; }
.pv2 {
      --primary:      #0067C2;
      --primary-dark: #004fa0;
      --cyan:         #00AEE2;
      --bright-blue:  #48ADFF;
      --black:        #242423;
      --white:        #ffffff;
      --bg:           #F1F1F1;
      --bg-alt:       #E8E8E6;
      --gray-mid:     #4A4A48;
      --gray-sub:     #8C8C8C;
      --dark-bg:      #1A1A1A;
      --radius-card:  16px;
      --radius-btn:   9999px;
    }
.pv2 .nav {
      position: fixed; top: 0; left: 0; right: 0; height: 64px;
      background: rgba(26,26,26,0.82);
      backdrop-filter: blur(24px) saturate(180%);
      border-bottom: 1px solid rgba(255,255,255,0.07);
      display: flex; align-items: center; padding: 0 48px;
      z-index: 100; transition: background 0.4s, border-color 0.4s;
    }
.pv2 .nav.nav-light {
      background: rgba(241,241,241,0.92);
      border-color: rgba(0,0,0,0.06);
    }
.pv2 .nav.nav-light .nav-logo-light { display: block; }
.pv2 .nav.nav-light .nav-logo-dark { display: none; }
.pv2 .nav.nav-light .nav-link { color: var(--gray-mid); }
.pv2 .nav.nav-light .nav-link:hover, .pv2 .nav.nav-light .nav-link.active { color: var(--black); }
.pv2 .btn {
      display: inline-flex; align-items: center;
      border-radius: var(--radius-btn);
      font-family: 'Archivo', sans-serif; font-weight: 600; font-size: 14px;
      padding: 10px 24px; border: none; cursor: pointer;
      text-decoration: none; transition: all 0.2s ease;
      letter-spacing: -0.01em;
    }
.pv2 .btn-outline {
      background: transparent; color: var(--gray-mid);
      border: 1.5px solid rgba(0,0,0,0.16);
    }
.pv2 .btn-outline:hover { background: rgba(0,0,0,0.04); }
.pv2 .btn-primary { background: var(--primary); color: white; }
.pv2 .btn-primary:hover { background: var(--primary-dark); box-shadow: 0 8px 24px rgba(0,103,194,0.25); transform: translateY(-1px); }
.pv2 .btn-white { background: white; color: var(--primary); }
.pv2 .btn-white:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.14); transform: translateY(-1px); }
.pv2 .btn-outline-white {
      background: transparent; color: white;
      border: 1.5px solid rgba(255,255,255,0.3);
    }
.pv2 .btn-outline-white:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }
.pv2 .btn-lg { padding: 14px 32px; font-size: 15px; }
.pv2 .btn-sm { padding: 9px 20px; font-size: 13px; }
.pv2 .section-h2 {
      font-size: clamp(34px, 4.5vw, 52px);
      font-weight: 800; letter-spacing: -0.035em; line-height: 1.06;
      color: var(--black); margin-bottom: 16px;
    }
.pv2 .section-sub {
      font-size: 17px; color: var(--gray-mid); line-height: 1.65;
    }
.pv2 .eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
      text-transform: uppercase; color: var(--gray-mid);
      border: 1px solid rgba(0,0,0,0.12); border-radius: 100px;
      padding: 6px 14px; margin-bottom: 24px;
    }
.pv2 .eyebrow-dark {
      color: rgba(255,255,255,0.55);
      border-color: rgba(255,255,255,0.15);
    }
.pv2 .eyebrow-primary {
      color: var(--primary);
      border-color: rgba(0,103,194,0.2);
      background: rgba(0,103,194,0.04);
    }
.pv2 .eyebrow-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--cyan); box-shadow: 0 0 8px var(--cyan);
      animation: pulse-dot 2s ease-in-out infinite;
      flex-shrink: 0;
    }
@keyframes pulse-dot {
      0%, 100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.5); opacity: 0.6; }
    }
.pv2 .hero {
      background: var(--dark-bg);
      padding: 136px 48px 0;
      min-height: 100vh;
      display: flex; flex-direction: column;
    }
.pv2 .hero-inner {
      max-width: 1200px; margin: 0 auto; width: 100%;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 64px; align-items: center;
      flex: 1; padding-bottom: 72px;
    }
.pv2 .hero-copy { max-width: 560px; }
.pv2 .hero-h1 {
      font-size: clamp(40px, 5vw, 64px);
      font-weight: 700; letter-spacing: -0.045em; line-height: 1.0;
      color: white; margin-bottom: 24px;
    }
.pv2 .hero-sub {
      font-size: clamp(15px, 1.6vw, 18px);
      color: rgba(255,255,255,0.5);
      margin-bottom: 36px; line-height: 1.65; max-width: 460px;
    }
.pv2 .hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.pv2 .hero-pills {
      display: flex; gap: 20px; flex-wrap: wrap;
      padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.07);
    }
.pv2 .hero-pill {
      display: flex; align-items: center; gap: 8px;
      font-size: 12px; font-weight: 600; letter-spacing: 0.05em;
      text-transform: uppercase; color: rgba(255,255,255,0.3);
    }
.pv2 .hero-pill-dot {
      width: 5px; height: 5px; border-radius: 50%;
      background: var(--bright-blue); flex-shrink: 0;
    }
.pv2 .hero-image-wrap {
      position: relative; border-radius: 20px; overflow: hidden;
      aspect-ratio: 4 / 3;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
    }
.pv2 .hero-image-wrap::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 60% 40%, rgba(72,173,255,0.12) 0%, transparent 65%);
    }
.pv2 .hero-image-placeholder {
      position: absolute; inset: 0;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: 12px;
    }
.pv2 .hero-image-placeholder svg {
      width: 40px; height: 40px; opacity: 0.15;
    }
.pv2 .hero-image-placeholder-label {
      font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
      text-transform: uppercase; color: rgba(255,255,255,0.15);
    }
.pv2 .hero-badge {
      position: absolute; bottom: 24px; left: 24px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      backdrop-filter: blur(12px);
      border-radius: 12px; padding: 14px 20px;
      display: flex; align-items: center; gap: 14px;
    }
.pv2 .hero-badge-icon {
      width: 36px; height: 36px; border-radius: 8px;
      background: var(--primary);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
.pv2 .hero-badge-icon svg { width: 18px; height: 18px; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.pv2 .hero-badge-text { display: flex; flex-direction: column; gap: 2px; }
.pv2 .hero-badge-val { font-size: 16px; font-weight: 700; color: white; letter-spacing: -0.03em; line-height: 1; }
.pv2 .hero-badge-desc { font-size: 11px; color: rgba(255,255,255,0.4); font-weight: 500; }
.pv2 .logos-section {
      background: white;
      border-bottom: 1px solid rgba(0,0,0,0.06);
      padding: 40px 0; overflow: hidden;
    }
.pv2 .logos-label {
      text-align: center; font-size: 12px; font-weight: 600;
      letter-spacing: 0.06em; text-transform: uppercase;
      color: var(--gray-sub); margin-bottom: 28px; padding: 0 48px;
    }
.pv2 .logos-track-wrap { position: relative; overflow: hidden; }
.pv2 .logos-track-wrap::before, .pv2 .logos-track-wrap::after {
      content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
    }
.pv2 .logos-track-wrap::before { left: 0; background: linear-gradient(to right, white, transparent); }
.pv2 .logos-track-wrap::after { right: 0; background: linear-gradient(to left,  white, transparent); }
.pv2 .logos-track {
      display: flex; gap: 64px; width: max-content;
      animation: marquee 28s linear infinite;
    }
.pv2 .logos-track:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.pv2 .logo-text {
      font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
      text-transform: uppercase; color: rgba(0,0,0,0.2); white-space: nowrap;
      transition: color 0.2s;
    }
.pv2 .logo-text:hover { color: rgba(0,0,0,0.45); }
.pv2 .section { padding: 96px 48px; }
.pv2 .container { max-width: 1200px; margin: 0 auto; }
.pv2 .section-header { text-align: center; margin-bottom: 64px; }
.pv2 .bg-white { background: #ffffff; }
.pv2 .bg-light { background: var(--bg); }
.pv2 .how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pv2 .cycle-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.pv2 .how-card {
      background: white; border: 1px solid rgba(0,0,0,0.07);
      border-radius: var(--radius-card); padding: 40px 32px;
      transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
    }
.pv2 .how-card:hover {
      box-shadow: 0 20px 56px rgba(0,0,0,0.07);
      border-color: rgba(0,103,194,0.18); transform: translateY(-4px);
    }
.pv2 .how-step {
      font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
      text-transform: uppercase; color: var(--primary); margin-bottom: 16px; display: block;
    }
.pv2 .how-icon {
      width: 48px; height: 48px; border-radius: 12px;
      background: rgba(0,103,194,0.08);
      display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
    }
.pv2 .how-icon svg { width: 22px; height: 22px; stroke: var(--primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.pv2 .how-title {
      font-size: 19px; font-weight: 700; letter-spacing: -0.025em;
      color: var(--black); margin-bottom: 12px; line-height: 1.15;
    }
.pv2 .how-desc { font-size: 13.5px; color: var(--gray-mid); line-height: 1.62; }
.pv2 .edge-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.pv2 .edge-card {
      background: white; border: 1px solid rgba(0,0,0,0.07);
      border-radius: var(--radius-card); padding: 40px 32px;
      transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
    }
.pv2 .edge-card:hover {
      box-shadow: 0 20px 56px rgba(0,0,0,0.07);
      border-color: rgba(0,103,194,0.18); transform: translateY(-4px);
    }
.pv2 .edge-icon {
      width: 48px; height: 48px; border-radius: 12px;
      background: rgba(0,103,194,0.08);
      display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
    }
.pv2 .edge-icon svg { width: 22px; height: 22px; stroke: var(--primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.pv2 .edge-title {
      font-size: 20px; font-weight: 700; letter-spacing: -0.025em;
      color: var(--black); margin-bottom: 12px; line-height: 1.15;
    }
.pv2 .edge-desc { font-size: 13.5px; color: var(--gray-mid); line-height: 1.62; }
.pv2 .suite-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.pv2 .suite-card {
      background: white; border: 1px solid rgba(0,0,0,0.07);
      border-radius: var(--radius-card); padding: 40px 36px;
      transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
    }
.pv2 .suite-card:hover {
      box-shadow: 0 20px 56px rgba(0,0,0,0.07);
      border-color: rgba(0,103,194,0.18); transform: translateY(-4px);
    }
.pv2 .suite-icon {
      width: 48px; height: 48px; border-radius: 12px;
      background: rgba(0,103,194,0.08);
      display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
    }
.pv2 .suite-icon svg { width: 22px; height: 22px; stroke: var(--primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.pv2 .suite-name {
      font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em;
      text-transform: uppercase; color: var(--primary); margin-bottom: 10px; display: block;
    }
.pv2 .suite-question {
      font-size: 21px; font-weight: 700; letter-spacing: -0.025em;
      color: var(--black); margin-bottom: 14px; line-height: 1.25;
    }
.pv2 .suite-desc { font-size: 14px; color: var(--gray-mid); line-height: 1.62; margin-bottom: 24px; }
.pv2 .suite-modules { display: flex; flex-wrap: wrap; gap: 8px; }
.pv2 .module-pill {
      font-size: 11.5px; font-weight: 600; color: var(--gray-mid);
      background: var(--bg); border: 1px solid rgba(0,0,0,0.08);
      border-radius: 100px; padding: 6px 14px;
    }
.pv2 .pricing-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
      max-width: 880px; margin: 0 auto;
    }
.pv2 .pricing-card {
      background: white; border: 1px solid rgba(0,0,0,0.07);
      border-radius: var(--radius-card); padding: 44px 36px;
      transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
    }
.pv2 .pricing-card:hover {
      box-shadow: 0 20px 56px rgba(0,0,0,0.07);
      border-color: rgba(0,103,194,0.18); transform: translateY(-4px);
    }
.pv2 .pricing-tier {
      font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--primary); margin-bottom: 14px; display: block;
    }
.pv2 .pricing-title {
      font-size: 24px; font-weight: 800; letter-spacing: -0.03em;
      color: var(--black); margin-bottom: 14px; line-height: 1.2;
    }
.pv2 .pricing-desc { font-size: 14.5px; color: var(--gray-mid); line-height: 1.65; margin-bottom: 28px; }
.pv2 .faq-list { max-width: 720px; margin: 0 auto; }
.pv2 .faq-item { border-bottom: 1px solid rgba(0,0,0,0.07); padding: 28px 0; }
.pv2 .faq-q {
      font-size: 17px; font-weight: 700; color: var(--black);
      cursor: pointer; display: flex; justify-content: space-between; align-items: center;
      letter-spacing: -0.02em; user-select: none;
    }
.pv2 .faq-icon {
      width: 24px; height: 24px; border-radius: 50%;
      border: 1.5px solid rgba(0,0,0,0.14);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; transition: transform 0.25s, background 0.25s;
      font-size: 16px; color: var(--gray-sub); font-weight: 400;
    }
.pv2 .faq-item.open .faq-icon { transform: rotate(45deg); background: var(--primary); border-color: var(--primary); color: white; }
.pv2 .faq-a {
      font-size: 15px; color: var(--gray-mid); line-height: 1.65;
      max-height: 0; overflow: hidden; transition: max-height 0.35s ease, margin-top 0.25s;
    }
.pv2 .faq-item.open .faq-a { max-height: 260px; margin-top: 16px; }
.pv2 .cta-section {
      background: var(--primary);
      text-align: center; padding: 120px 48px;
    }
.pv2 .cta-h2 {
      font-size: clamp(34px, 4vw, 54px); font-weight: 800;
      letter-spacing: -0.04em; line-height: 1.06; color: white;
      margin: 0 auto 20px; max-width: 680px;
    }
.pv2 .cta-sub {
      font-size: 17px; color: rgba(255,255,255,0.6);
      max-width: 460px; margin: 0 auto 40px; line-height: 1.65;
    }
.pv2 .cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.pv2 .btn-cta-white { background: white; color: var(--primary); font-weight: 600; border-radius: var(--radius-btn); }
.pv2 .btn-cta-white:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.18); transform: translateY(-1px); }
.pv2 .btn-cta-outline {
      background: transparent; color: white;
      border: 1.5px solid rgba(255,255,255,0.35);
      border-radius: var(--radius-btn); font-weight: 600;
    }
.pv2 .btn-cta-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }
.pv2 .reveal {
      opacity: 0; transform: translateY(24px);
      transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1);
    }
.pv2 .reveal.in { opacity: 1; transform: none; }
.pv2 .reveal-d1 { transition-delay: 0.08s; }
.pv2 .reveal-d2 { transition-delay: 0.16s; }
.pv2 .reveal-d3 { transition-delay: 0.24s; }
.pv2 .reveal-d4 { transition-delay: 0.32s; }
@media (max-width: 1024px) {
.pv2 .hero-inner { grid-template-columns: 1fr; gap: 48px; padding-bottom: 64px; }
.pv2 .hero-image-wrap { max-width: 600px; }
.pv2 .how-grid { grid-template-columns: 1fr 1fr; }
.pv2 .cycle-grid { grid-template-columns: 1fr 1fr; }
.pv2 .edge-grid { grid-template-columns: 1fr 1fr; }
.pv2 .suite-grid { grid-template-columns: 1fr; }
.pv2 .pricing-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
.pv2 .section { padding: 64px 24px; }
.pv2 .hero { padding: 120px 24px 0; min-height: auto; }
.pv2 .hero-inner { padding-bottom: 48px; }
.pv2 .nav { padding: 0 24px; }
.pv2 .cta-section { padding: 72px 24px; }
.pv2 .how-grid { grid-template-columns: 1fr; }
.pv2 .cycle-grid { grid-template-columns: 1fr; }
.pv2 .edge-grid { grid-template-columns: 1fr; }
.pv2 .hero-badge { left: 16px; bottom: 16px; }
}

/* ─── Milieu overrides (consolidated) — supersedes the scoped reference CSS above.
   1. The reference relies on scroll-reveal JS we don't load, so force content visible.
   2. Left-align: undoes pages.css `.hero{text-align:center}` leaking in, plus the
      8 Jul review (section headers / CTA / logos label left-aligned).
   3. Images: the reference ships empty placeholder frames. We drop a real image in,
      hide the placeholder chrome, and let the frame hug the image at its natural
      aspect (cropping it looked wrong). Works for a raw <img class="pv-fill"> and
      for Gutenberg's <figure class="pv-fill"><img>.
   NOTE: `.feature-grid .feature-visual` is repeated deliberately — the reference sets
   aspect-ratio there at higher specificity, so a plain `.feature-visual` rule loses.
*/
.pv2 .reveal { opacity: 1 !important; transform: none !important; }

/* left alignment */
.pv2 .hero { text-align: left; }
.pv2 .section-header { text-align: left; margin-left: 0; max-width: none; }
.pv2 .cta-h2, .pv2 .cta-sub, .pv2 .logos-label { text-align: left; }

/* image frames hug their image; placeholder chrome hidden */
.pv2 .hero-image-wrap, .pv2 .feature-visual { position: relative; overflow: hidden; aspect-ratio: auto; height: auto; min-height: 0; }
.pv2 .feature-grid .feature-visual { aspect-ratio: auto; height: auto; min-height: 0; background: transparent; border: 0; }
.pv2 .hero-image-placeholder, .pv2 .feature-visual-label, .pv2 .visual-strips, .pv2 .visual-strip { display: none; }

/* the image itself */
.pv2 .pv-fill { position: static; width: 100%; height: auto; display: block; margin: 0; border-radius: inherit; }
.pv2 .pv-fill img { width: 100%; height: auto; display: block; border-radius: inherit; }
.pv2 .feature-grid .feature-visual img { width: 100%; height: auto; display: block; border-radius: 16px; }

/* FAQ answer: generous ceiling so longer answers do not clip when open */
.pv2 .faq-item.open .faq-a { max-height: 600px; }

/* pages.css .faq-icon draws a blue + via ::before/::after (for the native <details> FAQ);
   the v2 FAQ reuses the class for a text "+", so kill the stray pseudo-cross here only */
.pv2 .faq-icon::before, .pv2 .faq-icon::after { content: none; display: none; }
