    /* ── Reset & Variables ───────────────────────────────────────────────── */
    /* 
       NOTE: The :root, body, html, and * selectors have been removed. 
       This page now relies entirely on the global PomodoTree theme tokens 
       (defined in includes/head.php) for proper light/dark mode support,
       typography, and base layout consistency.
    */
    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    .container {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 20px;
    }

    /* ── Nav ─────────────────────────────────────────────────────────────── */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--bg-glass);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 20px;
      max-width: var(--max-w);
      margin: 0 auto;
    }

    .nav-logo {
      font-size: 17px;
      font-weight: 800;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .nav-links a {
      font-size: 14px;
      color: var(--text-secondary);
      transition: color var(--transition);
    }

    .nav-links a:hover {
      color: var(--text-primary);
    }

    .btn-nav {
      background: var(--accent);
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 8px 18px;
      font-size: 13px;
      font-weight: 700;
      cursor: pointer;
      transition: opacity var(--transition);
    }

    .btn-nav:hover {
      opacity: 0.88;
    }

    /* ── Hero ────────────────────────────────────────────────────────────── */
    .hero {
      padding: 40px 20px 70px;
      text-align: center;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(99, 102, 241, 0.12);
      border: 1px solid rgba(99, 102, 241, 0.3);
      border-radius: 20px;
      padding: 5px 14px;
      font-size: 13px;
      color: var(--accent);
      font-weight: 600;
      margin-bottom: 24px;
    }

    .hero h1 {
      font-size: clamp(32px, 6vw, 62px);
      font-weight: 900;
      line-height: 1.1;
      letter-spacing: -1px;
      margin-bottom: 20px;
    }

    .hero h1 span {
      background: linear-gradient(135deg, #818cf8, #c084fc);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-sub {
      font-size: clamp(16px, 2.5vw, 20px);
      color: var(--text-secondary);
      max-width: 600px;
      margin: 0 auto 36px;
    }

    .hero-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
      margin-bottom: 56px;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, var(--accent), var(--col-long));
      color: #fff;
      border: 1px solid var(--border-hi);
      border-radius: var(--radius);
      padding: 14px 28px;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      text-decoration: none;
      transition: all var(--t);
      box-shadow: 0 6px 20px var(--accent-glow);
    }

    .btn-primary:hover {
      filter: brightness(1.1);
      transform: translateY(-2px) scale(1.02);
      box-shadow: 0 10px 30px var(--accent-glow);
    }

    .btn-primary:active {
      transform: translateY(0);
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--bg-surface);
      color: var(--text-primary);
      border: 1px solid var(--border-hi);
      border-radius: var(--radius);
      padding: 14px 24px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      transition: border-color var(--transition), color var(--transition);
    }

    .btn-ghost:hover {
      border-color: var(--accent);
      color: var(--accent);
      background: var(--col-long-dim);
    }

    .hero-img {
      width: 100%;
      display: block;
      border-radius: 16px;
    }

    .hero-video-wrapper {
      position: relative;
      max-width: 820px;
      width: 100%;
      margin: 0 auto;
      border-radius: 16px;
      border: 1px solid var(--border);
      box-shadow: 0 32px 80px rgba(0, 0, 0, 0.15);
      overflow: hidden;
      /* Keeps border radius on video */
      animation: float-hero 6s ease-in-out infinite;
    }

    @keyframes float-hero {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-8px);
      }
    }

    /* ── Hero Rotator ─────────────────────────────────────────────────── */
    .hero-rotator {
      display: inline-block;
      position: relative;
      min-width: 5ch;
      height: 1em;
      margin-left: 6px;
      vertical-align: baseline;
    }

    .hero-rotator span {
      position: absolute;
      left: 0;
      top: 0;
      opacity: 0;
      transform: translateY(6px);
      animation: hero-rotate 4.5s infinite;
      white-space: nowrap;
      background: linear-gradient(90deg, rgb(255, 77, 165), rgb(123, 97, 255), rgb(47, 214, 255));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero-rotator span::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -7px;
      height: 5px;
      border-radius: 999px;
      background: linear-gradient(90deg, rgb(255, 77, 165), rgb(123, 97, 255), rgb(47, 214, 255));
      transform: scaleX(0);
      transform-origin: left;
      opacity: 0;
      animation: hero-underline 4.5s infinite;
    }

    .hero-rotator span:nth-child(1) {
      animation-delay: 0s;
    }

    .hero-rotator span:nth-child(1)::after {
      animation-delay: 0s;
    }

    .hero-rotator span:nth-child(2) {
      animation-delay: 1.5s;
    }

    .hero-rotator span:nth-child(2)::after {
      animation-delay: 1.5s;
    }

    .hero-rotator span:nth-child(3) {
      animation-delay: 3s;
    }

    .hero-rotator span:nth-child(3)::after {
      animation-delay: 3s;
    }

    @keyframes hero-rotate {
      0% {
        opacity: 0;
        transform: translateY(6px);
      }

      8% {
        opacity: 1;
        transform: translateY(0);
      }

      28% {
        opacity: 1;
        transform: translateY(0);
      }

      36% {
        opacity: 0;
        transform: translateY(-6px);
      }

      100% {
        opacity: 0;
        transform: translateY(-6px);
      }
    }

    @keyframes hero-underline {
      0% {
        opacity: 0;
        transform: scaleX(0);
      }

      10% {
        opacity: 1;
        transform: scaleX(1);
      }

      28% {
        opacity: 1;
        transform: scaleX(1);
      }

      36% {
        opacity: 0;
        transform: scaleX(0);
      }

      100% {
        opacity: 0;
        transform: scaleX(0);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .hero-rotator {
        height: auto;
      }

      .hero-rotator span {
        position: static;
        opacity: 1;
        transform: none;
        animation: none;
      }

      .hero-rotator span::after {
        display: none;
      }

      .hero-rotator span+span {
        display: none;
      }
    }

    /* ── Platforms strip ─────────────────────────────────────────────────── */
    .platforms {
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 18px 20px;
      text-align: center;
    }

    .platforms p {
      font-size: 13px;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 14px;
      font-weight: 600;
    }

    .platform-logos {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 24px;
    }

    .platform-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--bg-surface);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 8px 16px;
      font-size: 13px;
      font-weight: 600;
      color: var(--text-secondary);
      transition: all var(--t);
      cursor: default;
    }

    .platform-pill:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
      border-color: var(--accent);
      color: var(--text-primary);
    }

    .platform-pill img {
      width: 18px;
      height: 18px;
    }

    /* ── Section titles ──────────────────────────────────────────────────── */
    .section-title {
      text-align: center;
      margin-bottom: 56px;
    }

    .section-label {
      display: inline-block;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      color: var(--accent);
      margin-bottom: 12px;
    }

    .section-title h2 {
      font-size: clamp(26px, 4vw, 42px);
      font-weight: 800;
      letter-spacing: -0.5px;
      line-height: 1.2;
    }

    .section-title p {
      font-size: 17px;
      color: var(--text-secondary);
      max-width: 560px;
      margin: 12px auto 0;
    }

    /* ── Features grid ───────────────────────────────────────────────────── */
    .features {
      padding: 90px 20px;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 20px;
    }

    .feature-card {
      background: var(--bg-surface);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 28px;
      transition: border-color var(--transition), transform var(--transition);
    }

    .feature-card:hover {
      border-color: var(--accent);
      transform: translateY(-6px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }

    .feature-icon {
      font-size: 28px;
      margin-bottom: 14px;
    }

    .feature-card h3 {
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .feature-card p {
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.65;
    }

    .premium-badge {
      display: inline-block;
      background: rgba(245, 158, 11, 0.15);
      border: 1px solid rgba(245, 158, 11, 0.3);
      color: var(--gold);
      font-size: 10px;
      font-weight: 700;
      padding: 2px 8px;
      border-radius: 4px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 12px;
    }

    /* ── Pricing ─────────────────────────────────────────────────────────── */
    #pricing {
      padding: 90px 20px;
    }

    .pricing-toggle {
      display: flex;
      justify-content: center;
      margin-bottom: 40px;
      background: var(--bg-surface);
      border: 1px solid var(--border);
      border-radius: 50px;
      padding: 6px;
      width: fit-content;
      margin-left: auto;
      margin-right: auto;
    }

    .toggle-btn {
      background: transparent;
      border: none;
      color: var(--text-secondary);
      padding: 10px 24px;
      font-size: 14px;
      font-weight: 700;
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.2s ease;
      position: relative;
    }

    .toggle-btn.active {
      background: var(--accent);
      color: #fff;
    }

    .toggle-btn .save-badge {
      display: inline-block;
      background: var(--col-focus);
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      padding: 3px 8px;
      border-radius: 10px;
      margin-left: 8px;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
      max-width: 780px;
      margin: 0 auto;
    }

    .plan-card {
      background: var(--bg-surface);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 36px 32px;
      position: relative;
      transition: all var(--t);
    }

    .plan-card:not(.popular):hover {
      border-color: rgba(99, 102, 241, 0.4);
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    }

    .plan-card.popular {
      border-color: var(--accent);
      background: var(--bg-elevated);
      box-shadow: 0 12px 48px var(--accent-glow);
      transform: scale(1.03);
      z-index: 10;
    }

    .plan-card.popular:hover {
      transform: scale(1.05) translateY(-4px);
      box-shadow: 0 20px 60px var(--accent-glow);
    }

    @media (max-width: 800px) {
      .plan-card.popular {
        transform: scale(1);
      }
    }

    .popular-badge {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(135deg, var(--accent), var(--col-long));
      color: #fff;
      font-size: 11px;
      font-weight: 800;
      padding: 4px 16px;
      border-radius: 20px;
      white-space: nowrap;
      letter-spacing: 0.5px;
    }

    .plan-name {
      font-size: 14px;
      font-weight: 700;
      color: var(--text-secondary);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 10px;
    }

    .plan-card.popular .plan-name {
      color: var(--text-primary);
    }

    .plan-price {
      margin-bottom: 6px;
    }

    .plan-amount {
      font-size: 46px;
      font-weight: 900;
      line-height: 1;
      letter-spacing: -2px;
    }

    .plan-period {
      font-size: 15px;
      color: var(--text-secondary);
      font-weight: 400;
    }

    .plan-save {
      display: inline-block;
      background: rgba(16, 185, 129, 0.15);
      border: 1px solid rgba(16, 185, 129, 0.3);
      color: var(--green);
      font-size: 12px;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 6px;
      margin: 8px 0 20px;
    }

    .plan-divider {
      border: none;
      border-top: 1px solid var(--border);
      margin: 20px 0;
    }

    .plan-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 28px;
    }

    .plan-features li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14px;
      color: var(--text-secondary);
    }

    .plan-card.popular .plan-features li {
      color: var(--text-primary);
    }

    .plan-features li .check {
      color: var(--green);
      font-size: 15px;
      flex-shrink: 0;
    }

    .plan-features li .cross {
      color: var(--text-muted);
      font-size: 15px;
      flex-shrink: 0;
    }

    .btn-plan {
      width: 100%;
      padding: 14px;
      border: none;
      border-radius: var(--radius);
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      transition: opacity var(--transition), transform var(--transition);
    }

    .btn-plan:hover {
      opacity: 0.95;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }

    .btn-plan:active {
      transform: translateY(0);
    }

    .btn-plan-free {
      background: var(--bg-surface);
      border: 1px solid var(--border-hi);
      color: var(--text-primary);
    }

    .btn-plan-premium {
      background: linear-gradient(135deg, var(--accent), var(--col-long));
      color: #fff;
      box-shadow: 0 6px 20px var(--accent-glow);
    }

    .plan-note {
      text-align: center;
      font-size: 12px;
      color: var(--text-muted);
      margin-top: 10px;
    }

    .pricing-trust {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 28px;
      margin-top: 48px;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--text-secondary);
    }

    /* ── FAQ ─────────────────────────────────────────────────────────────── */
    .faq {
      padding: 90px 20px;
    }

    .faq-list {
      max-width: 720px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    details {
      background: var(--bg-surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
    }

    summary {
      padding: 18px 20px;
      font-weight: 600;
      font-size: 15px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      list-style: none;
      user-select: none;
    }

    summary::-webkit-details-marker {
      display: none;
    }

    summary::after {
      content: '+';
      font-size: 20px;
      color: var(--text-secondary);
      transition: transform var(--transition);
    }

    details[open] summary::after {
      transform: rotate(45deg);
    }

    details p {
      padding: 0 20px 18px;
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.7;
    }

    /* ── CTA Banner ──────────────────────────────────────────────────────── */
    .cta-banner {
      padding: 80px 20px;
      text-align: center;
      border-top: 1px solid var(--border);
    }

    .cta-banner h2 {
      font-size: clamp(24px, 4vw, 38px);
      font-weight: 800;
      margin-bottom: 16px;
    }

    .cta-banner p {
      color: var(--text-secondary);
      font-size: 17px;
      margin-bottom: 32px;
    }

    /* ── Footer ──────────────────────────────────────────────────────────── */
    footer {
      border-top: 1px solid var(--border);
      padding: 28px 20px;
      text-align: center;
    }

    .footer-inner {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      max-width: var(--max-w);
      margin: 0 auto;
    }

    .footer-links {
      display: flex;
      gap: 24px;
    }

    .footer-links a {
      font-size: 13px;
      color: var(--text-muted);
      transition: color var(--transition);
    }

    .footer-links a:hover {
      color: var(--text-secondary);
    }

    footer p {
      font-size: 13px;
      color: var(--text-muted);
    }

    /* ── Modals ──────────────────────────────────────────────────────────── */
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 200;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(4px);
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .modal-overlay.open {
      display: flex;
    }

    .modal {
      background: var(--bg-surface);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 36px;
      width: min(460px, 100%);
      position: relative;
      animation: modal-in 0.2s ease;
    }

    /* Privacy and policy Modal */
    .policy-modal {
      width: min(980px, 96vw);
      max-height: 88vh;
      padding: 36px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      background: var(--bg-elevated);
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
      border: 1px solid var(--border);
      border-radius: 16px;
    }

    @media (max-width: 600px) {
      .policy-modal {
        padding: 24px;
      }

      .modal {
        padding: 24px;
      }
    }

    .policy-head {
      display: flex;
      flex-direction: column;
      gap: 6px;
      padding-bottom: 12px;
      border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    }

    .policy-eyebrow {
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    .policy-meta {
      font-size: 13px;
      color: var(--text-secondary);
    }

    .policy-body {
      overflow: auto;
      padding-right: 12px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      flex: 1 1 auto;
      min-height: 0;
    }

    .policy-body h4 {
      font-size: 17px;
      margin-top: 12px;
      color: var(--text-primary);
    }

    .policy-body h4+p {
      margin-top: 2px;
    }

    .policy-body p {
      font-size: 15px;
      color: var(--text-secondary);
      line-height: 1.75;
    }

    .policy-list {
      padding-left: 20px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .policy-list li {
      font-size: 15px;
      color: var(--text-secondary);
      line-height: 1.75;
    }

    .policy-body a {
      color: var(--accent);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .policy-body::-webkit-scrollbar {
      width: 8px;
    }

    .policy-body::-webkit-scrollbar-track {
      background: rgba(15, 23, 42, 0.35);
      border-radius: 8px;
    }

    .policy-body::-webkit-scrollbar-thumb {
      background: rgba(148, 163, 184, 0.45);
      border-radius: 8px;
    }

    @media (max-width: 800px) {
      .policy-modal {
        width: min(96vw, 900px);
      }
    }

    @media (max-width: 600px) {
      .policy-modal {
        padding: 18px;
        max-height: 92vh;
      }

      .policy-body {
        gap: 12px;
      }
    }

    /* privacy modal end */

    @keyframes modal-in {
      from {
        opacity: 0;
        transform: translateY(16px) scale(0.97);
      }

      to {
        opacity: 1;
        transform: none;
      }
    }

    .modal-close {
      position: absolute;
      top: 16px;
      right: 16px;
      background: none;
      border: none;
      color: var(--text-secondary);
      font-size: 22px;
      cursor: pointer;
      line-height: 1;
      padding: 4px 8px;
    }

    .modal-close:hover {
      color: var(--text-primary);
    }

    .modal h3 {
      font-size: 22px;
      font-weight: 800;
      margin-bottom: 8px;
    }

    .modal .modal-sub {
      font-size: 14px;
      color: var(--text-secondary);
      margin-bottom: 24px;
      line-height: 1.6;
    }

    /* Success modal — license key display */
    .key-box {
      background: var(--bg-elevated);
      border: 1.5px solid var(--accent);
      border-radius: var(--radius);
      padding: 16px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 20px;
    }

    .key-value {
      font-family: 'SF Mono', 'Fira Code', 'Courier New', monospace;
      font-size: 14px;
      color: var(--text-primary);
      letter-spacing: 0.5px;
      word-break: break-all;
    }

    .btn-copy {
      background: var(--accent);
      color: #fff;
      border: none;
      border-radius: 7px;
      padding: 7px 14px;
      font-size: 13px;
      font-weight: 700;
      cursor: pointer;
      white-space: nowrap;
      transition: opacity var(--transition);
      flex-shrink: 0;
    }

    .btn-copy:hover {
      opacity: 0.88;
    }

    .steps-list {
      list-style: none;
      counter-reset: steps;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .steps-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 14px;
      color: var(--text-secondary);
      counter-increment: steps;
    }

    .steps-list li::before {
      content: counter(steps);
      background: var(--accent);
      color: #fff;
      font-size: 12px;
      font-weight: 800;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }

    /* Email input for checkout modal */
    .input-field {
      width: 100%;
      padding: 12px 14px;
      background: var(--bg-elevated);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      color: var(--text-primary);
      font-size: 14px;
      outline: none;
      transition: border-color var(--transition);
      margin-bottom: 8px;
    }

    .input-field:focus {
      border-color: var(--accent);
    }

    .field-error {
      color: var(--red);
      font-size: 12px;
      min-height: 18px;
      margin-bottom: 12px;
    }

    .btn-full {
      width: 100%;
      padding: 13px;
      border: none;
      border-radius: var(--radius);
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      background: linear-gradient(135deg, var(--accent), var(--col-long));
      color: #fff;
      transition: opacity var(--transition);
    }

    .btn-full:hover {
      opacity: 0.9;
    }

    .btn-full:disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }

    /* ── Toast ───────────────────────────────────────────────────────────── */
    .toast {
      position: fixed;
      bottom: 24px;
      left: 50%;
      transform: translateX(-50%) translateY(80px);
      background: var(--bg-elevated);
      border: 1px solid var(--border);
      color: var(--text-primary);
      padding: 12px 20px;
      border-radius: 10px;
      font-size: 14px;
      font-weight: 500;
      z-index: 999;
      transition: transform 0.3s ease;
      pointer-events: none;
      white-space: nowrap;
    }

    .toast.show {
      transform: translateX(-50%) translateY(0);
    }

    /* ── Payment cancelled banner ────────────────────────────────────────── */
    .banner {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 300;
      padding: 14px 20px;
      text-align: center;
      font-size: 14px;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
    }

    .banner-cancelled {
      background: var(--bg-surface);
      border-bottom: 1px solid var(--border);
      color: var(--text-secondary);
    }

    .banner-close {
      background: none;
      border: none;
      color: inherit;
      cursor: pointer;
      font-size: 20px;
      line-height: 1;
    }

    /* ── Responsive ──────────────────────────────────────────────────────── */
    @media (max-width: 640px) {
      .nav-links {
        display: none;
      }

      .hero {
        padding: 60px 20px 56px;
      }

      .hero-ctas {
        flex-direction: column;
        align-items: center;
      }

      .btn-primary,
      .btn-ghost {
        width: 100%;
        max-width: 320px;
        justify-content: center;
      }
    }

    /* ── HOW IT WORKS ── */
    .how {
      padding: clamp(40px, 6vw, 64px) 5%;
      background: var(--bg-surface);
    }

    .how-inner {
      max-width: 1160px;
      margin: 0 auto;
    }

    .how-header {
      text-align: center;
      margin-bottom: 64px;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 0;
      position: relative;
    }

    .steps::before {
      content: '';
      position: absolute;
      top: 36px;
      left: 14%;
      right: 14%;
      height: 2px;
      background: linear-gradient(90deg, transparent, rgba(37, 99, 235, .5), rgba(6, 182, 212, .5), transparent);
    }

    .step {
      text-align: center;
      padding: 0 20px;
      position: relative;
      z-index: 1;
    }

    .step-num {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: var(--bg-elevated);
      border: 2px solid var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Syne', sans-serif;
      font-size: 1.4rem;
      font-weight: 800;
      margin: 0 auto 24px;
      box-shadow: 0 0 30px rgba(37, 99, 235, .3);
    }

    .step h3 {
      font-family: 'Syne', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .step p {
      color: var(--text-secondary);
      font-size: .88rem;
      line-height: 1.6;
    }

    /* ── SCREENSHOT SHOWCASE ── */
    .showcase {
      padding: clamp(40px, 6vw, 64px) 5%;
    }

    .showcase-inner {
      max-width: 1160px;
      margin: 0 auto;
    }

    .showcase-header {
      text-align: center;
      margin-bottom: 56px;
    }

    .tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      margin-bottom: 40px;
    }

    .tab-btn {
      background: var(--bg-elevated);
      border: 1px solid var(--border);
      color: var(--text-secondary);
      border-radius: 50px;
      padding: 9px 20px;
      font-size: .85rem;
      font-weight: 500;
      cursor: pointer;
      transition: all .2s;
    }

    .tab-btn.active {
      background: linear-gradient(135deg, #818cf8, #c084fc);
      border-color: transparent;
      color: #fff;
    }

    .tab-btn:hover:not(.active) {
      background: var(--bg-surface);
      border-color: var(--col-long);
      color: var(--text-primary);
      transform: translateY(-2px);
    }

    .tab-content {
      display: none;
    }

    .tab-content.active {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }

    .tab-info h3 {
      font-family: 'Syne', sans-serif;
      font-size: 1.5rem;
      font-weight: 800;
      margin-bottom: 14px;
    }

    .tab-info p {
      color: var(--text-secondary);
      font-size: .95rem;
      margin-bottom: 20px;
      line-height: 1.7;
    }

    .tab-bullets {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .tab-bullets li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: var(--text-secondary);
      font-size: .9rem;
    }

    .tab-bullets li::before {
      content: '→';
      color: var(--accent);
      font-weight: 700;
      flex-shrink: 0;
    }

    .tab-img {
      border-radius: 16px;
      border: 1px solid var(--border);
      box-shadow: 0 30px 80px rgba(0, 0, 0, .4);
      overflow: hidden;
      max-height: 480px;
    }

    .tab-img img {
      width: 100%;
      display: block;
    }

    /* ── Responsive adjustments ───────────────────────────────────────────── */
    @media (max-width: 860px) {
      .tab-content.active {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .tab-info {
        text-align: center;
      }

      .tab-bullets {
        align-items: center;
      }

      .hero-video-wrapper {
        border-radius: 16px;
      }

      .how-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 600px) {
      .hero {
        padding: 40px 16px 60px;
      }

      .section-title h2 {
        font-size: 28px;
      }

      .pricing-grid {
        grid-template-columns: 1fr;
      }

      .platforms {
        padding: 12px;
      }
    }