: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-about {
    padding: 80px 0 64px;
    text-align: left;
  }
  .hero-about h1 {
    max-width: 760px;
    padding-bottom: 0.22em;
    line-height: 1.08;
    margin-bottom: 32px;
  }
  .hero-about .hero-lede {
    max-width: 620px;
  }
  .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.02;
    margin-bottom: 24px;
  }
  .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;
    line-height: 1.25;
    padding: 0.05em 0.15em 0.05em 0.05em;
    margin: 0 -0.1em 0 -0.05em;
    overflow: visible;
    vertical-align: top;
  }
  .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;
  }

  /* ---------- 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 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;
  }
  .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-narrow .story-grid {
    grid-template-columns: 1fr;
    max-width: 820px;
    margin: 0 auto;
    gap: 0;
  }
  .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); }

  /* ---------- 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: var(--charge-black);
    color: white;
  }
  .values .section-head.centered h2 {
    color: white;
  }
  .values .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;
  }
  .values .section-head.centered p {
    color: rgba(255,255,255,0.7);
  }
  .values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .value-card {
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: transparent;
    color: white;
  }
  .value-card:hover {
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.04);
    transform: translateY(-2px);
  }
  .value-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: white;
    letter-spacing: 0.04em;
  }
  .value-card p {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    line-height: 1.6;
    margin-top: 28px;
  }


  /* ---------- 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: 220px 1fr;
    gap: 28px;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 22px;
    align-items: stretch;
    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%;
    height: 100%;
    min-height: 220px;
    align-self: stretch;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--light-grey);
  }
  .team-photo-wrap image-slot {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .team-card .role-tag {
    position: absolute;
    bottom: 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;
  }
  .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-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: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .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-top: 40px;
    margin-bottom: 6px;
  }
  .industry-meta {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.45;
  }

  /* ---------- 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;
  }
  .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;
  }

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

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

  .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;
  }

  .hero,
  .hero-about {
    padding: 88px 0 82px;
  }

  .hero h1,
  .hero-about h1 {
    max-width: 760px;
    font-size: 62px;
    line-height: 1.12;
    letter-spacing: 0;
    padding-bottom: 0.08em;
    overflow: visible;
  }

  .hero-lede,
  .hero-about .hero-lede {
    max-width: 680px;
    font-size: 18px;
    line-height: 1.72;
  }

  section {
    padding: 104px 0;
  }

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

  .section-head h2,
  .values h2,
  .team-intro h2 {
    font-size: 46px;
    line-height: 1.14;
    letter-spacing: 0;
  }

  .story-card,
  .value-card,
  .team-card {
    border-radius: 18px;
  }

  .story-card,
  .value-card,
  .team-card {
    border: 1px solid rgba(10, 20, 28, 0.06);
    box-shadow: 0 16px 42px -38px rgba(10, 20, 28, 0.48);
  }

  .story-card {
    padding: 42px;
  }

  .story-card p,
  .team-bio,
  .value-card p {
    line-height: 1.7;
  }

  .values-grid {
    gap: 22px;
  }

  .value-card {
    min-height: 220px;
    padding: 30px;
  }

  .team-section {
    background: #f7f8fa;
  }

  .team-list {
    gap: 22px;
  }

  .team-card {
    padding: 24px;
  }

  .team-card h3 {
    font-size: 27px;
    letter-spacing: 0;
  }

  @media (max-width: 1000px) {
    .hero h1,
    .hero-about h1 {
      font-size: 52px;
    }

    .section-head h2,
    .values h2,
    .team-intro h2 {
      font-size: 38px;
    }
  }

  @media (max-width: 700px) {
    .hero,
    .hero-about {
      padding: 46px 0 54px !important;
    }

    .hero h1,
    .hero-about h1 {
      font-size: 40px !important;
      line-height: 1.14 !important;
    }

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

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

    .section-head h2,
    .values h2,
    .team-intro h2 {
      font-size: 31px !important;
      line-height: 1.16 !important;
    }

    .story-card,
    .value-card,
    .team-card {
      padding: 24px !important;
    }
  }
