   *,
   *::before,
   *::after {
       box-sizing: border-box;
       margin: 0;
       padding: 0;
   }

   html {
       scroll-behavior: smooth;
   }

   a {
       text-decoration: none;
       color: inherit;
   }

   ul {
       list-style: none;
   }

   :root {
       --bg: #0d0d0d;
       --card: #141414;
       --card-2: #1a1a1a;
       --primary: #00ff9d;
       --beige: #f2e4cc;
       --border: rgba(255, 255, 255, 0.06);
       --border-2: rgba(255, 255, 255, 0.08);
       --text: #ffffff;
       --text-muted: rgba(255, 255, 255, 0.55);
       --text-faint: rgba(255, 255, 255, 0.3);
       --text-fainter: rgba(255, 255, 255, 0.45);
       --radius: 16px;
       --font-heading: 'Inter', ui-sans-serif, system-ui, sans-serif;
       --font-mono: 'JetBrains Mono', ui-monospace, monospace;
       --pad-x: clamp(1.5rem, 8vw, 8rem);
   }

   body {
       background: var(--bg);
       color: var(--text);
       font-family: var(--font-heading);
       line-height: 1.5;
       -webkit-font-smoothing: antialiased;
   }

   ::selection {
       background: rgba(0, 255, 157, 0.2);
   }

   ::-webkit-scrollbar {
       width: 4px;
   }

   ::-webkit-scrollbar-track {
       background: #0d1117;
   }

   ::-webkit-scrollbar-thumb {
       background: #1e2a38;
       border-radius: 2px;
   }

   .section {
       padding: clamp(4rem, 8vw, 8rem) var(--pad-x);
   }

   .mono-xs {
       font-family: var(--font-mono);
       font-size: 0.75rem;
       letter-spacing: 0.15em;
       text-transform: uppercase;
   }

   .reveal {
       opacity: 0;
       transform: translateY(40px);
       transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
   }

   .reveal.in-view {
       opacity: 1;
       transform: translateY(0);
   }

   .slide-up {
       opacity: 0;
       transform: translateY(40px);
       animation: slideUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
   }

   @keyframes slideUp {
       to {
           opacity: 1;
           transform: translateY(0);
       }
   }

   .back-link {
       display: inline-flex;
       align-items: center;
       gap: 0.5rem;
       font-family: var(--font-mono);
       font-size: 0.75rem;
       letter-spacing: 0.15em;
       text-transform: uppercase;
       color: var(--text-muted);
       transition: color 0.2s;
       margin-bottom: 3rem;
   }

   .back-link:hover {
       color: var(--primary);
   }

   .back-link .lucide {
       width: 14px;
       height: 14px;
   }

   .hero {
       padding-top: 8rem;
       padding-bottom: 6rem;
   }

   .hero-label {
       color: var(--primary);
   }

   .hero-h1 {
       font-family: var(--font-heading);
       font-weight: 900;
       font-size: clamp(3rem, 8vw, 6rem);
       letter-spacing: -0.04em;
       line-height: 0.9;
       margin-top: 1.5rem;
   }

   @media (min-width: 768px) {
       .hero-h1 {
           font-size: clamp(4rem, 7vw, 5rem);
       }
   }

   @media (min-width: 1024px) {
       .hero-h1 {
           font-size: clamp(4.5rem, 7vw, 6rem);
       }
   }

   .hero-h1 .alt {
       color: var(--beige);
   }

   .hero-desc {
       margin-top: 2rem;
       font-size: 1.125rem;
       color: var(--text-muted);
       max-width: 36rem;
       line-height: 1.6;
   }

   .featured {
       padding-bottom: 5rem;
   }

   .featured-card {
       cursor: pointer;
       padding: clamp(2.5rem, 4vw, 3.5rem);
       display: flex;
       flex-direction: column;
       gap: 2rem;
       background: var(--card);
       border-radius: 20px;
       border: 1px solid var(--border);
       transition: border-color 0.3s;
   }

   @media (min-width: 768px) {
       .featured-card {
           flex-direction: row;
           align-items: flex-end;
           justify-content: space-between;
       }
   }

   .featured-card:hover {
       border-color: rgba(0, 255, 157, 0.3);
   }

   .featured-content {
       max-width: 42rem;
   }

   .meta-row {
       display: flex;
       align-items: center;
       gap: 1rem;
       margin-bottom: 1.5rem;
       flex-wrap: wrap;
   }

   .tag {
       font-family: var(--font-mono);
       font-size: 0.75rem;
       letter-spacing: 0.15em;
       text-transform: uppercase;
       padding: 0.25rem 0.75rem;
       border-radius: 9999px;
   }

   .meta-faint {
       font-family: var(--font-mono);
       font-size: 0.75rem;
       color: var(--text-faint);
   }

   .featured-title {
       font-family: var(--font-heading);
       font-weight: 900;
       font-size: clamp(1.5rem, 3vw, 2.5rem);
       letter-spacing: -0.03em;
       line-height: 1.2;
       margin-bottom: 1.25rem;
       transition: color 0.3s;
   }

   .featured-card:hover .featured-title {
       color: var(--primary);
   }

   .featured-excerpt {
       font-size: 1rem;
       line-height: 1.6;
       color: var(--text-muted);
   }

   .arrow-circle {
       flex-shrink: 0;
       width: 48px;
       height: 48px;
       border-radius: 9999px;
       border: 1px solid var(--border-2);
       display: flex;
       align-items: center;
       justify-content: center;
       color: rgba(255, 255, 255, 0.4);
       transition: all 0.3s;
   }

   .featured-card:hover .arrow-circle {
       border-color: var(--primary);
       color: var(--primary);
   }

   .arrow-circle .lucide {
       width: 20px;
       height: 20px;
   }

   .grid {
       padding-bottom: 8rem;
   }

   .articles-grid {
       display: grid;
       grid-template-columns: 1fr;
       gap: 1.5rem;
   }

   @media (min-width: 768px) {
       .articles-grid {
           grid-template-columns: repeat(2, 1fr);
       }
   }

   @media (min-width: 1024px) {
       .articles-grid {
           grid-template-columns: repeat(3, 1fr);
       }
   }

   .article-card {
       cursor: pointer;
       padding: 2rem;
       display: flex;
       flex-direction: column;
       justify-content: space-between;
       background: var(--card);
       border-radius: var(--radius);
       border: 1px solid var(--border);
       min-height: 260px;
       transition: border-color 0.3s;
   }

   .article-card:hover {
       border-color: rgba(0, 255, 157, 0.3);
   }

   .article-meta {
       display: flex;
       align-items: center;
       gap: 0.75rem;
       margin-bottom: 1.25rem;
       flex-wrap: wrap;
   }

   .article-title {
       font-family: var(--font-heading);
       font-weight: 700;
       font-size: 1.125rem;
       line-height: 1.3;
       margin-bottom: 1rem;
       transition: color 0.3s;
   }

   .article-card:hover .article-title {
       color: var(--primary);
   }

   .article-excerpt {
       font-size: 0.875rem;
       line-height: 1.6;
       color: var(--text-fainter);
   }

   .article-footer {
       display: flex;
       align-items: center;
       justify-content: space-between;
       margin-top: 1.5rem;
       padding-top: 1.5rem;
       border-top: 1px solid var(--border);
   }

   .article-footer .lucide {
       width: 16px;
       height: 16px;
       color: var(--text-faint);
       transition: color 0.3s;
   }

   .article-card:hover .article-footer .lucide {
       color: var(--primary);
   }

   @media (prefers-reduced-motion: reduce) {

       *,
       *::before,
       *::after {
           animation-duration: 0.01ms !important;
           transition-duration: 0.01ms !important;
       }
   }