/* ===== RESET & BASE ===== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    html {
      scroll-behavior: smooth;
    }
    
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      background-color: #0a0a0a;
      color: #e0e0e0;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }
    
    /* ===== CONTAINER ===== */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      width: 100%;
    }
    
    .narrow {
      max-width: 800px;
    }
    
    /* ===== HEADER ===== */
    header {
      background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
      border-bottom: 1px solid #333333;
      padding: 12px 0 12px;
      margin-bottom: 10px;
    }
    
    .header-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 40px;
    }
    
    .header-info h1 {
      font-size: 48px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 8px;
      letter-spacing: -0.5px;
    }
    
    .header-info p {
      font-size: 16px;
      color: #b0b0b0;
      margin-bottom: 20px;
    }
    
    .back-button {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #1a1a1a;
      border: 1px solid #333333;
      color: #00ff88;
      padding: 10px 20px;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.2s ease;
    }
    
    .back-button:hover {
      background: #252525;
      border-color: #00ff88;
    }
    
    /* ===== MAIN CONTENT ===== */
    main {
      flex: 1;
    }
    
    /* ===== ARTICLE ===== */
    .article {
      margin: 0 auto;
      max-width: 800px;
    }
    
    .article-meta {
      font-size: 13px;
      color: #909090;
      margin-bottom: 40px;
      padding-bottom: 20px;
      border-bottom: 1px solid #222222;
    }
    
    .article h2 {
      font-size: 24px;
      font-weight: 700;
      color: #ffffff;
      margin-top: 48px;
      margin-bottom: 16px;
      letter-spacing: -0.3px;
    }
    
    .article h2:first-of-type {
      margin-top: 0;
    }
    
    .article p {
      font-size: 16px;
      color: #c0c0c0;
      line-height: 1.8;
      margin-bottom: 20px;
    }
    
    .article strong {
      color: #ffffff;
      font-weight: 600;
    }
    
    .article em {
      color: #00ff88;
      font-style: italic;
    }
    
    /* ===== PULL QUOTE ===== */
    .pull-quote {
      background: linear-gradient(135deg, rgba(0, 255, 136, 0.06) 0%, rgba(0, 255, 136, 0.02) 100%);
      border-left: 3px solid #00ff88;
      padding: 24px 28px;
      margin: 32px 0;
      border-radius: 0 8px 8px 0;
    }
    
    .pull-quote p {
      font-size: 17px;
      color: #e0e0e0;
      font-weight: 500;
      line-height: 1.7;
      margin-bottom: 0;
    }
    
    /* ===== TIMELINE ===== */
    .timeline {
      margin: 32px 0;
      padding: 0;
      list-style: none;
    }
    
    .timeline li {
      position: relative;
      padding: 0 0 28px 40px;
      border-left: 2px solid #333333;
    }
    
    .timeline li:last-child {
      padding-bottom: 0;
      border-left-color: #00ff88;
    }
    
    .timeline li::before {
      content: '';
      position: absolute;
      left: -6px;
      top: 4px;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #333333;
      border: 2px solid #0a0a0a;
    }
    
    .timeline li:last-child::before {
      background: #00ff88;
    }
    
    .timeline .timeline-label {
      font-size: 12px;
      font-weight: 600;
      color: #ff9800;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 4px;
    }
    
    .timeline .timeline-text {
      font-size: 14px;
      color: #b0b0b0;
      line-height: 1.7;
    }
    
    /* ===== PRINCIPLE CARDS ===== */
    .principles-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 16px;
      margin: 24px 0 40px 0;
    }
    
    .principle-card {
      background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
      border: 1px solid #333333;
      border-radius: 8px;
      padding: 20px;
    }
    
    .principle-card .principle-number {
      font-size: 12px;
      font-weight: 700;
      color: #00ff88;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 8px;
    }
    
    .principle-card h3 {
      font-size: 16px;
      font-weight: 600;
      color: #ffffff;
      margin-bottom: 8px;
    }
    
    .principle-card p {
      font-size: 13px;
      color: #909090;
      line-height: 1.6;
      margin-bottom: 0;
    }
    
    /* ===== CTA ===== */
    .article-cta {
      background: linear-gradient(135deg, rgba(0, 255, 136, 0.08) 0%, rgba(0, 255, 136, 0.02) 100%);
      border: 1px solid #00ff88;
      border-radius: 8px;
      padding: 40px;
      text-align: center;
      margin-top: 48px;
    }
    
    .article-cta h3 {
      font-size: 22px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 12px;
    }
    
    .article-cta p {
      font-size: 15px;
      color: #b0b0b0;
      margin-bottom: 20px;
      line-height: 1.7;
    }
    
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 24px;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      cursor: pointer;
      transition: all 0.2s ease;
      border: none;
    }
    
    .btn-primary {
      background: #00ff88;
      color: #0a0a0a;
    }
    
    .btn-primary:hover {
      background: #00e87c;
      box-shadow: 0 4px 16px rgba(0, 255, 136, 0.2);
    }
    
    .btn-secondary {
      background: #1a1a1a;
      color: #00ff88;
      border: 1px solid #00ff88;
    }
    
    .btn-secondary:hover {
      background: #252525;
    }
    
    /* ===== FOOTER ===== */
    footer {
      background: linear-gradient(135deg, #0f0f0f 0%, #000000 100%);
      border-top: 1px solid #333333;
      padding: 60px 0 40px;
      margin-top: 100px;
    }
    
    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
    }
    
    .footer-column h4 {
      font-size: 14px;
      font-weight: 600;
      color: #00ff88;
      margin-bottom: 16px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    
    .footer-column ul {
      list-style: none;
    }
    
    .footer-column li {
      margin-bottom: 12px;
    }
    
    .footer-column a {
      color: #b0b0b0;
      text-decoration: none;
      font-size: 13px;
      transition: color 0.2s ease;
    }
    
    .footer-column a:hover {
      color: #00ff88;
    }
    
    .footer-bottom {
      border-top: 1px solid #333333;
      padding-top: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
      font-size: 13px;
      color: #909090;
    }
    
    .footer-logo {
      font-size: 18px;
      font-weight: 700;
      color: #ff9800;
      letter-spacing: -0.5px;
    }
    
    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      .header-content {
        flex-direction: column;
        gap: 20px;
      }
      
      .header-info h1 {
        font-size: 28px;
      }
      
      .container {
        padding: 0 16px;
      }
      
      .article h2 {
        font-size: 20px;
      }
      
      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }
    }
