    :root {
      --bg: #0C0C0C;
      --ink: #D7E2EA;
      --muted: #646973;
      --soft: #BBCCD7;
      --white: #FFFFFF;
      --purple: #7621B0;
      --pink: #B600A8;
      --orange: #BE4C00;
      --deep: #18011F;
      --radius-xl: clamp(2.5rem, 4.7vw, 3.75rem);
      --page-pad: clamp(1.25rem, 4vw, 2.5rem);
      --section-heading-size: clamp(1.88rem, 4vw, 3.8rem);
      --font-body: "Inter", sans-serif;
      --font-display: "Anton", sans-serif;
      --font-feature: "Inter", sans-serif;
      --ease: cubic-bezier(.25, .1, .25, 1);
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { background: var(--bg); color: var(--ink); font-family: var(--font-body); scroll-behavior: smooth; }
    body { min-width: 320px; margin: 0; overflow-x: clip; background: var(--bg); }
    img { display: block; max-width: 100%; height: auto; }
    a, button { font: inherit; }
    a { color: inherit; text-decoration: none; }
    .site { min-height: 100vh; overflow-x: clip; background: var(--bg); }
    .hero-heading {
      background: linear-gradient(180deg, var(--muted) 0%, var(--soft) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
    }
    .section-title {
      margin: 0;
      text-align: center;
      text-transform: uppercase;
      font-size: var(--section-heading-size);
      font-family: var(--font-display);
      font-weight: 400;
      line-height: .86;
      letter-spacing: 0;
    }
    .focusable:focus-visible, a:focus-visible, button:focus-visible {
      outline: 3px solid var(--soft);
      outline-offset: 5px;
    }
    .fade {
      opacity: 0;
      transform: translate3d(var(--fx, 0), var(--fy, 30px), 0);
      transition: opacity var(--fd, .7s) var(--ease) var(--fdelay, 0s), transform var(--fd, .7s) var(--ease) var(--fdelay, 0s);
    }
    .fade.in-view { opacity: 1; transform: translate3d(0, 0, 0); }

    .hero {
      --hero-color: #1A1A1A;
      --hero-bg-image: url("/images/hero-video-placeholder.svg");
      --hero-bg-opacity: 1;
      --hero-bg-wash-opacity: 0;
      --hero-video-opacity: 0;
      --hero-text-color: #FFFFFF;
      position: relative;
      width: 100%;
      min-height: 100svh;
      overflow: hidden;
      background-color: var(--hero-color);
      color: var(--hero-text-color);
      font-family: "Inter", sans-serif;
      transition: background-color 650ms cubic-bezier(.4, 0, .2, 1);
      isolation: isolate;
    }
    .hero::before {
      position: absolute;
      inset: 0;
      z-index: 0;
      background-image: var(--hero-bg-image);
      background-position: center;
      background-size: cover;
      content: "";
      opacity: var(--hero-bg-opacity);
      pointer-events: none;
      transition: opacity 650ms cubic-bezier(.4, 0, .2, 1);
    }
    .hero::after {
      position: absolute;
      inset: 0;
      z-index: 1;
      background: var(--hero-color);
      content: "";
      opacity: var(--hero-bg-wash-opacity);
      pointer-events: none;
      transition: background-color 650ms cubic-bezier(.4, 0, .2, 1), opacity 650ms cubic-bezier(.4, 0, .2, 1);
    }
    .hero-background-video {
      position: absolute;
      inset: 0;
      z-index: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: var(--hero-video-opacity, 0);
      pointer-events: none;
      transition: opacity 650ms cubic-bezier(.4, 0, .2, 1);
    }
    .hero.hero-video-ready .hero-background-video {
      --hero-video-opacity: 1;
    }
    .hero-stage {
      position: relative;
      z-index: 2;
      width: 100%;
      height: 100svh;
      min-height: 38rem;
      overflow: hidden;
    }
    .hero-loader {
      position: absolute;
      inset: 0;
      z-index: 58;
      display: grid;
      place-items: center;
      padding: 1.5rem;
      background: #F4845F;
      color: var(--white);
      transition: opacity .35s ease, visibility .35s ease;
    }
    .hero-loader-box {
      display: grid;
      width: min(19rem, 78vw);
      gap: .85rem;
      text-align: center;
    }
    .hero-loader-label {
      font-size: .75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .18em;
    }
    .hero-loader-track {
      position: relative;
      height: .5rem;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, .8);
      border-radius: .25rem;
      background: rgba(255, 255, 255, .16);
    }
    .hero-loader-track::before {
      position: absolute;
      inset: 0 auto 0 0;
      width: 42%;
      border-radius: inherit;
      background: var(--white);
      animation: loader-slide 1.05s ease-in-out infinite;
      content: "";
    }
    .hero-ready .hero-loader {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }

    .vision-hero {
      position: relative;
      display: flex;
      min-height: 100svh;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      padding: 2rem var(--page-pad);
      background: #000;
      color: #FFF;
      isolation: isolate;
    }
    .feature-content {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .feature-heading {
      margin: 0;
      background: linear-gradient(90deg, #666 0%, #D0D0D0 50%, #666 100%);
      background-clip: text;
      color: transparent;
      font-family: var(--font-feature);
      font-weight: 400;
      letter-spacing: -.01em;
      line-height: 1.1;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .vision-video {
      position: absolute;
      inset: 0;
      z-index: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity .45s ease;
    }
    .vision-hero.is-video-ready .vision-video { opacity: 1; }
    .vision-content {
      width: min(100%, 64rem);
      margin-top: clamp(3rem, 12vh, 7rem);
    }
    .vision-title {
      display: flex;
      margin: 0;
      flex-direction: column;
      align-items: center;
      gap: .12em;
      color: #FFF;
      font-family: var(--font-feature);
      font-size: clamp(2.2rem, 7vw, 6.5rem);
      font-weight: 400;
      letter-spacing: -.01em;
      line-height: 1.1;
    }
    .vision-gradient {
      display: block;
      font: inherit;
    }
    .vision-equation {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: clamp(.45rem, 1.2vw, .75rem);
      flex-wrap: wrap;
      font-size: clamp(1.25rem, 3vw, 2.5rem);
      line-height: 1.1;
    }
    .vision-power-text,
    .vision-ai-label { margin: 0; line-height: 1.1; }
    .vision-ai-pair {
      display: inline-flex;
      align-items: center;
      gap: clamp(.45rem, 1.2vw, .75rem);
      flex-shrink: 0;
    }
    .vision-icon {
      display: inline-block;
      width: clamp(48px, 10vw, 110px);
      height: clamp(48px, 10vw, 110px);
      flex-shrink: 0;
      overflow: hidden;
      border-radius: 50%;
      vertical-align: middle;
    }
    .vision-icon video {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    video.vision-icon {
      object-fit: cover;
    }
    .vision-description {
      max-width: 36rem;
      margin: 1rem 0 0;
      padding-inline: .5rem;
      color: #CCC;
      font-size: clamp(.95rem, 2.2vw, 1.2rem);
      font-weight: 400;
      line-height: 1.4;
    }
    .vision-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-top: 1.5rem;
      padding: .75rem 1.75rem;
      border: 0;
      border-radius: .5rem;
      outline: 1px solid #30463C;
      outline-offset: -1px;
      background: #000;
      box-shadow: 0 6px 24px 6px rgba(39, 243, 169, .15);
      color: #FFF;
      font-size: .875rem;
      transition: transform .3s ease, box-shadow .3s ease;
    }
    .vision-cta:hover {
      box-shadow: 0 6px 32px 8px rgba(39, 243, 169, .22);
      transform: scale(1.03);
    }
    .vision-cta:active { transform: scale(.98); }

    .growth-showcase {
      --growth-bg: hsl(260 87% 3%);
      --growth-foreground: hsl(40 6% 95%);
      --growth-subtle: hsl(40 6% 82%);
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 12% 12%, rgba(242, 105, 60, .16), transparent 28rem),
        radial-gradient(circle at 88% 34%, rgba(58, 123, 191, .13), transparent 30rem),
        linear-gradient(180deg, #07030D 0%, var(--growth-bg) 100%);
      color: var(--growth-foreground);
      font-family: "Inter", system-ui, sans-serif;
      isolation: isolate;
    }
    .growth-intro {
      position: relative;
      z-index: 2;
      min-height: 0;
      justify-content: center;
      padding: clamp(2rem, 3.5vw, 3rem) var(--page-pad) clamp(.2rem, .4vw, .4rem);
    }
    .growth-intro::before {
      position: absolute;
      inset: 0;
      z-index: -2;
      background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
      background-size: 3rem 3rem;
      mask-image: linear-gradient(to bottom, #000, transparent 78%);
      content: "";
      pointer-events: none;
    }
    .growth-intro::after {
      position: absolute;
      top: -.15em;
      left: 50%;
      z-index: -1;
      color: rgba(255, 255, 255, .025);
      content: "IMPACT";
      font-family: var(--font-display);
      font-size: clamp(8rem, 22vw, 20rem);
      line-height: 1;
      pointer-events: none;
      transform: translateX(-50%);
      transition: opacity 1s var(--ease), transform 1.2s var(--ease);
      white-space: nowrap;
    }
    .growth-intro:has(.growth-title:not(.in-view))::after {
      opacity: 0;
      transform: translateX(-50%) translateY(1.5rem) scale(.96);
    }
    .growth-kicker {
      display: inline-flex;
      align-items: center;
      gap: .7rem;
      margin: 0 0 clamp(.75rem, 1.5vw, 1.15rem);
      color: #FF9A44;
      font-size: clamp(.7rem, 1vw, .82rem);
      font-weight: 800;
      letter-spacing: .16em;
      text-transform: uppercase;
    }
    .growth-kicker::before,
    .growth-kicker::after {
      width: clamp(1.5rem, 3vw, 2.75rem);
      height: 2px;
      background: linear-gradient(90deg, transparent, #FF9A44);
      content: "";
    }
    .growth-kicker::after { transform: scaleX(-1); }
    .growth-kicker::before,
    .growth-kicker::after {
      transform-origin: center;
      transition: transform .65s var(--ease) .2s;
    }
    .growth-kicker:not(.in-view)::before { transform: scaleX(0); }
    .growth-kicker:not(.in-view)::after { transform: scaleX(0); }
    .growth-kicker.in-view::after { transform: scaleX(-1); }
    .growth-title {
      max-width: 76rem;
      font-size: var(--section-heading-size);
      text-wrap: balance;
    }
    .growth-title-accent {
      background: linear-gradient(100deg, #FFF1E7 0%, #FFB16E 45%, #F2693C 100%);
      background-size: 180% 100%;
      background-clip: text;
      color: transparent;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .growth-title.in-view .growth-title-accent {
      animation: growth-accent-reveal 1.15s var(--ease) .2s both;
    }
    @keyframes growth-accent-reveal {
      from { background-position: 100% 0; }
      to { background-position: 0 0; }
    }
    .solution-matrix {
      position: relative;
      z-index: 3;
      width: min(86%, 60rem);
      margin: clamp(1.25rem, 2.5vw, 2rem) auto 0;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: 1.5rem;
      background: rgba(7, 3, 13, .52);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      text-align: left;
    }
    .solution-matrix-head,
    .solution-row {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .solution-matrix-head h3 {
      margin: 0;
      padding: .6rem clamp(.7rem, 1.2vw, .9rem);
      font-size: clamp(.85rem, 1.2vw, .98rem);
      font-weight: 700;
    }
    .solution-matrix-head h3:first-child { background: #121625; }
    .solution-matrix-head h3:last-child {
      background: linear-gradient(125deg, #FF9A44, #F2693C 58%, var(--orange));
      color: #FFF;
    }
    .solution-list {
      margin: 0;
      padding: 0;
      list-style: none;
    }
    .solution-row { border-top: 1px solid rgba(255, 255, 255, .1); }
    .solution-matrix.fade .solution-row {
      opacity: 0;
      transform: translateX(-1rem);
      transition: opacity .5s var(--ease), transform .6s var(--ease);
    }
    .solution-matrix.in-view .solution-row {
      opacity: 1;
      transform: translateX(0);
    }
    .solution-matrix.in-view .solution-row:nth-child(1) { transition-delay: .28s; }
    .solution-matrix.in-view .solution-row:nth-child(2) { transition-delay: .36s; }
    .solution-matrix.in-view .solution-row:nth-child(3) { transition-delay: .44s; }
    .solution-matrix.in-view .solution-row:nth-child(4) { transition-delay: .52s; }
    .solution-matrix.in-view .solution-row:nth-child(5) { transition-delay: .6s; }
    .solution-challenge,
    .solution-promise {
      display: flex;
      min-height: clamp(3.2rem, 4vw, 3.75rem);
      align-items: center;
      gap: clamp(.55rem, .9vw, .8rem);
      padding: clamp(.5rem, .85vw, .7rem);
    }
    .solution-challenge {
      border-right: 1px solid rgba(255, 255, 255, .1);
      background: transparent;
      color: rgba(245, 244, 242, .72);
    }
    .solution-promise {
      background: transparent;
      color: var(--growth-foreground);
    }
    .solution-number {
      display: inline-grid;
      width: 1.85rem;
      height: 1.85rem;
      flex: 0 0 auto;
      place-items: center;
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: .65rem;
      background: rgba(255, 255, 255, .055);
      color: rgba(245, 244, 242, .58);
      font-size: .75rem;
      font-weight: 700;
    }
    .solution-copy {
      margin: 0;
      font-size: clamp(.85rem, 1.2vw, 1rem);
      font-weight: 600;
      line-height: 1.4;
    }
    .solution-rule {
      width: 1.85rem;
      height: .25rem;
      flex: 0 0 auto;
      border-radius: 999px;
      background: linear-gradient(90deg, #FF9A44, #F2693C);
    }
    .solution-mobile-label { display: none; }
    .growth-cta {
      display: inline-flex;
      min-height: 3.25rem;
      align-items: center;
      justify-content: center;
      margin-top: .8rem;
      padding: .8rem 1.8rem;
      border-radius: 999px;
      color: var(--growth-foreground);
      font-size: 1rem;
      transition: background-color .2s ease, transform .2s ease;
    }
    .growth-cta:hover { background-color: rgba(255,255,255,.06); transform: translateY(-2px); }
    @keyframes loader-slide {
      0% { transform: translateX(-105%); }
      55%, 100% { transform: translateX(240%); }
    }
    .grain {
      position: absolute;
      inset: 0;
      z-index: 50;
      pointer-events: none;
      opacity: .4;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
      background-size: 200px 200px;
      background-repeat: repeat;
    }
    .toon-nav {
      position: absolute;
      top: 1.5rem;
      left: 1rem;
      right: 1rem;
      z-index: 60;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      color: var(--white);
    }
    .toon-brand {
      font-size: 1.215rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .18em;
      opacity: .9;
    }
    .toon-links {
      display: flex;
      align-items: center;
      gap: clamp(.85rem, 3vw, 2rem);
      font-size: .75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .12em;
    }
    .toon-links a { opacity: .9; transition: opacity .2s ease; }
    .toon-links a:hover { opacity: 1; }
    .menu-toggle {
      display: none;
      width: 3rem;
      height: 3rem;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: .28rem;
      border: 2px solid rgba(255, 255, 255, .85);
      border-radius: 999px;
      background: rgba(255, 255, 255, .08);
      color: var(--white);
      cursor: pointer;
    }
    .menu-toggle span,
    .menu-toggle::before,
    .menu-toggle::after {
      display: block;
      width: 1.15rem;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
      transition: transform .2s ease, opacity .2s ease;
      content: "";
    }
    .menu-toggle span { margin: 0; }
    .menu-toggle[aria-expanded="true"]::before { transform: translate3d(0, .38rem, 0) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span { opacity: 0; }
    .menu-toggle[aria-expanded="true"]::after { transform: translate3d(0, -.38rem, 0) rotate(-45deg); }
    .mobile-menu {
      position: absolute;
      top: 5.25rem;
      right: 1rem;
      z-index: 65;
      display: none;
      min-width: min(18rem, calc(100vw - 2rem));
      padding: .55rem;
      border: 1px solid rgba(255, 255, 255, .28);
      border-radius: 1.5rem;
      background: rgba(12, 12, 12, .72);
      box-shadow: 0 1.5rem 4rem rgba(12, 12, 12, .28);
      backdrop-filter: blur(18px);
    }
    .mobile-menu.is-open { display: grid; }
    .mobile-menu a {
      padding: 1rem 1.1rem;
      border-radius: 1rem;
      color: var(--white);
      font-size: .82rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .16em;
    }
    .mobile-menu a:hover { background: rgba(255, 255, 255, .12); }
    .hero-search-title {
      position: absolute;
      top: clamp(5.5rem, 9vw, 8rem);
      right: clamp(1rem, 5vw, 5rem);
      z-index: 60;
      width: min(26rem, 38vw);
      margin: 0;
      color: var(--hero-text-color);
      font-family: var(--font-feature);
      font-size: clamp(.8rem, 1.25vw, 1.15rem);
      font-weight: 700;
      line-height: 1.25;
      letter-spacing: .04em;
      text-align: right;
      text-transform: uppercase;
      text-wrap: balance;
    }
    .ghost-title {
      position: absolute;
      top: 14%;
      left: clamp(1rem, 5vw, 5rem);
      z-index: 2;
      display: block;
      margin: 0;
      color: var(--hero-text-color);
      font-family: var(--font-feature);
      width: min(34rem, 34vw);
      font-size: clamp(2.3rem, calc(10.2vw * var(--title-scale, 1)), 7.85rem);
      font-weight: 900;
      line-height: .92;
      letter-spacing: 0;
      text-align: left;
      text-transform: uppercase;
      text-wrap: balance;
      overflow-wrap: normal;
      word-break: normal;
      pointer-events: none;
      user-select: none;
      transition: opacity var(--hero-text-fade-duration, 450ms) ease;
    }
    .hero[data-title-size="short"] .ghost-title {
      width: min(40rem, 42vw);
    }
    .hero[data-title-size="long"] .ghost-title {
      width: min(32rem, 32vw);
      font-size: clamp(2.2rem, calc(9.2vw * var(--title-scale, 1)), 7rem);
      line-height: .96;
    }
    .toon-carousel {
      position: absolute;
      inset: 0;
      z-index: 3;
      touch-action: pan-y;
    }
    .toon-item {
      position: absolute;
      aspect-ratio: .6 / 1;
      left: 50%;
      bottom: 12%;
      height: 22%;
      opacity: 1;
      filter: blur(4px);
      transform: translateX(-50%) scale(1);
      transition:
        transform 650ms cubic-bezier(.4, 0, .2, 1),
        filter 650ms cubic-bezier(.4, 0, .2, 1),
        opacity 650ms cubic-bezier(.4, 0, .2, 1),
        left 650ms cubic-bezier(.4, 0, .2, 1),
        bottom 650ms cubic-bezier(.4, 0, .2, 1),
        width 650ms cubic-bezier(.4, 0, .2, 1),
        height 650ms cubic-bezier(.4, 0, .2, 1);
      will-change: transform, filter, opacity;
    }
    .toon-item img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: bottom center;
      transform-origin: center bottom;
      user-select: none;
      -webkit-user-drag: none;
    }
    .toon-item.is-center {
      z-index: 20;
      left: 50%;
      bottom: 0;
      height: 92%;
      opacity: 1;
      filter: blur(0);
      transform: translateX(-50%) scale(1.68);
    }
    .toon-item.is-left {
      z-index: 10;
      left: 30%;
      bottom: 12%;
      height: 28%;
      opacity: .85;
      filter: blur(2px);
    }
    .toon-item.is-right {
      z-index: 10;
      left: 70%;
      bottom: 12%;
      height: 28%;
      opacity: .85;
      filter: blur(2px);
    }
    .toon-item.is-back {
      z-index: 5;
      left: 50%;
      bottom: 12%;
      height: 22%;
      opacity: 1;
      filter: blur(4px);
    }
    .toon-copy {
      position: absolute;
      bottom: clamp(1.5rem, 7vw, 5rem);
      left: clamp(1rem, 7vw, 6rem);
      z-index: 60;
      width: min(22rem, 42vw);
      color: var(--hero-text-color);
    }
    .hero-quick-links {
      position: absolute;
      top: 54%;
      left: clamp(1rem, 4.5vw, 4rem);
      z-index: 60;
      display: flex;
      gap: clamp(.8rem, 1.8vw, 1.6rem);
      transform: translateY(-50%);
    }
    .gradient-btn {
      position: relative;
      display: inline-flex;
      min-width: clamp(8.5rem, 12vw, 10rem);
      min-height: 3.25rem;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      padding: .75rem 1.25rem;
      border: 1px solid rgba(255, 255, 255, .3);
      border-radius: 10px;
      background: linear-gradient(125deg, #FF9A44 0%, #F2693C 52%, var(--orange) 100%);
      background-size: 180% 180%;
      box-shadow: none;
      color: #FFF;
      font-size: clamp(.86rem, 1.15vw, 1rem);
      font-weight: 600;
      letter-spacing: .02em;
      text-shadow: none;
      transition: background-position .45s ease, border-color .25s ease, transform .25s ease;
    }
    .gradient-btn::before {
      position: absolute;
      inset: 0;
      background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, .2) 48%, transparent 72%);
      content: "";
      opacity: 0;
      transform: translateX(-35%);
      transition: opacity .25s ease, transform .45s ease;
    }
    .gradient-btn:hover {
      border-color: rgba(255, 255, 255, .55);
      background-position: 100% 50%;
      box-shadow: none;
      transform: translateY(-1px);
    }
    .gradient-btn:hover::before { opacity: 1; transform: translateX(35%); }
    .gradient-btn:active { transform: translateY(0) scale(.985); }
    .toon-eyebrow,
    .toon-description {
      transition: opacity var(--hero-text-fade-duration, 450ms) ease;
    }
    .hero.hero-text-changing .ghost-title,
    .hero.hero-text-changing .toon-eyebrow,
    .hero.hero-text-changing .toon-description {
      opacity: 0;
    }
    .toon-eyebrow {
      margin: 0 0 clamp(.5rem, 1.2vw, .75rem);
      font-family: var(--font-feature);
      font-size: clamp(1rem, 2vw, 1.375rem);
      font-weight: 700;
      line-height: 1.1;
      text-transform: uppercase;
      letter-spacing: .02em;
      opacity: .95;
    }
    .toon-description {
      margin: 0 0 clamp(1rem, 2vw, 1.25rem);
      color: var(--hero-text-color);
      font-size: clamp(.75rem, 1.1vw, .875rem);
      line-height: 1.6;
      opacity: .85;
    }
    .toon-actions {
      display: flex;
      gap: .75rem;
    }
    .round-btn {
      display: inline-flex;
      width: clamp(3rem, 5vw, 4rem);
      height: clamp(3rem, 5vw, 4rem);
      align-items: center;
      justify-content: center;
      border: 2px solid currentColor;
      border-radius: 999px;
      background: transparent;
      color: var(--hero-text-color);
      cursor: pointer;
      transition: transform 150ms ease, background-color 150ms ease;
    }
    .round-btn:hover { transform: scale(1.08); background: rgba(255, 255, 255, .12); }
    .round-btn svg { width: 1.625rem; height: 1.625rem; stroke-width: 2.25; }
    .discover-link {
      position: absolute;
      right: clamp(1rem, 4vw, 2.5rem);
      bottom: clamp(1.5rem, 7vw, 5rem);
      z-index: 60;
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      color: var(--white);
      font-family: var(--font-display);
      font-size: clamp(1.25rem, 4vw, 3.5rem);
      font-weight: 400;
      line-height: 1;
      letter-spacing: -.02em;
      text-transform: uppercase;
      max-width: min(22rem, 38vw);
      text-align: right;
      opacity: .95;
      transition: opacity .2s ease;
    }
    .discover-link:hover { opacity: 1; }
    .discover-link svg { width: clamp(1.25rem, 2.4vw, 2rem); height: clamp(1.25rem, 2.4vw, 2rem); stroke-width: 2.25; }
    .live-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 2.75rem;
      border-radius: 999px;
      border: 0;
      cursor: pointer;
      text-transform: uppercase;
      letter-spacing: .12em;
      font-weight: 500;
      white-space: nowrap;
    }
    .marquee {
      position: relative;
      min-height: clamp(18rem, 42vw, 36rem);
      padding: clamp(6rem, 12vw, 10rem) 0 2.5rem;
      background: var(--bg);
      overflow: clip;
    }
    .marquee-tile::before {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(110deg, transparent 20%, rgba(215, 226, 234, .16) 38%, transparent 56%),
        radial-gradient(circle at 35% 30%, rgba(248, 132, 95, .22), transparent 34%),
        #151515;
      background-size: 220% 100%, 100% 100%, 100% 100%;
      animation: tileReveal 1.8s ease-in-out infinite;
      content: "";
      transition: opacity .7s ease;
    }
    .marquee-tile.is-loaded::before {
      opacity: 0;
    }
    @keyframes tileReveal {
      0% { background-position: 180% 0, 0 0, 0 0; }
      100% { background-position: -80% 0, 0 0, 0 0; }
    }
    .marquee-row {
      display: flex;
      gap: .75rem;
      width: max-content;
      margin-bottom: .75rem;
      will-change: transform;
      transform: translate3d(0, 0, 0);
    }
    .marquee-tile {
      position: relative;
      flex: 0 0 clamp(17.5rem, 32vw, 26.25rem);
      aspect-ratio: 420 / 270;
      overflow: hidden;
      border-radius: 1rem;
      background: #111;
    }
    .marquee-tile img,
    .marquee-tile video {
      position: relative;
      z-index: 1;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: .42;
      filter: blur(18px) saturate(.7);
      transform: scale(1.06);
      transition: opacity .55s ease, filter .8s ease, transform .8s ease;
    }
    .marquee-tile.is-loaded img,
    .marquee-tile.is-loaded video {
      opacity: 1;
      filter: blur(0) saturate(1);
      transform: scale(1);
    }
    .marquee-tile.has-video video {
      cursor: pointer;
    }
    .marquee-tile.has-video::after {
      position: absolute;
      z-index: 2;
      top: 50%;
      left: 50%;
      width: 3.25rem;
      height: 3.25rem;
      border: 1px solid rgba(255, 255, 255, .72);
      border-radius: 50%;
      background: rgba(10, 10, 10, .56);
      box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .25);
      backdrop-filter: blur(8px);
      transform: translate(-50%, -50%);
      transition: opacity .2s ease, transform .2s ease;
      content: "";
      pointer-events: none;
    }
    .marquee-tile.has-video::before {
      z-index: 3;
    }
    .marquee-tile.has-video.is-loaded::before {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      border-top: .45rem solid transparent;
      border-bottom: .45rem solid transparent;
      border-left: .72rem solid #fff;
      background: transparent;
      opacity: 1;
      transform: translate(-35%, -50%);
      transition: opacity .2s ease;
      content: "";
      pointer-events: none;
    }
    .marquee-tile.has-video.is-playing::after,
    .marquee-tile.has-video.is-playing::before {
      opacity: 0;
    }

    .mission {
      position: relative;
      overflow: clip;
      padding: clamp(5rem, 10vw, 8rem) var(--page-pad);
      background: var(--bg);
      color: var(--ink);
    }
    .mission-shell {
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
      gap: clamp(2rem, 6vw, 5rem);
      align-items: center;
      max-width: 76rem;
      margin: 0 auto;
    }
    .mission-kicker {
      display: inline-flex;
      margin-bottom: 1rem;
      color: var(--soft);
      font-size: .78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .18em;
    }
    .mission-title {
      margin: 0 0 1.5rem;
      color: var(--white);
      font-family: var(--font-display);
      font-size: var(--section-heading-size);
      font-weight: 400;
      line-height: .9;
      text-transform: uppercase;
    }
    .mission-copy {
      max-width: 34rem;
      margin: 0 0 2rem;
      color: rgba(215, 226, 234, .78);
      font-size: clamp(1rem, 1.7vw, 1.25rem);
      line-height: 1.6;
    }
    .mission-stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1px;
      max-width: 34rem;
      overflow: hidden;
      border: 1px solid rgba(215, 226, 234, .14);
      border-radius: 1.5rem;
      background: rgba(215, 226, 234, .14);
    }
    .mission-stat {
      padding: 1.2rem 1rem;
      background: rgba(255, 255, 255, .04);
    }
    .mission-stat strong {
      display: block;
      color: var(--white);
      font-family: var(--font-display);
      font-size: clamp(1.9rem, 4vw, 3.25rem);
      font-weight: 400;
      line-height: .9;
    }
    .mission-stat span {
      display: block;
      margin-top: .55rem;
      color: rgba(215, 226, 234, .68);
      font-size: .72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .12em;
    }
    .mission-media {
      position: relative;
      min-height: clamp(25rem, 46vw, 36rem);
    }
    .mission-card {
      position: absolute;
      overflow: hidden;
      border: 2px solid rgba(215, 226, 234, .9);
      border-radius: clamp(1.7rem, 4vw, 3.25rem);
      background: #141414;
      box-shadow: 0 2rem 5rem rgba(0, 0, 0, .25);
    }
    .mission-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .mission-card.large {
      right: 0;
      top: 10%;
      width: min(72%, 30rem);
      aspect-ratio: 4 / 5;
    }
    .mission-card.small {
      left: 0;
      bottom: 8%;
      width: min(46%, 18rem);
      aspect-ratio: 1 / 1;
    }
    .mission-float {
      position: absolute;
      z-index: 2;
      object-fit: contain;
      filter: drop-shadow(0 1rem 2rem rgba(0, 0, 0, .28));
      pointer-events: none;
    }
    .mission-float.one {
      top: 0;
      left: 8%;
      width: clamp(5.5rem, 12vw, 9rem);
    }
    .mission-float.two {
      right: 4%;
      bottom: 0;
      width: clamp(6.5rem, 14vw, 11rem);
    }

    .about {
      position: relative;
      min-height: 100svh;
      display: grid;
      place-items: center;
      padding: 5rem var(--page-pad);
      overflow: clip;
      background: var(--bg);
    }
    .about-inner {
      position: relative;
      z-index: 2;
      display: grid;
      justify-items: center;
      gap: clamp(2.5rem, 6vw, 4rem);
      max-width: 42rem;
      text-align: center;
    }
    .animated-text {
      margin: 0;
      color: var(--ink);
      font-size: clamp(1rem, 2vw, 1.35rem);
      font-weight: 500;
      line-height: 1.65;
    }
    .animated-text span { opacity: .2; transition: opacity .18s linear; }
    .animated-text span.visible { opacity: 1; }
    .about .contact-btn { margin-top: clamp(1rem, 4vw, 2rem); }
    .deco {
      position: absolute;
      z-index: 1;
      pointer-events: none;
      object-fit: contain;
    }
    .deco-moon { top: 4%; left: clamp(.25rem, 4vw, 4%); width: clamp(7.5rem, 17vw, 13.125rem); }
    .deco-shape { bottom: 8%; left: clamp(1rem, 10vw, 10%); width: clamp(6.25rem, 14vw, 11.25rem); }
    .deco-lego { top: 4%; right: clamp(.25rem, 4vw, 4%); width: clamp(7.5rem, 17vw, 13.125rem); }
    .deco-group { right: clamp(1rem, 10vw, 10%); bottom: 8%; width: clamp(8.125rem, 18vw, 13.75rem); }

    .services {
      position: relative;
      z-index: 2;
      padding: clamp(5rem, 9vw, 8rem) var(--page-pad);
      border-radius: var(--radius-xl) var(--radius-xl) 0 0;
      background: var(--white);
      color: var(--bg);
    }
    .services .section-title { margin-bottom: clamp(4rem, 8vw, 7rem); color: var(--bg); }
    .service-list {
      max-width: 64rem;
      margin: 0 auto;
      padding: 0;
      list-style: none;
      border-top: 1px solid rgba(12, 12, 12, .15);
    }
    .service-item {
      display: grid;
      grid-template-columns: minmax(5.5rem, .42fr) 1fr;
      gap: clamp(1rem, 4vw, 3rem);
      align-items: center;
      padding: clamp(2rem, 5vw, 3rem) 0;
      border-bottom: 1px solid rgba(12, 12, 12, .15);
    }
    .service-number, .project-number {
      font-size: clamp(3rem, 10vw, 8.75rem);
      font-weight: 900;
      line-height: .8;
      letter-spacing: 0;
    }
    .service-name {
      margin: 0 0 .75rem;
      font-size: clamp(1rem, 2.2vw, 2.1rem);
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: .02em;
    }
    .service-desc {
      max-width: 42rem;
      margin: 0;
      font-size: clamp(.85rem, 1.6vw, 1.25rem);
      font-weight: 300;
      line-height: 1.6;
      opacity: .6;
    }

    .projects {
      position: relative;
      z-index: 10;
      margin-top: clamp(-3.5rem, -4vw, -2.5rem);
      padding: clamp(5rem, 9vw, 8rem) var(--page-pad) 7rem;
      border-radius: var(--radius-xl) var(--radius-xl) 0 0;
      background: var(--bg);
    }
    .projects .section-title { margin-bottom: clamp(3rem, 7vw, 5rem); }
    .project-stack {
      position: relative;
      height: 300svh;
      max-width: 74rem;
      margin: 0 auto;
    }
    .project-fan {
      position: absolute;
      top: -2.1rem;
      right: 0;
      z-index: 12;
      display: flex;
      justify-content: flex-end;
      padding-right: clamp(.75rem, 3vw, 2rem);
    }
    .project-pick {
      position: relative;
      width: clamp(3.5rem, 6vw, 4.75rem);
      height: 3.25rem;
      margin-left: -.85rem;
      border: 2px solid var(--ink);
      border-radius: 1rem 1rem 0 0;
      color: var(--ink);
      background: #171717;
      font: 800 clamp(.8rem, 1.4vw, 1rem)/1 var(--sans);
      cursor: pointer;
      transform: translateY(.35rem) rotate(var(--fan-angle));
      transform-origin: bottom center;
      transition: transform .2s ease, background .2s ease;
    }
    .project-pick:nth-child(1) { --fan-angle: -8deg; }
    .project-pick:nth-child(2) { --fan-angle: 0deg; }
    .project-pick:nth-child(3) { --fan-angle: 8deg; }
    .project-pick:hover,
    .project-pick.is-active {
      z-index: 2;
      background: #303b42;
      transform: translateY(-.4rem) rotate(0);
    }
    .project-wrap {
      position: sticky;
      top: clamp(6rem, 10vw, 8rem);
      height: min(82svh, 52rem);
    }
    .project-card {
      position: absolute;
      inset: 0;
      display: grid;
      grid-template-rows: auto minmax(0, 1fr);
      gap: clamp(1.25rem, 3vw, 2rem);
      padding: clamp(1rem, 3vw, 2rem);
      border: 2px solid var(--ink);
      border-radius: var(--radius-xl);
      background: var(--bg);
      color: var(--ink);
      overflow: hidden;
      opacity: 0;
      transform-origin: top center;
      transform: translateY(2rem) scale(.98);
      visibility: hidden;
      transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
      will-change: transform, opacity;
    }
    .project-card.is-active {
      z-index: 4;
      opacity: 1;
      transform: none;
      visibility: visible;
    }
    .project-top {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) auto;
      gap: clamp(.75rem, 2.5vw, 2rem);
      align-items: end;
    }
    .project-meta { min-width: 0; }
    .project-category {
      display: block;
      margin-bottom: .35rem;
      color: var(--soft);
      font-size: clamp(.78rem, 1.4vw, 1rem);
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: .16em;
    }
    .project-name {
      margin: 0;
      color: var(--white);
      font-size: clamp(1.5rem, 5vw, 4.75rem);
      font-weight: 900;
      line-height: .95;
      text-transform: uppercase;
    }
    .live-btn {
      padding: clamp(.75rem, 1.3vw, .9rem) clamp(1.5rem, 3.2vw, 2.5rem);
      border: 2px solid var(--ink);
      color: var(--ink);
      background: transparent;
      font-size: clamp(.8rem, 1.2vw, 1rem);
      transition: background .2s ease;
    }
    .live-btn:hover { background: rgba(215, 226, 234, .1); }
    .project-grid {
      display: grid;
      grid-template-columns: 2fr 3fr;
      gap: clamp(.75rem, 2vw, 1.25rem);
      min-height: 0;
    }
    .project-col {
      display: grid;
      grid-template-rows: 2fr 3fr;
      gap: clamp(.75rem, 2vw, 1.25rem);
      min-height: 0;
    }
    .project-img {
      width: 100%;
      height: 100%;
      min-height: 0;
      object-fit: cover;
      border-radius: var(--radius-xl);
      background: #151515;
    }
    .project-img.short,
    .project-img.medium,
    .project-img.tall { height: 100%; }

    .contact {
      position: relative;
      z-index: 4;
      overflow: clip;
      padding: clamp(5rem, 10vw, 8rem) var(--page-pad);
      border-radius: var(--radius-xl) var(--radius-xl) 0 0;
      background: var(--white);
      color: var(--bg);
    }
    .contact-shell {
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(19rem, 1.1fr);
      gap: clamp(2rem, 6vw, 5rem);
      align-items: center;
      max-width: 76rem;
      margin: 0 auto;
    }
    .contact-visual {
      position: relative;
      min-height: clamp(24rem, 44vw, 36rem);
    }
    .contact-art {
      position: absolute;
      inset: 4% auto auto 6%;
      width: min(78%, 30rem);
      aspect-ratio: 4 / 5;
      overflow: hidden;
      border: 2px solid var(--bg);
      border-radius: clamp(1.75rem, 4vw, 3rem);
      background: #f4845f;
      box-shadow: 1.25rem 1.25rem 0 var(--bg);
    }
    .contact-art img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .contact-badge {
      position: absolute;
      right: 0;
      bottom: 10%;
      display: grid;
      width: clamp(8rem, 18vw, 12rem);
      aspect-ratio: 1;
      place-items: center;
      border: 2px solid var(--bg);
      border-radius: 999px;
      background: var(--bg);
      color: var(--white);
      font-family: var(--font-display);
      font-size: clamp(1.65rem, 4vw, 3rem);
      line-height: .9;
      text-align: center;
      text-transform: uppercase;
    }
    .contact-content {
      display: grid;
      gap: clamp(1.5rem, 3vw, 2rem);
    }
    .contact-kicker {
      color: var(--orange);
      font-size: .78rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .18em;
    }
    .contact-title {
      margin: 0;
      color: var(--bg);
      font-family: var(--font-display);
      max-width: 38rem;
      font-size: var(--section-heading-size);
      font-weight: 400;
      line-height: 1.02;
      text-transform: uppercase;
      text-wrap: balance;
    }
    .contact-copy {
      max-width: 35rem;
      margin: 0;
      color: rgba(12, 12, 12, .68);
      font-size: clamp(1rem, 1.7vw, 1.2rem);
      line-height: 1.55;
    }
    .contact-form {
      display: grid;
      gap: 1rem;
    }
    .field-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1rem;
    }
    .contact-field {
      display: grid;
      gap: .45rem;
    }
    .contact-field label {
      font-size: .72rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .14em;
    }
    .contact-field input,
    .contact-field textarea {
      width: 100%;
      border: 2px solid rgba(12, 12, 12, .18);
      border-radius: 1rem;
      background: rgba(12, 12, 12, .04);
      color: var(--bg);
      font: inherit;
      padding: .95rem 1rem;
      outline: 0;
      transition: border-color .2s ease, background .2s ease;
    }
    .contact-field textarea {
      min-height: 9rem;
      resize: vertical;
    }
    .contact-field input:focus,
    .contact-field textarea:focus {
      border-color: var(--bg);
      background: var(--white);
    }
    .contact-submit {
      justify-self: start;
      min-height: 3.25rem;
      padding: .95rem 1.5rem;
      border: 0;
      border-radius: 999px;
      background: var(--bg);
      color: var(--white);
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .12em;
      cursor: pointer;
      transition: transform .2s ease, filter .2s ease;
    }
    .contact-submit:hover { transform: translateY(-2px); filter: brightness(1.12); }

    .site-footer {
      position: relative;
      overflow: clip;
      padding: clamp(4rem, 9vw, 8rem) var(--page-pad) clamp(1.5rem, 4vw, 2.5rem);
      border-top: 1px solid rgba(215, 226, 234, .16);
      background:
        radial-gradient(circle at 18% 10%, rgba(246, 147, 101, .2), transparent 30rem),
        radial-gradient(circle at 86% 18%, rgba(110, 181, 255, .18), transparent 28rem),
        var(--bg);
      color: var(--ink);
    }
    .footer-shell {
      position: relative;
      z-index: 1;
      max-width: 76rem;
      margin: 0 auto;
    }
    .footer-top {
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(20rem, 1.1fr);
      gap: clamp(2rem, 7vw, 6rem);
      align-items: end;
      padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
    }
    .footer-kicker {
      display: inline-flex;
      margin-bottom: 1rem;
      color: var(--soft);
      font-size: clamp(.62rem, calc(1.7vw - 1pt), 1.32rem);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .18em;
      white-space: nowrap;
    }
    .footer-title {
      max-width: 58rem;
      margin: 0;
      color: var(--white);
      font-family: var(--font-display);
      font-size: clamp(2.8rem, 10.4vw, 8.4rem);
      font-weight: 400;
      line-height: .85;
      letter-spacing: 0;
      text-transform: uppercase;
    }
    .footer-copy {
      margin: 0 0 1.5rem;
      color: rgba(215, 226, 234, .78);
      font-size: clamp(1rem, 1.8vw, 1.25rem);
      line-height: 1.55;
    }
    .footer-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: .6rem;
      min-height: 3.25rem;
      padding: .95rem 1.4rem;
      border: 2px solid var(--ink);
      border-radius: 999px;
      color: var(--white);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .12em;
      transition: transform .2s ease, background .2s ease;
    }
    .footer-cta:hover { transform: translateY(-2px); background: rgba(215, 226, 234, .1); }
    .footer-cta svg { width: 1.25rem; height: 1.25rem; stroke-width: 2.25; }
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1px;
      overflow: hidden;
      border: 1px solid rgba(215, 226, 234, .16);
      border-radius: clamp(1.5rem, 3.5vw, 2.75rem);
      background: rgba(215, 226, 234, .16);
    }
    .footer-panel {
      min-height: 10.5rem;
      padding: clamp(1.25rem, 3vw, 2rem);
      background: rgba(12, 12, 12, .86);
    }
    .footer-panel h2 {
      margin: 0 0 1rem;
      color: var(--white);
      font-size: .82rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .16em;
    }
    .footer-list {
      display: grid;
      gap: .72rem;
      margin: 0;
      padding: 0;
      list-style: none;
    }
    .footer-list a, .footer-list span {
      color: rgba(215, 226, 234, .74);
      font-size: .95rem;
      line-height: 1.4;
    }
    .footer-list a { transition: color .2s ease; }
    .footer-list a:hover { color: var(--white); }
    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding-top: clamp(1.5rem, 4vw, 2.25rem);
      color: rgba(215, 226, 234, .62);
      font-size: .82rem;
      text-transform: uppercase;
      letter-spacing: .12em;
    }

    @media (max-width: 960px) {
      .contact-shell {
        grid-template-columns: 1fr;
        gap: clamp(3rem, 8vw, 5rem);
        max-width: 42rem;
      }
      .contact-visual {
        min-height: clamp(24rem, 68vw, 32rem);
      }
      .contact-art {
        inset: 0 auto auto 4%;
        width: min(68%, 26rem);
      }
      .contact-badge {
        right: 4%;
        bottom: 0;
      }
      .contact-content {
        position: relative;
        z-index: 1;
      }
    }

    @media (max-width: 1100px) {
      .solution-matrix { width: min(96%, 60rem); }
    }

    @media (max-width: 760px) {
      .growth-intro { min-height: auto; }
      .solution-matrix {
        width: 100%;
        overflow: visible;
        border: 0;
        border-radius: 0;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
      }
      .solution-matrix-head {
        display: grid;
        margin-bottom: .45rem;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: .75rem;
      }
      .solution-matrix-head h3 {
        display: flex;
        min-height: 2.65rem;
        align-items: center;
        padding: .6rem .7rem;
        font-size: .78rem;
        line-height: 1.15;
      }
      .solution-list { display: grid; gap: .45rem; }
      .solution-row {
        grid-template-columns: 1fr;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: 1rem;
        background: rgba(12, 14, 22, .88);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
      }
      .solution-challenge,
      .solution-promise {
        min-height: 0;
        align-items: flex-start;
        padding: .65rem;
      }
      .solution-challenge { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .1); }
      .solution-mobile-label {
        display: block;
        margin: 0 0 .35rem;
        color: rgba(255, 255, 255, .78);
        font-size: .72rem;
        font-weight: 700;
        letter-spacing: .12em;
        text-transform: uppercase;
      }
      .solution-promise .solution-mobile-label { color: #FF9A44; }
      .contact-btn { align-self: flex-end; }
      .service-item { grid-template-columns: 1fr; gap: .9rem; }
      .project-stack { height: 300svh; }
      .project-fan {
        top: -2.1rem;
        padding-right: .75rem;
      }
      .project-wrap {
        top: 6rem;
        height: min(82svh, 42rem);
      }
      .project-top { grid-template-columns: 1fr; align-items: start; }
      .project-grid { grid-template-columns: .85fr 1.15fr; }
      .live-btn { justify-self: start; }
      .mission-shell { grid-template-columns: 1fr; }
      .mission-media { min-height: 25rem; }
      .contact-visual { min-height: 23rem; }
      .contact-art { width: min(72%, 24rem); }
      .field-grid { grid-template-columns: 1fr; }
      .footer-top, .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { align-items: flex-start; flex-direction: column; }
    }
    @media (max-width: 640px) {
      .hero {
        min-height: clamp(38rem, 100dvh, 46rem);
      }
      .hero-stage {
        height: clamp(38rem, 100dvh, 46rem);
        min-height: 0;
      }
      .vision-hero {
        min-height: 100svh;
        padding-inline: 1rem;
      }
      .vision-content {
        margin-top: clamp(8rem, 25vh, 12rem);
      }
      .vision-title { font-size: clamp(2.2rem, 12vw, 4.25rem); }
      .vision-equation { column-gap: .5rem; }
      .marquee {
        overflow-x: auto;
        overflow-y: hidden;
        scroll-padding-inline: 1rem;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
      }
      .marquee::-webkit-scrollbar { display: none; }
      .marquee-row {
        transform: none !important;
      }
      .marquee-tile {
        flex-basis: min(78vw, 22rem);
        scroll-snap-align: start;
      }
      .toon-nav { left: 1rem; right: 1rem; }
      .toon-links { display: none; }
      .menu-toggle { display: inline-flex; }
      .ghost-title {
        top: 7.35rem;
        left: 1.25rem;
        width: min(13.25rem, 45vw);
        font-size: clamp(1.6rem, calc(12vw * var(--title-scale, 1)), 3.1rem);
        line-height: .94;
      }
      .hero[data-title-size="short"] .ghost-title {
        width: min(16rem, 58vw);
      }
      .hero[data-title-size="long"] .ghost-title {
        width: min(12.5rem, 43vw);
        font-size: clamp(1.52rem, calc(11.2vw * var(--title-scale, 1)), 2.75rem);
        line-height: .98;
      }
      .hero-search-title {
        top: 4.8rem;
        right: 1.25rem;
        width: min(20rem, calc(100vw - 2.5rem));
        font-size: .68rem;
        line-height: 1.3;
      }
      .hero-quick-links {
        top: auto;
        right: auto;
        bottom: 13.5rem;
        left: 1.25rem;
        width: min(18rem, calc(100vw - 2.5rem));
        flex-direction: column;
        gap: .75rem;
        transform: none;
      }
      .hero-quick-link {
        width: 100%;
        min-width: 0;
        min-height: 3.1rem;
        flex: none;
        padding: .7rem 1rem;
      }
      .toon-item {
        aspect-ratio: 3 / 4;
        height: auto;
      }
      .toon-item img {
        transform: translateY(0) scale(1);
      }
      .toon-item.is-center {
        width: var(--mw, min(96vw, 30rem));
        bottom: var(--mb, -2%);
        transform: translateX(-50%) scale(1);
      }
      .toon-item.is-center img {
        transform: var(--mt, translateY(12%) scale(1.12));
      }
      .toon-item.is-left {
        left: 20%;
        width: min(18vw, 6rem);
        bottom: 24%;
      }
      .toon-item.is-right {
        left: 80%;
        width: min(18vw, 6rem);
        bottom: 24%;
      }
      .toon-item.is-back {
        width: min(15vw, 5rem);
        bottom: 24%;
      }
      .toon-copy {
        left: 1.25rem;
        bottom: 1.1rem;
        width: min(20rem, calc(100vw - 8rem));
      }
      .toon-eyebrow {
        max-width: 100%;
        margin-bottom: .4rem;
        font-size: clamp(.88rem, 4vw, 1.1rem);
      }
      .toon-description {
        display: block;
        display: -webkit-box;
        margin-bottom: .75rem;
        max-width: 18rem;
        overflow: hidden;
        font-size: .78rem;
        line-height: 1.45;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
      }
      .toon-actions { gap: .55rem; }
      .round-btn {
        width: 2.75rem;
        height: 2.75rem;
      }
      .round-btn svg {
        width: 1.2rem;
        height: 1.2rem;
      }
      .discover-link {
        right: 1rem;
        bottom: 1.35rem;
        max-width: 5.35rem;
        font-size: clamp(1rem, 8vw, 1.8rem);
        line-height: .92;
        text-align: right;
        justify-content: flex-end;
      }
      .mission { padding-top: 4rem; }
      .mission-stats { grid-template-columns: 1fr; }
      .mission-card.large {
        width: 78%;
        top: 8%;
      }
      .mission-card.small {
        width: 50%;
        bottom: 4%;
      }
      .contact { padding-top: 4.5rem; }
      .contact-visual { min-height: 20rem; }
      .contact-badge {
        right: 2%;
        bottom: 4%;
      }
    }
    @media (max-width: 520px) {
      .about { padding-top: 7rem; padding-bottom: 7rem; }
      .deco { opacity: .58; }
      .deco-moon, .deco-lego { top: 1.5rem; }
      .deco-shape, .deco-group { bottom: 1.5rem; }
    }
    @media (max-width: 420px) {
      .toon-brand { letter-spacing: .14em; }
      .round-btn { width: 2.55rem; height: 2.55rem; }
      .round-btn svg { width: 1.1rem; height: 1.1rem; }
      .ghost-title {
        top: 7.15rem;
        width: min(12rem, 44vw);
        font-size: clamp(1.4rem, calc(11.2vw * var(--title-scale, 1)), 2.7rem);
      }
      .hero[data-title-size="long"] .ghost-title {
        width: min(11.25rem, 42vw);
        font-size: clamp(1.28rem, calc(10.4vw * var(--title-scale, 1)), 2.4rem);
      }
      .toon-copy { width: min(17rem, calc(100vw - 7rem)); }
      .toon-description {
        max-width: 15rem;
        font-size: .72rem;
        -webkit-line-clamp: 3;
      }
      .discover-link { max-width: 4.7rem; font-size: 1.05rem; }
      .discover-link svg { width: 1rem; height: 1rem; }
    }
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
      .fade { opacity: 1; transform: none; }
      .animated-text span { opacity: 1; }
      .marquee-row, .project-card { transform: none !important; }
      .hero-loader-track::before, .marquee-tile::before { animation: none; }
    }

    /* Firefox can move large backdrop blurs into its GPU helper process. */
    @supports (-moz-appearance: none) {
      .solution-matrix,
      .site-nav,
      .mobile-menu {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
      }
      .marquee-tile img, .marquee-tile video { filter: none; }
    }
