  :root {
    /* Colors directly from PPTX */
    --bg:        #06060e;
    --bg2:       #09091a;
    --bg3:       #0d0d22;
    --blue-box:  #2233cc;   /* logo box blue */
    --neon-green:#39e600;   /* MUNSTER letter fill */
    --neon-pink: #ff1e8e;   /* letter shadow/outline */
    --neon-cyan: #00d4ff;   /* slide accents / PR slide */
    --neon-yellow:#ccff00;  /* WHO WE ARE / SERVICES titles */
    --neon-orange:#ff6600;  /* slide accent */
    --purple:    #8833ff;
    --text:      #eeeef8;
    --text-dim:  #6868a0;
    --font: 'Prompt', sans-serif;
    --glow-green: 0 0 18px rgba(57,230,0,0.7), 0 0 50px rgba(57,230,0,0.25);
    --glow-pink:  0 0 18px rgba(255,30,142,0.7), 0 0 50px rgba(255,30,142,0.25);
    --glow-cyan:  0 0 18px rgba(0,212,255,0.7), 0 0 50px rgba(0,212,255,0.25);
    --glow-yellow:0 0 18px rgba(204,255,0,0.7), 0 0 50px rgba(204,255,0,0.2);
  }

  *, *::before, *::after { box-sizing: border-box; margin:0; padding:0; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    overflow-x: hidden;
  }

  /* Fine grid overlay like the PPTX background */
  body::before {
    content: '';
    position: fixed; inset: 0;
    background-image:
      linear-gradient(rgba(0,212,255,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,212,255,0.025) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
  }

  /* Scanlines */
  body::after {
    content: '';
    position: fixed; inset: 0;
    background: repeating-linear-gradient(
      0deg, transparent, transparent 3px,
      rgba(0,0,0,0.04) 3px, rgba(0,0,0,0.04) 4px
    );
    pointer-events: none;
    z-index: 9999;
  }

  /* NAV */
  nav {
    position: fixed; top:0; left:0; right:0; z-index:200;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 56px;
    background: rgba(6,6,14,0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(57,230,0,0.12);
  }

  .nav-logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none;
  }

  /* Inline logo: SVG image */
  .nav-logo-img {
    height: 32px;
    width: auto;
    display: block;
  }

  .nav-links { display: flex; gap: 36px; list-style: none; }

  .nav-links a {
    font-size: 12px; font-weight: 500;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--text-dim); text-decoration: none;
    transition: color .25s, text-shadow .25s;
  }

  .nav-links a:hover { color: var(--neon-cyan); text-shadow: var(--glow-cyan); }

  /* HERO */
  #home {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    padding: 120px 60px 80px;
    overflow: hidden;
  }

  /* Hero Slider Styles */
  .hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
  }

  .hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.8s ease-in-out, transform 1.8s ease-in-out;
    transform: scale(1.08);
  }

  .hero-slide.active {
    opacity: 1;
    transform: scale(1);
  }

  .hero-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      radial-gradient(ellipse 55% 65% at 0% 15%,  rgba(0,160,80,0.3)  0%, transparent 55%),
      radial-gradient(ellipse 45% 55% at 10% 60%,  rgba(0,80,200,0.25)  0%, transparent 55%),
      radial-gradient(ellipse 60% 60% at 55% 10%,  rgba(20,60,200,0.3) 0%, transparent 55%),
      radial-gradient(ellipse 60% 70% at 100% 70%, rgba(130,0,220,0.3) 0%, transparent 55%),
      radial-gradient(ellipse 40% 40% at 80% 5%,   rgba(30,0,100,0.3)  0%, transparent 50%),
      rgba(6, 6, 14, 0.65);
  }

  .hero-content {
    position: relative; z-index: 2;
    display: flex; flex-direction: column; align-items: center;
    text-align: center;
    gap: 0;
  }

  .hero-eyebrow {
    font-size: 15px; font-weight: 400; letter-spacing: 0.06em;
    color: rgba(255,255,255,0.85);
    margin-bottom: 18px;
    text-shadow: 0 0 20px rgba(255,255,255,0.3);
  }

  /* The hero logo — SVG image */
  .hero-logo-img {
    width: clamp(280px, 50vw, 500px);
    height: auto;
    display: block;
    margin-bottom: 48px;
    filter: drop-shadow(0 0 40px rgba(34,51,204,0.6)) drop-shadow(0 0 80px rgba(34,51,204,0.2));
  }

  .hero-sub {
    font-size: 17px; font-weight: 300; line-height: 1.75;
    color: rgba(255,255,255,0.78);
    max-width: 560px; margin-bottom: 48px;
  }

  .hero-sub strong { color: var(--neon-cyan); font-weight: 600; }

  .btn-group { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

  .btn-primary {
    display: inline-block; padding: 14px 36px;
    background: var(--neon-pink);
    color: #fff; font-family: var(--font);
    font-size: 13px; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; text-decoration: none;
    box-shadow: var(--glow-pink);
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    transition: box-shadow .3s, transform .2s;
  }
  .btn-primary:hover { box-shadow: 0 0 35px rgba(255,30,142,.9), 0 0 70px rgba(255,30,142,.4); transform: translateY(-2px); }

  .btn-secondary {
    display: inline-block; padding: 13px 36px;
    border: 1.5px solid var(--neon-green); color: var(--neon-green);
    font-family: var(--font); font-size: 13px; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    transition: background .3s, box-shadow .3s;
  }
  .btn-secondary:hover { background: rgba(57,230,0,.1); box-shadow: var(--glow-green); }

  /* CLIENTS TICKER */
  .clients-ticker {
    position: relative; z-index: 1;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    overflow: hidden; padding: 18px 0;
  }
  .clients-track {
    display: flex; gap: 56px; animation: ticker 28s linear infinite; width: max-content;
  }
  .clients-track span {
    font-size: 11px; font-weight: 600; letter-spacing: 0.3em;
    color: var(--text-dim); text-transform: uppercase; white-space: nowrap; flex-shrink: 0;
  }
  .clients-track span.hi { color: var(--neon-cyan); }
  @keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

  /* SECTIONS */
  section { position: relative; z-index: 1; }
  .section-inner { max-width: 1200px; margin: 0 auto; padding: 100px 60px; }

  .section-label {
    font-size: 10px; font-weight: 600; letter-spacing: 0.4em;
    text-transform: uppercase; color: var(--neon-pink); margin-bottom: 16px;
    display: flex; align-items: center; gap: 12px;
  }
  .section-label::after {
    content: ''; display: block; width: 60px; height: 1px;
    background: linear-gradient(90deg, rgba(255,30,142,.5), transparent);
  }

  /* Section title uses YELLOW like "WHO WE ARE" in the PPT */
  .section-title {
    font-size: clamp(38px, 5.5vw, 64px);
    font-weight: 800; font-style: italic;
    line-height: 1.0; letter-spacing: -0.01em;
    margin-bottom: 28px; color: var(--neon-yellow);
    text-shadow: var(--glow-yellow);
  }
  .section-title .cyan  { color: var(--neon-cyan); text-shadow: var(--glow-cyan); }
  .section-title .green { color: var(--neon-green); text-shadow: var(--glow-green); }
  .section-title .white { color: #fff; text-shadow: none; font-style: normal; font-weight: 800; }

  /* BLOB */
  .blob { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; z-index: 0; animation: blobPulse 9s ease-in-out infinite; }
  @keyframes blobPulse { 0%,100%{opacity:.4;transform:scale(1)} 50%{opacity:.65;transform:scale(1.08)} }

  /* WHO WE ARE */
  #about {
  background-image: url('../img/bg_graphic_profile.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

/* Additional styling for #about background */
#about {
  position: relative;
  min-height: 600px;
  padding: 80px 0;
  display: flex;
  align-items: center;
}
#about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}
#about > * {
  position: relative;
  z-index: 1;
}

  .about-body { font-size: 16px; font-weight: 300; line-height: 1.95; color: rgba(255,255,255,0.72); }
  .about-body p { margin-bottom: 22px; }
  .about-body strong { color: #fff; font-weight: 600; }

  .about-visual { display: flex; align-items: center; justify-content: center; }

  /* Triangle from slide 2 — open neon triangle in cyan/pink */
  .tri-wrap { position: relative; width: 340px; height: 340px; }
  .tri-wrap svg { width: 100%; height: 100%; }

  /* SERVICES */
  #services { background: var(--bg); }

  /* Matches slide 3 — 2×2 icon grid with neon borders */
  .services-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; margin-top: 56px; }

  .service-card {
    padding: 46px 40px; background: var(--bg3);
    border: 1px solid rgba(255,255,255,0.05);
    position: relative; overflow: hidden;
    transition: background .35s;
  }

  /* Left accent bar colors matching PPT service card colors */
  .service-card::before {
    content: ''; position: absolute; top:0; left:0; width:3px; height:0;
    transition: height .4s;
  }
  .service-card.s1::before { background: var(--neon-yellow); box-shadow: var(--glow-yellow); }
  .service-card.s2::before { background: var(--neon-cyan);   box-shadow: var(--glow-cyan); }
  .service-card.s3::before { background: var(--neon-pink);   box-shadow: var(--glow-pink); }
  .service-card.s4::before { background: var(--neon-green);  box-shadow: var(--glow-green); }
  .service-card:hover { background: rgba(13,13,34,.95); }
  .service-card:hover::before { height: 100%; }

  .service-num { font-size: 10px; font-weight: 600; letter-spacing: 0.25em; color: var(--text-dim); margin-bottom: 18px; }
  .service-icon { font-size: 34px; margin-bottom: 18px; display: block; }

  .service-title { font-size: 20px; font-weight: 800; font-style: italic; margin-bottom: 6px; letter-spacing: 0.03em; }
  .service-card.s1 .service-title { color: var(--neon-yellow); text-shadow: var(--glow-yellow); }
  .service-card.s2 .service-title { color: var(--neon-cyan);   text-shadow: var(--glow-cyan); }
  .service-card.s3 .service-title { color: var(--neon-pink);   text-shadow: var(--glow-pink); }
  .service-card.s4 .service-title { color: var(--neon-green);  text-shadow: var(--glow-green); }

  .service-tagline { font-size: 11px; color: var(--text-dim); letter-spacing: 0.1em; margin-bottom: 22px; text-transform: uppercase; font-weight: 500; }

  .service-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
  .service-list li { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.65); padding-left: 16px; position: relative; line-height: 1.5; }
  .service-list li::before { content: '▸'; position: absolute; left:0; color: var(--text-dim); font-size: 10px; top: 2px; }

  /* PORTFOLIO */
  #work { background: var(--bg2); }

  .portfolio-tabs { display: flex; gap:0; margin-bottom:40px; border-bottom: 1px solid rgba(255,255,255,0.08); flex-wrap: wrap; }
  .tab-btn {
    padding: 13px 24px; background: none; border: none;
    font-family: var(--font); font-size: 11px; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--text-dim); cursor: pointer;
    border-bottom: 2px solid transparent; margin-bottom: -1px;
    transition: color .25s, border-color .25s; white-space: nowrap;
  }
  .tab-btn.active { color: var(--neon-cyan); border-bottom-color: var(--neon-cyan); }
  .tab-btn:hover:not(.active) { color: #fff; }

  .portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }

  .portfolio-item {
    position: relative; aspect-ratio: 4/3;
    background: var(--bg3); overflow: hidden; cursor: pointer;
    border: 1px solid rgba(255,255,255,0.05);
    transition: border-color .3s;
  }
  .portfolio-item:hover { border-color: rgba(0,212,255,0.3); }

  .portfolio-item-inner {
    width:100%; height:100%; display:flex; flex-direction:column;
    align-items:center; justify-content:center; padding:24px; text-align:center;
    transition: transform .4s;
  }
  .portfolio-item:hover .portfolio-item-inner { transform: scale(1.04); }

  .portfolio-emoji { font-size: 38px; margin-bottom: 12px; }
  .portfolio-name { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 5px; letter-spacing: 0.04em; }
  .portfolio-cat  { font-size: 10px; color: var(--text-dim); letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500; }

  .portfolio-overlay {
    position: absolute; inset:0;
    background: rgba(6,6,14,.92);
    display:flex; flex-direction:column; align-items:center; justify-content:center;
    padding: 24px; opacity:0; transition: opacity .3s;
  }
  .portfolio-item:hover .portfolio-overlay { opacity:1; }
  .portfolio-overlay-title { font-size:14px; font-weight:700; color:var(--neon-cyan); text-shadow:var(--glow-cyan); margin-bottom:8px; text-align:center; }
  .portfolio-overlay-desc  { font-size:12px; color:var(--text-dim); text-align:center; line-height:1.6; font-weight:300; }

  .tab-panel { display:none; }
  .tab-panel.active { display:block; }

  /* CONTACT */
  #contact { background: var(--bg); }

  .contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:start; }

  .contact-intro { font-size:16px; font-weight:300; line-height:1.85; color:rgba(255,255,255,0.65); margin-bottom:44px; }

  .contact-items { display:flex; flex-direction:column; gap:28px; }

  .contact-item { display:flex; align-items:flex-start; gap:18px; }
  .contact-icon {
    width:46px; height:46px; background: rgba(0,212,255,0.08);
    border: 1px solid rgba(0,212,255,0.25);
    display:flex; align-items:center; justify-content:center;
    font-size:18px; flex-shrink:0;
    clip-path: polygon(6px 0%,100% 0%,calc(100% - 6px) 100%,0% 100%);
  }
  .contact-text-label { font-size:10px; font-weight:600; letter-spacing:0.22em; color:var(--text-dim); text-transform:uppercase; margin-bottom:3px; }
  .contact-text-val { font-size:15px; font-weight:500; color:#fff; }
  .contact-text-val a { color:var(--neon-cyan); text-decoration:none; transition:text-shadow .25s; }
  .contact-text-val a:hover { text-shadow:var(--glow-cyan); }

  .contact-form { display:flex; flex-direction:column; gap:14px; }
  .form-group { display:flex; flex-direction:column; gap:7px; }
  .form-label { font-size:10px; font-weight:600; letter-spacing:0.22em; color:var(--text-dim); text-transform:uppercase; }
  .form-input, .form-textarea, .form-select {
    background: var(--bg3); border: 1px solid rgba(255,255,255,0.08);
    color: #fff; font-family: var(--font); font-size:15px; font-weight:300;
    padding: 13px 18px; outline: none; width:100%;
    clip-path: polygon(6px 0%,100% 0%,calc(100% - 6px) 100%,0% 100%);
    transition: border-color .3s, box-shadow .3s;
  }
  .form-input:focus, .form-textarea:focus, .form-select:focus {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 0 1px rgba(0,212,255,.3), inset 0 0 20px rgba(0,212,255,.03);
  }

  .form-textarea { resize:vertical; min-height:110px; }
  .form-select { appearance:none; cursor:pointer; }
  .form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }

  .btn-submit {
    padding:15px 40px; background:var(--neon-pink); border:none; color:#fff;
    font-family:var(--font); font-size:13px; font-weight:700; letter-spacing:0.18em;
    text-transform:uppercase; cursor:pointer;
    clip-path: polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%);
    box-shadow: var(--glow-pink);
    transition: box-shadow .3s, transform .2s;
    align-self: flex-start; margin-top:8px;
  }
  .btn-submit:hover { box-shadow: 0 0 40px rgba(255,30,142,.9), 0 0 80px rgba(255,30,142,.4); transform:translateY(-2px); }

  /* FOOTER */
  footer {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 36px 60px;
    display:flex; align-items:center; justify-content:space-between;
    position:relative; z-index:1;
  }
  .footer-logo-img {
    height: 28px;
    width: auto;
    display: block;
  }
  .footer-copy { font-size:10px; color:var(--text-dim); letter-spacing:0.15em; font-weight:400; }

  /* Hamburger Menu */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 201;
  }
  .hamburger span {
    width: 28px;
    height: 2px;
    background-color: var(--neon-cyan);
    transition: all 0.3s ease;
    box-shadow: var(--glow-cyan);
  }
  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--neon-pink);
    box-shadow: var(--glow-pink);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--neon-pink);
    box-shadow: var(--glow-pink);
  }

  /* Scrollbar */
  ::-webkit-scrollbar { width:3px; }
  ::-webkit-scrollbar-track { background:var(--bg); }
  ::-webkit-scrollbar-thumb { background:var(--neon-pink); }

  /* RESPONSIVE */
  @media(max-width:900px) {
    nav { padding:15px 20px; }
    .hamburger { display: flex; }
    .nav-links {
      position: fixed;
      top: 0; right: -100%;
      height: 100vh; width: 260px;
      background: rgba(6,6,14,0.95);
      backdrop-filter: blur(20px);
      flex-direction: column;
      padding-top: 100px; padding-left: 40px;
      transition: right 0.4s ease;
      border-left: 1px solid rgba(0,212,255,0.2);
      box-shadow: -10px 0 40px rgba(0,0,0,0.6);
    }
    .nav-links.active { right: 0; }
    .nav-links li { margin-bottom: 24px; }
    .nav-links a { font-size: 14px; }
    .section-inner { padding:70px 22px; }
    .hero-logo-img { width: 280px; }
    .about-grid, .contact-grid { grid-template-columns:1fr; gap:36px; }
    .services-grid { grid-template-columns:1fr; }
    .portfolio-grid { grid-template-columns:1fr; }
    footer { flex-direction:column; gap:10px; text-align:center; }
    .form-row { grid-template-columns:1fr; }
  }

  @media(max-width:430px) {
    .btn-group { justify-content: center; width: 100%; }
    .btn-primary, .btn-secondary { width: 100%; text-align: center; }
    .btn-submit { align-self: center; width: 100%; text-align: center; margin-top: 16px; }
    .hero-logo-img { width: 220px; }
    .section-title { font-size: 32px; }
  }

  /* Scroll fade-in */
  .fade-in { opacity:0; transform:translateY(28px); transition:opacity .6s ease, transform .6s ease; }
  .fade-in.visible { opacity:1; transform:translateY(0); }
