
    :root {
      --paper: #f4efe8;
      --paper-light: #fbf8f3;
      --paper-deep: #e9dfd4;
      --ink: #1b1916;
      --ink-soft: #5f5850;
      --ink-faint: #8c8277;
      --peach: #ee8d61;
      --peach-soft: #f7c0a3;
      --peach-deep: #c45f39;
      --stone: #8e4b2c;
      --sage: #274c44;
      --sage-light: #9cb6aa;
      --line: rgba(27, 25, 22, 0.14);
      --line-light: rgba(255, 255, 255, 0.15);
      --white: #fffdf9;
      --display: "Fraunces", Georgia, serif;
      --body: "Figtree", Arial, sans-serif;
      --ease-out: cubic-bezier(.16, 1, .3, 1);
      --ease-smooth: cubic-bezier(.65, 0, .35, 1);
      --shadow: 0 30px 80px rgba(66, 39, 24, 0.13);
    }

    * { box-sizing: border-box; }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 90px;
      background: var(--paper);
    }

    body {
      min-width: 320px;
      margin: 0;
      overflow-x: hidden;
      background: var(--paper);
      color: var(--ink);
      font-family: var(--body);
      font-size: 16px;
      line-height: 1.6;
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;
    }

    body::before {
      position: fixed;
      z-index: 1000;
      inset: 0 0 auto;
      height: 2px;
      transform: scaleX(var(--scroll-progress, 0));
      transform-origin: left;
      background: linear-gradient(90deg, var(--peach), var(--stone));
      content: "";
      pointer-events: none;
    }

    ::selection { background: var(--peach-soft); color: var(--ink); }

    a { color: inherit; text-decoration: none; }
    button, summary, a { -webkit-tap-highlight-color: transparent; }
    button { color: inherit; font: inherit; }
    img, svg { display: block; max-width: 100%; }
    p, h1, h2, h3, h4 { margin-top: 0; }

    a:focus-visible,
    button:focus-visible,
    summary:focus-visible {
      border-radius: 4px;
      outline: 2px solid var(--peach-deep);
      outline-offset: 5px;
    }

    .shell {
      width: min(1240px, calc(100% - 80px));
      margin-inline: auto;
    }

    .skip-link {
      position: fixed;
      z-index: 1100;
      top: 12px;
      left: 12px;
      padding: 9px 13px;
      transform: translateY(-150%);
      border-radius: 6px;
      background: var(--ink);
      color: var(--white);
      font-size: .8rem;
      font-weight: 700;
      transition: transform .2s var(--ease-out);
    }

    .skip-link:focus { transform: translateY(0); }

    .eyebrow {
      display: flex;
      align-items: center;
      gap: 11px;
      margin-bottom: 24px;
      color: var(--sage);
      font-size: .69rem;
      font-weight: 700;
      letter-spacing: .14em;
      line-height: 1.3;
      text-transform: uppercase;
    }

    .eyebrow::before {
      width: 26px;
      height: 1px;
      background: currentColor;
      content: "";
    }

    h1, h2, h3, h4 {
      color: var(--ink);
      font-family: var(--display);
      font-optical-sizing: auto;
      font-weight: 500;
      letter-spacing: -.045em;
      line-height: .98;
    }

    h2 { font-size: clamp(3rem, 5.8vw, 5.7rem); }

    .section-intro {
      display: grid;
      grid-template-columns: minmax(0, 1.25fr) minmax(270px, .75fr);
      align-items: end;
      gap: 90px;
      margin-bottom: 78px;
    }

    .section-intro h2 { max-width: 850px; margin-bottom: 0; }

    .section-intro > p {
      max-width: 430px;
      margin: 0 0 7px;
      color: var(--ink-soft);
      font-size: 1.04rem;
      line-height: 1.7;
    }

    .accent-serif { color: var(--peach-deep); font-style: italic; }

    /* Header */
    .site-header {
      position: fixed;
      z-index: 100;
      top: 0;
      right: 0;
      left: 0;
      border-bottom: 1px solid transparent;
      transition: background .4s ease, border-color .4s ease, transform .4s var(--ease-out);
    }

    .site-header.is-scrolled {
      border-color: var(--line);
      background: rgba(244, 239, 232, .88);
      backdrop-filter: blur(18px) saturate(120%);
      -webkit-backdrop-filter: blur(18px) saturate(120%);
    }

    .header-inner {
      display: grid;
      min-height: 82px;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 54px;
    }

    .brand-link { display: inline-flex; align-items: baseline; gap: 10px; white-space: nowrap; }
    .wordmark { font-family: var(--display); font-size: 1.58rem; font-weight: 600; letter-spacing: -.05em; line-height: 1; }
    .wordmark em { color: var(--stone); font-style: italic; }
    .studio-label { color: var(--ink-faint); font-size: .59rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }

    .desktop-nav { display: flex; justify-content: center; gap: clamp(22px, 2.6vw, 38px); }

    .desktop-nav a {
      position: relative;
      padding-block: 10px;
      color: var(--ink-soft);
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .desktop-nav a::after {
      position: absolute;
      right: 0;
      bottom: 5px;
      left: 0;
      height: 1px;
      transform: scaleX(0);
      transform-origin: right;
      background: var(--peach-deep);
      content: "";
      transition: transform .35s var(--ease-out);
    }

    .desktop-nav a:hover { color: var(--ink); }
    .desktop-nav a:hover::after,
    .desktop-nav a[aria-current="true"]::after { transform: scaleX(1); transform-origin: left; }

    .header-cta,
    .button {
      display: inline-flex;
      min-height: 48px;
      align-items: center;
      justify-content: center;
      gap: 18px;
      border-radius: 999px;
      font-size: .76rem;
      font-weight: 700;
      letter-spacing: .06em;
      line-height: 1;
      text-transform: uppercase;
      transition: transform .3s var(--ease-out), background .3s ease, color .3s ease, border-color .3s ease;
    }

    .header-cta { min-height: 42px; padding: 0 18px; background: var(--ink); color: var(--white); }
    .header-cta:hover, .button:hover { transform: translateY(-2px); }
    .header-cta:hover { background: var(--sage); }

    .mobile-nav { display: none; }

    /* Hero */
    .hero {
      position: relative;
      display: grid;
      min-height: 100svh;
      grid-template-columns: minmax(0, 1.15fr) minmax(390px, .85fr);
      align-items: center;
      gap: clamp(30px, 5vw, 76px);
      padding-top: 116px;
      padding-bottom: 70px;
    }

    .hero::before {
      position: absolute;
      z-index: -2;
      top: -12%;
      right: 0;
      width: 62%;
      aspect-ratio: 1;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(238, 141, 97, .15), rgba(238, 141, 97, 0) 68%);
      content: "";
      pointer-events: none;
    }

    .hero-copy { position: relative; z-index: 2; }

    .hero h1 {
      max-width: 830px;
      margin-bottom: 30px;
      font-size: clamp(4.5rem, 7.45vw, 7.7rem);
      line-height: .88;
      text-wrap: balance;
    }

    .hero h1 .line { display: block; }
    .hero h1 .line:last-child { padding-left: clamp(0px, 5vw, 72px); }

    .hero-intro {
      max-width: 650px;
      margin: 0 0 34px;
      color: var(--ink-soft);
      font-size: clamp(1.03rem, 1.35vw, 1.16rem);
      line-height: 1.7;
    }

    .button-row { display: flex; flex-wrap: wrap; gap: 11px; }
    .button { min-height: 52px; padding: 0 21px; border: 1px solid var(--ink); }
    .button-primary { background: var(--ink); color: var(--white); }
    .button-primary:hover { border-color: var(--sage); background: var(--sage); }
    .button-secondary:hover { background: var(--paper-light); }
    .button-arrow { font-size: 1rem; transition: transform .3s var(--ease-out); }
    .button:hover .button-arrow { transform: translateX(3px); }

    .hero-note {
      display: flex;
      flex-wrap: wrap;
      gap: 14px 25px;
      margin-top: 31px;
      color: var(--ink-faint);
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .hero-note span { display: inline-flex; align-items: center; gap: 9px; }
    .hero-note span::before { width: 5px; height: 5px; border-radius: 50%; background: var(--sage); content: ""; }

    .hero-art {
      position: relative;
      min-width: 0;
      margin: 0;
      perspective: 1100px;
    }

    .peach-stage {
      position: relative;
      width: min(100%, 530px);
      margin-inline: auto;
      aspect-ratio: .88;
      transform: rotateX(var(--stage-x, 0deg)) rotateY(var(--stage-y, 0deg));
      transform-style: preserve-3d;
      transition: transform .75s var(--ease-out);
    }

    .stage-ring {
      position: absolute;
      inset: 10% 2% 7%;
      border: 1px solid rgba(39, 76, 68, .24);
      border-radius: 50%;
      transform: rotate(-18deg);
    }

    .stage-ring::before,
    .stage-ring::after {
      position: absolute;
      border-radius: 50%;
      content: "";
    }

    .stage-ring::before {
      top: 6%;
      right: 20%;
      width: 8px;
      height: 8px;
      background: var(--stone);
      box-shadow: 0 0 0 6px rgba(142, 75, 44, .09);
    }

    .stage-ring::after {
      right: 4%;
      bottom: 22%;
      width: 4px;
      height: 4px;
      background: var(--sage);
    }

    .orbit-copy {
      position: absolute;
      z-index: 4;
      display: grid;
      grid-template-columns: auto 1fr;
      align-items: start;
      gap: 8px;
      padding: 8px 10px;
      border-left: 1px solid currentColor;
      background: rgba(8,11,20,.7);
      color: var(--ink-faint);
      font-size: .61rem;
      font-weight: 700;
      letter-spacing: .13em;
      text-transform: uppercase;
      pointer-events: none;
      backdrop-filter: blur(8px);
      transition: opacity .45s ease, border-color .45s ease, box-shadow .45s ease;
    }

    .orbit-copy-human { top: 9%; left: -1%; }
    .orbit-copy-core { right: -1%; bottom: 15%; opacity: .58; }
    .orbit-copy b { color: currentColor; font-size: .48rem; letter-spacing: .08em; }
    .orbit-copy > span { display: grid; gap: 3px; }
    .orbit-copy small { color: rgba(255,255,255,.36); font-size: .45rem; letter-spacing: .1em; white-space: nowrap; }

    .orbit-copy::after {
      position: absolute;
      top: 50%;
      display: block;
      width: 42px;
      height: 1px;
      background: currentColor;
      content: "";
    }

    .orbit-copy-human::after { left: calc(100% + 8px); }
    .orbit-copy-core::after { right: calc(100% + 8px); }
    .peach-stage[data-open="true"] .orbit-copy-core { opacity: 1; border-color: #84a1ff; box-shadow: -8px 0 18px rgba(63,115,255,.1); }
    .peach-stage[data-open="true"] .orbit-copy-human { opacity: .72; }

    .peach-toggle {
      position: absolute;
      z-index: 3;
      inset: 3% 5% 0;
      padding: 0;
      border: 0;
      background: transparent;
      cursor: pointer;
    }

    .peach-toggle svg {
      width: 100%;
      height: 100%;
      overflow: visible;
      filter: drop-shadow(0 35px 30px rgba(88, 43, 21, .13));
    }

    .peach-object {
      transform-origin: 50% 58%;
      animation: peach-drift 8s var(--ease-smooth) infinite;
    }

    @keyframes peach-drift {
      0%, 100% { transform: translateY(0) rotate(-.35deg); }
      50% { transform: translateY(-9px) rotate(.35deg); }
    }

    .peach-lobe,
    .peach-stem-leaf,
    .peach-stone,
    .peach-seam,
    .inner-glow {
      transform-box: fill-box;
      transition: transform 1s var(--ease-out), opacity .65s ease, filter .65s ease;
    }

    .lobe-left { transform-origin: 100% 56%; }
    .lobe-right { transform-origin: 0 56%; }
    .peach-stem-leaf { transform-origin: 52% 22%; }
    .peach-stone { transform-origin: 50% 55%; opacity: 0; transform: translateY(35px) scale(.48) rotate(-7deg); }
    .peach-seam { opacity: .48; }
    .inner-glow { opacity: 0; }

    .peach-toggle:hover .lobe-left { transform: translateX(-3px) rotate(-.7deg); }
    .peach-toggle:hover .lobe-right { transform: translateX(3px) rotate(.7deg); }
    .peach-toggle:hover .peach-stem-leaf { transform: rotate(-2deg) translateY(-2px); }

    .peach-stage[data-open="true"] .lobe-left { transform: translateX(-66px) rotate(-8deg); }
    .peach-stage[data-open="true"] .lobe-right { transform: translateX(66px) rotate(8deg); }
    .peach-stage[data-open="true"] .peach-stem-leaf { opacity: .58; transform: translateY(-18px) scale(.96); }
    .peach-stage[data-open="true"] .peach-stone { opacity: 1; transform: translateY(-2px) scale(1) rotate(2deg); filter: drop-shadow(0 22px 22px rgba(74, 35, 16, .25)); }
    .peach-stage[data-open="true"] .peach-seam { opacity: 0; }
    .peach-stage[data-open="true"] .inner-glow { opacity: .85; }

    .peach-control {
      position: absolute;
      z-index: 5;
      right: 1%;
      bottom: 1%;
      display: inline-flex;
      align-items: center;
      gap: 11px;
      padding: 9px 13px 9px 10px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(251, 248, 243, .78);
      color: var(--ink-soft);
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      pointer-events: none;
      backdrop-filter: blur(8px);
    }

    .peach-control i {
      position: relative;
      display: block;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: var(--ink);
    }

    .peach-control i::before,
    .peach-control i::after {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 9px;
      height: 1px;
      transform: translate(-50%, -50%);
      background: var(--white);
      content: "";
      transition: transform .5s var(--ease-out);
    }

    .peach-control i::after { transform: translate(-50%, -50%) rotate(90deg); }
    .peach-stage[data-open="true"] .peach-control i::before { transform: translate(-50%, -50%) rotate(45deg); }
    .peach-stage[data-open="true"] .peach-control i::after { transform: translate(-50%, -50%) rotate(-45deg); }
    .control-close { display: none; }
    .peach-stage[data-open="true"] .control-open { display: none; }
    .peach-stage[data-open="true"] .control-close { display: inline; }

    .scroll-cue {
      position: absolute;
      bottom: 24px;
      left: 0;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: var(--ink-faint);
      font-size: .63rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .scroll-cue::before { width: 38px; height: 1px; background: var(--line); content: ""; }

    /* Proof */
    .proof-rail { border-block: 1px solid var(--line); background: rgba(251, 248, 243, .52); }
    .proof-grid { display: grid; grid-template-columns: 1.15fr repeat(3, 1fr); }
    .proof-intro,
    .proof-stat { min-width: 0; padding: 30px 32px; border-right: 1px solid var(--line); }
    .proof-intro { padding-left: 0; color: var(--ink-soft); font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
    .proof-stat:last-child { border-right: 0; padding-right: 0; }
    .proof-stat strong { display: block; margin-bottom: 4px; font-family: var(--display); font-size: clamp(1.85rem, 2.4vw, 2.65rem); font-weight: 500; letter-spacing: -.04em; line-height: 1; }
    .proof-stat span { color: var(--ink-faint); font-size: .67rem; font-weight: 700; letter-spacing: .08em; line-height: 1.4; text-transform: uppercase; }

    /* Hub */
    .hub { padding-block: 154px 170px; }
    .hub-list { border-bottom: 1px solid var(--line); }

    .hub-row {
      position: relative;
      display: grid;
      grid-template-columns: 70px minmax(220px, .75fr) minmax(300px, 1fr) 54px;
      align-items: center;
      gap: 36px;
      min-height: 155px;
      border-top: 1px solid var(--line);
      isolation: isolate;
    }

    .hub-row::before {
      position: absolute;
      z-index: -1;
      inset: 0;
      transform: scaleY(0);
      transform-origin: bottom;
      background: var(--paper-light);
      content: "";
      transition: transform .55s var(--ease-out);
    }

    .hub-row:hover::before { transform: scaleY(1); }
    .hub-number { color: var(--ink-faint); font-size: .68rem; font-weight: 700; letter-spacing: .1em; }
    .hub-row h3 { margin: 0; font-size: clamp(2.25rem, 4vw, 4.25rem); transition: color .35s ease, transform .55s var(--ease-out); }
    .hub-row:hover h3 { color: var(--peach-deep); transform: translateX(8px); }
    .hub-row p { max-width: 570px; margin: 0; color: var(--ink-soft); font-size: .96rem; line-height: 1.65; }
    .hub-arrow { display: grid; width: 46px; height: 46px; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-size: 1.05rem; transition: transform .55s var(--ease-out), background .35s ease, color .35s ease; }
    .hub-row:hover .hub-arrow { transform: rotate(-35deg); background: var(--ink); color: var(--white); }

    /* Systems */
    .systems-section {
      position: relative;
      overflow: hidden;
      padding-block: 155px 165px;
      background: var(--ink);
      color: #cfc7bd;
    }

    .systems-section::before {
      position: absolute;
      top: -360px;
      right: -300px;
      width: 800px;
      height: 800px;
      border: 1px solid rgba(238, 141, 97, .18);
      border-radius: 50%;
      box-shadow: 0 0 0 100px rgba(238, 141, 97, .025), 0 0 0 220px rgba(238, 141, 97, .02);
      content: "";
    }

    .systems-section .eyebrow { color: var(--peach); }
    .systems-section h2 { color: var(--white); }
    .systems-section .section-intro > p { color: #aaa198; }
    .system-index { position: relative; border-top: 1px solid var(--line-light); }

    .system-row {
      display: grid;
      grid-template-columns: 70px minmax(220px, .7fr) minmax(320px, 1.3fr) auto;
      align-items: center;
      gap: 32px;
      min-height: 112px;
      border-bottom: 1px solid var(--line-light);
      transition: color .35s ease;
    }

    .system-row:hover { color: var(--white); }
    .system-number { color: #7f766e; font-size: .65rem; font-weight: 700; letter-spacing: .12em; }
    .system-row h3 { margin: 0; color: var(--white); font-size: clamp(1.55rem, 2.2vw, 2.35rem); }
    .system-row p { max-width: 600px; margin: 0; color: #aaa198; font-size: .9rem; }
    .system-output { justify-self: end; padding: 8px 11px; border: 1px solid var(--line-light); border-radius: 999px; color: #b9b0a8; font-size: .61rem; font-weight: 700; letter-spacing: .08em; text-align: center; text-transform: uppercase; white-space: nowrap; }

    .ownership {
      display: grid;
      grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
      gap: 80px;
      margin-top: 92px;
      padding-top: 64px;
      border-top: 1px solid var(--line-light);
    }

    .ownership h3 { max-width: 480px; margin: 0; color: var(--white); font-size: clamp(2.35rem, 4vw, 4rem); }
    .ownership-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 42px; }
    .ownership-options article { padding-top: 16px; border-top: 1px solid rgba(238, 141, 97, .55); }
    .ownership-options h4 { margin-bottom: 14px; color: var(--white); font-family: var(--body); font-size: .85rem; font-weight: 700; letter-spacing: .05em; line-height: 1.3; text-transform: uppercase; }
    .ownership-options p { margin: 0; color: #aaa198; font-size: .88rem; }

    /* Services */
    .services { padding-block: 154px 170px; background: var(--paper-light); }
    .services-layout { display: grid; grid-template-columns: minmax(300px, .7fr) minmax(0, 1.3fr); align-items: start; gap: clamp(70px, 10vw, 150px); }
    .services-copy { position: sticky; top: 130px; }
    .services-copy h2 { margin-bottom: 28px; }
    .services-copy > p:not(.eyebrow) { max-width: 440px; color: var(--ink-soft); }

    .text-link {
      display: inline-flex;
      align-items: center;
      gap: 18px;
      padding-bottom: 5px;
      border-bottom: 1px solid var(--peach-deep);
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .05em;
      text-transform: uppercase;
      transition: color .3s ease, gap .35s var(--ease-out);
    }

    .text-link:hover { gap: 24px; color: var(--peach-deep); }
    .service-list { border-top: 1px solid var(--ink); }
    .service-item { border-bottom: 1px solid var(--line); }

    .service-toggle {
      display: grid;
      width: 100%;
      grid-template-columns: minmax(0, 1fr) 44px;
      align-items: center;
      gap: 20px;
      padding: 30px 0;
      border: 0;
      background: transparent;
      cursor: pointer;
      text-align: left;
    }

    .service-title { display: block; margin-bottom: 8px; font-family: var(--display); font-size: clamp(1.7rem, 2.7vw, 2.7rem); font-weight: 500; letter-spacing: -.04em; line-height: 1.05; transition: color .3s ease; }
    .service-summary { display: block; color: var(--ink-faint); font-size: .86rem; }
    .service-toggle:hover .service-title { color: var(--peach-deep); }

    .service-icon { position: relative; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; transition: transform .55s var(--ease-out), background .35s ease; }
    .service-icon::before, .service-icon::after { position: absolute; top: 50%; left: 50%; width: 12px; height: 1px; transform: translate(-50%, -50%); background: var(--ink); content: ""; transition: background .3s ease; }
    .service-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
    .service-item.open .service-icon { transform: rotate(45deg); background: var(--ink); }
    .service-item.open .service-icon::before, .service-item.open .service-icon::after { background: var(--white); }

    .service-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .65s var(--ease-out); }
    .service-panel > div { min-height: 0; overflow: hidden; }
    .service-item.open .service-panel { grid-template-rows: 1fr; }
    .service-detail { padding: 0 64px 36px 0; }
    .service-detail > p { max-width: 680px; color: var(--ink-soft); }
    .service-detail dl { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin: 25px 0 0; }
    .service-detail dl > div { padding-top: 13px; border-top: 1px solid var(--line); }
    .service-detail dt { margin-bottom: 8px; font-size: .65rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
    .service-detail dd { margin: 0; color: var(--ink-faint); font-size: .82rem; line-height: 1.55; }

    /* Work */
    .work { padding-block: 154px 170px; }
    .case-study { position: relative; overflow: hidden; border-radius: 4px; background: var(--sage); color: #cdd8d3; box-shadow: var(--shadow); }
    .case-study::before { position: absolute; top: -45%; right: -12%; width: 58%; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 90px rgba(255,255,255,.025), 0 0 0 180px rgba(255,255,255,.02); content: ""; }
    .case-top { display: flex; justify-content: space-between; gap: 30px; padding: 27px 34px; border-bottom: 1px solid rgba(255,255,255,.14); color: var(--sage-light); font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
    .case-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr); min-height: 480px; }
    .case-copy { display: flex; flex-direction: column; justify-content: space-between; padding: clamp(46px, 6vw, 82px); border-right: 1px solid rgba(255,255,255,.14); }
    .case-copy h3 { max-width: 650px; margin-bottom: 28px; color: var(--white); font-size: clamp(3rem, 5vw, 5.5rem); }
    .case-copy p { max-width: 570px; margin: 0; color: #b6c6bf; font-size: .98rem; }
    .case-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 45px; }
    .case-tags span { padding: 7px 10px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: #dbe4e0; font-size: .61rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
    .case-result { display: flex; flex-direction: column; justify-content: center; padding: clamp(46px, 6vw, 82px); }
    .result-label { margin-bottom: 18px; color: var(--sage-light); font-size: .66rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
    .case-result strong { display: block; color: var(--peach-soft); font-family: var(--display); font-size: clamp(5rem, 8.5vw, 8.5rem); font-weight: 500; letter-spacing: -.07em; line-height: .8; }
    .case-result p { max-width: 270px; margin: 24px 0 0; color: #b6c6bf; font-size: .9rem; }

    .work-foot { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 48px; padding-top: 30px; border-top: 1px solid var(--line); }
    .work-foot article { display: grid; grid-template-columns: 70px 1fr; gap: 24px; }
    .work-foot span { color: var(--ink-faint); font-size: .65rem; font-weight: 700; letter-spacing: .1em; }
    .work-foot h3 { margin-bottom: 12px; font-size: 1.65rem; }
    .work-foot p { max-width: 500px; margin: 0; color: var(--ink-soft); font-size: .87rem; }

    /* About */
    .about { padding-block: 154px 170px; border-top: 1px solid var(--line); background: var(--paper-deep); }
    .about-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); align-items: start; gap: clamp(80px, 11vw, 165px); }
    .about-statement { position: sticky; top: 130px; }
    .about-statement h2 { margin-bottom: 33px; font-size: clamp(3.2rem, 5.7vw, 5.6rem); }
    .about-statement > p { max-width: 560px; color: var(--ink-soft); font-size: 1rem; }
    .name-note { margin-top: 30px; padding-top: 18px; border-top: 1px solid var(--line); font-family: var(--display); font-size: 1.25rem !important; font-style: italic; line-height: 1.4; }
    .expertise { border-top: 1px solid var(--ink); }
    .expertise article { display: grid; grid-template-columns: 46px minmax(0, .8fr) minmax(230px, 1.2fr); gap: 24px; padding: 29px 0; border-bottom: 1px solid var(--line); }
    .expertise span { color: var(--ink-faint); font-size: .63rem; font-weight: 700; letter-spacing: .1em; }
    .expertise h3 { margin: -3px 0 0; font-family: var(--body); font-size: .91rem; font-weight: 700; letter-spacing: 0; line-height: 1.4; }
    .expertise p { margin: 0; color: var(--ink-soft); font-size: .85rem; }

    /* Contact */
    .contact { position: relative; overflow: hidden; padding-block: 160px 145px; background: var(--peach); }
    .contact::before { position: absolute; top: -52%; right: -14%; width: 58vw; height: 58vw; border: 1px solid rgba(27,25,22,.13); border-radius: 50%; box-shadow: 0 0 0 100px rgba(27,25,22,.025), 0 0 0 220px rgba(27,25,22,.018); content: ""; }
    .contact-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); align-items: end; gap: 90px; }
    .contact h2 { max-width: 850px; margin: 0; font-size: clamp(4rem, 7.4vw, 7.5rem); }
    .contact-copy > p { max-width: 430px; margin-bottom: 32px; color: rgba(27,25,22,.72); font-size: 1rem; }
    .contact-email { display: inline-flex; align-items: center; gap: 18px; padding-bottom: 8px; border-bottom: 2px solid var(--ink); font-family: var(--display); font-size: clamp(1.25rem, 2vw, 1.8rem); font-weight: 600; line-height: 1.2; }
    .contact-email span { transition: transform .3s var(--ease-out); }
    .contact-email:hover span { transform: translate(4px, -4px); }
    .contact-secondary { display: block; width: max-content; margin-top: 22px; font-size: .71rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

    /* Footer */
    .site-footer { padding-block: 62px 28px; background: var(--ink); color: #9f968d; }
    .footer-main { display: flex; justify-content: space-between; gap: 50px; padding-bottom: 55px; }
    .site-footer .wordmark { color: var(--white); }
    .site-footer .studio-label { color: #7f766e; }
    .footer-main p { max-width: 360px; margin: 16px 0 0; font-size: .85rem; }
    .footer-links { display: flex; flex-wrap: wrap; align-items: flex-start; gap: 13px 28px; font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
    .footer-links a:hover { color: var(--white); }
    .footer-small { display: flex; justify-content: space-between; gap: 30px; padding-top: 25px; border-top: 1px solid var(--line-light); font-size: .66rem; letter-spacing: .04em; }
    .back-top { padding: 0; border: 0; background: transparent; color: inherit; cursor: pointer; font-size: inherit; }
    .back-top:hover { color: var(--white); }

    /* Reveal */
    .has-js .reveal {
      opacity: 0;
      transform: translateY(34px);
      transition: opacity .9s ease, transform 1s var(--ease-out);
    }

    .has-js .reveal.is-visible { opacity: 1; transform: translateY(0); }
    .has-js .reveal-delay { transition-delay: .12s; }
    .has-js .hero-copy .eyebrow,
    .has-js .hero-copy h1,
    .has-js .hero-intro,
    .has-js .hero-copy .button-row,
    .has-js .hero-note,
    .has-js .hero-art { opacity: 0; transform: translateY(24px); animation: intro-rise .9s var(--ease-out) forwards; }
    .has-js .hero-copy h1 { animation-delay: .08s; }
    .has-js .hero-intro { animation-delay: .17s; }
    .has-js .hero-copy .button-row { animation-delay: .25s; }
    .has-js .hero-note { animation-delay: .31s; }
    .has-js .hero-art { animation-delay: .16s; transform: translateY(30px) scale(.97); }

    @keyframes intro-rise { to { opacity: 1; transform: translateY(0) scale(1); } }

    /* Neon-sign refresh */
    :root {
      --night: #080b14;
      --night-blue: #101827;
      --night-raised: #151f34;
      --neon-coral: #ff6038;
      --neon-orange: #ff8a55;
      --neon-blue: #3f73ff;
      --neon-ivory: #fff1d8;
    }

    .site-header,
    .site-header.is-scrolled {
      border-color: rgba(255, 255, 255, .1);
      background: rgba(8, 11, 20, .88);
      box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
      backdrop-filter: blur(20px) saturate(135%);
      -webkit-backdrop-filter: blur(20px) saturate(135%);
    }

    .site-header .wordmark { color: var(--white); }
    .site-header .wordmark em { color: var(--neon-orange); text-shadow: 0 0 14px rgba(255, 96, 56, .45); }
    .site-header .studio-label { color: rgba(255, 255, 255, .46); }
    .desktop-nav a { color: rgba(255, 255, 255, .62); }
    .desktop-nav a:hover { color: var(--white); }
    .desktop-nav a::after { background: var(--neon-coral); box-shadow: 0 0 9px var(--neon-coral); }
    .header-cta { background: var(--neon-coral); box-shadow: 0 0 24px rgba(255, 96, 56, .25); color: var(--white); }
    .header-cta:hover { background: var(--neon-blue); }
    .site-header .mobile-nav summary { border-color: rgba(255,255,255,.22); color: var(--white); }
    .site-header .menu-mark { border-color: var(--white); }
    .site-header .mobile-nav[open] .menu-mark::after { background: var(--white); }

    .hero {
      color: rgba(255, 255, 255, .72);
      isolation: isolate;
    }

    .hero::after {
      position: absolute;
      z-index: -4;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 100vw;
      transform: translateX(-50%);
      background:
        radial-gradient(circle at 84% 48%, rgba(63, 115, 255, .17), transparent 25%),
        radial-gradient(circle at 70% 65%, rgba(255, 96, 56, .15), transparent 27%),
        linear-gradient(135deg, #070912 0%, #0d1220 52%, #080b14 100%);
      content: "";
    }

    .hero::before {
      right: 0;
      width: 66%;
      background: radial-gradient(circle, rgba(63, 115, 255, .12), rgba(63, 115, 255, 0) 68%);
    }

    .hero .eyebrow { color: #8ca9ff; }
    .hero h1 { color: var(--white); }
    .hero .accent-serif { color: var(--neon-orange); text-shadow: 0 0 26px rgba(255, 96, 56, .2); }
    .hero-intro { color: rgba(255, 255, 255, .64); }
    .hero-note { color: rgba(255, 255, 255, .45); }
    .hero-note span::before { background: var(--neon-blue); box-shadow: 0 0 8px var(--neon-blue); }
    .hero .button-primary { border-color: var(--neon-coral); background: var(--neon-coral); box-shadow: 0 0 24px rgba(255, 96, 56, .22); }
    .hero .button-primary:hover { border-color: var(--neon-blue); background: var(--neon-blue); }
    .hero .button-secondary { border-color: rgba(255,255,255,.38); color: var(--white); }
    .hero .button-secondary:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.08); }
    .scroll-cue { color: rgba(255,255,255,.42); }
    .scroll-cue::before { background: rgba(255,255,255,.2); }

    .stage-ring {
      border-color: rgba(63, 115, 255, .32);
      box-shadow: inset 0 0 55px rgba(63, 115, 255, .04), 0 0 45px rgba(63, 115, 255, .05);
    }

    .stage-ring {
      transform: none;
      background:
        linear-gradient(rgba(92,128,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(92,128,255,.045) 1px, transparent 1px);
      background-size: 42px 42px;
    }
    .stage-ring::before, .stage-ring::after { display: none; }
    .orbit-copy { text-shadow: 0 0 12px currentColor; }
    .orbit-copy-human { color: #ff9a71; }
    .orbit-copy-core { color: #84a1ff; }

    .peach-toggle svg { filter: drop-shadow(0 30px 34px rgba(0, 0, 0, .38)); }
    .peach-lobe use:nth-of-type(1) { fill: #42141a; stroke: var(--neon-coral); stroke-width: 5; }
    .peach-lobe use:nth-of-type(2) { fill: rgba(255, 48, 24, .28); }
    .peach-lobe use:nth-of-type(3) { fill: rgba(255, 117, 69, .13); }
    .peach-lobe { filter: drop-shadow(0 0 4px rgba(255,241,216,.9)) drop-shadow(0 0 11px rgba(255,96,56,.95)) drop-shadow(0 0 26px rgba(255,54,28,.5)); }
    .peach-lobe path { fill: rgba(255, 241, 216, .14); }
    .neon-trace {
      fill: none;
      stroke: var(--neon-ivory);
      stroke-width: 7;
      stroke-linecap: round;
      stroke-dasharray: 1800;
      stroke-dashoffset: 1800;
      filter: drop-shadow(0 0 4px #fff) drop-shadow(0 0 11px var(--neon-coral)) drop-shadow(0 0 24px var(--neon-coral));
      animation: outline-zip 1.55s var(--ease-out) .18s forwards;
      transition: opacity .4s ease;
    }

    @keyframes outline-zip {
      0% { stroke-dashoffset: 1800; opacity: .3; }
      70% { opacity: 1; }
      100% { stroke-dashoffset: 0; opacity: 1; }
    }

    .peach-seam { stroke: var(--neon-ivory); filter: drop-shadow(0 0 4px var(--neon-ivory)) drop-shadow(0 0 10px var(--neon-coral)); opacity: .82; }
    .peach-stem-leaf path:nth-child(1) { stroke: var(--neon-blue) !important; filter: drop-shadow(0 0 4px #b8c8ff) drop-shadow(0 0 12px var(--neon-blue)); }
    .peach-stem-leaf path:nth-child(2) { fill: #102d71; stroke: var(--neon-blue); stroke-width: 5; filter: drop-shadow(0 0 4px #aac0ff) drop-shadow(0 0 13px var(--neon-blue)); }
    .peach-stem-leaf path:nth-child(3) { stroke: #c9d6ff; filter: drop-shadow(0 0 5px var(--neon-blue)); }
    .peach-stone .stone-body { fill: url(#core-fill); stroke: #7398ff; stroke-width: 4; filter: drop-shadow(0 0 5px #9bb2ff) drop-shadow(0 0 20px rgba(63,115,255,.75)); }
    .core-facet { stroke: rgba(150,177,255,.26); stroke-width: 2; }
    .core-facet-a { fill: rgba(82,119,232,.18); }
    .core-facet-b { fill: rgba(17,32,76,.72); }
    .core-facet-c { fill: rgba(93,59,121,.28); }
    .core-circuit { fill: none; stroke: #8da9ff; stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 0 5px rgba(63,115,255,.8)); }
    .core-circuit-hot { stroke: var(--neon-coral); filter: drop-shadow(0 0 6px var(--neon-coral)); }
    .core-node { fill: #080d1c; stroke: #9bb2ff; stroke-width: 3; }
    .core-node-hot { fill: var(--neon-coral); stroke: #ffe0d1; filter: drop-shadow(0 0 7px var(--neon-coral)); }
    .peach-stone {
      transform: translateY(42px) scale(.38) rotate(-10deg);
      transform-origin: 50% 55%;
      transition: opacity .45s ease, filter .7s ease;
    }

    .peach-stage[data-open="true"] .peach-stone {
      transform: translateY(-18px) scale(1.12) rotate(-2deg);
      animation: stone-forward 1.05s cubic-bezier(.16, 1.35, .3, 1) both;
      filter: drop-shadow(0 30px 30px rgba(0,0,0,.48)) drop-shadow(0 0 23px rgba(63,115,255,.62));
    }

    .peach-stage[data-open="true"] .neon-trace { opacity: 0; }

    @keyframes stone-forward {
      0% { opacity: 0; transform: translateY(46px) scale(.32) rotate(-12deg); }
      72% { opacity: 1; transform: translateY(-24px) scale(1.2) rotate(2deg); }
      100% { opacity: 1; transform: translateY(-18px) scale(1.12) rotate(-2deg); }
    }

    .inner-glow { fill: rgba(63,115,255,.26); filter: blur(8px) drop-shadow(0 0 22px var(--neon-blue)); }
    .peach-control { border-color: rgba(255,255,255,.15); background: rgba(8,11,20,.78); color: rgba(255,255,255,.72); }
    .peach-control i { background: var(--neon-blue); box-shadow: 0 0 12px rgba(63,115,255,.72); }
    .peach-stage[data-open="true"] .peach-control i { background: var(--neon-coral); box-shadow: 0 0 12px rgba(255,96,56,.6); }

    .proof-rail { border-color: rgba(255,255,255,.1); background: var(--night); color: var(--white); }
    .proof-intro, .proof-stat { border-color: rgba(255,255,255,.1); }
    .proof-intro { color: rgba(255,255,255,.48); }
    .proof-stat span { color: rgba(255,255,255,.44); }
    .proof-stat strong { color: var(--neon-ivory); }
    .proof-stat:nth-child(3) strong { color: #8aa6ff; }
    .proof-stat:nth-child(4) strong { color: #ff9770; }

    .hub-row:hover h3 { color: var(--neon-coral); }
    .hub-row:hover .hub-arrow { background: var(--neon-blue); }
    .systems-section { background: linear-gradient(145deg, #080b14, #111827 72%, #10172a); }
    .systems-section::before { border-color: rgba(63,115,255,.2); box-shadow: 0 0 0 100px rgba(63,115,255,.025), 0 0 0 220px rgba(255,96,56,.018); }
    .systems-section .eyebrow { color: #84a1ff; }
    .systems-section .accent-serif { color: var(--neon-orange); text-shadow: 0 0 28px rgba(255,96,56,.22); }
    .system-output { border-color: rgba(63,115,255,.3); color: #9eb4ff; }
    .ownership-options article { border-color: var(--neon-coral); }

    .text-link { border-color: var(--neon-blue); }
    .text-link:hover, .service-toggle:hover .service-title { color: #2458e8; }
    .service-item.open .service-icon { background: var(--neon-blue); }
    .case-study { background: linear-gradient(135deg, #152459, #0d1838 62%, #251522); }
    .case-study::before { border-color: rgba(63,115,255,.24); box-shadow: 0 0 0 90px rgba(63,115,255,.035), 0 0 0 180px rgba(255,96,56,.025); }
    .case-result strong { color: var(--neon-orange); text-shadow: 0 0 28px rgba(255,96,56,.18); }
    .contact { background: linear-gradient(135deg, #0d1220, #111a30); color: rgba(255,255,255,.68); }
    .contact::before { border-color: rgba(63,115,255,.18); box-shadow: 0 0 0 100px rgba(63,115,255,.025), 0 0 0 220px rgba(255,96,56,.018); }
    .contact .eyebrow { color: #86a3ff; }
    .contact h2 { color: var(--white); }
    .contact-copy > p { color: rgba(255,255,255,.56); }
    .contact-email { border-color: var(--neon-coral); color: var(--neon-ivory); text-shadow: 0 0 16px rgba(255,96,56,.25); }
    .contact-secondary { color: rgba(255,255,255,.64); }

    /* Work : neon evidence console */
    .work {
      position: relative;
      isolation: isolate;
      overflow: hidden;
      padding-block: 150px 165px;
      background:
        radial-gradient(circle at 77% 42%, rgba(63,115,255,.13), transparent 28%),
        radial-gradient(circle at 24% 68%, rgba(255,96,56,.08), transparent 24%),
        linear-gradient(145deg, #070a12 0%, #0b1020 54%, #080b14 100%);
      color: rgba(255,255,255,.68);
    }

    .work::before {
      position: absolute;
      z-index: -2;
      inset: 0;
      background-image:
        linear-gradient(rgba(92,128,255,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(92,128,255,.055) 1px, transparent 1px);
      background-size: 72px 72px;
      content: "";
      mask-image: linear-gradient(to bottom, transparent, #000 15%, #000 84%, transparent);
    }

    .work::after {
      position: absolute;
      z-index: -1;
      top: 20%;
      right: -18%;
      width: 55vw;
      aspect-ratio: 1;
      border: 1px solid rgba(63,115,255,.13);
      border-radius: 50%;
      box-shadow: 0 0 0 90px rgba(63,115,255,.018), 0 0 0 180px rgba(255,96,56,.012);
      content: "";
    }

    .work-shell { position: relative; z-index: 1; }
    .work .section-intro { position: relative; align-items: end; margin-bottom: 66px; }
    .work .section-intro::before { position: absolute; top: -29px; right: 0; width: 88px; height: 1px; background: var(--neon-blue); box-shadow: 0 0 10px rgba(63,115,255,.75); content: ""; }
    .work .section-intro h2 { max-width: 760px; color: var(--white); }
    .work .section-intro > p { color: rgba(255,255,255,.48); }
    .work .eyebrow { color: #8da8ff; }
    .work .accent-serif { color: var(--neon-orange); text-shadow: 0 0 24px rgba(255,96,56,.22); }

    .work-console {
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(118,147,255,.24);
      background: rgba(7,10,18,.8);
      box-shadow: 0 38px 100px rgba(0,0,0,.38), inset 0 0 80px rgba(63,115,255,.025);
    }

    .work-console::after {
      position: absolute;
      top: 0;
      left: 0;
      width: 28%;
      height: 1px;
      background: linear-gradient(90deg, var(--neon-coral), rgba(255,96,56,0));
      box-shadow: 0 0 13px var(--neon-coral);
      content: "";
    }

    .console-bar {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      min-height: 54px;
      padding: 0 21px;
      border-bottom: 1px solid rgba(118,147,255,.18);
      color: rgba(255,255,255,.42);
      font-size: .58rem;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .console-bar > span:last-child { justify-self: end; }
    .console-status { display: inline-flex; align-items: center; gap: 8px; color: #9cb2ff; }
    .console-status i { width: 5px; height: 5px; border-radius: 50%; background: var(--neon-blue); box-shadow: 0 0 8px var(--neon-blue); animation: console-pulse 2.4s ease-in-out infinite; }

    .console-grid { display: grid; grid-template-columns: minmax(300px,.84fr) minmax(360px,1.14fr) minmax(230px,.58fr); min-height: 510px; }
    .case-brief, .case-outcome { position: relative; z-index: 2; padding: clamp(38px,4vw,58px); }
    .case-brief { display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid rgba(118,147,255,.18); }
    .case-code { color: #8ba7ff; font-size: .59rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
    .case-brief h3 { max-width: 430px; margin: 27px 0 24px; color: var(--white); font-size: clamp(2.7rem,4vw,4.6rem); letter-spacing: -.055em; line-height: .89; }
    .case-brief h3 em { color: var(--neon-orange); font-weight: 500; text-shadow: 0 0 20px rgba(255,96,56,.2); }
    .case-brief p { max-width: 435px; margin: 0; color: rgba(255,255,255,.52); font-size: .91rem; }
    .case-facts { margin: 36px 0 0; border-top: 1px solid rgba(255,255,255,.1); }
    .case-facts > div { display: grid; grid-template-columns: 68px 1fr; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
    .case-facts dt { color: rgba(255,255,255,.3); font-size: .55rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
    .case-facts dd { margin: 0; color: rgba(255,255,255,.72); font-size: .7rem; font-weight: 600; letter-spacing: .03em; }

    .case-blueprint {
      position: relative;
      display: grid;
      min-height: 510px;
      place-items: center;
      overflow: hidden;
      border-right: 1px solid rgba(118,147,255,.18);
      background:
        linear-gradient(rgba(90,127,255,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(90,127,255,.08) 1px, transparent 1px),
        radial-gradient(circle at center, rgba(63,115,255,.1), transparent 58%);
      background-size: 42px 42px, 42px 42px, auto;
    }

    .case-blueprint::before, .case-blueprint::after { position: absolute; background: rgba(140,166,255,.18); content: ""; }
    .case-blueprint::before { top: 50%; left: 7%; width: 86%; height: 1px; }
    .case-blueprint::after { top: 7%; bottom: 7%; left: 50%; width: 1px; }
    .case-blueprint svg { position: relative; z-index: 1; width: min(94%,560px); overflow: visible; }
    .bp-grid { fill: none; stroke: rgba(126,156,255,.13); stroke-width: 1; }
    .bp-route { fill: none; stroke: rgba(130,159,255,.58); stroke-width: 2; stroke-dasharray: 5 9; }
    .bp-route-arrow { marker-end: url(#flow-arrow); }
    .bp-signal { fill: none; stroke: var(--neon-coral); stroke-width: 3; stroke-linecap: round; stroke-dasharray: 1 18; filter: drop-shadow(0 0 5px var(--neon-coral)); opacity: 0; }
    .bp-peach { fill: rgba(255,96,56,.045); stroke: var(--neon-coral); stroke-width: 4; stroke-dasharray: 850; stroke-dashoffset: 850; filter: drop-shadow(0 0 5px #fff0dc) drop-shadow(0 0 13px rgba(255,96,56,.9)); }
    .bp-leaf { fill: rgba(63,115,255,.06); stroke: #7195ff; stroke-width: 3; filter: drop-shadow(0 0 8px rgba(63,115,255,.8)); }
    .bp-system-core { fill: rgba(14,25,58,.96); stroke: #7598ff; stroke-width: 3; filter: drop-shadow(0 0 10px rgba(63,115,255,.7)); }
    .bp-node { fill: #0a0f1e; stroke: #7598ff; stroke-width: 2; filter: drop-shadow(0 0 7px rgba(63,115,255,.8)); }
    .bp-node-core { fill: var(--neon-blue); stroke: #dbe4ff; filter: drop-shadow(0 0 9px var(--neon-blue)); }
    .bp-port { fill: rgba(7,10,18,.92); stroke: rgba(125,155,255,.65); stroke-width: 1.5; }
    .bp-port-output { stroke: rgba(255,129,82,.8); filter: drop-shadow(0 0 7px rgba(255,96,56,.35)); }
    .bp-label { fill: rgba(207,218,255,.68); font-family: var(--body); font-size: 10px; font-weight: 700; letter-spacing: 1.6px; }
    .bp-micro { fill: rgba(207,218,255,.34); font-family: var(--body); font-size: 8px; font-weight: 700; letter-spacing: 1.4px; }
    .bp-component-human { fill: #ff9a71; }
    .bp-component-code { fill: #9bb1ff; }
    .bp-port-value { fill: var(--white); font-family: var(--display); font-size: 21px; font-weight: 500; letter-spacing: -.5px; }
    .bp-port-kicker { fill: rgba(207,218,255,.45); font-family: var(--body); font-size: 7px; font-weight: 700; letter-spacing: 1.3px; }
    .work-console.is-visible .bp-peach { animation: work-outline 1.55s var(--ease-out) .18s forwards; }
    .work-console.is-visible .bp-signal { animation: signal-run 3.2s linear 1.35s infinite; }

    .case-outcome { display: flex; flex-direction: column; justify-content: center; padding: clamp(34px,3vw,46px); background: linear-gradient(180deg, rgba(255,96,56,.03), rgba(63,115,255,.03)); }
    .outcome-label { color: #ff9b74; font-size: .58rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
    .outcome-value { display: block; margin-top: 22px; color: var(--neon-orange); font-family: var(--display); font-size: clamp(4.3rem,5.25vw,5rem); font-weight: 500; letter-spacing: -.075em; line-height: .78; text-shadow: 0 0 26px rgba(255,96,56,.24); }
    .outcome-value small { font-size: .52em; letter-spacing: -.02em; }
    .outcome-copy { margin: 21px 0 0; color: rgba(255,255,255,.62); font-size: .76rem; line-height: 1.5; }
    .outcome-ratio { margin-top: 43px; padding-top: 18px; border-top: 1px solid rgba(118,147,255,.2); }
    .outcome-ratio strong { display: block; color: #9bb1ff; font-family: var(--display); font-size: 2.25rem; font-weight: 500; line-height: 1; text-shadow: 0 0 15px rgba(63,115,255,.28); }
    .outcome-ratio span { display: block; margin-top: 8px; color: rgba(255,255,255,.3); font-size: .54rem; font-weight: 700; letter-spacing: .1em; line-height: 1.45; text-transform: uppercase; }
    .console-note { display: flex; justify-content: space-between; gap: 30px; padding: 17px 21px; border-top: 1px solid rgba(118,147,255,.18); color: rgba(255,255,255,.32); font-size: .56rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
    .console-note span:last-child { color: rgba(255,148,108,.68); }
    .console-legend { display: inline-flex; align-items: center; gap: 8px; }
    .console-legend b { width: 6px; height: 6px; border-radius: 50%; }
    .console-legend .legend-human { background: var(--neon-coral); box-shadow: 0 0 7px var(--neon-coral); }
    .console-legend .legend-code { margin-left: 10px; background: var(--neon-blue); box-shadow: 0 0 7px var(--neon-blue); }

    .work-ledger { margin-top: 42px; border-top: 1px solid rgba(118,147,255,.24); }
    .ledger-item { position: relative; display: grid; grid-template-columns: 94px minmax(240px,.7fr) minmax(320px,1.3fr) 24px; align-items: center; gap: 30px; min-height: 130px; padding: 24px 0; border-bottom: 1px solid rgba(118,147,255,.16); transition: background .35s ease, padding .45s var(--ease-out); }
    .ledger-item::before { position: absolute; bottom: -1px; left: 0; width: 0; height: 1px; background: linear-gradient(90deg,var(--neon-blue),var(--neon-coral)); box-shadow: 0 0 10px rgba(63,115,255,.7); content: ""; transition: width .6s var(--ease-out); }
    .ledger-item:hover { padding-inline: 18px; background: rgba(63,115,255,.035); }
    .ledger-item:hover::before { width: 100%; }
    .ledger-id { color: rgba(255,255,255,.3); font-size: .58rem; font-weight: 700; letter-spacing: .12em; }
    .ledger-title span { display: block; margin-bottom: 9px; color: #89a5ff; font-size: .53rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
    .ledger-title h3 { margin: 0; color: var(--white); font-family: var(--body); font-size: 1rem; font-weight: 650; letter-spacing: -.01em; }
    .ledger-item p { max-width: 650px; margin: 0; color: rgba(255,255,255,.43); font-size: .8rem; }
    .ledger-mark { color: var(--neon-coral); font-size: 1.05rem; text-shadow: 0 0 10px rgba(255,96,56,.7); }

    @keyframes work-outline { to { stroke-dashoffset: 0; } }
    @keyframes signal-run { 0% { opacity: 0; stroke-dashoffset: 95; } 18%,82% { opacity: 1; } 100% { opacity: 0; stroke-dashoffset: -190; } }
    @keyframes console-pulse { 50% { opacity: .35; transform: scale(.75); } }

    /* Responsive */
    @media (max-width: 1060px) {
      .shell { width: min(100% - 52px, 1240px); }
      .desktop-nav { display: none; }
      .header-inner { grid-template-columns: 1fr auto auto; gap: 18px; }
      .mobile-nav { position: relative; display: block; }
      .mobile-nav summary { display: inline-flex; min-height: 42px; align-items: center; gap: 10px; padding: 0 13px; border: 1px solid var(--line); border-radius: 999px; cursor: pointer; font-size: .68rem; font-weight: 700; letter-spacing: .08em; list-style: none; text-transform: uppercase; }
      .mobile-nav summary::-webkit-details-marker { display: none; }
      .menu-mark { position: relative; width: 15px; height: 8px; border-block: 1px solid var(--ink); }
      .mobile-nav[open] .menu-mark { height: 15px; transform: rotate(45deg); border-top-color: transparent; }
      .mobile-nav[open] .menu-mark::after { position: absolute; top: 7px; left: 0; width: 15px; height: 1px; background: var(--ink); content: ""; transform: rotate(90deg); }
      .mobile-nav nav { position: absolute; top: 54px; right: 0; display: grid; min-width: 210px; padding: 12px; border: 1px solid var(--line); border-radius: 12px; background: var(--paper-light); box-shadow: var(--shadow); }
      .mobile-nav nav a { padding: 12px 13px; border-bottom: 1px solid var(--line); font-size: .75rem; font-weight: 700; }
      .mobile-nav nav a:last-child { border-bottom: 0; }

      .hero { grid-template-columns: minmax(0, 1fr) minmax(330px, .72fr); gap: 10px; }
      .hero h1 { font-size: clamp(4rem, 8vw, 6.1rem); }
      .hero h1 .line:last-child { padding-left: 0; }
      .peach-stage { transform: scale(.92) rotateX(var(--stage-x, 0deg)) rotateY(var(--stage-y, 0deg)); }
      .section-intro { gap: 50px; }
      .hub-row { grid-template-columns: 55px minmax(200px, .7fr) minmax(260px, 1fr) 46px; gap: 24px; }
      .system-row { grid-template-columns: 55px minmax(190px, .65fr) minmax(260px, 1.35fr); }
      .system-output { display: none; }
      .ownership { gap: 50px; }
      .services-layout { gap: 70px; }
      .about-grid { gap: 75px; }
      .expertise article { grid-template-columns: 38px minmax(130px, .8fr) minmax(200px, 1.2fr); }
      .console-grid { grid-template-columns: minmax(300px,.86fr) minmax(380px,1.14fr); }
      .case-blueprint { border-right: 0; }
      .case-outcome { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 30px; padding-block: 32px; border-top: 1px solid rgba(118,147,255,.18); }
      .case-outcome .outcome-value { margin-top: 12px; }
      .outcome-ratio { grid-column: 2; grid-row: 1 / 4; min-width: 175px; margin: 0; padding: 0 0 0 28px; border-top: 0; border-left: 1px solid rgba(118,147,255,.2); }
    }

    @media (max-width: 780px) {
      .shell { width: min(100% - 36px, 1240px); }
      .site-header.is-scrolled { background: rgba(8,11,20,.94); }
      .header-inner { min-height: 70px; }
      .header-cta { display: none; }
      .wordmark { font-size: 1.4rem; }
      .studio-label { display: none; }
      .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 124px; padding-bottom: 75px; }
      .hero h1 { font-size: clamp(3.75rem, 17vw, 6rem); line-height: .9; }
      .hero-intro { font-size: 1rem; }
      .hero-art { width: min(100%, 560px); margin: 12px auto 0; }
      .peach-stage { transform: none; }
      .scroll-cue { display: none; }
      .proof-grid { grid-template-columns: repeat(3, 1fr); }
      .proof-intro { display: none; }
      .proof-stat { padding: 23px 16px; }
      .proof-stat:first-of-type { padding-left: 0; }
      .proof-stat span { font-size: .58rem; }
      .hub, .systems-section, .services, .work, .about { padding-block: 105px 115px; }
      .section-intro { grid-template-columns: 1fr; gap: 23px; margin-bottom: 55px; }
      .section-intro > p { max-width: 590px; }
      .hub-row { grid-template-columns: 38px 1fr 42px; gap: 17px; min-height: 135px; }
      .hub-row p { grid-column: 2 / 4; padding: 0 0 22px; }
      .hub-arrow { grid-column: 3; grid-row: 1; }
      .system-row { grid-template-columns: 38px 1fr; gap: 14px; padding-block: 24px; }
      .system-row p { grid-column: 2; }
      .ownership { grid-template-columns: 1fr; gap: 48px; margin-top: 70px; }
      .services-layout { grid-template-columns: 1fr; gap: 58px; }
      .services-copy { position: static; }
      .service-detail { padding-right: 0; }
      .case-grid { grid-template-columns: 1fr; }
      .case-copy { min-height: 390px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
      .case-result { min-height: 330px; }
      .work-foot { grid-template-columns: 1fr; gap: 35px; }
      .work { padding-block: 105px 115px; }
      .work .section-intro { margin-bottom: 48px; }
      .has-js .work-console.reveal { opacity: 1; transform: none; }
      .console-bar { grid-template-columns: 1fr auto; }
      .console-bar > span:last-child { display: none; }
      .console-grid { grid-template-columns: 1fr; }
      .case-brief { border-right: 0; border-bottom: 1px solid rgba(118,147,255,.18); }
      .case-blueprint { min-height: 430px; border-bottom: 1px solid rgba(118,147,255,.18); }
      .case-outcome { grid-column: auto; display: block; padding-block: 46px; border-top: 0; }
      .outcome-ratio { margin-top: 32px; padding: 18px 0 0; border-top: 1px solid rgba(118,147,255,.2); border-left: 0; }
      .ledger-item { grid-template-columns: 65px 1fr 20px; gap: 18px; min-height: 155px; }
      .ledger-item p { grid-column: 2 / 4; }
      .ledger-mark { grid-column: 3; grid-row: 1; }
      .about-grid { grid-template-columns: 1fr; gap: 62px; }
      .about-statement { position: static; }
      .contact { padding-block: 110px 100px; }
      .contact-grid { grid-template-columns: 1fr; align-items: start; gap: 48px; }
      .footer-main { flex-direction: column; }
    }

    @media (max-width: 520px) {
      .shell { width: min(100% - 28px, 1240px); }
      h2 { font-size: clamp(2.75rem, 14vw, 4.2rem); }
      .hero { padding-top: 108px; }
      .hero h1 { font-size: clamp(3.35rem, 17vw, 5rem); }
      .button { width: 100%; }
      .hero-note { gap: 10px 16px; }
      .hero-art { margin-top: 5px; }
      .peach-stage { width: 100%; margin-left: 0; }
      .stage-ring { inset: 13% 8% 10%; }
      .orbit-copy { font-size: .52rem; }
      .orbit-copy-human { left: 5%; }
      .orbit-copy-core { right: 3%; }
      .peach-control { right: 3%; bottom: 0; }
      .peach-stage[data-open="true"] .lobe-left { transform: translateX(-45px) rotate(-7deg); }
      .peach-stage[data-open="true"] .lobe-right { transform: translateX(45px) rotate(7deg); }
      .proof-stat strong { font-size: 1.5rem; }
      .proof-stat span { letter-spacing: .04em; }
      .hub-row { grid-template-columns: 32px 1fr 38px; }
      .hub-row h3 { font-size: 2.35rem; }
      .hub-row p { font-size: .86rem; }
      .system-row { grid-template-columns: 30px 1fr; }
      .ownership-options { grid-template-columns: 1fr; gap: 30px; }
      .service-toggle { grid-template-columns: 1fr 38px; }
      .service-icon { width: 36px; height: 36px; }
      .service-detail dl { grid-template-columns: 1fr; gap: 22px; }
      .case-top { padding: 20px; }
      .case-copy, .case-result { padding: 34px 26px; }
      .case-copy h3 { font-size: 3.2rem; }
      .case-result strong { font-size: 5.1rem; }
      .work-foot article { grid-template-columns: 42px 1fr; }
      .work::before { background-size: 42px 42px; }
      .work .section-intro::before { display: none; }
      .work-console { margin-inline: -4px; }
      .console-bar { padding-inline: 16px; }
      .case-brief, .case-outcome { padding: 34px 24px; }
      .case-brief h3 { font-size: 3.25rem; }
      .case-blueprint { min-height: 365px; }
      .console-note { display: grid; gap: 8px; padding-inline: 16px; }
      .ledger-item { grid-template-columns: 50px 1fr 16px; gap: 13px; }
      .ledger-item:hover { padding-inline: 8px; }
      .expertise article { grid-template-columns: 30px 1fr; gap: 13px; }
      .expertise p { grid-column: 2; }
      .contact h2 { font-size: 3.7rem; }
      .contact-email { font-size: 1.08rem; }
      .footer-small { flex-direction: column; gap: 12px; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
      .has-js .reveal { opacity: 1; transform: none; }
    }
  
/* Peach & Stone: completed static edition. */
:root{--paper:#f7f5f2;--paper-light:#fffdfa;--paper-deep:#efe9e1;--ink-faint:#655c53;--peach-deep:#a34226;--ease-liquid:cubic-bezier(.22,.78,.2,1);--header-height:108px}
html{scroll-padding-top:124px;overflow-x:clip}
body{min-width:320px;overflow-x:clip}
body::before{display:none}
[hidden]{display:none!important}
a:focus-visible,button:focus-visible,summary:focus-visible{outline:3px solid #a34226;outline-offset:5px}
.site-header a:focus-visible,.site-header summary:focus-visible,.hero a:focus-visible,.hero button:focus-visible,.systems-section a:focus-visible,.work a:focus-visible,.contact a:focus-visible,.site-footer a:focus-visible{outline-color:#ffc2a4}
.sr-only{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.header-inner{min-height:var(--header-height);gap:32px}
.header-brand{display:flex;align-items:center;gap:14px}
.header-logo{width:78px;height:90px;object-fit:contain;flex:none}
.header-brand .wordmark{font-size:1.32rem;letter-spacing:-.035em}
.header-brand .studio-label{display:block;margin-top:7px;font-family:var(--body);font-size:12px;letter-spacing:.1em;color:#b8c0d3}
.desktop-nav{gap:28px}
.desktop-nav a,.header-cta,.button{font-size:14px;letter-spacing:.035em}
.desktop-nav a{color:#bcc4d5}
.desktop-nav a[aria-current="page"]{color:#fffdf9}
.desktop-nav a[aria-current="page"]::after{transform:scaleX(1)}
.header-cta,.hero .button-primary{color:#080b14;background:#ff6038;border-color:#ff6038;box-shadow:0 5px 25px #ff603821}
.header-cta:hover,.hero .button-primary:hover{color:#080b14;background:#ff9b74;border-color:#ff9b74}
.hero .button-secondary{color:#fffdf9;border-color:#8b93a5}
.hero .button-secondary:hover{background:#1a2a52}
.mobile-nav summary{min-height:46px!important;font-size:14px!important}
.mobile-nav nav a{font-size:16px!important}
.mobile-nav nav a[aria-current="page"]{background:#e7dfd5;border-radius:5px;color:#1b1916}
.hero{display:grid;grid-template-columns:minmax(0,1.1fr) minmax(340px,.9fr);gap:24px;min-height:760px;padding-top:155px;padding-bottom:58px;align-items:center}
.hero::after{width:auto;left:calc((1240px - 100vw)/2);right:calc((1240px - 100vw)/2);transform:none}
.hero::before{display:none}
.hero h1{font-size:clamp(4rem,6.3vw,6rem);line-height:.98;letter-spacing:-.04em;word-spacing:.025em;max-width:560px;margin-bottom:26px}
.hero h1 .line:last-child{padding-left:0}
.hero-intro{max-width:540px;font-size:17px;line-height:1.65;color:#c2c6d1;margin-bottom:28px}
.eyebrow{font-size:12px;letter-spacing:.12em}
.hero .eyebrow{color:#a1b9ff;margin-bottom:24px}
.hero-note{font-size:12px;letter-spacing:.035em;color:#b3b8c5;margin-top:24px;gap:8px 20px}
.hero-note span::before{display:none}
.has-js .hero-copy .eyebrow,.has-js .hero-copy h1,.has-js .hero-intro,.has-js .hero-copy .button-row,.has-js .hero-note,.has-js .hero-art{opacity:1;transform:none;animation:none}
.has-js .reveal{opacity:1;transform:none;transition:none}
.hero-art{width:100%;max-width:545px;align-self:center}
.peach-stage{aspect-ratio:.86;width:100%;max-width:525px;transition:transform .6s var(--ease-liquid)}
.peach-stage.is-initializing *{transition:none!important;animation:none!important}
html:not(.has-js) .peach-stage *{animation:none!important;transition:none!important}
.peach-toggle{inset:4% 7% 12%;transform:translate3d(var(--fruit-x,0px),var(--fruit-y,0px),0);transition:transform .65s var(--ease-liquid)}
.peach-toggle:disabled{cursor:default}
.peach-toggle svg{filter:none;overflow:visible}
.stage-ring{inset:13% 6% 15%;border-color:#718ccb36;background:none;box-shadow:none;transform:translate3d(var(--ring-x,0px),var(--ring-y,0px),0);transition:transform .7s var(--ease-liquid)}
.stage-light{position:absolute;inset:12% -6% 5%;pointer-events:none;border-radius:50%;background:radial-gradient(ellipse,rgba(255,96,56,.26),rgba(255,62,27,.07) 38%,transparent 69%);opacity:.8;animation:halo-breathe 3.2s ease-in-out infinite;transition:opacity .6s ease}
.stage-light-core{background:radial-gradient(ellipse,rgba(63,115,255,.23),rgba(26,42,82,.08) 42%,transparent 70%);opacity:.15;animation:none}
.peach-stage[data-open="true"] .stage-light-core{opacity:1;transition-delay:.42s}
.peach-stage[data-open="true"] .stage-light-coral{opacity:.3}
.peach-object{animation:peach-drift 8s var(--ease-liquid) infinite;transform-origin:50% 55%}
.peach-lobe{filter:none;transition:transform .8s var(--ease-liquid),opacity .6s ease;transform-box:view-box}
.peach-lobe use:nth-of-type(1){fill:url(#peach-base);stroke:none}
.peach-lobe use:nth-of-type(2){fill:url(#peach-blush)}
.peach-lobe use:nth-of-type(3){fill:url(#peach-edge)}
.peach-lobe path{fill:rgba(255,240,218,.24)}
.peach-lobe .flesh-rim{fill:none!important;stroke:#ffc2a2;stroke-width:2;opacity:.7}
.peach-lobe .flesh-neon{fill:none!important;stroke:#ff7147;stroke-width:5;filter:url(#edge-bloom)}
.flesh-specular{fill:url(#peach-specular);opacity:.48;transform:translate(var(--spec-x,0px),var(--spec-y,0px));transition:transform .7s var(--ease-liquid)}
.neon-assembly{animation:neon-ignite .65s steps(1,end) 1;transition:opacity .25s ease}
.neon-halo{fill:none;stroke:#ff653d;stroke-width:15;filter:url(#neon-bloom);opacity:.7;animation:halo-breathe 3.2s ease-in-out infinite}
.neon-tube{fill:none;stroke:#ff784d;stroke-width:7;opacity:.96}
.neon-trace{stroke:#fff1db;stroke-width:2.2;filter:none;stroke-dasharray:none;stroke-dashoffset:0;animation:none}
.peach-seam{stroke:#ffd4ae;stroke-width:3;opacity:.66;filter:url(#edge-bloom);transition:opacity .35s ease,stroke .2s ease}
.peach-stem-leaf path:nth-child(1){stroke:#829de5!important;stroke-width:8;filter:url(#blue-bloom)}
.peach-stem-leaf path:nth-child(2){fill:#14254c;stroke:#829de5;stroke-width:3;filter:url(#blue-bloom)}
.peach-stem-leaf path:nth-child(3){stroke:#d5e1ff;stroke-width:1.5;filter:none}
.stem-tube{stroke:#33559b!important;stroke-width:13!important;opacity:.8}
.stem-core{stroke:#d5e1ff!important;stroke-width:2!important}
.leaf-core{fill:none!important;stroke:#d5e1ff!important;stroke-width:1!important}
.peach-stone{opacity:.15;transform:translateY(12px) scale(.7);transform-origin:50% 55%;transition:transform .62s var(--ease-liquid),opacity .55s ease;filter:none}
.peach-stone .stone-body{stroke:#8eafff;stroke-width:3;filter:url(#blue-bloom)}
.core-circuit,.core-circuit-hot{stroke-width:3;filter:none;stroke-dasharray:220;stroke-dashoffset:0;transition:stroke-dashoffset .55s var(--ease-liquid)}
.core-node,.core-node-hot{filter:none;transition:opacity .18s ease}
.core-circuit-hot{animation:idle-circuit 4.8s ease-in-out infinite}
.inner-glow{fill:url(#inner-fill);opacity:.3;filter:none;transition:opacity .6s ease}
.lobe-left{transform-origin:18% 38%}
.lobe-right{transform-origin:82% 38%}
.peach-toggle:hover .lobe-left,.peach-toggle:hover .lobe-right{transform:none}
.peach-toggle:hover .peach-stem-leaf{transform:none}
.peach-stage[data-open="true"] .lobe-left{transform:translate(-29px,5px) rotate(-12deg) scaleX(.84)}
.peach-stage[data-open="true"] .lobe-right{transform:translate(29px,5px) rotate(12deg) scaleX(.84)}
.peach-stage[data-open="true"] .peach-stone{opacity:1;transform:translateY(-12px) scale(1.04);animation:none;filter:none}
.peach-stage[data-open="true"] .peach-stem-leaf{opacity:.74;transform:translateY(-10px) rotate(-4deg)}
.peach-stage[data-open="true"] .neon-assembly{opacity:0}
.peach-stage[data-open="true"] .inner-glow{opacity:.8}
.peach-stage.is-opening .peach-seam{animation:seam-charge .4s ease both}
.peach-stage.is-opening .peach-lobe{transition-delay:.15s}
.peach-stage.is-opening .peach-stone{transition-delay:.48s}
.peach-stage.is-opening .core-node{animation:node-light .32s ease both;animation-delay:calc(.48s + var(--node-index,0)*.07s)}
.peach-stage.is-opening .core-circuit{animation:circuit-draw .5s var(--ease-liquid) .68s both}
.peach-stage.is-opening .orbit-copy{animation:callout-settle .4s var(--ease-liquid) .9s both}
.peach-stage.is-closing .peach-lobe{transition-duration:.55s;transition-delay:.12s}
.peach-stage.is-closing .peach-stone{transition-duration:.35s;transition-delay:0s}
.peach-stage.is-opening .peach-object,.peach-stage.is-closing .peach-object{animation-play-state:paused}
.orbit-copy{pointer-events:auto;text-shadow:none;backdrop-filter:none;background:#101623;min-height:48px;font-size:13px;letter-spacing:.015em;text-transform:none;padding:9px 13px;display:flex;gap:0;transform:translate3d(var(--label-x,0px),var(--label-y,0px),0);transition:transform .7s var(--ease-liquid),background .2s ease}
.orbit-copy b{display:none}
.orbit-copy small{font-size:12px;font-weight:400;color:#bdc6d8;letter-spacing:0}
.orbit-copy-human{top:12%;left:-1%;color:#ffbb9c}
.orbit-copy-core{right:-1%;bottom:23%;color:#b4c8ff;opacity:1}
.orbit-copy::after{width:28px;background:currentColor;opacity:.55}
.orbit-copy:hover{background:#1a2a52}
.peach-stage[data-open="true"] .orbit-copy-human{opacity:1}
.peach-control{pointer-events:auto;z-index:6;right:50%;bottom:2%;transform:translateX(50%);white-space:nowrap;background:#101623;color:#e4e8f2;font-size:12px;letter-spacing:.025em;min-height:46px;backdrop-filter:none;cursor:pointer;border-color:#647493}
.peach-control:hover{background:#1a2a52}
.peach-control i{display:none}
.peach-control::before{content:'+';font-size:21px;line-height:1;color:#b4c8ff;font-weight:400;min-width:18px;text-align:center}
.peach-stage[data-open="true"] .peach-control::before{content:'−';color:#ffbb9c}
.no-script-note{font-size:14px;color:#bcc5d6;text-align:center;margin:10px 0 0}
.scroll-cue{display:none}
@keyframes halo-breathe{0%,100%{opacity:.65}50%{opacity:.94}}
@keyframes neon-ignite{0%{opacity:0}18%{opacity:.9}23%{opacity:.2}29%{opacity:1}34%{opacity:.6}42%,100%{opacity:1}}
@keyframes idle-circuit{0%,65%,100%{opacity:.45}76%{opacity:1}}
@keyframes seam-charge{0%{opacity:.6;stroke:#ffd4ae}40%{opacity:1;stroke:#fffaf2}100%{opacity:0}}
@keyframes node-light{from{opacity:.05}to{opacity:1}}
@keyframes circuit-draw{from{stroke-dashoffset:220;opacity:.15}to{stroke-dashoffset:0;opacity:1}}
@keyframes callout-settle{from{opacity:.65;translate:0 8px}to{opacity:1;translate:0 0}}
.proof-stat,.proof-intro{padding-block:22px}
.proof-intro{font-size:12px;color:#b7bfce}
.proof-stat span{font-size:12px;color:#b7bfce;letter-spacing:.025em}
.proof-stat strong{font-size:2.25rem}
.hub{padding-block:64px 80px}
.hub .section-intro{margin-bottom:35px;gap:50px;grid-template-columns:1fr 1fr}
.hub h2{font-size:clamp(2.8rem,4.2vw,4rem)}
.hub-row{grid-template-columns:42px minmax(180px,.7fr) minmax(0,1.3fr) 42px;gap:24px;min-height:100px}
.hub-row h3{font-size:2.5rem}
.hub-number{font-size:12px}
.hub-arrow{width:40px;height:40px}
.hub-row p{font-size:16px}
.page-main>section{min-height:calc(100svh - 160px);padding-block:164px 85px}
.page-main .section-intro{gap:60px;margin-bottom:45px}
.page-main .section-intro h1{font-size:clamp(3.2rem,5.5vw,5.2rem);margin-bottom:0;line-height:1.02}
.page-main .systems-section .section-intro h1,.page-main .work h1{color:#fffdf9}
.section-intro>p{font-size:16px}
.system-row{grid-template-columns:40px minmax(190px,.8fr) minmax(0,1.2fr) auto;gap:22px;min-height:98px}
.system-row p,.systems-section .section-intro>p,.ownership-options p{font-size:16px;color:#c0c7d4}
.system-number{font-size:12px;color:#a9b5cf}
.system-output{font-size:12px;letter-spacing:.025em}
.system-row h3{font-size:1.85rem}
.ownership{margin-top:48px;padding-top:36px;gap:55px}
.ownership h3{font-size:2.9rem}
.ownership-options h4{font-size:14px;letter-spacing:.025em}
.scoped-additions{position:relative;margin-top:35px;border-block:1px solid #6d82b14d}
.scoped-additions summary{padding:22px 0;cursor:pointer;display:flex;justify-content:space-between;gap:24px;align-items:center;list-style:none;min-height:64px}
.scoped-additions summary::-webkit-details-marker{display:none}
.scoped-additions summary>span:first-child{display:grid;gap:3px}
.scoped-additions summary strong{font-size:18px;font-weight:500;color:#fffdf9}
.scoped-additions summary small{font-size:14px;color:#aebbd5}
.scoped-additions .scope-toggle{font-size:14px;color:#b4c8ff;white-space:nowrap}
.scope-status{font-size:15px;color:#bdc9e0;margin:0 0 20px;max-width:640px}
.scope-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:0 30px;padding-bottom:12px}
.scope-grid article{border-top:1px solid #6d82b133;padding-block:20px}
.scope-grid h3{font-family:var(--body);color:#d8e1f4;font-size:16px;letter-spacing:0;line-height:1.4;margin-bottom:8px}
.scope-grid p{color:#b5c1d8;font-size:15px;margin-bottom:0}
.services-copy h1,.about-statement h1{font-size:clamp(3.15rem,5vw,4.8rem);line-height:1.01;margin-bottom:26px}
.services-copy,.about-statement{top:142px}
.services-layout{gap:70px;grid-template-columns:minmax(250px,.8fr) minmax(0,1.2fr)}
.service-list{min-width:0}
.service-item{margin:0}
.service-toggle{list-style:none;margin:0;padding-block:25px}
.service-toggle::-webkit-details-marker{display:none}
.service-item .service-panel{display:block;grid-template-rows:none}
.service-item[open] .service-icon{transform:rotate(45deg);background:#1a2a52}
.service-item[open] .service-icon::before,.service-item[open] .service-icon::after{background:white}
.service-item:not([open])>.service-panel{display:none}
.service-summary,.service-detail dd{color:#625a52;font-size:16px}
.service-detail{padding:0 0 30px}
.service-detail p{font-size:16px}
.service-detail dt{font-size:12px}
.service-detail dl{gap:25px}
.service-title{font-size:2rem;line-height:1.12}
.text-link{font-size:14px;letter-spacing:.02em}
.work .section-intro>p,.case-brief p,.outcome-copy,.ledger-item p{color:#b8c1d4;font-size:16px}
.console-grid{grid-template-columns:minmax(240px,.85fr) minmax(260px,1fr) minmax(210px,.65fr);min-height:450px}
.case-brief,.case-outcome{padding:30px}
.case-blueprint{min-height:450px}
.case-brief h3{font-size:3.45rem;line-height:.97}
.console-bar{font-size:12px;letter-spacing:.035em;gap:15px;color:#bac5d9}
.case-code,.outcome-label{font-size:12px;letter-spacing:.035em;color:#bacdff}
.case-facts{margin-top:25px}
.case-facts dt{font-size:12px;color:#aab6ce;letter-spacing:.03em}
.case-facts dd{font-size:14px;color:#e0e6f1}
.outcome-ratio span{font-size:12px;color:#adb9ce;letter-spacing:.03em}
.outcome-value{font-size:4.8rem}
.outcome-ratio{margin-top:32px}
.console-note{font-size:12px;color:#b6c1d5;letter-spacing:.02em;flex-wrap:wrap;gap:12px}
.console-note span:last-child{color:#f2bc9f}
.ledger-id{color:#a8b5d0;font-size:12px;letter-spacing:.035em}
.ledger-title span{font-size:12px;letter-spacing:.035em;color:#a7beff}
.ledger-item{grid-template-columns:80px minmax(180px,.7fr) minmax(0,1.3fr) 20px;gap:24px;min-height:115px}
.bp-peach{stroke-dashoffset:0;animation:none!important}
.bp-signal{display:none}
.bp-micro{display:none}
.bp-label{font-size:12px;letter-spacing:.4px;fill:#cad7f4}
.bp-port-kicker{font-size:10px;letter-spacing:.2px;fill:#c0ccea}
.bp-port-value{font-size:23px}
.console-status i{animation:none}
.about-grid{gap:75px;grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr)}
.expertise article{grid-template-columns:30px minmax(130px,.75fr) minmax(0,1.25fr);gap:20px;padding-block:23px}
.expertise span{font-size:12px;color:#655c53}
.expertise h3,.expertise p{font-size:16px}
.contact h1{color:#fffdf9;font-size:clamp(3.2rem,6.7vw,6.6rem);line-height:1.02;margin-bottom:0}
.contact-copy>p{color:#bdc6d8;font-size:17px}
.contact-secondary{font-size:14px;color:#d0d8e9}
.contact-grid{align-items:center;gap:65px}
.site-footer{padding-block:34px 23px;background:#080b14;color:#b4bece}
.footer-main{gap:40px;padding-bottom:28px}
.footer-main p{font-size:14px;margin-top:12px}
.footer-small,.footer-links{font-size:12px;letter-spacing:.025em}
.footer-small{padding-top:18px}
.back-top{min-height:32px}
.page-wipe{position:fixed;z-index:2000;left:50%;top:50%;width:190vmax;height:190vmax;background:#ff794b;border-radius:44% 56% 42% 58% / 60% 42% 58% 40%;transform:translate(-50%,-50%) scale(0);pointer-events:none;transition:transform .28s cubic-bezier(.55,0,.4,1)}
.is-leaving .page-wipe{transform:translate(-50%,-50%) scale(1);pointer-events:auto}
.is-arriving .page-wipe{animation:wipe-arrive .32s var(--ease-liquid) both}
@keyframes wipe-arrive{from{transform:translate(-50%,-50%) scale(1)}to{transform:translate(-50%,-50%) scale(0)}}
@media(max-width:1320px){.hero::after{left:-40px;right:-40px}}
@media(max-width:1100px){.header-brand .wordmark{font-size:1.2rem}.hero{grid-template-columns:minmax(0,1fr) minmax(310px,.85fr)}.hero h1{font-size:clamp(3.7rem,6.8vw,5rem)}.console-grid{grid-template-columns:minmax(0,1fr) minmax(0,1fr)}.case-outcome{display:grid;grid-column:1/-1;grid-template-columns:1fr 1fr;gap:10px 30px;align-items:center;border-top:1px solid #718ccb33}.case-outcome .outcome-ratio{grid-column:2;grid-row:1/4;min-width:0;margin:0;padding:0 0 0 25px}.system-row{grid-template-columns:35px minmax(165px,.7fr) minmax(0,1.3fr)}.system-output{display:none}.expertise article{grid-template-columns:25px 1fr}.expertise p{grid-column:2}.services-layout{gap:40px}}
@media(max-width:1060px){.hero::after{left:-26px;right:-26px}.header-inner{gap:18px}.header-cta{padding-inline:17px}.peach-stage{transform:none}.hero{min-height:690px;padding-top:147px;gap:12px}.orbit-copy{font-size:12px;padding:8px}.orbit-copy small{font-size:12px}.orbit-copy-human{left:0}.orbit-copy-core{right:0}.orbit-copy::after{display:none}.page-main .section-intro{gap:35px}.about-grid{gap:40px}.contact-grid{gap:40px}.scope-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:900px){.hero{grid-template-columns:minmax(0,1fr) minmax(280px,.8fr)}.hero h1{font-size:3.65rem}.hero-intro{font-size:16px}.hero .button{min-height:48px;font-size:13px;padding-inline:15px}.hero .button-secondary{padding-inline:15px}.hero-note{margin-top:18px}.peach-control{font-size:12px;padding:8px 11px}.services-layout{grid-template-columns:1fr;gap:35px}.services-copy{position:static;max-width:630px}.service-detail dl{grid-template-columns:1fr 1fr}.services-copy h1{font-size:3.7rem}.about-grid{grid-template-columns:1fr}.about-statement{position:static;max-width:680px}.expertise article{grid-template-columns:30px minmax(130px,.65fr) 1fr}.expertise p{grid-column:auto}.contact-grid{grid-template-columns:1fr;max-width:720px;gap:40px}.contact h1{font-size:4.6rem}.hub-row{grid-template-columns:35px minmax(150px,.7fr) minmax(0,1.3fr) 36px;gap:18px}.hub-row h3{font-size:2.1rem}}
@media(max-width:780px){:root{--header-height:92px}.header-logo{width:68px;height:80px}.header-brand{gap:10px}.header-brand .wordmark{font-size:1.15rem}.header-brand .studio-label{display:none}.header-inner{grid-template-columns:1fr auto}.hero{display:flex;flex-direction:column;align-items:stretch;gap:0;min-height:0;padding-top:120px;padding-bottom:40px}.hero::after{left:-18px;right:-18px}.hero-copy{display:contents}.hero .eyebrow{order:0;margin-bottom:18px}.hero h1{order:1;font-size:clamp(3rem,9.8vw,4.6rem);max-width:620px;margin-bottom:4px}.hero-art{order:2;width:min(100%,405px);margin:6px auto 4px}.hero-intro{order:3;margin:17px 0 23px;max-width:650px;font-size:16px}.hero .button-row{order:4;gap:12px}.hero-note{order:5;margin-top:18px}.peach-stage{aspect-ratio:.85;max-width:405px;transform:none}.peach-toggle{inset:0 11% 20%;transform:none}.stage-ring{inset:7% 14% 27%;transform:none}.stage-light{inset:0 5% 20%}.orbit-copy{top:auto;bottom:0;right:auto;left:0;min-height:49px;width:calc(50% - 6px);font-size:14px;padding:8px 12px;transform:none;background:#111b30;border-left:2px solid currentColor;border-radius:0;text-transform:none}.orbit-copy-core{left:auto;right:0}.orbit-copy small{font-size:12px}.peach-control{bottom:14%;min-height:40px;padding:7px 12px;font-size:12px}.peach-stage[data-open="true"] .lobe-left{transform:translate(-23px,5px) rotate(-12deg) scaleX(.84)}.peach-stage[data-open="true"] .lobe-right{transform:translate(23px,5px) rotate(12deg) scaleX(.84)}.proof-grid{grid-template-columns:repeat(3,1fr)}.proof-stat{padding:20px 12px}.proof-stat strong{font-size:1.75rem}.proof-stat span{font-size:12px;letter-spacing:0}.proof-intro{display:none}.hub{padding:44px 0 54px}.hub .section-intro{grid-template-columns:1fr;gap:16px;margin-bottom:25px}.hub h2{font-size:2.8rem}.hub-row{grid-template-columns:28px 1fr 35px;gap:15px;min-height:114px;padding:18px 0}.hub-row h3{font-size:2rem}.hub-row p{grid-column:2/4;padding:0;font-size:15px}.hub-arrow{grid-column:3;grid-row:1}.page-main>section{padding-top:130px;padding-bottom:55px;min-height:0}.page-main .section-intro{grid-template-columns:1fr;gap:20px;margin-bottom:30px}.page-main .section-intro h1{font-size:3.3rem}.system-row{grid-template-columns:27px 1fr;gap:10px;padding:22px 0}.system-row p{grid-column:2}.system-row h3{font-size:1.8rem}.ownership{grid-template-columns:1fr;gap:28px;margin-top:35px;padding-top:30px}.ownership h3{font-size:2.5rem;max-width:400px}.ownership-options{gap:30px}.scope-grid{gap:0 22px}.scoped-additions summary{gap:12px}.scope-toggle{font-size:12px!important}.services-copy h1,.about-statement h1{font-size:3.2rem}.service-toggle{padding-block:24px}.service-title{font-size:1.85rem}.service-detail dl{grid-template-columns:1fr}.console-grid{grid-template-columns:1fr}.case-brief,.case-outcome{padding:27px}.case-brief h3{font-size:3.3rem}.case-blueprint{min-height:330px}.case-outcome{display:block;grid-column:auto}.case-outcome .outcome-ratio{margin-top:25px;padding:18px 0 0;border-left:0;border-top:1px solid #718ccb33}.console-bar{padding:14px 17px;grid-template-columns:1fr;gap:8px}.console-bar>span:last-child{display:none}.console-status{font-size:12px}.console-note{display:flex;padding:16px;font-size:12px}.console-legend{flex-wrap:wrap;gap:7px}.ledger-item{grid-template-columns:67px 1fr 16px;gap:13px;padding:24px 0}.ledger-item p{grid-column:2/4;font-size:16px}.expertise article{grid-template-columns:25px 1fr;gap:12px}.expertise p{grid-column:2}.expertise h3{margin:0}.contact h1{font-size:clamp(3rem,10vw,4.4rem)}.contact-email{font-size:clamp(1rem,4.7vw,1.4rem);gap:10px}.contact-secondary{font-size:13px}.footer-main{gap:28px;padding-bottom:25px}.footer-links{gap:14px 23px;font-size:14px}.footer-small{gap:9px;font-size:12px}.site-footer .wordmark{font-size:1.45rem}}
@media(max-width:520px){.hero::after{left:-14px;right:-14px}.header-brand .wordmark{font-size:1.08rem}.header-logo{width:66px;height:76px}.header-inner{gap:9px}.header-brand{gap:7px}.hero h1{font-size:clamp(2.8rem,11.75vw,3.6rem);line-height:.97}.hero .eyebrow{font-size:11px}.hero-art{max-width:360px}.hero .button{font-size:14px;min-height:50px;width:100%}.hero .button-secondary{min-height:48px}.hero-note{font-size:12px;gap:8px 18px}.orbit-copy{font-size:13px;padding:8px 10px;min-height:48px}.orbit-copy small{font-size:12px}.scope-grid{grid-template-columns:1fr}.scope-toggle{max-width:90px;white-space:normal!important;text-align:right}.ownership-options{grid-template-columns:1fr}.proof-stat{padding-inline:8px}.proof-stat strong{font-size:1.6rem}.proof-stat span{font-size:11px}.page-main .section-intro h1{font-size:3.05rem}.contact h1{font-size:3.15rem}.bp-label{font-size:13px}.case-blueprint svg{width:100%}.case-brief h3{font-size:3.1rem}}
@media(max-width:780px){:root{--header-height:104px}.header-logo{width:76px;height:88px}.hero{padding-top:132px}.peach-stage{aspect-ratio:.76}.peach-toggle{inset:0 11% 32%}.stage-ring{inset:5% 14% 38%}.stage-light{inset:0 5% 34%}.orbit-copy{width:100%;bottom:58px}.orbit-copy-core{bottom:0}.peach-control{bottom:26%}}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}*,*::before,*::after{animation:none!important;animation-delay:0s!important;transition:none!important;scroll-behavior:auto!important}.neon-trace,.bp-peach{stroke-dashoffset:0!important}.neon-assembly{opacity:1}.peach-stage[data-open="true"] .neon-assembly{opacity:0}.peach-stage,.peach-toggle,.stage-ring,.orbit-copy,.flesh-specular{transform:none!important}.peach-stage[data-open="true"] .peach-toggle{transform:none!important}.peach-object{transform:none}.core-circuit{stroke-dashoffset:0!important}.stage-light-coral{opacity:.7}.stage-light-core{opacity:.15}.peach-stage[data-open="true"] .stage-light-core{opacity:1}.page-wipe{display:none!important}}

/* Hero round 4: keep the neon lit when the fruit is open, give the peel a cut face and depth */
.peach-lobe .flesh-halo{fill:none!important;stroke:#ff653d;stroke-width:14;opacity:0;filter:url(#neon-bloom);transition:opacity .35s ease}
.peach-lobe .flesh-neon{transition:stroke-width .4s ease,opacity .3s ease}
.peach-lobe .cut-face{opacity:0;transition:opacity .45s ease .25s}
.cut-face-left{fill:url(#cut-face-left)}
.cut-face-right{fill:url(#cut-face-right)}
.peach-stage[data-open="true"] .peach-lobe .flesh-halo{opacity:.62;animation:halo-breathe 3.2s ease-in-out infinite}
.peach-stage[data-open="true"] .peach-lobe .flesh-neon{stroke-width:6.5;stroke:#ff7a4f}
.peach-stage[data-open="true"] .peach-lobe .flesh-rim{opacity:.95;stroke:#ffd7c2}
.peach-stage[data-open="true"] .peach-lobe .cut-face{opacity:.8}
@media (min-width:781px){
.peach-stage[data-open="true"] .lobe-left{transform:translate(-34px,6px) rotate(-14deg) scaleX(.8) skewY(-3deg)}
.peach-stage[data-open="true"] .lobe-right{transform:translate(34px,6px) rotate(14deg) scaleX(.8) skewY(3deg)}
}
.peach-stage[data-open="true"] .neon-assembly{opacity:0}
.peach-stage.is-opening .peach-lobe .flesh-halo{transition-delay:.3s}

/* Insights (blog) */
.blog-index h1{max-width:850px;margin-bottom:0}
.post-row > div{min-width:0}
.post-row h3{font-size:clamp(1.6rem,2.6vw,2.6rem);line-height:1.08}
.post-row-meta{margin-top:10px!important;font-size:.78rem!important;letter-spacing:.06em;text-transform:uppercase;color:var(--ink-faint)!important}
.post{padding-block:clamp(56px,8vw,110px) clamp(70px,9vw,130px)}
.post-shell{max-width:760px}
.post-crumbs{display:flex;gap:10px;margin-bottom:28px;font-size:.74rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--ink-faint)}
.post-crumbs a{color:inherit;text-decoration:none}
.post-crumbs a:hover{color:var(--peach-deep)}
.post-head h1{margin:0 0 22px;font-size:clamp(2.4rem,5vw,4.4rem);line-height:1.02;letter-spacing:-.035em}
.post-standfirst{max-width:640px;margin:0 0 20px;font-size:1.18rem;line-height:1.6;color:var(--ink-soft)}
.post-meta{display:flex;flex-wrap:wrap;gap:10px;margin:0;font-size:.8rem;letter-spacing:.05em;text-transform:uppercase;color:var(--ink-faint)}
.post-meta a{color:var(--ink);text-decoration:none;border-bottom:1px solid var(--line)}
.post-tldr{margin:44px 0 40px;padding:26px 28px;border:1px solid var(--line);border-left:4px solid var(--peach);background:var(--paper-light)}
.post-tldr .eyebrow{margin-bottom:12px}
.post-tldr ul{margin:0;padding-left:20px;display:grid;gap:10px}
.post-tldr li{line-height:1.55}
.post-body{font-size:1.06rem;line-height:1.72}
.post-body h2{margin:44px 0 14px;font-size:clamp(1.5rem,2.6vw,2.1rem);line-height:1.15;letter-spacing:-.02em}
.post-body h3{margin:30px 0 8px;font-size:1.15rem;font-family:var(--body);font-weight:700}
.post-body p{margin:0 0 18px;max-width:68ch}
.post-body strong{font-weight:700}
.post-faq{margin-top:56px;padding-top:34px;border-top:1px solid var(--line)}
.post-faq h2{margin:0 0 14px;font-size:clamp(1.5rem,2.6vw,2.1rem)}
.post-faq-item{border-bottom:1px solid var(--line)}
.post-faq-item summary{cursor:pointer;padding:16px 0;font-weight:700;list-style:none;display:flex;justify-content:space-between;gap:16px}
.post-faq-item summary::after{content:"+";flex:none;color:var(--peach-deep);font-weight:400}
.post-faq-item[open] summary::after{content:"–"}
.post-faq-item summary::-webkit-details-marker{display:none}
.post-faq-item p{margin:0 0 18px;max-width:68ch;line-height:1.65;color:var(--ink-soft)}
.post-cta{margin-top:56px;padding:34px 32px;background:var(--ink);color:var(--white)}
.post-cta .eyebrow{color:var(--peach-soft)}
.post-cta h2{margin:6px 0 10px;font-size:clamp(1.5rem,2.6vw,2.1rem)}
.post-cta p{max-width:60ch;margin:0 0 22px;color:rgba(255,253,249,.8)}
.post-cta .button-primary{background:var(--peach);border-color:var(--peach);color:var(--ink)}
@media (max-width:640px){.post-tldr{padding:20px 18px}.post-cta{padding:26px 20px}}

/* Paint the hero once without bloom filters, then switch them on (fx-ready is added by site.js two frames after first paint) */
html:not(.fx-ready) .neon-halo,html:not(.fx-ready) .flesh-halo,html:not(.fx-ready) .flesh-neon,html:not(.fx-ready) .peach-seam,html:not(.fx-ready) .peach-stem-leaf path,html:not(.fx-ready) .stone-body,html:not(.fx-ready) .peach-toggle svg{filter:none}
html:not(.fx-ready) .neon-halo{opacity:.3}
