    @import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Space+Mono:wght@400;700&display=swap');

    :root {
      color-scheme: dark;
      --brand: #ff6000; /* Neon Orange */
      --brand-accent: #ff0055; /* Hot Pink */
      --brand-glow: rgba(255, 96, 0, 0.5);
      --text: #f0f0f0;
      --muted: #a0a0ff;
      --bg: #100030; /* Deep Purple/Blue */
      --card: #200040;
      --border-color: #ff0055;
      --shadow: 0 0 15px rgba(255, 0, 85, 0.3);
    }

    *, *::before, *::after { box-sizing: border-box; }

    body {
      margin: 0;
      font-family: 'Space Mono', monospace; /* Very clean, readable monospace */
      line-height: 1.6;
      color: var(--text);
      background: var(--bg);
      min-height: 100vh;
      font-size: 1rem;
    }

    /* Heavy pixelated headings */
    h1, h2, h3, .brand, .cta-header, .cta-primary, .cta-secondary {
      font-family: 'Press Start 2P', cursive;
      letter-spacing: -1px;
    }

    img { max-width: 100%; display: block; }

    a {
      color: inherit;
      text-decoration: none;
    }

    .inline-link {
      color: var(--brand);
      text-decoration: underline;
      text-decoration-thickness: 2px;
      text-underline-offset: 4px;
      transition: color 0.2s, text-shadow 0.2s;
    }

    .inline-link:hover {
      color: var(--brand-accent);
      text-shadow: 0 0 5px var(--brand-accent);
    }

    .site-shell {
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      padding: 2rem;
      background: repeating-linear-gradient(
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.1) 2px,
        rgba(0, 0, 0, 0.1) 4px
      );
    }

    header {
      margin-bottom: 3rem;
      border: 4px double var(--brand-accent);
      background: var(--card);
      padding: 1rem;
      box-shadow: 0 0 10px var(--brand-accent);
    }

    .nav {
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    .brand {
      font-weight: 400;
      font-size: 1.5rem;
      color: var(--brand);
      text-shadow: 3px 3px 0px rgba(255,0,85,0.7);
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 1.5rem;
      margin: 0;
      padding: 0;
    }

    nav a {
      color: var(--muted);
      text-transform: uppercase;
      font-weight: 700;
      font-size: 1.1rem;
      transition: color 0.2s;
    }

    nav a:focus-visible,
    nav a:hover {
      color: var(--brand);
      text-shadow: 0 0 8px var(--brand);
    }

    .cta-header {
      background: var(--brand-accent);
      color: #fff;
      padding: 0.5rem 1rem;
      font-size: 0.75rem;
      border: 2px solid #fff;
      box-shadow: 3px 3px 0px var(--brand);
      transition: all 0.2s;
    }

    .cta-header:hover {
      background: var(--brand);
      box-shadow: 3px 3px 0px var(--brand-accent);
      transform: translate(-1px, -1px);
    }

    .hero {
      padding: 4rem 2rem;
      width: 100%;
      margin: 0 auto 3rem;
      background: linear-gradient(180deg, var(--card) 0%, rgba(32,0,64,0) 100%);
      border-top: 4px solid var(--brand);
      text-align: center;
    }

    .eyebrow {
      text-transform: uppercase;
      font-weight: 700;
      color: var(--brand);
      margin-bottom: 1.5rem;
      display: inline-block;
      letter-spacing: 0.1em;
      border: 1px solid var(--brand);
      padding: 0.2rem 0.5rem;
    }

    .hero h1 {
      font-size: clamp(1.5rem, 3vw, 2.5rem);
      line-height: 1.4;
      margin: 0 auto 2rem;
      color: #fff;
      text-shadow: 4px 4px 0px var(--brand-accent), -2px -2px 0px var(--brand);
      max-width: 800px;
    }

    .hero p {
      font-size: 1.25rem;
      max-width: 60ch;
      margin: 0 auto 2.5rem;
      color: var(--muted);
    }

    .cta-primary, .cta-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 1rem 1.5rem;
      font-size: 0.85rem;
      text-transform: uppercase;
      transition: all 0.2s;
      cursor: pointer;
    }

    .cta-primary {
      background: var(--brand);
      color: #fff;
      border: 2px solid #fff;
      box-shadow: 4px 4px 0px var(--brand-accent);
    }

    .cta-primary:focus-visible,
    .cta-primary:hover {
      background: var(--brand-accent);
      box-shadow: 4px 4px 0px var(--brand);
      transform: translate(-2px, -2px);
    }

    .cta-secondary {
      background: transparent;
      color: var(--brand);
      border: 2px solid var(--brand);
    }

    .cta-secondary:focus-visible,
    .cta-secondary:hover {
      background: rgba(255, 96, 0, 0.1);
      box-shadow: 0 0 10px var(--brand);
    }

    .cta-group {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      justify-content: center;
    }

    main {
      flex: 1;
      max-width: 1000px;
      margin: 0 auto;
      width: 100%;
    }

    .section {
      padding: 4rem 0;
      position: relative;
    }

    .section::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--brand-accent), transparent);
    }

    .section h2 {
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
      color: var(--brand-accent);
      text-shadow: 2px 2px 0px rgba(0,0,0,0.5);
    }

    .section p {
      color: var(--text);
      max-width: 70ch;
    }

    .offerings-grid,
    .projects-grid {
      display: grid;
      gap: 2rem;
      margin-top: 2rem;
    }

    @media (min-width: 768px) {
      .offerings-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .projects-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
    }

    .card {
      background: var(--card);
      padding: 1.5rem;
      border: 2px solid var(--muted);
      border-radius: 0;
      box-shadow: 4px 4px 0px rgba(0,0,0,0.5);
      transition: all 0.2s ease;
      position: relative;
    }

    .card:hover {
      border-color: var(--brand);
      box-shadow: 4px 4px 0px var(--brand);
      transform: translateY(-4px);
    }

    .card h3 {
      margin-top: 0;
      font-size: 1rem;
      line-height: 1.4;
      color: var(--brand);
      margin-bottom: 1rem;
    }

    .project-card a {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      height: 100%;
    }

    .project-card p {
      margin: 0;
      color: var(--text);
    }

    .project-card span {
      color: var(--brand-accent);
      font-weight: 700;
      margin-top: auto;
      display: block;
    }

    .bio {
      display: grid;
      gap: 2rem;
      align-items: start;
      background: rgba(32,0,64,0.5);
      padding: 2rem;
      border: 2px dashed var(--muted);
    }

    @media (min-width: 768px) {
      .bio { grid-template-columns: 1fr 1fr; }
    }

    .bio strong { color: var(--brand); font-weight: 700; }

    .bio ul {
      list-style-type: none;
      padding: 0;
    }
    .bio li::before {
      content: "► ";
      color: var(--brand-accent);
    }

    .contact {
      display: grid;
      gap: 2rem;
      text-align: center;
    }

    .contact form {
      display: grid;
      gap: 1.5rem;
      max-width: 600px;
      margin: 0 auto;
      width: 100%;
      text-align: left;
    }

    label {
      color: var(--brand);
      font-weight: 700;
      font-size: 1.1rem;
    }

    input,
    textarea {
      width: 100%;
      padding: 1rem;
      border: 2px solid var(--muted);
      font-size: 1.1rem;
      background: rgba(0,0,0,0.3);
      color: #fff;
      font-family: 'Space Mono', monospace;
    }

    input:focus, textarea:focus {
      outline: none;
      border-color: var(--brand-accent);
      box-shadow: 0 0 10px rgba(255,0,85,0.3);
    }

    textarea {
      min-height: 150px;
      resize: vertical;
    }

    button[type="submit"] {
      font-family: 'Press Start 2P', cursive;
      font-size: 0.85rem;
      margin: 0 auto;
    }

    footer {
      padding: 2rem 0;
      text-align: center;
      margin-top: 4rem;
      color: var(--muted);
      border-top: 4px double var(--brand-accent);
      background: var(--card);
    }

    @media (max-width: 768px) {
      nav ul { flex-direction: column; align-items: center; gap: 1rem; width: 100%; margin-top: 1rem; }
      .cta-header { display: none; }
      .nav { flex-direction: column; }
    }
