:root {
      --ink: #0a1020;
      --navy: #071b46;
      --blue: #0c56d8;
      --cyan: #13b8d6;
      --gold: #b8872b;
      --paper: #f7f9fc;
      --white: #ffffff;
      --soft: #eef3f8;
      --line: #d8e0ed;
      --muted: #647086;
      --green: #14a66a;
      --shadow: 0 22px 70px rgba(9, 22, 55, 0.13);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--ink);
      background: var(--paper);
      font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
      line-height: 1.7;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      border-bottom: 1px solid rgba(216, 224, 237, 0.75);
      background: rgba(247, 249, 252, 0.88);
      backdrop-filter: blur(18px);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: min(1180px, calc(100% - 40px));
      min-height: 76px;
      margin: 0 auto;
      gap: 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 0;
    }

    .brand-mark {
      width: 174px;
      height: auto;
    }

    .brand-text {
      display: grid;
      gap: 1px;
      color: var(--navy);
      font-size: 11px;
      letter-spacing: 0;
      line-height: 1.35;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 24px;
      color: #26334d;
      font-size: 14px;
      font-weight: 650;
    }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      padding: 0 18px;
      color: var(--white);
      background: var(--navy);
      border-radius: 999px;
      font-weight: 750;
      box-shadow: 0 10px 26px rgba(7, 27, 70, 0.2);
    }

    .hero {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
      padding: 64px 0 70px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.94fr) minmax(440px, 1.06fr);
      gap: 44px;
      align-items: center;
    }

    .kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 34px;
      margin: 0 0 20px;
      padding: 0 12px;
      color: var(--navy);
      background: #eaf3ff;
      border: 1px solid #cce1ff;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 760;
    }

    .kicker::before {
      content: "";
      width: 8px;
      height: 8px;
      background: var(--cyan);
      border-radius: 999px;
      box-shadow: 0 0 0 5px rgba(19, 184, 214, 0.13);
    }

    .hero h1 {
      margin: 0;
      color: var(--navy);
      font-size: clamp(42px, 7vw, 84px);
      line-height: 0.94;
      letter-spacing: 0;
    }

    .hero .jp {
      display: block;
      margin-top: 18px;
      color: #101f3f;
      font-size: clamp(25px, 3.2vw, 42px);
      line-height: 1.26;
      font-weight: 830;
    }

    .subcopy {
      margin: 28px 0 0;
      color: #2d3850;
      font-size: clamp(17px, 1.7vw, 22px);
      line-height: 1.75;
      font-weight: 650;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 34px;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 50px;
      padding: 0 22px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: var(--white);
      color: var(--navy);
      font-weight: 780;
      box-shadow: 0 10px 30px rgba(9, 22, 55, 0.07);
    }

    .button.primary {
      color: var(--white);
      background: linear-gradient(135deg, var(--navy), var(--blue));
      border-color: transparent;
    }

    .hero-proof {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-top: 36px;
    }

    .proof-item {
      padding: 12px 14px;
      background: rgba(255, 255, 255, 0.78);
      border: 1px solid var(--line);
      border-radius: 8px;
    }

    .proof-item strong {
      display: block;
      color: var(--navy);
      font-size: 17px;
      line-height: 1.3;
    }

    .proof-item span {
      display: block;
      margin-top: 2px;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.45;
    }

    .codex-intro {
      position: fixed;
      inset: 0;
      z-index: 100;
      display: grid;
      grid-template-rows: 52px minmax(0, 1fr) 164px;
      color: #e9f7ff;
      background: #000;
      font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
      overflow: hidden;
      animation: introExit 4.4s cubic-bezier(.72,0,.24,1) forwards;
    }

    .codex-intro.is-skipped {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      animation: none;
    }

    .intro-skip {
      position: absolute;
      right: 18px;
      bottom: 18px;
      z-index: 8;
      min-height: 38px;
      padding: 0 14px;
      color: #dff8ff;
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 8px;
      font: 850 11px/1 "SFMono-Regular", Consolas, monospace;
      letter-spacing: .08em;
      cursor: pointer;
      backdrop-filter: blur(12px);
    }

    .intro-skip:focus-visible,
    .frame-nav a:focus-visible,
    .contact-button:focus-visible,
    .form-field input:focus,
    .form-field select:focus,
    .form-field textarea:focus {
      outline: 2px solid #6dffbd;
      outline-offset: 3px;
    }

    .codex-intro::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 50% 52%, rgba(19, 184, 214, 0.18), transparent 35%),
        linear-gradient(180deg, transparent 0 58%, rgba(19,184,214,0.08) 74%, transparent 100%);
      opacity: 0;
      animation: introPulse 8.5s ease forwards 2.6s;
      pointer-events: none;
    }

    .codex-intro::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(transparent 0 48%, rgba(255,255,255,0.04) 50%, transparent 52% 100%);
      background-size: 100% 7px;
      opacity: 0.24;
      pointer-events: none;
      mix-blend-mode: screen;
    }

    .intro-topbar {
      position: relative;
      z-index: 3;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      min-width: 0;
      padding: 0 18px;
      color: #8ea4bf;
      background: #030303;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      font-size: 12px;
      font-weight: 760;
    }

    .intro-path {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .intro-status {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #6dffbd;
      white-space: nowrap;
    }

    .intro-status::before {
      content: "";
      width: 8px;
      height: 8px;
      background: #6dffbd;
      border-radius: 999px;
      box-shadow: 0 0 16px rgba(109,255,189,0.86);
    }

    .intro-editor {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 58px minmax(0, 1fr);
      min-height: 0;
      padding: 22px 26px 12px 0;
    }

    .matrix-field {
      position: absolute;
      inset: 52px 0 164px;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      gap: 0;
      padding: 8px 0;
      opacity: 0;
      pointer-events: none;
      mask-image: radial-gradient(circle at 50% 48%, #000 0 62%, transparent 78%);
      animation: matrixIn 3.7s ease forwards .85s;
    }

    .matrix-field span {
      flex: 1;
      display: flex;
      align-items: center;
      overflow: hidden;
      color: rgba(91, 255, 188, .62);
      font-size: 11px;
      white-space: nowrap;
      text-shadow: 0 0 14px rgba(91,255,188,.34);
      animation: matrixFall var(--speed) linear infinite;
      animation-delay: var(--delay);
    }

    .intro-lines {
      display: contents;
      position: relative;
      z-index: 3;
    }

    .intro-no {
      color: #29364a;
      text-align: right;
      padding-right: 14px;
      user-select: none;
      font-size: clamp(11px, 1.1vw, 14px);
      line-height: 1.76;
    }

    .intro-code {
      min-width: 0;
      color: #eaf4ff;
      font-size: clamp(12px, 1.25vw, 16px);
      line-height: 1.76;
      white-space: nowrap;
      overflow: hidden;
    }

    .intro-code span {
      display: inline-block;
      max-width: 0;
      overflow: hidden;
      vertical-align: top;
      animation: introType 1.05s steps(58) forwards;
      animation-delay: var(--delay);
    }

    .intro-code .dim { color: #60728c; }
    .intro-code .key { color: #ff76b7; }
    .intro-code .str { color: #a7ff8f; }
    .intro-code .fn { color: #60dbff; }
    .intro-code .num { color: #ffd16a; }

    .homepage-ghost {
      position: absolute;
      inset: 18% 7% 24%;
      z-index: 2;
      display: grid;
      place-items: center;
      color: #fff;
      text-align: center;
      pointer-events: none;
      opacity: 0;
      transform: scale(1.04);
      animation: ghostBuild 2.1s cubic-bezier(.16,1,.3,1) forwards 2.05s;
    }

    .homepage-ghost b {
      display: block;
      font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
      font-size: clamp(42px, 9vw, 124px);
      line-height: .92;
      letter-spacing: 0;
      text-shadow: 0 0 42px rgba(19,184,214,.42);
    }

    .homepage-ghost span {
      display: block;
      margin-top: 22px;
      color: rgba(232, 244, 255, .78);
      font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
      font-size: clamp(15px, 2vw, 24px);
      font-weight: 760;
    }

    .codex-chat {
      position: relative;
      z-index: 4;
      display: grid;
      align-content: start;
      gap: 10px;
      padding: 16px 22px 18px;
      background: linear-gradient(180deg, rgba(0,0,0,0.18), #020202);
      border-top: 1px solid rgba(255,255,255,0.08);
    }

    .chat-row {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      max-width: min(940px, 100%);
      opacity: 0;
      transform: translateY(10px);
      animation: chatIn .55s ease forwards;
      animation-delay: var(--delay);
    }

    .chat-row.user {
      margin-left: auto;
      flex-direction: row-reverse;
    }

    .chat-label {
      display: grid;
      place-items: center;
      width: 30px;
      height: 30px;
      flex: 0 0 auto;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 7px;
      color: #b9cce5;
      background: #070707;
      font-size: 11px;
      font-weight: 900;
    }

    .chat-row.user .chat-label {
      color: #00101a;
      background: linear-gradient(135deg, #60dbff, #6dffbd);
    }

    .chat-bubble {
      padding: 9px 12px;
      color: #dbe8f8;
      background: rgba(255,255,255,0.055);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 8px;
      font-size: 12px;
      line-height: 1.62;
    }

    .chat-row.user .chat-bubble {
      color: #f4fbff;
      background: rgba(19,184,214,0.16);
      border-color: rgba(96,219,255,0.34);
    }

    .page-materialize {
      animation: pageWake .75s cubic-bezier(.16,1,.3,1) both 3.85s;
    }

    body.intro-skipped .page-materialize {
      animation: none;
      filter: none;
      opacity: 1;
      transform: none;
    }

    .signal-board {
      position: relative;
      min-height: 520px;
      padding: 28px;
      overflow: hidden;
      color: #eaf4ff;
      background:
        radial-gradient(circle at 50% 28%, rgba(19,184,214,.22), transparent 34%),
        linear-gradient(135deg, #061026, #071126 54%, #090d17);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 18px;
      box-shadow: var(--shadow);
    }

    .signal-board::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
      background-size: 42px 42px;
      mask-image: radial-gradient(circle at 50% 42%, #000, transparent 74%);
    }

    .signal-board::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, transparent 0 38%, rgba(96,219,255,.24) 44%, transparent 52% 100%);
      transform: translateX(-120%);
      animation: boardScan 5.4s ease-in-out infinite;
    }

    .signal-inner {
      position: relative;
      z-index: 1;
      display: grid;
      height: 100%;
      align-content: space-between;
      gap: 28px;
    }

    .signal-title {
      max-width: 390px;
    }

    .signal-title b {
      display: block;
      color: #fff;
      font-size: clamp(28px, 4vw, 48px);
      line-height: 1.05;
      letter-spacing: 0;
    }

    .signal-title span {
      display: block;
      margin-top: 14px;
      color: #9eb5d1;
      font-size: 13px;
      font-weight: 720;
    }

    .signal-metrics {
      display: grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap: 12px;
    }

    .signal-card {
      min-height: 116px;
      padding: 16px;
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.11);
      border-radius: 8px;
      backdrop-filter: blur(12px);
    }

    .signal-card span {
      display: block;
      color: #95aac7;
      font-size: 11px;
      font-weight: 850;
    }

    .signal-card strong {
      display: block;
      margin-top: 8px;
      color: #fff;
      font-size: 22px;
      line-height: 1.2;
    }

    .frame-page {
      min-height: 100vh;
      color: #f7fbff;
      background:
        radial-gradient(circle at 50% 46%, rgba(19,184,214,.18), transparent 34%),
        radial-gradient(circle at 50% 80%, rgba(184,135,43,.12), transparent 38%),
        #020305;
      overflow-x: hidden;
    }

    .frame-stage {
      position: relative;
      display: grid;
      place-items: center;
      width: min(100% - 40px, 1440px);
      min-height: calc(100vh - 40px);
      margin: 20px auto;
      border: 1px solid rgba(255,255,255,.12);
      background:
        linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px),
        rgba(0,0,0,.42);
      background-size: 56px 56px;
      overflow: hidden;
    }

    .frame-stage::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 50% 48%, transparent 0 24%, rgba(19,184,214,.08) 25%, transparent 26% 100%),
        radial-gradient(circle at 50% 48%, transparent 0 39%, rgba(255,255,255,.06) 40%, transparent 41% 100%);
      opacity: .9;
      pointer-events: none;
    }

    .digital-globe {
      position: absolute;
      inset: -8% -4%;
      z-index: 1;
      opacity: .72;
      pointer-events: none;
      mix-blend-mode: screen;
    }

    .digital-globe canvas {
      display: block;
      width: 100%;
      height: 100%;
    }

    .digital-butterfly {
      position: fixed;
      left: 50%;
      top: 50%;
      z-index: 12;
      width: 178px;
      height: 132px;
      pointer-events: none;
      opacity: 0;
      transform: translate3d(-50%, -50%, 0) scale(.42) rotate(0deg);
      transform-origin: 50% 61%;
      transition:
        left 1.18s cubic-bezier(.16, 1, .3, 1),
        top 1.18s cubic-bezier(.16, 1, .3, 1),
        opacity .42s ease,
        transform 1.18s cubic-bezier(.16, 1, .3, 1);
      filter:
        drop-shadow(0 0 12px rgba(56, 232, 255, .78))
        drop-shadow(0 0 34px rgba(20, 204, 222, .46))
        drop-shadow(0 0 56px rgba(109, 255, 189, .2));
    }

    .digital-butterfly.is-visible {
      opacity: .9;
      animation: butterflyHover 2.15s ease-in-out infinite;
    }

    .digital-butterfly.is-resting {
      filter:
        drop-shadow(0 0 18px rgba(103, 255, 230, .95))
        drop-shadow(0 0 48px rgba(56, 232, 255, .58))
        drop-shadow(0 0 80px rgba(109, 255, 189, .26));
    }

    .digital-butterfly.is-flying {
      animation: butterflyFlight 1.05s ease-in-out infinite;
    }

    .digital-butterfly.is-resting .butterfly-wing.left {
      animation: wingRestLeft 1.8s ease-in-out infinite;
    }

    .digital-butterfly.is-resting .butterfly-wing.right {
      animation: wingRestRight 1.8s ease-in-out infinite;
    }

    .butterfly-body {
      position: absolute;
      left: 50%;
      top: 50%;
      z-index: 4;
      width: 13px;
      height: 73px;
      border: 1px solid rgba(137, 244, 255, .72);
      border-radius: 999px;
      background:
        radial-gradient(circle at 50% 10%, #f5feff 0 9%, transparent 10%),
        linear-gradient(180deg, rgba(222, 252, 255, .98), rgba(31, 215, 245, .78) 42%, rgba(10, 115, 173, .72) 72%, rgba(99, 255, 213, .88));
      transform: translate(-50%, -44%);
      box-shadow:
        inset 0 0 10px rgba(4, 26, 52, .62),
        0 0 18px rgba(96, 219, 255, .92);
    }

    .body-core,
    .body-ring {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      pointer-events: none;
    }

    .body-core {
      top: 8px;
      width: 9px;
      height: 14px;
      border-radius: 999px;
      background: radial-gradient(circle at 50% 36%, #f4fdff 0 19%, rgba(49, 229, 255, .78) 20% 100%);
      box-shadow: 0 0 12px rgba(96, 219, 255, .9);
    }

    .body-ring {
      width: 13px;
      height: 1px;
      background: rgba(196, 252, 255, .72);
      box-shadow: 0 0 8px rgba(96, 219, 255, .88);
    }

    .body-ring.ring-a {
      top: 31px;
    }

    .body-ring.ring-b {
      top: 45px;
    }

    .body-ring.ring-c {
      top: 59px;
    }

    .butterfly-antenna {
      position: absolute;
      left: 50%;
      top: 22px;
      z-index: 5;
      width: 48px;
      height: 52px;
      border-top: 2px solid rgba(112, 241, 255, .85);
      border-radius: 999px 999px 0 0;
      transform-origin: 0 100%;
      filter: drop-shadow(0 0 7px rgba(96, 219, 255, .76));
    }

    .butterfly-antenna::after {
      content: "";
      position: absolute;
      right: -3px;
      top: -4px;
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: rgba(111, 255, 229, .92);
      box-shadow: 0 0 12px rgba(109, 255, 189, .82);
    }

    .butterfly-antenna.left {
      transform: translateX(-3px) rotate(-118deg);
    }

    .butterfly-antenna.right {
      transform: translateX(3px) scaleX(-1) rotate(-118deg);
    }

    .butterfly-wing {
      position: absolute;
      top: 8px;
      z-index: 2;
      width: 91px;
      height: 116px;
      border: 1px solid rgba(76, 236, 255, .9);
      background:
        linear-gradient(132deg, rgba(117, 250, 255, .46), rgba(14, 143, 206, .28) 37%, rgba(58, 255, 211, .18) 70%, rgba(1, 18, 42, .08)),
        radial-gradient(ellipse at 55% 29%, rgba(88, 231, 255, .46), transparent 48%),
        radial-gradient(ellipse at 52% 72%, rgba(109, 255, 189, .32), transparent 43%);
      clip-path: polygon(48% 0, 76% 4%, 97% 15%, 99% 31%, 89% 48%, 98% 62%, 79% 73%, 74% 86%, 62% 99%, 52% 84%, 40% 73%, 18% 86%, 16% 67%, 4% 55%, 17% 40%, 7% 26%, 21% 10%);
      transform-origin: 96% 52%;
      box-shadow:
        inset 0 0 22px rgba(65, 231, 255, .22),
        inset 0 0 46px rgba(26, 139, 206, .22),
        0 0 0 1px rgba(210, 255, 255, .15),
        0 0 28px rgba(45, 221, 255, .3);
      animation: wingLeft .72s ease-in-out infinite;
    }

    .butterfly-wing.right {
      right: 0;
      transform-origin: 4% 52%;
      animation-name: wingRight;
      background:
        linear-gradient(228deg, rgba(117, 250, 255, .46), rgba(14, 143, 206, .28) 37%, rgba(58, 255, 211, .18) 70%, rgba(1, 18, 42, .08)),
        radial-gradient(ellipse at 45% 29%, rgba(88, 231, 255, .46), transparent 48%),
        radial-gradient(ellipse at 48% 72%, rgba(109, 255, 189, .32), transparent 43%);
      clip-path: polygon(52% 0, 24% 4%, 3% 15%, 1% 31%, 11% 48%, 2% 62%, 21% 73%, 26% 86%, 38% 99%, 48% 84%, 60% 73%, 82% 86%, 84% 67%, 96% 55%, 83% 40%, 93% 26%, 79% 10%);
    }

    .butterfly-wing.left {
      left: 0;
    }

    .butterfly-wing::after {
      content: "";
      position: absolute;
      left: 56px;
      top: 90px;
      width: 28px;
      height: 42px;
      background:
        linear-gradient(160deg, rgba(103, 255, 230, .55), rgba(22, 160, 216, .24) 56%, rgba(3, 20, 45, 0));
      border-left: 1px solid rgba(100, 240, 255, .72);
      border-bottom: 1px solid rgba(100, 240, 255, .56);
      clip-path: polygon(24% 0, 100% 8%, 58% 100%, 38% 100%, 48% 30%, 0 20%);
      filter: drop-shadow(0 0 10px rgba(96, 219, 255, .56));
      pointer-events: none;
    }

    .butterfly-wing.right::after {
      left: 7px;
      clip-path: polygon(76% 0, 0 8%, 42% 100%, 62% 100%, 52% 30%, 100% 20%);
      border-left: 0;
      border-right: 1px solid rgba(100, 240, 255, .72);
    }

    .wing-panel,
    .wing-circuit,
    .wing-spark {
      position: absolute;
      display: block;
      pointer-events: none;
    }

    .wing-panel {
      border: 1px solid rgba(91, 239, 255, .72);
      background: linear-gradient(145deg, rgba(98, 239, 255, .12), rgba(109, 255, 189, .06));
      box-shadow: inset 0 0 18px rgba(96, 219, 255, .15);
    }

    .wing-panel.upper {
      left: 21px;
      top: 12px;
      width: 55px;
      height: 50px;
      clip-path: polygon(0 7%, 72% 0, 100% 38%, 82% 100%, 18% 82%);
    }

    .wing-panel.lower {
      left: 25px;
      top: 63px;
      width: 48px;
      height: 48px;
      clip-path: polygon(0 10%, 84% 0, 100% 45%, 70% 82%, 62% 100%, 47% 76%, 10% 86%);
    }

    .wing-circuit {
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(103, 255, 230, .85), transparent);
      box-shadow: 0 0 8px rgba(103, 255, 230, .74);
    }

    .wing-circuit.circuit-a {
      left: 19px;
      top: 47px;
      width: 55px;
      transform: rotate(2deg);
    }

    .wing-circuit.circuit-b {
      left: 31px;
      top: 88px;
      width: 32px;
      transform: rotate(-12deg);
    }

    .wing-spark {
      width: 16px;
      height: 4px;
      background: rgba(117, 255, 235, .82);
      box-shadow: 0 0 12px rgba(117, 255, 235, .9);
      animation: sparkPulse 1.8s ease-in-out infinite;
    }

    .wing-spark.spark-a {
      left: 14px;
      top: 20px;
    }

    .wing-spark.spark-b {
      left: 57px;
      top: 73px;
      width: 18px;
      animation-delay: -.75s;
    }

    .butterfly-wing.right .wing-panel.upper {
      left: 18px;
      clip-path: polygon(100% 4%, 32% 0, 0 35%, 18% 98%, 82% 82%);
    }

    .butterfly-wing.right .wing-panel.lower {
      left: 19px;
      clip-path: polygon(100% 10%, 16% 0, 0 45%, 30% 82%, 38% 100%, 53% 76%, 90% 86%);
    }

    .butterfly-wing.right .wing-circuit.circuit-a {
      left: 18px;
    }

    .butterfly-wing.right .wing-circuit.circuit-b {
      left: 28px;
    }

    .butterfly-wing.right .wing-spark.spark-a {
      left: 61px;
    }

    .butterfly-wing.right .wing-spark.spark-b {
      left: 16px;
    }

    .butterfly-trail {
      position: absolute;
      left: 50%;
      top: 50%;
      width: 250px;
      height: 44px;
      background:
        radial-gradient(circle at 14% 42%, rgba(255,255,255,.9) 0 1px, transparent 2px),
        radial-gradient(circle at 25% 64%, rgba(109,255,189,.8) 0 1px, transparent 2px),
        radial-gradient(circle at 34% 35%, rgba(96,219,255,.8) 0 1.5px, transparent 3px),
        radial-gradient(circle at 49% 58%, rgba(255,255,255,.68) 0 1px, transparent 2px);
      transform: translate(-62%, -50%) rotate(-13deg);
      opacity: .78;
      filter: blur(.15px);
      animation: trailShimmer 1.1s ease-in-out infinite;
    }

    .butterfly-trail::before {
      content: "";
      position: absolute;
      left: 18px;
      top: 50%;
      width: 170px;
      height: 2px;
      background: linear-gradient(90deg, transparent, rgba(96,219,255,.46), rgba(109,255,189,.26), transparent);
      border-radius: 999px;
      filter: blur(2px);
      transform: translateY(-50%);
    }

    .swallowtail-svg {
      position: absolute;
      inset: 50% auto auto 50%;
      width: 190px;
      height: 144px;
      max-width: none;
      overflow: visible;
      transform: translate(-50%, -50%);
    }

    .wing,
    .wing-flap {
      transform-box: view-box;
      will-change: transform;
    }

    .wing-flap-redesign {
      display: none;
    }

    .wing-flap,
    .wing,
    .wing-outer,
    .wing-root {
      transform-box: view-box;
      animation: none;
      transition: none;
      will-change: transform;
    }

    .wing-left-flap-redesign,
    .wing-right-flap-redesign {
      transform-origin: 0 0;
    }

    .wing-left-outer,
    .wing-right-outer {
      animation: none;
      transition: none;
    }

    .wing-left {
      transform-origin: 0 0;
      animation: none;
      transition: none;
    }

    .wing-right {
      transform-origin: 0 0;
      animation: none;
      transition: none;
    }

    .wing-left-flap {
      transform-origin: 0 0;
      animation: none;
      transition: none;
    }

    .wing-right-flap {
      transform-origin: 0 0;
      animation: none;
      transition: none;
    }

    .wing-left-art,
    .wing-right-art {
      animation: none;
      transition: none;
    }

    .digital-butterfly.is-resting .wing-left {
      animation: none;
    }

    .digital-butterfly.is-resting .wing-right {
      animation: none;
    }

    .digital-butterfly.is-flying .wing-left {
      animation: none;
    }

    .digital-butterfly.is-flying .wing-right {
      animation: none;
    }

    .digital-butterfly.has-js-wingbeat .wing-left,
    .digital-butterfly.has-js-wingbeat .wing-right,
    .digital-butterfly.has-js-wingbeat .wing-left-flap,
    .digital-butterfly.has-js-wingbeat .wing-right-flap,
    .digital-butterfly.has-js-wingbeat .wing-left-art,
    .digital-butterfly.has-js-wingbeat .wing-right-art,
    .digital-butterfly.has-js-wingbeat.is-resting .wing-left,
    .digital-butterfly.has-js-wingbeat.is-resting .wing-right,
    .digital-butterfly.has-js-wingbeat.is-resting .wing-left-flap,
    .digital-butterfly.has-js-wingbeat.is-resting .wing-right-flap,
    .digital-butterfly.has-js-wingbeat.is-resting .wing-left-art,
    .digital-butterfly.has-js-wingbeat.is-resting .wing-right-art,
    .digital-butterfly.has-js-wingbeat.is-flying .wing-left,
    .digital-butterfly.has-js-wingbeat.is-flying .wing-right,
    .digital-butterfly.has-js-wingbeat.is-flying .wing-left-flap,
    .digital-butterfly.has-js-wingbeat.is-flying .wing-right-flap,
    .digital-butterfly.has-js-wingbeat.is-flying .wing-left-art,
    .digital-butterfly.has-js-wingbeat.is-flying .wing-right-art {
      animation: none;
      transition: none;
    }

    .wing-shell {
      fill: url("#foreWing");
      fill-opacity: .82;
      stroke: rgba(111, 255, 243, .94);
      stroke-linejoin: round;
      stroke-width: 2.3;
    }

    .edge-hot {
      fill: none;
      stroke: rgba(188, 255, 255, .98);
      stroke-linejoin: round;
      stroke-width: .85;
      stroke-dasharray: 92 22;
      animation: edgeRun 5s linear infinite;
    }

    .root-shell {
      fill: rgba(67, 239, 229, .34);
      stroke: rgba(178, 255, 249, .66);
      stroke-width: 1.4;
    }

    .root-line {
      fill: none;
      stroke: rgba(190, 255, 250, .72);
      stroke-width: 1;
      stroke-linecap: round;
    }

    .hind-wing {
      fill: url("#hindWing");
      fill-opacity: .72;
    }

    #digitalButterfly .edge-hot,
    #digitalButterfly .circuit,
    #digitalButterfly .chip,
    #digitalButterfly .spot {
      animation: none !important;
    }

    .vein,
    .circuit {
      fill: none;
      stroke: rgba(121, 255, 242, .58);
      stroke-linecap: round;
      stroke-linejoin: round;
      stroke-width: 2;
    }

    .vein.fine {
      stroke: rgba(118, 255, 217, .34);
      stroke-width: 1.25;
    }

    .circuit {
      stroke: rgba(118, 255, 217, .82);
      stroke-width: 2;
      stroke-dasharray: 28 14;
      animation: circuitFlow 2.2s linear infinite;
    }

    .chip,
    .spot {
      fill: rgba(118, 255, 217, .78);
      filter: drop-shadow(0 0 5px rgba(118, 255, 217, .8));
      animation: sparkPulse 1.8s ease-in-out infinite;
    }

    .spot {
      fill: rgba(85, 244, 255, .78);
    }

    .body {
      filter: drop-shadow(0 0 8px rgba(85, 244, 255, .68));
    }

    .antenna,
    .body-line {
      fill: none;
      stroke: rgba(123, 255, 244, .9);
      stroke-linecap: round;
      stroke-width: 1.8;
    }

    .body-line {
      stroke-width: 1.2;
      opacity: .75;
    }

    .antenna-tip,
    .head,
    .eye {
      fill: rgba(123, 255, 244, .96);
      filter: drop-shadow(0 0 5px rgba(123, 255, 244, .72));
    }

    .torso {
      fill: url("#bodyCore");
      stroke: rgba(205, 255, 255, .76);
      stroke-width: 1.5;
    }

    .hinge-cover {
      fill: rgba(82, 245, 232, .28);
      stroke: rgba(180, 255, 248, .62);
      stroke-width: 1.6;
      filter: drop-shadow(0 0 8px rgba(96,219,255,.48));
    }

    .axis-glow {
      stroke: rgba(255, 255, 255, .24);
      stroke-width: 1;
    }

    .butterfly-perch {
      position: absolute;
      left: clamp(28px, 4vw, 56px);
      top: clamp(54px, 7vw, 92px);
      width: 12px;
      height: 12px;
      border-radius: 999px;
      background: rgba(109,255,189,.32);
      box-shadow: 0 0 18px rgba(109,255,189,.62);
      opacity: 0;
      pointer-events: none;
      transition: opacity .5s ease;
    }

    .scroll-section.is-visible .butterfly-perch {
      opacity: .58;
    }

    .butterfly-sparkle {
      position: fixed;
      z-index: 11;
      width: var(--size, 5px);
      height: var(--size, 5px);
      left: var(--x, 50vw);
      top: var(--y, 50vh);
      border-radius: 999px;
      background:
        radial-gradient(circle, rgba(255,255,255,.98) 0 22%, rgba(109,255,189,.86) 23% 48%, rgba(96,219,255,.24) 49% 70%, transparent 71%);
      box-shadow:
        0 0 10px rgba(255,255,255,.72),
        0 0 18px rgba(96,219,255,.58),
        0 0 28px rgba(109,255,189,.34);
      pointer-events: none;
      transform: translate(-50%, -50%) scale(.3);
      animation: sparkleTrail var(--life, 980ms) cubic-bezier(.16, 1, .3, 1) forwards;
    }

    .butterfly-sparkle::before,
    .butterfly-sparkle::after {
      content: "";
      position: absolute;
      inset: 50% auto auto 50%;
      width: calc(var(--size, 5px) * 3.2);
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.9), transparent);
      transform: translate(-50%, -50%) rotate(var(--spin, 28deg));
      opacity: .8;
    }

    .butterfly-sparkle::after {
      transform: translate(-50%, -50%) rotate(calc(var(--spin, 28deg) + 90deg));
    }

    .globe-fallback {
      position: absolute;
      inset: 9% 18%;
      z-index: 1;
      border: 1px solid rgba(96,219,255,.22);
      border-radius: 50%;
      background:
        radial-gradient(circle at 50% 50%, transparent 0 48%, rgba(96,219,255,.14) 49%, transparent 50% 100%),
        repeating-linear-gradient(90deg, transparent 0 34px, rgba(96,219,255,.09) 35px, transparent 36px),
        repeating-linear-gradient(0deg, transparent 0 34px, rgba(109,255,189,.07) 35px, transparent 36px);
      filter: blur(.2px);
      opacity: .46;
      animation: fallbackGlobe 22s linear infinite;
      pointer-events: none;
    }

    .frame-stage::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, transparent 0 42%, rgba(96,219,255,.18) 48%, transparent 54% 100%);
      transform: translateX(-120%);
      animation: boardScan 7.2s ease-in-out infinite 14.4s;
      pointer-events: none;
    }

    .frame-line {
      position: absolute;
      z-index: 2;
      background: linear-gradient(90deg, transparent, rgba(96,219,255,.72), transparent);
      opacity: .72;
      pointer-events: none;
    }

    .frame-line-top,
    .frame-line-bottom {
      left: 28px;
      right: 28px;
      height: 1px;
    }

    .frame-line-top { top: 28px; }
    .frame-line-bottom { bottom: 28px; }

    .frame-line-left,
    .frame-line-right {
      top: 28px;
      bottom: 28px;
      width: 1px;
      background: linear-gradient(180deg, transparent, rgba(96,219,255,.72), transparent);
    }

    .frame-line-left { left: 28px; }
    .frame-line-right { right: 28px; }

    .frame-nav {
      position: absolute;
      top: 42px;
      right: 48px;
      z-index: 3;
      display: flex;
      align-items: center;
      gap: 22px;
      color: #9fb3ce;
      font-size: 12px;
      font-weight: 820;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .frame-center {
      position: relative;
      z-index: 4;
      width: min(920px, calc(100% - 48px));
      text-align: center;
    }

    .frame-kicker {
      margin: 0 0 22px;
      color: #60dbff;
      font-size: clamp(11px, 1.2vw, 14px);
      font-weight: 900;
      letter-spacing: .18em;
    }

    .frame-center h1 {
      margin: 0;
      color: #fff;
      font-size: clamp(54px, 11vw, 164px);
      line-height: .82;
      letter-spacing: 0;
      text-shadow:
        0 0 24px rgba(96,219,255,.32),
        0 0 80px rgba(19,184,214,.22);
    }

    .frame-center > p:not(.frame-kicker) {
      margin: 30px auto 0;
      color: #c6d5e9;
      font-size: clamp(16px, 2vw, 26px);
      font-weight: 760;
      line-height: 1.65;
      max-width: 720px;
    }

    .hero-cta,
    .section-cta {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 12px;
    }

    .hero-cta {
      margin-top: 28px;
    }

    .section-cta {
      width: min(1180px, calc(100% - 48px));
      margin: 36px auto 0;
      justify-content: flex-start;
    }

    .cta-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 0 20px;
      color: #effcff;
      font-size: 14px;
      font-weight: 900;
      line-height: 1;
      text-decoration: none;
      border-radius: 8px;
      transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
    }

    .cta-button:hover {
      transform: translateY(-2px);
    }

    .cta-button-primary {
      color: #021211;
      background: linear-gradient(135deg, #67ffcf, #60dbff);
      border: 1px solid rgba(170,255,242,.72);
      box-shadow: 0 0 24px rgba(96,219,255,.26);
    }

    .cta-button-secondary {
      background: rgba(255,255,255,.055);
      border: 1px solid rgba(255,255,255,.18);
    }

    .frame-card {
      position: absolute;
      z-index: 3;
      width: min(320px, calc(100% - 64px));
      padding: 16px;
      color: #dcecff;
      background: rgba(255,255,255,.055);
      border: 1px solid rgba(255,255,255,.13);
      border-radius: 8px;
      backdrop-filter: blur(14px);
    }

    .frame-card span {
      display: block;
      color: #7f95b2;
      font-size: 10px;
      font-weight: 900;
      letter-spacing: .14em;
    }

    .frame-card b {
      display: block;
      margin-top: 8px;
      color: #fff;
      font-size: 14px;
      line-height: 1.55;
    }

    .frame-card-left {
      left: 48px;
      top: 50%;
      transform: translateY(-50%);
    }

    .frame-card-right {
      right: 48px;
      top: 50%;
      transform: translateY(-50%);
    }

    .scroll-cue {
      position: absolute;
      left: 50%;
      bottom: 56px;
      z-index: 4;
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      gap: 9px;
      color: #7f95b2;
      font-size: 10px;
      font-weight: 900;
      letter-spacing: .18em;
      text-transform: uppercase;
      transform: translateX(-50%);
    }

    .scroll-cue::after {
      content: "";
      width: 1px;
      height: 38px;
      background: linear-gradient(180deg, rgba(96,219,255,.86), transparent);
      animation: cuePulse 1.8s ease-in-out infinite;
    }

    .scroll-section {
      position: relative;
      width: min(100% - 40px, 1240px);
      min-height: 86vh;
      margin: 0 auto;
      padding: clamp(76px, 10vw, 138px) 0;
      border-top: 1px solid rgba(255,255,255,.09);
    }

    .scroll-section::before {
      content: "";
      position: absolute;
      inset: 18px 0 auto;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(96,219,255,.34), transparent);
      opacity: 0;
      transform: scaleX(.2);
      transition: opacity .8s ease, transform 1.1s ease;
    }

    .scroll-section.is-visible::before {
      opacity: 1;
      transform: scaleX(1);
    }

    .section-grid {
      display: grid;
      grid-template-columns: minmax(0, .42fr) minmax(0, .58fr);
      gap: clamp(28px, 5vw, 72px);
      align-items: start;
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 18px;
      color: #60dbff;
      font-size: 12px;
      font-weight: 950;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .section-label::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #60dbff;
      box-shadow: 0 0 16px rgba(96,219,255,.82);
    }

    .scroll-section h2 {
      margin: 0;
      color: #fff;
      font-size: clamp(34px, 5vw, 78px);
      line-height: .98;
      letter-spacing: 0;
    }

    .section-lead {
      margin: 24px 0 0;
      color: #aebfd6;
      font-size: clamp(15px, 1.45vw, 18px);
      font-weight: 720;
      line-height: 1.86;
    }

    .reveal {
      opacity: 0;
      transform: translateY(28px);
      filter: blur(10px);
      transition: opacity .9s ease, transform .9s ease, filter .9s ease;
      transition-delay: var(--reveal-delay, 0s);
    }

    .is-visible .reveal {
      opacity: 1;
      transform: translateY(0);
      filter: blur(0);
    }

    .problem-list,
    .service-modules,
    .strength-grid,
    .tech-cloud,
    .flow-steps,
    .company-panel,
    .contact-panel {
      display: grid;
      gap: 12px;
    }

    .problem-item,
    .service-module,
    .strength-card,
    .tech-item,
    .flow-step,
    .faq-item,
    .company-row,
    .representative-profile,
    .contact-panel,
    .price-panel,
    .works-panel {
      background: rgba(255,255,255,.055);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 8px;
      backdrop-filter: blur(14px);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.025);
    }

    .problem-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      min-height: 68px;
      padding: 16px 18px;
      color: #dbe8f8;
      font-weight: 780;
    }

    .problem-item span {
      color: #6dffbd;
      font-family: "SFMono-Regular", Consolas, monospace;
      font-size: 12px;
    }

    .outcome-strip {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 10px;
      margin: 28px 0 0;
    }

    .outcome-strip div,
    .tech-use-list div {
      min-height: 74px;
      padding: 14px;
      border: 1px solid rgba(96,219,255,.18);
      border-radius: 8px;
      background: rgba(96,219,255,.055);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
    }

    .outcome-strip span,
    .strength-card span,
    .tech-use-list span {
      display: block;
      margin-bottom: 8px;
      color: #6dffbd;
      font-family: "SFMono-Regular", Consolas, monospace;
      font-size: 11px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .outcome-strip b,
    .tech-use-list b {
      color: #f4fbff;
      font-size: 14px;
      font-weight: 900;
      line-height: 1.45;
    }

    .service-modules {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .strength-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-module {
      min-height: 190px;
      padding: 20px;
      position: relative;
      overflow: hidden;
    }

    .service-module::after {
      content: "";
      position: absolute;
      inset: auto 16px 16px;
      height: 1px;
      background: linear-gradient(90deg, rgba(96,219,255,.78), transparent);
    }

    .service-module span,
    .price-panel span,
    .works-panel span,
    .tech-item span,
    .flow-step span,
    .company-row span {
      display: block;
      color: #7f95b2;
      font-size: 10px;
      font-weight: 950;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .service-module h3,
    .strength-card h3,
    .works-panel h3 {
      margin: 12px 0 10px;
      color: #fff;
      font-size: 22px;
      line-height: 1.25;
    }

    .service-module p,
    .strength-card p,
    .works-panel p,
    .flow-step p,
    .faq-item p,
    .contact-panel p {
      margin: 0;
      color: #aebfd6;
      font-size: 14px;
      line-height: 1.75;
      font-weight: 680;
    }

    .module-link {
      position: relative;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      width: fit-content;
      margin-top: 14px;
      color: #63f5df;
      font-size: 13px;
      font-weight: 900;
      line-height: 1.4;
      text-decoration: none;
    }

    .module-link::after {
      content: "";
      width: 24px;
      height: 1px;
      margin-left: 8px;
      background: currentColor;
      opacity: .72;
      transition: transform .22s ease, opacity .22s ease;
    }

    .module-link:hover,
    .module-link:focus-visible {
      color: #fff;
    }

    .module-link:hover::after,
    .module-link:focus-visible::after {
      opacity: 1;
      transform: translateX(4px);
    }

    .strength-card {
      min-height: 166px;
      padding: 18px;
    }

    .price-layout {
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(260px, .45fr);
      gap: 16px;
    }

    .price-panel {
      padding: 24px;
    }

    .price-main {
      display: block;
      margin-top: 12px;
      color: #fff;
      font-size: clamp(46px, 7vw, 96px);
      font-weight: 950;
      line-height: .96;
    }

    .price-main small {
      color: #aebfd6;
      font-size: 18px;
      font-weight: 850;
    }

    .price-notes {
      display: grid;
      gap: 9px;
      margin-top: 18px;
      color: #aebfd6;
      font-size: 13px;
      font-weight: 720;
    }

    .works-panel {
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
      gap: 18px;
      padding: 18px;
    }

    .works-gallery {
      display: grid;
      gap: 16px;
    }

    .sample-note {
      margin: 0 0 14px;
      color: #7f95b2;
      font-size: 12px;
      font-weight: 760;
    }

    .work-preview {
      min-height: 320px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 8px;
      background:
        linear-gradient(135deg, rgba(96,219,255,.18), transparent 52%),
        linear-gradient(180deg, #f6f8fb 0 28%, #dfe8f3 28% 100%);
      position: relative;
      overflow: hidden;
    }

    .work-preview::after {
      content: attr(data-title);
      position: absolute;
      left: 18px;
      bottom: 18px;
      color: #fff;
      font-size: 18px;
      font-weight: 950;
      text-shadow: 0 1px 8px rgba(0,0,0,.7);
      z-index: 2;
    }

    .work-preview img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      display: block;
      z-index: 1;
    }

    .work-card-thumb {
      margin: -20px -20px 20px;
      overflow: hidden;
      border-radius: 8px 8px 0 0;
    }

    .work-card-thumb img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      object-position: top center;
      display: block;
      transition: transform .4s ease;
    }

    .work-detail-card:hover .work-card-thumb img {
      transform: scale(1.03);
    }

    .work-link {
      display: inline-flex;
      max-width: 100%;
      margin-top: 12px;
      color: #63f5df;
      font-size: 13px;
      font-weight: 800;
      line-height: 1.4;
      overflow-wrap: anywhere;
      text-decoration: none;
    }

    .work-link:hover {
      color: #fff;
    }

    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 18px;
    }

    .tag-row b {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 0 10px;
      color: #dff8ff;
      border: 1px solid rgba(96,219,255,.24);
      border-radius: 999px;
      background: rgba(96,219,255,.08);
      font-size: 12px;
    }

    .tech-cloud {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .tech-stack-grid {
      grid-template-columns: 1fr;
      align-items: stretch;
      gap: 34px;
    }

    .tech-stack-copy {
      position: relative;
      z-index: 2;
      max-width: 760px;
    }

    .tech-stack-accessible-list {
      margin: 28px 0 0;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
      list-style: none;
      color: #dbe8f8;
      font-size: 14px;
      font-weight: 760;
    }

    .tech-stack-accessible-list li {
      position: relative;
      padding-left: 18px;
    }

    .tech-stack-accessible-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: .78em;
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: #6dffbd;
      box-shadow: 0 0 14px rgba(109,255,189,.68);
    }

    .tech-use-list {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      margin-top: 20px;
    }

    .tech-use-list div {
      min-height: 92px;
    }

    .tech-stack-board {
      position: relative;
      --ticker-shift: 0px;
      min-height: 330px;
      padding: 0;
      display: grid;
      grid-template-columns: minmax(260px, .38fr) minmax(0, 1fr);
      align-items: stretch;
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 8px;
      overflow: hidden;
      background:
        radial-gradient(circle at 18% 52%, rgba(96,219,255,.22), transparent 42%),
        linear-gradient(90deg, rgba(109,255,189,.09), transparent 34%),
        linear-gradient(135deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
      box-shadow:
        inset 0 0 0 1px rgba(255,255,255,.025),
        0 0 70px rgba(19,184,214,.1);
      backdrop-filter: blur(14px);
    }

    .tech-stack-board::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(96,219,255,.08) 1px, transparent 1px),
        linear-gradient(0deg, rgba(96,219,255,.055) 1px, transparent 1px);
      background-size: 56px 56px;
      mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
      opacity: .32;
      pointer-events: none;
    }

    .tech-stack-board::after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      right: 0;
      z-index: 3;
      width: 120px;
      background: linear-gradient(90deg, transparent, rgba(9,13,16,.9));
      pointer-events: none;
    }

    .tech-ticker-copy {
      position: relative;
      z-index: 2;
      min-height: 330px;
      padding: 58px 34px;
      display: grid;
      align-content: center;
      background: linear-gradient(90deg, rgba(3,7,10,.72), rgba(3,7,10,.44) 78%, transparent);
    }

    .tech-ticker-copy span {
      color: #60dbff;
      font-family: "SFMono-Regular", Consolas, monospace;
      font-size: clamp(42px, 5.6vw, 72px);
      font-weight: 950;
      text-transform: uppercase;
      line-height: .9;
    }

    .tech-ticker-copy b {
      display: block;
      margin-top: 18px;
      color: #e9f4ff;
      font-size: clamp(18px, 2.2vw, 28px);
      font-weight: 950;
      line-height: 1.35;
    }

    .tech-ticker-window {
      position: relative;
      z-index: 1;
      min-width: 0;
      overflow: hidden;
      cursor: grab;
      touch-action: pan-y;
    }

    .tech-ticker-board:hover .tech-ticker-track,
    .tech-ticker-board.is-paused .tech-ticker-track,
    .tech-ticker-board.is-dragging .tech-ticker-track {
      animation-play-state: paused;
    }

    .tech-ticker-board.is-dragging {
      cursor: grabbing;
      user-select: none;
    }

    .tech-ticker-track {
      position: absolute;
      top: 50%;
      left: 0;
      display: flex;
      align-items: center;
      gap: 0;
      min-width: max-content;
      transform: translate3d(var(--ticker-shift), -50%, 0);
      animation: techTickerSlide 54s linear infinite;
      will-change: transform;
    }

    .tech-ticker-set {
      display: flex;
      align-items: center;
      gap: 34px;
      flex: 0 0 auto;
      padding-right: 34px;
    }

    .tech-ticker-group {
      display: flex;
      align-items: center;
      gap: 14px;
      flex: 0 0 auto;
    }

    .tech-ticker-category {
      min-width: max-content;
      color: #f6fbff;
      font-size: 18px;
      font-weight: 950;
      line-height: 1.2;
      white-space: nowrap;
    }

    .tech-logo-card {
      min-width: 124px;
      min-height: 96px;
      padding: 13px 12px;
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 7px;
      color: #effcff;
      background: rgba(255,255,255,.075);
      border: 1px solid rgba(96,219,255,.28);
      border-radius: 8px;
      box-shadow:
        0 0 18px rgba(96,219,255,.14),
        inset 0 0 0 1px rgba(255,255,255,.03);
      font-family: "SFMono-Regular", Consolas, monospace;
      font-size: 11px;
      font-weight: 900;
      line-height: 1;
      white-space: nowrap;
    }

    .tech-logo-img {
      width: 38px;
      height: 38px;
      object-fit: contain;
      filter: drop-shadow(0 0 14px rgba(96,219,255,.22));
    }

    .tech-logo-img-invert {
      filter: invert(1) drop-shadow(0 0 14px rgba(96,219,255,.22));
    }

    .tech-ticker-toggle {
      position: absolute;
      top: 14px;
      right: 14px;
      z-index: 5;
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      color: #60dbff;
      background: rgba(3,7,10,.76);
      border: 1px solid rgba(96,219,255,.28);
      border-radius: 8px;
      box-shadow: 0 0 18px rgba(96,219,255,.12);
      font-family: "SFMono-Regular", Consolas, monospace;
      font-size: 16px;
      font-weight: 950;
      cursor: pointer;
    }

    .tech-item {
      min-height: 86px;
      padding: 16px;
    }

    .tech-item b,
    .company-row b {
      display: block;
      margin-top: 8px;
      color: #fff;
      font-size: 16px;
      line-height: 1.45;
    }

    .flow-steps {
      grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .flow-step {
      min-height: 156px;
      padding: 16px;
      position: relative;
    }

    .flow-step::before {
      content: attr(data-step);
      display: block;
      margin-bottom: 14px;
      color: #60dbff;
      font-family: "SFMono-Regular", Consolas, monospace;
      font-size: 18px;
      font-weight: 900;
    }

    .faq-list {
      display: grid;
      gap: 12px;
    }

    .faq-item {
      padding: 18px;
      position: relative;
      overflow: hidden;
    }

    .faq-item::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(96,219,255,.12), transparent 48%);
      pointer-events: none;
    }

    .faq-item > * {
      position: relative;
      z-index: 1;
    }

    .faq-item span {
      display: block;
      color: #63f5df;
      font-family: "SFMono-Regular", Consolas, monospace;
      font-size: 13px;
      font-weight: 950;
      letter-spacing: .08em;
    }

    .faq-item h3 {
      margin: 10px 0 8px;
      color: #fff;
      font-size: 18px;
      line-height: 1.45;
    }

    .company-panel {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .representative-profile {
      grid-column: 1 / -1;
      padding: 22px;
      position: relative;
      overflow: hidden;
    }

    .representative-profile::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 18% 12%, rgba(96,219,255,.18), transparent 30%),
        linear-gradient(135deg, rgba(99,245,223,.12), transparent 48%);
      pointer-events: none;
    }

    .representative-profile > * {
      position: relative;
      z-index: 1;
    }

    .representative-profile span {
      display: block;
      color: #63f5df;
      font-size: 10px;
      font-weight: 950;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .representative-profile h3 {
      margin: 12px 0 10px;
      color: #fff;
      font-size: 24px;
      line-height: 1.25;
    }

    .representative-profile p {
      max-width: 900px;
      margin: 0;
      color: #c9d8eb;
      font-size: 14px;
      line-height: 1.85;
    }

    .profile-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 18px;
    }

    .profile-tags b {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 0 10px;
      color: #dff8ff;
      border: 1px solid rgba(99,245,223,.26);
      border-radius: 999px;
      background: rgba(99,245,223,.08);
      font-size: 12px;
      line-height: 1;
    }

    .company-row {
      padding: 16px;
    }

    .contact-panel {
      grid-template-columns: minmax(0, .8fr) minmax(280px, .65fr);
      gap: 22px;
      padding: 24px;
      align-items: center;
    }

    .contact-form {
      display: grid;
      gap: 12px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .form-field {
      display: grid;
      gap: 7px;
    }

    .form-field.full {
      grid-column: 1 / -1;
    }

    .form-field label,
    .privacy-check {
      color: #aebfd6;
      font-size: 12px;
      font-weight: 850;
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
      width: 100%;
      min-height: 44px;
      padding: 10px 12px;
      color: #f4fbff;
      background: rgba(0,0,0,.32);
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 8px;
      font: inherit;
    }

    .form-field textarea {
      min-height: 112px;
      resize: vertical;
    }

    .privacy-check {
      display: flex;
      align-items: flex-start;
      gap: 9px;
      line-height: 1.6;
    }

    .privacy-check input {
      margin-top: 4px;
      accent-color: #60dbff;
    }

    .hp-field {
      position: absolute;
      left: -9999px;
      width: 1px;
      height: 1px;
      opacity: 0;
      pointer-events: none;
    }

    .policy-page {
      min-height: 100vh;
      color: #f7fbff;
      background:
        radial-gradient(circle at 50% 0%, rgba(19,184,214,.18), transparent 34%),
        #020305;
      padding: 40px 20px 90px;
    }

    .policy-container {
      width: min(920px, 100%);
      margin: 0 auto;
      padding: clamp(28px, 5vw, 56px);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 10px;
      background: rgba(255,255,255,.055);
    }

    .policy-container h1 {
      margin: 0 0 24px;
      font-size: clamp(34px, 5vw, 64px);
      line-height: 1;
      letter-spacing: 0;
    }

    .policy-container h2 {
      margin: 34px 0 10px;
      color: #fff;
      font-size: 22px;
    }

    .policy-container p,
    .policy-container li {
      color: #aebfd6;
      line-height: 1.9;
    }

    .policy-container a {
      color: #60dbff;
      text-decoration: underline;
    }

    .detail-page {
      min-height: 100vh;
      color: #eef8ff;
      background:
        radial-gradient(circle at 18% 0%, rgba(96,219,255,.18), transparent 32%),
        radial-gradient(circle at 82% 12%, rgba(99,245,223,.12), transparent 30%),
        #020305;
    }

    .detail-header {
      position: sticky;
      top: 0;
      z-index: 20;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      width: min(1180px, calc(100% - 48px));
      margin: 0 auto;
      padding: 18px 0;
      background: rgba(2,3,5,.82);
      backdrop-filter: blur(18px);
    }

    .detail-logo,
    .detail-nav a {
      color: #effcff;
      text-decoration: none;
      font-weight: 900;
    }

    .detail-logo {
      letter-spacing: .08em;
    }

    .detail-nav {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 12px;
      font-size: 12px;
    }

    .detail-nav a {
      color: #aebfd6;
    }

    .detail-nav a:hover {
      color: #63f5df;
    }

    .detail-hero,
    .detail-section,
    .detail-final-cta {
      width: min(1180px, calc(100% - 48px));
      margin: 0 auto;
    }

    .detail-hero {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(300px, .42fr);
      gap: 24px;
      align-items: center;
      min-height: 680px;
      padding: 72px 0;
    }

    .detail-hero h1,
    .detail-section h2,
    .detail-final-cta h2 {
      margin: 12px 0 18px;
      color: #fff;
      line-height: 1.05;
      letter-spacing: 0;
    }

    .detail-hero h1 {
      max-width: 880px;
      font-size: clamp(44px, 8vw, 108px);
    }

    .detail-hero-copy > p:not(.section-label),
    .detail-lead,
    .detail-final-cta p {
      max-width: 780px;
      margin: 0;
      color: #c6d5e9;
      font-size: 16px;
      font-weight: 720;
      line-height: 1.85;
    }

    .detail-price-card,
    .detail-card,
    .scope-panel,
    .terms-list div,
    .detail-flow li,
    .detail-faq article,
    .detail-final-cta {
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 8px;
      background: rgba(255,255,255,.055);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.025);
      backdrop-filter: blur(14px);
    }

    .detail-price-card {
      padding: 24px;
    }

    .detail-price-card span,
    .terms-list span {
      display: block;
      color: #63f5df;
      font-size: 10px;
      font-weight: 950;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .detail-price-card b {
      display: block;
      margin-top: 12px;
      color: #fff;
      font-size: clamp(42px, 6vw, 74px);
      line-height: .95;
    }

    .detail-price-card small {
      display: block;
      margin-top: 8px;
      color: #aebfd6;
      font-size: 16px;
      line-height: 1.4;
    }

    .detail-price-card ul,
    .scope-panel ul {
      display: grid;
      gap: 9px;
      margin: 18px 0 0;
      padding-left: 1.1em;
      color: #c6d5e9;
      font-weight: 760;
      line-height: 1.7;
    }

    .detail-section {
      display: grid;
      grid-template-columns: minmax(220px, .35fr) minmax(0, 1fr);
      gap: 24px;
      padding: 72px 0;
      border-top: 1px solid rgba(255,255,255,.08);
    }

    .detail-section h2,
    .detail-final-cta h2 {
      font-size: clamp(34px, 5vw, 68px);
    }

    .detail-card-grid,
    .scope-columns,
    .terms-list,
    .detail-flow,
    .detail-faq {
      display: grid;
      gap: 14px;
    }

    .detail-card-grid,
    .scope-columns,
    .terms-list {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .detail-card,
    .scope-panel,
    .terms-list div,
    .detail-flow li,
    .detail-faq article {
      padding: 18px;
    }

    .detail-card h3,
    .scope-panel h3,
    .detail-faq h3 {
      margin: 0 0 10px;
      color: #fff;
      font-size: 20px;
      line-height: 1.35;
    }

    .detail-card p,
    .detail-faq p,
    .detail-flow p {
      margin: 0;
      color: #aebfd6;
      font-size: 14px;
      font-weight: 680;
      line-height: 1.75;
    }

    .scope-panel-muted {
      background: rgba(255,255,255,.035);
    }

    .terms-list b {
      display: block;
      margin-top: 8px;
      color: #fff;
      font-size: 17px;
      line-height: 1.45;
    }

    .detail-flow {
      grid-template-columns: repeat(5, minmax(0, 1fr));
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .detail-flow span {
      display: block;
      margin-bottom: 12px;
      color: #60dbff;
      font-family: "SFMono-Regular", Consolas, monospace;
      font-size: 18px;
      font-weight: 950;
    }

    .detail-flow b {
      display: block;
      margin-bottom: 8px;
      color: #fff;
      font-size: 17px;
      line-height: 1.35;
    }

    .work-detail-list {
      display: grid;
      gap: 14px;
    }

    .work-detail-card {
      padding: 20px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 8px;
      background: rgba(255,255,255,.055);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.025);
      backdrop-filter: blur(14px);
    }

    .work-detail-card span {
      display: block;
      color: #63f5df;
      font-size: 10px;
      font-weight: 950;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .work-detail-card h3 {
      margin: 10px 0;
      color: #fff;
      font-size: 24px;
      line-height: 1.25;
    }

    .work-detail-card p,
    .scope-panel p {
      margin: 0;
      color: #aebfd6;
      font-size: 14px;
      font-weight: 680;
      line-height: 1.75;
    }

    .detail-final-cta {
      margin-bottom: 80px;
      padding: 34px;
      text-align: center;
    }

    .detail-final-cta p {
      margin: 0 auto;
    }

    .contact-button {
      border: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding: 0 18px;
      color: #00111b;
      background: linear-gradient(135deg, #60dbff, #6dffbd);
      border-radius: 8px;
      font-weight: 950;
      cursor: pointer;
    }

    .mobile-sticky-cta {
      display: none;
    }

    .floating-header {
      position: fixed;
      top: 0;
      right: 0;
      left: 0;
      z-index: 70;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 10px clamp(20px, 4vw, 48px);
      background: rgba(2, 5, 9, .84);
      border-bottom: 1px solid rgba(96, 219, 255, .18);
      backdrop-filter: blur(16px);
      opacity: 0;
      transform: translateY(-100%);
      transition: transform .42s cubic-bezier(.16, 1, .3, 1), opacity .3s ease;
      pointer-events: none;
    }

    .floating-header.is-visible {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    .floating-header-logo {
      color: #fff;
      font-size: 14px;
      font-weight: 900;
      letter-spacing: .1em;
      text-decoration: none;
      text-shadow: 0 0 18px rgba(96, 219, 255, .34);
      white-space: nowrap;
    }

    .floating-header-nav {
      display: flex;
      align-items: center;
      gap: 20px;
      color: #9fb3ce;
      font-size: 12px;
      font-weight: 820;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .floating-header-nav a {
      color: inherit;
      text-decoration: none;
      transition: color .18s ease;
    }

    .floating-header-nav a:hover {
      color: #60dbff;
    }

    .floating-header .cta-button {
      min-height: 38px;
      padding: 0 18px;
      font-size: 13px;
    }

    @keyframes cuePulse {
      0%, 100% {
        transform: scaleY(.45);
        opacity: .32;
      }
      50% {
        transform: scaleY(1);
        opacity: 1;
      }
    }

    @keyframes fallbackGlobe {
      to {
        transform: rotate(360deg);
      }
    }

    @keyframes wingLeft {
      0%, 100% {
        transform: perspective(260px) rotateY(-3deg) rotate(-4deg) skewY(-1deg);
      }
      50% {
        transform: perspective(260px) rotateY(42deg) rotate(2deg) skewY(1deg);
      }
    }

    @keyframes wingRight {
      0%, 100% {
        transform: perspective(260px) rotateY(3deg) rotate(4deg) skewY(1deg);
      }
      50% {
        transform: perspective(260px) rotateY(-42deg) rotate(-2deg) skewY(-1deg);
      }
    }

    @keyframes wingRestLeft {
      0%, 100% {
        transform: perspective(260px) rotateY(-2deg) rotate(-4deg) skewY(-1deg);
      }
      50% {
        transform: perspective(260px) rotateY(8deg) rotate(-2deg) skewY(0deg);
      }
    }

    @keyframes wingRestRight {
      0%, 100% {
        transform: perspective(260px) rotateY(2deg) rotate(4deg) skewY(1deg);
      }
      50% {
        transform: perspective(260px) rotateY(-8deg) rotate(2deg) skewY(0deg);
      }
    }

    @keyframes sparkPulse {
      0%, 100% {
        opacity: .42;
        transform: translateX(0);
      }
      45% {
        opacity: 1;
        transform: translateX(5px);
      }
    }

    @keyframes svgWingLeft {
      0%, 100% {
        transform: perspective(260px) rotateY(-2deg) rotate(-2deg);
      }
      50% {
        transform: perspective(260px) rotateY(44deg) rotate(2deg);
      }
    }

    @keyframes svgWingRight {
      0%, 100% {
        transform: perspective(260px) rotateY(2deg) rotate(2deg);
      }
      50% {
        transform: perspective(260px) rotateY(-44deg) rotate(-2deg);
      }
    }

    @keyframes svgWingRestLeft {
      0%, 100% {
        transform: perspective(260px) rotateY(-1deg) rotate(-2deg);
      }
      50% {
        transform: perspective(260px) rotateY(7deg) rotate(-1deg);
      }
    }

    @keyframes svgWingRestRight {
      0%, 100% {
        transform: perspective(260px) rotateY(1deg) rotate(2deg);
      }
      50% {
        transform: perspective(260px) rotateY(-7deg) rotate(1deg);
      }
    }

    @keyframes fittedWingLeft {
      0%, 100% {
        transform: scaleX(1) rotateZ(-2deg);
      }
      45% {
        transform: scaleX(.42) rotateZ(8deg);
      }
      68% {
        transform: scaleX(.72) rotateZ(3deg);
      }
    }

    @keyframes fittedWingRight {
      0%, 100% {
        transform: scaleX(1) rotateZ(2deg);
      }
      45% {
        transform: scaleX(.42) rotateZ(-8deg);
      }
      68% {
        transform: scaleX(.72) rotateZ(-3deg);
      }
    }

    @keyframes fittedWingRestLeft {
      0%, 100% {
        transform: scaleX(1) rotateZ(-2deg);
      }
      50% {
        transform: scaleX(.68) rotateZ(5deg);
      }
    }

    @keyframes fittedWingRestRight {
      0%, 100% {
        transform: scaleX(1) rotateZ(2deg);
      }
      50% {
        transform: scaleX(.68) rotateZ(-5deg);
      }
    }

    @keyframes butterflyHover {
      0%, 100% {
        margin-top: 0;
      }
      50% {
        margin-top: -5px;
      }
    }

    @keyframes butterflyFlight {
      0%, 100% {
        margin-top: 0;
      }
      35% {
        margin-top: -10px;
      }
      70% {
        margin-top: 4px;
      }
    }

    @keyframes trailShimmer {
      0%, 100% {
        opacity: .46;
        transform: translate(-62%, -50%) rotate(-13deg) scaleX(.82);
      }
      50% {
        opacity: .9;
        transform: translate(-62%, -50%) rotate(-13deg) scaleX(1.08);
      }
    }

    @keyframes techTickerSlide {
      from {
        transform: translate3d(var(--ticker-shift), -50%, 0);
      }
      to {
        transform: translate3d(calc(var(--ticker-shift) - 50%), -50%, 0);
      }
    }

    @keyframes sparkleTrail {
      0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(.2) rotate(0deg);
      }
      18% {
        opacity: 1;
      }
      100% {
        opacity: 0;
        transform:
          translate(
            calc(-50% + var(--dx, 0px)),
            calc(-50% + var(--dy, 0px))
          )
          scale(1.08)
          rotate(150deg);
      }
    }

    @keyframes circuitFlow {
      to {
        stroke-dashoffset: -42;
      }
    }

    .ai-stage {
      position: relative;
      padding: 18px;
      background: #071126;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 18px;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .ai-stage::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(120deg, rgba(19, 184, 214, 0.18), transparent 38%),
        linear-gradient(300deg, rgba(184, 135, 43, 0.16), transparent 40%);
      pointer-events: none;
    }

    .ai-stage::after {
      content: "";
      position: absolute;
      inset: auto -20% -34% 16%;
      height: 210px;
      background: radial-gradient(circle, rgba(19, 184, 214, 0.3), transparent 62%);
      pointer-events: none;
    }

    .ai-shell {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 14px;
    }

    .build-request {
      display: grid;
      grid-template-columns: 34px minmax(0, 1fr) auto;
      align-items: center;
      gap: 12px;
      min-height: 58px;
      padding: 12px;
      color: #eaf7ff;
      background: rgba(3, 12, 28, 0.78);
      border: 1px solid rgba(94, 210, 255, 0.28);
      border-radius: 12px;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
      opacity: 0;
      transform: translateY(10px);
      animation: rise 0.7s ease forwards 0.2s;
    }

    .ai-mark {
      display: grid;
      place-items: center;
      width: 34px;
      height: 34px;
      color: #031126;
      background: linear-gradient(135deg, #35e7ff, #61ffb8);
      border-radius: 8px;
      font-size: 13px;
      font-weight: 900;
      box-shadow: 0 0 24px rgba(19, 184, 214, 0.38);
    }

    .request-copy {
      min-width: 0;
    }

    .request-copy b,
    .request-copy span {
      display: block;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .request-copy b {
      font-size: 13px;
      line-height: 1.35;
    }

    .request-copy span {
      margin-top: 2px;
      color: #99b1ce;
      font-size: 11px;
      font-weight: 650;
    }

    .request-status {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: #8fffd3;
      font-size: 11px;
      font-weight: 850;
      white-space: nowrap;
    }

    .request-status::before {
      content: "";
      width: 7px;
      height: 7px;
      background: #44ffac;
      border-radius: 999px;
      box-shadow: 0 0 12px rgba(68, 255, 172, 0.86);
    }

    .build-workspace {
      display: grid;
      grid-template-columns: minmax(0, 1.06fr) minmax(210px, 0.94fr);
      gap: 14px;
      min-height: 424px;
    }

    .editor,
    .preview {
      min-height: 424px;
      border-radius: 12px;
      overflow: hidden;
    }

    .editor {
      position: relative;
      background: #04070d;
      border: 1px solid rgba(94, 210, 255, 0.24);
      box-shadow: 0 22px 48px rgba(0, 0, 0, 0.26);
    }

    .editor::before {
      content: "";
      position: absolute;
      inset: 42px 0 0;
      background:
        linear-gradient(90deg, rgba(19,184,214,0.05) 1px, transparent 1px) 0 0 / 34px 100%,
        radial-gradient(circle at 52% 28%, rgba(19,184,214,0.16), transparent 42%);
      pointer-events: none;
      animation: editorGlow 5.4s ease-in-out infinite;
    }

    .editor-head,
    .preview-head {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 42px;
      padding: 0 13px;
      font-size: 11px;
      font-weight: 800;
    }

    .editor-head {
      color: #b8d2f1;
      background: #080d17;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .editor-tabs {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-width: 0;
    }

    .editor-tabs span {
      display: inline-flex;
      align-items: center;
      height: 24px;
      padding: 0 9px;
      color: #6f7f96;
      background: rgba(255,255,255,0.04);
      border-radius: 6px;
    }

    .editor-tabs span:first-child {
      color: #f5fbff;
      background: rgba(19,184,214,0.12);
    }

    .dots {
      display: inline-flex;
      gap: 5px;
    }

    .dots i {
      width: 8px;
      height: 8px;
      background: #bcc8d9;
      border-radius: 999px;
    }

    .dots i:nth-child(1) { background: #ff6170; }
    .dots i:nth-child(2) { background: #ffc95a; }
    .dots i:nth-child(3) { background: #48e59a; }

    .code-rain {
      position: absolute;
      inset: 42px 0 0;
      pointer-events: none;
      opacity: 0.22;
      background:
        repeating-linear-gradient(90deg, transparent 0 26px, rgba(72,255,181,0.13) 27px, transparent 28px),
        repeating-linear-gradient(180deg, transparent 0 31px, rgba(63,180,255,0.11) 32px, transparent 33px);
      mask-image: linear-gradient(180deg, transparent, #000 16%, #000 78%, transparent);
      animation: matrixDrift 7s linear infinite;
    }

    .code-body {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 36px minmax(0, 1fr);
      gap: 0;
      padding: 16px 14px 18px 0;
      font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
      font-size: 11px;
      line-height: 1.75;
    }

    .line-no {
      color: #3e5068;
      text-align: right;
      padding-right: 10px;
      user-select: none;
    }

    .code-line {
      min-width: 0;
      color: #dcecff;
      white-space: nowrap;
      overflow: hidden;
    }

    .code-line span {
      display: inline-block;
      max-width: 0;
      overflow: hidden;
      vertical-align: top;
      animation: writeCode 1.2s steps(48) forwards;
      animation-delay: var(--delay);
    }

    .code-line:nth-of-type(4n) { color: #8fffd3; }
    .code-line:nth-of-type(4n + 2) { color: #8fd6ff; }
    .code-line:nth-of-type(4n + 3) { color: #ffe08a; }

    .compile-bar {
      position: absolute;
      left: 14px;
      right: 14px;
      bottom: 14px;
      z-index: 2;
      display: grid;
      gap: 8px;
      padding: 10px;
      background: rgba(6, 13, 24, 0.86);
      border: 1px solid rgba(94,210,255,0.22);
      border-radius: 8px;
      color: #b7cbe5;
      font-size: 10px;
      font-weight: 780;
    }

    .compile-meter {
      height: 6px;
      background: rgba(255,255,255,0.08);
      border-radius: 999px;
      overflow: hidden;
    }

    .compile-meter::before {
      content: "";
      display: block;
      width: 0;
      height: 100%;
      background: linear-gradient(90deg, #13b8d6, #61ffb8);
      border-radius: inherit;
      animation: meterFill 5.8s ease forwards 1.4s;
    }

    .preview {
      position: relative;
      background: rgba(255, 255, 255, 0.96);
      border: 1px solid rgba(216, 224, 237, 0.78);
      box-shadow: 0 18px 50px rgba(5, 13, 30, 0.22);
    }

    .preview-head {
      color: #25324a;
      background: #f3f6fb;
      border-bottom: 1px solid var(--line);
    }

    .panel-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 46px;
      padding: 0 14px;
      color: #25324a;
      background: #f3f6fb;
      border-bottom: 1px solid var(--line);
      font-size: 12px;
      font-weight: 760;
    }

    .preview-body {
      padding: 14px;
    }

    .browser-bar {
      display: flex;
      align-items: center;
      gap: 8px;
      height: 28px;
      margin-bottom: 12px;
      padding: 0 10px;
      color: #8290a7;
      background: #e9eef6;
      border-radius: 999px;
      font-size: 11px;
    }

    .mini-site {
      display: grid;
      gap: 10px;
      position: relative;
    }

    .mini-site::before {
      content: "";
      position: absolute;
      inset: -6px -4px;
      z-index: 4;
      background:
        linear-gradient(180deg, transparent 0 44%, rgba(19,184,214,0.62) 47%, rgba(97,255,184,0.34) 50%, transparent 56% 100%);
      transform: translateY(-112%);
      pointer-events: none;
      animation: scanPreview 5.8s cubic-bezier(.18,.84,.22,1) forwards 1.5s;
      mix-blend-mode: multiply;
    }

    .mini-hero,
    .mini-section,
    .mini-row,
    .mini-card {
      opacity: 0;
      transform: translateY(12px);
      animation: rise 0.7s ease forwards;
    }

    .mini-hero {
      min-height: 112px;
      padding: 18px;
      color: var(--white);
      background: linear-gradient(135deg, #0b255e, #1671df);
      border-radius: 10px;
      animation-delay: 2.2s;
    }

    .mini-hero strong {
      display: block;
      width: 80%;
      font-size: 21px;
      line-height: 1.25;
    }

    .mini-hero span {
      display: block;
      width: 64%;
      margin-top: 10px;
      color: rgba(255, 255, 255, 0.82);
      font-size: 12px;
    }

    .mini-section {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      animation-delay: 3.1s;
    }

    .mini-card {
      min-height: 72px;
      padding: 10px;
      background: #f4f7fb;
      border: 1px solid var(--line);
      border-radius: 8px;
    }

    .mini-card b {
      display: block;
      color: var(--navy);
      font-size: 11px;
      line-height: 1.4;
    }

    .mini-card small {
      display: block;
      margin-top: 5px;
      color: var(--muted);
      font-size: 10px;
      line-height: 1.35;
    }

    .mini-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
      animation-delay: 3.9s;
    }

    .metric-card {
      padding: 12px;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 8px;
    }

    .metric-card span {
      color: var(--muted);
      font-size: 10px;
    }

    .metric-card strong {
      display: block;
      color: var(--green);
      font-size: 18px;
    }

    .build-status {
      display: grid;
      gap: 7px;
      margin-top: 12px;
      padding: 12px;
      background: #f5f8fc;
      border: 1px solid var(--line);
      border-radius: 8px;
      opacity: 0;
      animation: rise 0.7s ease forwards 4.7s;
    }

    .status-line {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      color: #26334d;
      font-size: 11px;
      font-weight: 700;
    }

    .status-line::after {
      content: "ready";
      color: var(--green);
      font-weight: 800;
    }

    section.content {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
      padding: 72px 0;
      border-top: 1px solid var(--line);
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 0.72fr) minmax(260px, 0.28fr);
      gap: 36px;
      align-items: end;
      margin-bottom: 28px;
    }

    .section-head h2 {
      margin: 0;
      color: var(--navy);
      font-size: clamp(30px, 4vw, 56px);
      line-height: 1.12;
      letter-spacing: 0;
    }

    .section-head p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
    }

    .services {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    .service-card {
      min-height: 210px;
      padding: 22px;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 8px;
      box-shadow: 0 10px 34px rgba(9, 22, 55, 0.06);
    }

    .service-card .num {
      color: var(--gold);
      font-size: 12px;
      font-weight: 900;
    }

    .service-card h3 {
      min-height: 58px;
      margin: 14px 0 12px;
      color: var(--navy);
      font-size: 21px;
      line-height: 1.35;
    }

    .service-card p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .works {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 28px;
      align-items: stretch;
    }

    .work-visual {
      min-height: 420px;
      padding: 22px;
      background: #0a1329;
      border-radius: 8px;
      box-shadow: var(--shadow);
    }

    .work-screen {
      height: 100%;
      min-height: 376px;
      padding: 18px;
      background: var(--white);
      border-radius: 8px;
    }

    .work-screen-top {
      height: 164px;
      background: linear-gradient(135deg, #12265f, #d5a145);
      border-radius: 8px;
    }

    .work-lines {
      display: grid;
      gap: 10px;
      margin-top: 18px;
    }

    .work-lines span {
      height: 12px;
      background: #e7edf6;
      border-radius: 999px;
    }

    .work-lines span:nth-child(1) {
      width: 82%;
    }

    .work-lines span:nth-child(2) {
      width: 56%;
    }

    .work-lines span:nth-child(3) {
      width: 70%;
    }

    .work-info {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 34px;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 8px;
    }

    .work-info h3 {
      margin: 0 0 14px;
      color: var(--navy);
      font-size: 30px;
      line-height: 1.25;
    }

    .work-info p {
      margin: 0 0 20px;
      color: var(--muted);
    }

    .tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 0 10px;
      color: var(--navy);
      background: #eaf3ff;
      border: 1px solid #cfe1ff;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 780;
    }

    .pricing {
      display: grid;
      grid-template-columns: 0.8fr 1.2fr;
      gap: 16px;
    }

    .price-card {
      padding: 28px;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 8px;
    }

    .price-card.featured {
      color: var(--white);
      background: linear-gradient(135deg, var(--navy), #154fc0);
      border-color: transparent;
    }

    .price-card h3 {
      margin: 0 0 12px;
      font-size: 22px;
    }

    .price-card.featured h3 {
      color: var(--white);
    }

    .price {
      margin: 0 0 14px;
      color: var(--navy);
      font-size: 40px;
      font-weight: 900;
      line-height: 1.1;
    }

    .price-card.featured .price,
    .price-card.featured p {
      color: var(--white);
    }

    .price small {
      font-size: 14px;
      font-weight: 700;
    }

    .price-card p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .cta-band {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto 72px;
      padding: 42px;
      color: var(--white);
      background: #071126;
      border-radius: 8px;
      box-shadow: var(--shadow);
    }

    .cta-band h2 {
      margin: 0 0 14px;
      color: var(--white);
      font-size: clamp(30px, 4vw, 54px);
      line-height: 1.15;
    }

    .cta-band p {
      max-width: 720px;
      margin: 0 0 24px;
      color: #d7e2f4;
      font-size: 17px;
    }

    .site-footer {
      position: relative;
      z-index: 2;
      margin-top: 48px;
      padding: 56px 20px 28px;
      color: #d7e2f4;
      background:
        linear-gradient(135deg, rgba(19, 184, 214, 0.12), transparent 34%),
        #050b17;
      border-top: 1px solid rgba(96, 219, 255, 0.2);
    }

    .site-footer-inner {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
      gap: 42px;
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
      align-items: start;
    }

    .site-footer-brand h2 {
      max-width: 760px;
      margin: 0;
      color: var(--white);
      font-size: clamp(26px, 3vw, 42px);
      line-height: 1.2;
      letter-spacing: 0;
    }

    .site-footer-brand p:not(.section-label) {
      max-width: 680px;
      margin: 18px 0 0;
      color: #b9c8df;
      font-size: 15px;
    }

    .site-footer-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 24px;
    }

    .site-footer .cta-button-secondary {
      color: var(--white);
      background: rgba(255, 255, 255, 0.06);
      border-color: rgba(255, 255, 255, 0.2);
    }

    .site-footer-links {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .site-footer-links div {
      min-width: 0;
      padding: 22px;
      background: rgba(255, 255, 255, 0.045);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
    }

    .site-footer-links h3 {
      margin: 0 0 14px;
      color: #7ee7ff;
      font-size: 12px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .site-footer-links a {
      display: block;
      min-height: 34px;
      color: #edf6ff;
      font-size: 14px;
      font-weight: 700;
      line-height: 1.4;
    }

    .site-footer-links a:hover {
      color: #7ee7ff;
    }

    .site-footer-bottom {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 10px 18px;
      width: min(1180px, calc(100% - 40px));
      margin: 36px auto 0;
      padding-top: 18px;
      color: #8fa0b8;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      font-size: 12px;
    }

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

    @keyframes blink {
      50% {
        opacity: 0.25;
        transform: translateY(-2px);
      }
    }

    @keyframes showTyping {
      0%,
      62% {
        opacity: 0;
      }
      66%,
      94% {
        opacity: 1;
      }
      100% {
        opacity: 0;
      }
    }

    @keyframes writeCode {
      to {
        max-width: 72ch;
      }
    }

    @keyframes matrixDrift {
      from {
        background-position: 0 -180px, 0 -220px;
      }
      to {
        background-position: 0 220px, 0 180px;
      }
    }

    @keyframes meterFill {
      to {
        width: 100%;
      }
    }

    @keyframes scanPreview {
      from {
        transform: translateY(-112%);
      }
      to {
        transform: translateY(112%);
      }
    }

    @keyframes editorGlow {
      0%,
      100% {
        opacity: 0.64;
      }
      50% {
        opacity: 1;
      }
    }

    @keyframes introType {
      to {
        max-width: 92ch;
      }
    }

    @keyframes chatIn {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes matrixIn {
      0% {
        opacity: 0;
      }
      22%,
      82% {
        opacity: .9;
      }
      100% {
        opacity: 0;
      }
    }

    @keyframes matrixFall {
      from {
        transform: translateX(110vw);
      }
      to {
        transform: translateX(-110vw);
      }
    }

    @keyframes ghostBuild {
      0% {
        opacity: 0;
        filter: blur(18px);
        clip-path: inset(0 0 100% 0);
      }
      36%,
      76% {
        opacity: 1;
        filter: blur(0);
        clip-path: inset(0 0 0 0);
      }
      100% {
        opacity: 0;
        transform: scale(.985);
      }
    }

    @keyframes introPulse {
      0% {
        opacity: 0;
      }
      28%,
      78% {
        opacity: 1;
      }
      100% {
        opacity: 0;
      }
    }

    @keyframes introExit {
      0%,
      86% {
        opacity: 1;
        visibility: visible;
      }
      100% {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
      }
    }

    @keyframes pageWake {
      from {
        opacity: 0;
        transform: translateY(24px);
        filter: blur(14px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
      }
    }

    @keyframes boardScan {
      0%,
      42% {
        transform: translateX(-120%);
      }
      74%,
      100% {
        transform: translateX(120%);
      }
    }

    @media (max-width: 980px) {
      .nav-links {
        display: none;
      }

      .hero-grid,
      .section-head,
      .works,
      .pricing {
        grid-template-columns: 1fr;
      }

      .hero-grid {
        gap: 28px;
      }

      .build-workspace {
        grid-template-columns: 1fr;
      }

      .editor,
      .preview {
        min-height: 360px;
      }

      .signal-board {
        min-height: 430px;
      }

      .services {
        grid-template-columns: repeat(2, 1fr);
      }

      .site-footer-inner {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 620px) {
      body {
        padding-bottom: 74px;
      }

      .nav,
      .hero,
      section.content,
      .cta-band {
        width: min(100% - 28px, 1180px);
      }

      .brand-mark {
        width: 138px;
      }

      .brand-text {
        display: none;
      }

      .hero {
        padding-top: 38px;
      }

      .hero-proof,
      .services,
      .mini-section,
      .mini-row {
        grid-template-columns: 1fr;
      }

      .site-footer {
        margin-top: 32px;
        padding: 42px 0 96px;
      }

      .site-footer-inner,
      .site-footer-bottom {
        width: min(100% - 28px, 1180px);
      }

      .site-footer-links {
        grid-template-columns: 1fr;
      }

      .site-footer-links div {
        padding: 18px;
      }

      .site-footer-actions .cta-button {
        width: 100%;
      }

      .ai-stage {
        padding: 10px;
        border-radius: 12px;
      }

      .build-request {
        grid-template-columns: 34px minmax(0, 1fr);
      }

      .request-status {
        grid-column: 2;
        justify-self: start;
      }

      .editor,
      .preview {
        min-height: auto;
      }

      .preview {
        display: none;
      }

      .codex-intro {
        grid-template-rows: 48px minmax(0, 1fr) 210px;
      }

      .intro-editor {
        grid-template-columns: 38px minmax(0, 1fr);
        padding: 18px 14px 8px 0;
      }

      .intro-code {
        font-size: 10px;
      }

      .matrix-field {
        inset: 48px 0 210px;
      }

      .homepage-ghost {
        inset: 16% 7% 30%;
      }

      .codex-chat {
        padding: 12px;
      }

      .chat-bubble {
        font-size: 11px;
      }

      .hero-cta,
      .section-cta {
        justify-content: stretch;
      }

      .hero-cta {
        margin-top: 22px;
      }

      .section-cta {
        width: min(100% - 28px, 1180px);
        margin-top: 28px;
      }

      .cta-button {
        flex: 1 1 150px;
        min-height: 48px;
        padding: 0 14px;
        font-size: 13px;
      }

      /* スクロールヘッダーは下部固定バーと重複するため非表示 */
      .floating-header {
        display: none;
      }

      .mobile-sticky-cta {
        position: fixed;
        right: 10px;
        bottom: 10px;
        left: 10px;
        z-index: 80;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 8px;
        background: rgba(2, 5, 9, .82);
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 8px;
        box-shadow: 0 18px 44px rgba(0,0,0,.38);
        backdrop-filter: blur(16px);
      }

      .mobile-sticky-cta a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        color: #021211;
        background: linear-gradient(135deg, #67ffcf, #60dbff);
        border-radius: 6px;
        font-size: 13px;
        font-weight: 950;
        line-height: 1;
        text-decoration: none;
      }

      .mobile-sticky-cta a + a {
        color: #effcff;
        background: rgba(255,255,255,.08);
        border: 1px solid rgba(255,255,255,.16);
      }

      .signal-board {
        min-height: 390px;
        padding: 20px;
      }

      .signal-metrics {
        grid-template-columns: 1fr;
      }

      .frame-stage {
        width: min(100% - 20px, 1440px);
        min-height: calc(100vh - 20px);
        margin: 10px auto;
      }

      .frame-nav {
        top: 30px;
        right: 28px;
        left: 28px;
        justify-content: center;
        gap: 14px;
        font-size: 10px;
        flex-wrap: wrap;
      }

      .frame-center {
        padding-top: 80px;
        padding-bottom: 100px;
      }

      .frame-center h1 {
        font-size: clamp(48px, 16vw, 96px);
      }

      .frame-card {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        top: auto;
        transform: none;
        width: min(100% - 56px, 360px);
        margin: 10px auto 0;
      }

      .frame-card-left {
        margin-top: 26px;
      }

      .frame-card-right {
        display: none;
      }

      .scroll-cue {
        bottom: 84px;
      }

      .scroll-section {
        width: min(100% - 28px, 1240px);
        min-height: auto;
        padding: 72px 0;
      }

      .section-grid,
      .price-layout,
      .works-panel,
      .contact-panel,
      .form-grid {
        grid-template-columns: 1fr;
      }

      .service-modules,
      .strength-grid,
      .outcome-strip,
      .tech-use-list,
      .tech-cloud,
      .flow-steps,
      .company-panel {
        grid-template-columns: 1fr;
      }

      .tech-stack-accessible-list {
        grid-template-columns: 1fr;
      }

      .detail-header {
        width: min(100% - 28px, 1180px);
        align-items: flex-start;
        flex-direction: column;
      }

      .detail-nav {
        justify-content: flex-start;
      }

      .detail-hero,
      .detail-section,
      .detail-final-cta {
        width: min(100% - 28px, 1180px);
      }

      .detail-hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 48px 0;
      }

      .detail-section {
        grid-template-columns: 1fr;
        padding: 52px 0;
      }

      .detail-card-grid,
      .scope-columns,
      .terms-list,
      .detail-flow {
        grid-template-columns: 1fr;
      }

      .tech-stack-board {
        min-height: auto;
        padding: 18px;
        display: block;
      }

      .tech-stack-board::before,
      .tech-stack-board::after {
        display: none;
      }

      .tech-ticker-copy {
        position: relative;
        min-height: 132px;
        padding: 22px;
        margin-bottom: 14px;
        background: rgba(2,5,9,.72);
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 8px;
      }

      .tech-ticker-copy span {
        font-size: 30px;
      }

      .tech-ticker-copy b {
        font-size: 18px;
      }

      .tech-ticker-window {
        overflow: visible;
      }

      .tech-ticker-track {
        position: static;
        min-width: 0;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        transform: none;
        animation: none;
      }

      .tech-ticker-set {
        display: contents;
      }

      .tech-ticker-set[aria-hidden="true"] {
        display: none;
      }

      .tech-ticker-group {
        display: contents;
      }

      .tech-ticker-category {
        grid-column: 1 / -1;
        margin: 14px 0 2px;
        font-size: 14px;
      }

      .tech-logo-card {
        width: 100%;
        min-width: 0;
        min-height: 62px;
        transform: none;
        animation: none;
        font-size: 11px;
      }

      .tech-ticker-toggle {
        display: none;
      }

      .work-preview {
        min-height: 220px;
      }

      .section-head h2 {
        font-size: 32px;
      }

      .service-card {
        min-height: auto;
      }

      .service-card h3 {
        min-height: auto;
      }

      .work-info,
      .price-card,
      .cta-band {
        padding: 24px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
      }

      .reveal {
        opacity: 1;
        transform: none;
        filter: none;
      }

      .tech-ticker-track {
        animation: none !important;
        transform: none !important;
      }
    }
  
