:root {
      --bg: #111;
      --text: #fff;
      --muted: #b3b3b3;
      --pill-bg: #1a1a1a;
      --pill-text: #e0e0e0;
      --border: #222;
    }

    html,
    body {
      height: 100%;
      margin: 0;
      padding: 0;
      background: var(--bg);
      color: var(--text);
      font-family: 'Inter', 'Inter Display', Arial, sans-serif;
      font-weight: 400;
      min-height: 100vh;
    }

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

    h1 {
      font-family: 'Manrope', Arial, sans-serif;
      font-size: 92px;
      font-weight: 400;
      margin: 0 0 32px 0;
      letter-spacing: -2px;
      line-height: 1.05;
    }

    .subtitle {
      font-size: 20px;
      color: var(--muted);
      margin-bottom: 20px;
      max-width: 800px;
      line-height: 1.6;
    }

    .socials {
      display: flex;
      gap: 18px;
      margin-bottom: 20px;
      align-items: center;
    }

    .social-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: var(--pill-bg);
      color: var(--muted);
      transition: color 0.2s, background-color 0.2s;
      text-decoration: none;
    }

    .social-link:hover,
    .social-link:focus {
      color: var(--text);
      background-color: var(--border);
    }

    .social-link svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
    }

    .pills {
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding-top: 32px;
      padding-bottom: 32px;
    }

    .pill {
      background: var(--pill-bg);
      color: var(--pill-text);
      border-radius: 12px;
      padding: 10px 18px;
      font-size: 16px;
      font-family: 'Inter', 'Inter Display', Arial, sans-serif;
      font-weight: 400;
      border: none;
      outline: none;
      cursor: default;
    }

    .experience {
      margin-top: 40px;
    }

    .exp-row {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 36px;
      flex-wrap: wrap;
    }

    .exp-title {
      font-size: 18px;
      font-family: 'Inter', 'Inter Display', Arial, sans-serif;
      font-weight: 400;
      color: var(--text);
      max-width: 350px;
      min-width: 160px;
    }

    .exp-company {
      font-size: 18px;
      color: var(--muted);
      font-family: 'Inter', 'Inter Display', Arial, sans-serif;
      font-weight: 400;
      flex: 0.5;
      text-align: left;
      min-width: 180px;
    }

    .exp-date {
      font-size: 18px;
      color: var(--muted);
      font-family: 'Inter', 'Inter Display', Arial, sans-serif;
      font-weight: 400;
      min-width: 100px;
      text-align: right;
    }

    @media (max-width: 900px) {
      h1 {
        font-size: 56px;
      }

      .container {
        padding: 32px 12px 0 12px;
      }

      .pills {
        gap: 10px;
        padding-bottom: 20px;
      }

      .exp-row {
        flex-direction: column;
        gap: 6px;
        margin-bottom: 28px;
      }

      .exp-company,
      .exp-date {
        margin-left: 0;
        text-align: left;
      }
    }

    @media (max-width: 600px) {
      h1 {
        font-size: 38px;
      }

      .subtitle {
        font-size: 16px;
      }

      .pill {
        font-size: 14px;
        padding: 8px 12px;
      }

      .exp-title,
      .exp-company,
      .exp-date {
        font-size: 15px;
      }
    }