:root {
    --black: #080808;
    --charcoal: #111111;
    --slate: #1a1a1a;
    --border: #2a2a2a;
    --muted: #444444;
    --body: #a0a0a0;
    --light: #d4d4d4;
    --white: #f0ede8;
    --accent: #c8390f;
    --accent-bright: #e8511f;
    --accent-gold: #c8a96e;
    --accent-dark: #7a1f08;
    --grit: rgba(255,255,255,0.015);
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html {
    scroll-behavior: smooth;
    background: #080808; /* ensures overscroll bounce area on iOS is dark, not white */
  }
  body {
    background: #080808;
    overscroll-behavior-y: none; /* prevents iOS bounce from exposing the area above */
    color: var(--body);
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
  }
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.035;
    pointer-events: none;
    z-index: 9999;
  }

  /* CONTAINER - constrains content width on large desktop screens
     while allowing section backgrounds to span edge-to-edge */
  .container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
  }
  .container-wide { max-width: 1440px; margin: 0 auto; width: 100%; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 20px 48px;
    padding-top: calc(20px + env(safe-area-inset-top));
    border-bottom: 1px solid transparent;
    transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
  }
  /* MOBILE: nav must always be opaque so content can't bleed through during scroll.
     On desktop we keep the cinematic transparent-at-top look. */
  @media (max-width: 768px) {
    nav, nav.scrolled {
      background: #080808;
      border-color: var(--border);
    }
  }
  /* iOS bleed guard — sits at top, covers the safe-area (notch) zone.
     With viewport-fit=cover the page extends into the safe area, so without
     this guard, page content can bleed into the notch zone during URL bar
     minimize transitions. The guard's z-index is below nav so nav appears on top. */
  .ios-bleed-guard {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: env(safe-area-inset-top, 0);
    background: #080808;
    z-index: 99; /* below nav (100) */
    pointer-events: none;
  }
  .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
  }
  nav.scrolled {
    background: #080808; /* fully opaque so headline can't ghost through */
    border-color: var(--border);
    backdrop-filter: blur(12px);
    padding: 12px 48px;
  }
  .nav-logo {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none;
  }
  .nav-logo img {
    width: 40px; height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(200,57,15,0.4));
    transition: filter 0.3s;
  }
  .nav-logo:hover img { filter: drop-shadow(0 0 14px rgba(200,57,15,0.7)); }
  .nav-logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 0.15em;
    color: var(--white);
    line-height: 1;
  }
  .nav-logo-text span { color: var(--accent); }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--white); text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--accent); }
  .nav-cta {
    color: var(--black) !important;
    background: var(--white);
    padding: 10px 22px;
    transition: background 0.2s, color 0.2s !important;
  }
  .nav-cta:hover { background: var(--accent) !important; color: var(--white) !important; }
  .nav-toggle {
    display: none; flex-direction: column;
    gap: 5px; cursor: pointer; padding: 4px;
    position: relative;
    z-index: 101; /* above the open menu panel so it remains tappable */
    width: 32px;
    height: 28px;
    justify-content: center;
    align-items: center;
  }
  .nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: transform 0.3s ease, opacity 0.2s ease;
  }
  /* Hamburger → X morph when menu is open */
  .nav-toggle.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }
  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  /* HERO */
  #hero {
    min-height: 100vh;
    display: flex; flex-direction: column;
    /* Removed justify-content: flex-end — using margin-top: auto on hero-content instead
       so the V can sit at the top and content gets pushed to the bottom without
       any chance of overlap between them */
    padding: 100px 48px 88px;
    position: relative; overflow: hidden;
  }
  .hero-content {
    margin-top: auto; /* pushes content to bottom, leaving the V at the top */
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      linear-gradient(180deg, rgba(8,8,8,0.45) 0%, rgba(8,8,8,0.3) 40%, rgba(8,8,8,0.75) 100%),
      url('../img/trench_hero.jpeg') center center / cover no-repeat;
  }
  /* V logo as a normal flex child at the top of the hero — NOT absolutely positioned.
     This makes overlap with the headline/tagline structurally impossible: the V
     occupies real space, and .hero-content's margin-top: auto pushes the rest down. */
  .hero-logo-overlay {
    display: block;
    margin: 16px auto 0; /* small top gap from nav padding, horizontally centered */
    width: clamp(120px, 14vw, 190px);
    height: auto;
    z-index: 2;
    pointer-events: none;
    filter: drop-shadow(0 3px 8px rgba(0,0,0,0.45));
    animation: heroLogoDropIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
  }
  /* Clean drop with a sharp stop — no overshoot, no bounce */
  @keyframes heroLogoDropIn {
    from { opacity: 0; transform: translateY(-260px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @media (max-width: 768px) {
    .hero-logo-overlay {
      width: 110px;
      margin-top: 8px;
    }
  }
  @keyframes slowFloat {
    0%, 100% { transform: translateY(-54%); }
    50% { transform: translateY(-56%); }
  }

  .hero-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.35em; text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 20px;
    display: flex; align-items: center; gap: 12px;
    animation: fadeUp 0.8s ease both;
  }
  .hero-eyebrow::before {
    content: ''; display: inline-block;
    width: 28px; height: 1px; background: var(--accent-gold);
  }
  .hero-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(38px, 11vw, 118px);
    line-height: 0.91; letter-spacing: 0.02em;
    color: var(--white); position: relative;
    text-wrap: balance;
  }
  .hero-headline .line1 {
    display: block; overflow: hidden;
    animation: slamDown 0.35s cubic-bezier(0.2, 0, 0.3, 1) 0.5s both;
  }
  .hero-headline .line2 {
    display: block; overflow: hidden;
    animation: slamDown 0.4s cubic-bezier(0.15, 0, 0.2, 1.2) 0.75s both;
  }
  @keyframes slamDown {
    from { opacity: 0; transform: translateY(-80px) scaleY(1.3); }
    80% { transform: translateY(6px) scaleY(0.97); }
    to { opacity: 1; transform: translateY(0) scaleY(1); }
  }
  .hero-headline .red { color: var(--accent); }
  .hero-headline .outline {
    -webkit-text-stroke: 1.5px #2a2a2a;
    color: transparent;
  }
  .hero-sub {
    margin-top: 32px;
    font-size: 18px; font-weight: 300;
    color: var(--white); max-width: 500px; line-height: 1.65;
    animation: fadeUp 0.8s ease 0.2s both;
    text-shadow: 0 1px 8px rgba(0,0,0,0.6);
  }
  .hero-actions {
    margin-top: 44px; display: flex; gap: 20px; align-items: center;
    animation: fadeUp 0.8s ease 0.3s both;
  }
  .btn-primary {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px; font-weight: 700;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--white); background: var(--accent);
    padding: 16px 36px; text-decoration: none;
    display: inline-block; transition: all 0.2s;
    border: 1px solid var(--accent);
  }
  .btn-primary:hover { background: transparent; color: var(--accent); transform: translateY(-2px); }
  .btn-ghost {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px; font-weight: 600;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--light); text-decoration: none;
    display: flex; align-items: center; gap: 8px; transition: color 0.2s;
  }
  .btn-ghost:hover { color: var(--accent-gold); }
  .btn-ghost::after { content: '→'; transition: transform 0.2s; }
  .btn-ghost:hover::after { transform: translateX(4px); }
  /* Back buttons: suppress the trailing arrow (text already has ←) */
  button.btn-ghost::after { content: none; }
  /* Form back/next buttons */
  .form-step button.btn-ghost {
    background: transparent;
    border: 1px solid var(--border);
    padding: 16px 36px;
    cursor: pointer;
    color: var(--muted);
    justify-content: center;
    transition: all 0.2s;
  }
  .form-step button.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--white);
  }
  .hero-stats {
    position: absolute; right: 48px; bottom: 88px;
    display: flex; flex-direction: column; gap: 28px;
    animation: fadeUp 0.8s ease 0.4s both;
  }
  .stat-item { text-align: right; }
  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 40px; color: var(--white); line-height: 1;
  }
  .stat-num span { color: var(--accent); }
  .stat-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--muted);
  }

  /* TICKER */
  .ticker { background: #111111; border-top: 1px solid #2a2a2a; border-bottom: 1px solid #2a2a2a; padding: 16px 0; overflow: hidden; white-space: nowrap; }
  .ticker-track { display: inline-flex; animation: ticker 28s linear infinite; }
  .ticker-item {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px; font-weight: 700;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: #c8a96e; padding: 0 32px;
    display: inline-flex; align-items: center; gap: 32px;
  }
  .ticker-item::after { content: '✦'; font-size: 8px; color: #c8390f; opacity: 0.8; }

  /* SECTIONS */
  section { padding: 120px 48px; position: relative; }
  .section-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px; font-weight: 700;
    letter-spacing: 0.35em; text-transform: uppercase;
    color: var(--accent-gold); margin-bottom: 14px;
    display: flex; align-items: center; gap: 12px;
    opacity: 0; transform: translateX(-30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  .section-eyebrow::before {
    content: '→';
    color: var(--accent-gold);
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
  }
  .section-eyebrow.glitch-active {
    opacity: 1;
    transform: translateX(0);
  }
    20%  { clip-path: inset(0 40% 0 0); transform: translateX(3px); color: var(--accent); }
    30%  { clip-path: inset(0 20% 0 0); transform: translateX(-2px); }
    40%  { clip-path: inset(0 10% 0 0); transform: translateX(1px); color: #ff4020; }
    50%  { clip-path: inset(0 5% 0 0); transform: translateX(0); }
    60%  { clip-path: inset(40% 0 40% 0); color: var(--accent-gold); }
    70%  { clip-path: inset(20% 0 20% 0); transform: translateX(-1px); }
    80%  { clip-path: inset(10% 0 10% 0); transform: translateX(0); }
    90%  { clip-path: inset(2% 0 2% 0); }
    100% { clip-path: inset(0 0 0 0); opacity: 1; transform: translateX(0); color: var(--accent-gold); }
  }
  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(42px, 5.5vw, 76px);
    color: var(--white); line-height: 0.95; letter-spacing: 0.03em;
  }

  /* ABOUT */
  #about { background: var(--charcoal); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-top: 56px; }
  .manifesto-text { font-size: 19px; font-weight: 300; line-height: 1.7; color: var(--light); }
  .manifesto-text strong { color: var(--white); font-weight: 600; }
  .manifesto-text .highlight { color: var(--accent-gold); font-style: italic; }
  .divider { width: 40px; height: 2px; background: var(--accent); margin: 28px 0; }
  .values-list { display: flex; flex-direction: column; }
  .value-item {
    padding: 22px 0; border-bottom: 1px solid var(--border);
    display: flex; gap: 18px; align-items: flex-start;
  }
  .value-item:last-child { border-bottom: none; padding-bottom: 0; }
  .value-num {
    font-family: 'Bebas Neue', sans-serif; font-size: 12px;
    color: var(--accent); letter-spacing: 0.1em; min-width: 26px; margin-top: 3px;
  }
  .value-title {
    font-family: 'Barlow Condensed', sans-serif; font-size: 16px;
    font-weight: 700; color: var(--white); letter-spacing: 0.06em;
    text-transform: uppercase; margin-bottom: 5px;
  }
  .value-desc { font-size: 13px; color: var(--body); line-height: 1.6; }

  /* SERVICES */
  #services { background: var(--black); }
  .services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
  .service-card {
    background: var(--charcoal); padding: 44px 38px;
    position: relative; overflow: hidden; transition: background 0.3s;
  }
  .service-card:hover { background: var(--slate); }
  .service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: var(--accent); transform: scaleX(0); transition: transform 0.3s; transform-origin: left;
  }
  .service-card:hover::before { transform: scaleX(1); }
  .service-num { font-family: 'Bebas Neue', sans-serif; font-size: 11px; color: var(--muted); letter-spacing: 0.3em; margin-bottom: 14px; }
  .service-title {
    font-family: 'Barlow Condensed', sans-serif; font-size: 21px; font-weight: 700;
    color: var(--white); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 14px; line-height: 1.15;
  }
  .service-desc { font-size: 13px; color: var(--body); line-height: 1.7; margin-bottom: 24px; }
  .service-tags { display: flex; flex-wrap: wrap; gap: 7px; }
  .tag {
    font-family: 'Barlow Condensed', sans-serif; font-size: 9px; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--accent-gold); border: 1px solid rgba(200,169,110,0.25); padding: 3px 9px;
  }
  .equity-banner {
    margin-top: 44px; background: var(--slate); border: 1px solid var(--border);
    border-left: 3px solid var(--accent); padding: 28px 36px;
    display: flex; align-items: center; gap: 28px;
    flex-wrap: wrap;
  }
  .equity-label { font-family: 'Bebas Neue', sans-serif; font-size: 32px; color: var(--accent); line-height: 1.05; flex: 0 0 auto; }
  .equity-text { font-size: 14px; color: var(--body); line-height: 1.65; flex: 1 1 260px; min-width: 0; }
  /* On mobile when banner stacks to column, flex-basis applies to height — override */
  @media (max-width: 768px) {
    .equity-text { flex: 0 0 auto; }
  }
  .equity-text strong { color: var(--white); }

  @media (max-width: 768px) {
    .equity-banner {
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
      padding: 24px 20px;
    }
    .equity-label {
      font-size: 28px;
      white-space: normal;
    }
    .equity-text {
      font-size: 13px;
    }
  }

  /* PORTFOLIO */
  #portfolio { background: var(--charcoal); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .portfolio-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1px; background: var(--border); margin-top: 56px; border: 1px solid var(--border);
  }
  .portfolio-card { background: var(--slate); padding: 40px; transition: background 0.3s; }
  .portfolio-card:hover { background: #1e1e1e; }
  .portfolio-status {
    font-family: 'Barlow Condensed', sans-serif; font-size: 9px; font-weight: 700;
    letter-spacing: 0.25em; text-transform: uppercase;
    padding: 4px 10px; display: inline-block; margin-bottom: 20px;
  }
  .status-active { background: rgba(200,57,15,0.1); color: var(--accent-bright); border: 1px solid rgba(200,57,15,0.3); }
  .status-stealth { background: rgba(60,60,60,0.4); color: var(--muted); border: 1px solid var(--border); }
  .portfolio-company {
    font-family: 'Bebas Neue', sans-serif; font-size: 30px;
    color: var(--white); letter-spacing: 0.04em; line-height: 1.05; margin-bottom: 6px;
  }
  .portfolio-sector {
    font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 600;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px;
  }
  .portfolio-desc { font-size: 13px; color: var(--body); line-height: 1.65; margin-bottom: 20px; }
  .portfolio-impact {
    font-family: 'Barlow Condensed', sans-serif; font-size: 12px;
    font-weight: 600; color: var(--accent-gold); letter-spacing: 0.04em;
  }

  /* TEAM */
  #team { background: var(--black); }
  .team-section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px; font-weight: 700; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--muted); margin: 48px 0 24px;
    display: flex; align-items: center; gap: 16px;
  }
  .team-section-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }
  .team-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1px; background: var(--border); border: 1px solid var(--border);
  }
  .team-grid-2 { grid-template-columns: repeat(4, 1fr); }
  .team-card { background: var(--charcoal); padding: 36px; transition: background 0.3s; }
  .team-card:hover { background: var(--slate); }
  .team-avatar {
    width: 52px; height: 52px; background: var(--slate);
    border: 1px solid var(--border); margin-bottom: 20px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Bebas Neue', sans-serif; font-size: 18px;
    color: var(--accent); letter-spacing: 0.05em;
  }
  .team-name {
    font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700;
    color: var(--white); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 3px;
  }
  .team-role {
    font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 600;
    letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent-gold); margin-bottom: 14px;
  }
  .team-bio { font-size: 12px; color: var(--body); line-height: 1.65; }

  /* PARTNERS */
  #partners {
    background: var(--charcoal); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    padding: 72px 48px;
  }
  .partners-label {
    font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 600;
    letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted);
    text-align: center; margin-bottom: 40px;
  }
  .partners-row {
    display: flex; justify-content: center; align-items: center;
    flex-wrap: wrap; border: 1px solid var(--border);
  }
  .partner-item {
    padding: 24px 36px; border-right: 1px solid var(--border);
    font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); transition: color 0.2s;
  }
  .partner-item:last-child { border-right: none; }
  .partner-item:hover { color: var(--light); }

  /* CONTACT */
  #contact { background: var(--black); position: relative; overflow: hidden; }
  #contact::before {
    content: 'APPLY'; position: absolute; right: -30px; bottom: -80px;
    font-family: 'Bebas Neue', sans-serif; font-size: 300px;
    color: rgba(200,57,15,0.03); pointer-events: none; line-height: 1;
  }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-top: 56px; }
  .contact-grid > * { min-width: 0; }
  .contact-intro { font-size: 19px; font-weight: 300; color: var(--light); line-height: 1.7; margin-bottom: 36px; }
  .contact-intro strong { color: var(--white); font-weight: 600; }
  .criteria-list { display: flex; flex-direction: column; gap: 14px; }
  .criteria-item { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--body); }
  .criteria-item::before { content: '→'; color: var(--accent); font-size: 13px; margin-top: 3px; flex-shrink: 0; }
  .contact-form { display: block; }
  .form-group { display: flex; flex-direction: column; gap: 7px; }
  .form-label {
    font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 700;
    letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted);
  }

  /* Form fields */
  .form-input, .form-select, .form-textarea {
    background: var(--slate); border: 1px solid var(--border);
    color: var(--white); font-family: 'Barlow', sans-serif;
    font-size: 15px; font-weight: 300; padding: 14px 16px;
    outline: none; transition: border-color 0.2s, background 0.2s;
    -webkit-appearance: none; width: 100%;
    box-sizing: border-box;
    display: block;
    margin-bottom: 10px;
  }
  .form-input:hover, .form-select:hover, .form-textarea:hover {
    background: rgba(255,255,255,0.02);
  }
  .form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--accent); }
  .form-textarea { resize: vertical; min-height: 110px; }
  .form-select option { background: var(--slate); }

  /* Two-column row for paired short fields */
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
  .form-row > .form-input, .form-row > .form-select { margin-bottom: 0; }

  /* Section divider with label - groups fields visually */
  .form-section {
    margin-top: 28px; padding-top: 20px;
    border-top: 1px solid var(--border);
  }
  .form-section:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
  .form-section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 14px;
  }

  /* Conditional partner field wrappers - same visual rhythm as form-section */
  #partner-referral-fields, #partner-solutions-fields,
  #partner-investor-fields, #partner-strategic-fields {
    margin-top: 18px; padding-top: 18px;
    border-top: 1px solid var(--border);
  }

  .btn-submit {
    font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--black); background: var(--white);
    border: 1px solid var(--white); padding: 16px 36px;
    cursor: pointer; transition: all 0.2s; align-self: flex-start;
  }
  .btn-submit:hover { background: var(--accent); border-color: var(--accent); color: var(--white); transform: translateY(-2px); }

  /* FOOTER */
  footer {
    background: var(--charcoal); border-top: 1px solid var(--border);
    padding: 40px 48px;
  }
  .footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto;
    gap: 12px 0;
    align-items: center;
  }
  .footer-brand { grid-column: 1; grid-row: 1; }
  .footer-socials { grid-column: 2; grid-row: 1; justify-content: center; }
  .footer-links { grid-column: 3; grid-row: 1; justify-content: flex-end; }
  .footer-copy {
    grid-column: 1 / -1; grid-row: 2;
    text-align: center;
    padding-top: 8px;
    border-top: 1px solid var(--border);
  }
  .footer-brand { display: flex; align-items: center; gap: 12px; }
  .footer-brand img { width: 32px; height: 32px; object-fit: contain; opacity: 0.85; }
  .footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 0.14em; color: var(--white); }
  .footer-logo span { color: var(--accent); }
  .footer-copy { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }
  .footer-links { display: flex; gap: 24px; list-style: none; }
  .footer-links a {
    font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase; color: var(--white);
    text-decoration: none; transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--accent); }

  /* ANIMATIONS */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  @media (max-width: 960px) {
    nav, nav.scrolled { padding: 18px 24px; }
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    #hero { padding: 100px 24px 60px; min-height: 85vh; }
    .hero-bg { background-image: linear-gradient(180deg, rgba(8,8,8,0.45) 0%, rgba(8,8,8,0.3) 40%, rgba(8,8,8,0.75) 100%), url('../img/trench_hero_mobile.jpeg'); background-size: cover; background-position: center center; background-repeat: no-repeat; }
    .hero-actions { flex-direction: column; align-items: stretch; gap: 14px; }
    .hero-actions .btn-primary, .hero-actions .btn-ghost { text-align: center; justify-content: center; }
    .hero-stats { display: none; }
    section { padding: 60px 24px; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 24px; }
    .services-grid, .portfolio-grid { grid-template-columns: 1fr; }
    .team-grid, .team-grid-2 { grid-template-columns: 1fr 1fr; }
    .services-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .equity-banner { flex-direction: column; gap: 14px; }
    .form-row { grid-template-columns: 1fr; }
    .partner-item { border-bottom: 1px solid var(--border); border-right: none; width: 50%; text-align: center; }
    #partners { padding: 60px 24px; }
  }
  @media (max-width: 560px) {
    .team-grid, .team-grid-2 { grid-template-columns: 1fr; }
  }

  /* PORTFOLIO - UPDATED */
  #portfolio { background: var(--charcoal); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .portfolio-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1px; background: var(--border); margin-top: 56px; border: 1px solid var(--border);
  }
  .portfolio-card {
    background: var(--slate); padding: 40px 36px;
    transition: background 0.3s; display: flex; flex-direction: column; gap: 0;
  }
  .portfolio-card:hover { background: #1e1e1e; }
  .stealth-card { opacity: 0.65; }
  .stealth-card:hover { opacity: 0.9; }

  .portfolio-logo-wrap {
    height: 90px; display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px; border-bottom: 1px solid var(--border); padding-bottom: 20px;
    overflow: hidden;
  }
  .portfolio-wordmark {
    display: flex; flex-direction: column; gap: 4px;
  }
  .wm-icon { font-size: 22px; line-height: 1; margin-bottom: 6px; }
  .wm-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px; letter-spacing: 0.08em; line-height: 1;
    color: var(--white); display: block;
  }
  .wm-text em { font-style: normal; }
  .wm-sub {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px; font-weight: 600; letter-spacing: 0.2em;
    display: block; margin-top: 2px;
  }
  .wm-tagline {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px; font-weight: 600; letter-spacing: 0.25em;
    text-transform: uppercase; color: var(--muted); margin-top: 2px;
  }

  /* Per-brand color accents */
  .xcalibur .wm-icon { color: var(--accent); }
  .xcalibur .wm-text { color: var(--white); }
  .xcalibur .wm-text em { color: var(--accent-gold); }

  .noknot .wm-text { color: var(--white); letter-spacing: 0.12em; }
  .noknot .wm-text em { color: #4da6d9; }
  .noknot .wm-sub { color: #4da6d9; opacity: 0.7; }

  .landcloud .wm-text { color: var(--white); }
  .landcloud .wm-text em { color: #6db86d; }
  .landcloud .wm-tagline { color: #6db86d; opacity: 0.6; }

  .stealth .wm-text {
    color: var(--accent); letter-spacing: 0.25em;
    -webkit-text-stroke: 0px;
    text-shadow: 0 0 20px rgba(200,57,15,0.3);
  }

  .portfolio-sector {
    font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 600;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px;
  }
  .portfolio-desc { font-size: 13px; color: var(--body); line-height: 1.7; }

  @media (max-width: 960px) {
    .portfolio-grid { grid-template-columns: 1fr; }
  }


  /* Real portco logos */
  .portco-logo {
    max-height: 64px;
    max-width: 80%;
    width: auto;
    object-fit: contain;
    object-position: center center;
  }
  /* Xcalibur is black on white - invert to white on dark */
  .xcalibur-logo {
    filter: invert(1) brightness(1.1);
    max-height: 56px;
  }
  .noknot-logo {
    max-height: 56px;
    max-width: 85%;
  }


  .landcloud-logo {
    max-height: 64px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
  }
  @keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-60px); }
    to { opacity: 1; transform: translateX(0); }
  }


  /* Quote card */
  .quote-card {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    background: var(--black) !important;
    border-left: 3px solid var(--accent) !important;
    padding: 48px 40px !important;
    position: relative;
  }
  .quote-card:hover { background: #0f0f0f !important; }
  .quote-mark {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 96px; line-height: 0.7;
    color: var(--accent); opacity: 0.4;
    margin-bottom: 16px;
  }
  .quote-text {
    font-family: 'Barlow', sans-serif;
    font-size: 16px; font-weight: 300;
    font-style: italic;
    color: var(--light);
    line-height: 1.75;
    margin: 0 0 20px 0;
    border: none; padding: 0;
  }
  .quote-author {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--accent-gold);
  }


  .team-avatar-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(200,57,15,0.3));
  }


  .founders-statement {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
    line-height: 1.3;
  }
  .founders-statement em {
    font-style: normal;
    color: var(--accent);
  }


  /* ── AESTHETIC UPGRADES ─────────────────────────────── */
    50% { opacity: 1; transform: scaleY(1); }
  }

  /* Portfolio card hover lift + glow - ALL cards */
  .portfolio-card {
    transition: background 0.3s, transform 0.25s ease, box-shadow 0.25s ease !important;
  }
  .portfolio-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 12px 40px rgba(200,57,15,0.25), 0 0 0 1px rgba(200,57,15,0.15) !important;
    background: #1e1e1e !important;
  }
  .stealth-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 12px 40px rgba(200,57,15,0.2), 0 0 0 1px rgba(200,57,15,0.12) !important;
  }
  .quote-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 12px 40px rgba(200,57,15,0.2) !important;
  }

  /* Team card red glow on hover */
  .team-card {
    transition: background 0.3s, box-shadow 0.3s !important;
    position: relative;
  }
  .team-card:hover {
    background: var(--slate) !important;
    box-shadow: 0 0 30px rgba(200,57,15,0.15), inset 0 0 0 1px rgba(200,57,15,0.2);
  }
  .team-card:hover .team-avatar {
    border-color: var(--accent);
    box-shadow: 0 0 16px rgba(200,57,15,0.5);
  }
  .team-card:hover .team-avatar-logo {
    filter: drop-shadow(0 0 8px rgba(200,57,15,0.8));
  }
  .team-avatar {
    transition: border-color 0.3s, box-shadow 0.3s;
  }
  .team-avatar-logo {
    transition: filter 0.3s;
  }

  /* Apply Now button pulse */
  .nav-cta {
    animation: ctaPulse 3s ease-in-out infinite;
  }
  @keyframes ctaPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(200,57,15,0); }
    50% { box-shadow: 0 0 0 6px rgba(200,57,15,0.15); }
  }

  /* Form input red glow on focus */
  .form-input:focus,
  .form-select:focus,
  .form-textarea:focus {
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 3px rgba(200,57,15,0.1), 0 0 12px rgba(200,57,15,0.08);
    outline: none;
  }

  /* Section eyebrow larger */
  .section-eyebrow {
    font-size: 12px !important;
  }

  /* Scroll reveal stagger for team cards */
  .team-card:nth-child(1) { transition-delay: 0.05s; }
  .team-card:nth-child(2) { transition-delay: 0.1s; }
  .team-card:nth-child(3) { transition-delay: 0.15s; }
  .team-card:nth-child(4) { transition-delay: 0.05s; }
  .team-card:nth-child(5) { transition-delay: 0.1s; }
  .team-card:nth-child(6) { transition-delay: 0.15s; }
  .team-card:nth-child(7) { transition-delay: 0.2s; }

  /* Service card hover glow */
  .service-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  }


  /* Footer socials */
  .footer-socials {
    display: flex;
    gap: 20px;
    align-items: center;
  }
  .social-link {
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
  }
  .social-link:hover {
    color: var(--accent);
    transform: translateY(-2px);
  }

  @media (max-width: 960px) {
    .footer-inner {
      grid-template-columns: 1fr;
      grid-template-rows: auto;
      text-align: center;
      gap: 20px;
    }
    .footer-brand { grid-column: 1; grid-row: 1; justify-content: center; display: flex; }
    .footer-links { grid-column: 1; grid-row: 2; justify-content: center; }
    .footer-socials { grid-column: 1; grid-row: 3; justify-content: center; }
    .footer-copy { grid-column: 1; grid-row: 4; border-top: 1px solid var(--border); padding-top: 12px; }
  }


  .global-network { margin-top: 32px; padding: 20px 0 8px; border-top: 1px solid var(--border); overflow: hidden; }
  .network-svg { width: 100%; height: auto; display: block; }


  /* Hero tagline */
  .hero-tagline {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px; font-weight: 700;
    letter-spacing: 0.35em; text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 28px;
    display: block;
    text-indent: 0;
    animation: slideInLeft 0.6s cubic-bezier(0.2, 0, 0.1, 1) 0.2s both;
    text-shadow: 0 1px 8px rgba(0,0,0,0.6);
    padding: 0;
  }
  .hero-tagline::before { content: none; display: none; }
  .hero-tagline::after { content: none; display: none; }


  @media (max-width: 960px) {
    .values-list { margin-top: 8px; }
    .value-item { padding: 18px 0; }
    .value-num { font-size: 11px; min-width: 24px; }
    .value-title { font-size: 15px; }
    .value-desc { font-size: 13px; }
    .about-grid { padding-bottom: 0; }
    .values-list.reveal { margin-bottom: 0; padding-bottom: 0; }

    /* Stagger animation for value items on mobile */
    .value-item:nth-child(1) { animation: fadeUp 0.5s ease 0.1s both; }
    .value-item:nth-child(2) { animation: fadeUp 0.5s ease 0.2s both; }
    .value-item:nth-child(3) { animation: fadeUp 0.5s ease 0.3s both; }
    .value-item:nth-child(4) { animation: fadeUp 0.5s ease 0.4s both; }
  }


  @media (max-width: 960px) {
    body { font-size: 16px; }
    .section-eyebrow { font-size: 13px; letter-spacing: 0.18em; }
    .section-title { font-size: clamp(38px, 9vw, 62px); line-height: 0.95; }
    .manifesto-text { font-size: 17px; line-height: 1.7; }
    .founders-statement { font-size: 19px; }
    .service-title { font-size: 19px; }
    .service-desc { font-size: 15px; }
    .portfolio-desc { font-size: 15px; }
    .equity-label { font-size: 28px; }
    .equity-text { font-size: 15px; }
    .team-name { font-size: 17px; }
    .criteria-item { font-size: 15px; line-height: 1.6; }
    .contact-intro { font-size: 17px; }
    .hero-sub { font-size: 17px; }
    .value-title { font-size: 16px; }
    .value-desc { font-size: 14px; }
    .portfolio-sector { font-size: 11px; }
    .services-header > p { font-size: 15px; }
    section > p { font-size: 16px; }
  }


  .global-network {
    margin-top: 40px;
    padding: 28px 0 8px;
    border-top: 1px solid var(--border);
    overflow: hidden;
  }
  .network-svg { width: 100%; height: auto; display: block; }


  .global-network {
    margin-top: 48px;
    padding: 40px 48px 32px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    background: var(--charcoal);
  }
  .network-svg { width: 100%; height: auto; display: block; max-width: 1200px; margin: 0 auto; }

  @media (max-width: 960px) {
    .global-network {
      margin-top: 32px;
      padding: 28px 16px 20px;
    }
  }

  /* Global Reach — mobile vertical reflow */
  .network-mobile { display: none; }
  @media (max-width: 767px) {
    .network-svg { display: none; }
    .network-mobile {
      display: block;
      padding: 12px 0 4px;
    }
    .network-mobile-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 6px;
      color: #555;
      text-align: center;
      margin-bottom: 28px;
      text-transform: uppercase;
    }
    .network-cities {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 22px;
      padding-left: 24px;
      max-width: 280px;
      margin: 0 auto;
    }
    .network-cities::before {
      content: '';
      position: absolute;
      left: 4px;
      top: 8px;
      bottom: 8px;
      width: 1.5px;
      background: rgba(200,57,15,0.4);
    }
    .network-city {
      display: flex;
      align-items: center;
      gap: 18px;
      position: relative;
    }
    .city-dot {
      display: block;
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: #c8390f;
      box-shadow: 0 0 0 4px rgba(200,57,15,0.15), 0 0 12px rgba(255,51,0,0.5);
      margin-left: -4.5px;
      flex-shrink: 0;
      animation: cityPulse 6s ease-in-out infinite;
    }
    .network-city:nth-child(1) .city-dot { animation-delay: 0s; }
    .network-city:nth-child(2) .city-dot { animation-delay: 2s; }
    .network-city:nth-child(3) .city-dot { animation-delay: 4s; }
    .city-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 22px;
      font-weight: 700;
      letter-spacing: 1px;
      color: #fff;
    }
  }
  @keyframes cityPulse {
    0%, 100% { background: #c8390f; box-shadow: 0 0 0 4px rgba(200,57,15,0.15), 0 0 12px rgba(255,51,0,0.4); }
    50% { background: #ff3300; box-shadow: 0 0 0 4px rgba(255,51,0,0.3), 0 0 24px rgba(255,51,0,1); }
  }


  .portfolio-card {
    display: flex;
    flex-direction: column;
  }
  .portfolio-desc {
    flex: 1;
  }
  /* Linked portfolio cards (e.g. Xcalibur) — inherit text color, no underline, subtle hover */
  a.portfolio-card-link {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    transition: background-color 0.25s ease;
  }
  a.portfolio-card-link::after {
    content: '\2197';
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 16px;
    color: var(--muted);
    opacity: 0;
    transform: translate(-4px, 4px);
    transition: opacity 0.25s ease, transform 0.25s ease, color 0.25s ease;
    pointer-events: none;
  }
  a.portfolio-card-link:hover::after {
    opacity: 1;
    transform: translate(0, 0);
    color: var(--accent);
  }
  a.portfolio-card-link:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: -2px;
  }


  #about { padding-bottom: 0; }
  #about .global-network { margin-top: 48px; }


  @media (max-width: 960px) {
    .portfolio-wordmark.stealth .wm-text {
      font-size: 36px !important;
      letter-spacing: 0.3em !important;
    }
  }


  .team-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
    justify-content: center;
  }
  .expertise-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #666;
    border: 1px solid #2a2a2a;
    padding: 3px 8px;
    transition: color 0.2s, border-color 0.2s;
  }
  .team-card:hover .expertise-tag {
    color: var(--accent-gold);
    border-color: rgba(200,169,110,0.25);
  }


  /* Form toggle */
  .form-toggle {
    display: flex;
    gap: 0;
    margin-bottom: 28px;
    border: 1px solid var(--border);
    width: fit-content;
    max-width: 100%;
  }
  .toggle-btn {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    padding: 10px 28px;
    background: transparent;
    color: var(--muted);
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    flex: 1 1 auto;
    min-width: 0;
  }
  @media (max-width: 480px) {
    .form-toggle { width: 100%; }
    .toggle-btn { padding: 10px 8px; font-size: 11px; letter-spacing: 0.15em; }
  }
  .toggle-btn.active {
    background: var(--white);
    color: var(--black);
  }
  .toggle-btn:hover:not(.active) {
    color: var(--white);
  }

  /* Success state */
  .form-success {
    text-align: center;
    padding: 60px 40px;
    border: 1px solid var(--border);
  }
  .success-icon {
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 20px;
  }
  .success-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 16px;
  }
  .success-msg {
    font-size: 16px;
    color: var(--body);
    line-height: 1.7;
    max-width: 360px;
    margin: 0 auto;
  }


  .step-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 20px;
  }
  .form-step { animation: fadeUp 0.3s ease; }


  .file-upload-wrap {
    margin-bottom: 16px;
  }
  .file-upload-label {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
  }
  .file-input {
    display: none;
  }
  .file-upload-btn {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--black);
    background: var(--white);
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
  }
  .file-upload-label:hover .file-upload-btn {
    background: var(--accent);
    color: var(--white);
  }
  .file-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.1em;
  }


  .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    margin: 16px 0;
  }
  .checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--accent);
    flex-shrink: 0;
    cursor: pointer;
  }
  .checkbox-label span {
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
  }


  .form-statement {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent-gold);
    padding: 16px 20px;
    margin: 20px 0;
  }
  .form-statement p {
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 12px;
  }
  .form-statement p:last-of-type { margin-bottom: 12px; }
  .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    margin: 0;
  }
  .checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--accent);
    flex-shrink: 0;
    cursor: pointer;
  }
  .checkbox-label span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--white);
    line-height: 1.6;
  }
