    :root {
      --ink: #111111;
      --muted: #5f646c;
      --paper: #ffffff;
      --soft: #f4f5f1;
      --line: #d9ded5;
      --teal: #027d73;
      --green: #78b843;
      --red: #d64032;
      --yellow: #f2b84b;
      --charcoal: #202322;
      --shadow: 0 24px 70px rgba(17, 17, 17, 0.12);
      --shadow-strong: 0 34px 90px rgba(17, 17, 17, 0.18);
      --max: 1180px;
      --nav-h: 74px;
      --radius: 12px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: calc(var(--nav-h) + 24px);
    }

    body {
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--ink);
      background: var(--paper);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    body.is-loading {
      overflow: hidden;
    }

    body.menu-open {
      overflow: hidden;
    }

    img {
      display: block;
      max-width: 100%;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button {
      font-family: inherit;
    }

    p {
      margin: 0;
    }

    .loader {
      position: fixed;
      inset: 0;
      z-index: 1000;
      display: grid;
      place-items: center;
      background: #101111;
      color: #fff;
      transition: opacity 700ms ease, visibility 700ms ease;
    }

    .loader.is-hidden {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }

    .loader-mark {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 22px;
      text-align: center;
    }

    .brand-reveal {
      display: flex;
      flex-wrap: nowrap;
      justify-content: center;
      align-items: baseline;
      gap: 0.24em;
      max-width: min(860px, 90vw);
      font-size: 5.6rem;
      font-weight: 800;
      line-height: 0.9;
      letter-spacing: 0;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .brand-reveal .brand-line {
      display: inline-block;
    }

    .brand-reveal .brand-line-one {
      animation: revealLetter 720ms cubic-bezier(0.2, 0.85, 0.2, 1) forwards;
      animation-delay: 0ms;
      opacity: 0;
      transform: translateY(28px);
    }

    .brand-reveal .brand-line-two {
      animation: revealLetter 720ms cubic-bezier(0.2, 0.85, 0.2, 1) forwards;
      animation-delay: 180ms;
      opacity: 0;
      transform: translateY(28px);
    }

    .brand-reveal span {
      display: inline-block;
    }

    .loader-line {
      width: min(420px, 68vw);
      height: 2px;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.2);
    }

    .loader-line::before {
      content: "";
      display: block;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, var(--green), var(--yellow), var(--red));
      transform-origin: left;
      animation: loadBar 1600ms ease forwards;
    }

    @keyframes revealLetter {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes loadBar {
      from {
        transform: scaleX(0);
      }
      to {
        transform: scaleX(1);
      }
    }

    .site-shell {
      min-height: 100vh;
      opacity: 0;
      transition: opacity 600ms ease;
    }

    .site-shell.is-ready {
      opacity: 1;
    }

    .scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 1001;
      width: 100%;
      height: 3px;
      transform: scaleX(0);
      transform-origin: left;
      background: linear-gradient(90deg, var(--green), var(--yellow), var(--red));
      pointer-events: none;
    }

    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      height: var(--nav-h);
      border-bottom: 1px solid transparent;
      background: transparent;
      backdrop-filter: none;
      transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease, backdrop-filter 240ms ease;
    }

    .nav.is-scrolled,
    .nav.is-open {
      border-bottom-color: rgba(255, 255, 255, 0.05);
      background: rgba(16, 17, 17, 0.96);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    }

    .nav-inner {
      width: min(var(--max), calc(100% - 40px));
      height: 100%;
      margin: 0 auto;
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .wordmark {
      display: inline-flex;
      align-items: center;
      gap: 0;
      min-width: max-content;
      color: #fff;
      line-height: 0;
      transition: transform 220ms ease;
    }

    .wordmark:hover,
    .wordmark:focus-visible {
      transform: translateY(-1px);
      outline: none;
    }

    .wordmark img {
      width: auto;
      height: clamp(32px, 5vh, 48px);
      max-height: 100%;
      object-fit: contain;
      display: block;
    }

    .visually-hidden {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .nav-links {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 8px;
      font-size: 0.86rem;
      font-weight: 750;
      color: rgba(255, 255, 255, 0.9);
      padding: 6px;
      border: 1px solid rgba(255, 255, 255, 0.24);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      transition: color 240ms ease, background 240ms ease, border-color 240ms ease;
    }

    .nav.is-scrolled .nav-links,
    .nav.is-open .nav-links {
      color: rgba(255, 255, 255, 0.95);
      border-color: rgba(255, 255, 255, 0.2);
      background: rgba(255, 255, 255, 0.12);
    }

    .nav-links a {
      position: relative;
      border-radius: 999px;
      padding: 10px 13px;
      text-decoration: none;
      text-underline-offset: 6px;
      text-decoration-thickness: 2px;
      text-decoration-color: transparent;
      transition: color 180ms ease, background 180ms ease, text-decoration-color 180ms ease;
    }

    .nav-links a:hover,
    .nav-links a:focus-visible,
    .nav-links a.is-active {
      background: rgba(255, 255, 255, 0.94);
      color: var(--teal);
      text-decoration: underline;
      text-decoration-color: currentColor;
      outline: none;
    }

    .nav-cta {
      border: 0;
      background: transparent;
      color: inherit !important;
      box-shadow: none;
    }

    .nav-cta:hover,
    .nav-cta:focus-visible,
    .nav-cta.is-active {
      background: transparent !important;
      color: var(--teal) !important;
    }

    .mobile-toggle {
      display: none;
      padding: 0;
      width: 42px;
      height: 42px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #fff;
      color: var(--ink);
      cursor: pointer;
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 4px;
      transition: transform 180ms ease, border-color 180ms ease;
    }

    .mobile-toggle:hover,
    .mobile-toggle:focus-visible {
      transform: translateY(-1px);
      border-color: var(--teal);
      outline: none;
    }

    .mobile-toggle span {
      display: block;
      width: 18px;
      height: 2px;
      background: currentColor;
      transition: transform 200ms ease, opacity 200ms ease;
    }

    .hero {
      min-height: 100svh;
      display: grid;
      align-items: end;
      position: relative;
      isolation: isolate;
      overflow: hidden;
      color: #fff;
      background: #101111;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: -3;
      background:
        linear-gradient(116deg, rgba(9, 14, 16, 0.74), rgba(11, 17, 22, 0.58)),
        url("./bg.png") center / cover no-repeat;
      transform: scale(1.06);
      transition: transform 9000ms ease;
      overflow: hidden;
      animation: heroAmbient 14s ease-in-out infinite alternate;
    }

    .hero-bg::before,
    .hero-bg::after {
      content: "";
      position: absolute;
      inset: -28%;
      pointer-events: none;
    }

    .hero-bg::before {
      background:
        url("./bg.png") center / cover no-repeat;
      filter: blur(16px) saturate(88%);
      opacity: 0.58;
      transform: scale(1.1);
      animation: heroFloat 18s ease-in-out infinite alternate;
    }

    .hero-bg::after {
      inset: 0;
      background:
        linear-gradient(95deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.34) 56%, rgba(0, 0, 0, 0.18)),
        radial-gradient(circle at 20% 22%, rgba(120, 184, 67, 0.22), transparent 40%),
        radial-gradient(circle at 76% 80%, rgba(214, 64, 50, 0.2), transparent 44%);
    }

    .site-shell.is-ready .hero-bg {
      transform: scale(1);
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
      background-size: 72px 72px;
      opacity: 0.34;
      animation: gridDrift 22s linear infinite;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0 0;
      height: 28%;
      z-index: -1;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.74));
    }

    .hero-inner {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
      padding: calc(var(--nav-h) + 80px) 0 80px;
    }

    .hero-content {
      max-width: 960px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 24px;
      font-size: 0.82rem;
      font-weight: 850;
      text-transform: uppercase;
      letter-spacing: 0;
      opacity: 0;
      transform: translateY(18px);
    }

    .eyebrow::before {
      content: "";
      width: 34px;
      height: 3px;
      border-radius: 8px;
      background: var(--green);
    }

    .hero h1,
    .section-title,
    .cta h2 {
      margin: 0;
      font-weight: 850;
      line-height: 0.98;
      letter-spacing: 0;
    }

    .hero h1 {
      max-width: 950px;
      font-size: clamp(3rem, 5.7vw, 4.5rem);
      margin-bottom: 40px;
      opacity: 0;
      transform: translateY(26px);
    }

    .hero-copy {
      max-width: 720px;
      margin-top: 56px;
      color: rgba(255, 255, 255, 0.88);
      font-size: 1.08rem;
      opacity: 0;
      transform: translateY(22px);
    }

    .hero-actions,
    .button-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 12px;
      margin-top: 30px;
    }

    .hero-actions {
      opacity: 0;
      transform: translateY(20px);
    }

    .site-shell.is-ready .hero .eyebrow,
    .site-shell.is-ready .hero h1,
    .site-shell.is-ready .hero-copy,
    .site-shell.is-ready .hero-actions {
      opacity: 1;
      transform: translateY(0);
      transition: opacity 850ms ease, transform 850ms ease;
    }

    .site-shell.is-ready .hero h1 {
      transition-delay: 120ms;
    }

    .site-shell.is-ready .hero-copy {
      transition-delay: 240ms;
    }

    .site-shell.is-ready .hero-actions {
      transition-delay: 360ms;
    }

    .hero-metrics {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1px;
      width: min(820px, 100%);
      margin-top: 46px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.16);
      box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
      opacity: 0;
      transform: translateY(24px);
    }

    .site-shell.is-ready .hero-metrics {
      opacity: 1;
      transform: translateY(0);
      transition: opacity 850ms ease 480ms, transform 850ms ease 480ms;
    }

    .metric {
      min-height: 112px;
      padding: 18px;
      background: rgba(13, 15, 15, 0.58);
      backdrop-filter: blur(16px);
    }

    .metric strong {
      display: block;
      margin-bottom: 6px;
      color: #fff;
      font-size: 1.42rem;
      line-height: 1;
    }

    .metric span {
      display: block;
      color: rgba(255, 255, 255, 0.72);
      font-size: 0.9rem;
      font-weight: 700;
    }

    @keyframes gridDrift {
      from {
        background-position: 0 0, 0 0;
      }
      to {
        background-position: 72px 72px, 72px 72px;
      }
    }

    @keyframes heroAmbient {
      0% {
        filter: saturate(100%) brightness(100%);
      }
      100% {
        filter: saturate(114%) brightness(108%);
      }
    }

    @keyframes heroFloat {
      from {
        transform: translate3d(-2%, -1%, 0) scale(1.08);
      }
      to {
        transform: translate3d(2%, 1.5%, 0) scale(1.16);
      }
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      border-radius: var(--radius);
      border: 1px solid transparent;
      padding: 13px 20px;
      font-weight: 850;
      font-family: inherit;
      font-size: 1rem;
      text-transform: uppercase;
      transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }

    .button:hover,
    .button:focus-visible {
      transform: translateY(-2px);
      box-shadow: 0 16px 38px rgba(17, 17, 17, 0.16);
      outline: none;
    }

    .button-primary {
      background: #fff;
      color: var(--ink);
    }

    .button-dark {
      background: var(--ink);
      color: #fff;
      border-color: var(--ink);
    }

    .button-outline {
      border-color: rgba(255, 255, 255, 0.62);
      color: #fff;
    }

    .button-muted {
      border-color: var(--line);
      color: var(--ink);
      background: #fff;
    }

    .section {
      padding: clamp(72px, 9vw, 130px) 0;
    }

    .band-soft {
      background: var(--soft);
    }

    .band-ink {
      background: #101111;
      color: #fff;
    }

    .container {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
    }

    .section-kicker {
      margin-bottom: 14px;
      color: var(--teal);
      font-size: 0.82rem;
      font-weight: 850;
      letter-spacing: 0;
      text-transform: uppercase;
    }

    .band-ink .section-kicker {
      color: var(--yellow);
    }

    .section-title {
      max-width: 980px;
      font-size: clamp(2.3rem, 4.2vw, 3rem);
    }

    .section-title span,
    .cta h2 span {
      color: var(--teal);
    }

    .band-ink .section-title span,
    .band-ink .cta h2 span {
      color: var(--yellow);
    }

    .section-lead {
      max-width: 800px;
      margin-top: 22px;
      color: var(--muted);
      font-size: 1.08rem;
    }

    .band-ink .section-lead,
    .band-ink .split-copy,
    .band-ink .feature p,
    .band-ink .why-item p,
    .band-ink .insight-card p {
      color: rgba(255, 255, 255, 0.74);
    }

    .split {
      display: grid;
      grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
      gap: clamp(30px, 6vw, 84px);
      align-items: center;
    }

    .split-copy {
      max-width: 800px;
      color: var(--muted);
      font-size: 1.02rem;
    }

    .split-copy p + p {
      margin-top: 16px;
    }

    .image-stage {
      position: relative;
      min-height: 440px;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      background: #dfe4df;
      transform: translateZ(0);
      transition: transform 420ms ease, box-shadow 420ms ease;
    }

    .image-stage:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-strong);
    }

    .image-stage img {
      width: 100%;
      height: 100%;
      min-height: inherit;
      object-fit: cover;
      transition: transform 900ms ease;
    }

    .image-stage:hover img {
      transform: scale(1.04);
    }

    .image-caption {
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: 18px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
    }

    .image-caption span {
      border-radius: var(--radius);
      padding: 12px;
      background: rgba(255, 255, 255, 0.9);
      color: var(--ink);
      font-size: 0.78rem;
      font-weight: 850;
      text-transform: uppercase;
    }

    .help-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 22px;
      align-items: start;
      margin-top: 54px;
    }

    .journey-map {
      margin-top: 42px;
      position: relative;
    }

    .journey-track {
      position: relative;
      min-height: 420px;
    }

    .journey-path {
      position: absolute;
      inset: 0 0 auto;
      width: 100%;
      height: 250px;
      pointer-events: none;
      overflow: visible;
    }

    .path-line {
      fill: none;
      stroke: var(--teal);
      stroke-width: 2;
      stroke-linecap: round;
      stroke-dasharray: 8 8;
      animation: trail-shift 11s linear infinite;
    }

    @keyframes trail-shift {
      to {
        stroke-dashoffset: -220;
      }
    }

    .path-dot {
      fill: var(--teal);
    }

    .journey-steps {
      position: relative;
      min-height: 420px;
    }

    .journey-step {
      position: absolute;
      left: var(--x);
      top: var(--y);
      transform: translateX(-50%);
      width: min(240px, 22vw);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
    }

    .journey-step.reveal {
      transform: translateX(-50%) translateY(34px);
    }

    .journey-step.reveal.is-visible {
      transform: translateX(-50%) translateY(0);
    }

    .journey-step.step-1 {
      --x: 9%;
      --y: 132px;
    }

    .journey-step.step-2 {
      --x: 34%;
      --y: 84px;
    }

    .journey-step.step-3 {
      --x: 61%;
      --y: 138px;
    }

    .journey-step.step-4 {
      --x: 86%;
      --y: 96px;
    }

    .step-circle {
      width: 92px;
      height: 92px;
      border-radius: 50%;
      background: #fff;
      border: 2px solid var(--teal);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 24px rgba(2, 125, 115, 0.14);
      transition: transform 220ms ease, box-shadow 220ms ease;
    }

    .step-icon {
      width: 34px;
      height: 34px;
      color: var(--teal);
      flex-shrink: 0;
    }

    .step-card {
      width: 100%;
      border: 1px solid var(--line);
      border-radius: 14px;
      background: #fff;
      padding: 14px 16px 16px;
      box-shadow: 0 12px 28px rgba(17, 17, 17, 0.08);
    }

    .step-number {
      display: inline-block;
      margin-bottom: 8px;
      color: var(--teal);
      font-size: 0.84rem;
      font-weight: 900;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .step-label {
      margin: 0;
      font-size: 1.02rem;
      font-weight: 820;
      line-height: 1.25;
      color: var(--ink);
    }

    .journey-step:hover .step-circle {
      transform: translateY(-4px) scale(1.05);
      box-shadow: 0 14px 30px rgba(2, 125, 115, 0.22);
    }

    .journey-step:hover .step-card {
      border-color: rgba(2, 125, 115, 0.35);
      box-shadow: 0 16px 34px rgba(17, 17, 17, 0.12);
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 20px;
      margin-top: 48px;
    }

    .feature {
      min-height: 360px;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 28px;
      background: #fff;
      transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
    }

    .feature::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, var(--teal), var(--green), var(--yellow));
      opacity: 0.8;
    }

    .feature:hover {
      transform: translateY(-8px);
      border-color: rgba(2, 125, 115, 0.35);
      box-shadow: 0 26px 62px rgba(17, 17, 17, 0.12);
    }

    .feature img,
    .feature svg {
      width: 72px;
      height: 72px;
      object-fit: contain;
      margin-bottom: 34px;
      transition: transform 420ms ease;
      display: block;
    }

    .feature:hover img,
    .feature:hover svg {
      transform: scale(1.08) rotate(-4deg);
    }

    .feature-icon-teal {
      filter: hue-rotate(126deg) saturate(1.45) brightness(0.96);
    }

    .feature-meta {
      display: inline-flex;
      margin-bottom: 16px;
      border: 1px solid rgba(2, 125, 115, 0.22);
      border-radius: 999px;
      padding: 5px 11px;
      color: #29625e;
      font-size: 0.72rem;
      font-weight: 850;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      background: rgba(2, 125, 115, 0.08);
    }

    .feature h3,
    .why-item h3,
      .thought h3,
      .insight-card h3 {
      margin: 0;
      font-size: 1.5rem;
      line-height: 1.08;
      letter-spacing: 0;
    }

    .feature p {
      margin-top: 18px;
      color: var(--muted);
      font-size: 1rem;
    }

    .principles {
      display: grid;
      grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
      gap: clamp(28px, 6vw, 80px);
      margin-top: 56px;
      align-items: start;
    }

    .principle-visual {
      position: sticky;
      top: calc(var(--nav-h) + 28px);
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
      width: min(100%, 430px);
      justify-self: center;
    }

    .principle-visual img {
      width: 100%;
      height: 172px;
      object-fit: contain;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      background: rgba(255, 255, 255, 0.08);
      padding: 16px;
      box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
    }

    .principle-visual img:first-child {
      height: 190px;
    }

    .quote-block {
      border-left: 4px solid var(--yellow);
      padding: 0 0 0 24px;
      font-size: 2.1rem;
      font-weight: 780;
      line-height: 1.14;
    }

    .quote-block span {
      color: var(--yellow);
    }

    .thought-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 28px;
    }

    .thought {
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: var(--radius);
      padding: 24px;
      background: rgba(255, 255, 255, 0.06);
      transition: transform 260ms ease, border-color 260ms ease;
    }

    .thought:hover {
      transform: translateY(-5px);
      border-color: rgba(242, 184, 75, 0.5);
    }

    .thought h3 {
      color: #fff;
      text-transform: uppercase;
    }

    .thought p {
      margin-top: 14px;
      color: rgba(255, 255, 255, 0.74);
      font-size: 0.95rem;
    }

    .definitions {
      margin-top: 26px;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.15);
      color: rgba(255, 255, 255, 0.72);
      font-size: 0.95rem;
    }

    .why-list {
      display: grid;
      gap: 1px;
      margin-top: 54px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
      background: var(--line);
    }

    .why-item {
      display: grid;
      grid-template-columns: 88px 1fr;
      gap: 22px;
      padding: clamp(22px, 4vw, 38px);
      background: #fff;
      transition: transform 260ms ease, box-shadow 260ms ease;
    }

    .why-item:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow);
    }

    .why-item .num {
      width: 54px;
      height: 54px;
      display: grid;
      place-items: center;
      border-radius: var(--radius);
      background: var(--ink);
      color: #fff;
      font-weight: 900;
      transition: background 220ms ease, transform 220ms ease;
    }

    .why-item:hover .num {
      background: var(--teal);
      transform: rotate(-4deg);
    }

    .why-item p {
      max-width: 860px;
      margin-top: 12px;
      color: var(--muted);
      font-size: 1.02rem;
    }

    .insight-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      margin-top: 52px;
    }

    .insight-intro {
      margin-top: 18px;
      color: rgba(255, 255, 255, 0.74);
      font-size: 1rem;
    }

    .insight-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 16px;
      padding: 0;
      list-style: none;
    }

    .insight-tags li {
      border: 1px solid rgba(255, 255, 255, 0.24);
      border-radius: 999px;
      padding: 7px 12px;
      color: rgba(255, 255, 255, 0.82);
      font-size: 0.78rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      background: rgba(255, 255, 255, 0.08);
    }

    .insight-card {
      border-radius: var(--radius);
      overflow: hidden;
      background: #fff;
      color: var(--ink);
      box-shadow: 0 20px 54px rgba(0, 0, 0, 0.16);
      transition: transform 260ms ease, box-shadow 260ms ease;
    }

    .insight-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 24px 58px rgba(0, 0, 0, 0.2);
    }

    .insight-card img {
      width: 100%;
      aspect-ratio: 16 / 9;
      object-fit: cover;
      background: #dfe4df;
      transition: transform 700ms ease;
    }

    .insight-card:hover img {
      transform: scale(1.04);
    }

    .insight-card div {
      padding: 22px;
    }

    .insight-meta {
      display: inline-block;
      margin-bottom: 10px;
      color: #3a4e4b;
      font-size: 0.7rem;
      font-weight: 850;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .insight-card h3 {
      font-size: 1.5rem;
    }

    .insight-card p {
      margin-top: 12px;
      color: var(--muted);
      font-size: 1rem;
    }

    .faq-shell {
      margin-top: 52px;
    }

    .faq-list {
      display: grid;
      gap: 14px;
    }

    .faq-item {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      overflow: hidden;
      transition: border-color 220ms ease, box-shadow 220ms ease;
    }

    .faq-item[open] {
      border-color: rgba(2, 125, 115, 0.42);
      box-shadow: 0 20px 48px rgba(17, 17, 17, 0.08);
    }

    .faq-item summary {
      position: relative;
      cursor: pointer;
      padding: 18px 52px 18px 20px;
      font-size: 1.02rem;
      font-weight: 760;
      list-style: none;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: "+";
      position: absolute;
      right: 18px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--teal);
      font-size: 1.4rem;
      font-weight: 700;
    }

    .faq-item[open] summary::after {
      content: "−";
    }

    .faq-answer {
      border-top: 1px solid rgba(17, 17, 17, 0.08);
      padding: 0 20px 18px;
      color: var(--muted);
      font-size: 1rem;
    }

    .faq-answer p {
      padding-top: 14px;
    }

    .cta {
      position: relative;
      overflow: hidden;
      background: #101111;
      color: #fff;
    }

    .cta-inner {
      min-height: 520px;
      display: grid;
      align-content: center;
      padding: clamp(72px, 9vw, 120px) 0;
    }

    .cta h2 {
      max-width: 900px;
      font-size: clamp(2.3rem, 4.2vw, 3rem);
    }

    .cta p {
      max-width: 620px;
      margin-top: 24px;
      color: rgba(255, 255, 255, 0.78);
      font-size: 1.05rem;
    }

    .contact-form {
      margin-top: 48px;
      max-width: 760px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      background: rgba(255, 255, 255, 0.05);
      padding: clamp(24px, 4vw, 40px);
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(8px);
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      width: 100%;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
      width: 100%;
    }

    .contact-form label {
      font-size: 0.9rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.9);
      letter-spacing: 0.5px;
    }

    .contact-form input,
    .contact-form textarea {
      padding: 14px 16px;
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      background: rgba(255, 255, 255, 0.04);
      color: #fff;
      font-family: inherit;
      font-size: 1rem;
      width: 100%;
      box-sizing: border-box;
      transition: border-color 0.3s, background-color 0.3s;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      outline: none;
      border-color: var(--teal);
      background: rgba(255, 255, 255, 0.08);
    }

    .contact-form input::placeholder,
    .contact-form textarea::placeholder {
      color: rgba(255, 255, 255, 0.4);
    }

    .form-actions {
      margin-top: 12px;
    }

    .footer {
      position: relative;
      overflow: hidden;
      padding: clamp(74px, 10vw, 126px) 0 38px;
      background:
        radial-gradient(circle at 10% 16%, rgba(2, 125, 115, 0.22), transparent 36%),
        radial-gradient(circle at 84% 82%, rgba(242, 184, 75, 0.16), transparent 32%),
        #101111;
      color: #fff;
    }

    .footer-inner {
      display: grid;
      grid-template-columns: minmax(280px, 1.25fr) repeat(2, minmax(170px, 0.8fr));
      gap: clamp(24px, 4vw, 56px);
      align-items: start;
    }

    .footer-brand {
      max-width: 520px;
    }

    .footer-logo {
      display: inline-block;
      line-height: 0;
      margin-bottom: clamp(20px, 3vw, 34px);
    }

    .footer-logo img {
      width: auto;
      height: clamp(48px, 6vh, 64px);
      max-height: 100%;
      object-fit: contain;
      display: block;
    }

    .footer-title {
      margin-top: 0;
      max-width: 580px;
      font-size: 2.05rem;
      font-weight: 820;
      line-height: 1.08;
    }

    .footer-description {
      max-width: 520px;
      margin-top: 14px;
      color: rgba(255, 255, 255, 0.72);
      font-size: 1rem;
    }

    .footer-social {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 26px;
    }

    .footer-social a {
      width: 42px;
      height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.24);
      background: rgba(255, 255, 255, 0.06);
      color: #fff;
      transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
    }

    .footer-social a:hover,
    .footer-social a:focus-visible {
      transform: translateY(-2px);
      border-color: rgba(120, 184, 67, 0.8);
      background: rgba(120, 184, 67, 0.2);
      outline: none;
    }

    .footer-social svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
    }

    .footer-heading {
      margin: 6px 0 14px;
      color: rgba(255, 255, 255, 0.92);
      font-size: 0.82rem;
      font-weight: 850;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .footer-links {
      display: grid;
      gap: 10px;
      color: rgba(255, 255, 255, 0.74);
      font-size: 0.95rem;
    }

    .footer-links a {
      width: fit-content;
      border-bottom: 1px solid transparent;
      transition: color 180ms ease, border-color 180ms ease;
    }

    .footer-links a:hover,
    .footer-links a:focus-visible {
      color: #fff;
      border-bottom-color: rgba(255, 255, 255, 0.62);
      outline: none;
    }

    .footer-bottom {
      grid-column: 1 / -1;
      margin-top: 18px;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.14);
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
    }

    .footer-bottom-links {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.88rem;
    }

    .copyright {
      color: rgba(255, 255, 255, 0.55);
      font-size: 0.88rem;
    }

    .reveal {
      opacity: 0;
      transform: translateY(34px);
      transition: opacity 760ms ease, transform 760ms cubic-bezier(0.2, 0.82, 0.22, 1);
      transition-delay: var(--delay, 0ms);
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .section-flow {
      opacity: 0;
      transform: translateY(44px);
      transition: opacity 900ms ease, transform 900ms cubic-bezier(0.2, 0.82, 0.22, 1);
      transition-delay: var(--section-delay, 0ms);
    }

    .section-flow.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Custom blocks defined recently */
    .journey-horizontal {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      position: relative;
    }
    .journey-connector {
      position: absolute;
      top: 60px;
      left: 80px;
      right: 80px;
      height: 2px;
      background: linear-gradient(90deg, var(--teal), var(--green), var(--yellow), var(--teal));
      opacity: 0.4;
      z-index: 0;
    }

    .what-we-do-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(30px, 5vw, 56px);
      align-items: center;
    }

    @media (max-width: 980px) {
      .nav {
        border-bottom-color: rgba(255, 255, 255, 0.05);
        background: rgba(16, 17, 17, 0.98);
      }
      .nav.is-scrolled,
      .nav.is-open {
        border-bottom-color: rgba(255, 255, 255, 0.1);
        background: rgba(16, 17, 17, 0.98);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
      }
      
      .hero {
        min-height: auto;
      }

      .hero-inner {
        padding: calc(var(--nav-h) + 60px) 0 40px;
      }

      .wordmark {
        color: inherit;
        z-index: 101;
      }

      .mobile-toggle {
        display: flex;
        background: var(--ink);
        border-color: rgba(255, 255, 255, 0.1);
        color: #fff;
        z-index: 101;
      }
      .nav.is-scrolled .mobile-toggle,
      .nav.is-open .mobile-toggle {
        background: var(--ink);
        border-color: rgba(17, 17, 17, 0.2);
        color: #fff;
      }

      .nav-links {
        position: fixed;
        top: calc(var(--nav-h) + 10px);
        left: 20px;
        right: 20px;
        color: rgba(255, 255, 255, 0.95);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 12px;
        background: rgba(16, 17, 17, 0.98);
        backdrop-filter: blur(24px);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        pointer-events: none;
        transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease;
      }

      .nav.is-open .nav-links {
        background: rgba(16, 17, 17, 0.98);
        border-color: rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.95);
      }

      .nav-links.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
      }

      .nav-links a {
        padding: 13px 14px;
        text-decoration-color: transparent;
      }

      .split,
      .help-grid,
      .principles,
      .footer-inner {
        grid-template-columns: 1fr;
      }

      .feature-grid,
      .thought-grid,
      .insight-grid {
        grid-template-columns: 1fr;
      }

      .feature {
        min-height: auto;
      }

      .feature-meta {
        margin-bottom: 12px;
      }

      .journey-track,
      .journey-steps {
        min-height: auto;
      }

      .journey-path {
        display: none;
      }

      .journey-steps {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
      }

      .journey-step {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        align-items: flex-start;
      }

      .journey-step.reveal,
      .journey-step.reveal.is-visible {
        transform: none;
      }

      .step-circle {
        width: 82px;
        height: 82px;
      }

      .journey-horizontal {
        flex-direction: column;
        gap: 20px;
      }
      
      .journey-connector {
        display: none;
      }

      .what-we-do-grid {
        grid-template-columns: 1fr;
      }

      .step-card {
        width: 100%;
      }

      .principle-visual {
        position: static;
        max-width: none;
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .principle-visual img,
      .principle-visual img:first-child {
        grid-column: auto;
        height: 132px;
      }

      .hero h1 {
        font-size: 3.8rem;
      }

      .section-title {
        font-size: 2.6rem;
      }

      .cta h2 {
        font-size: 2.6rem;
      }
    }

    @media (max-width: 640px) {
      :root {
        --nav-h: 66px;
      }

      .nav-inner,
      .container,
      .hero-inner {
        width: min(var(--max), calc(100% - 28px));
      }

      .wordmark {
        max-width: 176px;
      }

      .wordmark img {
        width: auto;
      }

      .brand-reveal {
        font-size: 3.6rem;
        flex-direction: column;
        align-items: center;
        gap: 0;
        white-space: normal;
      }

      .brand-reveal .brand-line-two {
        margin-top: 0;
      }

      .hero {
        min-height: auto;
      }

      .hero-bg {
        background-position: 56% center;
      }

      .hero-bg::before {
        inset: -16%;
      }

      .hero-inner {
        padding-bottom: 34px;
      }

      .hero h1 {
        font-size: 3rem;
      }

      .hero-copy,
      .section-lead,
      .split-copy,
      .cta p,
      .faq-answer {
        font-size: 1rem;
      }

      .hero-metrics {
        grid-template-columns: 1fr;
        margin-top: 32px;
      }

      .metric {
        min-height: auto;
      }

      .section-title {
        font-size: 2rem;
        line-height: 1.02;
      }

      .feature h3,
      .why-item h3,
      .thought h3,
      .insight-card h3 {
        font-size: 1.5rem;
      }

      .journey-steps {
        grid-template-columns: 1fr;
      }

      .step-label {
        font-size: 1rem;
      }

      .quote-block {
        font-size: 1.62rem;
      }

      .principle-visual {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .principle-visual img:first-child {
        grid-column: 1 / -1;
      }

      .principle-visual img,
      .principle-visual img:first-child {
        height: 124px;
      }

      .cta h2 {
        font-size: 2rem;
      }

      .footer-title {
        font-size: 1.75rem;
      }

      .section {
        padding: 66px 0;
      }

      .image-stage {
        min-height: 330px;
      }

      .image-caption {
        grid-template-columns: 1fr;
      }

      .why-item {
        grid-template-columns: 1fr;
      }

      .footer-links {
        gap: 8px;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    @media (max-width: 420px) {
      .brand-reveal {
        font-size: 2.7rem;
      }

      .wordmark {
        max-width: 150px;
      }

      .nav-inner {
        gap: 12px;
      }

      .hero h1 {
        font-size: 2.55rem;
      }

      .section-title {
        font-size: 2rem;
      }

      .button {
        width: 100%;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        animation-duration: 1ms !important;
        transition-duration: 1ms !important;
      }

      .reveal,
      .hero .eyebrow,
      .hero h1,
      .hero-copy,
      .hero-actions,
      .hero-metrics {
        opacity: 1 !important;
        transform: none !important;
      }

      .section-flow {
        opacity: 1 !important;
        transform: none !important;
      }
    }
