:root {
    --bg: #050505;
    --bg-alt: #0f1013;
    --bg-light: #f5f5f7;
    --text: #f9fafb;
    --text-muted: #a0a3b1;
    --accent: #ff4c60;
    --accent-soft: rgba(255, 76, 96, 0.11);
    --card-bg: #14151b;
    --border-subtle: rgba(255, 255, 255, 0.06);
    --transition-fast: 0.2s ease-out;
    --container-width: 1120px;
  }
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: radial-gradient(circle at top left, #181a20, #050509 55%);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
  }
  
  /* Utilities */
  
  .container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  .section {
    padding: 6rem 0;
  }
  
  .section-light {
    background: var(--bg-light);
    color: #111827;
  }
  
  .section-dark {
    background: #050509;
  }
  
  .section-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
  }
  
  .section-intro {
    max-width: 560px;
    margin-bottom: 2.5rem;
    color: var(--text-muted);
  }
  
  .grid {
    display: grid;
    gap: 2rem;
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    border: 1px solid transparent;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
    cursor: pointer;
  }
  
  .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
    background: #ff334b;
  }
  
  .btn-small {
    padding: 0.5rem 1.1rem;
    font-size: 0.85rem;
  }
  
  .btn-full {
    width: 100%;
  }
  
  .link {
    color: var(--text);
    font-weight: 500;
    text-decoration: none;
    position: relative;
  }
  
  .link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.15rem;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), #f97316);
    transform-origin: left;
    transform: scaleX(0);
    transition: transform var(--transition-fast);
  }
  
  .link:hover::after {
    transform: scaleX(1);
  }
  
  /* Header */
  
  .header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: linear-gradient(to bottom, rgba(5, 5, 9, 0.97), rgba(5, 5, 9, 0.8), transparent);
    backdrop-filter: blur(16px);
  }
  
  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 0;
  }
  
  .logo {
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    color: var(--text);
  }
  
  .logo span {
    color: var(--accent);
  }
  
  .nav {
    display: flex;
    align-items: center;
    gap: 1.75rem;
  }
  
  .nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
  }
  
  .nav a:hover {
    color: #fff;
  }
  
  /* Mobile nav toggle */
  
  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
  }
  
  .nav-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #e5e7eb;
  }
  
  /* Hero */
  
  .hero {
    padding: 5.5rem 0 5rem;
  }
  
  .hero-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
    align-items: center;
  }
  
  .hero-text h1 {
    font-size: clamp(2.4rem, 3.2vw, 3rem);
    line-height: 1.1;
    margin-bottom: 1.3rem;
  }
  
  .hero-text p {
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 1.75rem;
  }
  
  .hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
  }
  
  .hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
  }
  
  .hero-media {
    position: relative;
  }
  
  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    border: 1px solid var(--border-subtle);
    background: rgba(10, 10, 18, 0.9);
    margin-bottom: 0.9rem;
  }
  
  .hero-card {
    padding: 1.6rem 1.5rem;
    border-radius: 1.2rem;
    background: radial-gradient(circle at top, #1f2933, #050509 65%);
    border: 1px solid var(--border-subtle);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.7);
  }
  
  .hero-card h3 {
    margin: 0 0 0.4rem;
    font-size: 1.05rem;
  }
  
  .hero-card p {
    margin: 0;
    color: var(--text-muted);
  }
  
  /* Services */
  
  .services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  
  .card {
    background: var(--card-bg);
    border-radius: 1.1rem;
    padding: 1.5rem 1.4rem;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
  }
  
  .section-light .card {
    background: #ffffff;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.12);
    border-color: rgba(148, 163, 184, 0.28);
  }
  
  .card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-soft);
    box-shadow: 0 26px 55px rgba(0, 0, 0, 0.7);
  }
  
  .card h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
  }
  
  .card p {
    margin: 0 0 0.7rem;
    font-size: 0.9rem;
    color: var(--text-muted);
  }
  
  .card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
  }
  
  .card ul li {
    margin-bottom: 0.3rem;
  }
  
  /* Work */
  
  .work-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .work-card {
    padding: 1.5rem 1.4rem;
    border-radius: 1.1rem;
    background: linear-gradient(145deg, #111827, #020617);
    border: 1px solid var(--border-subtle);
  }
  
  .work-tag {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #9ca3af;
    margin-bottom: 0.4rem;
  }
  
  .work-card h3 {
    margin: 0 0 0.5rem;
  }
  
  .work-card p {
    margin: 0 0 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
  }
  
  .work-metric {
    font-size: 0.8rem;
    color: #e5e7eb;
  }
  
  /* About */
  
  .about-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: center;
  }
  
  .about-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
  }
  
  .stat {
    padding: 1.3rem 1.1rem;
    border-radius: 1rem;
    background: radial-gradient(circle at top, #1e293b, #020617);
    border: 1px solid var(--border-subtle);
  }
  
  .stat-number {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
  }
  
  .stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
  }
  
  /* Contact */
  
  .contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.1fr;
    gap: 3rem;
    align-items: flex-start;
  }
  
  .contact-meta {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
    color: #4b5563;
  }
  
  .contact-meta li {
    margin-bottom: 0.4rem;
  }
  
  .contact-form {
    background: #ffffff;
    border-radius: 1.2rem;
    padding: 1.8rem 1.5rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
    border: 1px solid rgba(148, 163, 184, 0.3);
  }
  
  .field-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.9rem;
  }
  
  .field-group label {
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
    color: #4b5563;
  }
  
  .field-group input,
  .field-group select,
  .field-group textarea {
    font-family: inherit;
    padding: 0.65rem 0.7rem;
    border-radius: 0.55rem;
    border: 1px solid #e5e7eb;
    font-size: 0.9rem;
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  }
  
  .field-group input:focus,
  .field-group select:focus,
  .field-group textarea:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.25);
  }
  
  /* Footer */
  
  .footer {
    padding: 1.8rem 0 2.2rem;
    background: #020617;
    color: #9ca3af;
    font-size: 0.8rem;
  }
  
  .footer-layout {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
  }
  
  /* Responsive */
  
  @media (max-width: 960px) {
    .hero-content {
      grid-template-columns: 1fr;
    }
  
    .services-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  
    .work-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  
    .about-grid {
      grid-template-columns: 1fr;
    }
  
    .about-stats {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  
    .contact-grid {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 720px) {
    .nav-toggle {
      display: flex;
    }
  
    .nav {
      position: fixed;
      inset: 3.4rem 1.2rem auto;
      background: #020617;
      border-radius: 1rem;
      border: 1px solid var(--border-subtle);
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.75);
      flex-direction: column;
      padding: 0.75rem 1rem;
      transform: translateY(-140%);
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--transition-fast), transform var(--transition-fast);
    }
  
    .nav.open {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }
  
    .nav a {
      padding: 0.4rem 0.1rem;
    }
  
    .hero {
      padding-top: 4.4rem;
    }
  
    .services-grid,
    .work-grid,
    .about-stats {
      grid-template-columns: 1fr;
    }

  }

  /* IT STARTED HERE */

 /* Text logo - FIXED spacing */
.logo .logo-text {
    display: inline-flex;
    align-items: baseline;
    font-weight: 700 !important;
    font-size: 1.2rem;
    line-height: 1.1;
    letter-spacing: -0.015em;  /* Perfect tight spacing, no overlap */
  }
  
  .logo .king {
    color: #ffffff !important;
  }
  
  .logo .lawrence {
    color: #ff4c60 !important;
    /* No negative margin */
  }
  
  .logo .dot {
    color: #ffffff !important;
    font-size: 1.35em;     /* Nice dot size */
    line-height: 0.9;      /* Perfect baseline alignment */
    margin-left: 0.02em;   /* Tiny positive space - NO OVERLAP */
  }
  
  /* Hover */
  .logo:hover .logo-text {
    transform: scale(1.05);
  }
  
  /* Mobile */
  @media (max-width: 720px) {
    .logo .logo-text {
      font-size: 1.1rem;
      letter-spacing: -0.01em;
    }
  }
  