:root {
    --charge-black: #0a141c;
    --charge-red: #cf1a4a;
    --charge-blue: #6b7de8;
    --light-blue: #abb5f2;
    --green: #008560;
    --grey: #4a5560;
    --light-grey: #f5f5f7;
    --ink: #0a141c;
    --ink-soft: #4a5560;
    --line: #e6e8ec;
    --gradient: #cf1a4a;
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
  }

  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    font-family: 'Poppins', system-ui, sans-serif;
    background: #ffffff;
    color: var(--ink);
    font-weight: 400;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--charge-black);
    margin: 0;
    line-height: 1.1;
  }
  p { margin: 0; }

  .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
  }

  /* ---------- NAV ---------- */
  .nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid rgba(10, 20, 28, 0.06);
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 32px;
    max-width: 1240px;
    margin: 0 auto;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--charge-black);
    font-weight: 600;
    letter-spacing: -0.02em;
    font-size: 18px;
  }
  .logo img { height: 72px; width: auto; display: block; }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
  }
  .nav-links a {
    text-decoration: none;
    color: var(--ink);
    font-size: 14.5px;
    font-weight: 400;
    position: relative;
  }
  .nav-links a.active { color: var(--charge-red); font-weight: 500; }

  /* Dropdown */
  .nav-item { position: relative; }
  .nav-item > a .caret {
    display: inline-block;
    margin-left: 6px;
    font-size: 9px;
    transition: transform 0.2s;
    transform: translateY(-1px);
  }
  .nav-item:hover > a .caret,
  .nav-item:focus-within > a .caret { transform: translateY(0) rotate(180deg); }
  .nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 8px);
    background: white;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 10px;
    min-width: 240px;
    box-shadow: 0 18px 40px -18px rgba(10, 20, 28, 0.18);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .nav-item:hover .nav-dropdown,
  .nav-item:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 4px);
  }
  .nav-dropdown::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 14px;
  }
  .nav-dropdown a {
    display: block;
    padding: 10px 14px;
    border-radius: 9px;
    font-size: 15px;
    font-weight: 400;
    color: var(--ink);
    transition: background 0.15s, color 0.15s;
  }
  .nav-dropdown a:hover {
    background: var(--light-grey);
    color: var(--charge-red);
  }
  .nav-dropdown a .nav-sub-label {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11.5px;
    font-weight: 500;
    color: var(--ink-soft);
    margin-top: 2px;
    letter-spacing: 0.02em;
  }
  .nav-cta {
    background: var(--charge-black);
    color: white !important;
    padding: 11px 20px;
    border-radius: 100px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px !important;
    font-weight: 500 !important;
    transition: transform 0.2s, background 0.2s;
  }
  .nav-cta:hover { background: var(--charge-red); transform: translateY(-1px); }

  /* ---------- HERO ---------- */
  .hero {
    padding: 96px 0 72px;
    position: relative;
    overflow: hidden;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
  }
  .eyebrow {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--charge-red);
    margin-bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--charge-red);
  }
  .hero h1 {
    font-size: clamp(44px, 6vw, 76px);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.05;
    margin-bottom: 24px;
    padding-bottom: 0.22em;
  }
  .hero h1 .accent {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
    font-weight: 600;
    display: inline-block;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    padding: 0 0.15em 0 0.05em;
    margin: 0 -0.1em 0 -0.05em;
    overflow: visible;
  }
  .hero-lede {
    font-size: 19px;
    color: var(--ink-soft);
    max-width: 520px;
    line-height: 1.6;
  }
  .hero-visual {
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-lg);
    background: var(--gradient);
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px -30px rgba(207, 26, 74, 0.35);
  }
  .hero-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 80% 20%, rgba(255,255,255,0.18), transparent 55%),
      radial-gradient(circle at 20% 80%, rgba(255,255,255,0.08), transparent 55%);
  }
  .hero-visual-grid {
    position: absolute;
    inset: 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 10px;
  }
  .hero-cell {
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 14px;
    backdrop-filter: blur(2px);
  }
  .hero-cell.filled {
    background: #ffffff;
    border-color: #ffffff;
  }
  .hero-cell.logo-cell {
    background: rgba(255,255,255,0.95);
    display: grid;
    place-items: center;
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    padding: 16%;
  }
  .hero-cell.logo-cell img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  /* ---------- HERO GRID ILLUMINATION ---------- */
  @keyframes filledPulse {
    0%, 22%, 100% { box-shadow: 0 0 0 rgba(255,255,255,0); }
    11% { box-shadow: 0 0 30px rgba(255,255,255,0.85); }
  }
  @keyframes centerArrive {
    0%, 22%, 100% {
      transform: scale(1);
      box-shadow: 0 0 0 rgba(255,255,255,0);
    }
    11% {
      transform: scale(1.04);
      box-shadow: 0 0 50px rgba(255,255,255,0.85);
    }
  }
  .hero-cell.filled {
    animation: filledPulse 6s ease-in-out infinite;
  }
  .hero-cell.logo-cell {
    animation: centerArrive 6s ease-in-out infinite;
    transform-origin: center;
  }
  /* Clockwise sequence: TL → TR → BR → BL → Center */
  .hero-cell:nth-child(1) { animation-delay: 0s; }      /* TL */
  .hero-cell:nth-child(3) { animation-delay: 0.5s; }    /* TR */
  .hero-cell:nth-child(9) { animation-delay: 1.0s; }    /* BR */
  .hero-cell:nth-child(7) { animation-delay: 1.5s; }    /* BL */
  .hero-cell:nth-child(5) { animation-delay: 2.0s; }    /* Center */
  @media (prefers-reduced-motion: reduce) {
    .hero-cell, .hero-cell.filled, .hero-cell.logo-cell { animation: none; }
  }

  /* ---------- SECTION GENERIC ---------- */
  section { padding: 96px 0; }
  .section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 56px;
  }
  .section-head.centered {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  .section-head.centered h2 {
    max-width: none;
    font-size: clamp(28px, 3.4vw, 44px);
    letter-spacing: -0.025em;
    line-height: 1.2;
  }
  .section-head.centered p {
    max-width: 560px;
  }
  @media (max-width: 1100px) {
    .section-head.centered h2 { font-size: clamp(26px, 4.5vw, 36px); }
  }
  .section-head h2 {
    font-size: clamp(36px, 4.4vw, 56px);
    font-weight: 500;
    letter-spacing: -0.03em;
    max-width: 720px;
  }
  .section-head h2 em {
    font-style: italic;
    font-weight: 500;
    color: var(--charge-red);
  }
  .section-head p {
    color: var(--ink-soft);
    font-size: 16.5px;
    max-width: 360px;
  }

  /* ---------- OUR STORY ---------- */
  .story {
    background: var(--light-grey);
  }
  .story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }
  .story-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px 40px;
  }
  .story-card p + p { margin-top: 14px; }
  .story-card p {
    font-size: 15.5px;
    color: var(--ink-soft);
    line-height: 1.65;
  }
  .story-card .pullquote {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 19px;
    color: var(--charge-black);
    line-height: 1.4;
    padding: 22px 0 0;
    border-top: 1px solid var(--line);
    margin-top: 24px;
  }
  .story-card .pullquote .red { color: var(--charge-red); }

  .story-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-content: start;
  }
  .stat {
    background: white;
    border-radius: var(--radius-md);
    padding: 22px 20px;
    position: relative;
  }
  .stat.dark { background: var(--charge-black); color: white; }
  .stat.red { background: var(--charge-red); color: white; }
  .stat.gradient { background: var(--gradient); color: white; }
  .stat-num {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 38px;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 8px;
  }
  .stat-label {
    font-size: 12.5px;
    color: var(--ink-soft);
    line-height: 1.45;
  }
  .stat.dark .stat-label,
  .stat.red .stat-label,
  .stat.gradient .stat-label { color: rgba(255,255,255,0.85); }

  .story-stats { grid-template-columns: 1fr 1fr !important; gap: 12px; align-content: start; }
  .story-feature {
    background: white;
    border-radius: var(--radius-md);
    padding: 28px 26px 26px;
    transition: transform 0.2s;
  }
  .story-feature h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 10px;
    color: var(--charge-black);
  }
  .story-feature h3 .muted { color: var(--charge-red); }
  .story-feature p {
    font-size: 14.5px;
    color: var(--ink-soft);
    line-height: 1.55;
  }
  .story-feature.dark {
    background: var(--charge-black);
  }
  .story-feature.dark h3 { color: white; }
  .story-feature.dark h3 .muted { color: var(--charge-red); }
  .story-feature.dark p { color: rgba(255,255,255,0.78); }
  .story-feature.gradient {
    background: var(--gradient);
    box-shadow: 0 14px 30px -18px rgba(207, 26, 74, 0.45);
  }
  .story-feature.gradient h3 { color: white; }
  .story-feature.gradient h3 .muted { color: rgba(255,255,255,0.78); }
  .story-feature.gradient p { color: rgba(255,255,255,0.92); }


  /* ---------- MISSION / VISION ---------- */
  .mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .mv-card {
    border-radius: var(--radius-lg);
    padding: 36px 36px 32px;
    position: relative;
    overflow: hidden;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .mv-card.mission {
    background: var(--charge-black);
    color: white;
  }
  .mv-card.vision {
    background: var(--gradient);
    color: white;
  }
  .mv-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    opacity: 0.75;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .mv-tag::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
  }
  .mv-card h3 {
    color: white;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    line-height: 1.25;
  }
  .mv-card p {
    font-size: 14.5px;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 460px;
  }
  .mv-glyph {
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 150px;
    height: 150px;
    border: 1.5px solid rgba(255,255,255,0.18);
    border-radius: 50%;
  }
  .mv-glyph::after {
    content: '';
    position: absolute;
    inset: 24px;
    border: 1.5px solid rgba(255,255,255,0.18);
    border-radius: 50%;
  }

  /* ---------- VALUES ---------- */
  .values { background: #ffffff; }
  .values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .value-card {
    background: var(--light-grey);
    border-radius: var(--radius-md);
    padding: 32px 28px 36px;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.25s ease;
  }
  .value-card:hover { transform: translateY(-4px); }
  .value-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--charge-red);
    letter-spacing: 0.04em;
  }
  .value-card h4 {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-top: 60px;
    margin-bottom: 12px;
  }
  .value-card p {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.6;
  }
  .value-card.featured {
    background: var(--charge-black);
    color: white;
  }
  .value-card.featured h4 { color: white; }
  .value-card.featured p { color: rgba(255,255,255,0.78); }
  .value-card.featured .value-num { color: var(--light-blue); }
  .value-card.accent {
    background: var(--charge-blue);
    color: white;
  }
  .value-card.accent p { color: rgba(255,255,255,0.92); }
  .value-card.accent .value-num { color: rgba(255,255,255,0.78); }
  .value-card.red {
    background: var(--charge-red);
    color: white;
  }
  .value-card.red p { color: rgba(255,255,255,0.95); }
  .value-card.red .value-num { color: rgba(255,255,255,0.78); }

  /* ---------- TEAM ---------- */
  .team-section { background: var(--light-grey); }
  .team-intro {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 64px;
  }
  .team-intro p {
    color: var(--ink-soft);
    font-size: 17px;
    line-height: 1.6;
  }
  .team-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .team-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 28px;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 22px;
    align-items: center;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  }
  .team-card:hover {
    border-color: transparent;
    box-shadow: 0 20px 50px -22px rgba(10, 20, 28, 0.18);
    transform: translateY(-2px);
  }
  .team-photo-wrap {
    position: relative;
    width: 100%;
    align-self: center;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: var(--light-grey);
  }
  .team-photo-wrap image-slot {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .team-card .role-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(10, 20, 28, 0.85);
    color: white;
    padding: 6px 12px;
    border-radius: 100px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11.5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    backdrop-filter: blur(8px);
    z-index: 2;
    pointer-events: none;
  }
  .team-body {
    padding: 12px 12px 12px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .team-name-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 4px;
    flex-wrap: wrap;
  }
  .team-card h3 {
    font-size: 28px;
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1.1;
  }
  .team-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    color: var(--charge-red);
    font-weight: 500;
    letter-spacing: 0.02em;
  }
  .team-card .divider {
    height: 1px;
    background: var(--line);
    margin: 22px 0 20px;
  }
  .team-bio {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.65;
    max-width: 620px;
  }
  .team-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
  }
  .chip {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--charge-black);
    background: var(--light-grey);
    padding: 7px 13px;
    border-radius: 100px;
  }
  .team-socials {
    display: flex;
    gap: 10px;
    margin-top: 22px;
  }
  .team-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    color: var(--ink);
    text-decoration: none;
    transition: all 0.2s;
  }
  .team-socials a:hover {
    background: var(--charge-black);
    color: white;
    border-color: var(--charge-black);
  }
  .team-socials svg { width: 15px; height: 15px; }

  /* card variants for rhythm */
  .team-card:nth-child(3n+2) .team-photo-wrap { background: var(--light-blue); }
  .team-card:nth-child(3n+3) .team-photo-wrap { background: #ffe1e9; }

  /* ---------- INDUSTRIES ---------- */
  .industries {
    background: var(--charge-black);
    color: white;
  }
  .industries .section-head {
    align-items: flex-end;
  }
  .industries .section-head h2 {
    color: white;
    font-size: clamp(32px, 4vw, 48px);
  }
  .industries .section-head h2 em {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
    display: inline-block;
    padding-bottom: 0.1em;
    line-height: 1.15;
  }
  .industries .section-head p {
    color: rgba(255,255,255,0.7);
    max-width: 400px;
  }
  .industries .eyebrow {
    color: var(--charge-red);
    margin-bottom: 14px;
  }
  .industries .eyebrow::before {
    background: var(--charge-red);
  }
  .industries-cta {
    margin-top: 56px;
    display: flex;
    justify-content: center;
  }
  /* industries-cta inherits .btn-primary style */
  .industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .industry {
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
    min-height: 180px;
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 42px;
  }
  .industry:hover {
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.04);
    transform: translateY(-2px);
  }
  .industry-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.04em;
  }
  .industry-name {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: white;
    margin-bottom: 6px;
    min-height: 2.4em;
    display: flex;
    align-items: flex-end;
  }
  .industry-meta {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.45;
  }


  /* ---------- OFFERINGS ---------- */
  .offerings {
    background: var(--charge-black);
    color: white;
  }
  .offerings .section-head {
    align-items: flex-end;
  }
  .offerings .section-head h2 {
    color: white;
    font-size: clamp(32px, 4vw, 48px);
  }
  .offerings .section-head h2 em {
    color: var(--charge-red);
    font-style: italic;
    font-weight: 500;
  }
  .offerings .section-head p {
    color: rgba(255,255,255,0.7);
    max-width: 400px;
  }
  .offerings .eyebrow {
    color: var(--charge-red);
    margin-bottom: 14px;
  }
  .offerings .eyebrow::before {
    background: var(--charge-red);
  }
  .offerings-cta {
    margin-top: 56px;
    display: flex;
    justify-content: center;
  }
  .offerings-cta .btn {
    background: var(--charge-red);
    color: white;
  }
  .offerings-cta .btn:hover {
    background: white;
    color: var(--charge-red);
    transform: translateY(-2px);
  }
  .offerings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .offering {
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
    min-height: 180px;
    display: grid;
    grid-template-rows: auto auto 1fr;
    gap: 6px;
    color: white;
  }
  .offering > div {
    display: contents;
  }
  .offering:hover {
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.04);
    transform: translateY(-2px);
  }
  .offering-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.04em;
  }
  .offering h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: white;
    letter-spacing: -0.02em;
    margin-top: 40px;
    margin-bottom: 6px;
    line-height: 1.2;
  }
  .offering p {
    color: rgba(255,255,255,0.55);
    font-size: 13px;
    line-height: 1.45;
  }
  @media (max-width: 900px) {
    .offerings-grid { grid-template-columns: 1fr; }
  }


  /* ---------- PRODUCTS ---------- */
  .products { background: var(--light-grey); }
  .products .section-head.centered { margin-bottom: 40px; }
  .products .section-head.centered .eyebrow { margin-bottom: 14px; }
  .products .section-head.centered h2 {
    font-size: clamp(28px, 3.6vw, 44px);
    color: var(--charge-black);
    max-width: 760px;
  }
  .products .section-head.centered h2 em {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
    font-weight: 500;
    display: inline-block;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    padding: 0 0.08em 0 0.04em;
    margin: 0 -0.06em 0 -0.04em;
  }
  .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .product-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 32px 30px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.25s, box-shadow 0.25s;
    min-height: 240px;
  }
  .product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px -22px rgba(10, 20, 28, 0.2);
  }
  .product-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--charge-black);
    line-height: 1.2;
  }
  .product-card p {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.55;
    flex: 1;
  }
  .product-link {
    color: var(--charge-red);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
  }
  .product-link .arrow {
    display: inline-block;
    transition: transform 0.2s;
  }
  .product-link:hover .arrow { transform: translateX(4px); }
  @media (max-width: 900px) {
    .products-grid { grid-template-columns: 1fr; }
  }

  /* ---------- JOIN ---------- */
  .join {
    padding: 80px 0 120px;
  }
  .join-card {
    background: var(--gradient);
    border-radius: var(--radius-lg);
    padding: 80px 64px;
    color: white;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px -30px rgba(207, 26, 74, 0.35);
  }
  .join-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 85% 15%, rgba(255,255,255,0.18), transparent 45%),
      radial-gradient(circle at 15% 85%, rgba(255,255,255,0.08), transparent 50%);
    pointer-events: none;
  }
  .join-content { position: relative; z-index: 1; }
  .join h2 {
    color: white;
    font-size: 48px;
    font-weight: 500;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
    line-height: 1.1;
  }
  .join h2 em { color: white; font-style: italic; opacity: 1; }
  .join p {
    color: rgba(255,255,255,0.78);
    font-size: 16.5px;
    max-width: 480px;
    line-height: 1.6;
  }
  .join-cta {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 100px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s;
  }
  .btn-primary {
    background: var(--charge-red);
    color: white;
  }
  .btn-primary:hover {
    background: var(--charge-black);
    color: white;
    transform: translateY(-2px);
  }
  /* Industries section has black background, hover should go white instead of black */
  .industries .btn-primary:hover {
    background: white;
    color: var(--charge-red);
  }
  /* Join card (red CTA box at page bottom), keep white default, black hover */
  .join-cta .btn-primary,
  .join-card .btn-primary {
    background: white;
    color: var(--charge-red);
  }
  .join-cta .btn-primary:hover,
  .join-card .btn-primary:hover {
    background: var(--charge-black);
    color: white;
  }

  .hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 32px;
  }
  .btn-ghost {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.25);
  }
  .btn-ghost:hover { background: rgba(255,255,255,0.08); }

  /* ---------- FOOTER ---------- */
  .footer-grid .logo { color: white; }
  @media (max-width: 700px) {
  }
  .footer-fine
  .footer-fine

  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 1000px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { max-width: 480px; }
    .story-grid { grid-template-columns: 1fr; }
    .mv-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .team-card { grid-template-columns: 1fr; gap: 0; }
    .team-photo-wrap { max-width: 100%; aspect-ratio: 4/3; }
    .team-body { padding: 24px 12px 12px; }
    .team-intro { grid-template-columns: 1fr; }
    .join-card { grid-template-columns: 1fr; padding: 56px 36px; }
    .join h2 { font-size: 38px; }
    .nav-links { gap: 20px; }
    .nav-links a:not(.nav-cta) { display: none; }
  }
  @media (max-width: 600px) {
    .container { padding: 0 20px; }
    .nav-inner { padding: 14px 20px; }
    section { padding: 64px 0; }
    .hero { padding: 56px 0 40px; }
    .story-card, .mv-card { padding: 32px 24px; }
    .values-grid { grid-template-columns: 1fr; }
    .section-head { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 36px; }
    .stat-num { font-size: 44px; }
    .team-card h3 { font-size: 26px; }
  }

  /* ---------- FOOTER ---------- */
  footer {
    background: var(--charge-black);
    color: white;
    padding: 56px 0 36px;
    font-size: 13.5px;
  }
  footer .container { display: block; }
  .footer-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 64px;
    align-items: flex-start;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .footer-cols {
    display: flex;
    gap: 32px;
    flex: 1;
    flex-wrap: wrap;
  }
  .footer-col { min-width: 140px; }
  .footer-col:nth-child(3) { margin-left: auto; }
  .footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .footer-col h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: white;
    margin: 0 0 6px;
  }
  .footer-col a {
    color: white;
    text-decoration: none;
    transition: opacity 0.2s;
    font-size: 14px;
  }
  .footer-col a:hover { opacity: 0.7; }
  @media (max-width: 900px) {
    .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; }
  }
  @media (max-width: 700px) {
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; justify-self: stretch; }
  }
  footer .logo { color: white; }
  .footer-fine { padding-top: 28px; }
  .footer-fine-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    color: white;
    margin-bottom: 14px;
  }
  .footer-fine-legal {
    color: white;
    font-size: 12px;
    line-height: 1.6;
    max-width: 920px;
  }

  body {
    background: #fbfbfc;
  }

  h1,
  h2,
  h3,
  h4 {
    letter-spacing: 0;
  }

  .container,
  .nav-inner {
    max-width: 1180px;
  }

  .nav {
    background: rgba(255, 255, 255, 0.92);
    border-bottom-color: rgba(10, 20, 28, 0.08);
  }

  .nav-inner {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .logo img {
    height: 62px;
  }

  .nav-links {
    gap: 30px;
  }

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

  .nav-cta {
    padding: 12px 19px;
    box-shadow: 0 14px 28px -22px rgba(10, 20, 28, 0.75);
  }

  .hero {
    padding: 88px 0 92px;
    background: #fbfbfc;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
    gap: 72px;
  }

  .eyebrow {
    font-size: 12px;
    letter-spacing: 0.14em;
    margin-bottom: 20px;
  }

  .eyebrow::before {
    width: 22px;
  }

  .hero h1 {
    max-width: 720px;
    font-size: 70px;
    line-height: 1.18;
    letter-spacing: 0;
    margin-bottom: 22px;
    padding: 0.04em 0 0.1em;
    overflow: visible;
  }

  .hero h1 .accent {
    background: none;
    color: var(--charge-red);
    font-weight: 500;
    display: inline;
    line-height: inherit;
    padding: 0;
    margin: 0;
    overflow: visible;
  }

  .hero-lede {
    max-width: 610px;
    font-size: 18px;
    line-height: 1.72;
    color: #3f4a54;
  }

  .hero-actions {
    margin-top: 34px;
  }

  .btn {
    min-height: 52px;
    padding: 15px 24px;
    font-size: 14px;
    font-weight: 600;
  }

  .btn-primary {
    background: var(--charge-black);
    box-shadow: 0 18px 38px -26px rgba(10, 20, 28, 0.8);
  }

  .btn-primary:hover {
    background: var(--charge-red);
  }

  .hero-visual {
    border-radius: 24px;
    background: #0a141c;
    box-shadow: 0 28px 70px -34px rgba(10, 20, 28, 0.65);
  }

  .hero-visual::before {
    background:
      linear-gradient(135deg, rgba(207, 26, 74, 0.28), transparent 42%),
      linear-gradient(315deg, rgba(255, 255, 255, 0.08), transparent 42%);
  }

  .hero-cell {
    border-color: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
  }

  .hero-cell.filled {
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(255, 255, 255, 0.94);
  }

  section {
    padding: 104px 0;
  }

  .section-head {
    margin-bottom: 44px;
  }

  .section-head h2 {
    font-size: 48px;
    line-height: 1.12;
    letter-spacing: 0;
  }

  .section-head.centered h2,
  .products .section-head.centered h2,
  .industries .section-head h2,
  .offerings .section-head h2 {
    font-size: 44px;
    line-height: 1.14;
    letter-spacing: 0;
  }

  .section-head p {
    font-size: 16px;
    line-height: 1.68;
  }

  .offerings {
    background: #0a141c;
    padding-top: 112px;
    padding-bottom: 112px;
  }

  .offerings-grid {
    gap: 20px;
  }

  .offering {
    min-height: 210px;
    padding: 30px;
    border-radius: 18px;
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.025);
  }

  .offering h3 {
    margin-top: 34px;
    font-size: 21px;
    letter-spacing: 0;
  }

  .offering p {
    font-size: 14px;
    line-height: 1.58;
    color: rgba(255, 255, 255, 0.66);
  }

  .story {
    background: #f3f5f7;
  }

  .story-grid {
    gap: 28px;
  }

  .story-card,
  .story-feature,
  .product-card,
  .join-card {
    border-radius: 18px;
  }

  .story-card {
    padding: 42px;
    border: 1px solid rgba(10, 20, 28, 0.06);
    box-shadow: 0 18px 44px -34px rgba(10, 20, 28, 0.42);
  }

  .story-card p {
    font-size: 15.5px;
    line-height: 1.74;
  }

  .story-card .pullquote {
    font-size: 18px;
    line-height: 1.48;
  }

  .story-stats {
    gap: 16px !important;
  }

  .story-feature {
    padding: 28px;
    border: 1px solid rgba(10, 20, 28, 0.06);
    box-shadow: 0 14px 34px -34px rgba(10, 20, 28, 0.36);
  }

  .story-feature h3 {
    font-size: 21px;
    letter-spacing: 0;
  }

  .story-feature p {
    font-size: 14.5px;
    line-height: 1.62;
  }

  .industries {
    padding-top: 112px;
    padding-bottom: 112px;
  }

  .industries-grid {
    gap: 18px;
  }

  .industry {
    min-height: 200px;
    padding: 30px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.025);
    gap: 42px;
  }

  .industry-name {
    font-size: 21px;
    letter-spacing: 0;
  }

  .industry-meta {
    font-size: 13.5px;
    line-height: 1.56;
    color: rgba(255, 255, 255, 0.64);
  }

  .products {
    background: #f7f8fa;
    padding-top: 108px;
    padding-bottom: 108px;
  }

  .products-grid {
    gap: 22px;
  }

  .product-card {
    min-height: 268px;
    padding: 34px;
    border: 1px solid rgba(10, 20, 28, 0.07);
    box-shadow: 0 16px 42px -38px rgba(10, 20, 28, 0.48);
  }

  .product-card:hover {
    box-shadow: 0 24px 54px -34px rgba(10, 20, 28, 0.38);
  }

  .product-card h3 {
    font-size: 23px;
    letter-spacing: 0;
  }

  .product-card p {
    font-size: 15px;
    line-height: 1.66;
  }

  .product-link {
    font-size: 13.5px;
    letter-spacing: 0.01em;
  }

  .join {
    padding: 96px 0 124px;
    background: #fbfbfc;
  }

  .join-card {
    padding: 68px 58px;
    background: #0a141c;
    box-shadow: 0 30px 70px -36px rgba(10, 20, 28, 0.72);
  }

  .join-card::after {
    background:
      linear-gradient(135deg, rgba(207, 26, 74, 0.34), transparent 48%),
      linear-gradient(315deg, rgba(255, 255, 255, 0.07), transparent 44%);
  }

  .join h2 {
    font-size: 44px;
    letter-spacing: 0;
  }

  .join p {
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.68;
  }

  .join-cta .btn-primary,
  .join-card .btn-primary {
    color: var(--charge-black);
  }

  @media (max-width: 1100px) {
    .hero-grid {
      grid-template-columns: 1fr;
      gap: 48px;
    }

    .hero h1 {
      font-size: 58px;
    }

    .hero-visual {
      width: min(100%, 440px);
    }

    .section-head h2,
    .section-head.centered h2,
    .products .section-head.centered h2,
    .industries .section-head h2,
    .offerings .section-head h2 {
      font-size: 38px;
    }
  }

  @media (max-width: 700px) {
    .container {
      padding-left: 22px;
      padding-right: 22px;
    }

    .hero {
      padding: 46px 0 54px !important;
    }

    .hero-grid {
      gap: 30px !important;
    }

    .hero h1 {
      font-size: 42px !important;
      line-height: 1.08 !important;
      margin-bottom: 20px !important;
    }

    .hero-lede {
      font-size: 16px !important;
      line-height: 1.68 !important;
    }

    .hero-actions {
      margin-top: 26px;
    }

    .btn {
      width: 100%;
      justify-content: center;
      min-height: 50px;
      padding: 14px 18px;
    }

    .hero-visual {
      width: min(100%, 312px) !important;
      max-width: 312px !important;
      justify-self: center !important;
    }

    section {
      padding-top: 66px !important;
      padding-bottom: 66px !important;
    }

    .section-head {
      margin-bottom: 30px !important;
    }

    .section-head h2,
    .section-head.centered h2,
    .products .section-head.centered h2,
    .industries .section-head h2,
    .offerings .section-head h2,
    .join h2 {
      font-size: 31px !important;
      line-height: 1.16 !important;
    }

    .section-head p {
      font-size: 15.5px !important;
      line-height: 1.66 !important;
    }

    .offering,
    .industry,
    .product-card,
    .story-card,
    .story-feature {
      border-radius: 16px;
      padding: 24px !important;
    }

    .offering,
    .industry {
      min-height: auto;
    }

    .offering h3,
    .industry-name {
      margin-top: 24px;
      font-size: 20px;
    }

    .story-grid {
      gap: 16px;
    }

    .story-stats {
      grid-template-columns: 1fr !important;
    }

    .products-grid {
      gap: 16px;
    }

    .product-card {
      min-height: auto;
    }

    .join {
      padding-top: 66px !important;
      padding-bottom: 82px !important;
    }

    .join-card {
      padding: 34px 24px !important;
      gap: 24px !important;
    }

    .join p {
      font-size: 15.5px;
    }

    .join-cta {
      align-items: stretch;
      width: 100%;
    }
  }

  body,
  .hero,
  .join {
    background: #ffffff;
  }

  .story,
  .products {
    background: var(--light-grey);
  }

  .btn-primary {
    background: var(--charge-red);
    color: white;
  }

  .btn-primary:hover {
    background: var(--charge-black);
    color: white;
  }

  .hero h1 .accent,
  .products .section-head.centered h2 em,
  .industries .section-head h2 em {
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    color: var(--charge-red);
  }

  .hero-visual {
    background: var(--gradient);
    box-shadow: 0 30px 80px -30px rgba(207, 26, 74, 0.35);
  }

  .hero-visual::before {
    background:
      radial-gradient(circle at 80% 20%, rgba(255,255,255,0.18), transparent 55%),
      radial-gradient(circle at 20% 80%, rgba(255,255,255,0.08), transparent 55%);
  }

  .join-card {
    background: var(--gradient);
    box-shadow: 0 30px 80px -30px rgba(207, 26, 74, 0.35);
  }

  .join-card::after {
    background:
      radial-gradient(circle at 85% 15%, rgba(255,255,255,0.18), transparent 45%),
      radial-gradient(circle at 15% 85%, rgba(255,255,255,0.08), transparent 50%);
  }

  .join-cta .btn-primary,
  .join-card .btn-primary {
    background: white;
    color: var(--charge-red);
  }

  .join-cta .btn-primary:hover,
  .join-card .btn-primary:hover {
    background: var(--charge-black);
    color: white;
  }
