* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --primary: #21759b;
      --primary-dark: #1a5c7a;
      --primary-light: #e8f4f8;
      --accent: #d63638;
      --text: #1e1e1e;
      --text-muted: #5a5a5a;
      --bg: #fafafa;
      --card-bg: #ffffff;
      --border: #e0e0e0;
      --radius: 12px;
      --shadow: 0 4px 24px rgba(0,0,0,0.08);
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      line-height: 1.6;
      color: var(--text);
      background: var(--bg);
      min-height: 100vh;
    }
    /** INDEX **/
 .logo {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .logo a {
      color: white;
      text-decoration: none;
    }

    .plugins-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
      gap: 24px;
      margin-top: 40px;
    }

    .plugin-card {
      background: var(--card-bg);
      border-radius: var(--radius);
      padding: 32px;
      box-shadow: var(--shadow);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      display: flex;
      flex-direction: column;
    }

    .plugin-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    }

    .plugin-icon {
      width: 56px;
      height: 56px;
      background: var(--primary-light);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      font-size: 28px;
    }

    .plugin-card h3 {
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .plugin-card .version {
      display: inline-block;
      background: var(--primary);
      color: white;
      padding: 3px 10px;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 600;
      margin-left: 10px;
      vertical-align: middle;
    }

    .plugin-card p {
      color: var(--text-muted);
      flex-grow: 1;
      margin-bottom: 20px;
    }

    .plugin-card .btn {
      align-self: flex-start;
    }

    .intro {
      max-width: 600px;
      margin: 0 auto 48px;
      opacity: 0.9;
    }
    /** PAGES **/

    .hero {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      color: white;
      padding: 80px 24px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 600px;
      height: 600px;
      background: rgba(255,255,255,0.05);
      border-radius: 50%;
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: -30%;
      left: -10%;
      width: 400px;
      height: 400px;
      background: rgba(255,255,255,0.03);
      border-radius: 50%;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 700px;
      margin: 0 auto;
    }

    .hero h1 {
      font-size: clamp(2.5rem, 6vw, 3.5rem);
      font-weight: 700;
      margin-bottom: 16px;
      letter-spacing: -0.02em;
    }

    .hero p {
      font-size: 1.25rem;
      opacity: 0.9;
      max-width: 540px;
      margin: 0 auto 32px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      font-size: 1rem;
      font-weight: 600;
      text-decoration: none;
      border-radius: var(--radius);
      transition: all 0.2s ease;
    }

    .btn-primary {
      background: white;
      color: var(--primary);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    }

    .btn-secondary {
      background: transparent;
      color: white;
      border: 2px solid rgba(255,255,255,0.3);
    }

    .btn-secondary:hover {
      background: rgba(255,255,255,0.1);
      border-color: white;
    }

    .hero-buttons {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .section {
      padding: 64px 0;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 24px;
      margin-top: 40px;
    }

    .feature-card {
      background: var(--card-bg);
      border-radius: var(--radius);
      padding: 28px;
      box-shadow: var(--shadow);
      transition: transform 0.2s ease;
    }

    .feature-card:hover {
      transform: translateY(-4px);
    }

    .feature-icon {
      width: 48px;
      height: 48px;
      background: var(--primary-light);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      font-size: 24px;
    }

    .feature-card h3 {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .feature-card p {
      color: var(--text-muted);
      font-size: 0.95rem;
    }

    .section-header {
      text-align: center;
      margin-bottom: 16px;
    }

    .section-header h2 {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .section-header p {
      color: var(--text-muted);
      max-width: 600px;
      margin: 0 auto;
    }

    .use-cases {
      background: var(--card-bg);
    }

    .use-cases-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .use-case {
      text-align: center;
      padding: 32px 20px;
      background: var(--bg);
      border-radius: var(--radius);
    }

    .use-case-icon {
      font-size: 36px;
      margin-bottom: 12px;
    }

    .use-case h3 {
      font-weight: 600;
      margin-bottom: 4px;
    }

    .use-case p {
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    .changelog {
      background: var(--card-bg);
    }

    .changelog-list {
      max-width: 700px;
      margin: 40px auto 0;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
    }

    .changelog-version {
      background: var(--primary);
      color: white;
      padding: 12px 20px;
      font-weight: 600;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .changelog-version .badge {
      background: rgba(255,255,255,0.2);
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 0.8rem;
    }

    .changelog-content {
      padding: 20px;
    }

    .changelog-content ul {
      list-style: none;
    }

    .changelog-content li {
      padding: 6px 0;
      padding-left: 20px;
      position: relative;
      color: var(--text-muted);
      font-size: 0.95rem;
    }

    .changelog-content li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 14px;
      width: 8px;
      height: 8px;
      background: var(--primary);
      border-radius: 50%;
    }

    .changelog-section {
      margin-bottom: 32px;
    }

    .changelog-section:last-child {
      margin-bottom: 0;
    }

    .cta {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      color: white;
      text-align: center;
      padding: 80px 24px;
    }

    .cta h2 {
      font-size: 2rem;
      margin-bottom: 12px;
    }

    .cta p {
      opacity: 0.9;
      margin-bottom: 32px;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
    }

    header {
      background: #1a1a1a;
      color: #888;
      padding: 10px;
      text-align: center;
    }

    footer {
      background: #1a1a1a;
      color: #888;
      padding: 32px 24px;
      text-align: center;
    }

    footer a, header a {
      color: #aaa;
      text-decoration: none;
    }

    footer a:hover, header a:hover {
      color: white;
    }

/*****************
 ** YAMTRACK
 *****************/
.coming-soon {
      background: rgba(255,255,255,0.15);
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
      display: inline-block;
      margin-top: 12px;
    }
    
    .steps {
      counter-reset: step;
      max-width: 700px;
      margin: 40px auto 0;
    }
    
    .step {
      display: flex;
      gap: 20px;
      margin-bottom: 32px;
    }
    
    .step-number {
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      background: var(--primary);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1.1rem;
    }
    
    .step-content h3 {
      font-weight: 600;
      margin-bottom: 4px;
    }
    
    .step-content p {
      color: var(--text-muted);
      font-size: 0.95rem;
    }
    
    .step-content code {
      background: var(--bg);
      padding: 2px 8px;
      border-radius: 4px;
      font-size: 0.9em;
    }
    
    .requirements-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }
    
    .requirement-item {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 24px;
      text-align: center;
    }
    
    .requirement-icon {
      font-size: 32px;
      margin-bottom: 12px;
    }
    
    .requirement-item h3 {
      font-weight: 600;
      margin-bottom: 4px;
    }
    
    .requirement-item p {
      font-size: 0.9rem;
      color: var(--text-muted);
    }
    
    .warning-badge {
      background: #fef3cd;
      color: #856404;
      padding: 6px 12px;
      border-radius: 6px;
      font-size: 0.85rem;
      display: inline-block;
      margin-top: 8px;
    }
    
    .contribute {
      background: var(--card-bg);
    }
    
    .contribute-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }
    
    .contribute-item {
      text-align: center;
      padding: 24px;
      background: var(--bg);
      border-radius: var(--radius);
    }
    
    .contribute-icon {
      font-size: 36px;
      margin-bottom: 12px;
    }
    
    .contribute-item h3 {
      font-weight: 600;
      margin-bottom: 4px;
    }
    
    .contribute-item p {
      font-size: 0.9rem;
      color: var(--text-muted);
    }

.comparison-table { width: 100%; border-collapse: collapse; margin-top: 24px; }
    .comparison-table th, .comparison-table td {
      text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--border);
      font-size: .92rem;
    }
    .comparison-table th { font-weight: 600; background: #f0f0f1; }
    .comparison-table td:last-child { text-align: left; }
    .check { color: #00a32a; font-weight: 700; }
    .cross { color: #d63638; }    

/***** MOBILE *****/
    @media (max-width: 640px) {
      .hero {
        padding: 60px 20px;
      }
      .hero h1 {
        font-size: 2rem;
      }
      .section {
        padding: 48px 0;
      }
    }