    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --red: #e8001c;
      --bg: #07070c;
      --card: #101018;
      --border: rgba(255,255,255,0.08);
      --text: #f5f5f5;
      --muted: rgba(255,255,255,0.6);
    }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'Outfit', sans-serif;
      overflow-x: hidden;
    }

    nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 100;
      padding: 18px 60px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: rgba(0,0,0,.75);
      -webkit-backdrop-filter: blur(18px);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--border);
    }

    .logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 30px;
      letter-spacing: 2px;
      color: white;
      text-decoration: none;
    }

    .logo span {
      color: var(--red);
    }

    .nav-links {
      display: flex;
      gap: 14px;
      align-items: center;
    }

    .nav-links a {
      color: rgba(255,255,255,.7);
      text-decoration: none;
      font-size: 14px;
      padding: 8px 14px;
      border-radius: 30px;
      transition: .25s ease;
    }

    .nav-links a:hover,
    .nav-links a.active {
      background: var(--red);
      color: white;
    }

    .hero {
      position: relative;
      min-height: 85vh;
      display: flex;
      align-items: center;
      padding: 140px 80px 80px;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to right, rgba(7,7,12,.96), rgba(7,7,12,.78)),
        url('https://images.unsplash.com/photo-1489599849927-2ee91cede3ba?q=80&w=1920&auto=format&fit=crop') center/cover;
      filter: brightness(.6);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 760px;
    }

    .hero-badge {
      display: inline-block;
      background: var(--red);
      padding: 6px 14px;
      border-radius: 4px;
      font-size: 11px;
      letter-spacing: 2px;
      font-weight: 700;
      margin-bottom: 24px;
      text-transform: uppercase;
    }

    .hero-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(60px, 10vw, 130px);
      line-height: .92;
      margin-bottom: 24px;
    }

    .hero-title span {
      color: var(--red);
    }

    .hero-desc {
      font-size: 18px;
      line-height: 1.8;
      color: rgba(255,255,255,.72);
      max-width: 640px;
    }

    .content {
      padding: 80px;
    }

    .section {
      margin-bottom: 80px;
    }

    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 44px;
      margin-bottom: 16px;
      letter-spacing: 2px;
    }

    .section-title span {
      color: var(--red);
    }

    .section-text {
      max-width: 900px;
      line-height: 1.9;
      color: rgba(255,255,255,.72);
      font-size: 16px;
    }

    .cards {
      margin-top: 36px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 28px;
      transition: .3s ease;
    }

    .card:hover {
      transform: translateY(-6px);
      border-color: rgba(232,0,28,.5);
      box-shadow: 0 25px 60px rgba(0,0,0,.45);
    }

    .card-icon {
      font-size: 34px;
      margin-bottom: 16px;
    }

    .card-title {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .card-text {
      color: rgba(255,255,255,.65);
      line-height: 1.7;
      font-size: 14px;
    }

    .tech-stack {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
    }

    .tech {
      padding: 10px 18px;
      border-radius: 999px;
      background: rgba(255,255,255,.06);
      border: 1px solid var(--border);
      font-size: 13px;
      color: rgba(255,255,255,.8);
    }

    footer {
      padding: 40px 80px;
      border-top: 1px solid var(--border);
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
    }

    .footer-logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 24px;
      letter-spacing: 2px;
    }

    .footer-logo span {
      color: var(--red);
    }

    .footer-copy {
      color: rgba(255,255,255,.4);
      font-size: 13px;
    }

    @media(max-width: 768px) {
      nav,
      .hero,
      .content,
      footer {
        padding-left: 24px;
        padding-right: 24px;
      }

      .hero {
        min-height: 70vh;
      }

      .hero-title {
        font-size: 72px;
      }

      .nav-links {
        display: none;
      }
    }
