/* Auto-extracted for /pricing and /brick-kiln-accounting — source: landing/index.ejs */
:root {
      --bg: #fafafa;
      --fg: #0f0f12;
      --muted: #52525b;
      --muted-soft: #71717a;
      --border: rgba(15, 15, 18, 0.08);
      --surface: #ffffff;
      --accent: #6366f1;
      --accent-hover: #4f46e5;
      --accent-soft: rgba(99, 102, 241, 0.12);
      --cyan: #22d3ee;
      --font-display: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      --radius: 16px;
      --radius-lg: 24px;
      --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
      --shadow: 0 24px 80px rgba(0,0,0,0.12);
      --nav-h: 72px;
      --max: 1180px;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      background: var(--bg);
      color: var(--fg);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    .wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

    .marketing-hero {
      padding: calc(var(--nav-h) + 48px) 0 40px;
      background: linear-gradient(165deg, #0f0f12 0%, #18181b 45%, #fafafa 100%);
      text-align: center;
    }
    .marketing-hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4.5vw, 3rem);
      font-weight: 800;
      letter-spacing: -0.04em;
      color: #fff;
      margin-bottom: 12px;
      line-height: 1.15;
    }
    .marketing-hero .hero-sub {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.65);
      max-width: 640px;
      margin: 0 auto 24px;
      line-height: 1.65;
    }
    .marketing-hero .hero-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
    }
    .kiln-content {
      padding: 80px 0;
      background: var(--bg);
    }
    .kiln-content .prose-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-top: 40px;
    }
    .kiln-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px;
      box-shadow: var(--shadow-sm);
    }
    .kiln-card h3 {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .kiln-card h3 i { color: var(--accent); }
    .kiln-card p { font-size: 0.92rem; color: var(--muted); line-height: 1.65; }
    @media (max-width: 768px) {
      .kiln-content .prose-grid { grid-template-columns: 1fr; }
    }

    /* ── Nav (hero + scrolled states) ── */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      height: var(--nav-h);
      display: flex; align-items: center;
      transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, color 0.25s ease;
    }
    .nav.scrolled {
      background: rgba(255, 255, 255, 0.88);
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      border-bottom: 1px solid var(--border);
      box-shadow: 0 4px 24px rgba(15, 15, 18, 0.06);
    }
    .nav-inner {
      width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px;
      display: flex; align-items: center; justify-content: space-between; gap: 24px;
    }
    .brand {
      display: flex; align-items: center; gap: 11px;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.125rem;
      letter-spacing: -0.035em;
      color: #f8fafc;
      transition: color 0.25s ease;
    }
    .nav.scrolled .brand { color: var(--fg); }
    .brand-mark {
      width: 38px; height: 38px; border-radius: 11px;
      background: linear-gradient(145deg, #6366f1 0%, #7c3aed 55%, #2563eb 100%);
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 0.9rem;
      box-shadow: 0 10px 28px rgba(99, 102, 241, 0.38);
      flex-shrink: 0;
    }
    .brand-text {
      font-family: var(--font-display);
      font-weight: 800;
      letter-spacing: -0.04em;
    }
    .nav-links {
      display: flex; align-items: center; gap: 6px;
    }
    .nav-links a {
      font-family: var(--font-display);
      font-size: 0.875rem;
      font-weight: 600;
      letter-spacing: -0.01em;
      color: rgba(248, 250, 252, 0.78);
      padding: 8px 14px;
      border-radius: 999px;
      transition: color 0.2s ease, background 0.2s ease;
    }
    .nav-links a:hover {
      color: #ffffff;
      background: rgba(255, 255, 255, 0.08);
      text-decoration: none;
    }
    .nav.scrolled .nav-links a {
      color: var(--muted);
    }
    .nav.scrolled .nav-links a:hover {
      color: var(--fg);
      background: rgba(15, 15, 18, 0.05);
    }
    .nav-actions { display: flex; align-items: center; gap: 10px; }

    .nav .btn-login {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 0.875rem;
      letter-spacing: -0.01em;
      padding: 9px 18px;
      border-radius: 999px;
      color: #f8fafc;
      border: 1px solid rgba(255, 255, 255, 0.22);
      background: rgba(255, 255, 255, 0.06);
      transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }
    .nav .btn-login:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.34);
      transform: translateY(-1px);
      text-decoration: none;
    }
    .nav.scrolled .btn-login {
      color: var(--fg);
      border-color: var(--border);
      background: transparent;
    }
    .nav.scrolled .btn-login:hover {
      background: rgba(15, 15, 18, 0.04);
      border-color: rgba(15, 15, 18, 0.14);
      color: var(--fg);
    }
    .nav .btn-trial {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 0.875rem;
      letter-spacing: -0.01em;
      padding: 9px 18px;
      border-radius: 999px;
      color: #0f172a;
      background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
      border: 1px solid rgba(255, 255, 255, 0.65);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .nav .btn-trial:hover {
      transform: translateY(-1px);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
      text-decoration: none;
    }
    .nav.scrolled .btn-trial {
      color: #fff;
      background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
      border: none;
      box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35);
    }
    .nav.scrolled .btn-trial:hover {
      box-shadow: 0 12px 32px rgba(99, 102, 241, 0.45);
    }

    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      padding: 10px 20px; border-radius: 999px; font-size: 0.9rem; font-weight: 600;
      border: none; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
      white-space: nowrap;
    }
    .btn:active { transform: scale(0.98); }
    .btn-ghost {
      background: transparent; color: var(--fg);
      border: 1px solid var(--border);
    }
    .btn-ghost:hover { background: var(--surface); box-shadow: var(--shadow-sm); }
    .btn-primary {
      background: var(--fg); color: #fff;
      box-shadow: 0 4px 14px rgba(9, 9, 11, 0.2);
    }
    .btn-primary:hover {
      background: #27272a;
      box-shadow: 0 8px 28px rgba(9, 9, 11, 0.25);
      transform: translateY(-1px);
    }
    .btn-accent {
      background: linear-gradient(135deg, #6366f1, #8b5cf6);
      color: #fff;
      box-shadow: 0 8px 32px rgba(99, 102, 241, 0.4);
    }
    .btn-accent:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(99, 102, 241, 0.5); }
    .btn-lg { padding: 14px 28px; font-size: 1rem; }
    .btn-white {
      background: #fff; color: var(--fg);
      box-shadow: 0 4px 24px rgba(0,0,0,0.15);
    }
    .btn-white:hover { transform: translateY(-2px); }

    .nav-toggle {
      display: none; width: 44px; height: 44px; border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.18); background: rgba(255, 255, 255, 0.06);
      color: #f8fafc; font-size: 1.1rem; cursor: pointer;
      transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
      flex-shrink: 0;
    }
    .nav.scrolled .nav-toggle {
      border: 1px solid var(--border); background: var(--surface); color: var(--fg);
    }

    /* ── Hero ── */
    .hero {
      position: relative; min-height: 100vh;
      padding: calc(var(--nav-h) + 48px) 0 80px;
      background: #030712;
      color: #fafafa;
      overflow: hidden;
    }
    .hero-mesh {
      position: absolute; inset: 0; pointer-events: none;
      background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(99, 102, 241, 0.35), transparent),
        radial-gradient(ellipse 60% 40% at 100% 0%, rgba(34, 211, 238, 0.15), transparent),
        radial-gradient(ellipse 50% 50% at 0% 50%, rgba(139, 92, 246, 0.12), transparent);
    }
    .hero-grid {
      position: absolute; inset: 0; pointer-events: none; opacity: 0.4;
      background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 64px 64px;
      mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black, transparent);
    }
    .hero-layout {
      position: relative; z-index: 1;
      display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px; align-items: center;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 6px 14px 6px 8px; border-radius: 999px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.75);
      margin-bottom: 24px;
    }
    .hero-badge span.dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: #22c55e; box-shadow: 0 0 12px #22c55e;
    }
    .hero h1 {
      font-size: clamp(2.5rem, 5vw, 3.75rem);
      font-weight: 800; line-height: 1.05; letter-spacing: -0.04em;
      margin-bottom: 20px;
    }
    .hero h1 .gradient {
      background: linear-gradient(135deg, #a5b4fc 0%, #67e8f9 50%, #c4b5fd 100%);
      -webkit-background-clip: text; background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .hero-lead {
      font-size: 1.15rem; line-height: 1.65;
      color: rgba(255,255,255,0.55); max-width: 520px; margin-bottom: 32px;
    }
    .hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
    .hero-trust {
      display: flex; flex-wrap: wrap; gap: 24px;
      padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08);
    }
    .trust-item strong {
      display: block; font-size: 1.35rem; font-weight: 800;
      letter-spacing: -0.02em; color: #fff;
    }
    .trust-item span { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

    /* Mockup */
    .mockup-wrap {
      position: relative;
      perspective: 1200px;
    }
    .mockup-glow {
      position: absolute; inset: -20% -10%;
      background: radial-gradient(circle, rgba(99,102,241,0.35) 0%, transparent 65%);
      filter: blur(40px); pointer-events: none;
    }
    .app-mockup {
      position: relative;
      background: #0f172a;
      border-radius: 16px;
      border: 1px solid rgba(255,255,255,0.1);
      overflow: hidden;
      box-shadow: 0 40px 100px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.05);
      transform: rotateY(-6deg) rotateX(4deg);
      transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .mockup-wrap:hover .app-mockup { transform: rotateY(-2deg) rotateX(2deg); }
    .mockup-titlebar {
      background: #1e293b; padding: 12px 16px;
      display: flex; align-items: center; gap: 8px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .mdot { width: 10px; height: 10px; border-radius: 50%; }
    .mdot-r { background: #ef4444; }
    .mdot-y { background: #f59e0b; }
    .mdot-g { background: #22c55e; }
    .mockup-url { font-size: 0.65rem; color: rgba(255,255,255,0.25); margin-left: 8px; font-family: ui-monospace, monospace; }
    .mockup-appbar {
      padding: 12px 16px; display: flex; justify-content: space-between; align-items: center;
      background: linear-gradient(135deg, rgba(99,102,241,0.15), rgba(139,92,246,0.08));
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .mockup-stats {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
      background: rgba(255,255,255,0.05); margin: 12px 14px; border-radius: 12px; overflow: hidden;
    }
    .mockup-stat { background: #1e293b; padding: 10px 8px; text-align: center; }
    .ms-label { font-size: 0.58rem; color: rgba(255,255,255,0.32); margin-bottom: 4px; }
    .ms-value { font-size: 0.8rem; font-weight: 800; }
    .ms-purple { color: #a5b4fc; }
    .ms-orange { color: #fdba74; }
    .ms-red { color: #f87171; }
    .mockup-chart { padding: 8px 14px 4px; }
    .chart-bars { display: flex; align-items: flex-end; gap: 5px; height: 56px; }
    .cbar { flex: 1; background: rgba(167,139,250,0.2); border-radius: 4px 4px 0 0; }
    .cbar.hi { background: linear-gradient(180deg, #a78bfa, #6366f1); }
    .chart-lbl { font-size: 0.58rem; color: rgba(255,255,255,0.25); text-align: center; margin-top: 6px; padding-bottom: 6px; }
    .mact-title { font-size: 0.6rem; font-weight: 700; color: rgba(255,255,255,0.28); text-transform: uppercase; letter-spacing: 0.06em; padding: 8px 16px 4px; }
    .mact-item { display: flex; align-items: center; gap: 10px; padding: 8px 16px; border-top: 1px solid rgba(255,255,255,0.04); }
    .mact-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
    .mact-dot.sale { background: #818cf8; }
    .mact-dot.purchase { background: #fb923c; }
    .mact-name { flex: 1; font-size: 0.72rem; color: rgba(255,255,255,0.55); }
    .mact-amt { font-size: 0.72rem; font-weight: 700; }
    .mact-sale { color: #a5b4fc; }
    .mact-buy { color: #fdba74; }

    /* ── Logos / stats strip ── */


    /* ── Pricing (premium + offers) ── */
    .pricing-section {
      background: #09090b;
      color: #fafafa;
      position: relative;
      overflow: hidden;
      padding: 110px 0 100px;
    }
    .pricing-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 50% at 50% -10%, rgba(99, 102, 241, 0.35), transparent 55%),
        radial-gradient(ellipse 40% 30% at 100% 50%, rgba(139, 92, 246, 0.12), transparent),
        radial-gradient(ellipse 40% 30% at 0% 80%, rgba(245, 158, 11, 0.08), transparent);
      pointer-events: none;
    }
    .pricing-section .wrap { position: relative; z-index: 1; }
    .pricing-section .section-head h2 { color: #fff; font-size: clamp(2rem, 4vw, 2.85rem); }
    .pricing-section .section-head p { color: rgba(255,255,255,0.55); max-width: 520px; margin: 0 auto; }
    .pricing-section .section-eyebrow { color: #a5b4fc; }
    .pricing-crosslink {
      display: flex;
      justify-content: center;
      margin: -8px auto 28px;
    }
    .pricing-crosslink a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-display);
      font-size: 0.82rem;
      font-weight: 700;
      color: rgba(165, 180, 252, 0.9);
      padding: 8px 16px;
      border-radius: 999px;
      border: 1px solid rgba(129, 140, 248, 0.3);
      background: rgba(99, 102, 241, 0.1);
      transition: background 0.2s, color 0.2s, border-color 0.2s;
    }
    .pricing-crosslink a:hover {
      color: #fff;
      background: rgba(99, 102, 241, 0.25);
      border-color: rgba(165, 180, 252, 0.5);
    }
    .price-card .plan-features--compact li.dim { display: none; }
    @keyframes pricing-stage-glow {
      0%, 100% { box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.08); }
      50% { box-shadow: 0 48px 110px rgba(99, 102, 241, 0.18), 0 0 0 1px rgba(129, 140, 248, 0.22); }
    }
    @keyframes pricing-featured-glow {
      0%, 100% { box-shadow: 0 32px 80px rgba(99, 102, 241, 0.25); }
      50% { box-shadow: 0 36px 90px rgba(139, 92, 246, 0.38); }
    }
    @keyframes pricing-shimmer {
      0% { transform: translateX(-120%) skewX(-12deg); opacity: 0; }
      40% { opacity: 0.35; }
      100% { transform: translateX(220%) skewX(-12deg); opacity: 0; }
    }
    @keyframes limited-offer-glow {
      0%, 100% { opacity: 0.85; filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.35)); }
      50% { opacity: 1; filter: drop-shadow(0 0 16px rgba(245, 158, 11, 0.55)); }
    }
    @keyframes limited-offer-slide {
      0% { background-position: 0% center; }
      100% { background-position: 200% center; }
    }
    @keyframes limited-spark-pulse {
      0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.7; }
      50% { transform: scale(1.15) rotate(12deg); opacity: 1; }
    }

    .pricing-limited-offer {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin: 0 auto 28px;
      max-width: 520px;
      padding: 12px 28px;
      border-radius: 999px;
      background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(99, 102, 241, 0.1));
      border: 1px solid rgba(251, 191, 36, 0.35);
      box-shadow: 0 0 40px rgba(245, 158, 11, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.08);
      animation: limited-offer-glow 3s ease-in-out infinite;
    }
    .pricing-limited-offer::before,
    .pricing-limited-offer::after {
      content: '';
      flex: 1;
      max-width: 48px;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.55), transparent);
    }
    .pricing-limited-text {
      font-family: var(--font-display);
      font-size: clamp(0.82rem, 2.2vw, 1.05rem);
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      white-space: nowrap;
      background: linear-gradient(105deg, #fde68a 0%, #fbbf24 25%, #fff 50%, #fbbf24 75%, #fde68a 100%);
      background-size: 200% auto;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: limited-offer-slide 5s linear infinite;
    }
    .pricing-limited-spark {
      font-size: 0.65rem;
      color: #fbbf24;
      animation: limited-spark-pulse 2s ease-in-out infinite;
    }
    .pricing-limited-spark:last-child { animation-delay: 0.6s; }

    .pricing-stage {
      margin-top: 8px;
      padding: 28px 20px 24px;
      border-radius: 28px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
      backdrop-filter: blur(20px);
      animation: pricing-stage-glow 6s ease-in-out infinite;
    }

    .pricing-billing-toggle {
      display: flex; justify-content: center; margin-bottom: 28px;
    }
    .pricing-toggle-inner {
      display: inline-flex; align-items: center; gap: 4px;
      padding: 6px; border-radius: 16px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
    }
    .pricing-toggle-btn {
      font-family: var(--font-display);
      font-size: 0.88rem; font-weight: 700;
      padding: 11px 24px; border: none; border-radius: 12px;
      background: transparent; color: rgba(255,255,255,0.5);
      cursor: pointer; transition: background 0.25s, color 0.25s, box-shadow 0.25s;
    }
    .pricing-toggle-btn.active {
      background: linear-gradient(135deg, #6366f1, #8b5cf6);
      color: #fff;
      box-shadow: 0 8px 28px rgba(99, 102, 241, 0.45);
    }
    .pricing-toggle-save {
      margin-left: 8px;
      font-size: 0.65rem; font-weight: 800;
      padding: 4px 8px; border-radius: 6px;
      background: rgba(74, 222, 128, 0.2); color: #4ade80;
    }
    .pricing-toggle-inner[data-cycle="monthly"] .pricing-toggle-save { display: none; }

    .pricing-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch;
      padding-top: 18px;
    }
    .price-card {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 22px; padding: 28px 24px 24px;
      display: flex; flex-direction: column;
      transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s, border-color 0.3s;
      position: relative;
      overflow: visible;
    }
    .price-card:hover {
      transform: translateY(-8px);
      border-color: rgba(129, 140, 248, 0.35);
      box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
    }
    .price-card.featured {
      border: 2px solid rgba(129, 140, 248, 0.55);
      background: linear-gradient(165deg, rgba(99,102,241,0.12) 0%, rgba(255,255,255,0.05) 45%, rgba(15,15,18,0.2) 100%);
      box-shadow: 0 32px 80px rgba(99, 102, 241, 0.25);
      transform: scale(1.02);
      animation: pricing-featured-glow 5s ease-in-out infinite;
      padding-top: 36px;
      margin-top: 4px;
    }
    .price-card.featured .price-card-shine {
      position: absolute;
      inset: 0;
      border-radius: inherit;
      overflow: hidden;
      pointer-events: none;
      z-index: 0;
    }
    .price-card.featured .price-card-shine::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.08) 50%, transparent 60%);
      animation: pricing-shimmer 5s ease-in-out infinite;
    }
    .price-card.featured > *:not(.price-card-shine):not(.price-card-badge-wrap) {
      position: relative;
      z-index: 1;
    }
    .price-card.featured:hover {
      transform: scale(1.02) translateY(-8px);
      box-shadow: 0 40px 90px rgba(99, 102, 241, 0.35);
    }
    .price-card-badge-wrap {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 4;
      pointer-events: none;
    }
    .price-badge {
      display: none;
      background: linear-gradient(135deg, #6366f1, #8b5cf6);
      color: #fff; font-size: 0.68rem; font-weight: 800;
      padding: 6px 14px; border-radius: 999px; white-space: nowrap;
      letter-spacing: 0.06em; text-transform: uppercase;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
      border: 1px solid rgba(255, 255, 255, 0.15);
    }
    .price-badge--yearly { background: linear-gradient(135deg, #10b981, #059669); }
    .pricing-section[data-billing="yearly"] .price-badge--monthly { display: none; }
    .pricing-section[data-billing="yearly"] .price-badge--yearly { display: inline-block; }
    .pricing-section[data-billing="monthly"] .price-badge--yearly { display: none; }
    .pricing-section[data-billing="monthly"] .price-badge--monthly { display: inline-block; }
    .price-save-pill {
      display: inline-block;
      font-size: 0.68rem; font-weight: 800;
      padding: 4px 10px; border-radius: 999px;
      background: rgba(74, 222, 128, 0.15); color: #4ade80;
      margin-bottom: 10px;
    }
    .pricing-section[data-billing="monthly"] .price-save-pill--yearly { display: none; }
    .pricing-section[data-billing="yearly"] .price-save-pill--monthly { display: none; }
    .price-card--trial .price-was-row { display: none; }

    .plan-name { font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.45); margin-bottom: 10px; }
    .price-was-row {
      font-size: 0.95rem; color: rgba(255,255,255,0.35); margin-bottom: 4px;
      display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
    }
    .price-was-row s { font-weight: 600; }
    .price-was-row .strike-label { font-size: 0.72rem; font-weight: 700; color: #4ade80; }

    .plan-price { margin-bottom: 6px; display: flex; align-items: baseline; flex-wrap: wrap; gap: 2px 4px; }
    .plan-price .currency { font-size: 1.15rem; font-weight: 700; color: rgba(255,255,255,0.5); }
    .plan-price .amount { font-size: 2.85rem; font-weight: 800; letter-spacing: -0.04em; line-height: 1; font-family: var(--font-display); color: #fff; }
    .plan-price .period { font-size: 0.9rem; color: rgba(255,255,255,0.45); font-weight: 500; }
    .plan-price .per-mo-note {
      width: 100%; font-size: 0.78rem; color: rgba(255,255,255,0.4);
      margin-top: 4px; display: none;
    }
    .pricing-section[data-billing="yearly"] .plan-price .per-mo-note { display: block; }
    .pricing-section[data-billing="monthly"] .plan-price .per-mo-note { display: none !important; }

    .plan-billing-note { font-size: 0.78rem; color: rgba(255,255,255,0.42); margin-bottom: 16px; }
    .plan-tagline { font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-bottom: 16px; }
    .chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
    .chip {
      font-size: 0.72rem; font-weight: 600; padding: 5px 11px; border-radius: 999px;
      background: rgba(99, 102, 241, 0.2); color: #c7d2fe;
      border: 1px solid rgba(99, 102, 241, 0.25);
    }
    .plan-features { list-style: none; margin-bottom: 20px; flex: 1; }
    .plan-features li {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 0.85rem; padding: 6px 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      color: rgba(255,255,255,0.72);
    }
    .plan-features li:last-child { border-bottom: none; }
    .plan-features .ok { color: #4ade80; margin-top: 2px; font-size: 0.75rem; }
    .plan-features .no { color: rgba(255,255,255,0.2); margin-top: 2px; }
    .plan-features li.dim { color: rgba(255,255,255,0.35); }
    .price-card--trial { border-color: rgba(74, 222, 128, 0.25); }
    .price-card--trial .price-save-pill--yearly { display: none !important; }
    .price-card--trial .price-save-pill--monthly { display: inline-block !important; }
    .btn-plan { width: 100%; padding: 14px; border-radius: 12px; font-weight: 700; font-size: 0.92rem; margin-top: auto; }
    .pricing-section .btn-outline {
      background: transparent; border: 2px solid rgba(255,255,255,0.2); color: #fff;
    }
    .pricing-section .btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.06); color: #fff; }
    .pricing-section .btn-fill { background: #fff; color: #0f0f12; border: none; }
    .pricing-section .btn-fill:hover { background: #e4e4e7; color: #0f0f12; }
    .btn-gold { background: linear-gradient(135deg, #f59e0b, #ea580c); color: #fff; border: none; box-shadow: 0 8px 24px rgba(245,158,11,0.35); }

    .price-card .plan-cta-monthly,
    .price-card .plan-cta-yearly { display: none; }
    .pricing-section[data-billing="monthly"] .price-card .plan-cta-monthly { display: inline-flex; justify-content: center; align-items: center; gap: 8px; }
    .pricing-section[data-billing="yearly"] .price-card .plan-cta-yearly { display: inline-flex; justify-content: center; align-items: center; gap: 8px; }
    .price-card--trial .plan-cta-monthly { display: inline-flex !important; justify-content: center; align-items: center; gap: 8px; }

    .pricing-legal {
      margin-top: 28px;
      text-align: center;
      font-size: 0.78rem;
      color: rgba(255,255,255,0.38);
      line-height: 1.6;
    }
    .pricing-legal a {
      color: rgba(165, 180, 252, 0.85);
      font-weight: 600;
      text-decoration: none;
    }
    .pricing-legal a:hover { color: #c7d2fe; text-decoration: underline; }

    .pricing-section .addons {
      margin-top: 24px; padding: 22px 26px;
      background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius);
      display: flex; flex-wrap: wrap; align-items: center; gap: 16px 28px;
    }
    .pricing-section .addons h4 { font-size: 0.92rem; font-weight: 700; width: 100%; margin-bottom: -4px; color: #fff; }
    .pricing-section .addon { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
    .pricing-section .addon strong { color: #c7d2fe; }

    /* ── CTA ── */
    .cta-block {
      padding: 100px 24px;
      background: var(--fg);
      color: #fafafa;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-block::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse 60% 80% at 50% 120%, rgba(99,102,241,0.4), transparent);
      pointer-events: none;
    }
    .cta-inner { position: relative; max-width: 640px; margin: 0 auto; }
    .cta-inner h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 16px; }
    .cta-inner p { font-size: 1.1rem; color: rgba(255,255,255,0.55); margin-bottom: 32px; }
    .cta-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

    /* ── Footer ── */
    .footer {
      background: #09090b; color: rgba(255,255,255,0.55);
      padding: 64px 0 32px;
    }
    .footer-grid {
      display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px;
      margin-bottom: 48px;
    }
    .footer-brand { font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
    .footer-desc { font-size: 0.88rem; line-height: 1.65; max-width: 280px; }
    .footer-col h5 { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
    .footer-col a {
      display: block; font-size: 0.88rem; margin-bottom: 10px;
      transition: color 0.2s;
    }
    .footer-col a:hover { color: #fff; }
    .footer-bottom {
      padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
      display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
      font-size: 0.8rem;
    }

    @media (prefers-reduced-motion: reduce) {
      .pricing-stage,
      .price-card.featured,
      .price-card.featured .price-card-shine::after,
      .pricing-limited-offer,
      .pricing-limited-text,
      .pricing-limited-spark { animation: none; }
    }

    /* Reveal */
    .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal.visible { opacity: 1; transform: none; }

    @media (max-width: 1024px) {
      .hero-layout, .why-layout { grid-template-columns: 1fr; }
      .why-metrics { grid-template-columns: repeat(2, 1fr); }
      .why-float--tl { left: 0; }
      .why-float--br { right: 0; }
      .why-float--tr { right: 0; }
      .hero-visual { order: -1; }
      .app-mockup { transform: none !important; max-width: 480px; margin: 0 auto; }
      .feat-grid, .feat-grid--hero { grid-template-columns: 1fr; }
      .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
      .price-card.featured { transform: none; }
      .price-card.featured:hover { transform: translateY(-8px); }
      .pricing-stage { padding: 20px 14px; }
      .pricing-limited-offer { max-width: 100%; padding: 10px 18px; gap: 10px; }
      .pricing-limited-offer::before, .pricing-limited-offer::after { max-width: 28px; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .why-section { padding: 80px 0; }
      .why-metrics { grid-template-columns: 1fr 1fr; gap: 10px; }
      .why-cards { grid-template-columns: 1fr; }
      .why-float { display: none; }
      .feat-block-head { flex-direction: column; align-items: flex-start; }
      .feat-compare-foot { flex-direction: column; align-items: flex-start; }
      .feat-compare-feat-col { padding-left: 16px !important; }
      .feat-compare-head .feat-compare-feat-col { padding-left: 16px; }
      .nav-links, .nav-actions { display: none; }
      .nav-toggle { display: flex; align-items: center; justify-content: center; }
      .pricing-limited-text { letter-spacing: 0.1em; font-size: 0.78rem; }

      .nav {
        height: auto;
        min-height: var(--nav-h);
      }
      .nav.open {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(24px) saturate(180%);
        -webkit-backdrop-filter: blur(24px) saturate(180%);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 16px 48px rgba(15, 15, 18, 0.14);
      }
      .nav.open .brand,
      .nav.open .brand-text { color: var(--fg); }
      .nav.open .nav-toggle {
        border-color: var(--border);
        background: rgba(15, 15, 18, 0.05);
        color: var(--fg);
      }
      .nav.open .nav-inner {
        flex-wrap: wrap;
        align-items: stretch;
        padding-bottom: 20px;
        gap: 0;
      }
      .nav.open .brand { order: 1; }
      .nav.open .nav-toggle { order: 2; margin-left: auto; }
      .nav.open .nav-links {
        display: flex;
        flex-direction: column;
        width: 100%;
        order: 3;
        padding: 12px 0 8px;
        gap: 4px;
        margin-top: 8px;
        border-top: 1px solid var(--border);
      }
      .nav.open .nav-links a {
        color: var(--fg);
        padding: 14px 16px;
        border-radius: 12px;
        font-size: 1rem;
        background: transparent;
      }
      .nav.open .nav-links a:hover {
        background: rgba(15, 15, 18, 0.05);
        color: var(--fg);
      }
      .nav.open .nav-actions {
        display: flex;
        flex-direction: column;
        width: 100%;
        order: 4;
        gap: 10px;
        padding-top: 4px;
      }
      .nav.open .nav-actions a {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 14px 20px;
        font-size: 0.9375rem;
      }
      .nav.open .btn-login {
        color: var(--fg);
        border-color: var(--border);
        background: var(--surface);
      }
      .nav.open .btn-trial {
        color: #fff;
        background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
        border: none;
        box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35);
      }

      .nav-backdrop {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 999;
        background: rgba(9, 9, 11, 0.45);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        opacity: 0;
        transition: opacity 0.28s ease;
        pointer-events: none;
      }
      body.menu-open .nav-backdrop {
        display: block;
        opacity: 1;
        pointer-events: auto;
      }
      body.menu-open { overflow: hidden; }

      .section { padding: 72px 0; }
    }