    /* ── Reset & Tokens ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --pe-accent: #f15b46;
      --pe-accent-hover: #d94a37;
      --pe-dark-bg: #0a0a1a;
      --pe-dark-surface: #12122a;
      --pe-dark-text: #f0f0f0;
      --pe-dark-muted: #8888a0;
      --pe-light-bg: #f8f9fa;
      --pe-light-surface: #ffffff;
      --pe-light-text: #1a1a2e;
      --pe-light-muted: #6b7280;
      --pe-border: #e2e8f0;
      --pe-radius: 12px;
      --pe-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
      --pe-shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      color: var(--pe-light-text);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    /* ── Utilities ── */
    .container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
    .section-pad { padding: 80px 0; }
    .text-center { text-align: center; }

    .section-title {
      font-size: 36px; font-weight: 800; line-height: 1.2;
      margin-bottom: 16px;
    }
    .section-subtitle {
      font-size: 18px; color: var(--pe-light-muted); line-height: 1.6;
      max-width: 600px; margin: 0 auto 48px;
    }

    /* ── Animations ── */
    .animate-in {
      opacity: 0; transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .animate-in.is-visible { opacity: 1; transform: translateY(0); }

    /* ── Buttons ── */
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 28px; font-size: 16px; font-weight: 700;
      border-radius: var(--pe-radius); border: none; cursor: pointer;
      text-decoration: none; transition: all 0.15s; font-family: inherit;
    }
    .btn-primary {
      background: var(--pe-accent); color: #fff;
    }
    .btn-primary:hover { background: var(--pe-accent-hover); transform: translateY(-1px); }
    .btn-ghost {
      background: transparent; color: var(--pe-dark-text);
      border: 2px solid rgba(255,255,255,0.25);
    }
    .btn-ghost:hover { border-color: rgba(255,255,255,0.5); transform: translateY(-1px); }
    .btn-lg { padding: 16px 32px; font-size: 18px; }

    /* ══════════════════════════════
       SECTION 1: HERO
    ══════════════════════════════ */
    .hero {
      background: linear-gradient(165deg, var(--pe-dark-bg) 0%, var(--pe-dark-surface) 60%, #1a1a35 100%);
      position: relative; overflow: hidden;
      padding: 120px 0 80px;
    }
    .hero::before {
      content: ''; position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
      width: 800px; height: 800px;
      background: radial-gradient(circle, rgba(241,91,70,0.08) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-content { position: relative; z-index: 1; display: flex; align-items: center; gap: 48px; }
    .hero-text { flex: 1; }
    .hero-video { flex: 1; min-width: 0; border-radius: 12px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.4); }
    wistia-player[media-id='wjn00rzpci']:not(:defined) {
      background: center / contain no-repeat url('https://fast.wistia.com/embed/medias/wjn00rzpci/swatch');
      display: block; filter: blur(5px); padding-top: 56.25%;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(241,91,70,0.12); color: var(--pe-accent);
      padding: 6px 14px; border-radius: 20px; font-size: 13px; font-weight: 600;
      margin-bottom: 24px; border: 1px solid rgba(241,91,70,0.2);
    }
    .hero h1 {
      font-size: 56px; font-weight: 800; color: var(--pe-dark-text);
      line-height: 1.1; margin-bottom: 16px;
      letter-spacing: -1.5px;
    }
    .hero h1 span { color: var(--pe-accent); }
    .hero-logo { height: 56px; display: block; }
    .footer-logo { height: 20px; display: block; }
    .hero .tagline {
      font-size: 20px; color: var(--pe-dark-muted); max-width: 520px;
      margin: 0 0 8px; line-height: 1.5;
    }
    .hero .subtext {
      font-size: 15px; color: rgba(136,136,160,0.7); margin-bottom: 32px;
    }
    .hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
    .hero .trust {
      font-size: 13px; color: var(--pe-dark-muted); letter-spacing: 0.5px;
    }

    /* ══════════════════════════════
       SECTION 2: LIVE DEMO
    ══════════════════════════════ */
    .demo {
      background: linear-gradient(180deg, #1a1a35 0%, var(--pe-dark-bg) 100%);
      padding: 60px 0 80px; text-align: center;
    }
    .demo h2 {
      font-size: 36px; font-weight: 800; color: var(--pe-dark-text);
      margin-bottom: 8px; letter-spacing: -0.5px;
    }
    .demo .demo-sub {
      font-size: 16px; color: var(--pe-dark-muted); margin-bottom: 40px;
    }
    .demo-tabs {
      display: flex; gap: 8px; justify-content: center; margin-bottom: 32px;
    }
    .demo-tab {
      background: transparent; border: 1.5px solid rgba(255,255,255,0.2);
      color: var(--pe-dark-muted); border-radius: 8px; padding: 10px 20px;
      font-size: 14px; font-weight: 600; cursor: pointer; font-family: inherit;
      transition: all 0.15s;
    }
    .demo-tab:hover { border-color: rgba(255,255,255,0.35); }
    .demo-tab.is-active {
      background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.4);
      color: var(--pe-dark-text);
    }
    .demo-pane { display: none; }
    .demo-pane.is-active { display: block; }
    .demo-player-wrap {
      max-width: 680px; margin: 0 auto 40px;
      border-radius: 16px; overflow: hidden;
      box-shadow: 0 16px 64px rgba(0,0,0,0.4);
    }
    .demo-mock-browser {
      position: relative; max-width: 680px; margin: 0 auto 40px;
      height: 400px; border-radius: 16px 16px 0 0; overflow: hidden;
      background: #1e1e3a; transform: translateZ(0);
      box-shadow: 0 16px 64px rgba(0,0,0,0.4);
    }
    .demo-mock-topbar {
      display: flex; align-items: center; gap: 8px; padding: 12px 16px;
      background: rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .demo-mock-dot {
      width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.1);
    }
    .demo-mock-url {
      flex: 1; background: rgba(255,255,255,0.06); border-radius: 6px;
      padding: 4px 12px; font-size: 12px; color: var(--pe-dark-muted);
      font-family: 'SF Mono', Monaco, Consolas, monospace;
    }
    .demo-bar-iframe {
      width: 100%; height: calc(100% - 37px); border: none; display: block;
      background: #1e1e3a;
    }
    .demo-mock-content { padding: 24px 20px; }
    .demo-mock-line {
      height: 10px; border-radius: 4px; background: rgba(255,255,255,0.04);
      margin-bottom: 10px;
    }
    .demo-mock-line:nth-child(1) { width: 60%; }
    .demo-mock-line:nth-child(2) { width: 85%; }
    .demo-mock-line:nth-child(3) { width: 45%; }
    .demo-mock-line:nth-child(4) { width: 70%; }
    .demo-mock-line:nth-child(5) { width: 55%; }
    .demo-mock-line:nth-child(6) { width: 80%; }
    .demo-mock-line:nth-child(7) { width: 40%; }
    .demo-mock-line:nth-child(8) { width: 65%; }
    .code-showcase { max-width: 560px; margin: 0 auto; }
    .code-block {
      background: #1e293b; border-radius: 10px;
      padding: 18px 22px; text-align: left;
      overflow-x: auto; border: 1px solid rgba(255,255,255,0.06);
    }
    .code-block code {
      font-family: 'SF Mono', Monaco, 'Cascadia Code', Consolas, monospace;
      font-size: 13px; color: #e2e8f0; white-space: pre-wrap;
    }
    .code-block .tag { color: #f472b6; }
    .code-block .attr { color: #67e8f9; }
    .code-block .val { color: #a5f3a3; }
    .code-caption {
      font-size: 14px; color: var(--pe-dark-muted); margin-top: 12px;
      font-weight: 600;
    }

    /* ══════════════════════════════
       SECTION 3: FEATURES
    ══════════════════════════════ */
    .features { background: var(--pe-light-bg); }
    .features-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .feature-card {
      background: var(--pe-light-surface); border-radius: var(--pe-radius);
      padding: 28px; border: 1px solid var(--pe-border);
      transition: all 0.2s;
    }
    .feature-card:hover { transform: translateY(-2px); box-shadow: var(--pe-shadow-lg); }
    .feature-icon {
      width: 40px; height: 40px; border-radius: 10px;
      background: rgba(241,91,70,0.08); color: var(--pe-accent);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 14px;
    }
    .feature-icon svg { width: 20px; height: 20px; }
    .feature-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
    .feature-card p { font-size: 14px; color: var(--pe-light-muted); line-height: 1.5; }

    /* ══════════════════════════════
       SECTION 4: HOW IT WORKS
    ══════════════════════════════ */
    .how { background: var(--pe-light-surface); }
    .steps { display: flex; gap: 32px; justify-content: center; align-items: flex-start; max-width: 900px; margin: 0 auto 40px; }
    .step { flex: 1; text-align: center; position: relative; }
    .step-num {
      width: 48px; height: 48px; border-radius: 50%;
      background: var(--pe-accent); color: #fff;
      display: flex; align-items: center; justify-content: center;
      font-size: 20px; font-weight: 800; margin: 0 auto 14px;
    }
    .step h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
    .step p { font-size: 14px; color: var(--pe-light-muted); line-height: 1.5; }
    .step-connector {
      position: absolute; top: 24px; left: calc(50% + 32px); right: calc(-50% + 32px);
      height: 2px; background: var(--pe-border);
    }
    .step:last-child .step-connector { display: none; }

    /* ══════════════════════════════
       SECTION 5: PRICING
    ══════════════════════════════ */
    .pricing { background: var(--pe-light-bg); }
    .pricing-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
      max-width: 860px; margin: 0 auto; align-items: start;
    }
    .pricing-card {
      background: var(--pe-light-surface); border-radius: 16px;
      padding: 40px; border: 2px solid var(--pe-border);
      box-shadow: var(--pe-shadow-lg); text-align: center; position: relative;
    }
    .pricing-card.is-featured { border-color: var(--pe-accent); transform: scale(1.03); }
    .pricing-launch-tag {
      position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
      background: #10b981; color: #fff; font-size: 12px; font-weight: 700;
      text-transform: uppercase; letter-spacing: 1px; padding: 4px 16px;
      border-radius: 20px; white-space: nowrap;
    }
    .pricing-popular {
      position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
      background: var(--pe-accent); color: #fff; font-size: 12px; font-weight: 700;
      text-transform: uppercase; letter-spacing: 1px; padding: 4px 16px;
      border-radius: 20px; white-space: nowrap;
    }
    .pricing-label {
      font-size: 13px; font-weight: 700; text-transform: uppercase;
      letter-spacing: 1.5px; color: var(--pe-accent); margin-bottom: 8px;
    }
    .pricing-amount {
      font-size: 56px; font-weight: 800; line-height: 1; margin-bottom: 4px;
      letter-spacing: -2px;
    }
    .pricing-original {
      font-size: 28px; font-weight: 600; color: var(--pe-light-muted);
      text-decoration: line-through; margin-left: 8px; letter-spacing: -1px;
      vertical-align: middle; opacity: 0.5;
    }
    .pricing-period { font-size: 15px; color: var(--pe-light-muted); margin-bottom: 28px; }
    .pricing-features { list-style: none; text-align: left; margin-bottom: 32px; }
    .pricing-features li {
      padding: 8px 0; font-size: 15px;
      display: flex; align-items: center; gap: 10px;
      border-bottom: 1px solid var(--pe-border);
    }
    .pricing-features li:last-child { border: none; }
    .pricing-features .pricing-divider {
      padding: 12px 0 4px; font-size: 12px; font-weight: 700;
      text-transform: uppercase; letter-spacing: 1px; color: var(--pe-accent);
      border-bottom: none; display: block;
    }
    .pricing-check {
      width: 20px; height: 20px; border-radius: 50%;
      background: rgba(241,91,70,0.1); color: var(--pe-accent);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .pricing-check svg { width: 12px; height: 12px; }
    .pricing-toggle {
      display: inline-flex; align-items: center; gap: 12px;
      margin-bottom: 40px; font-size: 15px; color: var(--pe-light-muted);
    }
    .pricing-toggle-track {
      width: 44px; height: 24px; background: var(--pe-border); border-radius: 12px;
      cursor: pointer; position: relative; transition: background 0.2s;
      border: none; padding: 0;
    }
    .pricing-toggle-track.is-annual { background: var(--pe-accent); }
    .pricing-toggle-thumb {
      width: 18px; height: 18px; background: #fff; border-radius: 50%;
      position: absolute; top: 3px; left: 3px; transition: left 0.2s;
    }
    .pricing-toggle-track.is-annual .pricing-toggle-thumb { left: 23px; }
    .pricing-toggle-label { font-weight: 600; cursor: pointer; }
    .pricing-toggle-label.is-active { color: var(--pe-light-text); }
    .pricing-save {
      background: rgba(34,197,94,0.1); color: #16a34a; font-size: 12px;
      font-weight: 700; padding: 2px 8px; border-radius: 10px;
    }
    /* AI feature badges */
    .feature-badge {
      display: inline-flex; align-items: center; gap: 4px;
      background: rgba(139,92,246,0.1); color: #7c3aed; font-size: 11px;
      font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
      padding: 2px 8px; border-radius: 6px; margin-left: 8px; vertical-align: middle;
    }
    .feature-card.is-ai { border-color: rgba(139,92,246,0.2); }
    .feature-card.is-ai .feature-icon { background: rgba(139,92,246,0.08); color: #7c3aed; }

    /* ══════════════════════════════
       SECTION 6: COMPARISON
    ══════════════════════════════ */
    .comparison { background: var(--pe-light-surface); }
    .comparison-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 32px; max-width: 800px; margin: 0 auto;
    }
    .comparison-col { text-align: left; }
    .comparison-col h3 {
      font-size: 18px; font-weight: 700; margin-bottom: 16px;
      display: flex; align-items: center; gap: 8px;
    }
    .comparison-col ul { list-style: none; }
    .comparison-col li {
      padding: 8px 0; font-size: 14px; color: var(--pe-light-muted);
      display: flex; align-items: center; gap: 8px; line-height: 1.4;
      border-bottom: 1px solid var(--pe-border);
    }
    .comparison-col li:last-child { border: none; }
    .comparison-col .check-icon { color: #22c55e; flex-shrink: 0; }
    .comparison-col .x-icon { color: #ef4444; flex-shrink: 0; }
    .col-podembed h3 { color: var(--pe-accent); }
    .col-others h3 { color: var(--pe-light-muted); }

    /* ══════════════════════════════
       SECTION 7: FAQ
    ══════════════════════════════ */
    .faq { background: var(--pe-light-bg); }
    .faq-list { max-width: 720px; margin: 0 auto; }
    .faq-item {
      background: var(--pe-light-surface); border-radius: var(--pe-radius);
      border: 1px solid var(--pe-border); margin-bottom: 10px;
      overflow: hidden;
    }
    .faq-question {
      width: 100%; padding: 18px 22px;
      background: none; border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: space-between;
      font-size: 15px; font-weight: 600; color: var(--pe-light-text);
      font-family: inherit; text-align: left; gap: 12px;
    }
    .faq-question:hover { color: var(--pe-accent); }
    .faq-arrow {
      width: 20px; height: 20px; flex-shrink: 0;
      transition: transform 0.25s; color: var(--pe-light-muted);
    }
    .faq-item.is-open .faq-arrow { transform: rotate(180deg); }
    .faq-answer {
      max-height: 0; overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
    }
    .faq-item.is-open .faq-answer { max-height: 300px; }
    .faq-answer-inner {
      padding: 0 22px 18px;
      font-size: 14px; color: var(--pe-light-muted); line-height: 1.7;
    }

    /* ══════════════════════════════
       SECTION 8: FINAL CTA
    ══════════════════════════════ */
    .final-cta {
      background: linear-gradient(165deg, var(--pe-dark-bg) 0%, var(--pe-dark-surface) 100%);
      text-align: center; padding: 80px 0;
      position: relative; overflow: hidden;
    }
    .final-cta::before {
      content: ''; position: absolute; bottom: -30%; left: 50%; transform: translateX(-50%);
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(241,91,70,0.06) 0%, transparent 70%);
      pointer-events: none;
    }
    .final-cta h2 {
      font-size: 36px; font-weight: 800; color: var(--pe-dark-text);
      margin-bottom: 12px; position: relative; letter-spacing: -0.5px;
    }
    .final-cta p {
      font-size: 17px; color: var(--pe-dark-muted); margin-bottom: 28px;
      position: relative;
    }
    .final-cta .btn { position: relative; }

    /* ══════════════════════════════
       FOOTER
    ══════════════════════════════ */
    .footer {
      background: #07070f; padding: 28px 0;
      color: var(--pe-dark-muted); font-size: 13px;
    }
    .footer-inner {
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 12px;
    }
    .footer-brand { font-weight: 700; color: var(--pe-dark-text); font-size: 15px; }
    .footer-links { display: flex; gap: 20px; }
    .footer-links a {
      color: var(--pe-dark-muted); text-decoration: none; transition: color 0.15s;
    }
    .footer-links a:hover { color: var(--pe-accent); }

    /* ══════════════════════════════
       RESPONSIVE
    ══════════════════════════════ */
    @media (max-width: 1024px) {
      .features-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .hero { padding: 80px 0 60px; }
      .hero-content { flex-direction: column; text-align: center; }
      .hero .tagline { margin: 0 auto 8px; }
      .hero-logo { margin: 0 auto; }
      .hero-ctas { justify-content: center; }
      .hero-video { width: 100%; max-width: 520px; }
      .hero h1 { font-size: 40px; letter-spacing: -1px; }
      .hero-logo { height: 40px; }
      .hero .tagline { font-size: 17px; }
      .section-title { font-size: 28px; }
      .section-subtitle { font-size: 16px; }
      .section-pad { padding: 56px 0; }
      .steps { flex-direction: column; gap: 24px; max-width: 400px; }
      .step-connector { display: none !important; }
      .comparison-grid { grid-template-columns: 1fr; }
      .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
      .pricing-card.is-featured { transform: none; }
      .demo h2 { font-size: 28px; }
    }
    @media (max-width: 480px) {
      .pricing-grid { max-width: 100%; }
      .hero h1 { font-size: 34px; }
      .hero-logo { height: 34px; }
      .hero .tagline { font-size: 16px; }
      .features-grid { grid-template-columns: 1fr; }
      .hero-ctas { flex-direction: column; align-items: center; }
      .btn-lg { width: 100%; justify-content: center; }
      .pricing-card { padding: 28px; }
      .pricing-amount { font-size: 44px; }
    }
