    :root {
      --ink: #0a0b0e;
      --paper: #efebe2;
      --white: #f8f4ec;
      --orange: #ed6331;
      --mint: #b7d2c5;
      --line-dark: rgba(248,244,236,.2);
      --line-light: rgba(10,11,14,.2);
      --hero-progress: 0;
      --hero-reveal: 0;
      --marquee-shift: 10vw;
    }
    * { box-sizing: border-box; }
    html { overflow-x: clip; scroll-behavior: smooth; }
    body { margin: 0; overflow-x: clip; background: var(--ink); color: var(--ink); font-family: Inter, Arial, sans-serif; letter-spacing: 0; }
    body.nav-open { overflow: hidden; }
    body, button { font-family: Inter, Arial, sans-serif; }
    a { color: inherit; text-decoration: none; }
    button { color: inherit; }
    img { display: block; max-width: 100%; }
    main > section[id] { scroll-margin-top: 92px; }

    .topbar {
      position: fixed;
      z-index: 80;
      inset: 0 0 auto 0;
      height: 76px;
      display: grid;
      grid-template-columns: 180px 1fr auto;
      align-items: center;
      gap: 28px;
      padding: 0 4.5vw;
      color: var(--white);
      border-bottom: 1px solid var(--line-dark);
      transition: background-color .25s ease, color .25s ease;
    }
    .topbar.scrolled { background: rgba(10,11,14,.94); }
    .brand { display: flex; width: max-content; align-items: center; }
    .brand img { width: 142px; height: 49px; object-fit: contain; object-position: left center; }
    .navlinks { display: flex; justify-content: center; gap: 27px; font-size: 13px; }
    .navlinks a { white-space: nowrap; opacity: .78; transition: opacity .2s ease; }
    .navlinks a:hover { opacity: 1; }
    .nav-actions { display: flex; align-items: center; gap: 16px; font-size: 13px; }
    .contact-link { min-height: 44px; display: inline-flex; align-items: center; padding: 12px 16px; background: var(--orange); color: var(--ink); font-weight: 800; }
    .menu-toggle { width: 44px; height: 44px; display: none; place-items: center; padding: 0; border: 1px solid rgba(248,244,236,.32); background: transparent; cursor: pointer; }
    .menu-toggle span { position: relative; width: 19px; height: 12px; display: block; }
    .menu-toggle i { position: absolute; left: 0; width: 19px; height: 1px; background: var(--white); transition: transform .2s ease, top .2s ease; }
    .menu-toggle i:first-child { top: 2px; }
    .menu-toggle i:last-child { top: 9px; }
    .menu-toggle[aria-expanded="true"] i:first-child { top: 6px; transform: rotate(45deg); }
    .menu-toggle[aria-expanded="true"] i:last-child { top: 6px; transform: rotate(-45deg); }
    .mobile-nav { position: fixed; z-index: 79; top: 76px; left: 0; right: 0; display: grid; padding: 12px 4.5vw 22px; background: rgba(10,11,14,.985); color: var(--white); border-bottom: 1px solid var(--line-dark); transform: translateY(-115%); opacity: 0; visibility: hidden; pointer-events: none; transition: transform .25s ease, opacity .2s ease, visibility .25s ease; }
    .mobile-nav.open { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
    .mobile-nav a { display: flex; justify-content: flex-start; padding: 17px 0; border-bottom: 1px solid var(--line-dark); font-size: 18px; }
    .mobile-nav a:last-child { border-bottom: 0; }

    .scroll-rail {
      position: fixed;
      z-index: 75;
      top: 50%;
      right: 16px;
      width: 4px;
      height: 150px;
      transform: translateY(-50%);
      background: rgba(237,99,49,.2);
    }
    .scroll-rail span { display: block; width: 100%; height: 0; background: var(--orange); transition: height .12s linear; }

    .hero-scroll { position: relative; height: 172vh; min-height: 1120px; background: var(--ink); }
    .hero-stage { position: sticky; top: 0; height: 100vh; min-height: 690px; overflow: hidden; display: grid; place-items: center; color: var(--white); }
    .hero-image { position: absolute; inset: -6%; width: 112%; height: 112%; object-fit: cover; object-position: 64% center; filter: brightness(.34) saturate(.72) contrast(1.12); transform: scale(calc(1 + var(--hero-progress) * .16)) translateY(calc(var(--hero-progress) * -22px)); will-change: transform; }
    .hero-shade { position: absolute; inset: 0; background: rgba(5,6,8,.28); }
    .hero-heading { position: relative; z-index: 2; width: min(1150px, 91vw); text-align: center; transform: translateY(calc(var(--hero-progress) * -115px)); opacity: calc(1 - var(--hero-progress) * 1.45); will-change: transform, opacity; }
    .hero-kicker { display: block; margin-bottom: 24px; color: var(--mint); font-size: 12px; font-weight: 800; text-transform: uppercase; }
    .hero-heading h1 { margin: 0; color: var(--white); font-size: 116px; font-weight: 500; line-height: .91; }
    .hero-heading h1 span { display: block; }
    .hero-reveal {
      position: absolute;
      z-index: 3;
      left: 50%;
      bottom: 12vh;
      width: min(580px, 80vw);
      transform: translate(-50%, calc((1 - var(--hero-reveal)) * 55px));
      text-align: center;
      opacity: var(--hero-reveal);
      will-change: transform, opacity;
    }
    .hero-reveal p { margin: 0 0 28px; color: rgba(248,244,236,.76); font-size: 20px; line-height: 1.45; }
    .button-primary { display: inline-flex; align-items: center; gap: 42px; padding: 15px 18px; border: 0; border-radius: 0; background: var(--orange); color: var(--ink); font-size: 13px; font-weight: 800; cursor: pointer; }
    .hero-foot { position: absolute; z-index: 3; left: 4.5vw; right: 4.5vw; bottom: 25px; display: flex; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--line-dark); color: rgba(248,244,236,.52); font-size: 11px; text-transform: uppercase; }

    .intro { position: relative; z-index: 3; background: var(--paper); padding: 86px 4.5vw 96px; }
    .label { margin: 0; font-size: 12px; font-weight: 800; text-transform: uppercase; }
    .intro-grid { display: grid; grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr); gap: clamp(44px, 6vw, 82px); align-items: center; margin-top: 52px; }
    .intro-photo { width: 100%; margin: 0; }
    .intro-photo-media { overflow: hidden; aspect-ratio: 4 / 3; background: #d8d1c7; }
    .intro-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 48%; filter: saturate(.78) contrast(1.04); }
    .intro-photo figcaption { margin-top: 13px; color: #635e57; font-size: 12px; line-height: 1.5; }
    .intro-copy h2 { margin: 0 0 30px; max-width: 820px; font-size: 68px; font-weight: 500; line-height: 1.01; }
    .intro-copy p { margin: 0 0 28px; max-width: 780px; font-size: 24px; font-weight: 600; line-height: 1.4; }
    .text-link { min-height: 44px; display: inline-flex; align-items: center; gap: 34px; padding: 0 0 8px; border-bottom: 1px solid currentColor; font-size: 13px; font-weight: 800; }

    .marquee { overflow: hidden; background: var(--paper); border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); padding: 24px 0 31px; }
    .marquee div { width: max-content; margin-left: 0; font-size: 104px; font-weight: 500; line-height: 1; white-space: nowrap; transform: translate3d(var(--marquee-shift), 0, 0); will-change: transform; }
    .marquee i { padding: 0 30px; color: var(--orange); font-style: normal; }

    .story { background: var(--paper); }
    .story-intro { display: grid; grid-template-columns: 1.15fr .85fr; gap: 50px; align-items: end; padding: 120px 4.5vw 80px; }
    .story-intro h2 { margin: 0; max-width: 800px; font-size: 73px; font-weight: 500; line-height: .98; }
    .story-intro p { justify-self: end; max-width: 430px; margin: 0; color: #625d56; font-size: 15px; line-height: 1.55; }
    .story-layout { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line-light); }
    .story-stage { position: sticky; top: 0; height: 100vh; min-height: 700px; overflow: hidden; background: #d7d1c8; }
    .story-image { position: absolute; inset: 0; opacity: 0; transform: scale(1.035); transition: opacity .5s ease, transform .7s ease; }
    .story-image.active { opacity: 1; transform: scale(1); }
    .story-image img { width: 100%; height: 100%; object-fit: cover; }
    .story-image[data-story-image="0"] img { object-position: center 46%; }
    .story-image[data-story-image="1"] img { object-position: center 48%; }
    .story-image[data-story-image="2"] img { object-position: center 44%; }
    .story-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,8,10,.28) 0%, rgba(7,8,10,.04) 42%, rgba(7,8,10,.5) 100%); }
    .story-stage-top { position: absolute; z-index: 4; top: 100px; left: 38px; right: 38px; display: flex; justify-content: space-between; color: var(--white); font-size: 12px; font-weight: 800; text-transform: uppercase; }
    .story-stage-bottom { position: absolute; z-index: 4; left: 38px; right: 38px; bottom: 34px; display: grid; grid-template-columns: 1fr auto; gap: 25px; color: var(--white); }
    .story-stage-bottom strong { font-size: 27px; }
    .stage-progress { display: flex; gap: 7px; align-items: center; }
    .stage-progress i { width: 28px; height: 3px; background: rgba(248,244,236,.35); }
    .stage-progress i.active { background: var(--orange); }
    .story-steps { min-width: 0; }
    .story-step { min-height: 92vh; display: flex; flex-direction: column; justify-content: center; padding: 110px 8vw 90px; border-bottom: 1px solid var(--line-light); opacity: .32; transition: opacity .35s ease; }
    .story-step.active { opacity: 1; }
    .story-step .step-number { margin-bottom: 60px; color: var(--orange); font-size: 60px; font-weight: 500; }
    .story-step .step-type { margin-bottom: 18px; font-size: 11px; font-weight: 800; text-transform: uppercase; }
    .story-step h3 { margin: 0 0 25px; font-size: 50px; font-weight: 500; line-height: 1.02; }
    .story-step p { margin: 0 0 35px; max-width: 540px; color: #5d5952; font-size: 17px; line-height: 1.55; }
    .mobile-story-detail { display: none; }

    .approach { background: var(--orange); padding: 115px 4.5vw 130px; }
    .approach-head { display: grid; grid-template-columns: .55fr 1.45fr; gap: 8vw; margin-bottom: 90px; }
    .approach-head h2 { margin: 0; max-width: 860px; font-size: 74px; font-weight: 500; line-height: .98; }
    .approach-interface { display: grid; grid-template-columns: .88fr 1.12fr; gap: 8vw; align-items: stretch; }
    .approach-visual { position: relative; min-height: 560px; overflow: hidden; background: var(--ink); }
    .approach-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.04); transition: opacity .45s ease, transform .65s ease; filter: saturate(.65) contrast(1.08); }
    .approach-visual img[data-approach-image="2"] { object-fit: cover; object-position: center; padding: 0; background: #17191b; filter: none; }
    .approach-visual img.active { opacity: 1; transform: scale(1); }
    .approach-visual span { position: absolute; z-index: 3; left: 20px; bottom: 18px; color: var(--white); font-size: 11px; font-weight: 800; text-transform: uppercase; }
    .approach-visual:has(img[data-approach-image="2"].active) span { padding: 7px 9px; background: rgba(10,11,14,.9); }
    .approach-tabs { border-top: 1px solid rgba(10,11,14,.35); }
    .approach-tab { position: relative; width: 100%; min-height: 158px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 20px; padding: 0; border: 0; border-bottom: 1px solid rgba(10,11,14,.35); background: transparent; color: rgba(10,11,14,.62); text-align: left; cursor: pointer; }
    .approach-tab strong { font-size: 44px; font-weight: 500; }
    .approach-tab .arrow { font-size: 33px; }
    .approach-tab .tab-line { position: absolute; left: 0; bottom: -1px; width: 0; height: 3px; background: var(--ink); transition: width .4s ease; }
    .approach-tab.active { color: var(--ink); }
    .approach-tab.active .tab-line { width: 34%; }
    .approach-copy { grid-column: 2; max-width: 570px; margin-top: -20px; color: rgba(10,11,14,.8); font-size: 14px; line-height: 1.55; }

    .insights { overflow: hidden; background: var(--ink); color: var(--white); padding: 115px 4.5vw 130px; }
    .insights-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 55px; }
    .insights-head h2 { max-width: 760px; margin: 18px 0 0; font-size: 68px; font-weight: 500; line-height: 1; }
    .carousel-controls { display: flex; gap: 8px; }
    .carousel-controls button { width: 48px; height: 48px; border: 1px solid rgba(248,244,236,.45); border-radius: 50%; background: transparent; color: var(--white); font-size: 20px; cursor: pointer; }
    .carousel-controls button:disabled { opacity: .35; cursor: default; }
    .carousel { overflow: hidden; }
    .carousel-track { display: flex; gap: 16px; transform: translateX(calc(var(--carousel-index, 0) * -34%)); transition: transform .55s ease; will-change: transform; }
    .article { flex: 0 0 calc((100% - 32px) / 3); min-width: 0; }
    .article-media { height: 330px; overflow: hidden; background: #24262a; }
    .article-media img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.78) saturate(.7); transition: transform .45s ease; }
    .article:hover .article-media img { transform: scale(1.025); }
    .article-meta { display: flex; justify-content: space-between; margin: 16px 0 13px; color: rgba(248,244,236,.48); font-size: 10px; font-weight: 800; text-transform: uppercase; }
    .article h3 { margin: 0; font-size: 23px; font-weight: 500; line-height: 1.25; }

    .contact { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: end; background: var(--mint); padding: 100px 4.5vw; }
    .contact p { margin: 0 0 18px; font-size: 11px; font-weight: 800; text-transform: uppercase; }
    .contact h2 { max-width: 900px; margin: 0; font-size: 74px; font-weight: 500; line-height: .98; }
    .contact .text-link { padding: 16px 18px; border: 1px solid var(--ink); }

    footer { background: var(--ink); color: var(--white); padding: 68px 4.5vw 28px; }
    .footer-main { display: grid; grid-template-columns: minmax(280px, 1.25fr) minmax(140px, .55fr) minmax(140px, .55fr); gap: clamp(34px, 6vw, 90px); align-items: start; }
    .footer-brand img { width: 230px; height: auto; }
    .footer-brand p { max-width: 330px; margin: 25px 0 24px; color: rgba(248,244,236,.58); font-size: 14px; line-height: 1.55; }
    .footer-contact { min-height: 44px; display: inline-flex; align-items: center; gap: 26px; padding-bottom: 7px; border-bottom: 1px solid rgba(248,244,236,.55); font-size: 12px; font-weight: 800; }
    .footer-nav-group { display: grid; align-content: start; gap: 15px; }
    .footer-nav-label { margin: 0 0 7px; color: var(--orange); font-size: 10px; font-weight: 800; text-transform: uppercase; }
    .footer-nav-group a { width: max-content; max-width: 100%; color: rgba(248,244,236,.72); font-size: 14px; line-height: 1.35; transition: color .2s ease; }
    .footer-nav-group a:hover { color: var(--white); }
    .footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 28px; margin-top: 62px; padding-top: 18px; border-top: 1px solid var(--line-dark); color: rgba(248,244,236,.5); font-size: 11px; }
    .footer-bottom > span:last-child { text-align: right; }
    .footer-bottom a { color: inherit; }


    @media (max-width: 980px) {
      .topbar { grid-template-columns: 1fr auto; height: 68px; padding: 0 24px; }
      .navlinks { display: none; }
      .menu-toggle { display: grid; }
      .mobile-nav { top: 68px; max-height: calc(100dvh - 68px); overflow-y: auto; overscroll-behavior: contain; padding-left: 24px; padding-right: 24px; }
      .hero-heading h1 { font-size: 78px; }
      .intro, .story-intro, .approach, .insights { padding-left: 24px; padding-right: 24px; }
      .intro-grid { grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr); gap: 48px; }
      .intro-copy h2 { font-size: 49px; }
      .intro-copy p { font-size: 19px; }
      .marquee div { font-size: 72px; }
      .story-intro h2, .insights-head h2 { font-size: 53px; }
      .story-step { padding-left: 60px; padding-right: 50px; }
      .story-step h3 { font-size: 40px; }
      .approach-head h2 { font-size: 54px; }
      .approach-tab strong { font-size: 35px; }
      .contact { padding: 80px 24px; }
      .contact h2 { font-size: 52px; }
    }

    @media (max-width: 720px) {
      .topbar { height: 64px; padding: 0 18px; }
      .brand img { width: 124px; height: 43px; }
      .contact-link { padding: 10px 12px; }
      .mobile-nav { top: 64px; max-height: calc(100dvh - 64px); overflow-y: auto; overscroll-behavior: contain; padding-left: 18px; padding-right: 18px; }
      .scroll-rail { right: 7px; }
      .hero-scroll { height: 145vh; min-height: 980px; }
      .hero-stage { min-height: 620px; }
      .hero-heading { width: calc(100% - 34px); }
      .hero-kicker { margin-bottom: 18px; font-size: 10px; }
      .hero-heading h1 { font-size: clamp(42px, 13.6vw, 53px); line-height: .95; }
      .hero-reveal { bottom: 13vh; width: calc(100% - 46px); }
      .hero-reveal p { font-size: 16px; }
      .hero-foot { left: 18px; right: 18px; }
      .intro { padding: 64px 18px 74px; }
      .intro-grid { grid-template-columns: 1fr; gap: 32px; margin-top: 36px; }
      .intro-photo { width: 100%; }
      .intro-photo-media { aspect-ratio: 16 / 10; }
      .intro-copy h2 { margin-bottom: 26px; font-size: 38px; }
      .intro-copy p { margin-bottom: 26px; font-size: 17px; }
      .marquee div { margin-left: 0; font-size: 52px; }
      .story-intro { grid-template-columns: 1fr; padding: 80px 18px 55px; }
      .story-intro h2 { font-size: 43px; }
      .story-intro p { justify-self: start; }
      .story-layout { display: block; }
      .story-stage { position: relative; top: auto; height: 58vh; min-height: 410px; }
      .story-stage-top { top: 25px; left: 18px; right: 18px; }
      .story-stage-bottom { left: 18px; right: 18px; bottom: 18px; }
      .story-steps { display: none; }
      .mobile-story-nav { position: absolute; z-index: 5; left: 18px; right: 18px; bottom: 75px; display: flex; gap: 7px; }
      .mobile-story-nav button { flex: 1; height: 48px; border: 1px solid rgba(248,244,236,.45); background: rgba(10,11,14,.55); color: var(--white); font-size: 11px; }
      .mobile-story-nav button.active { border-color: var(--orange); background: var(--orange); color: var(--ink); }
      .mobile-story-detail { display: grid; gap: 22px; padding: 28px 18px 44px; border-bottom: 1px solid var(--line-light); }
      .mobile-story-detail p { margin: 0; color: #5d5952; font-size: 16px; line-height: 1.55; }
      .mobile-story-detail .text-link { justify-self: start; }
      .approach { padding: 80px 18px 90px; }
      .approach-head { grid-template-columns: 1fr; gap: 42px; margin-bottom: 55px; }
      .approach-head h2 { font-size: 44px; }
      .approach-interface { grid-template-columns: 1fr; gap: 0; }
      .approach-visual { min-height: 410px; }
      .approach-tab { min-height: 100px; }
      .approach-tab strong { font-size: 27px; }
      .approach-copy { grid-column: 1; margin-top: 24px; }
      .insights { padding: 80px 18px 90px; }
      .insights-head { align-items: start; flex-direction: column; }
      .insights-head h2 { font-size: 44px; }
      .article { flex-basis: 86%; }
      .article-media { height: 280px; }
      .carousel-track { transform: translateX(calc(var(--carousel-index, 0) * -88%)); }
      .contact { grid-template-columns: 1fr; padding: 70px 18px; }
      .contact h2 { font-size: 44px; }
      .contact .text-link { justify-self: start; }
      footer { padding: 58px 18px 25px; }
      .footer-main { grid-template-columns: 1fr 1fr; gap: 48px 28px; }
      .footer-brand { grid-column: 1 / -1; }
      .footer-brand img { width: 210px; }
      .footer-nav-group a { min-height: 44px; display: flex; align-items: center; }
      .footer-bottom { flex-direction: column; gap: 8px; margin-top: 48px; }
      .footer-bottom > span:last-child { text-align: left; }
    }

    @media (max-width: 560px) { .contact-link { display: none; } }
    @media (max-width: 430px) {
      .footer-main { grid-template-columns: 1fr; }
      .footer-brand { grid-column: 1; }
    }

    @media (min-width: 721px) { .mobile-story-nav { display: none; } }
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
      .hero-image, .hero-heading, .hero-reveal, .marquee div { transform: none !important; opacity: 1 !important; }
    }

.insights-all { display: inline-flex; margin-top: 28px; color: var(--orange); font-size: 14px; font-weight: 800; border-bottom: 1px solid currentColor; padding-bottom: 6px; }
.article-link { display: block; }
.article-link:focus-visible, .text-link:focus-visible, .navlinks a:focus-visible, .mobile-nav a:focus-visible { outline: 2px solid var(--orange); outline-offset: 4px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
