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

    body {
      font-family: var(--font-noto);
      background: #fff;
      color: #1a2340;
      line-height: 1.5;
    }

    .text-gold {
      color: #c9a84c;
    }

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

/* Base nav container */
.site-nav {
  background: #1a2d4a;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(84, 64, 64, 0.25);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 68px;
  width: auto;
  object-fit: contain;
  display: block;
  border-radius: 2px;
  transition: opacity 0.2s ease;
}

.nav-logo img:hover {
  opacity: 0.85;
}

/* Desktop navigation links */
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
}

.nav-links li {
  display: inline-block;
}

.nav-links a {
  color: #ffffff;
  font-size: 14px;
  font-family: var(--font-noto);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.2s ease;
  position: relative;
}

/* Hover state — gold */
.nav-links a:hover {
  color: #c9a84c;
}

/* Active state — gold with subtle underline */
.nav-links a.active {
  color: #c9a84c;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #c9a84c;
  border-radius: 2px;
}

/* Work with me button */
.nav-work-btn {
  background: none;
  border: 1.5px solid #c9a84c;
  color: #c9a84c;
  font-size: 13px;
  padding: 8px 24px;
  border-radius: 40px;
  font-family: var(--font-noto);
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  min-width: 135px;
  text-align: center;
}

.nav-work-btn:hover {
  background: rgba(201, 168, 76, 0.12);
  color: #e2bc5e;
  border-color: #e2bc5e;
  transform: translateY(-1px);
}

/* Mobile menu toggle (hidden on desktop) */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: #ffffff;
  margin: 5px 0;
  transition: 0.2s;
  border-radius: 2px;
}

.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Responsive styles */
@media (max-width: 900px) {
  .nav-container {
    padding: 0 24px;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 12px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 8px 0;
  }

  .nav-work-btn {
    margin-top: 4px;
    text-align: center;
    width: auto;
    display: inline-block;
  }
}

/* For very small screens */
@media (max-width: 480px) {
  .nav-container {
    padding: 0 20px;
  }
}

    /* ----- HERO SECTION ----- */
    .hero-built {
      background: #fefaf5;
      border-bottom: 1px solid #f0e7dc;
    }

    .hero-built-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 80px 48px 64px;
      text-align: center;
    }

    .hero-label {
      color: #c9a84c;
      font-size: 10px;
      letter-spacing: 0.18em;
      font-family: var(--font-noto);
      margin-bottom: 18px;
      text-transform: uppercase;
    }

    .hero-built h1 {
      font-size: 48px;
      font-weight: 700;
      color: #1a2d4a;
      line-height: 1.2;
      margin-bottom: 24px;
    }

    .hero-built p {
      font-size: 18px;
      font-family: var(--font-noto);
      color: #4a6080;
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* ----- SECTION STYLES ----- */
    .section {
      padding: 70px 0;
      border-bottom: 1px solid #eef2f7;
    }

    .section:last-child {
      border-bottom: none;
    }

    .section-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .section-tag {
      font-size: 12px;
      letter-spacing: 0.2em;
      font-family: var(--font-noto);
      color: #c9a84c;
      margin-bottom: 12px;
      text-transform: uppercase;
    }

    .section-header h2 {
      font-size: 32px;
      font-weight: 700;
      color: #1a2d4a;
    }

    /* Card grid with automatic centering for 2 or fewer items */
    .card-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    /* When there's exactly 2 cards, center them beautifully */
    .card-grid:has(.project-card:nth-child(2):last-child) {
      grid-template-columns: repeat(2, 1fr);
      max-width: 760px;
      margin: 0 auto;
    }

    /* When there's exactly 1 card */
    .card-grid:has(.project-card:only-child) {
      grid-template-columns: 1fr;
      max-width: 420px;
      margin: 0 auto;
    }

    .project-card {
      background: #ffffff;
      border-radius: 20px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
      overflow: hidden;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      border: 1px solid #f0e7dc;
      display: flex;
      flex-direction: column;
    }

    .project-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
    }

    .card-image {
      height: 180px;
      background: #e6ddcf;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-noto);
      color: #7a6e5a;
      font-size: 13px;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    .card-image-potential {
      background-color: #ffffff;
      background-size: 92% auto;
      background-position: center;
    }

    .card-image-health {
      background-color: #0a103b;
      background-size: cover;
      background-position: center top;
    }

    .card-image-high-performing {
      background-color: #ffffff;
      background-size: 94% auto;
      background-position: center;
    }


    .card-content {
      padding: 22px;
      flex: 1;
    }

    .card-badge {
      display: inline-block;
      background: #c9a84c;
      color: #1a2d4a;
      font-size: 9px;
      font-weight: 700;
      font-family: var(--font-noto);
      padding: 3px 12px;
      border-radius: 20px;
      letter-spacing: 0.06em;
      margin-bottom: 12px;
    }

    .card-badge.patent {
      background: #1a2d4a;
      color: #c9a84c;
    }

    .card-badge.live {
      background: #2a6b47;
      color: white;
    }

    .card-badge.mvp {
      background: #c97e2a;
      color: white;
    }

    .card-badge.remote {
      background: #1a4a6b;
      color: white;
    }

    .card-content h3 {
      font-size: 19px;
      font-weight: 700;
      color: #1a2d4a;
      margin-bottom: 10px;
    }

    .card-content .subtitle {
      font-size: 12px;
      font-family: var(--font-noto);
      color: #c9a84c;
      margin-bottom: 12px;
      font-weight: 600;
    }

    .card-content p {
      font-size: 14px;
      font-family: var(--font-noto);
      color: #4a6080;
      line-height: 1.65;
      margin-bottom: 16px;
    }


    .btn-outline-small {
      display: inline-block;
      margin-top: 16px;
      font-size: 12px;
      font-family: var(--font-noto);
      color: #c9a84c;
      text-decoration: none;
      font-weight: 600;
      border-bottom: 1px solid #c9a84c;
      padding-bottom: 2px;
    }

    .full-width-cta {
      text-align: center;
      margin-top: 40px;
    }

    .full-width-cta a {
      font-size: 14px;
      font-family: var(--font-noto);
      color: #c9a84c;
      text-decoration: none;
      font-weight: 700;
      border-bottom: 2px solid #c9a84c;
      padding-bottom: 3px;
    }

    /* Special layout for Voice Biometrics (image + text, no overlay text) */
    .feature-split {
      display: flex;
      gap: 48px;
      align-items: center;
      background: #ffffff;
      border-radius: 24px;
      border: 1px solid #f0e7dc;
      overflow: hidden;
      margin-top: 20px;
    }

    .feature-image {
      flex: 1;
      min-height: 320px;
      background: #e6ddcf;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    .feature-content {
      flex: 1;
      padding: 32px 32px 32px 0;
    }

    .feature-content .card-badge {
      margin-bottom: 16px;
    }

    .feature-content h3 {
      font-size: 26px;
      font-weight: 700;
      color: #1a2d4a;
      margin-bottom: 12px;
    }

    .feature-content .subtitle {
      font-size: 13px;
      font-family: var(--font-noto);
      color: #c9a84c;
      margin-bottom: 18px;
      font-weight: 600;
    }

    .feature-content p {
      font-size: 16px;
      font-family: var(--font-noto);
      color: #4a6080;
      line-height: 1.7;
      margin-bottom: 24px;
    }

    /* Quote footer */
    .quote-footer {
      background: #f7f5f0;
      text-align: center;
      padding: 56px 48px;
    }

    .quote-footer p {
      font-size: 20px;
      font-style: italic;
      font-family: var(--font-noto);
      color: #1a2d4a;
      max-width: 800px;
      margin: 0 auto 16px;
    }

    .quote-footer span {
      color: #c9a84c;
      font-style: normal;
      font-weight: 600;
    }

    /* FOOTER */
.footer-cta{background:#1a2d4a;}
.footer-inner{max-width:1100px;margin:0 auto;padding:80px;text-align:center;}
.footer-h2{color:#fff;font-size:34px;font-weight:700;margin-bottom:12px;}
.footer-sub{color:#8a9bb5;font-size:15px;font-family:Arial,sans-serif;margin-bottom:32px;max-width:560px;margin-left:auto;margin-right:auto;line-height:1.8;}

.btn-gold {
  background: #c9a84c;
  color: #1a2d4a;
  font-size: 13px;
  padding: 16px 36px;
  border: none;
  border-radius: 3px;
  font-family: Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 16px;
}

.btn-gold:hover {
  background: #b89432;
  transform: translateY(-2px);
}

.footer-bottom{border-top:1px solid #253e60;margin-top:48px;padding-top:28px;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:24px;}

.footer-left {
  text-align: left;
}

.footer-copy{color:#4a6080;font-size:12px;font-family:Arial,sans-serif;margin-bottom:12px;}
.footer-links{display:flex;gap:24px;flex-wrap:wrap;}
.footer-links a{color:#4a6080;font-size:12px;font-family:Arial,sans-serif;text-decoration:none;transition:color 0.2s ease;}
.footer-links a:hover{color:#c8d8e8;}

.footer-social {
  text-align: right;
}

.social-label {
  color:#4a6080;
  font-size:11px;
  font-family:Arial,sans-serif;
  letter-spacing:0.1em;
  margin-bottom:12px;
  display:block;
  text-transform:uppercase;
}

.social-icons {
  display:flex;
  gap:16px;
  justify-content:flex-end;
}

.footer-social-link {
  width:36px;
  height:36px;
  background:rgba(255,255,255,0.05);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:all 0.2s ease;
}

.footer-social-link svg {
  width:18px;
  height:18px;
  stroke:#8a9bb5;
  stroke-width:1.5;
  fill:none;
}

.footer-social-link:hover {
  background:#c9a84c;
  transform:translateY(-2px);
}

.footer-social-link:hover svg {
  stroke:#1a2d4a;
}

    @media (max-width: 900px) {
      .container {
        padding: 0 24px;
      }
      .hero-built-inner {
        padding: 48px 24px;
      }
      .hero-built h1 {
        font-size: 36px;
      }
      .card-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
      }
      .card-grid:has(.project-card:nth-child(2):last-child) {
        grid-template-columns: 1fr;
        max-width: 420px;
      }
      .feature-split {
        flex-direction: column;
      }
      .feature-content {
        padding: 24px;
      }
      .feature-image {
        width: 100%;
        min-height: 220px;
      }
      .section {
        padding: 50px 0;
      }
      .footer-inner {
        padding: 48px 24px;
      }
      .nav-inner {
        padding: 0 24px;
        justify-content: center;
      }
    }

    /* WHAT I'VE BUILT RESPONSIVE DESIGN */
    @media (max-width: 1100px) {
      .nav-container,
      .container,
      .hero-built-inner,
      .footer-inner {
        padding-left: 48px;
        padding-right: 48px;
      }

      .nav-links {
        gap: 20px;
      }

      .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 900px) {
      body {
        overflow-x: hidden;
      }

      .nav-container {
        justify-content: space-between;
        padding: 14px 28px;
        gap: 0;
      }

      .nav-logo {
        justify-content: flex-start;
        width: auto;
      }

      .nav-logo img {
        height: 50px;
      }

      .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 42px;
        height: 42px;
        padding: 8px;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 6px;
        flex-shrink: 0;
      }

      .mobile-menu-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: #ffffff;
        margin: 3px 0;
        border-radius: 2px;
        transform-origin: center;
      }

      .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        padding: 16px 0 4px;
        margin-top: 14px;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
      }

      .nav-toggle:checked ~ .nav-links {
        display: flex;
      }

      .nav-toggle:checked + .mobile-menu-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
      }

      .nav-toggle:checked + .mobile-menu-toggle span:nth-child(2) {
        opacity: 0;
      }

      .nav-toggle:checked + .mobile-menu-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
      }

      .nav-links li {
        width: 100%;
      }

      .nav-links a {
        width: 100%;
        padding: 11px 0;
        font-size: 13px;
      }

      .nav-work-btn {
        min-width: 0;
        margin-top: 8px;
        padding: 10px 18px;
        width: fit-content;
      }

      .hero-built-inner {
        padding: 64px 48px 56px;
      }

      .hero-built h1 {
        font-size: 40px;
      }

      .hero-built p {
        font-size: 16px;
      }

      .section {
        padding: 56px 0;
      }

      .section-header {
        margin-bottom: 36px;
      }

      .section-header h2 {
        font-size: 30px;
      }

      .feature-split {
        flex-direction: column;
        gap: 0;
        border-radius: 18px;
      }

      .feature-image {
        width: 100%;
        min-height: 280px;
      }

      .feature-content {
        width: 100%;
        padding: 28px;
      }

      .feature-content h3 {
        font-size: 24px;
      }

      .card-grid,
      .card-grid:has(.project-card:nth-child(2):last-child),
      .card-grid:has(.project-card:only-child) {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
      }

      .card-image {
        height: 220px;
      }

      .quote-footer {
        padding: 48px;
      }

      .footer-inner {
        padding: 64px 48px 36px;
      }

      .footer-bottom {
        flex-direction: column;
        justify-content: center;
        text-align: center;
      }

      .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px 20px;
      }
    }

    @media (max-width: 640px) {
      .nav-container,
      .container,
      .hero-built-inner,
      .footer-inner {
        padding-left: 24px;
        padding-right: 24px;
      }

      .nav-container {
        padding-top: 12px;
        padding-bottom: 12px;
      }

      .nav-links a {
        font-size: 12px;
      }

      .nav-work-btn {
        padding: 9px 14px;
      }

      .hero-built-inner {
        padding-top: 52px;
        padding-bottom: 48px;
      }

      .hero-label,
      .section-tag {
        line-height: 1.5;
      }

      .hero-built h1 {
        font-size: 34px;
      }

      .hero-built p,
      .feature-content p,
      .card-content p,
      .footer-sub {
        font-size: 15px;
      }

      .section {
        padding: 48px 0;
      }

      .section-header h2,
      .footer-h2 {
        font-size: 26px;
      }

      .feature-image {
        min-height: 220px;
      }

      .feature-content {
        padding: 24px 20px;
      }

      .feature-content h3 {
        font-size: 22px;
      }

      .project-card {
        border-radius: 16px;
      }

      .card-image {
        height: 200px;
      }

      .card-content {
        padding: 20px;
      }

      .card-content h3 {
        font-size: 18px;
      }

      .stat-chip {
        max-width: 100%;
        overflow-wrap: anywhere;
      }

      .quote-footer {
        padding: 42px 24px;
      }

      .quote-footer p {
        font-size: 18px;
        line-height: 1.55;
      }

      .btn-gold {
        width: 100%;
      }

      .footer-links {
        flex-direction: column;
        gap: 10px;
      }
    }

    @media (max-width: 420px) {
      .nav-container,
      .container,
      .hero-built-inner,
      .footer-inner {
        padding-left: 18px;
        padding-right: 18px;
      }

      .hero-built h1 {
        font-size: 31px;
      }

      .feature-image,
      .card-image {
        min-height: 190px;
        height: 190px;
      }

      .feature-content,
      .card-content {
        padding: 18px;
      }
    }

/* Shared mobile nav polish */
.nav-icon {
  display: none;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .nav-links {
    border-top: 0 !important;
    padding: 16px 0 8px !important;
  }

  .nav-links a {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    width: 100%;
  }

  .nav-links a.active::after {
    display: none !important;
  }

  .nav-icon {
    display: inline-block;
  }

  .nav-work-btn {
    justify-content: center !important;
    min-width: 0;
    margin: 18px auto 0 !important;
    padding: 12px 22px !important;
    width: min(100%, 360px) !important;
    text-align: center;
  }
}
