:root {
  --ink: #111317;
  --muted: #697077;
  --paper: #f6f3ee;
  --soft: #e5e1d8;
  --line: rgba(17, 19, 23, 0.13);
  --white: #fffaf2;
  --cyan: #67d5dd;
  --green: #b8f06a;
  --amber: #d7a84f;
  --header-height-expanded: 76px;
  --header-height-compact: 58px;
  --header-current-height: var(--header-height-expanded);
  --anchor-offset: 104px;
  --radius: 8px;
  color-scheme: light;
  font-family:
    Inter, "Neue Haas Grotesk Text", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN",
    "Yu Gothic", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

.ambient-layer {
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  position: fixed;
  transform: translate3d(var(--ambient-layer-x, 0), var(--ambient-layer-y, 0), 0);
  transition: transform 420ms ease-out;
  z-index: 0;
}

.ambient-layer::before {
  background:
    radial-gradient(circle at 18% 28%, rgba(103, 213, 221, 0.18), transparent 18%),
    radial-gradient(circle at 82% 68%, rgba(184, 240, 106, 0.14), transparent 17%),
    linear-gradient(90deg, rgba(17, 19, 23, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 19, 23, 0.044) 1px, transparent 1px);
  background-size:
    100% 100%,
    100% 100%,
    68px 68px,
    68px 68px;
  content: "";
  inset: -20%;
  opacity: 0.78;
  position: absolute;
  transform: rotate(-8deg);
}

.ambient-object {
  animation:
    ambient-drift var(--ambient-duration, 18s) ease-in-out infinite alternate,
    ambient-pulse var(--ambient-pulse, 7s) ease-in-out infinite alternate;
  filter: drop-shadow(0 10px 26px rgba(47, 121, 129, 0.1));
  left: var(--ambient-x);
  opacity: var(--ambient-opacity, 0.22);
  position: absolute;
  top: var(--ambient-y);
  transform: rotate(var(--ambient-rotate, 0deg));
}

.ambient-object.line {
  background: linear-gradient(90deg, transparent, rgba(47, 121, 129, 0.62), rgba(103, 213, 221, 0.5), rgba(184, 240, 106, 0.38), transparent);
  height: 2px;
  width: var(--ambient-size, 180px);
}

.ambient-object.node {
  background: rgba(103, 213, 221, 0.4);
  border: 1px solid rgba(47, 121, 129, 0.24);
  border-radius: 50%;
  box-shadow: 0 0 28px rgba(103, 213, 221, 0.36);
  height: var(--ambient-size, 12px);
  width: var(--ambient-size, 12px);
}

.ambient-object.ring {
  border: 1px solid rgba(47, 121, 129, 0.2);
  border-radius: 50%;
  box-shadow:
    inset 0 0 28px rgba(103, 213, 221, 0.12),
    0 0 26px rgba(103, 213, 221, 0.1);
  height: var(--ambient-size, 96px);
  width: var(--ambient-size, 96px);
}

@keyframes ambient-drift {
  from {
    transform: translate3d(0, 0, 0) rotate(var(--ambient-rotate, 0deg)) scale(1);
  }
  to {
    transform: translate3d(var(--ambient-dx, 28px), var(--ambient-dy, -22px), 0)
      rotate(calc(var(--ambient-rotate, 0deg) + var(--ambient-spin, 8deg))) scale(var(--ambient-scale, 1.04));
  }
}

@keyframes ambient-pulse {
  from {
    opacity: calc(var(--ambient-opacity, 0.22) * 0.72);
  }
  to {
    opacity: var(--ambient-opacity, 0.22);
  }
}

.custom-cursor-ready {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 42 42'%3E%3Cdefs%3E%3Cfilter id='g' x='-40%25' y='-40%25' width='180%25' height='180%25'%3E%3CfeDropShadow dx='0' dy='0' stdDeviation='2.8' flood-color='%2349abff' flood-opacity='.62'/%3E%3CfeDropShadow dx='0' dy='0' stdDeviation='1.1' flood-color='%23ffffff' flood-opacity='.86'/%3E%3C/filter%3E%3C/defs%3E%3Cpath filter='url(%23g)' fill='%2312151a' stroke='%23fffdf5' stroke-width='4.3' stroke-linejoin='round' d='M9.3 6.5 33.1 17.2c2.8 1.3 2.3 5.4-.8 5.9l-9 1.4-5.6 8.1c-1.8 2.6-5.8 1.4-5.9-1.8L9.3 6.5Z'/%3E%3C/svg%3E")
      6 5,
    auto;
}

.custom-cursor-ready a,
.custom-cursor-ready button,
.custom-cursor-ready .work-card,
.custom-cursor-ready .service-row,
.custom-cursor-ready .business-tool-card {
  cursor: pointer;
}

@media (max-width: 980px) {
  .custom-cursor-ready,
  .custom-cursor-ready a,
  .custom-cursor-ready button {
    cursor: auto;
  }
}

.scene-ready .scroll-scene {
  filter: blur(var(--scene-blur, 0));
  opacity: var(--scene-opacity, 1);
  transform: translateY(var(--scene-y, 0)) scale(var(--scene-scale, 1));
  will-change: opacity, transform, filter;
}

.scene-ready .scroll-scene > * {
  transform: translateY(calc(var(--scene-y, 0px) * 0.22));
}

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

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

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(17, 19, 23, 0.58);
  border-bottom: 1px solid rgba(255, 250, 242, 0.12);
  color: var(--paper);
  display: flex;
  height: var(--header-current-height);
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(20px, 4vw, 64px);
  position: fixed;
  right: 0;
  top: 0;
  transition:
    background 360ms ease,
    border-color 360ms ease,
    box-shadow 360ms ease,
    height 420ms cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 20;
}

.header-compact {
  --header-current-height: var(--header-height-compact);
}

.header-compact .site-header {
  background: rgba(17, 19, 23, 0.74);
  border-bottom-color: rgba(255, 250, 242, 0.1);
  box-shadow: 0 14px 42px rgba(17, 19, 23, 0.14);
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0;
}

.brand-mark {
  align-items: center;
  background: var(--paper);
  border-radius: 50%;
  color: var(--ink);
  display: inline-flex;
  font-size: 26px;
  font-weight: 950;
  height: 32px;
  justify-content: center;
  line-height: 1;
  width: 32px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(16px, 2vw, 30px);
  font-size: 13px;
  font-weight: 700;
  transition: font-size 360ms ease;
}

.header-compact .site-nav {
  font-size: 12px;
}

.site-nav a {
  color: rgba(255, 250, 242, 0.72);
  position: relative;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-current {
  color: var(--paper);
}

.site-nav a[href^="#"]:not(.nav-cta) {
  border-radius: 999px;
  padding: 9px 0;
  transition:
    background 180ms ease,
    color 180ms ease,
    padding 360ms ease;
}

.header-compact .site-nav a[href^="#"]:not(.nav-cta) {
  padding-bottom: 7px;
  padding-top: 7px;
}

.site-nav a[href^="#"]:not(.nav-cta).is-current {
  background: rgba(255, 250, 242, 0.12);
  padding-left: 13px;
  padding-right: 13px;
}

.site-nav a[href^="#"]:not(.nav-cta).is-current::after {
  background: var(--green);
  border-radius: 999px;
  bottom: 3px;
  content: "";
  height: 3px;
  left: 14px;
  position: absolute;
  right: 14px;
}

.site-nav .nav-cta.is-current {
  box-shadow: 0 0 0 3px rgba(184, 240, 106, 0.36);
}

.nav-cta {
  background: var(--paper);
  border-radius: 999px;
  color: var(--ink) !important;
  padding: 11px 16px;
}

.menu-button {
  background: transparent;
  border: 0;
  display: none;
  height: 40px;
  padding: 0;
  position: relative;
  width: 40px;
}

.menu-button span {
  background: var(--paper);
  display: block;
  height: 2px;
  left: 9px;
  position: absolute;
  width: 22px;
}

.menu-button span:first-child {
  top: 15px;
}

.menu-button span:last-child {
  top: 23px;
}

.section-pad {
  padding: clamp(88px, 11vw, 152px) clamp(20px, 4vw, 64px);
}

.scroll-scene,
.detail-page,
.private-page {
  scroll-margin-top: var(--anchor-offset);
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(32px, 5vw, 72px);
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.15fr);
  min-height: 100vh;
  padding-top: 116px;
}

.hero-movie {
  background: var(--ink);
  color: var(--paper);
  isolation: isolate;
  overflow: hidden;
  position: relative;
}

.hero-background {
  background:
    linear-gradient(90deg, rgba(17, 19, 23, 0.88), rgba(17, 19, 23, 0.54) 48%, rgba(17, 19, 23, 0.68)),
    url("./assets/hero-concept.png") center / cover no-repeat;
  inset: 0;
  position: absolute;
  z-index: -2;
}

.hero-bg-video {
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  width: 100%;
}

.hero-film {
  background:
    linear-gradient(180deg, rgba(17, 19, 23, 0.2), rgba(17, 19, 23, 0.84)),
    radial-gradient(circle at 78% 28%, rgba(103, 213, 221, 0.24), transparent 28%),
    radial-gradient(circle at 86% 76%, rgba(184, 240, 106, 0.2), transparent 28%);
  inset: 0;
  position: absolute;
}

.hero-film::after {
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 250, 242, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  inset: 0;
  opacity: 0.32;
  position: absolute;
}

.hero-copy,
.hero-motion-panel {
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.hero-movie .eyebrow {
  color: rgba(255, 250, 242, 0.66);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.05;
  margin-bottom: 24px;
  max-width: 720px;
}

.hero-copy h1 span {
  display: block;
}

h2 {
  font-size: clamp(32px, 4.6vw, 72px);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.03;
  margin-bottom: 0;
}

h3 {
  font-size: 20px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.hero-lead {
  color: rgba(255, 250, 242, 0.78);
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.9;
  max-width: 650px;
}

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

.button {
  align-items: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
}

.button.primary {
  background: var(--ink);
  color: var(--paper);
}

.hero-movie .button.primary {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--ink);
}

.button.ghost {
  background: rgba(255, 250, 242, 0.44);
}

.hero-movie .button.ghost {
  border-color: rgba(255, 250, 242, 0.46);
  color: var(--paper);
}

.hero-motion-panel {
  align-self: end;
  border: 1px solid rgba(255, 250, 242, 0.14);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  justify-self: end;
  max-width: 540px;
  overflow: hidden;
  padding: 18px;
  width: min(100%, 540px);
}

.hero-motion-panel::before {
  backdrop-filter: blur(20px);
  background: rgba(17, 19, 23, 0.36);
  border-radius: inherit;
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
}

.hero-motion-panel::after {
  animation: panel-scan 6.8s ease-in-out infinite;
  background: linear-gradient(120deg, transparent, rgba(103, 213, 221, 0.16), transparent);
  content: "";
  inset: -40%;
  position: absolute;
  transform: translateX(-60%) rotate(12deg);
  z-index: -1;
}

.signal-card {
  background: rgba(17, 19, 23, 0.74);
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: 8px;
  color: var(--paper);
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  padding: 16px 18px;
}

.signal-card span {
  color: rgba(255, 250, 242, 0.68);
  font-size: 12px;
  font-weight: 700;
}

.signal-card strong {
  font-size: 15px;
}

.agent-flow {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}

.agent-flow::before {
  background: linear-gradient(90deg, var(--cyan), var(--green));
  content: "";
  height: 2px;
  left: 15%;
  opacity: 0.5;
  position: absolute;
  right: 15%;
  top: auto;
  bottom: 18px;
}

.agent-flow::after {
  animation: agent-token 4.8s cubic-bezier(0.45, 0, 0.2, 1) infinite;
  background: var(--paper);
  border-radius: 50%;
  box-shadow:
    0 0 0 4px rgba(103, 213, 221, 0.16),
    0 0 22px rgba(103, 213, 221, 0.58);
  content: "";
  height: 8px;
  left: 12%;
  position: absolute;
  top: auto;
  bottom: 14px;
  transform: translate(-50%, -50%);
  width: 8px;
}

.agent-node {
  background: rgba(255, 250, 242, 0.1);
  border: 1px solid rgba(255, 250, 242, 0.14);
  border-radius: 8px;
  min-height: 76px;
  padding: 13px 13px 30px;
  position: relative;
  z-index: 1;
}

.agent-node span,
.motion-dashboard span {
  color: rgba(255, 250, 242, 0.54);
  display: block;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.agent-node strong {
  color: var(--paper);
  display: block;
  font-size: 13px;
  line-height: 1.45;
}

.agent-node:nth-child(1) {
  animation: node-focus 4.8s ease-in-out infinite;
}

.agent-node:nth-child(2) {
  animation: node-focus 4.8s ease-in-out infinite 1.55s;
}

.agent-node:nth-child(3) {
  animation: node-focus 4.8s ease-in-out infinite 3.1s;
}

.motion-stack {
  display: grid;
  gap: 8px;
}

.motion-stack span {
  align-items: center;
  background: rgba(255, 250, 242, 0.08);
  border: 1px solid rgba(255, 250, 242, 0.12);
  border-radius: 8px;
  color: rgba(255, 250, 242, 0.76);
  display: flex;
  font-size: 12px;
  font-weight: 800;
  height: 44px;
  overflow: hidden;
  padding: 0 14px 0 42px;
  position: relative;
}

.motion-stack span::before {
  animation: log-dot 3.6s ease-in-out infinite;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(103, 213, 221, 0.72);
  content: "";
  height: 9px;
  left: 17px;
  position: absolute;
  width: 9px;
}

.motion-stack span::after {
  animation: drift 3.8s ease-in-out infinite;
  background: linear-gradient(90deg, transparent, rgba(103, 213, 221, 0.22), rgba(184, 240, 106, 0.12), transparent);
  content: "";
  inset: 0;
  position: absolute;
  transform: translateX(-120%);
}

.motion-stack span:nth-child(2)::after {
  animation-delay: 0.4s;
}

.motion-stack span:nth-child(3)::after {
  animation-delay: 0.8s;
}

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

.motion-dashboard div {
  animation: output-rise 5.2s ease-in-out infinite;
  background: rgba(255, 250, 242, 0.12);
  border: 1px solid rgba(255, 250, 242, 0.12);
  border-radius: 8px;
  min-height: 118px;
  padding: 15px;
  position: relative;
}

.motion-dashboard div::before {
  background: linear-gradient(90deg, var(--green), var(--cyan));
  border-radius: 999px;
  content: "";
  height: 4px;
  left: 15px;
  position: absolute;
  right: 42%;
  top: 12px;
}

.motion-dashboard div:nth-child(2) {
  animation-delay: 0.25s;
}

.motion-dashboard div:nth-child(3) {
  animation-delay: 0.5s;
}

.motion-dashboard div:nth-child(4) {
  animation-delay: 0.75s;
}

.motion-dashboard div:nth-child(2)::before,
.motion-dashboard div:nth-child(3)::before {
  background: linear-gradient(90deg, var(--cyan), var(--green));
  right: 25%;
}

.motion-dashboard strong {
  color: var(--paper);
  display: block;
  font-size: 14px;
  line-height: 1.35;
  margin-bottom: 8px;
  padding-top: 14px;
}

.motion-dashboard small {
  color: rgba(255, 250, 242, 0.58);
  display: block;
  font-size: 11px;
  line-height: 1.55;
}

@keyframes drift {
  0% {
    transform: translateX(-120%);
  }
  58%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes panel-scan {
  0%,
  34% {
    transform: translateX(-62%) rotate(12deg);
  }
  68%,
  100% {
    transform: translateX(62%) rotate(12deg);
  }
}

@keyframes agent-token {
  0%,
  18% {
    left: 12%;
  }
  38%,
  55% {
    left: 50%;
  }
  76%,
  100% {
    left: 88%;
  }
}

@keyframes node-focus {
  0%,
  100% {
    border-color: rgba(255, 250, 242, 0.14);
    box-shadow: none;
    transform: translateY(0);
  }
  24%,
  48% {
    border-color: rgba(103, 213, 221, 0.48);
    box-shadow: 0 0 24px rgba(103, 213, 221, 0.16);
    transform: translateY(-2px);
  }
}

@keyframes log-dot {
  0%,
  100% {
    background: var(--cyan);
    transform: scale(0.82);
  }
  50% {
    background: var(--green);
    transform: scale(1.12);
  }
}

@keyframes output-rise {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.metric-strip {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 12px;
}

.metric-strip span {
  background: rgba(255, 250, 242, 0.42);
  border-radius: 999px;
  height: 4px;
  overflow: hidden;
  position: relative;
}

.metric-strip span::after {
  animation: scan 2.8s ease-in-out infinite;
  background: var(--green);
  content: "";
  inset: 0;
  position: absolute;
  transform: translateX(-100%);
}

.metric-strip span:nth-child(2)::after {
  animation-delay: 0.25s;
}

.metric-strip span:nth-child(3)::after {
  animation-delay: 0.45s;
}

.metric-strip span:nth-child(4)::after {
  animation-delay: 0.7s;
}

@keyframes scan {
  0% {
    transform: translateX(-100%);
  }
  45%,
  100% {
    transform: translateX(100%);
  }
}

.concept-band {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(84px, 12vw, 160px) clamp(20px, 4vw, 64px);
}

.concept-statement {
  max-width: 1040px;
}

.concept-band .eyebrow {
  color: rgba(255, 250, 242, 0.58);
}

.concept-grid {
  border-top: 1px solid rgba(255, 250, 242, 0.16);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(48px, 7vw, 92px);
}

.concept-grid article {
  border-right: 1px solid rgba(255, 250, 242, 0.16);
  min-height: 240px;
  padding: 28px 28px 0 0;
  position: relative;
}

.concept-grid article:last-child {
  border-right: 0;
}

.concept-grid span,
.service-row > span {
  color: var(--green);
  display: inline-block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 42px;
}

.concept-grid p {
  color: rgba(255, 250, 242, 0.66);
  line-height: 1.8;
}

.concept-visual {
  height: 58px;
  pointer-events: none;
  position: absolute;
  right: 28px;
  top: 26px;
  width: 72px;
}

.define-visual i {
  animation: document-slide 4.8s ease-in-out infinite;
  background:
    linear-gradient(90deg, rgba(103, 213, 221, 0.55), transparent 64%) 12px 15px / 34px 2px no-repeat,
    linear-gradient(90deg, rgba(255, 250, 242, 0.32), transparent 68%) 12px 24px / 42px 2px no-repeat,
    rgba(255, 250, 242, 0.09);
  border: 1px solid rgba(255, 250, 242, 0.22);
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(103, 213, 221, 0.08);
  height: 44px;
  position: absolute;
  right: 0;
  top: 7px;
  transform: translateX(30px);
  width: 54px;
}

.define-visual i:nth-child(2) {
  animation-delay: 0.45s;
  right: 9px;
  top: 3px;
}

.define-visual i:nth-child(3) {
  animation-delay: 0.9s;
  right: 18px;
  top: -1px;
}

.build-visual {
  align-items: center;
  display: flex;
  justify-content: center;
}

.build-visual i {
  animation: gear-turn 5.6s cubic-bezier(0.65, 0, 0.35, 1) infinite;
  aspect-ratio: 1;
  background:
    radial-gradient(circle, var(--ink) 0 30%, transparent 31%),
    conic-gradient(
      from 0deg,
      rgba(184, 240, 106, 0.9) 0 12deg,
      transparent 12deg 34deg,
      rgba(103, 213, 221, 0.9) 34deg 48deg,
      transparent 48deg 78deg,
      rgba(184, 240, 106, 0.9) 78deg 92deg,
      transparent 92deg 124deg,
      rgba(103, 213, 221, 0.9) 124deg 138deg,
      transparent 138deg 168deg,
      rgba(184, 240, 106, 0.9) 168deg 182deg,
      transparent 182deg 214deg,
      rgba(103, 213, 221, 0.9) 214deg 228deg,
      transparent 228deg 258deg,
      rgba(184, 240, 106, 0.9) 258deg 272deg,
      transparent 272deg 304deg,
      rgba(103, 213, 221, 0.9) 304deg 318deg,
      transparent 318deg 360deg
    );
  border-radius: 50%;
  box-shadow: 0 0 28px rgba(103, 213, 221, 0.18);
  width: 46px;
}

.operate-visual {
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-radius: 999px;
}

.operate-visual::before {
  animation: operate-sweep 4.2s ease-in-out infinite;
  background: linear-gradient(90deg, transparent, rgba(103, 213, 221, 0.55), transparent);
  content: "";
  height: 2px;
  left: 11px;
  position: absolute;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
}

.operate-visual i {
  animation: operate-pulse 3.6s ease-in-out infinite;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(184, 240, 106, 0.45);
  height: 9px;
  position: absolute;
  width: 9px;
}

.operate-visual i:nth-child(1) {
  left: 13px;
  top: 24px;
}

.operate-visual i:nth-child(2) {
  animation-delay: 0.45s;
  background: var(--cyan);
  left: 32px;
  top: 14px;
}

.operate-visual i:nth-child(3) {
  animation-delay: 0.9s;
  left: 51px;
  top: 24px;
}

@keyframes document-slide {
  0%,
  18% {
    opacity: 0;
    transform: translateX(24px) translateY(6px) rotate(4deg);
  }
  34%,
  78% {
    opacity: 1;
    transform: translateX(0) translateY(0) rotate(0deg);
  }
  100% {
    opacity: 0.18;
    transform: translateX(-10px) translateY(-2px) rotate(-2deg);
  }
}

@keyframes gear-turn {
  0%,
  14% {
    transform: rotate(0deg);
  }
  44% {
    transform: rotate(320deg);
  }
  64% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(720deg);
  }
}

@keyframes operate-pulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.82);
  }
  45%,
  62% {
    opacity: 1;
    transform: scale(1.18);
  }
}

@keyframes operate-sweep {
  0%,
  100% {
    opacity: 0.25;
    transform: translateY(-50%) scaleX(0.42);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) scaleX(1);
  }
}

.split-section {
  align-items: start;
  display: grid;
  gap: clamp(44px, 7vw, 110px);
  grid-template-columns: minmax(260px, 0.9fr) minmax(420px, 1.25fr);
}

.section-heading {
  max-width: 720px;
}

.section-heading.wide {
  max-width: 1080px;
}

.service-list {
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.service-row {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: 54px minmax(0, 1fr);
  overflow: hidden;
  padding: 28px 0;
}

.scene-ready #services .service-row > span,
.scene-ready #services .service-row > div {
  opacity: 0;
  transform: translateX(72px);
  transition:
    opacity 520ms ease,
    transform 820ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scene-ready #services.is-services-active .service-row > span,
.scene-ready #services.is-services-active .service-row > div {
  opacity: 1;
  transform: translateX(0);
}

.scene-ready #services .service-row:nth-child(2) > span,
.scene-ready #services .service-row:nth-child(2) > div {
  transition-delay: 120ms;
}

.scene-ready #services .service-row:nth-child(3) > span,
.scene-ready #services .service-row:nth-child(3) > div {
  transition-delay: 240ms;
}

.scene-ready #services .service-row:nth-child(4) > span,
.scene-ready #services .service-row:nth-child(4) > div {
  transition-delay: 360ms;
}

.service-row:hover h3,
.service-row:focus-visible h3 {
  color: #2f7981;
}

.service-row p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 0;
}

.ai-process-section {
  padding-top: clamp(42px, 7vw, 96px);
}

.ai-process-section .section-heading p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.85;
  max-width: 860px;
}

.ai-step-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: clamp(34px, 5vw, 70px);
  position: relative;
}

.ai-step-card {
  background: rgba(255, 250, 242, 0.78);
  border: 1px solid rgba(17, 19, 23, 0.09);
  border-radius: 8px;
  min-height: 310px;
  padding: 22px;
  position: relative;
  transition:
    background 360ms ease,
    border-color 360ms ease,
    transform 360ms ease;
  z-index: 1;
}

.ai-step-card::after {
  background: linear-gradient(90deg, var(--cyan), var(--green));
  bottom: 0;
  content: "";
  height: 3px;
  left: 22px;
  position: absolute;
  right: 22px;
  transition:
    left 360ms ease,
    right 360ms ease,
    opacity 360ms ease;
}

.ai-step-card span {
  color: #2f7981;
  display: inline-block;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 56px;
}

.ai-step-card h3 {
  font-size: clamp(20px, 1.8vw, 26px);
}

.ai-step-card.is-active {
  background: rgba(255, 250, 242, 0.92);
  border-color: rgba(47, 121, 129, 0.24);
  transform: translateY(-4px);
}

.ai-step-card.is-active::after {
  left: 14px;
  opacity: 1;
  right: 14px;
}

.ai-step-focus {
  border: 2px solid rgba(47, 121, 129, 0.82);
  border-radius: 8px;
  box-shadow:
    0 0 0 1px rgba(255, 250, 242, 0.86),
    0 16px 42px rgba(47, 121, 129, 0.16),
    0 0 34px rgba(103, 213, 221, 0.22);
  height: var(--focus-h, 0);
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: translate3d(var(--focus-x, 0), var(--focus-y, 0), 0);
  transition:
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
    width 760ms cubic-bezier(0.22, 1, 0.36, 1),
    height 760ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 260ms ease;
  width: var(--focus-w, 0);
  z-index: 3;
}

.ai-step-card p,
.ai-process-note p {
  color: var(--muted);
  line-height: 1.75;
}

.ai-process-note {
  border-top: 1px solid var(--line);
  margin-top: 24px;
  padding-top: 20px;
}

.works-section {
  padding-top: 40px;
}

.section-lead {
  color: var(--muted);
  line-height: 1.85;
  margin-top: 24px;
  max-width: 820px;
}

.works-block {
  margin-top: clamp(34px, 5vw, 70px);
}

.works-block + .works-block {
  margin-top: clamp(48px, 7vw, 92px);
}

.works-block-heading {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(260px, 0.8fr) minmax(340px, 1fr);
  margin-bottom: 22px;
  padding-top: 22px;
}

.works-block-heading.compact {
  grid-template-columns: 1fr;
}

.works-block-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.works-block-heading h3 {
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.08;
  margin-bottom: 0;
  max-width: 620px;
}

.works-block-heading p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 0;
}

.business-tools-grid,
.finance-service-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.business-tool-card {
  background: var(--ink);
  border: 1px solid rgba(17, 19, 23, 0.12);
  border-radius: 8px;
  color: var(--paper);
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  isolation: isolate;
  min-height: clamp(360px, 32vw, 460px);
  overflow: hidden;
  position: relative;
}

.business-tools-grid .business-tool-card,
.finance-service-grid .business-tool-card {
  height: clamp(190px, 18vw, 240px);
  min-height: clamp(190px, 18vw, 240px);
}

.business-tools-grid .business-tool-card .work-copy,
.finance-service-grid .business-tool-card .work-copy {
  padding: 18px;
  width: min(62%, 250px);
}

.business-tools-grid .business-tool-card .work-copy h3,
.finance-service-grid .business-tool-card .work-copy h3 {
  font-size: clamp(24px, 2.4vw, 34px);
  margin-bottom: 10px;
}

.business-tools-grid .business-tool-card .work-copy span,
.finance-service-grid .business-tool-card .work-copy span {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  font-size: 13px;
  line-height: 1.55;
  overflow: hidden;
}

.business-tools-grid .business-tool-card .work-copy em,
.finance-service-grid .business-tool-card .work-copy em {
  margin-top: 14px;
  overflow-wrap: anywhere;
  padding-top: 10px;
}

.business-tool-card::after {
  background: linear-gradient(120deg, transparent, rgba(255, 250, 242, 0.16), transparent);
  content: "";
  inset: -45%;
  opacity: 0;
  position: absolute;
  transform: translateX(-28%) rotate(14deg);
  transition:
    opacity 260ms ease,
    transform 520ms ease;
}

.business-tool-card:hover::after,
.business-tool-card:focus-visible::after {
  opacity: 1;
  transform: translateX(34%) rotate(14deg);
}

.business-tool-card .work-copy {
  align-self: stretch;
  background:
    linear-gradient(90deg, rgba(17, 19, 23, 0.02), rgba(17, 19, 23, 0.82) 22%, rgba(17, 19, 23, 0.94));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  justify-self: end;
  padding: 24px;
  position: relative;
  transform: translateX(0);
  width: min(66%, 320px);
  z-index: 1;
}

.business-tool-card .work-copy p,
.business-tool-card .work-copy span {
  color: rgba(255, 250, 242, 0.62);
}

.business-tool-card .work-copy h3 {
  color: var(--paper);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 0.98;
  margin-bottom: 16px;
}

.business-tool-card .work-copy em {
  border-top: 1px solid rgba(255, 250, 242, 0.14);
  color: rgba(255, 250, 242, 0.48);
  display: block;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  margin-top: 24px;
  padding-top: 14px;
}

.tool-visual {
  inset: 0;
  min-height: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.tool-visual img {
  filter: saturate(0.92) contrast(1.04);
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  transform: scale(1.02);
  width: 100%;
}

.tool-visual::before {
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 250, 242, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  inset: 0;
  opacity: 0.45;
  position: absolute;
  z-index: 1;
}

.thumbnail-visual::before {
  background:
    linear-gradient(90deg, rgba(17, 19, 23, 0.12), transparent 36%, rgba(17, 19, 23, 0.5)),
    linear-gradient(180deg, rgba(17, 19, 23, 0.08), transparent 42%, rgba(17, 19, 23, 0.52));
  opacity: 1;
}

.thumbnail-visual::after {
  display: none;
}

.flechr-visual img {
  object-position: 42% center;
}

.whygraph-visual img {
  object-position: center;
}

.nasnavi-visual img {
  object-position: 38% center;
}

.market-ticker-visual {
  background:
    radial-gradient(circle at 72% 26%, rgba(184, 240, 106, 0.22), transparent 25%),
    radial-gradient(circle at 28% 72%, rgba(103, 213, 221, 0.18), transparent 28%),
    #15191f;
}

.market-ticker-visual .ticker-strip,
.market-ticker-visual .market-line,
.market-ticker-visual .quote-panel,
.market-ticker-visual .price-chip {
  position: absolute;
  z-index: 2;
}

.market-ticker-visual .ticker-strip {
  display: flex;
  gap: 8px;
  left: 22px;
  right: 24px;
  top: 24px;
}

.market-ticker-visual .ticker-strip b {
  background: rgba(255, 250, 242, 0.1);
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-radius: 999px;
  color: rgba(255, 250, 242, 0.68);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
  padding: 7px 9px;
}

.market-ticker-visual .market-line {
  border-bottom: 1px solid rgba(255, 250, 242, 0.12);
  height: 82px;
  left: 24px;
  right: 26px;
  top: 78px;
}

.market-ticker-visual .market-line::before {
  background: linear-gradient(90deg, var(--cyan), var(--green));
  border-radius: 999px;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 18%;
  top: 42px;
  transform: rotate(-8deg);
  transform-origin: left center;
}

.market-ticker-visual .market-line i {
  background: var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(103, 213, 221, 0.24);
  height: 9px;
  position: absolute;
  top: 38px;
  width: 9px;
}

.market-ticker-visual .market-line i:nth-child(1) {
  left: 0;
}

.market-ticker-visual .market-line i:nth-child(2) {
  left: 28%;
  top: 28px;
}

.market-ticker-visual .market-line i:nth-child(3) {
  left: 58%;
  top: 34px;
}

.market-ticker-visual .market-line i:nth-child(4) {
  background: var(--green);
  right: 15%;
  top: 16px;
}

.market-ticker-visual .quote-panel {
  background: rgba(17, 19, 23, 0.66);
  border: 1px solid rgba(103, 213, 221, 0.28);
  border-radius: 8px;
  display: grid;
  gap: 8px;
  left: 22px;
  padding: 13px;
  right: 36%;
  top: 148px;
}

.market-ticker-visual .quote-panel b {
  background: rgba(255, 250, 242, 0.26);
  border-radius: 999px;
  height: 7px;
}

.market-ticker-visual .quote-panel b:nth-child(1) {
  background: rgba(255, 250, 242, 0.56);
  width: 52%;
}

.market-ticker-visual .quote-panel b:nth-child(2) {
  width: 82%;
}

.market-ticker-visual .quote-panel b:nth-child(3) {
  background: linear-gradient(90deg, var(--cyan), var(--green));
  width: 66%;
}

.market-ticker-visual .price-chip {
  background: rgba(184, 240, 106, 0.16);
  border: 1px solid rgba(184, 240, 106, 0.42);
  border-radius: 999px;
  bottom: 24px;
  color: rgba(255, 250, 242, 0.78);
  font-size: 12px;
  font-weight: 900;
  padding: 8px 12px;
  right: 24px;
}

.stock-heatmap-visual {
  background:
    radial-gradient(circle at 76% 30%, rgba(184, 240, 106, 0.2), transparent 24%),
    radial-gradient(circle at 22% 70%, rgba(214, 81, 81, 0.18), transparent 28%),
    #15191f;
}

.stock-heatmap-visual .heatmap-grid,
.stock-heatmap-visual .heatmap-axis,
.stock-heatmap-visual .heatmap-bar,
.stock-heatmap-visual .heatmap-chip {
  position: absolute;
  z-index: 2;
}

.stock-heatmap-visual .heatmap-grid {
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  left: 24px;
  right: 28%;
  top: 28px;
}

.stock-heatmap-visual .heatmap-grid b {
  background: rgba(184, 240, 106, 0.34);
  border: 1px solid rgba(255, 250, 242, 0.1);
  border-radius: 6px;
  min-height: 28px;
}

.stock-heatmap-visual .heatmap-grid b:nth-child(2),
.stock-heatmap-visual .heatmap-grid b:nth-child(6) {
  background: rgba(103, 213, 221, 0.3);
}

.stock-heatmap-visual .heatmap-grid b:nth-child(3),
.stock-heatmap-visual .heatmap-grid b:nth-child(5),
.stock-heatmap-visual .heatmap-grid b:nth-child(8) {
  background: rgba(214, 81, 81, 0.34);
}

.stock-heatmap-visual .heatmap-grid b:nth-child(4) {
  min-height: 54px;
}

.stock-heatmap-visual .heatmap-grid b:nth-child(7) {
  min-height: 42px;
}

.stock-heatmap-visual .heatmap-axis {
  display: grid;
  gap: 12px;
  right: 24px;
  top: 34px;
  width: 18%;
}

.stock-heatmap-visual .heatmap-axis i {
  background: rgba(255, 250, 242, 0.18);
  border-radius: 999px;
  height: 7px;
}

.stock-heatmap-visual .heatmap-axis i:nth-child(1) {
  background: var(--green);
  width: 100%;
}

.stock-heatmap-visual .heatmap-axis i:nth-child(2) {
  width: 72%;
}

.stock-heatmap-visual .heatmap-axis i:nth-child(3) {
  background: rgba(214, 81, 81, 0.72);
  width: 86%;
}

.stock-heatmap-visual .heatmap-bar {
  background: linear-gradient(90deg, rgba(214, 81, 81, 0.68), rgba(255, 250, 242, 0.2), rgba(184, 240, 106, 0.72));
  border: 1px solid rgba(255, 250, 242, 0.13);
  border-radius: 999px;
  bottom: 28px;
  height: 12px;
  left: 24px;
  right: 26px;
}

.stock-heatmap-visual .heatmap-bar b {
  background: var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(255, 250, 242, 0.26);
  height: 16px;
  left: 64%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
}

.stock-heatmap-visual .heatmap-chip {
  background: rgba(17, 19, 23, 0.7);
  border: 1px solid rgba(255, 250, 242, 0.14);
  border-radius: 999px;
  color: rgba(255, 250, 242, 0.72);
  font-size: 11px;
  font-weight: 900;
  left: 24px;
  padding: 8px 12px;
  top: 150px;
}

.report-extension-visual {
  background:
    radial-gradient(circle at 74% 28%, rgba(184, 240, 106, 0.22), transparent 24%),
    linear-gradient(145deg, rgba(103, 213, 221, 0.2), transparent 52%),
    #15191f;
}

.report-extension-visual .browser-bar,
.report-extension-visual .page-column,
.report-extension-visual .summary-panel,
.report-extension-visual .html-chip {
  position: absolute;
  z-index: 2;
}

.report-extension-visual .browser-bar {
  background: rgba(255, 250, 242, 0.12);
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-radius: 8px 8px 0 0;
  display: flex;
  gap: 6px;
  height: 34px;
  left: 24px;
  padding: 12px;
  right: 44px;
  top: 26px;
}

.report-extension-visual .browser-bar i {
  background: rgba(255, 250, 242, 0.42);
  border-radius: 50%;
  height: 7px;
  width: 7px;
}

.report-extension-visual .browser-bar i:nth-child(2) {
  background: var(--cyan);
}

.report-extension-visual .browser-bar i:nth-child(3) {
  background: var(--green);
}

.report-extension-visual .page-column {
  background: rgba(255, 250, 242, 0.1);
  border: 1px solid rgba(255, 250, 242, 0.14);
  border-radius: 0 0 8px 8px;
  display: grid;
  gap: 10px;
  left: 24px;
  padding: 18px 16px;
  right: 36%;
  top: 60px;
}

.report-extension-visual .page-column b,
.report-extension-visual .summary-panel b {
  background: rgba(255, 250, 242, 0.24);
  border-radius: 999px;
  height: 7px;
}

.report-extension-visual .page-column b:nth-child(1) {
  background: rgba(255, 250, 242, 0.52);
  width: 58%;
}

.report-extension-visual .page-column b:nth-child(2) {
  width: 82%;
}

.report-extension-visual .page-column b:nth-child(3) {
  width: 70%;
}

.report-extension-visual .summary-panel {
  background: rgba(17, 19, 23, 0.72);
  border: 1px solid rgba(103, 213, 221, 0.32);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(103, 213, 221, 0.14);
  display: grid;
  gap: 9px;
  padding: 16px;
  right: 18px;
  top: 84px;
  width: 42%;
}

.report-extension-visual .summary-panel b:nth-child(1),
.report-extension-visual .summary-panel b:nth-child(3) {
  background: linear-gradient(90deg, var(--cyan), var(--green));
}

.report-extension-visual .summary-panel b:nth-child(2) {
  width: 78%;
}

.report-extension-visual .summary-panel b:nth-child(4) {
  width: 64%;
}

.report-extension-visual .html-chip {
  background: rgba(184, 240, 106, 0.16);
  border: 1px solid rgba(184, 240, 106, 0.38);
  border-radius: 999px;
  bottom: 24px;
  color: rgba(255, 250, 242, 0.74);
  font-size: 11px;
  font-weight: 900;
  left: 24px;
  letter-spacing: 0;
  padding: 8px 12px;
}

.scene-ready .business-tool-card .work-copy {
  opacity: 0;
  transform: translateX(54px);
  transition:
    opacity 620ms ease,
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.scene-ready .works-section.is-works-active .business-tool-card .work-copy,
.scene-ready #works.is-works-active .business-tool-card .work-copy {
  opacity: 1;
  transform: translateX(0);
}

.business-tool-card:hover .work-copy,
.business-tool-card:focus .work-copy {
  opacity: 1;
  transform: translateX(0);
}

.scene-ready #works.is-works-active .business-tool-card:nth-child(2) .work-copy,
.scene-ready .works-section.is-works-active .business-tool-card:nth-child(2) .work-copy {
  transition-delay: 110ms;
}

.scene-ready #works.is-works-active .business-tool-card:nth-child(3) .work-copy,
.scene-ready .works-section.is-works-active .business-tool-card:nth-child(3) .work-copy {
  transition-delay: 220ms;
}

.flechr-visual {
  background:
    radial-gradient(circle at 28% 24%, rgba(184, 240, 106, 0.28), transparent 24%),
    linear-gradient(145deg, rgba(103, 213, 221, 0.28), transparent 48%),
    #171a20;
}

.flechr-visual span {
  background: rgba(255, 250, 242, 0.12);
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-radius: 8px;
  height: 78px;
  left: 24px;
  position: absolute;
  right: 28px;
}

.flechr-visual span::before {
  background: linear-gradient(90deg, var(--green), var(--cyan));
  border-radius: 999px;
  content: "";
  height: 5px;
  left: 16px;
  position: absolute;
  right: 38%;
  top: 18px;
}

.flechr-visual span:nth-child(1) {
  top: 54px;
}

.flechr-visual span:nth-child(2) {
  opacity: 0.78;
  top: 146px;
  transform: translateX(18px);
}

.flechr-visual span:nth-child(3) {
  opacity: 0.58;
  top: 238px;
  transform: translateX(36px);
}

.whygraph-visual {
  background:
    radial-gradient(circle at 70% 28%, rgba(103, 213, 221, 0.24), transparent 24%),
    radial-gradient(circle at 32% 72%, rgba(184, 240, 106, 0.18), transparent 28%),
    #171a20;
}

.whygraph-visual::after {
  background:
    linear-gradient(35deg, transparent 47%, rgba(103, 213, 221, 0.48) 48% 50%, transparent 51%),
    linear-gradient(145deg, transparent 47%, rgba(184, 240, 106, 0.42) 48% 50%, transparent 51%);
  content: "";
  inset: 18%;
  position: absolute;
}

.whygraph-visual span {
  background: var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 28px rgba(103, 213, 221, 0.28);
  height: 16px;
  position: absolute;
  width: 16px;
  z-index: 1;
}

.whygraph-visual span:nth-child(1) {
  left: 26%;
  top: 28%;
}

.whygraph-visual span:nth-child(2) {
  background: var(--cyan);
  left: 62%;
  top: 24%;
}

.whygraph-visual span:nth-child(3) {
  background: var(--green);
  left: 35%;
  top: 68%;
}

.whygraph-visual span:nth-child(4) {
  left: 70%;
  top: 62%;
}

.works-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.25fr 1fr;
}

.work-card {
  background: var(--white);
  border: 1px solid rgba(17, 19, 23, 0.08);
  border-radius: 8px;
  display: grid;
  gap: 22px;
  min-height: 420px;
  overflow: hidden;
  padding: 18px;
}

.work-card:hover .mock-screen,
.work-card:focus-visible .mock-screen {
  transform: translateY(-4px);
}

.feature-card {
  grid-row: span 2;
}

.mock-screen {
  background: #171a20;
  border-radius: 8px;
  min-height: 270px;
  overflow: hidden;
  position: relative;
  transition: transform 180ms ease;
}

.feature-card .mock-screen {
  min-height: 520px;
}

.screen-pill {
  background: rgba(255, 250, 242, 0.12);
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-radius: 999px;
  color: rgba(255, 250, 242, 0.74);
  font-size: 12px;
  font-weight: 800;
  left: 18px;
  padding: 8px 12px;
  position: absolute;
  top: 18px;
  z-index: 2;
}

.screen-title {
  bottom: 26px;
  color: var(--paper);
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 850;
  left: 24px;
  line-height: 0.95;
  max-width: 360px;
  position: absolute;
  z-index: 2;
}

.screen-rings {
  aspect-ratio: 1;
  background:
    radial-gradient(circle, transparent 30%, rgba(184, 240, 106, 0.48) 31%, transparent 33%),
    radial-gradient(circle, transparent 46%, rgba(103, 213, 221, 0.34) 47%, transparent 49%),
    radial-gradient(circle at 52% 52%, rgba(255, 250, 242, 0.2), transparent 36%);
  border-radius: 50%;
  bottom: 68px;
  position: absolute;
  right: -60px;
  width: 78%;
}

.sumo {
  background:
    linear-gradient(145deg, rgba(184, 240, 106, 0.14), transparent 38%),
    linear-gradient(315deg, rgba(215, 168, 79, 0.22), transparent 45%),
    #171a20;
}

.dashboard {
  background:
    linear-gradient(145deg, rgba(103, 213, 221, 0.22), transparent 42%),
    #171a20;
}

.bars {
  bottom: 32px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(5, 1fr);
  left: 24px;
  position: absolute;
  right: 24px;
}

.bars::before,
.bars::after,
.bars {
  border-radius: 8px;
}

.bars span {
  display: none;
}

.bars::before {
  background: linear-gradient(90deg, var(--green), var(--cyan));
  content: "";
  height: 96px;
}

.bars::after {
  background: rgba(255, 250, 242, 0.18);
  content: "";
  height: 138px;
}

.flow-line {
  background: rgba(255, 250, 242, 0.16);
  border-radius: 999px;
  height: 8px;
  left: 24px;
  position: absolute;
  right: 84px;
  top: 96px;
}

.flow-line::after {
  background: var(--green);
  border-radius: inherit;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 58%;
}

.platform {
  background:
    radial-gradient(circle at 70% 36%, rgba(184, 240, 106, 0.24), transparent 24%),
    #171a20;
}

.tile-stack {
  bottom: 24px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
  left: 24px;
  position: absolute;
  right: 24px;
  top: 86px;
}

.tile-stack::before,
.tile-stack::after {
  background: rgba(255, 250, 242, 0.14);
  border: 1px solid rgba(255, 250, 242, 0.12);
  border-radius: 8px;
  content: "";
}

.private-screen {
  background:
    linear-gradient(145deg, rgba(215, 168, 79, 0.24), transparent 44%),
    #171a20;
}

.lock-shape {
  border: 2px solid rgba(255, 250, 242, 0.72);
  border-radius: 8px;
  height: 88px;
  left: 50%;
  position: absolute;
  top: 55%;
  transform: translate(-50%, -50%);
  width: 120px;
}

.lock-shape::before {
  border: 2px solid rgba(255, 250, 242, 0.72);
  border-bottom: 0;
  border-radius: 80px 80px 0 0;
  content: "";
  height: 58px;
  left: 26px;
  position: absolute;
  top: -58px;
  width: 64px;
}

.work-copy {
  padding: 2px 4px 8px;
}

.work-copy p {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.work-copy span {
  color: var(--muted);
  line-height: 1.7;
}

.members-section {
  background: var(--paper);
}

.member-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(34px, 5vw, 70px);
}

.member-card {
  background: rgba(255, 250, 242, 0.74);
  border: 1px solid rgba(17, 19, 23, 0.08);
  border-radius: 8px;
  min-height: 0;
  padding: 24px;
}

.profile-card {
  aspect-ratio: 3.05 / 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(140px, 0.9fr);
  min-height: 0;
  overflow: hidden;
  padding: 0;
}

.profile-copy {
  align-self: center;
  padding: 20px 24px;
}

.profile-copy h3 {
  font-size: clamp(22px, 1.8vw, 30px);
  line-height: 1.02;
  margin-bottom: 10px;
}

.member-photo {
  background: var(--ink);
  margin: 0;
  min-height: 0;
  overflow: hidden;
  position: relative;
}

.member-photo::before {
  background:
    linear-gradient(90deg, rgba(246, 243, 238, 0.16), transparent 26%),
    linear-gradient(180deg, transparent 58%, rgba(17, 19, 23, 0.32));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.member-photo img {
  filter: grayscale(1) contrast(1.08);
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
  position: absolute;
  transform: scale(1.04);
  width: 100%;
}

.profile-card:nth-child(2) .member-photo img {
  object-fit: cover;
  object-position: 50% 42%;
  transform: scale(1.04);
}

.profile-card:nth-child(2) .member-photo {
  background: #ffffff;
}

.profile-card:nth-child(2) .member-photo::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent 28%);
}

.member-avatar {
  align-items: center;
  background: var(--ink);
  border-radius: 50%;
  color: var(--paper);
  display: flex;
  font-weight: 900;
  height: 72px;
  justify-content: center;
  margin-bottom: 48px;
  width: 72px;
}

.member-avatar.muted {
  background: #2f7981;
}

.member-avatar.warm {
  background: #8b6832;
}

.member-card p {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.member-card span {
  color: var(--muted);
  line-height: 1.6;
}

.company-section {
  padding-top: 20px;
}

.company-card {
  background: var(--ink);
  border-radius: 8px;
  color: var(--paper);
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: 1fr minmax(300px, 420px);
  padding: clamp(28px, 5vw, 72px);
}

.company-card .eyebrow {
  color: rgba(255, 250, 242, 0.58);
}

.company-list {
  display: grid;
  gap: 20px;
  margin: 42px 0 0;
}

.company-list div {
  border-top: 1px solid rgba(255, 250, 242, 0.16);
  display: grid;
  gap: 12px;
  grid-template-columns: 140px 1fr;
  padding-top: 18px;
}

.company-list dt {
  color: rgba(255, 250, 242, 0.48);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.company-list dd {
  line-height: 1.7;
  margin: 0;
}

.contact-panel {
  align-self: end;
  background: rgba(255, 250, 242, 0.08);
  border: 1px solid rgba(255, 250, 242, 0.12);
  border-radius: 8px;
  padding: 24px;
}

.contact-panel p {
  color: rgba(255, 250, 242, 0.72);
  line-height: 1.8;
}

.wide-button {
  width: 100%;
}

.site-footer {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 12px;
  font-weight: 800;
  justify-content: space-between;
  padding: 26px clamp(20px, 4vw, 64px) 48px;
}

.detail-page {
  padding-top: var(--header-height-expanded);
}

.detail-hero {
  background: var(--ink);
  color: var(--paper);
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  min-height: 76vh;
  padding: clamp(72px, 10vw, 132px) clamp(20px, 4vw, 64px);
}

.detail-hero h1 {
  color: var(--paper);
}

.detail-hero p {
  color: rgba(255, 250, 242, 0.68);
  font-size: 18px;
  line-height: 1.85;
}

.detail-visual {
  align-self: stretch;
  min-height: 420px;
}

.detail-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  padding: clamp(40px, 5vw, 72px) clamp(20px, 4vw, 64px);
}

.detail-panel {
  background: var(--white);
  border: 1px solid rgba(17, 19, 23, 0.08);
  border-radius: 8px;
  padding: 24px;
}

.detail-panel p,
.private-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.private-page {
  align-items: center;
  background:
    radial-gradient(circle at 80% 10%, rgba(103, 213, 221, 0.2), transparent 28%),
    radial-gradient(circle at 12% 72%, rgba(184, 240, 106, 0.18), transparent 28%),
    var(--ink);
  color: var(--paper);
  display: grid;
  min-height: 100vh;
  padding: 96px clamp(20px, 4vw, 64px);
}

.private-copy {
  max-width: 860px;
}

.private-copy p {
  color: rgba(255, 250, 242, 0.68);
  font-size: 18px;
}

.private-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

@media (max-width: 980px) {
  .hero,
  .split-section,
  .detail-hero,
  .company-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-movie {
    min-height: 100vh;
  }

  .hero-motion-panel {
    justify-self: stretch;
    max-width: none;
  }

  .works-grid,
  .business-tools-grid,
  .finance-service-grid,
  .business-tool-card,
  .profile-card,
  .works-block-heading,
  .ai-step-grid,
  .member-grid,
  .concept-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .ai-step-card {
    min-height: 230px;
  }

  .feature-card {
    grid-row: auto;
  }

  .feature-card .mock-screen {
    min-height: 340px;
  }

  .business-tool-card {
    height: auto;
    min-height: 340px;
  }

  .tool-visual {
    min-height: 0;
  }

  .business-tool-card .work-copy {
    align-self: end;
    background: linear-gradient(180deg, transparent, rgba(17, 19, 23, 0.9) 22%, rgba(17, 19, 23, 0.96));
    justify-self: stretch;
    min-height: 54%;
    width: 100%;
  }

  .member-card.profile-card {
    aspect-ratio: 2.15 / 1;
    grid-template-columns: minmax(0, 1fr) minmax(112px, 34%);
    min-height: 0;
  }

  .profile-card .profile-copy {
    grid-column: 1 / 3;
    grid-row: 1;
    max-width: 72%;
    position: relative;
    z-index: 2;
  }

  .member-photo {
    grid-column: 2;
    grid-row: 1;
    min-height: 0;
    order: initial;
  }

  .profile-card:nth-child(2) .member-photo img {
    transform: scale(1.04);
  }

  .concept-grid article {
    border-bottom: 1px solid rgba(255, 250, 242, 0.16);
    border-right: 0;
    min-height: 190px;
  }
}

@media (max-width: 760px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    background: rgba(17, 19, 23, 0.96);
    border-bottom: 1px solid rgba(255, 250, 242, 0.12);
    display: none;
    flex-direction: column;
    left: 0;
    padding: 20px;
    position: fixed;
    right: 0;
    top: var(--header-current-height);
    transition:
      background 180ms ease,
      top 420ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 10px 0;
  }

  .nav-cta {
    text-align: center;
    width: 100%;
  }

  .section-pad {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    padding-top: 112px;
  }

  .hero-motion-panel {
    padding: 14px;
  }

  .motion-dashboard {
    grid-template-columns: 1fr;
  }

  .agent-flow {
    grid-template-columns: 1fr;
  }

  .agent-flow::before,
  .agent-flow::after {
    display: none;
  }

  .hero-actions,
  .private-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .service-row {
    grid-template-columns: 1fr;
  }

  .service-row > span {
    margin-bottom: 0;
  }

  .business-tool-card .work-copy {
    padding: 24px;
  }

  .business-tool-card .work-copy h3 {
    font-size: 34px;
  }

  .company-list div {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .scene-ready .scroll-scene,
  .scene-ready .scroll-scene > * {
    filter: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
