* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    background: #0b0b0d;
    color: #e6e6e6;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
  }
  
  .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 24px;
  }
  
  section {
    margin-bottom: 100px;
  }
  
  h1 {
    font-size: 3rem;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
  }
  
  h2 {
    font-size: 1.8rem;
    margin-bottom: 24px;
    letter-spacing: 0.08em;
  }
  
  h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    letter-spacing: 0.06em;
  }
  
  p {
    margin-bottom: 16px;
  }
  
  .subtitle {
    opacity: 0.7;
    margin-bottom: 32px;
  }
  
  .intro {
    font-size: 1.2rem;
  }
  
  .muted {
    opacity: 0.6;
  }
  
  .artifact-image {
    width: 100%;
    max-width: 500px;
    margin: 32px auto;
    display: block;
    border-radius: 6px;
  }
  
  .artifact-text {
    font-size: 1.05rem;
  }
  
  .artifact-meta {
    font-size: 0.9rem;
    opacity: 0.6;
    margin-top: 16px;
  }
  
  .roles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
  }
  
  .role {
    border-left: 2px solid #ff7a18;
    padding-left: 16px;
  }
  
  blockquote {
    font-style: italic;
    opacity: 0.85;
    border-left: 2px solid #ff7a18;
    padding-left: 24px;
  }
  
  .links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
  }
  
  .links a {
    text-decoration: none;
    color: #ff7a18;
    border: 1px solid #ff7a18;
    padding: 10px 18px;
    border-radius: 4px;
    transition: all 0.2s ease;
  }
  
  .links a:hover {
    background: #ff7a18;
    color: #0b0b0d;
  }
  
  footer {
    text-align: center;
    opacity: 0.5;
    font-size: 0.85rem;
  }
  