
    /* ─── Fonts ──────────────────────────────────────────────── */
    @font-face {
      font-family: 'FG';
      src: url('fonts/fgatf/FranklinGothicATF-Light.otf') format('opentype');
      font-weight: 300;
      font-display: swap;
    }
    @font-face {
      font-family: 'FG';
      src: url('fonts/fgatf/FranklinGothicATF-Regular.otf') format('opentype');
      font-weight: 400;
      font-display: swap;
    }
    @font-face {
      font-family: 'FG';
      src: url('fonts/fgatf/FranklinGothicATF-Medium.otf') format('opentype');
      font-weight: 500;
      font-display: swap;
    }
    @font-face {
      font-family: 'FG';
      src: url('fonts/fgatf/FranklinGothicATF-Bold.otf') format('opentype');
      font-weight: 700;
      font-display: swap;
    }
    @font-face {
      font-family: 'FG';
      src: url('fonts/fgatf/FranklinGothicATF-Heavy.otf') format('opentype');
      font-weight: 900;
      font-display: swap;
    }

    /* ─── Reset ──────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    img, video { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    ul { list-style: none; }
    button { background: none; border: none; cursor: pointer; color: inherit; font: inherit; }

    /* ─── Root ───────────────────────────────────────────────── */
    :root {
      --white: #fff;
      --off: #999;
      --dim: #4a4a4a;
      --rule: rgba(255,255,255,.07);
      --bg: #000;
      --fg: #fff;
      --f: 'FG', 'Franklin Gothic Medium', Arial, sans-serif;
      --space-xl: clamp(160px, 20vw, 300px);
      --space-lg: clamp(120px, 15vw, 220px);
      --space-md: clamp(80px, 10vw, 150px);
      --space-sm: clamp(48px, 6vw, 80px);
      --ease: cubic-bezier(.16,1,.3,1);
    }

    body {
      background: var(--bg);
      color: var(--fg);
      font-family: var(--f);
      font-weight: 400;
      font-size: 13px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }

    /* ─── Grain overlay ─────────────────────────────────────── */
    body::after {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 9999;
      opacity: .024;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
      background-size: 180px;
    }

    /* ─── Custom cursor ─────────────────────────────────────── */
    .cursor-dot {
      position: fixed;
      pointer-events: none;
      z-index: 10000;
      mix-blend-mode: difference;
      opacity: 0;
      transition: opacity .4s, transform .12s ease-out;
      transform: translate(-50%, -50%);
      font-family: 'Webdings';
      font-size: 18px;
      color: var(--fg);
      line-height: 1;
    }
    .cursor-dot.visible { opacity: 1; }
    @media (hover: none), (pointer: coarse) {
      .cursor-dot { display: none; }
    }

    /* ─── Utility ────────────────────────────────────────────── */
    .container { max-width: 1320px; margin: 0 auto; padding: 0 clamp(24px, 5vw, 80px); }
    .label {
      font-size: 10px;
      font-weight: 300;
      letter-spacing: .35em;
      text-transform: uppercase;
      color: var(--dim);
    }

    /* ─── Navigation ─────────────────────────────────────────── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 32px clamp(24px, 5vw, 80px);
      mix-blend-mode: difference;
      transition: transform .5s var(--ease);
    }
    nav.nav-hidden { transform: translateY(-100%); }

    .logo { display: flex; align-items: center; gap: 10px; }
    .logo img { height: 28px; width: auto; }

    .nav-links { display: flex; gap: 36px; }
    .nav-links a {
      font-size: 10px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase;
      color: var(--off); position: relative; transition: color .3s;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -4px; left: 0;
      width: 0; height: 1px; background: var(--fg);
      transition: width .35s var(--ease);
    }
    .nav-links a:hover { color: var(--fg); }
    .nav-links a:hover::after { width: 100%; }

    .nav-cta {
      font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
      padding: 10px 24px;
      border: 1px solid rgba(255,255,255,.25);
      transition: background .3s, color .3s;
    }
    .nav-cta:hover { background: var(--fg); color: var(--bg); }

    .mob-cta-pill {
      display: none;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: .22em;
      text-transform: uppercase;
      padding: 8px 14px;
      border: 1px solid rgba(255,255,255,.35);
      margin-right: 10px;
      color: var(--fg);
    }
    .mob-cta-pill:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); }


    .nav-hamburger { display: none; }
    .nav-hamburger span { display: block; width: 22px; height: 1px; background: var(--fg); transition: transform .3s ease, opacity .3s ease; transform-origin: center; }
    .nav-hamburger span + span { margin-top: 6px; }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mob-nav {
      position: fixed; inset: 0; z-index: 150;
      background: var(--bg);
      display: flex; flex-direction: column;
      padding: 120px clamp(24px, 8vw, 80px) 60px;
      opacity: 0; pointer-events: none;
      transform: translateY(-12px);
      transition: opacity .35s ease, transform .35s ease;
    }
    .mob-nav.open { opacity: 1; pointer-events: all; transform: translateY(0); }
    .mob-nav-links { display: flex; flex-direction: column; gap: 32px; flex: 1; }
    .mob-nav-links a {
      font-size: clamp(28px, 9vw, 52px);
      font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
      color: var(--fg); line-height: 1; transition: color .25s;
    }
    .mob-nav-links a:hover { color: var(--off); }
    .mob-nav-cta {
      display: inline-block;
      font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
      padding: 14px 32px;
      border: 1px solid rgba(255,255,255,.4);
      align-self: flex-start;
      transition: background .3s, color .3s;
    }
    .mob-nav-cta:hover { background: var(--fg); color: var(--bg); }

    /* ─── Buttons ────────────────────────────────────────────── */
    .btn {
      display: inline-block;
      font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
      padding: 14px 32px;
      border: 1px solid rgba(255,255,255,.2);
      transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
    }
    .btn:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); }
    .btn--fill { background: var(--fg); color: var(--bg); border-color: var(--fg); }
    .btn--fill:hover { background: transparent; color: var(--fg); }

    .btn--link {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 10px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase;
      padding: 0; border: none; color: var(--off);
      transition: color .3s;
    }
    .btn--link::after {
      content: '\2192'; font-size: 13px;
      transition: transform .3s var(--ease);
    }
    .btn--link:hover { color: var(--fg); background: none; }
    .btn--link:hover::after { transform: translateX(4px); }

    /* ─── Page hero strip ────────────────────────────────────── */
    .page-hero {
      min-height: 60vh;
      display: flex; flex-direction: column; justify-content: flex-end;
      padding: clamp(140px, 18vh, 200px) clamp(24px, 5vw, 80px) clamp(56px, 8vw, 96px);
      border-bottom: 1px solid var(--rule);
    }
    .page-hero .label { margin-bottom: 20px; }
    .page-hero h1 {
      font-weight: 700;
      font-size: clamp(48px, 9vw, 140px);
      letter-spacing: .02em;
      line-height: .9;
      text-transform: uppercase;
      max-width: 1200px;
    }
    .page-hero .page-sub {
      margin-top: clamp(28px, 4vw, 48px);
      font-weight: 300;
      font-size: clamp(16px, 2vw, 24px);
      line-height: 1.4;
      color: var(--off);
      max-width: 720px;
      letter-spacing: .01em;
    }

    /* ─── Section rhythm ─────────────────────────────────────── */
    .section { padding: var(--space-md) 0; }

    .section-head { margin-bottom: clamp(56px, 9vw, 110px); }
    .section-head h2 {
      font-weight: 700;
      font-size: clamp(32px, 5vw, 64px);
      letter-spacing: .03em;
      line-height: .95;
      margin-top: 16px;
    }

    .section-rule { width: 32px; height: 1px; background: var(--dim); margin-top: 32px; }
    .section-divider { width: 100%; height: 1px; background: var(--rule); }

    /* ─── Stance ─────────────────────────────────────────────── */
    .stance-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(40px, 6vw, 96px);
    }
    .stance-col h4 {
      font-size: 10px; font-weight: 700; letter-spacing: .3em; text-transform: uppercase;
      color: var(--dim);
      margin-bottom: 28px;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--rule);
    }
    .stance-col h3 {
      font-weight: 700;
      font-size: clamp(22px, 2.6vw, 32px);
      letter-spacing: .02em;
      line-height: 1.15;
      margin-bottom: 24px;
    }
    .stance-col ul li {
      font-size: 14px; color: var(--off); line-height: 1.7;
      padding: 14px 0;
      border-bottom: 1px solid var(--rule);
    }

    /* ─── Individual services index ──────────────────────────── */
    .svc-index-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1px;
      background: var(--rule);
      border: 1px solid var(--rule);
    }
    .svc-col {
      background: var(--bg);
      padding: clamp(28px, 3vw, 40px);
      display: flex; flex-direction: column;
    }
    .svc-col h4 {
      font-size: 10px; font-weight: 700; letter-spacing: .3em;
      text-transform: uppercase; color: var(--fg);
      margin-bottom: 8px;
    }
    .svc-col .svc-col-line {
      width: 24px; height: 1px; background: var(--off);
      margin-bottom: 16px;
    }
    .svc-col .svc-tier-desc {
      font-size: 11px; color: var(--dim); line-height: 1.5;
      margin-bottom: 24px; letter-spacing: .02em;
      min-height: 2.4em;
    }
    .svc-col ul { flex: 1; }
    .svc-col li {
      display: flex; align-items: baseline; gap: 12px;
      padding: 11px 0;
      border-bottom: 1px solid var(--rule);
      transition: color .3s;
      color: var(--off);
    }
    .svc-col li:last-child { border-bottom: none; }
    .svc-col li:hover { color: var(--fg); }
    .svc-col li .svc-num {
      font-size: 9px; font-weight: 300; color: var(--dim);
      letter-spacing: .14em;
      min-width: 18px;
    }
    .svc-col li .svc-name {
      font-size: 13px; font-weight: 500;
      letter-spacing: .02em;
      flex: 1;
    }
    .svc-col li .svc-turn {
      font-size: 9px; font-weight: 300; color: var(--dim);
      letter-spacing: .14em; text-transform: uppercase;
      white-space: nowrap;
    }
    .svc-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: var(--rule);
      border: 1px solid var(--rule);
      margin-bottom: clamp(32px, 4vw, 48px);
    }
    .svc-stat {
      background: var(--bg);
      padding: clamp(20px, 2vw, 28px);
      text-align: left;
    }
    .svc-stat .num {
      font-size: clamp(32px, 4vw, 48px); font-weight: 300;
      line-height: 1; color: var(--fg);
      display: block; margin-bottom: 8px;
    }
    .svc-stat .lbl {
      font-size: 9px; font-weight: 700; letter-spacing: .3em;
      text-transform: uppercase; color: var(--dim);
    }
    @media (max-width: 600px) {
      .svc-stats { grid-template-columns: 1fr 1fr; }
    }

    /* ─── Process strip ──────────────────────────────────────── */
    .process-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 1px;
      background: var(--rule);
      border: 1px solid var(--rule);
    }
    .process-step {
      background: var(--bg);
      padding: clamp(28px, 3vw, 44px);
      display: flex; flex-direction: column; gap: 20px;
      min-height: 180px;
    }
    .process-step .num {
      font-size: 11px; font-weight: 300; color: var(--dim);
      letter-spacing: .2em;
    }
    .process-step h4 {
      font-weight: 700;
      font-size: clamp(16px, 1.8vw, 22px);
      letter-spacing: .04em;
      line-height: 1.15;
      text-transform: uppercase;
    }
    .process-step p {
      font-size: 12px; color: var(--off); line-height: 1.65;
      margin-top: auto;
    }

    /* ─── Final CTA ──────────────────────────────────────────── */
    .final-cta {
      text-align: center;
      padding: var(--space-lg) clamp(24px, 5vw, 80px);
    }
    .final-cta h2 {
      font-weight: 900;
      font-size: clamp(48px, 10vw, 140px);
      letter-spacing: .02em;
      line-height: .88;
      margin: 16px 0 24px;
    }
    .final-cta p {
      font-size: 14px; color: var(--off); line-height: 1.75;
      max-width: 460px; margin: 0 auto clamp(40px, 5vw, 56px);
      letter-spacing: .02em;
    }

    /* ─── Marquee ─────────────────────────────────────────────── */
    .marquee {
      overflow: hidden;
      padding: var(--space-sm) 0;
      border-top: 1px solid var(--rule);
    }
    .marquee-track {
      display: flex; align-items: center; width: max-content;
      animation: marquee-scroll 35s linear infinite;
      will-change: transform;
    }
    .marquee-track:hover { animation-play-state: paused; }
    .marquee-text {
      font-weight: 900;
      font-size: clamp(48px, 8vw, 110px);
      letter-spacing: .04em;
      text-transform: uppercase;
      white-space: nowrap;
      padding: 0 clamp(20px, 3vw, 40px);
      color: rgba(255,255,255,.04);
      transition: color .6s;
    }
    .marquee:hover .marquee-text { color: rgba(255,255,255,.1); }
    .marquee-dot {
      width: 5px; height: 5px; border-radius: 50%;
      background: rgba(255,255,255,.08); flex-shrink: 0;
    }
    @keyframes marquee-scroll {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    /* ─── Footer ──────────────────────────────────────────────── */
    footer {
      padding: clamp(64px, 10vw, 120px) clamp(24px, 5vw, 80px) clamp(32px, 4vw, 48px);
    }

    .footer-grid {
      max-width: 1320px; margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 80px;
    }

    .footer-brand-name {
      font-weight: 700; font-size: 18px; letter-spacing: .22em;
      text-transform: uppercase;
      margin-bottom: 16px; display: block;
    }

    .footer-brand p {
      font-size: 12px; color: var(--off); line-height: 1.75;
      max-width: 260px; margin-bottom: 20px;
    }

    .footer-col h5 {
      font-size: 9px; font-weight: 700; letter-spacing: .3em;
      text-transform: uppercase; color: var(--dim);
      margin-bottom: 20px;
    }

    .footer-col ul { display: flex; flex-direction: column; gap: 10px; }

    .footer-col a {
      font-size: 12px; color: var(--off);
      transition: color .3s;
    }
    .footer-col a:hover { color: var(--fg); }

    .footer-bottom {
      max-width: 1320px; margin: 0 auto;
      display: flex; justify-content: space-between; align-items: center;
      padding-top: 32px;
      border-top: 1px solid var(--rule);
      flex-wrap: wrap; gap: 16px;
    }

    .footer-bottom p {
      font-size: 10px; color: var(--dim); letter-spacing: .06em;
    }

    .footer-socials { display: flex; gap: 20px; align-items: center; }

    .footer-socials a {
      display: flex; align-items: center; justify-content: center;
      width: 20px; height: 20px;
      color: var(--dim); transition: color .3s;
    }
    .footer-socials a:hover { color: var(--fg); }
    .footer-socials svg { width: 16px; height: 16px; fill: currentColor; }

    /* ─── Scroll reveal (upgraded: smoother, connected) ─────── */
    .r {
      opacity: 0;
      transform: translateY(32px);
      transition:
        opacity .95s cubic-bezier(.22, 1, .36, 1),
        transform 1.05s cubic-bezier(.22, 1, .36, 1);
      transition-delay: var(--r-delay, 0s);
      will-change: opacity, transform;
    }
    .r.v { opacity: 1; transform: translateY(0); }

    /* Preserve existing manual stagger classes where used */
    .r-stagger > .r:nth-child(1) { --r-delay: 0s; }
    .r-stagger > .r:nth-child(2) { --r-delay: .07s; }
    .r-stagger > .r:nth-child(3) { --r-delay: .14s; }
    .r-stagger > .r:nth-child(4) { --r-delay: .21s; }
    .r-stagger > .r:nth-child(5) { --r-delay: .28s; }
    .r-stagger > .r:nth-child(6) { --r-delay: .35s; }

    /* Page-load fade — connects navigation between pages */
    @keyframes page-in {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    body { animation: page-in .55s ease-out both; }

    /* Honor reduced motion */
    @media (prefers-reduced-motion: reduce) {
      .r, .r-stagger > .r {
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
      }
      body { animation: none !important; }
      *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
      }
    }

    /* ─── Responsive ─────────────────────────────────────────── */
    @media (max-width: 960px) {
      .nav-links, .nav-cta { display: none; }
      .nav-hamburger { display: block; } .mob-cta-pill { display: inline-block; }

      .stance-grid { grid-template-columns: 1fr; gap: clamp(48px, 8vw, 80px); }
      .process-grid { grid-template-columns: 1fr; }
      .svc-index-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 600px) {
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .svc-index-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 440px) {
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
    }
  
.inline-style-c2d4d6 { margin-top:28px; max-width:760px; font-size:clamp(16px,1.6vw,19px); line-height:1.55; color:var(--dim); }
.inline-style-efb03b { margin-top:24px; max-width:680px; font-size:clamp(15px,1.4vw,17px); line-height:1.6; color:var(--dim); }
.inline-style-9f3607 { margin-top:clamp(32px,4vw,48px); font-size:12px; color:var(--dim); letter-spacing:.14em; text-transform:uppercase; text-align:center; }
.inline-style-213b8c { margin-top:clamp(24px,3vw,32px); text-align:center; }
.inline-style-523976 { margin-top:clamp(64px,8vw,96px); max-width:1000px; }
.inline-style-da93e4 { margin-top:20px; font-size:13px; letter-spacing:.04em; }
.inline-style-b34b65 { height:32px; width:auto; margin-bottom:14px; display:block; }