<!-- Futura font: provide your own files in /fonts or change paths -->
  <style>
    @font-face {
      font-family: "Futura";
      src:
        url("../fonts/Futura.woff2") format("woff2"),
        url("../fonts/Futura.woff") format("woff");
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }

    :root {
      /* Dark burgundy + warm gold palette (Quadrant style) */
      --bg-main: #230000;
      --bg-alt:  #32000c;
      --bg-soft: #1b0000;

      --accent:        #f4c46f;
      --accent-soft:   rgba(244, 196, 111, 0.18);
      --accent-strong: #ffd884;

      --border-subtle: #3a1510;
      --text-main:     #fff5de;
      --text-muted:    #d7bfa0;

      --radius-md: 12px;
      --radius-lg: 18px;
      --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.6);
      --max-width: 1180px;
      --transition-fast: 0.18s ease-out;
    }

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

    body {
      font-family: "Futura", system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", sans-serif;
      background: radial-gradient(circle at top, var(--bg-alt) 0, var(--bg-main) 55%);
      color: var(--text-main);
      -webkit-font-smoothing: antialiased;
      line-height: 1.6;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .page {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    .wrapper {
      width: 100%;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    section {
      padding: 4rem 0;
    }

    @media (min-width: 960px) {
      section {
        padding: 5rem 0;
      }
    }

    /* ===== HEADER / NAV ===== */

    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 30;
      backdrop-filter: blur(14px);
      background: linear-gradient(
        to bottom,
        rgba(35, 0, 0, 0.96),
        rgba(35, 0, 0, 0.9),
        transparent
      );
      border-bottom: 1px solid var(--border-subtle);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.9rem 0;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.7rem;
    }

    .logo-mark {
      width: 34px;
      height: 34px;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 20%, #ffe5ac, var(--accent) 60%, #5b2b14);
      border: 1px solid rgba(244, 196, 111, 0.65);
      box-shadow: 0 0 35px rgba(244, 196, 111, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      font-weight: 700;
      color: #3a1510;
    }

    .logo-text {
      display: flex;
      flex-direction: column;
      font-size: 0.9rem;
    }

    .logo-text span:first-child {
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-weight: 600;
    }

    .logo-text span:last-child {
      font-size: 0.78rem;
      color: var(--text-muted);
    }

    .nav-links {
      display: none;
      align-items: center;
      gap: 1.6rem;
      font-size: 0.9rem;
      font-weight: 600;
    }

    .nav-links a {
      color: var(--text-muted);
      position: relative;
      padding-bottom: 0.2rem;
    }

    .nav-links a:hover {
      color: var(--text-main);
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      height: 2px;
      width: 0;
      border-radius: 999px;
      background: linear-gradient(to right, var(--accent), var(--accent-strong));
      transition: width var(--transition-fast);
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-cta {
      display: none;
      align-items: center;
      gap: 0.7rem;
    }

    .btn {
      border-radius: 999px;
      padding: 0.45rem 1.1rem;
      border: 1px solid transparent;
      background: transparent;
      cursor: pointer;
      font-size: 0.9rem;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      color: var(--text-main);
      transition: all var(--transition-fast);
      white-space: nowrap;
    }

    .btn-primary {
      background: linear-gradient(
        to right,
        var(--accent),
        var(--accent-strong)
      );
      color: #3a1510;
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.55);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      filter: brightness(1.05);
    }

    .btn-ghost {
      border-color: var(--border-subtle);
      background: rgba(27, 0, 0, 0.9);
      color: var(--text-muted);
    }

    .btn-ghost:hover {
      border-color: var(--accent);
      color: var(--text-main);
    }

    .hamburger {
      display: flex;
      flex-direction: column;
      gap: 4px;
      cursor: pointer;
      padding: 0.35rem;
      background: transparent;   /* NEW: no white background */
      border: none;              /* NEW: remove default button border */

    }

    .hamburger span {
      width: 20px;
      height: 2px;
      border-radius: 999px;
      background: #fff5de;
    }

    .mobile-menu {
      display: none;
      flex-direction: column;
      gap: 0.7rem;
      padding: 0.6rem 0 1rem;
      font-size: 0.92rem;
      background: linear-gradient(      /* NEW: burgundy background */
        to bottom,
        rgba(35, 0, 0, 0.97),
        rgba(35, 0, 0, 0.96)
      );
      border-top: 1px solid var(--border-subtle);
    }

    .mobile-menu.open {
      display: flex;
    }

    .mobile-menu a {
      color: var(--text-muted);
      font-weight: 600;
    }

    .mobile-menu a:hover {
      color: var(--text-main);
    }

    @media (min-width: 900px) {
      .hamburger {
        display: none;
      }
      .nav-links {
        display: flex;
      }
      .nav-cta {
        display: flex;
      }
    }

/* ===== HERO SLIDER (AR/VR vs CONSULTING) ===== */

.hero {
  padding-top: 6rem;           /* space for fixed header */
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  color: var(--text-main);
}

.hero-slider {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background-position: center top; /* show more of the top (pistons/head) */
  background-size: cover;
  background-attachment: scroll;  /* no fixed parallax (less distortion) */
}

/* Dark overlay over the images */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(0, 0, 0, 0.25), transparent 60%),
    linear-gradient(to bottom, rgba(35, 0, 0, 0.65), rgba(35, 0, 0, 0.78));
  pointer-events: none;
  z-index: 0;
}

/* Base background behavior */
.hero-slider {
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

/* Two different background images */
.hero--arvr {
  background-image: url("../images/hero-arvr.jpg");         /* AR/VR image */
}

.hero--consulting {
  background-image: url("../images/hero-consulting.jpg");   /* Consulting image */
}

.hero-tabs {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.6rem;
}

.hero-tab {
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--border-subtle);
  background: rgba(27, 0, 0, 0.9);
  color: var(--text-muted);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.hero-tab.active {
  border-color: var(--accent);
  color: var(--text-main);
  background: rgba(27, 0, 0, 0.98);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 46rem;
}

/* Show only the active pane */
.hero-pane {
  display: none;
}

.hero-pane--active {
  display: block;
}

.hero-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-strong);
  margin-bottom: 0.6rem;
}

.hero-title {
  font-size: 2.2rem;
  line-height: 1.15;
  letter-spacing: -0.05em;
  margin-bottom: 0.55rem;
}

@media (min-width: 960px) {
  .hero-title {
    font-size: 2.8rem;
  }
}

.hero-title .highlight {
  background: linear-gradient(
    to right,
    var(--accent),
    var(--accent-strong),
    #ffe5ac
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 38rem;
  margin-bottom: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

@media (max-width: 959px) {
  .hero-slider {
    min-height: 65vh;
    align-items: flex-start;
  }
  .hero {
    padding-top: 5.5rem;
    padding-bottom: 4rem;
  }
}


    /* ===== SECTION BASICS ===== */

    .section-label {
      font-size: 0.82rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--text-muted);
      margin-bottom: 0.4rem;
    }

    .section-heading {
      font-size: 1.8rem;
      letter-spacing: -0.04em;
      margin-bottom: 0.5rem;
    }

    .section-subtitle {
      font-size: 0.95rem;
      color: var(--text-muted);
      max-width: 32rem;
      margin-bottom: 1.7rem;
    }

    /* ===== GENERIC CARD STYLES ===== */

    .card {
      border-radius: var(--radius-md);
      background: linear-gradient(
        to bottom right,
        rgba(27, 0, 0, 0.98),
        rgba(27, 0, 0, 0.94)
      );
      border: 1px solid var(--border-subtle);
      padding: 1.1rem 1.05rem;
      box-shadow: 0 14px 35px rgba(0, 0, 0, 0.55);
      position: relative;
      overflow: hidden;
    }

    .card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top left, var(--accent-soft), transparent 60%);
      opacity: 0;
      transition: opacity var(--transition-fast);
      pointer-events: none;
    }

    .card:hover::before {
      opacity: 1;
    }

    .card-tag {
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: #fde9b5;
      margin-bottom: 0.3rem;
    }

    .card h3 {
      font-size: 1.05rem;
      margin-bottom: 0.35rem;
    }

    .card p {
      font-size: 0.88rem;
      color: var(--text-muted);
      margin-bottom: 0.5rem;
    }

    .card ul {
      list-style: none;
      font-size: 0.84rem;
      color: var(--text-muted);
      display: grid;
      gap: 0.2rem;
    }

    .card ul li::before {
      content: "•";
      color: var(--accent-strong);
      margin-right: 0.32rem;
    }

    /* ===== AR/VR SECTION with IMAGE ===== */

    .section-with-image {
      display: grid;
      gap: 1.8rem;
      align-items: center;
    }

    @media (min-width: 960px) {
      .section-with-image {
        grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
      }
    }

    .section-text {
      min-width: 0;
    }

    .section-image {
      margin: 0;
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid var(--border-subtle);
      background: #000;
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
    }

    .section-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }


/* ===== AR/VR CARDS + BENEFITS ===== */

.ar-cards-grid {
  display: grid;
  gap: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 1.8rem;
}

@media (min-width: 900px) {
  .ar-cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.ar-card {
  border-radius: var(--radius-md);
  background: rgba(27, 0, 0, 0.98);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
}

.ar-card-media {
  height: 160px;
  background: #000;
  overflow: hidden;
}

.ar-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ar-card-body {
  padding: 0.9rem 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.ar-card-body h3 {
  font-size: 1rem;
}

.ar-card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Benefits list under cards */

.ar-benefits {
  margin-top: 0.5rem;
}

.ar-benefits-title {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.ar-benefits-list {
  list-style: none;
  display: grid;
  gap: 0.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 40rem;
}

.ar-benefits-list li::before {
  content: "▹";
  color: var(--accent-strong);
  margin-right: 0.3rem;
}

/* ===== AR/VR APPROACH STEPS ===== */

.ar-approach {
  margin-top: 1.8rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* NEW: limit width to match benefits */
.ar-approach-inner {
  max-width: none;      /* same as .ar-benefits-list */
}

.ar-approach-heading {
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.2rem;
}

.ar-approach-subtitle {
  margin-bottom: 0.9rem;
}

/* steps layout */

.ar-steps-grid {
  display: grid;
  gap: 1.0rem;
  margin-top: 0.4rem;
}

@media (min-width: 720px) {
  .ar-steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .ar-steps-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* each step: no big dark card, just icon + text */

.ar-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.4rem 0.2rem;
  background: transparent;
  border: none;
  box-shadow: none;
}

.ar-step-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 20%, #ffe5ac, var(--accent));
  color: #3a1510;
  font-weight: 700;
  font-size: 0.86rem;
  box-shadow: 0 0 14px rgba(244, 196, 111, 0.4);
}

.ar-step-text h4 {
  font-size: 0.88rem;
  margin-bottom: 0.1rem;
}

.ar-step-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
}


    /* ===== CONSULTING SECTION (also with image) ===== */

    .two-col {
      display: grid;
      gap: 1.8rem;
      align-items: start;
    }

    @media (min-width: 960px) {
      .two-col {
        grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.5fr);
      }
    }

    /* ===== INDUSTRIES ===== */

    .industries-grid {
      display: grid;
      gap: 1.2rem;
    }

    @media (min-width: 900px) {
      .industries-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    .industry-card h3 {
      font-size: 0.98rem;
      margin-bottom: 0.3rem;
    }

    /* ===== RESOURCES / BLOG ===== */

    .resources-grid {
      display: grid;
      gap: 1.2rem;
    }

    @media (min-width: 880px) {
      .resources-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    .resource-card {
      border-radius: var(--radius-md);
      background: rgba(27, 0, 0, 0.98);
      border: 1px solid var(--border-subtle);
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .resource-image {
      height: 140px;
      background: #000;
      overflow: hidden;
    }

    .resource-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .resource-body {
      padding: 0.9rem 0.85rem 1rem;
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
      flex: 1;
    }

    .resource-type {
      font-size: 0.76rem;
      color: var(--text-muted);
    }

    .resource-title {
      font-size: 0.9rem;
      font-weight: 500;
    }

    .resource-link {
      margin-top: auto;
      font-size: 0.82rem;
      color: var(--accent-strong);
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
    }


/* ===== CASES ===== */

.cases-grid {
  display: grid;
  gap: 1.2rem;
}

@media (min-width: 960px) {
  .cases-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.case-card {
  border-radius: var(--radius-md);
  background: rgba(27, 0, 0, 0.98);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.55);
}

.case-image {
  height: 150px;
  background: #000;
  overflow: hidden;
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-body {
  padding: 0.9rem 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.case-tag {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #fde9b5;
}

.case-title {
  font-size: 0.96rem;
  font-weight: 500;
}

.case-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.case-summary {
  font-size: 0.84rem;
  color: var(--text-muted);
}

.case-link {
  margin-top: auto;
  font-size: 0.82rem;
  color: var(--accent-strong);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}



    /* ===== CONTACT SECTION ===== */

    .contact-section {
      background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.08),
        rgba(0, 0, 0, 0.6)
      );
      border-top: 1px solid var(--border-subtle);
      border-bottom: 1px solid var(--border-subtle);
    }

    .contact-grid {
      display: grid;
      gap: 2rem;
    }

    @media (min-width: 960px) {
      .contact-grid {
        grid-template-columns: minmax(0, 2.3fr) minmax(0, 2fr);
      }
    }

    .newsletter {
      border-radius: var(--radius-md);
      border: 1px solid var(--border-subtle);
      padding: 1.2rem 1.05rem;
      background: rgba(27, 0, 0, 0.9);
    }

    .newsletter h3 {
      font-size: 1.1rem;
      margin-bottom: 0.3rem;
    }

    .newsletter p {
      font-size: 0.86rem;
      color: var(--text-muted);
      margin-bottom: 0.6rem;
    }

    .newsletter-form {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: 0.4rem;
    }

    .newsletter input {
      flex: 1 1 160px;
      border-radius: 999px;
      border: 1px solid var(--border-subtle);
      background: rgba(12, 0, 0, 0.95);
      color: var(--text-main);
      padding: 0.45rem 0.7rem;
      font: inherit;
      font-size: 0.86rem;
      outline: none;
    }

    .newsletter input:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 1px rgba(244, 196, 111, 0.35);
    }

    .newsletter small {
      font-size: 0.72rem;
      color: var(--text-muted);
    }

    .contact-columns {
      display: grid;
      gap: 1.2rem;
      font-size: 0.84rem;
    }

    @media (min-width: 640px) {
      .contact-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    .contact-columns h4 {
      font-size: 0.9rem;
      margin-bottom: 0.3rem;
    }

    .contact-columns ul {
      list-style: none;
      display: grid;
      gap: 0.25rem;
      color: var(--text-muted);
    }

    .contact-columns a:hover {
      color: var(--accent-strong);
    }

    /* ===== FOOTER ===== */

    footer {
      padding: 1.6rem 0 2.1rem;
      font-size: 0.78rem;
      color: var(--text-muted);
    }

    .footer-row {
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }

    @media (min-width: 768px) {
      .footer-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
      }
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 0.9rem;
    }

    .footer-links a:hover {
      color: var(--text-main);
    }
  </style>