    /* ═══════════════════════════════════════════════════
       ADRISER LANDING PAGE
       Design System: Dark Glassmorphism
       ═══════════════════════════════════════════════════ */

    /* ─── Reset & Base ─── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 64px; }
    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--font-body);
      font-feature-settings: "ss01", "ss02";
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    body::after {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 9000;
      background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255,255,255,0.012) 2px,
        rgba(255,255,255,0.012) 4px
      );
    }

    /* ─── Design Tokens ─── colors derived from the AdRiser logo */
    :root {
      /* Fonts — W'F brand stack (Fontshare) */
      --font-display: 'Cabinet Grotesk', 'Inter', system-ui, sans-serif;
      --font-body:    'Cabinet Grotesk', 'Inter', system-ui, sans-serif;
      --font-italic:  'Zodiak', 'Cabinet Grotesk', Georgia, serif;
      --font-numeric: 'Clash Display', 'Cabinet Grotesk', system-ui, sans-serif;
      --font-mono:    'Fira Code', ui-monospace, 'JetBrains Mono', monospace;

      /* Video-derived palette (hero-owl-branded.mp4)
         - #111827 — night sky (warm slate)
         - #FF5A00 — logo electric orange
         - #FFB040 — street lantern amber
         - #e0ddd5 — building stone (warm bone) */
      --navy-deep:   #0c1019;
      --navy:        #111827;
      --navy-2:      #1a2236;
      --navy-3:      #1f2a40;
      --navy-4:      #253048;
      --accent:      #FF5A00;
      --accent-2:    #FFB040;
      --accent-glow: rgba(255, 90, 0, 0.28);
      --bone:        #e0ddd5;
      --bone-dim:    rgba(224,221,213,0.66);
      --bone-mute:   rgba(224,221,213,0.42);
      --owl-grey:    #4a5a78;

      /* Semantic tokens */
      --bg:           var(--navy);
      --card:         var(--navy-2);
      --card-border:  rgba(255,255,255,0.06);
      --card-edge:    rgba(255,90,0,0.18);
      --text:         var(--bone);
      --text-dim:     var(--bone-dim);
      --text-mute:    var(--bone-mute);
      --success: #22c55e;
      --danger:  #ef4444;
      --warning: #f59e0b;
      --info:    #60a5fa;
      --glass-bg:     rgba(17, 24, 39, 0.78);
      --glass-border: rgba(255,255,255,0.05);
      --glass-blur:   blur(24px);

      /* Sharp corners — match the logo's square frame + accent dot */
      --radius-sm: 4px;
      --radius-md: 0;
      --radius-lg: 0;
      --radius-xl: 0;
    }

    /* ─── Animations ─── */
    @keyframes fadeSlideUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeSlideDown {
      from { opacity: 0; transform: translateY(-16px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    @keyframes scaleIn {
      from { opacity: 0; transform: scale(0.92); }
      to { opacity: 1; transform: scale(1); }
    }
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.5; }
    }
    @keyframes gradientMove {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }
    @keyframes countUp {
      from { opacity: 0; transform: translateY(8px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes shimmer {
      0% { background-position: -200% 0; }
      100% { background-position: 200% 0; }
    }
    @keyframes glow {
      0%, 100% { box-shadow: 0 0 20px rgba(255, 90, 0, 0.15); }
      50% { box-shadow: 0 0 40px rgba(255, 90, 0, 0.35); }
    }
    @keyframes borderPulse {
      0%, 100% { border-color: rgba(255, 90, 0, 0.35); box-shadow: 0 0 30px rgba(255, 90, 0, 0.1), inset 0 0 30px rgba(255, 90, 0, 0.02); }
      50% { border-color: rgba(255, 90, 0, 0.7); box-shadow: 0 0 40px rgba(255, 90, 0, 0.18), inset 0 0 30px rgba(255, 90, 0, 0.04); }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
      }
      body::after { display: none; }
    }

    /* ─── Layout ─── */
    .lp-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .lp-section {
      padding: 32px 0;
      position: relative;
      z-index: 2;
    }


    /* ─── Navbar — logo lives in the hero video, header is clean nav only ─── */
    .lp-nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: transparent;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      border-bottom: 1px solid transparent;
      transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
    }
    .lp-nav.scrolled {
      background: rgba(17,24,39,0.92);
      backdrop-filter: blur(16px) saturate(140%);
      -webkit-backdrop-filter: blur(16px) saturate(140%);
      border-bottom-color: rgba(255,255,255,0.08);
    }
    .lp-nav-inner {
      max-width: 100%; margin: 0;
      display: flex; align-items: center; justify-content: center;
      padding: 18px 16px;
      gap: 32px;
      position: relative;
    }
    .lp-nav-spacer { flex: 1; }
    .lp-nav-cta-group { position: absolute; right: 18px; }
    .lp-nav-links {
      display: none; gap: 36px; list-style: none;
      align-items: center;
    }
    @media (min-width: 768px) {
      .lp-nav-links { display: inline-flex; }
    }
    .lp-nav-links a {
      color: var(--text); text-decoration: none;
      font-family: var(--font-display);
      font-size: 14px; font-weight: 500;
      letter-spacing: -0.005em;
      transition: color 0.18s ease;
      position: relative;
    }
    .lp-nav-links a::after {
      content: ''; position: absolute;
      left: 0; right: 0; bottom: -6px; height: 2px;
      background: var(--accent);
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.22s ease;
    }
    .lp-nav-links a:hover { color: var(--accent); }
    .lp-nav-links a:hover::after { transform: scaleX(1); }

    .lp-nav-cta-group {
      display: inline-flex; align-items: center; gap: 14px;
    }
    .lp-nav-signin {
      color: var(--text-dim);
      font-family: var(--font-display);
      font-size: 14px; font-weight: 500;
      text-decoration: none;
      transition: color 0.18s ease;
    }
    .lp-nav-signin:hover { color: var(--text); }
    /* Mobile: goły dim-link zlewał się z wideo hero — ghost-button (ciemne szkło + border) dla kontrastu */
    @media (max-width: 767px) {
      .lp-nav-signin {
        color: var(--text);
        font-weight: 600;
        padding: 9px 16px;
        border: 1px solid rgba(255,255,255,0.28);
        border-radius: var(--radius-sm);
        background: rgba(10,14,23,0.55);
        -webkit-backdrop-filter: blur(8px);
        backdrop-filter: blur(8px);
        /* Align height with .lp-nav-cta (min-height: 44px) */
        display: inline-flex;
        align-items: center;
        min-height: 44px;
      }
    }
    .lp-nav-cta {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 11px 22px;
      border-radius: var(--radius-sm);
      background: var(--accent);
      color: #fff;
      font-family: var(--font-display);
      font-size: 13px; font-weight: 700;
      letter-spacing: -0.005em;
      text-decoration: none; border: none; cursor: pointer;
      transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.1s ease;
      box-shadow: 0 4px 18px rgba(255, 90, 0, 0.28);
    }
    .lp-nav-cta:hover {
      background: var(--accent-2);
      box-shadow: 0 6px 28px rgba(255, 90, 0, 0.42);
    }
    .lp-nav-cta:active { transform: scale(0.97); }
    .nav-cta-long { display: none; }
    .nav-cta-short { display: inline; }
    @media (min-width: 768px) {
      .nav-cta-long { display: inline; }
      .nav-cta-short { display: none; }
    }

    /* ═══════════════════════════════════════════════════════════════════
       HERO V4 — video-only (text baked into the video itself)
       ═══════════════════════════════════════════════════════════════════ */
    .hero-v4 {
      position: relative;
      z-index: 2;
      padding: 0 !important;
      margin: 0;
      width: 100%;
      overflow: hidden;
      background: var(--bg);
      display: block;
      line-height: 0;
      height: 100vh;
      height: 100dvh;
    }
    .hero-v4-video {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      background: #0a0e17;
    }
    .hero-sound-btn {
      position: absolute;
      bottom: 24px;
      right: 24px;
      z-index: 20;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 2px solid rgba(255,255,255,0.3);
      background: rgba(10,14,23,0.7);
      backdrop-filter: blur(8px);
      color: #fff;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: border-color 0.2s, background 0.2s;
    }
    .hero-sound-btn:hover {
      border-color: var(--accent);
      background: rgba(255,90,0,0.15);
    }
    .hero-subs {
      position: absolute;
      bottom: 12%;
      left: 50%;
      transform: translateX(-50%);
      z-index: 15;
      font-family: var(--font-display);
      font-size: clamp(16px, 2.5vw, 26px);
      font-weight: 700;
      color: #fff;
      text-align: center;
      text-shadow: 0 2px 16px rgba(0,0,0,0.9), 0 0 6px rgba(0,0,0,0.7);
      padding: 10px 28px;
      background: rgba(0,0,0,0.35);
      max-width: 85%;
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
      line-height: 1.4;
    }
    .hero-subs.visible { opacity: 1 !important; }
    .hero-subs .hl { color: var(--accent); }
    @media (max-width: 767px) {
      .hero-v4 { height: 70vh; height: 70dvh; }
      .hero-v4-video { object-position: center 30%; }
      .hero-sound-btn { bottom: 16px; right: 16px; width: 40px; height: 40px; }
      .hero-subs { bottom: 8%; font-size: 14px; padding: 8px 16px; max-width: 92%; }
    }

    /* ─── Editorial section label (clapboard style, matches hero v3) ─── */
    .pain-section { position: relative; z-index: 2; }
    .section-label {
      font-family: var(--font-mono);
      font-size: 13px;
      font-weight: 600;
      color: var(--text);
      letter-spacing: 0.18em;
      text-transform: uppercase;
      margin-bottom: 28px;
      display: inline-flex; align-items: center; gap: 14px;
      padding-bottom: 14px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .section-label::before {
      content: attr(data-num);
      color: var(--text-dim);
      opacity: 0.55;
      font-weight: 500;
    }
    .section-label::after {
      content: '/';
      color: var(--accent);
      opacity: 0.9;
      margin-left: -8px;
    }
    .section-title {
      font-size: clamp(32px, 5vw, 64px);
      font-weight: 800;
      color: var(--text);
      line-height: 1.02;
      letter-spacing: -0.045em;
      margin-bottom: 18px;
    }
    .section-title .accent { color: var(--accent); }
    .section-title .dim { color: var(--text-dim); font-weight: 700; }
    .section-sub {
      font-size: clamp(15px, 1.4vw, 18px);
      color: var(--text-dim);
      max-width: 640px;
      line-height: 1.6;
      margin-bottom: 32px;
    }

    /* ─── Mid-CTA — inline CTA banners between sections ─── */
    .mid-cta {
      text-align: center;
      padding: 32px 20px;
      position: relative;
      z-index: 2;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 32px;
      background: var(--accent);
      color: #fff;
      font-family: var(--font-display);
      font-size: 15px;
      font-weight: 700;
      text-decoration: none;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 24px rgba(255, 90, 0, 0.3);
      transition: background 0.18s, box-shadow 0.18s, transform 0.1s;
    }
    .btn-primary:hover {
      background: var(--accent-2);
      box-shadow: 0 6px 32px rgba(255, 90, 0, 0.45);
    }
    .btn-primary:active { transform: scale(0.97); }
    .mid-cta-sub {
      font-size: 12px;
      color: var(--text-mute);
      margin-top: 10px;
    }

    /* ─── Section divider ─── */
    .section-divider {
      height: 3px;
      background: linear-gradient(90deg, transparent 5%, rgba(255,90,0,0.08) 15%, rgba(255,90,0,0.4) 50%, rgba(255,90,0,0.08) 85%, transparent 95%);
      max-width: 90%;
      margin: 0 auto;
      box-shadow: 0 0 20px rgba(255,90,0,0.25), 0 0 40px rgba(255,90,0,0.1);
    }

    /* ─── Pain cards — numbered editorial entries ─── */
    .pain-grid {
      display: grid;
      gap: 1px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.04);
    }
    @media (min-width: 768px) {
      .pain-grid { grid-template-columns: 1fr 1fr; }
    }
    .pain-card {
      background: var(--bg);
      padding: 32px 28px;
      display: grid;
      grid-template-columns: 44px 1fr;
      column-gap: 20px;
      row-gap: 8px;
      align-items: flex-start;
      transition: background 0.2s ease;
      position: relative;
    }
    .pain-card > .pain-icon { grid-column: 1; grid-row: 1; }
    .pain-card > div:not(.pain-icon) { grid-column: 2; }
    .pain-card::before {
      content: attr(data-num);
      position: absolute;
      top: 28px; left: 28px;
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.16em;
      color: var(--accent);
      opacity: 0.7;
    }
    .pain-card:hover { background: var(--navy-3); }
    .pain-icon {
      width: 44px; height: 44px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      margin-top: 18px;
      border-radius: 0;
    }
    .pain-icon-red { background: rgba(239, 68, 68, 0.08); }
    .pain-icon-amber { background: rgba(245, 158, 11, 0.08); }
    .pain-icon-blue { background: rgba(96, 165, 250, 0.08); }
    .pain-card > div:last-child { padding-top: 14px; }
    .pain-title {
      font-size: clamp(16px, 1.6vw, 19px);
      font-weight: 700;
      color: var(--text);
      letter-spacing: -0.02em;
      margin-bottom: 8px;
      line-height: 1.25;
    }
    .pain-desc {
      font-size: 14px;
      color: var(--text-dim);
      line-height: 1.65;
    }

    /* ─── Pain card variants — visual weight differentiation ─── */
    .pain-card-critical {
      border-left: 3px solid #ef4444 !important;
      padding-left: 25px !important;
      background: rgba(239, 68, 68, 0.02) !important;
    }
    .pain-card-critical:hover { background: rgba(239, 68, 68, 0.05) !important; }
    .pain-card-secondary {
      border: 1px dashed rgba(255,255,255,0.1) !important;
    }
    .pain-grid { border: 1px solid rgba(255,255,255,0.04); }

    /* Solution arrow */
    .solution-arrow {
      text-align: center; padding: 32px 0;
      position: relative; z-index: 2;
    }
    .solution-arrow svg {
      color: var(--accent);
      animation: float 2s ease-in-out infinite;
    }

    /* ─── Features / Benefits ─── */
    /* ─── Features — editorial numbered list ─── */
    .features-section { position: relative; z-index: 2; }
    .features-grid {
      display: grid;
      gap: 1px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.04);
    }
    @media (min-width: 768px) {
      .features-grid-6 { grid-template-columns: 1fr 1fr; }
    }
    .feature-card {
      background: var(--bg);
      padding: 36px 32px;
      transition: background 0.2s ease;
      position: relative;
      display: grid;
      grid-template-columns: 56px 1fr;
      grid-auto-flow: row dense;
      column-gap: 22px;
      row-gap: 10px;
      align-items: flex-start;
    }
    .feature-card > .feature-icon { grid-column: 1; grid-row: 1; }
    .feature-card > .feature-title,
    .feature-card > .feature-desc,
    .feature-card > .feature-tag { grid-column: 2; }
    .feature-card:hover { background: var(--navy-3); }
    .feature-card::before {
      content: counter(feat-num, decimal-leading-zero);
      counter-increment: feat-num;
      position: absolute;
      top: 32px; right: 32px;
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.18em;
      color: var(--text-dim);
      opacity: 0.5;
    }
    .features-grid { counter-reset: feat-num; }
    .feature-icon {
      width: 44px; height: 44px;
      display: flex; align-items: center; justify-content: center;
      font-size: 22px;
      border-radius: 0;
    }
    .feature-icon-orange { background: rgba(255, 90, 0, 0.08); }
    .feature-icon-cyan { background: rgba(0, 212, 170, 0.08); }
    .feature-icon-purple { background: rgba(167, 139, 250, 0.08); }
    .feature-icon-blue { background: rgba(96, 165, 250, 0.08); }
    .feature-icon-green { background: rgba(34, 197, 94, 0.08); }
    .feature-title {
      font-size: clamp(16px, 1.8vw, 21px);
      font-weight: 700;
      color: var(--text);
      letter-spacing: -0.02em;
      margin-bottom: 10px;
      line-height: 1.25;
      padding-right: 80px;
    }
    .feature-desc {
      font-size: 14px;
      color: var(--text-dim);
      line-height: 1.7;
    }
    .feature-tag {
      display: inline-flex;
      padding: 4px 9px;
      font-family: var(--font-mono);
      font-size: 10px;
      font-weight: 600;
      margin-top: 14px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      border-radius: 0;
    }
    .tag-ai {
      background: rgba(255, 90, 0, 0.08); color: var(--accent);
      border: 1px solid rgba(255, 90, 0, 0.22);
    }
    .tag-new {
      background: rgba(0, 212, 170, 0.08); color: var(--accent2);
      border: 1px solid rgba(0, 212, 170, 0.22);
    }

    .testimonial-label {
      font-family: var(--font-mono);
      font-size: 10px;
      font-weight: 700;
      color: var(--text-dim);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 14px;
    }
    .testimonial-solution {
      margin-top: 16px;
      font-size: 12px;
      font-weight: 600;
      color: var(--accent);
    }
    .testimonial-solution.ai {
      color: var(--accent-2);
    }

    /* ─── Proof / scenarios — editorial style ─── */
    .proof-section { position: relative; z-index: 2; }
    .proof-stats {
      display: grid;
      gap: 1px;
      grid-template-columns: repeat(2, 1fr);
      margin-bottom: 32px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.04);
    }
    @media (min-width: 768px) {
      .proof-stats { grid-template-columns: repeat(4, 1fr); }
    }
    .proof-stat {
      background: var(--bg);
      padding: 32px 24px;
      text-align: left;
      position: relative;
    }
    .proof-stat::before {
      content: counter(stat-num, decimal-leading-zero);
      counter-increment: stat-num;
      position: absolute;
      top: 18px; left: 24px;
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.16em;
      color: var(--text-dim);
      opacity: 0.55;
    }
    .proof-stats { counter-reset: stat-num; }
    .proof-stat-value {
      font-size: clamp(40px, 6vw, 64px);
      font-weight: 700;
      color: var(--accent);
      font-family: var(--font-numeric);
      letter-spacing: -0.04em;
      margin-top: 24px;
      line-height: 1;
      text-shadow: 0 0 40px rgba(255,90,0,0.5), 0 0 80px rgba(255,90,0,0.2);
    }
    .proof-stat-value .stat-unit {
      font-size: 18px;
      color: var(--bone-dim);
      margin-left: 3px;
    }
    .proof-stat-underline {
      width: 40px;
      height: 3px;
      background: linear-gradient(90deg, var(--accent), var(--accent-2));
      margin: 10px 0 0;
      box-shadow: 0 0 8px rgba(255,90,0,0.4);
    }
    .proof-stat-label {
      font-size: 12px;
      color: var(--text-dim);
      margin-top: 12px;
      line-height: 1.45;
    }
    .testimonials {
      display: grid;
      gap: 1px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.04);
    }
    @media (min-width: 768px) {
      .testimonials { grid-template-columns: 1fr 1fr; }
    }
    .testimonial {
      background: var(--bg);
      border: 0;
      border-radius: 0;
      padding: 24px 20px;
      border-left: 2px solid rgba(255, 90, 0, 0.4) !important;
      transition: background 0.2s ease;
    }
    .testimonial:hover { background: var(--navy-3); }
    .testimonial-text {
      font-size: 15px;
      color: var(--text);
      line-height: 1.65;
      font-style: normal;
      margin-bottom: 18px;
      letter-spacing: -0.005em;
    }

    /* ─── Pricing ─── */
    .pricing-section { position: relative; z-index: 2; }
    .pricing-grid {
      display: grid; gap: 0; grid-auto-columns: 1fr;
      max-width: 1100px; margin: 0 auto;
      border: 1px solid var(--card-border);
    }
    .pricing-grid > .plan-card { border-radius: 0; border: 0; border-right: 1px solid var(--card-border); }
    .pricing-grid > .plan-card:last-child { border-right: 0; }
    @media (max-width: 900px) {
      .pricing-grid > .plan-card { border-right: 0; border-bottom: 1px solid var(--card-border); }
      .pricing-grid > .plan-card:last-child { border-bottom: 0; }
    }
    .plan-card {
      background: var(--card);
      border: 1px solid var(--card-border);
      border-radius: var(--radius-lg);
      padding: 28px 24px 24px;
      position: relative;
      display: flex;
      flex-direction: column;
      transition: all 0.25s ease;
    }
    .plan-features { flex: 1 1 auto; }
    .plan-card:hover { border-color: #334155; }
    .plan-card.recommended {
      background: var(--glass-bg);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(255, 90, 0, 0.35);
      box-shadow: 0 8px 40px rgba(255, 90, 0, 0.1);
    }
    .plan-badge {
      position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
      background: linear-gradient(135deg, var(--accent), #FFB040);
      color: #fff; font-size: 11px; font-weight: 700;
      padding: 4px 14px; border-radius: 0;
      box-shadow: 0 2px 8px rgba(255, 90, 0, 0.3);
      white-space: nowrap;
    }
    .plan-header {
      display: flex; align-items: center; gap: 12px;
      margin-bottom: 16px;
    }
    .plan-icon {
      width: 44px; height: 44px; border-radius: 0;
      display: flex; align-items: center; justify-content: center;
      font-size: 20px;
    }
    .plan-name {
      font-size: 18px; font-weight: 700; color: var(--text);
    }
    .plan-price {
      margin-bottom: 20px;
    }
    .plan-amount {
      font-size: 36px; font-weight: 800; color: var(--text);
      font-family: var(--font-mono);
      letter-spacing: -2px;
    }
    .plan-currency {
      font-size: 16px; font-weight: 600; color: var(--text-dim);
      margin-left: 4px;
    }
    .plan-period {
      font-size: 13px; color: var(--text-dim);
    }
    .plan-trial {
      display: inline-flex; padding: 4px 10px; border-radius: 0;
      font-size: 11px; font-weight: 600; margin-bottom: 16px;
    }
    .plan-features {
      list-style: none; margin-bottom: 20px;
    }
    .plan-features li {
      display: flex; align-items: flex-start; gap: 8px;
      font-size: 13px; color: var(--text-dim);
      padding: 6px 0; line-height: 1.5;
    }
    @media (max-width: 420px) {
      .plan-card { padding: 24px 16px 20px; }
      .plan-features li { font-size: 12px; gap: 6px; }
      .plan-features li strong { word-break: break-word; hyphens: auto; }
    }
    .plan-features li .check {
      color: var(--success); flex-shrink: 0; margin-top: 2px;
    }
    .plan-cta {
      display: block; width: 100%; padding: 14px 0;
      border-radius: var(--radius-sm); font-size: 14px; font-weight: 700;
      text-align: center; text-decoration: none; cursor: pointer;
      transition: all 0.2s ease; border: none;
      font-family: inherit;
      margin-top: 16px; /* sits tight against card bottom */
      align-self: stretch;
    }
    .plan-cta-primary {
      background: linear-gradient(135deg, var(--accent), #FFB040);
      color: #fff;
      box-shadow: 0 2px 12px rgba(255, 90, 0, 0.2);
    }
    .plan-cta-primary:hover {
      box-shadow: 0 4px 24px rgba(255, 90, 0, 0.4);
      transform: translateY(-1px);
    }
    .plan-cta-secondary {
      background: rgba(0, 212, 170, 0.08);
      border: 1px solid rgba(0, 212, 170, 0.3);
      color: var(--accent2);
    }
    .plan-cta-secondary:hover {
      background: rgba(0, 212, 170, 0.14);
    }

    /* ─── Pricing hierarchy — Automat dominance ─── */
    .plan-card.plan-muted {
      opacity: 0.6;
      transition: opacity 0.3s ease;
    }
    .plan-card.plan-muted:hover {
      opacity: 0.85;
    }
    .plan-card.recommended .plan-name {
      color: var(--accent-2);
    }
    .plan-card.recommended .plan-trial {
      color: var(--accent-2);
    }

    /* ─── Comparison Table ─── */
    .cmp-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 13px;
    }
    .cmp-th {
      text-align: left;
      padding: 12px 16px;
      font-size: 12px;
      font-weight: 600;
      color: var(--text-dim);
      border-bottom: 1px solid rgba(74,90,120,0.15);
      background: transparent;
    }
    .cmp-th:first-child { min-width: 200px; }
    .cmp-th-center { text-align: center; }
    .cmp-col-adriser {
      text-align: center;
      font-weight: 700;
      color: var(--accent);
      border-bottom: 2px solid var(--accent);
      background: rgba(255,90,0,0.04);
    }
    .cmp-td {
      padding: 12px 16px;
      color: var(--text-dim);
    }
    .cmp-td-center { text-align: center; }
    .cmp-td-bad {
      text-align: center;
      padding: 12px 16px;
      color: var(--danger);
    }
    .cmp-td-good {
      text-align: center;
      padding: 12px 16px;
      color: var(--success);
      background: rgba(255,90,0,0.02);
    }
    .cmp-row {
      border-bottom: 1px solid rgba(74,90,120,0.1);
    }

    /* ─── Integrations Grid ─── */
    .integrations-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 1px;
      background: rgba(74,90,120,0.12);
      border: 1px solid rgba(74,90,120,0.12);
    }
    .integration-card {
      background: var(--bg);
      padding: 24px 20px;
      position: relative;
    }
    .integration-badge {
      position: absolute;
      top: 12px;
      right: 12px;
      font-size: 9px;
      font-family: var(--font-mono);
      letter-spacing: 0.1em;
      padding: 3px 8px;
    }
    .integration-badge-live { background: rgba(34,197,94,0.1); color: #22c55e; border: 1px solid rgba(34,197,94,0.2); }
    .integration-badge-q3 { background: rgba(255,90,0,0.1); color: var(--accent); border: 1px solid rgba(255,90,0,0.2); }
    .integration-badge-q4 { background: rgba(96,165,250,0.1); color: #60a5fa; border: 1px solid rgba(96,165,250,0.2); }
    .integration-badge-ext { background: rgba(167,139,250,0.1); color: #a78bfa; border: 1px solid rgba(167,139,250,0.2); }
    .integration-name {
      font-size: 15px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 6px;
      padding-right: 76px;
    }
    .integration-desc {
      font-size: 12px;
      color: var(--text-dim);
      line-height: 1.5;
    }

    .integration-contact-btn {
      background: transparent;
      border: 1px solid rgba(74,90,120,0.15);
      color: var(--text-dim);
      padding: 10px 24px;
      font-size: 13px;
      font-family: var(--font-display);
      font-weight: 600;
      cursor: pointer;
      transition: border-color 0.18s, color 0.18s;
    }
    .integration-contact-btn:hover {
      border-color: var(--accent);
      color: var(--text);
    }

    /* ─── FAQ — editorial Q&A ─── */
    .faq-section { position: relative; z-index: 2; }
    .faq-list {
      max-width: 880px;
      margin: 0 auto;
      counter-reset: faq-num;
      border-top: 1px solid rgba(255,255,255,0.06);
    }
    .faq-item {
      border-bottom: 1px solid rgba(255,255,255,0.06);
      counter-increment: faq-num;
      position: relative;
      transition: background 0.18s ease;
    }
    .faq-item::before {
      content: 'Q' counter(faq-num, decimal-leading-zero);
      position: absolute;
      top: 26px; left: 4px;
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.16em;
      color: var(--text-dim);
      opacity: 0.55;
    }
    .faq-q {
      width: 100%;
      padding: 24px 0 24px 64px;
      background: none; border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: space-between;
      gap: 18px; text-align: left;
      color: var(--text);
      font-size: clamp(15px, 1.5vw, 17px);
      font-weight: 600;
      font-family: inherit; line-height: 1.4;
      letter-spacing: -0.015em;
      transition: color 0.18s ease;
    }
    .faq-q:hover { color: var(--accent); }
    .faq-chevron {
      flex-shrink: 0; transition: transform 0.25s ease;
      color: var(--text-dim);
    }
    .faq-item.open .faq-chevron { transform: rotate(180deg); }
    .faq-item.open::before { color: var(--accent); opacity: 0.9; }
    .faq-a {
      max-height: 0; overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
    }
    .faq-item.open .faq-a {
      max-height: 360px;
      padding: 0 0 26px 64px;
    }
    .faq-a p {
      font-size: 14px;
      color: var(--text-dim);
      line-height: 1.75;
      max-width: 680px;
    }

    /* ─── Final CTA — editorial outro ─── */
    .final-cta {
      position: relative; z-index: 2;
      background: linear-gradient(180deg, transparent 0%, rgba(255, 90, 0, 0.03) 50%, transparent 100%);
      padding: 56px 0 48px;
    }
    .final-cta .section-label { margin-bottom: 28px; }
    .final-cta-title {
      font-size: clamp(36px, 6vw, 80px);
      font-weight: 800;
      color: var(--text);
      letter-spacing: -0.045em;
      line-height: 1.02;
      margin-bottom: 24px;
    }
    .final-cta-title .accent { color: var(--accent); }
    .final-cta-sub {
      font-size: clamp(15px, 1.4vw, 18px);
      color: var(--text-dim);
      line-height: 1.65;
      max-width: 580px;
      margin: 0 0 40px;
    }
    .final-cta-actions {
      display: flex; gap: 22px;
      flex-wrap: wrap;
      align-items: center;
      margin-bottom: 32px;
    }
    .final-cta-btn {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 18px 32px;
      border-radius: 0;
      background: var(--accent);
      color: #fff;
      font-size: 15px; font-weight: 700;
      text-decoration: none;
      transition: background 0.15s ease, transform 0.1s ease;
      box-shadow: 0 6px 32px rgba(255, 90, 0, 0.3);
    }
    .final-cta-btn:hover { background: #ff8a00; box-shadow: 0 8px 40px rgba(255, 90, 0, 0.45); }
    .final-cta-btn:active { transform: scale(0.97); }
    .final-cta-guarantee {
      font-family: var(--font-mono);
      font-size: 12px;
      color: var(--text-dim);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .final-cta-trust {
      display: inline-flex; gap: 28px;
      flex-wrap: wrap;
      padding-top: 28px;
      border-top: 1px solid rgba(255,255,255,0.06);
    }
    .trust-cell {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--text-dim);
      letter-spacing: 0.06em;
    }

    /* ─── Support / Contact ─── */
    /* Support channels — email & phone, no form */
    .support-channel:hover {
      background: rgba(255,255,255,0.02) !important;
      border-color: rgba(255,255,255,0.12) !important;
    }

    /* ─── Footer ─── */
    .lp-footer {
      border-top: 1px solid rgba(255,255,255,0.06);
      padding: 40px 0 28px;
      position: relative; z-index: 2;
    }
    .footer-top {
      display: flex; flex-direction: column; align-items: center;
      gap: 28px; padding-bottom: 28px;
      border-bottom: 1px solid rgba(255,255,255,0.04);
    }
    .footer-logo {
      display: flex; align-items: center; gap: 8px; flex-shrink: 0;
    }
    .footer-links {
      display: flex; gap: 6px 20px; flex-wrap: wrap; justify-content: center;
    }
    .footer-links a {
      color: var(--text-dim); text-decoration: none;
      font-size: 12px; transition: color 0.2s; white-space: nowrap;
    }
    .footer-links a:hover { color: var(--text); }
    .footer-bottom {
      display: flex; flex-direction: column; align-items: center;
      gap: 6px; padding-top: 20px; text-align: center;
    }
    .footer-copy { font-size: 11px; color: var(--text-dim); }
    .footer-legal { font-size: 10px; color: #334155; line-height: 1.6; }

    /* ═══ DESKTOP LAYOUT (1024px+) ═══ */
    @media (min-width: 480px) {
      .nav-cta-long { display: inline; }
      .nav-cta-short { display: none; }
    }
    @media (min-width: 1024px) {
      .lp-container { padding: 0 40px; }
      .lp-section { padding: 56px 0; }
      .lp-nav-links { display: flex; }

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

      .features-grid { grid-template-columns: 1fr 1fr; }
      .features-grid-5 { grid-template-columns: 1fr 1fr; }
      .features-grid-6 { grid-template-columns: 1fr 1fr; }

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

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

      .final-cta-title { font-size: 36px; }
      .support-grid { grid-template-columns: 1fr 1fr; }

      .footer-top {
        flex-direction: row; justify-content: space-between; align-items: center;
      }
      .footer-links { justify-content: flex-end; }
      .footer-bottom { flex-direction: row; justify-content: space-between; }
    }

    /* ═══ TABLET (768px) ═══ */
    @media (min-width: 768px) and (max-width: 1023px) {
      .pain-grid { grid-template-columns: 1fr 1fr; }
      .features-grid { grid-template-columns: 1fr 1fr; }
      .pricing-grid { grid-template-columns: 1fr 1fr; }
      .testimonials { grid-template-columns: 1fr 1fr; }
      .support-grid { grid-template-columns: 1fr 1fr; }
    }

    /* ─── Scroll animations ─── */
    .reveal {
      opacity: 0; transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.visible {
      opacity: 1; transform: translateY(0);
    }

    /* ─── Cursor & focus a11y ─── */
    .btn-primary, .btn-secondary, .plan-cta, .sf-btn, .faq-q,
    .lp-nav-cta, .pain-card, .feature-card, .sf-input, .sf-textarea {
      cursor: pointer;
    }
    .btn-primary:focus-visible, .btn-secondary:focus-visible,
    .plan-cta:focus-visible, .sf-btn:focus-visible,
    .lp-nav-cta:focus-visible, .faq-q:focus-visible,
    .lp-nav-links a:focus-visible, .lp-nav-signin:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 3px;
    }
    /* Min touch target 44px */
    .btn-primary, .btn-secondary, .plan-cta, .sf-btn, .lp-nav-cta {
      min-height: 44px;
    }
    .faq-q { min-height: 44px; }

    /* ─── Misc ─── */
    .text-gradient {
      background: linear-gradient(135deg, var(--accent), #ff8a00, var(--accent2));
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: gradientMove 4s ease infinite;
    }
    .sr-only {
      position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
      overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
    }

    /* ─── Sticky Mobile CTA ─── */
    .sticky-cta {
      position: fixed; left: 0; right: 0; z-index: 99;
      bottom: calc(-80px - env(safe-area-inset-bottom, 0px));
      background: var(--glass-bg);
      backdrop-filter: var(--glass-blur);
      -webkit-backdrop-filter: var(--glass-blur);
      border-top: 1px solid var(--glass-border);
      padding: 12px 20px;
      padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
      transition: bottom 0.3s ease;
      display: flex; gap: 10px; align-items: center;
    }
    .sticky-cta.visible { bottom: 0; }
    .sticky-cta .btn-primary {
      flex: 1; padding: 12px 0; font-size: 14px;
      display: flex; align-items: center; justify-content: center;
      white-space: nowrap;
    }
    .sticky-cta-sub {
      font-size: 10px; color: var(--text-dim); white-space: nowrap;
    }
    @media (min-width: 1024px) {
      .sticky-cta { display: none; }
    }

    /* ─── Section alternating backgrounds ─── */
    .section-alt {
      background: linear-gradient(180deg, rgba(17, 24, 39, 0.3) 0%, transparent 100%);
    }

    /* ─── Trust badges ─── */
    .trust-badges {
      display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
      margin-top: 12px;
    }
    .trust-badge {
      display: inline-flex; align-items: center; gap: 5px;
      font-size: 11px; color: var(--text-dim);
    }
    .trust-badge svg { flex-shrink: 0; }

    /* ─── Contact Terminal ─── */
    .ct-terminal{background:var(--bg);color:#e2e8f0;overflow:hidden;border:1px solid rgba(255,255,255,0.08)}
    .ct-body{padding:22px 24px 28px;min-height:260px;background:radial-gradient(circle,rgba(255,90,0,.04) 1px,transparent 1px) 0 0/20px 20px,var(--bg);font-family:ui-monospace,'Fira Code',monospace;font-size:13px;line-height:1.7;cursor:text;overflow-y:auto}
    .ct-head{display:flex;justify-content:space-between;align-items:center;padding:12px 16px;border-bottom:1px solid rgba(255,255,255,0.08);font-family:ui-monospace,monospace;font-size:10px;letter-spacing:.08em;text-transform:uppercase}
    .ct-head .dots{display:flex;gap:6px}.ct-head .dots span{width:10px;height:10px;border-radius:50%;background:rgba(255,255,255,0.15)}
    .ct-head .dots span:nth-child(1){background:#FF5F57}.ct-head .dots span:nth-child(2){background:#FEBC2E}.ct-head .dots span:nth-child(3){background:#28C840}
    .ct-head .title{opacity:.6;color:var(--text-dim)}.ct-head .title b{color:var(--accent)}
    .ct-head .run{color:var(--bg);background:var(--accent);padding:5px 10px;border:none;cursor:pointer;font-family:ui-monospace,monospace;font-size:10px;letter-spacing:.08em;text-transform:uppercase;font-weight:700}
    .ct-foot{display:flex;justify-content:space-between;align-items:center;padding:8px 16px;border-top:1px solid rgba(255,255,255,0.06);font-family:ui-monospace,monospace;font-size:10px;color:rgba(255,255,255,0.4)}
    .ct-foot kbd{background:rgba(255,255,255,0.06);padding:1px 5px;border:1px solid rgba(255,255,255,0.1);font-family:inherit;font-size:9px;color:#e2e8f0}
    .ct-foot .blink{color:var(--accent);font-size:14px;animation:blink 1s steps(1) infinite}
    .tline{display:flex;gap:8px;flex-wrap:wrap;align-items:baseline}
    .tline .cwd{color:var(--accent);font-weight:700}.tline .arrow{color:#ef4444}.tline .path{color:rgba(255,255,255,0.5)}.tline .run-cmd{color:#e2e8f0}
    .tline.out{color:rgba(255,255,255,0.5)}.tline.out .com{color:var(--accent);font-weight:700}
    .tline.user{color:#e2e8f0}.tline.user .you{color:var(--accent);font-weight:700}
    .tline.ok{color:#22c55e}.tline.ok::before{content:"\2713 ";font-weight:700}
    .tline.err{color:#ef4444}.tline.err::before{content:"! ";font-weight:700}
    .tfield{margin-top:8px;display:flex;flex-direction:column;gap:4px}
    .tfield label{color:var(--accent);font-family:ui-monospace,monospace;font-size:13px;font-weight:700}
    .tfield label::before{content:"\276F ";color:#ef4444;font-weight:700;margin-right:2px}
    .tfield input,.tfield textarea{background:transparent;border:none;outline:none;color:#e2e8f0;font-family:ui-monospace,monospace;font-size:13px;padding:2px 0;resize:none;width:100%;line-height:1.7;caret-color:var(--accent)}
    .tfield textarea{min-height:80px}
    .term-sent{padding:20px 24px;background:rgba(0,0,0,0.3);border-top:1px solid rgba(255,90,0,0.2)}
    .term-sent .ok-big{font-family:ui-monospace,monospace;color:#22c55e;font-weight:700;font-size:14px;margin-bottom:8px}
    .term-sent .ok-big::before{content:"\2713 ";margin-right:4px}
    .term-sent .rec{font-family:ui-monospace,monospace;color:rgba(255,255,255,0.6);font-size:12px;line-height:1.8}
    .term-sent .rec b{color:#e2e8f0}
    .term-sent .rec a{color:var(--accent)}
    /* Contact Modal */
    .ct-modal{position:fixed;inset:0;z-index:9100;display:flex;align-items:center;justify-content:center;padding:24px;background:rgba(17,24,39,0.92);backdrop-filter:blur(8px);opacity:1;pointer-events:auto;transition:opacity 240ms ease}
    .ct-modal.hidden{opacity:0;pointer-events:none;visibility:hidden}
    .ct-modal-overlay{position:absolute;inset:0}
    .ct-modal-content{position:relative;width:100%;max-width:640px;max-height:92vh;background:var(--bg);border:1px solid rgba(255,255,255,0.08);overflow:hidden;display:flex;flex-direction:column;transition:transform 320ms ease}
    .ct-modal.hidden .ct-modal-content{transform:translateY(8px) scale(0.99)}
    .ct-modal-content .ct-terminal{border:0;max-height:100%;margin:0}
    .ct-modal-content .ct-body{max-height:calc(92vh - 100px)}
    .ct-modal-close{position:absolute;top:12px;right:12px;width:36px;height:36px;background:rgba(255,255,255,0.06);color:#e2e8f0;border:1px solid rgba(255,255,255,0.1);font-size:20px;line-height:1;cursor:pointer;display:flex;align-items:center;justify-content:center;z-index:10;transition:background 200ms}
    .ct-modal-close:hover{background:rgba(255,90,0,0.2);border-color:var(--accent)}
    @media(max-width:640px){.ct-modal{padding:0}.ct-modal-content{max-width:100%;max-height:100dvh;height:100dvh;border:0}.ct-modal-content .ct-body{max-height:calc(100dvh - 120px)}}

    /* ─── Showcase — Scrollspy Filmstrip (desktop) + Dense Grid (mobile) ─── */
    .showcase-wrap {
      position: relative;
    }
    .showcase-scrollspy {
      display: none;
    }
    @media (min-width: 768px) {
      .showcase-scrollspy {
        display: grid;
        grid-template-columns: 1fr 320px;
        gap: 0;
        border: 1px solid rgba(74,90,120,0.12);
      }
    }
    .showcase-list {
      border-right: 1px solid rgba(74,90,120,0.1);
    }
    .showcase-row {
      padding: 20px 24px;
      display: flex;
      gap: 14px;
      align-items: flex-start;
      cursor: pointer;
      border-bottom: 1px solid rgba(74,90,120,0.06);
      transition: opacity 0.25s ease, border-color 0.25s ease;
      opacity: 0.5;
      border-left: 2px solid transparent;
    }
    .showcase-row.active {
      opacity: 1;
      border-left-color: var(--accent);
      background: rgba(255,90,0,0.02);
    }
    .showcase-row:hover:not(.active) {
      opacity: 0.75;
      background: rgba(74,90,120,0.04);
    }
    .showcase-row-num {
      font-family: var(--font-mono);
      font-size: 9px;
      letter-spacing: 0.15em;
      color: var(--text-mute);
      min-width: 36px;
      padding-top: 4px;
    }
    .showcase-row-title {
      font-size: 15px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 4px;
      line-height: 1.25;
    }
    .showcase-row-desc {
      font-size: 12px;
      color: var(--text-dim);
      line-height: 1.55;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, margin 0.3s ease;
      margin-top: 0;
    }
    .showcase-row.active .showcase-row-desc {
      max-height: 120px;
      margin-top: 6px;
    }
    .showcase-row-tag {
      display: inline-flex;
      padding: 2px 7px;
      font-family: var(--font-mono);
      font-size: 8px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-top: 8px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }
    .showcase-row.active .showcase-row-tag {
      max-height: 30px;
    }
    .tag-ai-sm { background: rgba(255,90,0,0.08); color: var(--accent); border: 1px solid rgba(255,90,0,0.22); }
    .tag-live-sm { background: rgba(34,197,94,0.08); color: var(--success); border: 1px solid rgba(34,197,94,0.22); }
    .tag-sched-sm { background: rgba(245,158,11,0.08); color: #f59e0b; border: 1px solid rgba(245,158,11,0.22); }
    .showcase-phone-col {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 32px 24px;
      position: sticky;
      top: calc(50vh - 180px);
      height: fit-content;
    }
    .showcase-phone-col-label {
      font-family: var(--font-mono);
      font-size: 8px;
      letter-spacing: 0.15em;
      color: var(--text-mute);
      text-transform: uppercase;
      margin-bottom: 10px;
    }
    .showcase-phone-frame {
      width: 200px;
      aspect-ratio: 9/19.5;
      border: 1px solid rgba(74,90,120,0.2);
      background: #141d30;
      position: relative;
      overflow: hidden;
    }
    .showcase-phone-frame::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background: rgba(74,90,120,0.15);
      z-index: 2;
    }
    .showcase-phone-frame img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity 300ms ease;
    }
    .showcase-phone-frame img.active {
      opacity: 1;
    }
    .showcase-phone-counter {
      font-family: var(--font-mono);
      font-size: 9px;
      color: var(--text-mute);
      margin-top: 8px;
    }
    .showcase-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: rgba(74,90,120,0.12);
      border: 1px solid rgba(74,90,120,0.12);
    }
    @media (min-width: 768px) {
      .showcase-grid { display: none; }
    }
    .showcase-tile {
      background: var(--bg);
      padding: 16px 14px;
      cursor: pointer;
      position: relative;
      transition: background 0.2s ease;
    }
    .showcase-tile:hover { background: var(--navy-3); }
    .showcase-tile-num {
      font-family: var(--font-mono);
      font-size: 8px;
      color: var(--text-mute);
      letter-spacing: 0.1em;
      margin-bottom: 8px;
    }
    .showcase-tile-title {
      font-size: 13px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 4px;
      line-height: 1.25;
    }
    .showcase-tile-desc {
      font-size: 10px;
      color: var(--text-dim);
      line-height: 1.4;
    }
    .showcase-tile-cta {
      display: flex;
      align-items: center;
      gap: 4px;
      margin-top: 10px;
      font-family: var(--font-mono);
      font-size: 8px;
      color: var(--accent);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .showcase-tile-cta svg { flex-shrink: 0; }
    .showcase-overlay {
      position: fixed;
      inset: 0;
      z-index: 9100;
      background: rgba(17,24,39,0.95);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 24px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 250ms ease;
    }
    .showcase-overlay.open {
      opacity: 1;
      pointer-events: auto;
    }
    .showcase-overlay-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 40px;
      height: 40px;
      background: rgba(255,255,255,0.06);
      color: var(--text);
      border: 1px solid rgba(255,255,255,0.1);
      font-size: 22px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .showcase-overlay-phone {
      width: 280px;
      max-width: 70vw;
      aspect-ratio: 9/19.5;
      border: 1px solid rgba(74,90,120,0.2);
      background: #141d30;
      overflow: hidden;
      margin-bottom: 20px;
      touch-action: none;
    }
    .showcase-overlay-phone img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.15s ease;
      transform-origin: center center;
      cursor: zoom-in;
    }
    .showcase-overlay-title {
      font-size: 18px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 8px;
      text-align: center;
    }
    .showcase-overlay-desc {
      font-size: 13px;
      color: var(--text-dim);
      line-height: 1.6;
      text-align: center;
      max-width: 320px;
    }
    .features-section { position: relative; z-index: 2; }
    .features-header {
      padding: 32px 0 16px;
    }
    @media (max-width: 767px) {
      .features-header { padding: 56px 0 32px; }
    }

/* ─── ROI Calculator ─── */
.roi-calc {
  max-width: 640px;
  margin: 0 auto;
  border: 1px solid rgba(74,90,120,0.15);
  background: var(--navy-2);
  padding: 32px;
}
.roi-calc-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}
.roi-calc-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
@media (max-width: 480px) {
  .roi-calc-inputs { grid-template-columns: 1fr; }
}
.roi-calc-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.roi-calc-field input {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg);
  border: 1px solid rgba(74,90,120,0.2);
  color: var(--text);
  font-family: var(--font-numeric);
  font-size: 18px;
  font-weight: 700;
  outline: none;
  transition: border-color 0.2s;
}
.roi-calc-field input:focus {
  border-color: var(--accent);
}
.roi-calc-field input::placeholder {
  color: var(--text-mute);
  font-weight: 400;
  font-size: 14px;
}
.roi-calc-result {
  padding: 20px;
  background: rgba(255,90,0,0.04);
  border: 1px solid rgba(255,90,0,0.15);
  text-align: center;
}
.roi-calc-result-value {
  font-family: var(--font-numeric);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  color: var(--accent);
  text-shadow: 0 0 30px rgba(255,90,0,0.4);
  line-height: 1;
  margin-bottom: 6px;
}
.roi-calc-result-label {
  font-size: 13px;
  color: var(--text-dim);
}

/* ─── How to Start (3 steps) ─── */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.step-card {
  text-align: center;
  padding: 24px 20px;
}
.step-num {
  font-family: var(--font-numeric);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  text-shadow: 0 0 24px rgba(255,90,0,0.3);
  line-height: 1;
  margin-bottom: 12px;
}
.step-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.step-desc {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.5;
}
.step-arrow {
  color: var(--accent);
  text-align: center;
  font-size: 20px;
  opacity: 0.4;
}
@media (max-width: 767px) {
  .step-card { padding: 16px 20px; }
  .step-num { font-size: 28px; margin-bottom: 8px; }
  .step-arrow {
    transform: rotate(90deg);
    padding: 2px 0;
    font-size: 16px;
  }
}

/* ─── Live Counter ─── */
.live-counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-top: 16px;
}
.live-counter-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse 2s ease-in-out infinite;
}

/* ─── Anti-marketing ─── */
.anti-section {
  max-width: 700px;
  margin: 0 auto;
}
.anti-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(74,90,120,0.1);
  border: 1px solid rgba(74,90,120,0.1);
}
@media (max-width: 600px) {
  .anti-grid { grid-template-columns: 1fr; }
}
.anti-card {
  background: var(--bg);
  padding: 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.anti-icon {
  flex-shrink: 0;
  color: var(--danger);
  margin-top: 2px;
}
.anti-text {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.55;
}
.anti-text strong {
  color: var(--text);
  display: block;
  margin-bottom: 2px;
}

/* ─── Owl micro-icon ─── */
.owl-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  opacity: 0.5;
}
.section-divider .owl-icon {
  position: absolute;
  left: 50%;
  top: -8px;
  transform: translateX(-50%);
  opacity: 0.25;
}

/* ─── Phone parallax ─── */
.showcase-phone-frame {
  transition: transform 0.15s ease-out;
}

/* ─── Command palette ─── */
.cmd-palette {
  position: fixed;
  inset: 0;
  z-index: 9200;
  background: rgba(17,24,39,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 15vh 24px 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}
.cmd-palette.open {
  opacity: 1;
  pointer-events: auto;
}
.cmd-palette-inner {
  width: 100%;
  max-width: 560px;
  border: 1px solid rgba(74,90,120,0.2);
  background: var(--navy-2);
  overflow: hidden;
}
.cmd-palette-input {
  width: 100%;
  padding: 16px 20px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(74,90,120,0.15);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  outline: none;
}
.cmd-palette-input::placeholder {
  color: var(--text-mute);
}
.cmd-palette-results {
  max-height: 320px;
  overflow-y: auto;
}
.cmd-palette-item {
  padding: 12px 20px;
  cursor: pointer;
  border-bottom: 1px solid rgba(74,90,120,0.06);
  transition: background 0.15s;
}
.cmd-palette-item:hover,
.cmd-palette-item.active {
  background: rgba(255,90,0,0.04);
}
.cmd-palette-item-q {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.cmd-palette-item-a {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.5;
  max-height: 36px;
  overflow: hidden;
}
.cmd-palette-hint {
  padding: 8px 20px;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-mute);
  letter-spacing: 0.06em;
  border-top: 1px solid rgba(74,90,120,0.1);
}

/* ─── Cursor trail ─── */
#cursor-trail {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 8999;
}
@media (pointer: coarse) {
  #cursor-trail { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  #cursor-trail { display: none; }
}

/* ─── Konami easter egg ─── */
.konami-owl {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  font-size: 80px;
  animation: konamiFly 3s ease-in-out forwards;
}
.konami-bubble {
  position: fixed;
  z-index: 9999;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  padding: 12px 20px;
  pointer-events: none;
  animation: konamiFade 3s ease-in-out forwards;
}
@keyframes konamiFly {
  0% { bottom: -100px; left: 50%; transform: translateX(-50%); opacity: 0; }
  20% { opacity: 1; }
  50% { bottom: 40vh; }
  80% { opacity: 1; }
  100% { bottom: 110vh; opacity: 0; }
}
@keyframes konamiFade {
  0% { top: 50%; left: 50%; transform: translate(-50%,-50%); opacity: 0; }
  25% { opacity: 1; }
  75% { opacity: 1; }
  100% { opacity: 0; }
}
