  :root {
    --bg: #050505;
    --zinc-900: #18181b;
    --zinc-800: #27272a;
    --accent: #10b981;
    --text: #ffffff;
    --text-muted: #a1a1aa;
    --border: rgba(255, 255, 255, 0.08);
    --glass: rgba(255, 255, 255, 0.03);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Geist Sans', sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
    min-height: 100dvh;
  }

  .noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 50;
    pointer-events: none;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }

  .wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 24px;
    position: relative;
    z-index: 2;
  }

  /* Section blocks */
  .section-block {
    margin-bottom: 56px;
  }

  .section-header {
    font-family: 'Geist Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: 16px;
    padding-left: 10px;
    border-left: 2px solid var(--accent);
  }

  /* Hero */
  .title-block {
    margin-bottom: 32px;
  }

  .title-block h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  .bio-text {
    font-family: 'Geist Mono', monospace;
    font-size: 14px;
    color: var(--text-muted);
    max-width: 45ch;
  }

  /* Status Badge */
  .status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--accent);
    background: rgba(16, 185, 129, 0.1);
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 16px;
  }

  .dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%   { transform: scale(1);   opacity: 1; }
    50%  { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1);   opacity: 1; }
  }

  /* Bento Grid */
  .bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 160px;
    gap: 16px;
  }

  .bento-grid--sm {
    grid-auto-rows: 80px;
  }

  .bento-item {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .bento-item:hover {
    background: rgba(255,255,255,0.06);
    border-color: var(--accent);
    transform: scale(0.98);
  }

  .col-span-2 { grid-column: span 2; }
  .col-span-4 { grid-column: span 4; }
  .row-span-2 { grid-row: span 2; }

  .bento-icon {
    position: absolute;
    top: 24px;
    left: 24px;
    font-size: 24px;
    opacity: 0.5;
  }

  .bento-label {
    font-size: 11px;
    font-family: 'Geist Mono', monospace;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 4px;
  }

  .bento-title {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.02em;
  }

  .bento-desc {
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
  }

  /* SVG / img icons inside bento-icon */
  .bento-icon svg {
    width: 26px;
    height: 26px;
    display: block;
    fill: currentColor;
  }

  .bento-icon img {
    width: 26px;
    height: 26px;
    display: block;
  }

  /* Social cards */
  .bento-item--social {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
  }

  .bento-item--social .bento-icon {
    position: static;
    font-size: 22px;
    opacity: 0.9;
    flex-shrink: 0;
  }

  .bento-item--social .bento-title {
    font-size: 15px;
  }

  @media (max-width: 768px) {
    .bento-grid {
      grid-template-columns: repeat(2, 1fr);
      grid-auto-rows: 140px;
    }
    .bento-grid--sm {
      grid-auto-rows: 80px;
    }
    .col-span-2 { grid-column: span 2; }
    .col-span-4 { grid-column: span 2; }
  }