    /* ============================================
       CSS VARIABLES - MOJO BRAND COLORS
    ============================================ */
    :root {
      /* Core dark theme */
      --bg-primary: #09090f;
      --bg-secondary: #0e0e18;
      --bg-tertiary: #151524;
      --bg-card: #12121f;
      --bg-card-hover: #1a1a2e;
      
      /* Mojo brand accent colors */
      --accent-purple: #7c5cff;
      --accent-purple-light: #9d85ff;
      --accent-lilac: #c4b5ff;
      --accent-purple-glow: rgba(124, 92, 255, 0.4);
      --accent-pink: #ff6b9d;
      --accent-pink-light: #ff8fb8;
      --accent-green: #4ade80;
      --accent-green-dark: #22c55e;
      --accent-mint: #82D99B;
      --accent-mint-dark: #40C6AD;
      --accent-mint-glow: rgba(64, 198, 173, 0.4);
      --accent-blue: #38bdf8;
      --accent-coral: #ff7f6e;
      --accent-amber: #fbbf24;
      
      /* Text colors */
      --text-primary: #fff;
      --text-secondary: rgba(255, 255, 255, 0.72);
      --text-secondary-opaque: #ddd;
      --text-muted: rgba(255, 255, 255, 0.45);
      
      /* Borders */
      --border-subtle: rgba(255, 255, 255, 0.06);
      --border-card: rgba(255, 255, 255, 0.08);
      --border-accent: rgba(130, 217, 155, 0.3);
      
      /* App-specific accent colors */
      --emoji-mojo-peach: #ffb5a7;
      --emoji-mojo-coral: #f9844a;
      --emoji-mojo-warm: #fff5f3;
      --emoji-mojo-dark: #2d1f1a;
      --clip-mojo-blue: #38bdf8;
      --chart-mojo-teal: #2dd4bf;
      --doozy-amber: #fbbf24;
      --focus-red: #ef4444;
    }

    /* ============================================
       RESET & BASE STYLES
    ============================================ */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Nunito', sans-serif;
      background: var(--bg-primary);
      color: var(--text-primary);
      line-height: 1.6;
      overflow-x: hidden;
      position: relative;
    }

    /* ============================================
       GLOBAL NOISE TEXTURE OVERLAY
    ============================================ */
    body::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 9999;
      opacity: 0.025;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    }

    a {
      text-decoration: none;
      color: inherit;
      transition: color 0.2s ease;
    }

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

    /* ============================================
       SCROLL ANIMATION CLASSES
    ============================================ */
    .animate-on-scroll {
      opacity: 0;
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .animate-on-scroll.animate-fade-up {
      transform: translateY(40px);
    }

    .animate-on-scroll.animate-fade-left {
      transform: translateX(-40px);
    }

    .animate-on-scroll.animate-fade-right {
      transform: translateX(40px);
    }

    .animate-on-scroll.animate-scale {
      transform: scale(0.92);
    }

    .animate-on-scroll.animate-reveal {
      clip-path: inset(0 100% 0 0);
      transform: none;
    }

    .animate-on-scroll.is-visible {
      opacity: 1;
      transform: translateY(0) translateX(0) scale(1);
      clip-path: inset(0 0% 0 0);
    }

    /* Stagger delays for grouped elements */
    .stagger-1 { transition-delay: 0.1s; }
    .stagger-2 { transition-delay: 0.2s; }
    .stagger-3 { transition-delay: 0.3s; }
    .stagger-4 { transition-delay: 0.4s; }
    .stagger-5 { transition-delay: 0.5s; }

    /* Reduced motion preference */
    @media (prefers-reduced-motion: reduce) {
      .animate-on-scroll {
        opacity: 1;
        transform: none !important;
        clip-path: none !important;
        transition: none !important;
      }
    }

    /* ============================================
       SKIP NAVIGATION
    ============================================ */
    .skip-nav {
      position: absolute;
      top: -100%;
      left: 1rem;
      z-index: 10000;
      background: var(--accent-mint);
      color: #0d0d0d;
      padding: 0.75rem 1.25rem;
      border-radius: 0 0 8px 8px;
      font-weight: 700;
      font-size: 0.9rem;
      transition: top 0.2s ease;
    }

    .skip-nav:focus {
      top: 0;
    }

    /* ============================================
       GLOBAL FOCUS STYLES
    ============================================ */
    *:focus-visible {
      outline: 2px solid var(--accent-mint);
      outline-offset: 2px;
    }

    button:focus-visible,
    a:focus-visible,
    input:focus-visible {
      outline: 2px solid var(--accent-mint);
      outline-offset: 2px;
    }

    /* Remove default outline for mouse users */
    :focus:not(:focus-visible) {
      outline: none;
    }

    /* ============================================
       NAVIGATION
    ============================================ */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 1rem 2rem;
      background: rgba(9, 9, 15, 0.8);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border-subtle);
    }

    .nav-container {
      max-width: 1300px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-weight: 800;
      font-size: 1.15rem;
      letter-spacing: -0.01em;
    }

    .nav-logo-icon {
      width: 32px;
      height: 32px;
      background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 2rem;
      margin-left: auto;
      margin-right: 2rem;
    }
      
    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }

    .nav-item {
      position: relative;
    }

    .nav-link {
      font-weight: 600;
      font-size: 1.2rem;
      color: var(--text-secondary-opaque);
      padding: 0.5rem 0;
      display: flex;
      align-items: center;
      gap: 0.3rem;
      cursor: pointer;
      transition: color 0.2s ease;
    }

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

    .nav-link svg {
      width: 12px;
      height: 12px;
      transition: transform 0.2s ease;
    }

    .nav-item:hover .nav-link svg {
      transform: rotate(180deg);
    }

    .nav-dropdown {
      position: absolute;
      top: 100%;
      left: -1rem;
      padding-top: 0.5rem;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-8px);
      transition: all 0.2s ease;
    }

    .nav-item:hover .nav-dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .nav-dropdown-content {
      background: var(--bg-secondary);
      border: 1px solid var(--border-card);
      border-radius: 10px;
      padding: 0.4rem;
      min-width: 220px;
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
    }

    .nav-dropdown a {
      display: block;
      padding: 0.6rem 0.9rem;
      border-radius: 6px;
      font-size: 0.85rem;
      color: var(--text-secondary);
      transition: all 0.15s ease;
    }

    .nav-dropdown a:hover {
      background: var(--bg-tertiary);
      color: var(--text-primary);
    }

    .nav-cta {
      background: linear-gradient(135deg, var(--accent-mint) 0%, var(--accent-mint-dark) 100%);
      color: #0d0d0d;
      padding: 0.55rem 1.1rem;
      border-radius: 8px;
      font-weight: 700;
      font-size: 0.85rem;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .nav-cta:hover {
      transform: translateY(-1px);
      box-shadow: 0 6px 20px var(--accent-mint-glow);
    }

    /* Mobile Navigation */
    .nav-toggle {
      display: none;
      background: none;
      border: none;
      color: white;
      cursor: pointer;
      padding: 0.5rem;
    }

    .mobile-nav {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--bg-primary);
      z-index: 999;
      padding: 5rem 2rem 2rem;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .mobile-nav.active {
      opacity: 1;
      visibility: visible;
    }

    .mobile-nav-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .mobile-nav-links a {
      display: block;
      padding: 1rem;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--text-secondary);
      border-radius: 8px;
      transition: all 0.2s ease;
    }

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

    .mobile-nav-close {
      position: absolute;
      top: 1rem;
      right: 1.5rem;
      background: none;
      border: none;
      color: white;
      cursor: pointer;
      padding: 0.5rem;
    }

    /* ============================================
       HERO SECTION - MOJO PRO FEATURE
    ============================================ */
    .hero {
      min-height: 70vh;
      padding: 5rem 2rem;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
    }

    /* Aurora gradient background */
    .hero-aurora {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      overflow: hidden;
      z-index: 0;
    }

    .hero-aurora::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -20%;
      width: 80%;
      height: 120%;
      background: radial-gradient(ellipse at center, rgba(124, 92, 255, 0.12) 0%, transparent 60%);
      animation: aurora-drift 25s ease-in-out infinite alternate;
    }

    .hero-aurora::after {
      content: '';
      position: absolute;
      top: -30%;
      right: -10%;
      width: 70%;
      height: 100%;
      background: radial-gradient(ellipse at center, rgba(255, 107, 157, 0.08) 0%, transparent 55%);
      animation: aurora-drift 20s ease-in-out infinite alternate-reverse;
    }

    @keyframes aurora-drift {
      0% { transform: translate(0, 0) rotate(0deg); }
      100% { transform: translate(30px, 20px) rotate(3deg); }
    }

    /* Mesh gradient accent line */
    .hero-mesh-line {
      position: absolute;
      top: 30%;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(124, 92, 255, 0.3) 20%, 
        rgba(255, 107, 157, 0.3) 50%, 
        rgba(74, 222, 128, 0.2) 80%, 
        transparent 100%
      );
      opacity: 0.5;
    }

    .hero-container {
      max-width: 1300px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 4rem;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .hero-content {
      animation: fadeInUp 0.7s ease-out;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(24px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--accent-lilac);
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 1.25rem;
    }

    .hero-eyebrow-icon {
      font-size: 1rem;
    }

    .hero h1 {
      font-size: clamp(2.5rem, 5vw, 3.75rem);
      font-weight: 300;
      line-height: 1.08;
      margin-bottom: 1.25rem;
      letter-spacing: -0.025em;
    }

    .hero h1 .gradient-text {
      background: linear-gradient(135deg, var(--accent-purple-light) 0%, var(--accent-pink) 50%, var(--accent-coral) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 700;
    }

    .hero-description {
      font-size: 1.15rem;
      color: var(--text-secondary);
      margin-bottom: 1.75rem;
      max-width: 460px;
      line-height: 1.55;
    }

    /* Social Proof Row */
    .hero-social-proof {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      margin-bottom: 2rem;
      flex-wrap: wrap;
    }

    .proof-item {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    .proof-stars {
      display: flex;
      gap: 2px;
      color: var(--accent-amber);
    }

    .proof-stars svg {
      width: 14px;
      height: 14px;
      fill: currentColor;
    }

    .proof-divider {
      width: 1px;
      height: 16px;
      background: var(--border-subtle);
    }

    .hero-buttons {
      display: flex;
      gap: 0.9rem;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.85rem 1.5rem;
      border-radius: 12px;
      font-weight: 700;
      font-size: 0.95rem;
      font-family: inherit;
      cursor: pointer;
      transition: all 0.2s ease;
      border: none;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--accent-mint) 0%, var(--accent-mint-dark) 100%);
      color: #0d0d0d;
      box-shadow: 0 4px 16px var(--accent-mint-glow);
      text-shadow: none;
      border:1px solid rgba(255,255,255,0.0);
        border-radius: 8px;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px var(--accent-mint-glow);
      text-shadow: none;
      border:1px solid rgba(255,255,255,0.2);
      border-radius: 12px;
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.04);
      color: var(--accent-mint);
      border: 1px solid var(--border-accent);
      text-shadow: none;
        border-radius: 8px;
    }

    .btn-secondary:hover {
      transform: translateY(-2px);
      background: rgba(255, 255, 255, 0.08);
      border-color: var(--accent-mint);
      text-shadow: 1px 1px 1px rgba(0,0,0,0.25);
      border:1px solid rgba(130, 217, 155, 0.5);
      border-radius: 12px;
    }

    .btn svg {
      width: 16px;
      height: 16px;
      text-shadow: 1px 1px 2px rgba(0,0,0,0.33);
    }

    /* ============================================
       HERO DEMO - CONTRAST CHECKER (MOJO PRO)
    ============================================ */
    .hero-demo {
      animation: fadeInUp 0.7s ease-out 0.15s both;
    }

    .demo-card {
      background: linear-gradient(145deg, var(--bg-card) 0%, rgba(18, 18, 31, 0.95) 100%);
      border: 1px solid var(--border-card);
      border-radius: 16px;
      padding: 1.75rem;
      box-shadow: 
        0 24px 48px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
      position: relative;
    }

    /* Gradient border effect */
    .demo-card::before {
      content: '';
      position: absolute;
      top: -1px;
      left: -1px;
      right: -1px;
      bottom: -1px;
      border-radius: 17px;
      background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 50%, transparent 70%);
      z-index: -1;
      opacity: 0.15;
    }

    .demo-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1.25rem;
    }

    .demo-branding {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .demo-logo {
      width: 22px;
      height: 22px;
      background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%);
      border-radius: 5px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
    }

    .demo-title {
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--text-secondary);
    }

    .demo-badge {
      background: rgba(74, 222, 128, 0.12);
      color: var(--accent-green);
      padding: 0.3rem 0.6rem;
      border-radius: 5px;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.02em;
    }

    .contrast-checker {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }

    .color-inputs {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.9rem;
    }

    .color-input-group {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }

    .color-input-group label {
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .color-input-wrapper {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      background: var(--bg-tertiary);
      padding: 0.6rem;
      border-radius: 8px;
      border: 1px solid var(--border-subtle);
      transition: border-color 0.2s ease;
    }

    .color-input-wrapper:focus-within {
      border-color: var(--accent-purple);
    }

    .color-swatch {
      width: 36px;
      height: 36px;
      border-radius: 6px;
      border: none;
      cursor: pointer;
      flex-shrink: 0;
    }

    .color-swatch::-webkit-color-swatch-wrapper {
      padding: 0;
    }

    .color-swatch::-webkit-color-swatch {
      border: none;
      border-radius: 6px;
    }

    .color-hex-input {
      background: transparent;
      border: none;
      color: var(--text-primary);
      font-family: 'Nunito', monospace;
      font-size: 0.95rem;
      font-weight: 700;
      width: 100%;
      outline: none;
    }

    .contrast-preview {
      border-radius: 10px;
      padding: 1.25rem;
      text-align: center;
      transition: all 0.2s ease;
    }

    .preview-text {
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 0.3rem;
    }

    .preview-subtext {
      font-size: 0.85rem;
      opacity: 0.85;
    }

    .contrast-results {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 0.9rem;
      align-items: center;
    }

    .contrast-ratio-display {
      background: var(--bg-tertiary);
      padding: 0.9rem 1.1rem;
      border-radius: 10px;
      text-align: center;
      border: 1px solid var(--border-subtle);
    }

    .contrast-ratio {
      font-size: 1.6rem;
      font-weight: 900;
      letter-spacing: -0.02em;
    }

    .contrast-ratio.pass {
      color: var(--accent-green);
    }

    .contrast-ratio.fail {
      color: var(--accent-coral);
    }

    .contrast-label {
      font-size: 0.65rem;
      font-weight: 700;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-top: 0.15rem;
    }

    .wcag-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.5rem;
    }

    .wcag-badge {
      padding: 0.5rem 0.65rem;
      border-radius: 6px;
      font-size: 0.7rem;
      font-weight: 700;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.3rem;
    }

    .wcag-badge.pass {
      background: rgba(74, 222, 128, 0.1);
      color: var(--accent-green);
    }

    .wcag-badge.fail {
      background: rgba(255, 127, 110, 0.1);
      color: var(--accent-coral);
    }

    .demo-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 1rem;
      border-top: 1px solid var(--border-subtle);
      margin-top: 0.25rem;
    }

    .demo-tagline {
      font-size: 0.75rem;
      color: var(--text-muted);
    }

    .demo-cta {
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--accent-mint);
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      transition: gap 0.2s ease, color 0.2s ease;
    }

    .demo-cta:hover {
      color: var(--accent-mint-dark);
      gap: 0.5rem;
    }

    .demo-cta svg {
      width: 14px;
      height: 14px;
    }

    /* ============================================
       APPS GRID SECTION - THE TOOLKIT
    ============================================ */
    .apps-section {
      padding: 6rem 2rem;
      background: var(--bg-secondary);
      position: relative;
    }

    .section-container {
      max-width: 1300px;
      margin: 0 auto;
    }

    .section-header {
      text-align: center;
      margin-bottom: 3.5rem;
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      color: var(--accent-lilac);
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 0.9rem;
    }

    .section-title {
      font-size: clamp(1.9rem, 4vw, 2.75rem);
      font-weight: 400;
      margin-bottom: 0.75rem;
      letter-spacing: -0.02em;
    }

    .section-description {
      color: var(--text-secondary);
      font-size: 1.05rem;
      max-width: 540px;
      margin: 0 auto;
    }

    .apps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }

    .app-card {
      background: var(--bg-card);
      border: 1px solid var(--border-card);
      border-radius: 14px;
      padding: 1.5rem;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .app-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--card-accent, linear-gradient(90deg, var(--accent-purple), var(--accent-pink)));
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .app-card:hover {
      transform: translateY(-3px);
      border-color: rgba(255, 255, 255, 0.12);
      box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
    }

    .app-card:hover::before {
      opacity: 1;
    }

    .app-card-header {
      display: flex;
      align-items: flex-start;
      gap: 0.9rem;
      margin-bottom: 0.9rem;
    }

    .app-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.35rem;
      flex-shrink: 0;
      transition: transform 0.3s ease;
    }

    .app-card:hover .app-icon {
      transform: scale(1.05) rotate(-2deg);
    }

    .app-meta {
      flex: 1;
      min-width: 0;
    }

    .app-name {
      font-size: 1.1rem;
      font-weight: 800;
      margin-bottom: 0.15rem;
      letter-spacing: -0.01em;
    }

    .app-platform {
      font-size: 0.75rem;
      color: var(--text-muted);
      font-weight: 600;
    }

    .app-description {
      color: var(--text-secondary);
      font-size: 0.9rem;
      margin-bottom: 1rem;
      line-height: 1.5;
    }

    .app-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
    }

    .app-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
    }

    .app-tag {
      background: rgba(255, 255, 255, 0.04);
      padding: 0.25rem 0.55rem;
      border-radius: 4px;
      font-size: 0.68rem;
      font-weight: 700;
      color: var(--text-muted);
    }

    .app-tag--design { color: var(--accent-lilac); background: rgba(124, 92, 255, 0.08); }
    .app-tag--dev { color: var(--accent-blue); background: rgba(56, 189, 248, 0.08); }
    .app-tag--productivity { color: var(--accent-green); background: rgba(74, 222, 128, 0.08); }

    .app-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      font-weight: 700;
      font-size: 0.8rem;
      color: var(--card-cta-color, var(--accent-mint));
      transition: gap 0.2s ease;
      white-space: nowrap;
    }

    .app-cta:hover {
      gap: 0.55rem;
    }

    .app-cta svg {
      width: 14px;
      height: 14px;
    }

    /* App-specific styles */
    .app-card--clip {
      --card-accent: var(--clip-mojo-blue);
      --card-cta-color: var(--clip-mojo-blue);
    }
    .app-card--clip .app-icon {
      background: linear-gradient(135deg, var(--clip-mojo-blue) 0%, var(--accent-purple) 100%);
    }

    .app-card--swatch {
      --card-accent: linear-gradient(90deg, #ef4444, #f97316, #eab308, #22c55e, #3b82f6, #8b5cf6);
      --card-cta-color: var(--accent-green);
    }
    .app-card--swatch .app-icon {
      background: linear-gradient(135deg, #ef4444 0%, #eab308 33%, #22c55e 66%, #8b5cf6 100%);
    }

    .app-card--chart {
      --card-accent: var(--chart-mojo-teal);
      --card-cta-color: var(--chart-mojo-teal);
    }
    .app-card--chart .app-icon {
      background: linear-gradient(135deg, var(--chart-mojo-teal) 0%, var(--accent-blue) 100%);
    }

    .app-card--text {
      --card-accent: var(--accent-pink);
      --card-cta-color: var(--accent-pink-light);
    }
    .app-card--text .app-icon {
      background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-purple) 100%);
    }

    .app-card--doozy {
      --card-accent: var(--doozy-amber);
      --card-cta-color: var(--doozy-amber);
    }
    .app-card--doozy .app-icon {
      background: linear-gradient(135deg, var(--doozy-amber) 0%, #f97316 100%);
    }

    .app-card--focus {
      --card-accent: var(--focus-red);
      --card-cta-color: var(--focus-red);
    }
    .app-card--focus .app-icon {
      background: linear-gradient(135deg, var(--focus-red) 0%, var(--accent-pink) 100%);
    }

    .app-card--templates {
      --card-accent: var(--accent-blue);
      --card-cta-color: var(--accent-blue);
    }
    .app-card--templates .app-icon {
      background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
    }

    .app-card--emoji {
      --card-accent: var(--emoji-mojo-coral);
      --card-cta-color: var(--emoji-mojo-peach);
    }

    .app-card--css {
      --card-accent: var(--accent-blue);
      --card-cta-color: var(--accent-blue);
    }

    .app-card--favicon {
      --card-accent: var(--accent-pink);
      --card-cta-color: var(--accent-pink-light);
    }

    /* ============================================
       PROCESS CONTEXT SECTION (Below Hero)
    ============================================ */
    .process-context {
      padding: 4rem 2rem 5rem;
      background: var(--bg-secondary);
      position: relative;
      overflow: hidden;
    }

    .process-context::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, var(--border-subtle) 20%, var(--border-subtle) 80%, transparent 100%);
    }

    .process-context-container {
      max-width: 1000px;
      margin: 0 auto;
    }

    /* Process Steps Dots */
    .process-dots {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      margin-bottom: 2.5rem;
    }

    .process-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: var(--bg-tertiary);
      border: 2px solid var(--border-card);
      transition: all 0.3s ease;
      position: relative;
      cursor: default;
    }

    .process-dot::after {
      content: attr(data-step);
      position: absolute;
      bottom: -24px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 0.65rem;
      font-weight: 700;
      color: var(--text-muted);
      white-space: nowrap;
      opacity: 0;
      transition: opacity 0.2s ease;
    }

    .process-dot:hover::after {
      opacity: 1;
    }

    .process-dot.active {
      background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%);
      border-color: var(--accent-purple);
      transform: scale(1.3);
      box-shadow: 0 0 16px var(--accent-purple-glow);
    }

    .process-dot.active::after {
      opacity: 1;
      color: var(--accent-purple-light);
    }

    .process-connector {
      width: 24px;
      height: 2px;
      background: var(--border-card);
    }

    .process-connector.passed {
      background: linear-gradient(90deg, var(--accent-purple), var(--accent-pink));
      opacity: 0.4;
    }

    /* Step Context Card */
    .step-context-card {
      background: var(--bg-card);
      border: 1px solid var(--border-card);
      border-radius: 16px;
      padding: 2.5rem;
      position: relative;
      overflow: hidden;
    }

    .step-context-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--accent-purple), var(--accent-pink));
    }

    .step-context-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 2rem;
      margin-bottom: 1.5rem;
    }

    .step-context-title-area {
      flex: 1;
    }

    .step-context-label {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--accent-purple-light);
      margin-bottom: 0.5rem;
    }

    .step-context-label svg {
      width: 14px;
      height: 14px;
    }

    .step-context-title {
      font-size: 1.5rem;
      font-weight: 800;
      margin-bottom: 0.5rem;
      letter-spacing: -0.02em;
    }

    .step-context-subtitle {
      color: var(--text-secondary);
      font-size: 1rem;
      line-height: 1.55;
      max-width: 500px;
    }

    .step-context-badge {
      background: rgba(74, 222, 128, 0.1);
      border: 1px solid rgba(74, 222, 128, 0.2);
      color: var(--accent-green);
      padding: 0.5rem 1rem;
      border-radius: 8px;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      white-space: nowrap;
    }

    .step-context-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }

    .context-block {
      padding: 1.5rem;
      background: var(--bg-tertiary);
      border-radius: 12px;
      border: 1px solid var(--border-subtle);
    }

    .context-block-icon {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
    }

    .context-block-icon svg {
      width: 20px;
      height: 20px;
      color: white;
    }

    .context-block-icon.warning {
      background: linear-gradient(135deg, var(--accent-amber) 0%, #f97316 100%);
    }

    .context-block-title {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    .context-block-text {
      font-size: 0.9rem;
      color: var(--text-secondary);
      line-height: 1.55;
    }

    .context-block-text strong {
      color: var(--text-primary);
    }

    /* Process Teaser */
    .process-teaser {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      margin-top: 2rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--border-subtle);
    }

    .process-teaser-text {
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    .process-teaser-link {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--accent-mint);
      transition: gap 0.2s ease;
    }

    .process-teaser-link:hover {
      gap: 0.55rem;
    }

    .process-teaser-link svg {
      width: 14px;
      height: 14px;
    }

    /* ============================================
       MOJO ECOSYSTEM SECTION (Featured Trio)
    ============================================ */
    .ecosystem-section {
      padding: 5rem 2rem;
      background: var(--bg-secondary);
      position: relative;
    }

    .ecosystem-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }

    .ecosystem-card {
      background: var(--bg-card);
      border: 1px solid var(--border-card);
      border-radius: 16px;
      padding: 2rem;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .ecosystem-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--card-accent, linear-gradient(90deg, var(--accent-purple), var(--accent-pink)));
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .ecosystem-card:hover {
      transform: translateY(-4px);
      border-color: rgba(255, 255, 255, 0.15);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .ecosystem-card:hover::before {
      opacity: 1;
    }

    .ecosystem-card--mojo {
      --card-accent: linear-gradient(90deg, var(--accent-purple), var(--accent-pink));
    }

    .ecosystem-card--clip {
      --card-accent: var(--clip-mojo-blue);
    }

    .ecosystem-card--text {
      --card-accent: var(--accent-pink);
    }

    .ecosystem-card-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1.25rem;
    }

    .ecosystem-card-meta {
      flex: 1;
    }

    .ecosystem-card-name {
      font-size: 1.35rem;
      font-weight: 800;
      margin-bottom: 0.25rem;
      letter-spacing: -0.01em;
    }

    .ecosystem-card-platform {
      font-size: 0.8rem;
      color: var(--text-muted);
      font-weight: 600;
    }

    .ecosystem-card-logo {
      flex-shrink: 0;
    }

    .ecosystem-card-logo img {
      max-height: 50px;
      max-width: 100px;
    }

    .ecosystem-card-description {
      color: var(--text-secondary);
      font-size: 0.95rem;
      margin-bottom: 1.5rem;
      line-height: 1.55;
    }

    .ecosystem-card-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-weight: 700;
      font-size: 0.9rem;
      color: var(--accent-mint);
      transition: gap 0.2s ease;
    }

    .ecosystem-card-cta:hover {
      gap: 0.6rem;
    }

    .ecosystem-card-cta svg {
      width: 16px;
      height: 16px;
    }

    /* Section header variants */
    .section-header-left {
      text-align: left;
      margin-bottom: 2rem;
    }

    .section-title-sm {
      font-size: clamp(1.5rem, 3vw, 2rem);
      font-weight: 800;
      margin-bottom: 0.5rem;
      letter-spacing: -0.01em;
    }

    .section-description-left {
      color: var(--text-secondary);
      font-size: 1rem;
      max-width: 600px;
    }

    /* Apps section variants */
    .apps-section--alt {
      background: var(--bg-secondary);
    }

    .apps-grid--2col {
      grid-template-columns: repeat(2, 1fr);
      max-width: 860px;
    }

    .app-tag--figma { 
      color: var(--chart-mojo-teal); 
      background: rgba(45, 212, 191, 0.08); 
    }

    /* ============================================
       DESIGNING APPS WITH AI COURSE SECTION
    ============================================ */
    .course-section {
      padding: 0;
      position: relative;
      overflow: hidden;
    }

    .course-section-inner {
      background: linear-gradient(135deg, #0f0a1a 0%, #1a1033 50%, #0d1a2d 100%);
      padding: 6rem 2rem;
      position: relative;
    }

    .course-section-inner::before {
      content: '';
      position: absolute;
      top: -100px;
      left: -100px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
      pointer-events: none;
    }

    .course-section-inner::after {
      content: '';
      position: absolute;
      bottom: -100px;
      right: -100px;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
      pointer-events: none;
    }

    .course-container {
      max-width: 1300px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .course-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .course-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(99, 102, 241, 0.15);
      border: 1px solid rgba(99, 102, 241, 0.25);
      padding: 0.5rem 1rem;
      border-radius: 100px;
      font-size: 0.8rem;
      font-weight: 700;
      color: #a5b4fc;
      margin-bottom: 1.5rem;
    }

    .course-title {
      font-size: clamp(2.25rem, 5vw, 3.25rem);
      font-weight: 900;
      line-height: 1.15;
      margin-bottom: 1rem;
      letter-spacing: -0.025em;
    }

    .course-title .highlight {
      background: linear-gradient(135deg, #818cf8 0%, #06b6d4 50%, #4ade80 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .course-subtitle {
      font-size: 1.15rem;
      color: rgba(255, 255, 255, 0.7);
      max-width: 600px;
      margin: 0 auto 1.5rem;
      line-height: 1.55;
    }

    .course-meta {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .course-meta-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.6);
    }

    .course-meta-item svg {
      width: 18px;
      height: 18px;
      color: #06b6d4;
    }

    /* Workflow Diagram */
    .workflow-diagram {
      margin-bottom: 4rem;
    }

    .workflow-steps {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 0.5rem;
      position: relative;
      flex-wrap: wrap;
    }

    .workflow-step {
      flex: 1;
      min-width: 120px;
      max-width: 150px;
      text-align: center;
      position: relative;
    }

    .workflow-step-number {
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, #333333aa 14%, #111111aa 95%);
      border-radius: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      font-weight: 800;
      margin: 0 auto 0.75rem;
      box-shadow: 0 12px 16px rgba(99, 102, 241, 0.13);
    }

    .workflow-step-title {
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 0.35rem;
      line-height: 1.3;
    }

    .workflow-step-desc {
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.4;
    }

    .workflow-connector {
      position: absolute;
      top: 24px;
      left: calc(50% + 30px);
      width: calc(100% - 60px);
      height: 2px;
      background: linear-gradient(90deg, #6366f1, #06b6d4);
      opacity: 0.3;
    }

    .workflow-step:last-child .workflow-connector {
      display: none;
    }

    /* Course CTA */
    .course-cta-area {
      text-align: center;
      padding: 3rem;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 20px;
    }

    .course-price {
      font-size: 3rem;
      font-weight: 900;
      margin-bottom: 0.5rem;
      background: linear-gradient(135deg, #818cf8 0%, #06b6d4 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .course-price-note {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.5);
      margin-bottom: 1.5rem;
    }

    .btn-course {
      background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
      color: white;
      padding: 1rem 2rem;
      border-radius: 10px;
      font-weight: 700;
      font-size: 1rem;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      border: none;
      cursor: pointer;
      transition: all 0.2s ease;
      box-shadow: 0 4px 20px rgba(99, 102, 241, 0.35);
    }

    .btn-course:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(99, 102, 241, 0.45);
    }

    .btn-course svg {
      width: 18px;
      height: 18px;
    }

    .course-features {
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin-top: 2rem;
      flex-wrap: wrap;
    }

    .course-feature {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.6);
    }

    .course-feature svg {
      width: 16px;
      height: 16px;
      color: var(--accent-green);
    }

    /* ============================================
       EMOJI MOJO FEATURED SECTION
    ============================================ */
    .emoji-section {
      padding: 0;
      position: relative;
      overflow: hidden;
      font-family: 'Fraunces', 'Nunito', sans-serif;
    }

    .emoji-section-inner {
      background: linear-gradient(135deg, #fff9f7 0%, #fff5f0 50%, #ffebe3 100%);
      padding: 6rem 2rem;
      position: relative;
    }

    /* Decorative shapes */
    .emoji-section-inner::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(249, 132, 74, 0.15) 0%, transparent 70%);
      pointer-events: none;
    }

    .emoji-section-inner::after {
      content: '';
      position: absolute;
      bottom: -80px;
      left: -80px;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(255, 181, 167, 0.2) 0%, transparent 70%);
      pointer-events: none;
    }

    .emoji-container {
      max-width: 1300px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 5rem;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .emoji-content {
      color: var(--emoji-mojo-dark);
    }

    .emoji-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(249, 132, 74, 0.12);
      border: 1px solid rgba(249, 132, 74, 0.2);
      padding: 0.5rem 1rem;
      border-radius: 100px;
      font-size: 0.8rem;
      font-weight: 700;
      font-family: 'Nunito';
      color: var(--emoji-mojo-coral);
      margin-bottom: 1.5rem;
    }

    .emoji-badge-icon {
      font-size: 1.1rem;
    }

    .emoji-title {
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 1.25rem;
      letter-spacing: -0.025em;
      color: #1a1210;
    }

    .emoji-title .highlight {
      background: linear-gradient(135deg, var(--emoji-mojo-coral) 0%, #e85d3a 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .emoji-description {
      font-size: 1.2rem;
      color: #5c4a42;
      margin-bottom: 2rem;
      max-width: 440px;
      line-height: 1.55;
    }

    .emoji-features {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-bottom: 2.5rem;
    }

    .emoji-feature {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 1rem;
      color: #3d2e28;
      font-weight: 600;
    }

    .emoji-feature-icon {
      width: 28px;
      height: 28px;
      background: linear-gradient(135deg, var(--emoji-mojo-peach) 0%, var(--emoji-mojo-coral) 100%);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      flex-shrink: 0;
    }

    .emoji-buttons {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      font-family: 'Nunito';
    }

    .btn-emoji-primary {
      background: linear-gradient(135deg, var(--emoji-mojo-coral) 0%, #e85d3a 100%);
      color: white;
      padding: 0.95rem 1.75rem;
      border-radius: 10px;
      font-weight: 700;
      font-size: 1rem;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      border: none;
      cursor: pointer;
      transition: all 0.2s ease;
      box-shadow: 0 4px 16px rgba(249, 132, 74, 0.35);
    }

    .btn-emoji-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(249, 132, 74, 0.45);
    }

    .btn-emoji-secondary {
      background: white;
      color: #3d2e28;
      padding: 0.95rem 1.75rem;
      border-radius: 10px;
      font-weight: 700;
      font-size: 1rem;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      border: 1px solid rgba(61, 46, 40, 0.15);
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .btn-emoji-secondary:hover {
      background: #fef7f5;
      border-color: var(--emoji-mojo-coral);
    }

    /* Emoji Demo Mockup */
    .emoji-demo {
      position: relative;
    }

    .emoji-demo-card {
      background: white;
      border-radius: 20px;
      padding: 1.5rem;
      box-shadow: 
        0 32px 64px rgba(61, 46, 40, 0.12),
        0 16px 32px rgba(61, 46, 40, 0.08),
        0 0 0 1px rgba(61, 46, 40, 0.04);
      position: relative;
    }

    .emoji-demo-header {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1.25rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid rgba(61, 46, 40, 0.08);
    }

    .emoji-demo-logo {
      width: 36px;
      height: 36px;
      background: linear-gradient(135deg, var(--emoji-mojo-peach) 0%, var(--emoji-mojo-coral) 100%);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
    }

    .emoji-demo-title {
      font-weight: 800;
      font-size: 1.1rem;
      color: #1a1210;
    }

    .emoji-search-bar {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      background: #f8f4f2;
      padding: 0.9rem 1.1rem;
      border-radius: 12px;
      margin-bottom: 1.25rem;
    }

    .emoji-search-icon {
      color: #a69389;
      font-size: 1.1rem;
    }

    .emoji-search-text {
      color: #5c4a42;
      font-size: 0.95rem;
      font-weight: 600;
    }

    .emoji-search-cursor {
      width: 2px;
      height: 18px;
      background: var(--emoji-mojo-coral);
      animation: blink 1s ease-in-out infinite;
    }

    @keyframes blink {
      0%, 50% { opacity: 1; }
      51%, 100% { opacity: 0; }
    }

    .emoji-grid-demo {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 0.5rem;
      margin-bottom: 1.25rem;
    }

    .emoji-item {
      aspect-ratio: 1;
      background: #faf8f7;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      cursor: pointer;
      transition: all 0.2s ease;
      border: 2px solid transparent;
    }

    .emoji-item:hover {
      background: #fff5f0;
      transform: scale(1.1);
    }

    .emoji-item.selected {
      background: linear-gradient(135deg, rgba(255, 181, 167, 0.3) 0%, rgba(249, 132, 74, 0.2) 100%);
      border-color: var(--emoji-mojo-coral);
    }

    .emoji-status {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 1rem;
      border-top: 1px solid rgba(61, 46, 40, 0.08);
    }

    .emoji-status-text {
      font-size: 0.85rem;
      color: #a69389;
      font-weight: 600;
    }

    .emoji-status-badge {
      background: rgba(74, 222, 128, 0.12);
      color: #22c55e;
      padding: 0.35rem 0.75rem;
      border-radius: 6px;
      font-size: 0.75rem;
      font-weight: 700;
    }

    /* Floating emojis decoration */
    .floating-emoji {
      position: absolute;
      font-size: 2rem;
      animation: float-emoji 6s ease-in-out infinite;
      opacity: 0.8;
    }

    .floating-emoji:nth-child(1) {
      top: -20px;
      right: 60px;
      animation-delay: 0s;
    }

    .floating-emoji:nth-child(2) {
      bottom: 40px;
      right: -30px;
      animation-delay: -2s;
    }

    .floating-emoji:nth-child(3) {
      top: 40%;
      right: -50px;
      animation-delay: -4s;
    }

    @keyframes float-emoji {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-15px) rotate(5deg); }
    }

    /* ============================================
       BLOG SECTION
    ============================================ */
    .blog-section {
      padding: 6rem 2rem;
      background: var(--bg-primary);
    }

    .blog-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 2.5rem;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .blog-header-text {
      max-width: 460px;
    }

    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }

    .blog-card {
      background: var(--bg-card);
      border: 1px solid var(--border-card);
      border-radius: 14px;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .blog-card:hover {
      transform: translateY(-3px);
      border-color: rgba(255, 255, 255, 0.12);
      box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
    }

    .blog-image {
      width: 100%;
      height: 160px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    /* Abstract gradient blog images */
    .blog-image--charts {
      background: linear-gradient(135deg, var(--chart-mojo-teal) 0%, var(--accent-blue) 50%, var(--accent-purple) 100%);
    }

    .blog-image--color {
      background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 50%, var(--accent-coral) 100%);
    }

    .blog-image--accessibility {
      background: linear-gradient(135deg, var(--accent-green) 0%, var(--chart-mojo-teal) 50%, var(--accent-blue) 100%);
    }

    .blog-image-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
      opacity: 0.85;
    }

    .blog-content {
      padding: 1.35rem;
    }

    .blog-category {
      display: inline-block;
      font-size: 0.7rem;
      font-weight: 700;
      color: var(--accent-lilac);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 0.6rem;
    }

    .blog-title {
      font-size: 1.05rem;
      font-weight: 800;
      margin-bottom: 0.6rem;
      line-height: 1.3;
      letter-spacing: -0.01em;
    }

    .blog-excerpt {
      color: var(--text-secondary);
      font-size: 0.88rem;
      margin-bottom: 1rem;
      line-height: 1.5;
    }

    .blog-read-more {
      color: var(--accent-mint);
      font-weight: 700;
      font-size: 0.82rem;
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      transition: gap 0.2s ease, color 0.2s ease;
    }

    .blog-read-more:hover {
      color: var(--accent-mint-dark);
      gap: 0.5rem;
    }

    .blog-read-more svg {
      width: 14px;
      height: 14px;
    }

    /* ============================================
       NEWSLETTER SECTION
    ============================================ */
    .newsletter-section {
      padding: 5rem 2rem;
      background: var(--bg-secondary);
    }

    .newsletter-card {
      max-width: 640px;
      margin: 0 auto;
      background: var(--bg-card);
      border: 1px solid var(--border-card);
      border-radius: 16px;
      padding: 2.75rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .newsletter-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--accent-mint), var(--accent-mint-dark), var(--accent-green));
    }

    .newsletter-icon {
      font-size: 1.5rem;
      margin-bottom: 0.25rem;
    }

    .newsletter-title {
      font-size: 1.6rem;
      font-weight: 900;
      margin-bottom: 0.6rem;
      letter-spacing: -0.02em;
    }

    .newsletter-description {
      color: var(--text-secondary);
      margin-bottom: 1.75rem;
      font-size: 0.95rem;
    }

    .newsletter-form {
      display: flex;
      gap: 0.65rem;
      max-width: 400px;
      margin: 0 auto;
    }

    .newsletter-input {
      flex: 1;
      padding: 0.9rem 1.1rem;
      border-radius: 9px;
      border: 1px solid var(--border-card);
      background: var(--bg-tertiary);
      color: var(--text-primary);
      font-family: inherit;
      font-size: 0.95rem;
      outline: none;
      transition: border-color 0.2s ease;
    }

    .newsletter-input:focus {
      border-color: var(--accent-mint-dark);
    }

    .newsletter-input::placeholder {
      color: var(--text-muted);
    }

    /* ============================================
       FOOTER
    ============================================ */
    .footer {
      padding: 4rem 2rem 2rem;
      background: var(--bg-primary);
      border-top: 1px solid var(--border-subtle);
    }

    .footer-container {
      max-width: 1300px;
      margin: 0 auto;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr repeat(3, 1fr);
      gap: 2.5rem;
      margin-bottom: 2.5rem;
    }

    .footer-brand {
      max-width: 260px;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-weight: 800;
      font-size: 1.1rem;
      margin-bottom: 0.9rem;
    }

    .footer-tagline {
      color: var(--text-secondary);
      font-size: 0.9rem;
      line-height: 1.55;
    }

    .footer-column h4 {
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--text-muted);
      margin-bottom: 1.1rem;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }

    .footer-links a {
      color: var(--text-secondary);
      font-size: 0.9rem;
      transition: color 0.2s ease;
    }

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

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 1.75rem;
      border-top: 1px solid var(--border-subtle);
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-copyright {
      color: var(--text-muted);
      font-size: 0.85rem;
    }

    .footer-socials {
      display: flex;
      gap: 0.75rem;
    }

    .footer-socials a {
      width: 36px;
      height: 36px;
      background: var(--bg-tertiary);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-secondary);
      transition: all 0.2s ease;
    }

    .footer-socials a:hover {
      background: var(--accent-mint-dark);
      color: #0d0d0d;
    }

    .footer-socials svg {
      width: 16px;
      height: 16px;
    }

    /* ============================================
       RESPONSIVE DESIGN
    ============================================ */
    @media (max-width: 1024px) {
      .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
      }

      .hero-description {
        margin-left: auto;
        margin-right: auto;
      }

      .hero-social-proof {
        justify-content: center;
      }

      .hero-buttons {
        justify-content: center;
      }

      .hero-demo {
        max-width: 480px;
        margin: 0 auto;
      }

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

      .ecosystem-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
      }

      .apps-grid--2col {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
      }

      .workflow-steps {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
      }

      .workflow-step {
        min-width: 100px;
        max-width: 120px;
      }

      .workflow-connector {
        display: none;
      }

      .emoji-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
      }

      .emoji-description {
        margin-left: auto;
        margin-right: auto;
      }

      .emoji-features {
        align-items: center;
      }

      .emoji-buttons {
        justify-content: center;
      }

      .emoji-demo {
        max-width: 420px;
        margin: 0 auto;
      }

      .floating-emoji {
        display: none;
      }

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

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

      .footer-brand {
        grid-column: span 2;
        max-width: none;
        text-align: center;
      }
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }

      .nav-toggle {
        display: block;
      }

      .nav-cta {
        display: none;
      }

      .mobile-nav {
        display: block;
      }

      .hero {
        padding-top: 5.5rem;
        min-height: auto;
        padding-bottom: 3.5rem;
      }

      .process-context {
        padding: 3rem 1.5rem 4rem;
      }

      .process-dots {
        gap: 0.35rem;
      }

      .process-dot {
        width: 10px;
        height: 10px;
      }

      .process-connector {
        width: 16px;
      }

      .step-context-card {
        padding: 1.5rem;
      }

      .step-context-header {
        flex-direction: column;
        gap: 1rem;
      }

      .step-context-content {
        grid-template-columns: 1fr;
        gap: 1rem;
      }

      .process-teaser {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
      }

      .color-inputs {
        grid-template-columns: 1fr;
      }

      .contrast-results {
        grid-template-columns: 1fr;
        gap: 0.75rem;
      }

      .wcag-grid {
        grid-template-columns: repeat(4, 1fr);
      }

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

      .course-section-inner {
        padding: 4rem 1.5rem;
      }

      .workflow-step {
        min-width: 80px;
        max-width: 100px;
      }

      .emoji-section-inner {
        padding: 4rem 1.5rem;
      }

      .emoji-grid-demo {
        grid-template-columns: repeat(4, 1fr);
      }

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

      .blog-header {
        flex-direction: column;
        align-items: flex-start;
      }

      .newsletter-form {
        flex-direction: column;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .footer-brand {
        grid-column: span 1;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }
    }

    @media (max-width: 480px) {
      .wcag-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .demo-footer {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
      }

      .emoji-grid-demo {
        grid-template-columns: repeat(3, 1fr);
      }

      .course-meta {
        gap: 1rem;
      }
    }
