﻿:root {
        --background: 0 0% 100%;
        --foreground: 0 0% 5%;
        --primary: 0 0% 5%;
        --primary-foreground: 0 0% 100%;
        --secondary: 0 0% 96%;
        --muted-foreground: 0 0% 40%;
        --accent: 0 78% 50%;
        --accent-glow: 0 78% 55%;
        --border: 0 0% 88%;
        --surface-chess: 0 0% 12%;
        --radius: 0.25rem;
      }
      *,
      *::before,
      *::after {
        box-sizing: border-box;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        margin: 0;
        font-family: "Inter", system-ui, sans-serif;
        background: hsl(var(--background));
        color: hsl(var(--foreground));
        line-height: 1.5;
      }
      h1,
      h2,
      h3,
      .display {
        font-family: "Bebas Neue", sans-serif;
        font-weight: 400;
        letter-spacing: 0.02em;
        line-height: 1;
      }
      a {
        color: inherit;
        text-decoration: none;
      }
      .container {
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
      }
      .eyebrow {
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.3em;
        color: hsl(var(--accent));
        margin: 0 0 1rem;
      }
      .text-gradient {
        background: linear-gradient(
          135deg,
          hsl(var(--accent)),
          hsl(var(--accent-glow))
        );
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
      }
      .btn {
        display: inline-block;
        padding: 1rem 2rem;
        font-family: "Bebas Neue", sans-serif;
        font-size: 1.25rem;
        letter-spacing: 0.08em;
        text-align: center;
        transition: background 0.2s, border-color 0.2s, color 0.2s;
      }
      .btn-primary {
        background: hsl(var(--accent));
        color: hsl(var(--primary-foreground));
      }
      .btn-primary:hover {
        background: hsl(var(--accent) / 0.9);
      }
      .btn-outline {
        border: 1px solid hsl(var(--primary-foreground) / 0.3);
        color: hsl(var(--primary-foreground));
      }
      .btn-outline:hover {
        border-color: hsl(var(--accent));
        color: hsl(var(--accent));
      }

      /* Nav */
      .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 50;
        background: hsl(var(--primary) / 0.95);
        backdrop-filter: blur(12px);
        box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
      }
      .nav-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 78px;
      }
      .brand {
        font-family: "Bebas Neue", sans-serif;
        font-size: 1.75rem;
        letter-spacing: 0.08em;
        color: hsl(var(--primary-foreground));
      }
      .nav-links {
        display: none;
        gap: 2rem;
      }
      .nav-links a {
        font-size: 0.75rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: hsl(var(--primary-foreground) / 0.7);
      }
      .nav-links a:hover {
        color: hsl(var(--accent));
      }
      .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: none;
        border: none;
        color: hsl(var(--primary-foreground));
        cursor: pointer;
        padding: 0;
      }
      .nav-drawer {
        display: none;
        border-top: 1px solid hsl(var(--primary-foreground) / 0.1);
        background: hsl(var(--primary) / 0.98);
        backdrop-filter: blur(12px);
      }
      .nav-drawer a {
        display: block;
        padding: 0.75rem 0;
        font-size: 0.75rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: hsl(var(--primary-foreground) / 0.7);
        border-bottom: 1px solid hsl(var(--primary-foreground) / 0.06);
      }
      .nav-drawer a:hover {
        color: hsl(var(--accent));
      }
      #nav-open:checked ~ .nav .nav-drawer {
        display: block;
      }
      #nav-open:checked ~ .nav .icon-open {
        display: none;
      }
      #nav-open:checked ~ .nav .icon-close {
        display: block;
      }
      .icon-close {
        display: none;
      }
      @media (min-width: 768px) {
        .nav-links {
          display: flex;
        }
        .nav-toggle {
          display: none;
        }
        .nav-drawer {
          display: none !important;
        }
      }

      /* Hero */
      .hero {
        position: relative;
        min-height: 100vh;
        min-height: 100svh;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        background: hsl(var(--primary));
      }
      .hero-bg {
        position: absolute;
        inset: 0;
      }
      .hero-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.4;
      }
      .hero-bg::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to bottom,
          hsl(var(--primary) / 0.6),
          hsl(var(--primary) / 0.4) 40%,
          hsl(var(--primary))
        );
      }
      .hero-inner {
        position: relative;
        z-index: 2;
        text-align: center;
        padding: 6rem 1rem 4rem;
        color: hsl(var(--primary-foreground));
      }
      .hero h1 {
        margin: 0;
        font-size: clamp(3.5rem, 12vw, 9rem);
        letter-spacing: -0.02em;
      }
      .hero-lead {
        margin: 1.5rem auto 0;
        max-width: 56rem;
        font-size: clamp(1rem, 2.5vw, 1.25rem);
        font-weight: 300;
        color: hsl(var(--primary-foreground) / 0.7);
      }
      .hero-lead em {
        font-style: normal;
        font-weight: 600;
        color: hsl(var(--accent));
        font-size: clamp(1.1rem, 2.8vw, 1.5rem);
        border-bottom: 2px solid hsl(var(--accent) / 0.6);
      }
      .hero-cta {
        margin-top: 2.5rem;
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
      }
      .scroll-hint {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        opacity: 0.5;
        animation: bounce 2s infinite;
      }
      @keyframes bounce {
        0%,
        100% {
          transform: translate(-50%, 0);
        }
        50% {
          transform: translate(-50%, 6px);
        }
      }

      /* Sections */
      section {
        padding: 3.5rem 0;
      }
      @media (min-width: 768px) {
        section {
          padding: 5rem 0;
        }
      }
      .section-title {
        margin: 0;
        font-size: clamp(3rem, 8vw, 5.5rem);
      }
      .section-intro {
        margin-top: 1rem;
        max-width: 42rem;
        color: hsl(var(--muted-foreground));
        font-size: 1.125rem;
      }

      /* Approach */
      #approach {
        background: hsl(var(--background));
      }
      .phase-grid {
        margin-top: 3rem;
        display: grid;
        border: 1px solid hsl(var(--border));
      }
      @media (min-width: 768px) {
        .phase-grid {
          grid-template-columns: repeat(3, 1fr);
        }
      }
      .phase-card {
        padding: 2rem;
        border-bottom: 1px solid hsl(var(--border));
      }
      @media (min-width: 768px) {
        .phase-card {
          border-bottom: none;
          border-right: 1px solid hsl(var(--border));
        }
        .phase-card:last-child {
          border-right: none;
        }
      }
      .phase-card:nth-child(2) {
        background: hsl(var(--secondary) / 0.5);
      }
      .phase-num {
        font-family: "Bebas Neue", sans-serif;
        font-size: 3.75rem;
        color: hsl(var(--accent));
        line-height: 1;
      }
      .phase-time {
        font-size: 0.65rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: hsl(var(--muted-foreground));
      }
      .phase-card h3 {
        margin: 0.5rem 0 0.25rem;
        font-size: 1.75rem;
      }
      .phase-sub {
        font-size: 0.65rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: hsl(var(--accent));
        margin-bottom: 1rem;
      }
      .phase-desc {
        font-size: 0.875rem;
        color: hsl(var(--muted-foreground));
        margin-bottom: 1.25rem;
      }
      .phase-card ul {
        margin: 0;
        padding: 0;
        list-style: none;
      }
      .phase-card li {
        display: flex;
        gap: 0.5rem;
        font-size: 0.875rem;
        color: hsl(var(--foreground) / 0.8);
        margin-bottom: 0.5rem;
      }
      .phase-card li span {
        color: hsl(var(--accent));
        flex-shrink: 0;
      }

      /* Services */
      #services {
        position: relative;
        overflow: hidden;
        background: hsl(var(--primary));
        color: hsl(var(--primary-foreground));
      }
      .chess-deco {
        position: absolute;
        inset: 0;
        pointer-events: none;
        opacity: 0.04;
      }
      .chess-deco img {
        position: absolute;
        object-fit: contain;
      }
      .service-grid {
        position: relative;
        z-index: 2;
        margin-top: 2.5rem;
        display: grid;
        gap: 1.5rem;
      }
      @media (min-width: 640px) {
        .service-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }
      @media (min-width: 1024px) {
        .service-grid {
          grid-template-columns: repeat(3, 1fr);
        }
      }
      .service-card {
        border: 1px solid hsl(var(--accent) / 0.25);
        padding: 1.5rem;
        text-align: center;
        background: hsl(var(--primary) / 0.5);
      }
      .service-card img {
        height: 120px;
        width: auto;
        margin: 0 auto 1rem;
        object-fit: contain;
        filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.6));
      }
      .service-card h3 {
        margin: 0 0 0.35rem;
        font-size: 1.25rem;
        line-height: 1.15;
      }
      .service-tag {
        font-size: 0.65rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: hsl(var(--accent));
        font-weight: 600;
        margin-bottom: 0.5rem;
      }
      .service-desc {
        font-size: 0.75rem;
        color: hsl(var(--primary-foreground) / 0.55);
        line-height: 1.4;
      }
      .services-cta {
        margin-top: 2rem;
        text-align: center;
      }
      .services-cta .btn {
        border: 1px solid hsl(var(--accent));
        color: hsl(var(--accent));
        background: transparent;
      }
      .services-cta .btn:hover {
        background: hsl(var(--accent));
        color: hsl(var(--primary-foreground));
      }

      /* Clients */
      #clients {
        background: hsl(var(--background));
        overflow: hidden;
      }
      .client-grid {
        margin-top: 2rem;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 1rem;
      }
      @media (min-width: 640px) {
        .client-grid {
          grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        }
      }
      .client-cell {
        text-align: center;
      }
      .client-logo {
        height: 140px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        border: 2px solid hsl(var(--accent) / 0.3);
        padding: 1rem;
        box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.08);
      }
      .client-logo img {
        max-height: 5rem;
        max-width: 100%;
        object-fit: contain;
      }
      .client-cat {
        margin-top: 0.5rem;
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        font-weight: 600;
        color: hsl(var(--accent) / 0.9);
      }

      /* Results */
      #results {
        position: relative;
        background: hsl(var(--primary));
        color: hsl(var(--primary-foreground));
        overflow: hidden;
      }
      .result-block {
        border-top: 1px solid hsl(var(--muted-foreground) / 0.2);
      }
      .result-block:last-child {
        border-bottom: 1px solid hsl(var(--muted-foreground) / 0.2);
      }
      .result-inner {
        display: grid;
      }
      @media (min-width: 768px) {
        .result-inner {
          grid-template-columns: 200px 1fr;
        }
      }
      .result-industry {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 2rem 0.5rem;
        border-bottom: 1px solid hsl(var(--muted-foreground) / 0.2);
      }
      @media (min-width: 768px) {
        .result-industry {
          border-bottom: none;
          border-right: 1px solid hsl(var(--muted-foreground) / 0.2);
        }
      }
      .result-icon {
        font-size: 2.5rem;
        color: hsl(var(--accent));
      }
      .result-industry h3 {
        margin: 0;
        font-size: 1.75rem;
        letter-spacing: 0.04em;
      }
      .result-stats {
        display: flex;
        flex-wrap: wrap;
      }
      .result-stat {
        flex: 1 1 200px;
        padding: 2rem 1.5rem;
        border-bottom: 1px solid hsl(var(--muted-foreground) / 0.2);
      }
      @media (min-width: 768px) {
        .result-stat {
          border-bottom: none;
          border-right: 1px solid hsl(var(--muted-foreground) / 0.2);
        }
        .result-stat:last-child {
          border-right: none;
        }
      }
      .result-stat .num {
        font-family: "Bebas Neue", sans-serif;
        font-size: clamp(2.5rem, 5vw, 3.75rem);
        color: hsl(var(--accent));
        line-height: 1;
        display: block;
        margin-bottom: 0.75rem;
      }
      .result-stat p {
        margin: 0;
        font-size: 0.9rem;
        color: hsl(var(--primary-foreground) / 0.7);
        line-height: 1.6;
      }

      /* Contact */
      #contact {
        position: relative;
        color: hsl(var(--foreground));
        overflow: hidden;
      }
      .contact-bg {
        position: absolute;
        inset: 0;
      }
      .contact-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      .contact-bg::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to right,
          hsl(var(--background) / 0.95),
          hsl(var(--background) / 0.7) 45%,
          hsl(var(--background) / 0.2)
        );
      }
      .contact-bg::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to top,
          hsl(var(--background) / 0.6),
          transparent 40%,
          hsl(var(--background) / 0.4)
        );
      }
      .contact-accent-line {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(
          to right,
          transparent,
          hsl(var(--accent)),
          transparent
        );
        z-index: 2;
      }
      .contact-wrap {
        position: relative;
        z-index: 2;
        padding: 3.5rem 0;
      }
      @media (min-width: 768px) {
        .contact-wrap {
          padding: 5rem 0;
        }
      }
      .contact-grid {
        display: grid;
        gap: 2.5rem;
        align-items: start;
      }
      @media (min-width: 1024px) {
        .contact-grid {
          grid-template-columns: 1fr 1fr;
          gap: 2.5rem;
        }
      }
      .contact-head .bar {
        width: 2.5rem;
        height: 2px;
        background: hsl(var(--accent));
        margin-bottom: 0.75rem;
      }
      .contact-head h2 {
        margin: 0 0 1.5rem;
        font-size: clamp(3.5rem, 10vw, 8rem);
        line-height: 0.85;
      }
      .contact-head h2 span {
        position: relative;
        display: inline-block;
      }
      .contact-head h2 span::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -0.35rem;
        width: 100%;
        height: 4px;
        background: hsl(var(--accent));
      }
      .contact-head .blurb {
        max-width: 28rem;
        color: hsl(var(--muted-foreground));
        font-size: 1.125rem;
        line-height: 1.65;
      }
      .founder-card {
        display: flex;
        gap: 1.25rem;
        padding: 1.5rem;
        border: 1px solid hsl(var(--accent) / 0.3);
        background: hsl(var(--background) / 0.6);
        backdrop-filter: blur(8px);
        border-left: 4px solid hsl(var(--accent));
        margin-bottom: 1.25rem;
      }
      .founder-avatar {
        width: 3.5rem;
        height: 3.5rem;
        background: hsl(var(--accent));
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        padding: 0.35rem;
      }
      .founder-avatar img {
        max-height: 100%;
        object-fit: contain;
      }
      .founder-label {
        font-size: 0.65rem;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        color: hsl(var(--accent));
        margin-bottom: 0.25rem;
      }
      .founder-name {
        font-family: "Bebas Neue", sans-serif;
        font-size: 1.75rem;
        margin: 0;
      }
      .info-grid {
        display: grid;
        gap: 1rem;
      }
      @media (min-width: 640px) {
        .info-grid {
          grid-template-columns: 1fr 1fr;
        }
      }
      .info-card {
        padding: 1.25rem;
        border: 1px solid hsl(var(--border) / 0.5);
        background: hsl(var(--background) / 0.4);
        backdrop-filter: blur(8px);
        transition: border-color 0.2s, background 0.2s;
      }
      .info-card:hover {
        border-color: hsl(var(--accent) / 0.5);
        background: hsl(var(--background) / 0.6);
      }
      .info-card .icon {
        width: 2.5rem;
        height: 2.5rem;
        background: hsl(var(--secondary) / 0.8);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0.75rem;
      }
      .info-card:hover .icon {
        background: hsl(var(--accent) / 0.2);
      }
      .info-label {
        font-size: 0.65rem;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        color: hsl(var(--muted-foreground));
        margin-bottom: 0.25rem;
      }
      .info-card a {
        font-size: 0.875rem;
      }
      .info-card a:hover {
        color: hsl(var(--accent));
      }
      .linkedin-row {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1.25rem;
        border: 1px solid hsl(var(--border) / 0.5);
        background: hsl(var(--background) / 0.4);
        backdrop-filter: blur(8px);
        margin-top: 1rem;
      }
      .linkedin-row:hover {
        border-color: hsl(var(--accent) / 0.5);
      }
      .min-engage {
        position: relative;
        padding: 1.5rem;
        border: 1px solid hsl(var(--border) / 0.3);
        background: hsl(var(--background) / 0.5);
        backdrop-filter: blur(8px);
        margin-top: 1rem;
        overflow: hidden;
      }
      .min-engage::before {
        content: "";
        position: absolute;
        top: -2rem;
        right: -2rem;
        width: 5rem;
        height: 5rem;
        background: hsl(var(--accent) / 0.05);
        transform: rotate(45deg);
      }
      .min-engage-inner {
        display: flex;
        gap: 1rem;
        position: relative;
      }
      .min-num {
        font-family: "Bebas Neue", sans-serif;
        font-size: 2rem;
        color: hsl(var(--accent));
        line-height: 1;
      }
      .min-engage h4 {
        margin: 0 0 0.25rem;
        font-family: "Bebas Neue", sans-serif;
        font-size: 1.25rem;
        letter-spacing: 0.04em;
      }
      .min-engage p {
        margin: 0;
        font-size: 0.875rem;
        color: hsl(var(--muted-foreground));
        line-height: 1.6;
      }
      .contact-bottom-line {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(
          to right,
          transparent,
          hsl(var(--accent) / 0.5),
          transparent
        );
        z-index: 2;
      }

      /* Footer */
      footer {
        background: hsl(var(--foreground));
        color: hsl(var(--background));
        padding: 2rem 0;
      }
      .foot-top {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        text-align: center;
      }
      @media (min-width: 768px) {
        .foot-top {
          flex-direction: row;
          justify-content: space-between;
          text-align: left;
        }
      }
      .foot-brand {
        font-family: "Bebas Neue", sans-serif;
        font-size: 1.75rem;
        letter-spacing: 0.08em;
        margin: 0;
      }
      .foot-tag {
        font-size: 0.875rem;
        opacity: 0.5;
        margin: 0.25rem 0 0;
      }
      .foot-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        justify-content: center;
      }
      .foot-links a {
        font-size: 0.65rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        opacity: 0.5;
      }
      .foot-links a:hover {
        opacity: 1;
        color: hsl(var(--accent));
      }
      .foot-bottom {
        margin-top: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid hsl(var(--background) / 0.1);
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        text-align: center;
        font-size: 0.7rem;
        opacity: 0.35;
      }
      @media (min-width: 768px) {
        .foot-bottom {
          flex-direction: row;
          justify-content: space-between;
        }
      }

      .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        border: 0;
      }
