    :root {
      --forest-deep: #0F1B4D;
      --forest-mid: #162560;
      --leaf-dark: #1E3F7A;
      --leaf-mid: #3366B8;
      --leaf-light: #5599DD;
      --sage: #B0CFEE;
      --sage-light: #E0EBF8;
      --gold: #F5C842;
      --gold-light: #FFD95A;
      --gold-glow: #FFE680;
      --cream: #F0EBD8;
      --glass-bg: rgba(25, 55, 120, 0.35);
      --glass-border: rgba(160, 200, 240, 0.2);
      --glass-border-hover: rgba(245, 200, 66, 0.45);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
      background-color: var(--forest-deep);
      color: var(--sage-light);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
      position: relative;
    }

    /* ─── NOISE TEXTURE OVERLAY (static PNG for performance) ─── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background: repeating-conic-gradient(rgba(255,255,255,0.03) 0% 25%, transparent 0% 50%) 0 0 / 4px 4px;
      pointer-events: none;
      z-index: 1000;
      mix-blend-mode: overlay;
    }

    /* Display font for headings */
    h1, h2, h3, h4,
    .font-black, .font-extrabold, .font-bold {
      font-family: 'Outfit', system-ui, -apple-system, sans-serif;
    }

    /* ─── LAYERED BACKGROUND ─── */
    .bg-layer {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
    }
    .bg-layer::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(30, 60, 130, 0.7) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(40, 80, 160, 0.5) 0%, transparent 55%),
        radial-gradient(ellipse 100% 100% at 50% 50%, var(--forest-deep) 0%, #0A1540 100%);
    }
    .bg-layer::after {
      content: '';
      position: absolute;
      top: -20%;
      left: 50%;
      transform: translateX(-50%);
      width: 800px;
      height: 600px;
      background: radial-gradient(circle, rgba(245, 200, 66, 0.07) 0%, transparent 70%);
      border-radius: 50%;
    }

    /* ─── FLOATING PARTICLES (reduced to 8 for perf) ─── */
    .particles {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 1;
      overflow: hidden;
    }
    .particle {
      position: absolute;
      border-radius: 50% 0 50% 0;
      animation: drift linear infinite;
      opacity: 0;
      will-change: transform, opacity;
    }
    .particle.leaf { border-radius: 0 100% 0 100%; }
    .particle.feather { width: 3px; border-radius: 50%; background: linear-gradient(180deg, transparent, rgba(245,200,66,0.5), transparent); }
    .particle:nth-child(1) { left: 10%;  width: 12px; height: 18px; background: rgba(140,180,220,0.25); animation-duration: 20s; animation-delay: 0s;   top: -20px; }
    .particle:nth-child(2) { left: 25%;  width: 8px;  height: 12px; background: rgba(245,200,66,0.2);  animation-duration: 24s; animation-delay: -6s;  top: -20px; }
    .particle:nth-child(3) { left: 40%;  width: 14px; height: 20px; background: rgba(50,120,200,0.25); animation-duration: 18s; animation-delay: -3s;  top: -20px; }
    .particle:nth-child(4) { left: 55%;  width: 6px;  height: 10px; background: rgba(140,180,220,0.2); animation-duration: 26s; animation-delay: -10s; top: -20px; }
    .particle:nth-child(5) { left: 70%;  width: 10px; height: 16px; background: rgba(245,200,66,0.15); animation-duration: 22s; animation-delay: -14s; top: -20px; }
    .particle:nth-child(6) { left: 85%;  width: 11px; height: 15px; background: rgba(50,120,200,0.2);  animation-duration: 19s; animation-delay: -8s;  top: -20px; }

    @keyframes drift {
      0%   { transform: translateY(0)   rotate(0deg)   translateX(0);   opacity: 0; }
      5%   { opacity: 0.8; }
      90%  { opacity: 0.6; }
      100% { transform: translateY(110vh) rotate(360deg) translateX(40px); opacity: 0; }
    }

    /* Gradient Texts */
    .gradient-text {
      background: linear-gradient(135deg, var(--leaf-light) 0%, var(--gold) 45%, var(--gold-glow) 100%);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }

    /* Hero Background — dark forest */
    .hero-gradient {
      background:
        radial-gradient(ellipse at 70% 0%, rgba(40, 85, 175, 0.35) 0%, transparent 55%),
        radial-gradient(ellipse at 15% 85%, rgba(30, 60, 130, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 80%, rgba(245, 200, 66, 0.06) 0%, transparent 45%),
        linear-gradient(160deg, #0F1B4D 0%, #162560 35%, #132050 65%, #0F1B4D 100%);
      position: relative;
    }
    .hero-gradient::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; bottom: 0;
      background:
        radial-gradient(ellipse at 80% 20%, rgba(60, 130, 220, 0.18) 0%, transparent 48%),
        radial-gradient(ellipse at 20% 75%, rgba(40, 80, 160, 0.15) 0%, transparent 48%),
        radial-gradient(ellipse at 50% 50%, rgba(245, 200, 66, 0.04) 0%, transparent 60%);
      pointer-events: none;
    }
    .hero-gradient::after {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; bottom: 0;
      background: repeating-conic-gradient(rgba(255,255,255,0.02) 0% 25%, transparent 0% 50%) 0 0 / 3px 3px;
      pointer-events: none; opacity: 0.6;
    }


    /* Keyframes */
    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-12px); }
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes scaleIn {
      from { opacity: 0; transform: scale(0.9); }
      to { opacity: 1; transform: scale(1); }
    }
    @keyframes slideRight {
      from { opacity: 0; transform: translateX(-40px); }
      to { opacity: 1; transform: translateX(0); }
    }
    @keyframes slideLeft {
      from { opacity: 0; transform: translateX(40px); }
      to { opacity: 1; transform: translateX(0); }
    }
    @keyframes pulseSoft {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.7; }
    }
    @keyframes shimmer {
      0% { background-position: -200% center; }
      100% { background-position: 200% center; }
    }
    @keyframes countUp {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes bounceIn {
      0% { opacity: 0; transform: scale(0.3); }
      50% { opacity: 1; transform: scale(1.08); }
      70% { transform: scale(0.95); }
      100% { transform: scale(1); }
    }
    @keyframes flipIn {
      from { opacity: 0; transform: perspective(400px) rotateY(90deg); }
      40% { transform: perspective(400px) rotateY(-15deg); }
      70% { transform: perspective(400px) rotateY(10deg); }
      to { opacity: 1; transform: perspective(400px) rotateY(0); }
    }
    @keyframes glowPulse {
      0%, 100% { box-shadow: 0 0 24px rgba(245, 200, 66, 0.15), 0 0 70px rgba(50, 120, 200, 0.08); }
      50% { box-shadow: 0 0 40px rgba(245, 200, 66, 0.28), 0 0 100px rgba(50, 120, 200, 0.14); }
    }
    @keyframes gradientShift {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }
    @keyframes slideUp {
      from { opacity: 0; transform: translateY(60px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes wiggle {
      0%, 100% { transform: rotate(0deg); }
      25% { transform: rotate(3deg); }
      75% { transform: rotate(-3deg); }
    }
    @keyframes morphBlob {
      0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
      25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
      50% { border-radius: 50% 60% 30% 60% / 40% 70% 50% 60%; }
      75% { border-radius: 60% 30% 50% 40% / 70% 40% 60% 30%; }
    }
    /* Scroll-triggered animations — no blur for performance */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                  transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal.active { opacity: 1; transform: translateY(0); }

    .reveal-scale {
      opacity: 0;
      transform: scale(0.88);
      transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                  transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal-scale.active { opacity: 1; transform: scale(1); }

    .reveal-left {
      opacity: 0;
      transform: translateX(-50px);
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                  transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal-left.active { opacity: 1; transform: translateX(0); }

    .reveal-right {
      opacity: 0;
      transform: translateX(50px);
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                  transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal-right.active { opacity: 1; transform: translateX(0); }

    .reveal-flip {
      opacity: 0;
      transform: perspective(400px) rotateY(30deg);
      transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                  transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal-flip.active { opacity: 1; transform: perspective(400px) rotateY(0); }

    /* Card hover — dark glassmorphism (no backdrop-filter for perf) */
    .card-hover {
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                  box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                  border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative; overflow: hidden;
      background-clip: padding-box;
      background: rgba(20, 45, 100, 0.5);
      border: 1px solid var(--glass-border);
    }
    /* Animated gold gradient top border */
    .card-hover::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, var(--leaf-light), var(--gold), var(--gold-glow), var(--leaf-light));
      background-size: 300% 100%;
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .card-hover:hover::before {
      transform: scaleX(1);
      animation: gradientShift 3s ease infinite;
    }
    /* Glass inset glow on hover */
    .card-hover::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(245,200,66,0.06) 0%, rgba(50,120,200,0.04) 60%);
      opacity: 0;
      transition: opacity 0.4s ease;
      pointer-events: none;
    }
    .card-hover:hover::after { opacity: 1; }
    .card-hover:hover {
      transform: translateY(-8px);
      box-shadow:
        0 30px 60px -12px rgba(0, 0, 0, 0.4),
        0 8px 20px -4px rgba(245, 200, 66, 0.12);
      border-color: var(--glass-border-hover);
    }

    /* Feature icon */
    .feature-icon {
      width: 52px; height: 52px;
      display: flex; align-items: center; justify-content: center;
      border-radius: 14px; font-size: 26px;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .card-hover:hover .feature-icon { transform: scale(1.2) rotate(-8deg); }


    /* Glow pulse for CTA */
    .glow-pulse { animation: glowPulse 3s ease-in-out infinite; }

    /* Morphing blob backgrounds */
    .morph-blob {
      position: absolute; pointer-events: none;
      animation: morphBlob 12s ease-in-out infinite;
      background: linear-gradient(135deg, rgba(30, 70, 140, 0.12), rgba(50, 120, 200, 0.08));
    }


    /* Language button */
    .lang-btn {
      transition: all 0.2s ease;
      padding: 5px 10px;
      border-radius: 8px;
      font-size: 12px;
      font-weight: 600;
      border: none;
      background: transparent;
      color: var(--sage);
      cursor: pointer;
      letter-spacing: 0.03em;
    }
    .lang-btn.active {
      background: rgba(245, 200, 66, 0.18);
      color: var(--gold-light);
      box-shadow: 0 0 0 1px rgba(245, 200, 66, 0.3);
    }
    .lang-btn:not(.active):hover {
      color: var(--gold-light);
      background: rgba(245, 200, 66, 0.1);
    }

    /* Hero logo glow */
    .logo-glow {
      filter: drop-shadow(0 0 30px rgba(245, 200, 66, 0.20)) drop-shadow(0 0 60px rgba(50, 120, 200, 0.12));
    }

    /* Floating decorative elements */
    .floating-particle {
      position: absolute; border-radius: 50%; pointer-events: none;
      background: linear-gradient(135deg, rgba(30, 70, 140, 0.25), rgba(50, 120, 200, 0.18));
    }

    /* Stats section — deep blue theme */
    .stats-forest {
      background: linear-gradient(135deg, #0F1B4D 0%, #152560 30%, #1E3F7A 65%, #1A3570 100%);
      position: relative;
      overflow: hidden;
    }
    .stats-forest::before {
      content: '';
      position: absolute; inset: 0;
      background: repeating-conic-gradient(rgba(255,255,255,0.02) 0% 25%, transparent 0% 50%) 0 0 / 3px 3px;
      pointer-events: none;
    }
    /* Gold accent dividers for stat items on dark forest bg */
    .stat-item { position: relative; }
    .stat-item::after {
      content: '';
      position: absolute; right: 0; top: 50%; transform: translateY(-50%);
      width: 1px; height: 40px;
      background: linear-gradient(to bottom, transparent, rgba(245, 200, 66, 0.25), transparent);
    }
    .stat-item:last-child::after { display: none; }
    /* Stat text gold accent */
    .stats-forest .text-primary-200 {
      color: rgba(245, 200, 66, 0.75) !important;
    }

    /* Navbar scroll */
    .nav-scrolled { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); }

    /* CTA shimmer button — gold/green gradient */
    .btn-shimmer {
      background-size: 200% auto;
      background-image: linear-gradient(135deg, var(--leaf-mid) 0%, var(--leaf-light) 30%, var(--gold) 65%, var(--leaf-mid) 100%);
      animation: shimmer 3.5s linear infinite;
      color: var(--forest-deep);
      font-weight: 700;
      border: 1px solid rgba(245, 200, 66, 0.4);
    }

    /* Mobile phone mockup */
    .phone-mockup {
      width: 260px; height: 520px;
      border-radius: 36px;
      border: 6px solid #c0d4e8;
      background: linear-gradient(180deg, #f0f5fa 0%, #e8eef5 100%);
      box-shadow:
        0 40px 80px -20px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.3),
        0 0 60px rgba(80, 140, 220, 0.15);
      position: relative; overflow: hidden;
    }
    .phone-mockup::before {
      content: '';
      position: absolute; top: 0; left: 50%; transform: translateX(-50%);
      width: 100px; height: 24px;
      background: #d0dce8; border-radius: 0 0 16px 16px;
      z-index: 2;
    }

    /* Screenshot carousel */
    .screenshot-track {
      display: flex; gap: 20px;
      animation: scrollCarousel 50s linear infinite;
      will-change: transform;
      width: max-content;
    }
    .screenshot-track.paused { animation-play-state: paused; }
    .screenshot-track:hover { animation-play-state: paused; }
    @keyframes scrollCarousel {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .screenshot-item {
      flex-shrink: 0; width: 220px;
      border-radius: 24px; overflow: hidden;
      border: 4px solid rgba(100, 160, 230, 0.4);
      box-shadow:
        0 20px 40px -10px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(140, 180, 220, 0.1);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      background: var(--forest-mid);
    }
    .screenshot-item:hover {
      transform: scale(1.05) translateY(-10px);
      box-shadow:
        0 36px 70px -15px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(245, 200, 66, 0.25);
    }
    .screenshot-item img { width: 100%; height: auto; display: block; }

    /* Mobile menu */
    #mobile-menu { opacity: 0; transition: opacity 0.25s ease; }
    #mobile-menu.open { opacity: 1; }
    #mobile-panel { transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); }

    /* Premium badge — luxurious gold gradient */
    .premium-badge {
      position: absolute; top: 12px; right: 12px;
      display: inline-flex; align-items: center; gap: 3px;
      background: linear-gradient(135deg, #B8860B 0%, #D4A853 40%, #F0C674 70%, #D4A853 100%);
      background-size: 200% auto;
      animation: shimmer 3s linear infinite;
      color: #3B1F00; font-size: 10px; font-weight: 700;
      padding: 3px 9px; border-radius: 999px;
      box-shadow: 0 2px 10px rgba(245, 200, 66, 0.45), 0 0 0 1px rgba(245, 200, 66, 0.2);
      letter-spacing: 0.04em;
      text-shadow: 0 1px 0 rgba(255,255,255,0.3);
    }

    /* FAQ accordion */
    .faq-item { border-bottom: 1px solid var(--glass-border); }
    .faq-question { cursor: pointer; user-select: none; background: none; border: none; width: 100%; text-align: left; color: var(--sage-light); }
    .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    .faq-answer.open { max-height: 300px; }
    .faq-icon { transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); color: var(--sage); }
    .faq-item.open .faq-icon { transform: rotate(180deg); }

    /* How it works connector line */
    .how-connector { flex: 1; height: 2px; max-width: 60px;
      background: linear-gradient(90deg, var(--leaf-light), var(--gold));
      background-size: 200% 100%; animation: shimmer 3s linear infinite; }

    /* Step number bounce */
    .step-icon-wiggle:hover { animation: wiggle 0.5s ease-in-out; }

    /* Footer — deep blue */
    .footer-forest {
      background: #0F1B4D;
      position: relative;
    }
    .footer-forest::before {
      content: '';
      position: absolute; inset: 0;
      background: repeating-conic-gradient(rgba(255,255,255,0.02) 0% 25%, transparent 0% 50%) 0 0 / 3px 3px;
      pointer-events: none;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .hero-title { font-size: 2.25rem !important; line-height: 1.2 !important; }
      .phone-mockup { width: 220px; height: 440px; border-radius: 30px; }
      .stat-item::after { display: none; }
      .screenshot-item { width: 180px; border-radius: 20px; }
    }
    @media (max-width: 640px) {
      .hero-title { font-size: 2rem !important; }
      .screenshot-item { width: 170px; border-radius: 18px; }
    }

    /* ─── DECORATIVE ORBS (static, no animation for perf) ─── */
    .orb {
      position: fixed;
      border-radius: 50%;
      pointer-events: none;
      z-index: 0;
      filter: blur(80px);
      will-change: auto;
    }
    .orb-1 {
      width: 500px; height: 500px;
      top: -10%; left: -10%;
      background: radial-gradient(circle, rgba(30, 70, 140, 0.12) 0%, transparent 70%);
    }
    .orb-2 {
      width: 400px; height: 400px;
      top: 40%; right: -8%;
      background: radial-gradient(circle, rgba(245, 200, 66, 0.07) 0%, transparent 70%);
    }
    .orb-3 {
      width: 350px; height: 350px;
      bottom: 10%; left: 30%;
      background: radial-gradient(circle, rgba(50, 120, 200, 0.09) 0%, transparent 70%);
    }

    /* ─── SVG BUDGIE ANIMATIONS ─── */
    .budgie-hero {
      position: relative;
      width: 80px;
      height: 80px;
      animation: budgieFloat 5.5s ease-in-out infinite;
      filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4));
    }
    .budgie-hero-large {
      position: relative;
      width: 220px;
      height: 280px;
      animation: budgieFloat 6s ease-in-out infinite;
      filter: drop-shadow(0 12px 40px rgba(0,0,0,0.4));
    }
    @media (min-width: 640px) {
      .budgie-hero-large { width: 260px; height: 320px; }
    }
    @keyframes budgieFloat {
      0%, 100% { transform: translateY(0) rotate(-2deg); }
      25% { transform: translateY(-10px) rotate(2deg); }
      50% { transform: translateY(-16px) rotate(-1deg); }
      75% { transform: translateY(-6px) rotate(3deg); }
    }
    .wing-right {
      transform-origin: 62px 68px;
      animation: wingFlapRight 1.8s ease-in-out infinite;
    }
    .wing-left {
      transform-origin: 52px 68px;
      animation: wingFlapLeft 1.8s ease-in-out infinite;
    }
    @keyframes wingFlapRight {
      0%, 100% { transform: rotate(0deg); }
      40% { transform: rotate(18deg); }
      60% { transform: rotate(22deg); }
    }
    @keyframes wingFlapLeft {
      0%, 100% { transform: rotate(0deg); }
      40% { transform: rotate(-18deg); }
      60% { transform: rotate(-22deg); }
    }
    .eye-blink {
      animation: eyeBlink 5s ease-in-out infinite;
    }
    @keyframes eyeBlink {
      0%, 90%, 100% { transform: scaleY(1); }
      95% { transform: scaleY(0.1); }
    }
    .budgie-head {
      transform-origin: 65px 55px;
      animation: headTilt 4s ease-in-out infinite;
    }
    @keyframes headTilt {
      0%, 100% { transform: rotate(0deg); }
      25% { transform: rotate(-8deg); }
      75% { transform: rotate(5deg); }
    }
    /* Heart pulse near hero budgie */
    .budgie-heart {
      position: absolute;
      top: -4px;
      right: 2px;
      font-size: 18px;
      animation: heartPulse 2s ease-in-out infinite;
      filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
    }
    @keyframes heartPulse {
      0%, 100% { transform: scale(1); opacity: 0.8; }
      50% { transform: scale(1.2); opacity: 1; }
    }
    /* Musical note float for showcase budgie */
    .budgie-note {
      position: absolute;
      font-size: 16px;
      animation: noteFloat 3s ease-in-out infinite;
      filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    }
    .budgie-note:nth-child(1) { top: 10%; right: -10px; animation-delay: 0s; }
    .budgie-note:nth-child(2) { top: 25%; right: -20px; animation-delay: 1s; }
    .budgie-note:nth-child(3) { top: 5%; right: 5px; animation-delay: 2s; }
    @keyframes noteFloat {
      0% { opacity: 0; transform: translateY(0) scale(0.5); }
      30% { opacity: 1; transform: translateY(-8px) scale(1); }
      70% { opacity: 0.7; transform: translateY(-20px) scale(0.9); }
      100% { opacity: 0; transform: translateY(-30px) scale(0.6); }
    }

    @media (max-width: 768px) {
      .budgie-hero, .budgie-hero-large { animation: none !important; }
      .wing-right, .wing-left, .eye-blink, .budgie-head { animation: none !important; }
      .budgie-heart, .budgie-note { display: none !important; }
    }

    /* ─── SPARKLE STARS (Yellow decorative stars) ─── */
    .sparkles {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 1;
      overflow: hidden;
    }
    .sparkle {
      position: absolute;
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: #FFD95A;
      box-shadow: 0 0 6px 1px rgba(245, 200, 66, 0.4);
      animation: sparkleGlow ease-in-out infinite;
    }
    .sparkle.star {
      width: 0; height: 0;
      background: none;
      border-radius: 0;
      box-shadow: none;
    }
    .sparkle.star::before {
      content: '✦';
      position: absolute;
      color: #FFD95A;
      font-size: var(--star-size, 14px);
      filter: drop-shadow(0 0 4px rgba(245, 200, 66, 0.5));
      animation: sparkleRotate 6s linear infinite;
    }
    @keyframes sparkleGlow {
      0%, 100% { opacity: 0.3; transform: scale(0.8); }
      50% { opacity: 1; transform: scale(1.2); }
    }
    @keyframes sparkleRotate {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }
    .sparkle:nth-child(1) { left: 8%;   top: 10%;  animation-duration: 4s;   animation-delay: 0s; }
    .sparkle:nth-child(2) { left: 90%;  top: 8%;   animation-duration: 3.5s; animation-delay: -1.5s; }
    .sparkle:nth-child(3) { left: 50%;  top: 5%;   animation-duration: 4.5s; animation-delay: -3s; }
    .sparkle:nth-child(4) { left: 5%;   top: 50%;  animation-duration: 5s;   animation-delay: -2s; }
    .sparkle:nth-child(5) { left: 85%;  top: 60%;  animation-duration: 3.5s; animation-delay: -4s; }
    .sparkle:nth-child(6) { left: 40%;  top: 85%;  animation-duration: 4s;   animation-delay: -1s; }

    /* ─── ANIMATION UTILITY CLASSES ─── */
    .animate-float { animation: float 6s ease-in-out infinite; }
    .animate-float-delayed { animation: float 6s ease-in-out 2s infinite; }
    .animate-float-slow { animation: float 8s ease-in-out 1s infinite; }
    .animate-fade-up { animation: fadeUp 0.8s ease-out forwards; }
    .animate-fade-up-delay-1 { animation: fadeUp 0.8s ease-out 0.15s forwards; }
    .animate-fade-up-delay-2 { animation: fadeUp 0.8s ease-out 0.3s forwards; }
    .animate-fade-up-delay-3 { animation: fadeUp 0.8s ease-out 0.45s forwards; }
    .animate-scale-in { animation: scaleIn 0.6s ease-out forwards; }
    .animate-slide-right { animation: slideRight 0.8s ease-out forwards; }
    .animate-slide-left { animation: slideLeft 0.8s ease-out forwards; }
    .animate-pulse-soft { animation: pulseSoft 3s ease-in-out infinite; }
    .animate-\[spin_60s_linear_infinite\] { animation: spin 60s linear infinite; }
    @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

    /* ─── LAYOUT UTILITIES ─── */
    *, *::before, *::after { box-sizing: border-box; }

    .flex { display: flex; }
    .inline-flex { display: inline-flex; }
    .grid { display: grid; }
    .hidden { display: none !important; }
    .relative { position: relative; }

    .flex-col { flex-direction: column; }
    .flex-1 { flex: 1 1 0%; }
    .flex-shrink-0 { flex-shrink: 0; }
    .flex-wrap { flex-wrap: wrap; }

    .items-center { align-items: center; }
    .items-start { align-items: flex-start; }
    .justify-center { justify-content: center; }
    .justify-between { justify-content: space-between; }
    .justify-end { justify-content: flex-end; }
    .justify-start { justify-content: flex-start; }

    .gap-1 { gap: 0.25rem; }
    .gap-1\.5 { gap: 0.375rem; }
    .gap-2 { gap: 0.5rem; }
    .gap-2\.5 { gap: 0.625rem; }
    .gap-3 { gap: 0.75rem; }
    .gap-4 { gap: 1rem; }
    .gap-6 { gap: 1.5rem; }
    .gap-8 { gap: 2rem; }
    .gap-12 { gap: 3rem; }
    .gap-16 { gap: 4rem; }

    .grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
    .grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    /* ─── SPACING UTILITIES ─── */
    .p-2 { padding: 0.5rem; }
    .p-3 { padding: 0.75rem; }
    .px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
    .px-4 { padding-left: 1rem; padding-right: 1rem; }
    .px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
    .px-8 { padding-left: 2rem; padding-right: 2rem; }
    .py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
    .py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
    .py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
    .py-4 { padding-top: 1rem; padding-bottom: 1rem; }
    .py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
    .py-8 { padding-top: 2rem; padding-bottom: 2rem; }
    .py-12 { padding-top: 3rem; padding-bottom: 3rem; }
    .py-20 { padding-top: 5rem; padding-bottom: 5rem; }
    .py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
    .pt-2 { padding-top: 0.5rem; }
    .pt-3 { padding-top: 0.75rem; }
    .pt-8 { padding-top: 2rem; }
    .pt-28 { padding-top: 7rem; }
    .pb-1 { padding-bottom: 0.25rem; }
    .pb-3 { padding-bottom: 0.75rem; }
    .pb-16 { padding-bottom: 4rem; }

    .mb-1 { margin-bottom: 0.25rem; }
    .mb-2 { margin-bottom: 0.5rem; }
    .mb-3 { margin-bottom: 0.75rem; }
    .mb-4 { margin-bottom: 1rem; }
    .mb-5 { margin-bottom: 1.25rem; }
    .mb-6 { margin-bottom: 1.5rem; }
    .mb-8 { margin-bottom: 2rem; }
    .mb-10 { margin-bottom: 2.5rem; }
    .mb-12 { margin-bottom: 3rem; }
    .mb-14 { margin-bottom: 3.5rem; }
    .mb-16 { margin-bottom: 4rem; }
    .mt-0\.5 { margin-top: 0.125rem; }
    .mt-3 { margin-top: 0.75rem; }
    .mt-6 { margin-top: 1.5rem; }
    .mt-10 { margin-top: 2.5rem; }
    .mx-auto { margin-left: auto; margin-right: auto; }

    /* ─── SIZING UTILITIES ─── */
    .w-full { width: 100%; }
    .w-2 { width: 0.5rem; }
    .w-3 { width: 0.75rem; }
    .w-4 { width: 1rem; }
    .w-5 { width: 1.25rem; }
    .w-6 { width: 1.5rem; }
    .w-8 { width: 2rem; }
    .w-9 { width: 2.25rem; }
    .w-10 { width: 2.5rem; }
    .w-12 { width: 3rem; }
    .w-16 { width: 4rem; }
    .w-20 { width: 5rem; }
    .w-48 { width: 12rem; }
    .w-64 { width: 16rem; }
    .w-72 { width: 18rem; }
    .w-px { width: 1px; }
    .h-2 { height: 0.5rem; }
    .h-3 { height: 0.75rem; }
    .h-4 { height: 1rem; }
    .h-5 { height: 1.25rem; }
    .h-6 { height: 1.5rem; }
    .h-8 { height: 2rem; }
    .h-9 { height: 2.25rem; }
    .h-10 { height: 2.5rem; }
    .h-12 { height: 3rem; }
    .h-16 { height: 4rem; }
    .h-20 { height: 5rem; }
    .h-48 { height: 12rem; }
    .h-64 { height: 16rem; }
    .h-72 { height: 18rem; }
    .w-\[800px\] { width: 800px; }
    .h-\[400px\] { height: 400px; }
    .min-h-\[90vh\] { min-height: 90vh; }
    .max-w-lg { max-width: 32rem; }
    .max-w-xl { max-width: 36rem; }
    .max-w-2xl { max-width: 42rem; }
    .max-w-3xl { max-width: 48rem; }
    .max-w-md { max-width: 28rem; }
    .max-w-6xl { max-width: 72rem; }
    .max-w-xs { max-width: 20rem; }

    /* ─── POSITION UTILITIES ─── */
    .absolute { position: absolute; }
    .fixed { position: fixed; }
    .inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
    .top-0 { top: 0; }
    .top-10 { top: 2.5rem; }
    .top-16 { top: 4rem; }
    .top-20 { top: 5rem; }
    .top-40 { top: 10rem; }
    .bottom-0 { bottom: 0; }
    .bottom-6 { bottom: 1.5rem; }
    .bottom-20 { bottom: 5rem; }
    .right-0 { right: 0; }
    .right-6 { right: 1.5rem; }
    .left-0 { left: 0; }
    .left-1\/2 { left: 50%; }
    .-right-6 { right: -1.5rem; }
    .-bottom-2 { bottom: -0.5rem; }
    .-left-6 { left: -1.5rem; }
    .-m-3 { margin: -0.75rem; }
    .-translate-x-1\/2 { transform: translateX(-50%); }
    .top-\[30\%\] { top: 30%; }
    .top-\[60\%\] { top: 60%; }
    .left-\[5\%\] { left: 5%; }
    .left-\[10\%\] { left: 10%; }
    .left-\[20\%\] { left: 20%; }
    .left-\[35\%\] { left: 35%; }
    .right-\[5\%\] { right: 5%; }
    .right-\[15\%\] { right: 15%; }
    .right-\[30\%\] { right: 30%; }

    /* ─── Z-INDEX UTILITIES ─── */
    .z-10 { z-index: 10; }
    .z-40 { z-index: 40; }
    .z-50 { z-index: 50; }

    /* ─── OVERFLOW UTILITIES ─── */
    .overflow-hidden { overflow: hidden; }

    /* ─── TEXT UTILITIES ─── */
    .text-center { text-align: center; }
    .text-left { text-align: left; }
    .text-right { text-align: right; }
    .text-xs { font-size: 0.75rem; line-height: 1rem; }
    .text-sm { font-size: 0.875rem; line-height: 1.25rem; }
    .text-base { font-size: 1rem; line-height: 1.5rem; }
    .text-lg { font-size: 1.125rem; line-height: 1.75rem; }
    .text-xl { font-size: 1.25rem; line-height: 1.75rem; }
    .text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
    .text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
    .text-5xl { font-size: 3rem; line-height: 1; }
    .text-\[10px\] { font-size: 10px; }
    .text-\[11px\] { font-size: 11px; }
    .font-medium { font-weight: 500; }
    .font-semibold { font-weight: 600; }
    .font-bold { font-weight: 700; }
    .font-extrabold { font-weight: 800; }
    .font-black { font-weight: 900; }
    .uppercase { text-transform: uppercase; }
    .tracking-tight { letter-spacing: -0.025em; }
    .tracking-wide { letter-spacing: 0.025em; }
    .tracking-wider { letter-spacing: 0.05em; }
    .leading-relaxed { line-height: 1.625; }
    .leading-\[1\.1\] { line-height: 1.1; }
    .text-white { color: #ffffff; }
    .whitespace-nowrap { white-space: nowrap; }
    .break-all { word-break: break-all; }

    /* ─── BORDER RADIUS UTILITIES ─── */
    .rounded-lg { border-radius: 0.5rem; }
    .rounded-xl { border-radius: 0.75rem; }
    .rounded-2xl { border-radius: 1rem; }
    .rounded-full { border-radius: 9999px; }
    .rounded-\[2rem\] { border-radius: 2rem; }

    /* ─── SHADOW UTILITIES ─── */
    .shadow-sm { box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
    .shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05); }
    .shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04); }

    /* ─── OPACITY UTILITIES ─── */
    .opacity-0 { opacity: 0; }
    .opacity-20 { opacity: 0.2; }
    .opacity-25 { opacity: 0.25; }
    .opacity-30 { opacity: 0.3; }
    .opacity-35 { opacity: 0.35; }
    .opacity-40 { opacity: 0.4; }
    .opacity-50 { opacity: 0.5; }

    /* ─── POINTER EVENTS UTILITIES ─── */
    .pointer-events-none { pointer-events: none; }

    /* ─── TRANSITION UTILITIES ─── */
    .transition-all { transition: all 0.15s ease; }
    .transition-colors { transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease; }
    .transition-transform { transition: transform 0.15s ease; }
    .duration-200 { transition-duration: 0.2s; }
    .duration-300 { transition-duration: 0.3s; }

    /* ─── TRANSLATE UTILITIES ─── */
    .translate-y-0 { transform: translateY(0); }

    /* ─── SCALE UTILITIES ─── */
    .hover\:scale-\[1\.02\]:hover { transform: scale(1.02); }
    .hover\:scale-110:hover { transform: scale(1.1); }
    .hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05); }
    .group:hover .group-hover\:-translate-y-0\.5 { transform: translateY(-0.125rem); }
    .group:hover .group-hover\:translate-y-0\.5 { transform: translateY(0.125rem); }

    /* ─── BACKGROUND UTILITIES ─── */
    .backdrop-blur { backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
    .bg-black\/50 { background-color: rgba(0, 0, 0, 0.5); }
    .backdrop-blur-sm { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
    .blur-3xl { filter: blur(64px); }

    /* ─── SPACE UTILITIES ─── */
    .space-y-1 > * + * { margin-top: 0.25rem; }
    .space-y-2 > * + * { margin-top: 0.5rem; }
    .space-y-2\.5 > * + * { margin-top: 0.625rem; }
    .space-y-5 > * + * { margin-top: 1.25rem; }

    /* ─── HIDDEN/DISPLAY UTILITIES (sm breakpoint — applied via media query below) ─── */

    /* ─── ROTATE UTILITY ─── */
    .rotate-90 { transform: rotate(90deg); }

    /* ─── RESPONSIVE OVERRIDES ─── */
    @media (min-width: 640px) {
      .sm\:hidden { display: none !important; }
      .sm\:inline { display: inline !important; }
      .sm\:block { display: block !important; }
      .sm\:flex { display: flex !important; }
      .sm\:flex-row { flex-direction: row; }
      .sm\:gap-12 { gap: 3rem; }
      .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
      .sm\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
      .sm\:pt-36 { padding-top: 9rem; }
      .sm\:pb-24 { padding-bottom: 6rem; }
      .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
      .sm\:text-5xl { font-size: 3rem; line-height: 1; }
      .sm\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
      .sm\:w-24 { width: 6rem; }
      .sm\:w-80 { width: 20rem; }
      .sm\:h-80 { height: 20rem; }
      .sm\:-left-10 { left: -2.5rem; }
    }

    @media (min-width: 768px) {
      .md\:hidden { display: none !important; }
      .md\:flex { display: flex !important; }
      .md\:flex-row { flex-direction: row; }
      .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
      .md\:justify-start { justify-content: flex-start; }
      .md\:text-right { text-align: right; }
      .md\:hidden { display: none; }
    }

    @media (min-width: 1024px) {
      .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
      .lg\:text-5xl { font-size: 3rem; line-height: 1; }
      .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
      .lg\:flex-row { flex-direction: row; }
      .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .lg\:gap-8 { gap: 2rem; }
      .lg\:gap-20 { gap: 5rem; }
      .lg\:mx-0 { margin-left: 0; margin-right: 0; }
      .lg\:justify-end { justify-content: flex-end; }
      .lg\:justify-start { justify-content: flex-start; }
      .lg\:text-left { text-align: left; }
      .lg\:w-96 { width: 24rem; }
      .lg\:h-96 { height: 24rem; }
    }

    /* ─── ENHANCED HERO DEPTH ─── */
    .hero-gradient {
      perspective: 1200px;
    }
    .phone-mockup {
      transform-style: preserve-3d;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .phone-mockup:hover {
      transform: translateY(-8px) rotateY(-5deg) rotateX(3deg) scale(1.02);
    }
    .phone-glow {
      position: absolute;
      inset: -20%;
      background: radial-gradient(ellipse at center, rgba(245,200,66,0.12) 0%, rgba(50,120,200,0.06) 40%, transparent 70%);
      border-radius: 50%;
      filter: blur(40px);
      animation: glowBreath 4s ease-in-out infinite;
      pointer-events: none;
    }
    @keyframes glowBreath {
      0%, 100% { opacity: 0.6; transform: scale(1); }
      50% { opacity: 1; transform: scale(1.08); }
    }

    /* ─── HERO CTA GLOW RING ─── */
    .cta-primary-enhanced {
      position: relative;
      overflow: visible;
    }
    .cta-primary-enhanced::after {
      content: '';
      position: absolute;
      inset: -3px;
      border-radius: inherit;
      background: linear-gradient(135deg, var(--gold), var(--leaf-light), var(--gold-glow), var(--leaf-mid));
      background-size: 300% 300%;
      animation: gradientShift 4s ease infinite;
      z-index: -1;
      opacity: 0;
      transition: opacity 0.4s ease;
      filter: blur(8px);
    }
    .cta-primary-enhanced:hover::after {
      opacity: 0.7;
    }

    /* ─── ENHANCED FEATURE CARDS — animated border ─── */
    .feature-card-enhanced {
      position: relative;
      background: var(--glass-bg);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid var(--glass-border);
      border-radius: 1rem;
      padding: 1.75rem;
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      overflow: hidden;
    }
    .feature-card-enhanced::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      padding: 1px;
      background: linear-gradient(135deg, transparent 30%, var(--gold) 50%, var(--leaf-light) 70%, transparent 90%);
      background-size: 400% 400%;
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      opacity: 0;
      transition: opacity 0.5s ease;
    }
    .feature-card-enhanced:hover::before {
      opacity: 1;
      animation: gradientShift 3s ease infinite;
    }
    .feature-card-enhanced::after {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(245,200,66,0.06) 0%, transparent 50%);
      opacity: 0;
      transition: opacity 0.4s ease;
      pointer-events: none;
    }
    .feature-card-enhanced:hover::after {
      opacity: 1;
    }
    .feature-card-enhanced:hover {
      transform: translateY(-8px);
      box-shadow:
        0 24px 48px -12px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(245, 200, 66, 0.15);
      border-color: rgba(245, 200, 66, 0.2);
    }
    .feature-card-enhanced .feature-icon {
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .feature-card-enhanced:hover .feature-icon {
      transform: scale(1.15) rotate(-6deg);
      box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    }

    /* ─── ENHANCED SCREENSHOTS — 3D perspective ─── */
    .screenshot-item-3d {
      flex-shrink: 0;
      width: 220px;
      border-radius: 24px;
      overflow: hidden;
      border: 4px solid var(--leaf-dark);
      box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      background: var(--forest-mid);
      transform-style: preserve-3d;
    }
    .screenshot-item-3d:hover {
      transform: scale(1.1) translateY(-16px) perspective(800px) rotateY(-4deg);
      box-shadow:
        0 40px 80px -20px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(245, 200, 66, 0.3),
        0 0 40px rgba(245, 200, 66, 0.08);
      border-color: rgba(245, 200, 66, 0.4);
    }
    .screenshot-item-3d img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.5s ease;
    }
    .screenshot-item-3d:hover img {
      transform: scale(1.03);
    }
    @media (max-width: 768px) {
      .screenshot-item-3d { width: 180px; border-radius: 20px; }
      .screenshot-item-3d:hover { transform: none; }
    }
    @media (max-width: 640px) {
      .screenshot-item-3d { width: 160px; border-radius: 18px; }
    }

    /* ─── ENHANCED STATS — glowing dividers & animated bg ─── */
    .stat-item-enhanced {
      position: relative;
      padding: 1.5rem 0;
    }
    .stat-item-enhanced .stat-number {
      position: relative;
      display: inline-block;
    }
    .stat-item-enhanced .stat-number::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 50%;
      transform: translateX(-50%);
      width: 40px;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      border-radius: 1px;
      opacity: 0;
      transition: opacity 0.6s ease, width 0.6s ease;
    }
    .stat-item-enhanced.counted .stat-number::after {
      opacity: 1;
      width: 60px;
    }

    /* ─── ENHANCED CTA — dramatic glow ─── */
    .cta-glow-bg {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
    }
    .cta-glow-bg::before {
      content: '';
      position: absolute;
      top: -30%;
      left: 50%;
      transform: translateX(-50%);
      width: 600px;
      height: 400px;
      background: radial-gradient(ellipse, rgba(245,200,66,0.1) 0%, rgba(50,120,200,0.05) 40%, transparent 70%);
      animation: glowBreath 5s ease-in-out infinite;
    }
    .cta-glow-bg::after {
      content: '';
      position: absolute;
      bottom: -20%;
      left: 50%;
      transform: translateX(-50%);
      width: 400px;
      height: 300px;
      background: radial-gradient(ellipse, rgba(50,120,200,0.08) 0%, transparent 60%);
      animation: glowBreath 6s ease-in-out infinite;
      animation-delay: -2s;
    }

    /* ─── STORE BUTTON ENHANCED ─── */
    .store-btn-enhanced {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 0.875rem;
      padding: 1.125rem 2rem;
      border-radius: 1rem;
      background: rgba(20, 50, 100, 0.5);
      border: 1px solid var(--glass-border);
      backdrop-filter: blur(12px);
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      overflow: hidden;
    }
    .store-btn-enhanced::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(245,200,66,0.08) 0%, rgba(50,120,200,0.04) 100%);
      opacity: 0;
      transition: opacity 0.4s ease;
    }
    .store-btn-enhanced:hover {
      transform: translateY(-4px) scale(1.03);
      border-color: rgba(245, 200, 66, 0.35);
      box-shadow:
        0 16px 40px -8px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(245, 200, 66, 0.08);
    }
    .store-btn-enhanced:hover::before {
      opacity: 1;
    }

    /* ─── FAQ ENHANCED — smoother, left accent ─── */
    .faq-item-enhanced {
      border-bottom: 1px solid var(--glass-border);
      position: relative;
      transition: all 0.3s ease;
    }
    .faq-item-enhanced::before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 3px;
      height: 0;
      background: linear-gradient(180deg, var(--gold), var(--leaf-light));
      border-radius: 2px;
      transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .faq-item-enhanced.open::before {
      height: 70%;
    }
    .faq-item-enhanced.open {
      padding-left: 1rem;
    }

    /* ─── SCROLL LABEL PILLS — interactive ─── */
    .ss-label-pill {
      padding: 0.5rem 1rem;
      font-size: 0.875rem;
      font-weight: 500;
      border-radius: 9999px;
      border: 1px solid var(--glass-border);
      background: rgba(30,70,140,0.2);
      color: var(--sage-light);
      transition: all 0.3s ease;
      cursor: default;
    }
    .ss-label-pill:hover {
      background: rgba(30,70,140,0.4);
      border-color: var(--leaf-light);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }
    .ss-label-pill.premium {
      background: rgba(245,200,66,0.12);
      color: var(--gold-light);
      border-color: rgba(245,200,66,0.2);
    }
    .ss-label-pill.premium:hover {
      background: rgba(245,200,66,0.25);
      border-color: var(--gold);
    }

    /* ─── NAVBAR ENHANCED — blur increases on scroll ─── */
    .nav-scrolled {
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4) !important;
      background: rgba(15,27,77,0.88) !important;
      border-bottom-color: rgba(245,200,66,0.1) !important;
    }

    /* ─── PERF: will-change hints for animated elements ─── */
    .phone-mockup,
    .screenshot-item-3d,
    .feature-card-enhanced {
      will-change: transform;
    }

    /* ─── MOBILE PERF: disable new effects ─── */
    @media (max-width: 768px) {
      .feature-card-enhanced::before,
      .feature-card-enhanced::after { display: none !important; }
      .feature-card-enhanced:hover { transform: none !important; }
      .phone-mockup:hover { transform: none !important; }
      .phone-glow { display: none !important; }
      .cta-primary-enhanced::after { display: none !important; }
      .store-btn-enhanced:hover { transform: none !important; }
      .stat-item-enhanced .stat-number::after { display: none !important; }
      .faq-item-enhanced.open { padding-left: 0; }
      .faq-item-enhanced::before { display: none !important; }
      .ss-label-pill:hover { transform: none; }
    }

    /* ─── NAV LINK HOVER UNDERLINE ─── */
    .nav-link {
      position: relative;
      display: inline-block;
    }
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), var(--leaf-light));
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .nav-link:hover::after {
      transform: scaleX(1);
      transform-origin: left;
    }

    /* ─── TESTIMONIAL QUOTE MARK ─── */
    .testimonial-quote {
      font-family: 'Outfit', serif;
      font-size: 3rem;
      line-height: 1;
      background: linear-gradient(135deg, var(--gold), var(--gold-glow));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      opacity: 0.5;
    }

    /* ─── PRICING CARD POPULAR GLOW ─── */
    .pricing-popular {
      position: relative;
    }
    .pricing-popular::before {
      content: '';
      position: absolute;
      inset: -1px;
      border-radius: inherit;
      padding: 1px;
      background: linear-gradient(135deg, var(--gold), var(--leaf-light), var(--gold-glow));
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      opacity: 0.6;
    }

    /* ─── EMAIL INPUT FOCUS GLOW ─── */
    .email-input-glow:focus {
      outline: none;
      border-color: var(--gold) !important;
      box-shadow: 0 0 0 3px rgba(245, 200, 66, 0.15), 0 0 20px rgba(245, 200, 66, 0.08);
    }

    /* ─── FOOTER SOCIAL ICONS ─── */
    .social-icon {
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .social-icon:hover {
      transform: translateY(-3px) scale(1.15);
      color: var(--gold-light) !important;
    }

    /* ─── BACK TO TOP — JS-toggled state classes ─── */
    #backToTop { opacity: 0; transform: translateY(1rem); pointer-events: none; }
    #backToTop.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

    /* ─── PAGE ENTRANCE CURTAIN ─── */
    .page-curtain {
      position: fixed;
      inset: 0;
      background: var(--forest-deep);
      z-index: 9999;
      pointer-events: none;
      animation: curtainReveal 0.6s cubic-bezier(0.65, 0, 0.35, 1) 0.1s forwards;
    }
    @keyframes curtainReveal {
      0% { opacity: 1; }
      100% { opacity: 0; visibility: hidden; }
    }

    /* ─── SCROLL PROGRESS BAR ─── */
    .scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, var(--leaf-light), var(--gold), var(--gold-glow));
      z-index: 10000;
      transform-origin: left;
      transform: scaleX(0);
      transition: none;
    }

    /* ─── CUSTOM SCROLLBAR ─── */
    ::-webkit-scrollbar { width: 8px; }
    ::-webkit-scrollbar-track { background: var(--forest-deep); }
    ::-webkit-scrollbar-thumb {
      background: linear-gradient(180deg, var(--leaf-mid), var(--leaf-dark));
      border-radius: 4px;
      border: 2px solid var(--forest-deep);
    }
    ::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, var(--leaf-light), var(--leaf-mid)); }
    html { scrollbar-color: var(--leaf-mid) var(--forest-deep); scrollbar-width: thin; }

    /* ─── HERO WORD-BY-WORD REVEAL ─── */
    .hero-word {
      display: inline-block;
      opacity: 0;
      transform: translateY(30px);
      filter: blur(6px);
      animation: wordReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    @keyframes wordReveal {
      to { opacity: 1; transform: translateY(0); filter: blur(0); }
    }

    /* ─── COUNTER ANIMATION ─── */
    .stat-number {
      font-variant-numeric: tabular-nums;
    }

    /* ─── MAGNETIC BUTTON ─── */
    .magnetic-btn {
      transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    /* ─── CURSOR GLOW TRAIL ─── */
    .cursor-glow {
      position: fixed;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(245,200,66,0.06) 0%, transparent 70%);
      pointer-events: none;
      z-index: 2;
      transform: translate(-50%, -50%);
      transition: opacity 0.3s;
      will-change: left, top;
    }

    /* ─── ENHANCED CARD STAGGER ─── */
    .stagger-1 { transition-delay: 0.05s !important; }
    .stagger-2 { transition-delay: 0.12s !important; }
    .stagger-3 { transition-delay: 0.19s !important; }
    .stagger-4 { transition-delay: 0.26s !important; }
    .stagger-5 { transition-delay: 0.33s !important; }
    .stagger-6 { transition-delay: 0.40s !important; }
    .stagger-7 { transition-delay: 0.47s !important; }
    .stagger-8 { transition-delay: 0.54s !important; }
    .stagger-9 { transition-delay: 0.61s !important; }
    .stagger-10 { transition-delay: 0.68s !important; }

    /* ─── SECTION HEADING UNDERLINE REVEAL ─── */
    .heading-reveal {
      position: relative;
      display: inline-block;
    }
    .heading-reveal::after {
      content: '';
      position: absolute;
      bottom: -6px;
      left: 0;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), var(--leaf-light));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .heading-reveal.active::after {
      transform: scaleX(1);
    }

    /* ─── MOBILE PERFORMANCE ─── */
    @media (max-width: 768px) {
      /* Kill expensive effects */
      body::before { display: none !important; } /* noise texture */
      .hero-gradient::after { display: none !important; } /* hero noise */
      .texture-overlay::after { display: none !important; }
      .stats-forest::before { display: none !important; }
      .cursor-glow { display: none !important; }
      .page-curtain { display: none !important; }

      /* Kill particles */
      .particles { display: none !important; }

      /* Kill orbs */
      .orb, .orb-1, .orb-2, .orb-3 { display: none !important; }

      /* Kill morph blobs */
      .morph-blob { display: none !important; }
      .floating-particle { display: none !important; }

      /* Remove backdrop-filter (GPU killer on mobile) */
      .card-hover {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: rgba(20, 50, 100, 0.45) !important;
      }
      .card-hover:hover {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        transform: none !important;
      }

      /* Simplify nav blur */
      nav, #navbar {
        backdrop-filter: blur(8px) !important;
        -webkit-backdrop-filter: blur(8px) !important;
      }

      /* Remove card hover animations on touch */
      .card-hover::before,
      .card-hover::after { display: none !important; }

      /* Disable float/glow animations */
      .glow-pulse { animation: none !important; }
      .animate-float, .animate-float-delayed, .animate-float-slow { animation: none !important; }

      /* Simplify reveal: no blur filter */
      .reveal, .reveal-scale, .reveal-left, .reveal-right, .reveal-flip {
        filter: none !important;
      }

      /* Kill gradient animations */
      .gradient-animate, .stats-forest, .btn-shimmer {
        animation: none !important;
        background-size: 100% 100% !important;
      }

      /* Simpler phone mockup */
      .phone-mockup { animation: none !important; box-shadow: 0 20px 40px rgba(0,0,0,0.3) !important; }

      /* Simpler screenshot hover */
      .screenshot-item:hover { transform: none !important; }

      /* Kill decorative ring spin */
      .animate-\\[spin_60s_linear_infinite\\] { animation: none !important; }
    }

    /* ─── PREFERS-REDUCED-MOTION ─── */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
      .reveal, .reveal-scale, .reveal-left, .reveal-right, .reveal-flip {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
      }
      body::before { display: none; }
      .page-curtain { display: none; }
      .cursor-glow { display: none; }
      .particle { display: none; }
      .particles { display: none; }
      .orb, .orb-1, .orb-2, .orb-3 { display: none; }
      .floating-particle, .morph-blob { display: none; }
      .sparkles, .sparkle { display: none; }
      .scroll-progress { display: none; }
      .budgie-svg * { animation: none !important; }
      .screenshot-track { animation: none !important; }
      .heading-reveal { background-size: 100% 3px !important; }
    }
