@charset "UTF-8";
:root {
  --ink: #0c1721;
  --paper: #f7f7f2;
  --blue: #008dcc;
  --lime: #d2ee24;
  --muted: #697077;
  --line: #d3d6d1;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button:focus-visible,
a:focus-visible {
  outline: 3px solid #008dcc;
  outline-offset: 5px;
}
h1,
h2,
h3,
p {
  margin: 0;
}
button[hidden],
[hidden] {
  display: none !important;
}
::selection {
  background: var(--lime);
  color: var(--ink);
}
.skip-link {
  position: fixed;
  top: -80px;
  left: 20px;
  z-index: 100;
  background: white;
  padding: 16px;
}
.skip-link:focus {
  top: 10px;
}
.site-header {
  height: 98px;
  padding: 0 4.5%;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 32px;
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid #e4e6e3;
}
.brand {
  display: block;
  flex-shrink: 0;
}
.brand img {
  width: 164px;
  height: auto;
  object-fit: contain;
}
.desktop-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
}
.desktop-nav a {
  position: relative;
  padding: 12px 0;
}
.desktop-nav a:after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.3s;
}
.desktop-nav a:hover:after {
  width: 100%;
}
.nav-contact {
  font-size: 12px;
  font-weight: 700;
  padding: 16px 20px;
  background: var(--ink);
  color: white;
  display: flex;
  gap: 28px;
  transition: background 0.25s;
}
.nav-contact:hover {
  background: #185671;
}
.nav-contact span {
  font-size: 18px;
}
.menu-toggle {
  display: none;
}
.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 20px 24px;
  background: white;
  box-shadow: 0 10px 30px #0002;
}
.mobile-nav a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.hero {
  height: calc(100svh - 98px);
  min-height: 690px;
  max-height: 960px;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: white;
}
.hero-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.office-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  animation: camera-drift 26s ease-in-out infinite alternate;
  transform-origin: 75% 55%;
}
.scene-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      rgba(5, 17, 27, 0.92) 0%,
      rgba(5, 17, 27, 0.7) 30%,
      rgba(5, 17, 27, 0.2) 53%,
      transparent 80%
    ),
    linear-gradient(
      0deg,
      rgba(5, 17, 27, 0.86) 0%,
      transparent 24%,
      transparent 80%,
      rgba(5, 17, 27, 0.23)
    );
}
.scene-light {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 78% 65%, #a4e9ff14, transparent 45%);
  animation: room-light 9s ease-in-out infinite alternate;
  pointer-events: none;
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding: 60px 0 110px 4.5%;
  width: 55%;
  pointer-events: none;
}
.hero-copy a {
  pointer-events: auto;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 0.2em;
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 500;
}
.brand-dash {
  display: inline-block;
  width: 4px;
  height: 23px;
  background: var(--lime);
}
.hero h1 {
  font-size: clamp(66px, 7.5vw, 120px);
  line-height: 1.16;
  letter-spacing: -0.055em;
  font-weight: 800;
  margin: 22px 0 22px;
}
.hero h1 > span {
  display: block;
  animation: headline-in 1s var(--ease) both;
}
.hero h1 > span:nth-child(2) {
  animation-delay: 0.12s;
}
.hero h1 > span:nth-child(3) {
  animation-delay: 0.24s;
}
.lime-dot {
  color: var(--lime);
}
.hero-intro {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.95;
  letter-spacing: 0.015em;
}
.primary-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: max-content;
  background: var(--lime);
  color: var(--ink);
  padding: 19px 23px;
  margin-top: 26px;
  font-size: 14px;
  font-weight: 700;
  transition:
    background 0.3s,
    transform 0.3s;
}
.primary-cta:hover {
  background: #e4ff55;
  transform: translateY(-3px);
}
.primary-cta > span:last-child {
  font-size: 22px;
}
.office-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  margin-top: 20px;
  color: #e6eeee;
  width: max-content;
}
.office-link > span:last-child {
  transition: transform 0.3s;
}
.office-link:hover > span:last-child {
  transform: translateY(4px);
}
.play-icon {
  border: 1px solid #ffffff55;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  font-size: 14px;
}
.office-label {
  position: absolute;
  right: 4.5%;
  top: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  letter-spacing: 0.13em;
  background: #0b1626b5;
  border: 1px solid #ffffff30;
  padding: 12px 15px;
  backdrop-filter: blur(8px);
  z-index: 3;
}
.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 12px #d2ee2450;
}
.concept-label {
  font-size: 8px;
  opacity: 0.65;
  border-left: 1px solid #ffffff44;
  padding-left: 10px;
}
.worker-pins {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.worker-pin {
  position: absolute;
  background: none;
  border: 0;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  padding: 10px;
  pointer-events: auto;
  transition:
    opacity 0.35s,
    transform 0.35s;
  opacity: 0.7;
}
.worker-pin:hover,
.worker-pin.is-active {
  opacity: 1;
  transform: translateY(-3px);
}
.pin-research {
  left: 49%;
  top: 37%;
}
.pin-build {
  left: 69%;
  top: 66%;
}
.pin-review {
  right: 4%;
  top: 24%;
}
.pin-ring {
  display: block;
  width: 12px;
  height: 12px;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 5px #0b172466;
  position: relative;
}
.worker-pin.is-active .pin-ring {
  border-color: var(--lime);
  background: var(--lime);
}
.worker-pin.is-active .pin-ring:after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid #d2ee2480;
  border-radius: 50%;
  animation: pin-pulse 2.8s ease-out infinite;
}
.pin-name {
  background: #071725dc;
  border: 1px solid #ffffff25;
  padding: 9px 12px;
  font-size: 9px;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 20px #0003;
  backdrop-filter: blur(10px);
}
.pin-name b {
  font-size: 10px;
  margin-left: 6px;
}
.pin-name small {
  display: block;
  margin-top: 4px;
  font-size: 9px;
  opacity: 0.75;
  letter-spacing: 0.04em;
}
.is-active .pin-name {
  border-color: #d2ee2480;
}
.hero-bottom {
  position: absolute;
  left: 4.5%;
  right: 4.5%;
  bottom: 42px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.scroll-cue {
  font-size: 9px;
  letter-spacing: 0.17em;
  display: flex;
  align-items: center;
  gap: 18px;
}
.scroll-cue span {
  font-size: 21px;
  animation: scroll-hint 2.8s ease-in-out infinite;
}
.hero-task {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 450px;
  border-top: 1px solid #ffffff55;
  padding: 14px 0 0;
  font-size: 11px;
  min-width: 360px;
}
.task-signal {
  width: 5px;
  height: 5px;
  background: var(--lime);
  box-shadow: 0 0 12px var(--lime);
  border-radius: 50%;
  flex-shrink: 0;
}
.task-caption {
  font-size: 8px;
  border: 1px solid #ffffff44;
  padding: 3px 5px;
  margin-left: auto;
  white-space: nowrap;
}
.image-note {
  position: absolute;
  bottom: 16px;
  right: 4.5%;
  font-size: 8px;
  color: #d1d7d8;
  z-index: 4;
  letter-spacing: 0.03em;
}
.ticker {
  overflow: hidden;
  background: var(--lime);
  height: 62px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #09152122;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 42px;
  width: max-content;
  animation: ticker 35s linear infinite;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.ticker i {
  font-style: normal;
  font-size: 28px;
}
.section-pad {
  padding: 100px 6%;
}
.section-heading {
  display: grid;
  grid-template-columns: 38% 62%;
  gap: 0;
  margin-bottom: 54px;
}
.section-kicker {
  font-size: 10px;
  letter-spacing: 0.14em;
  font-weight: 600;
  padding-top: 10px;
}
.section-kicker span {
  margin-left: 16px;
  opacity: 0.45;
}
.section-heading h2 {
  font-size: clamp(27px, 3.1vw, 46px);
  line-height: 1.55;
  font-weight: 800;
  letter-spacing: -0.045em;
}
.service-grid {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 0;
}
.work-preview {
  margin-right: 9%;
  aspect-ratio: 0.94;
  background: linear-gradient(145deg, #0074cd, #0c36a4);
  position: relative;
  overflow: hidden;
  color: white;
  align-self: center;
}
.preview-top,
.preview-foot {
  position: absolute;
  left: 23px;
  right: 23px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 8px;
  letter-spacing: 0.12em;
  z-index: 2;
}
.preview-top {
  top: 23px;
}
.preview-foot {
  bottom: 20px;
  font-size: 9px;
  letter-spacing: 0.02em;
}
.mini-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
}
.browser-mock {
  position: absolute;
  width: 82%;
  height: 65%;
  left: 8%;
  top: 17%;
  background: #f5f6ef;
  color: var(--ink);
  box-shadow: 18px 25px 45px #001c664f;
  transform: perspective(1000px) rotateY(8deg) rotateX(5deg) rotate(-5deg);
  transition: transform 0.8s var(--ease);
  border: 5px solid #122438;
  border-radius: 7px;
  overflow: hidden;
  animation: screen-float 8s ease-in-out infinite alternate;
}
.work-preview:hover .browser-mock {
  transform: perspective(1000px) rotateY(0) rotateX(0) rotate(-2deg);
}
.browser-bar {
  height: 22px;
  border-bottom: 1px solid #d7dfdf;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 10px;
  background: white;
}
.browser-bar i {
  height: 4px;
  width: 4px;
  background: #b9c2c7;
  border-radius: 50%;
}
.browser-bar span {
  font-size: 5px;
  margin-left: 16px;
  letter-spacing: 0.1em;
}
.mock-nav {
  padding: 13px 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 8px;
}
.mock-nav > span {
  font-size: 5px;
}
.mock-content {
  padding: 20px 20px;
  position: relative;
  height: 70%;
  background: #e4e9df;
  overflow: hidden;
}
.mock-content small {
  font-size: 5px;
  letter-spacing: 0.2em;
}
.mock-content strong {
  display: block;
  font-family: Arial, sans-serif;
  font-size: clamp(35px, 4vw, 60px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin: 14px 0;
  position: relative;
  z-index: 2;
}
.mock-button {
  position: relative;
  z-index: 2;
  display: inline-block;
  font-size: 6px;
  background: var(--ink);
  color: white;
  padding: 7px 12px;
}
.mock-orb {
  position: absolute;
  width: 63%;
  aspect-ratio: 1;
  right: -12%;
  top: 15%;
  border-radius: 50%;
  background: conic-gradient(
    from 45deg,
    #c9e72d,
    #eaf6a4,
    #279ed0,
    #064489,
    #a6db3e
  );
  box-shadow: inset -15px -15px 30px #10263340;
  animation: orb-turn 16s linear infinite;
}
.mock-orb > span {
  position: absolute;
  inset: 20%;
  border-radius: 50%;
  background: #e4e9df;
  box-shadow: inset 10px 10px 20px #10263330;
}
.mock-blocks {
  display: flex;
  gap: 10px;
  padding: 14px;
}
.mock-blocks i {
  height: 20px;
  background: #c2cbc7;
  flex: 1;
}
.mobile-mock {
  position: absolute;
  width: 25%;
  height: 48%;
  right: 6%;
  bottom: 12%;
  border: 5px solid #122438;
  border-radius: 18px;
  background: #f8f8f2;
  padding: 19px 9px;
  box-shadow: 10px 16px 25px #00194b66;
  transform: rotate(9deg);
  color: var(--ink);
  overflow: hidden;
}
.phone-speaker {
  position: absolute;
  top: 5px;
  width: 30%;
  height: 4px;
  border-radius: 8px;
  background: var(--ink);
  left: 35%;
}
.mobile-mock small {
  font-size: 5px;
}
.mobile-mock strong {
  display: block;
  margin-top: 20px;
  font-size: clamp(15px, 1.8vw, 26px);
  letter-spacing: -0.06em;
  line-height: 1;
}
.phone-art {
  position: absolute;
  width: 140%;
  height: 43%;
  left: -20%;
  bottom: 17%;
  transform: rotate(-30deg);
  background: linear-gradient(80deg, #053c86, #2ab4d6, var(--lime));
}
.mobile-mock > span {
  position: absolute;
  bottom: 20px;
  font-size: 5px;
}
.service-list {
  border-top: 1px solid #919b98;
}
.service-row {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid #919b98;
  position: relative;
  align-items: flex-start;
}
.service-row:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--blue);
  transition: width 0.5s var(--ease);
}
.service-row:hover:after {
  width: 100%;
}
.row-number {
  font:
    14px Arial,
    sans-serif;
  margin-top: 6px;
  min-width: 26px;
}
.service-en {
  font-size: 8px;
  letter-spacing: 0.12em;
  color: #637172;
  margin-bottom: 8px;
}
.service-row h3 {
  font-size: clamp(20px, 2.2vw, 29px);
  font-weight: 800;
  letter-spacing: -0.045em;
  margin-bottom: 10px;
}
.service-row h3 + p {
  font-size: 12px;
  line-height: 1.8;
}
.service-row small {
  display: block;
  font-size: 10px;
  color: #738083;
  margin-top: 8px;
}
.circle-arrow {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-left: auto;
  align-self: center;
  border: 1px solid var(--ink);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 24px;
  transition:
    background 0.3s,
    transform 0.3s;
}
.service-row:hover .circle-arrow {
  background: var(--lime);
  transform: rotate(45deg);
}
.ai-office {
  background: var(--ink);
  color: #f5f7f5;
  position: relative;
  overflow: hidden;
}
.ai-office:before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border: 1px solid #ffffff09;
  border-radius: 50%;
  left: -300px;
  top: 40%;
  pointer-events: none;
}
.section-desc {
  font-size: 13px;
  color: #a9b5bd;
  line-height: 2;
  margin-top: 18px;
}
.office-console {
  border: 1px solid #ffffff2a;
  background: #121f2a;
}
.console-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #ffffff20;
  padding: 19px 25px;
  font-size: 9px;
  letter-spacing: 0.13em;
}
.console-toolbar > span:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
}
.demo-badge {
  border: 1px solid #ffffff33;
  color: #afbbc3;
  padding: 5px 8px;
  font-size: 9px;
  letter-spacing: 0.03em;
}
.scenario-picker {
  padding: 20px 25px 0;
  display: flex;
  gap: 6px;
}
.scenario-picker button {
  border: 1px solid #ffffff25;
  background: none;
  color: #a7b7c1;
  font-size: 11px;
  padding: 10px 17px;
  transition:
    background 0.3s,
    color 0.3s;
}
.scenario-picker button.is-selected {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
  font-weight: 700;
}
.console-body {
  display: grid;
  grid-template-columns: 42% 58%;
  padding: 28px 25px;
  min-height: 340px;
  gap: 0;
}
.team-roster {
  padding-right: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.team-member {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 15px;
  padding: 15px;
  text-align: left;
  color: #b7c2ca;
  background: #ffffff03;
  border: 1px solid #ffffff12;
  transition:
    background 0.4s,
    border-color 0.4s;
}
.team-member:hover {
  background: #ffffff09;
}
.team-member.is-active {
  color: white;
  border-color: #d2ee2470;
  background: #d2ee2409;
}
.employee-avatar {
  height: 52px;
  width: 47px;
  flex-shrink: 0;
  border-radius: 20px 20px 15px 15px;
  background: linear-gradient(140deg, #fff, #bccbd7);
  box-shadow:
    inset -3px -3px 5px #607687,
    0 6px 12px #0002;
  position: relative;
  display: grid;
  place-items: center;
  transform: rotate(-4deg);
}
.employee-avatar:before,
.employee-avatar:after {
  content: "";
  position: absolute;
  width: 5px;
  height: 20px;
  top: 17px;
  background: #00a3da;
  border-radius: 4px;
}
.employee-avatar:before {
  left: -3px;
}
.employee-avatar:after {
  right: -3px;
}
.avatar-face {
  display: flex;
  gap: 8px;
  background: #0c1a2e;
  width: 36px;
  height: 27px;
  border-radius: 11px;
  align-items: center;
  justify-content: center;
}
.avatar-face i {
  width: 5px;
  height: 6px;
  border-radius: 4px;
  background: #5eddff;
  box-shadow: 0 0 5px #5eddff;
}
.is-active .avatar-face i {
  animation: robot-blink 5s infinite;
}
.avatar-build {
  transform: rotate(4deg);
}
.avatar-review {
  transform: rotate(0);
}
.avatar-review:before,
.avatar-review:after {
  background: #abd122;
}
.employee-name {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.employee-name small {
  font-size: 7px;
  letter-spacing: 0.13em;
  color: #9bafb9;
}
.employee-name strong {
  font-size: 14px;
}
.employee-name > span {
  font-size: 9px;
  color: #93a6b1;
}
.member-indicator {
  margin-left: auto;
  font-size: 7px;
  color: #455962;
}
.is-active .member-indicator {
  color: var(--lime);
  box-shadow: 0 0 14px #d2ee2410;
}
.task-detail {
  padding: 8px 0 8px 30px;
  border-left: 1px solid #ffffff20;
  display: flex;
  flex-direction: column;
}
.detail-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: #9cafb9;
  margin-bottom: 25px;
}
.working-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 8px;
  letter-spacing: 0.02em;
}
.working-label .status-dot {
  width: 4px;
  height: 4px;
}
.task-detail h3 {
  font-size: clamp(18px, 2vw, 27px);
  line-height: 1.6;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.task-detail > p {
  font-size: 11px;
  line-height: 1.9;
  color: #a5b5be;
  max-width: 470px;
}
.activity-list {
  font-size: 11px;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
  color: #93a5b0;
}
.activity-list > div {
  display: flex;
  gap: 12px;
  align-items: center;
}
.activity-list > div > span {
  color: #839894;
  font-size: 12px;
  min-width: 13px;
}
.activity-list .current-activity {
  color: #e0eabc;
}
.activity-list .current-activity > span {
  color: var(--lime);
}
.handoff {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-top: 18px;
  margin-top: auto;
  border-top: 1px solid #ffffff20;
}
.handoff-icon {
  color: var(--lime);
  font-size: 22px;
}
.handoff > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.handoff small {
  font-size: 7px;
  letter-spacing: 0.14em;
  color: #8ca2ad;
}
.handoff strong {
  font-size: 10px;
  font-weight: 500;
}
.handoff-track {
  height: 2px;
  flex: 1;
  background: #ffffff15;
  margin-left: 10px;
  overflow: hidden;
  max-width: 140px;
  align-self: center;
}
.handoff-track i {
  display: block;
  width: 30%;
  height: 100%;
  background: var(--lime);
  animation: handoff 4s ease-in-out infinite;
}
.console-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border-top: 1px solid #ffffff20;
  padding: 19px 25px;
  font-size: 10px;
  color: #a4b4be;
}
.console-bottom b {
  font-size: 8px;
  letter-spacing: 0.13em;
  color: #c7d3d9;
  margin-right: 15px;
}
.console-bottom button {
  border: 0;
  background: none;
  color: #d5e1e6;
  font-size: 10px;
  padding: 6px 0;
}
.console-bottom button:hover {
  color: var(--lime);
}
.console-bottom button span {
  margin-left: 10px;
  font-size: 17px;
}
.demo-note {
  font-size: 10px;
  color: #95a7b2;
  line-height: 1.8;
  margin-top: 18px;
}
.task-detail.is-changing {
  animation: detail-in 0.45s var(--ease);
}
.connections {
  display: grid;
  grid-template-columns: 24% 38% 38%;
  gap: 0;
  padding-top: 75px;
  padding-bottom: 75px;
}
.connections > a {
  padding: 0 30px;
  border-left: 1px solid #b5bdb9;
}
.connections > a > span:first-child {
  font-size: 9px;
  letter-spacing: 0.08em;
  color: #6d797b;
}
.connections h3 {
  font-size: 23px;
  line-height: 1.7;
  margin-top: 17px;
  letter-spacing: -0.03em;
}
.connection-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  margin-top: 26px;
}
.connection-bottom b {
  font-size: 22px;
  transition: transform 0.3s;
}
.connections a:hover b {
  transform: translate(4px, -4px);
}
.contact {
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 75px;
  padding-bottom: 75px;
  overflow: hidden;
}
.contact h2 {
  font:
    800 clamp(72px, 11vw, 164px) / 0.92 Arial,
    sans-serif;
  letter-spacing: -0.065em;
  margin: 28px 0 24px;
}
.contact h2 br {
  display: none;
}
.contact h2 > span {
  color: var(--lime);
}
.contact p:last-child {
  font-size: 16px;
  font-weight: 600;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 14px;
  flex-shrink: 0;
}
.contact-circle {
  width: 105px;
  height: 105px;
  background: var(--lime);
  color: var(--ink);
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 60px;
  font-family: Arial, sans-serif;
  transition:
    transform 0.4s var(--ease),
    background 0.4s;
}
.contact-link:hover .contact-circle {
  transform: rotate(45deg);
  background: #e7ff55;
}
.site-footer {
  display: flex;
  align-items: center;
  gap: 30px;
  background: white;
  padding: 35px 4.5% 72px;
}
.site-footer .brand img {
  width: 126px;
}
.site-footer > div {
  margin-left: auto;
  display: flex;
  gap: 22px;
  font-size: 9px;
}
.site-footer small {
  font-size: 9px;
  color: #778087;
}
.preview-controls {
  position: fixed;
  bottom: 13px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 40;
  background: #fffefaef;
  border: 1px solid #cad3d3;
  box-shadow: 0 3px 15px #0001;
  padding: 7px 12px;
  backdrop-filter: blur(10px);
}
.preview-tag {
  font:
    8px Arial,
    sans-serif;
  letter-spacing: 0.12em;
  color: #6d7b7e;
}
.preview-controls button {
  border: 0;
  border-left: 1px solid #d0d8d6;
  padding: 2px 0 2px 12px;
  background: none;
  font-size: 10px;
  color: var(--ink);
}
#motion-icon {
  font:
    12px Arial,
    sans-serif;
  margin-right: 5px;
}
.noscript-note {
  padding: 20px;
  font-size: 12px;
}
.reveal.is-visible {
  animation: section-reveal 0.85s var(--ease) both;
}
@keyframes camera-drift {
  from {
    transform: scale(1.01) translateX(0);
  }
  to {
    transform: scale(1.065) translateX(-0.5%);
  }
}
@keyframes room-light {
  from {
    opacity: 0.3;
  }
  to {
    opacity: 1;
  }
}
@keyframes headline-in {
  from {
    opacity: 0.25;
    transform: translateY(25px);
    filter: blur(3px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
@keyframes pin-pulse {
  0% {
    transform: scale(0.65);
    opacity: 0.8;
  }
  85%,
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}
@keyframes scroll-hint {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
}
@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}
@keyframes screen-float {
  to {
    transform: perspective(1000px) rotateY(4deg) rotateX(2deg) rotate(-3deg)
      translateY(-6px);
  }
}
@keyframes orb-turn {
  to {
    transform: rotate(360deg);
  }
}
@keyframes robot-blink {
  0%,
  42%,
  47%,
  100% {
    transform: scaleY(1);
  }
  44%,
  45% {
    transform: scaleY(0.15);
  }
}
@keyframes handoff {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(430%);
  }
}
@keyframes detail-in {
  from {
    opacity: 0.5;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes section-reveal {
  from {
    opacity: 0.35;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
body.motion-paused *,
body.motion-paused *:before,
body.motion-paused *:after {
  animation-play-state: paused !important;
  scroll-behavior: auto !important;
  transition: none !important;
}
body.motion-paused .hero h1 > span,
body.motion-paused .reveal.is-visible,
body.motion-paused .task-detail.is-changing {
  animation: none !important;
  opacity: 1;
  transform: none;
  filter: none;
}
html:has(body.motion-paused) {
  scroll-behavior: auto;
}
@media (min-width: 1600px) {
  .hero-copy {
    padding-top: 80px;
  }
  .hero-intro {
    font-size: 17px;
  }
  .primary-cta {
    padding: 22px 28px;
    font-size: 16px;
  }
}
@media (max-width: 1100px) {
  .desktop-nav {
    gap: 18px;
    font-size: 10px;
  }
  .site-header {
    gap: 20px;
  }
  .brand img {
    width: 140px;
  }
  .hero {
    min-height: 670px;
  }
  .hero-copy {
    padding-top: 58px;
    width: 60%;
  }
  .hero h1 {
    font-size: 8.1vw;
  }
  .hero-intro {
    font-size: 12px;
  }
  .pin-name b {
    font-size: 8px;
  }
  .pin-name {
    padding: 7px;
  }
  .pin-research {
    left: 52%;
    top: 34%;
  }
  .pin-review {
    right: 2%;
    top: 25%;
  }
  .hero-task {
    min-width: 310px;
  }
  .section-pad {
    padding: 78px 5%;
  }
  .service-row {
    padding: 24px 0;
    gap: 12px;
  }
  .service-row h3 {
    font-size: 22px;
  }
  .section-heading {
    grid-template-columns: 35% 65%;
  }
  .service-row h3 + p {
    font-size: 11px;
  }
  .team-roster {
    padding-right: 20px;
  }
  .team-member {
    padding: 12px 10px;
    gap: 12px;
  }
  .employee-name > span {
    font-size: 8px;
  }
  .task-detail {
    padding-left: 20px;
  }
  .connections {
    grid-template-columns: 22% 39% 39%;
  }
  .connections h3 {
    font-size: 20px;
  }
  .contact h2 {
    font-size: 10vw;
  }
  .contact-circle {
    width: 80px;
    height: 80px;
    font-size: 45px;
  }
  .contact-link {
    gap: 15px;
  }
  .site-footer > div {
    gap: 12px;
  }
}
@media (max-width: 800px) {
  html {
    scroll-padding-top: 78px;
  }
  .site-header {
    height: 78px;
    padding: 0 5%;
    gap: 16px;
  }
  .brand img {
    width: 131px;
  }
  .desktop-nav {
    display: none;
  }
  .nav-contact {
    margin-left: auto;
    padding: 11px 13px;
    font-size: 10px;
    gap: 10px;
  }
  .nav-contact span {
    font-size: 16px;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 34px;
    border: 0;
    background: none;
    padding: 0;
  }
  .menu-toggle span {
    width: 22px;
    height: 1px;
    background: var(--ink);
    transition: transform 0.25s;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }
  .hero {
    height: 850px;
    min-height: 0;
    max-height: none;
  }
  .hero-copy {
    padding: 53px 6% 0;
    width: 100%;
  }
  .hero h1 {
    font-size: clamp(66px, 10.5vw, 84px);
    margin-top: 20px;
    max-width: 550px;
  }
  .hero-intro {
    font-size: 13px;
  }
  .office-image {
    object-position: 71% center;
    opacity: 0.9;
  }
  .scene-shade {
    background: linear-gradient(
        90deg,
        #061420eb,
        rgba(5, 17, 27, 0.6) 48%,
        #05111b0a
      ),
      linear-gradient(0deg, #05111bf5, transparent 30%);
  }
  .office-label {
    top: auto;
    bottom: 174px;
    left: 6%;
    right: auto;
    padding: 9px 10px;
    font-size: 8px;
  }
  .worker-pin {
    padding: 8px;
  }
  .pin-research {
    left: 44%;
    top: 65%;
  }
  .pin-build {
    left: auto;
    right: 4%;
    top: 76%;
  }
  .pin-review {
    top: 60%;
    right: 3%;
  }
  .pin-name {
    padding: 7px 9px;
  }
  .hero-bottom {
    bottom: 53px;
    left: 6%;
    right: 6%;
    align-items: flex-end;
  }
  .scroll-cue {
    font-size: 7px;
    gap: 8px;
  }
  .hero-task {
    min-width: 0;
    width: auto;
    max-width: 300px;
    font-size: 10px;
    padding-top: 10px;
    gap: 8px;
  }
  .task-caption {
    font-size: 7px;
  }
  .image-note {
    bottom: 25px;
    right: 6%;
    font-size: 8px;
  }
  .section-pad {
    padding: 65px 6%;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 35px;
  }
  .section-heading h2 {
    font-size: 33px;
    line-height: 1.5;
  }
  .section-kicker {
    padding-top: 0;
  }
  .service-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .work-preview {
    margin: 0;
    aspect-ratio: 1.4;
    max-width: 620px;
    width: 100%;
  }
  .browser-mock {
    width: 72%;
    height: 76%;
    top: 13%;
    left: 9%;
  }
  .mock-content {
    padding: 15px 20px;
  }
  .mock-content strong {
    font-size: 54px;
  }
  .mock-orb {
    width: 52%;
    right: -6%;
    top: 0;
  }
  .mobile-mock {
    width: 21%;
    height: 66%;
    right: 10%;
    bottom: 12%;
  }
  .mobile-mock strong {
    font-size: 24px;
  }
  .preview-foot {
    bottom: 14px;
  }
  .service-row {
    padding: 25px 0;
    gap: 20px;
  }
  .service-row h3 {
    font-size: 24px;
  }
  .service-row h3 + p {
    font-size: 12px;
  }
  .console-body {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .team-roster {
    padding: 0 0 20px;
    flex-direction: row;
    gap: 9px;
  }
  .team-member {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 12px 5px;
  }
  .employee-name small {
    font-size: 6px;
  }
  .employee-name strong {
    font-size: 12px;
  }
  .employee-name > span,
  .member-indicator {
    display: none;
  }
  .employee-avatar {
    height: 43px;
    width: 40px;
  }
  .avatar-face {
    width: 31px;
    height: 24px;
  }
  .avatar-face i {
    width: 4px;
    height: 5px;
  }
  .task-detail {
    padding: 22px 0 5px;
    border-left: 0;
    border-top: 1px solid #ffffff20;
    min-height: 290px;
  }
  .task-detail h3 {
    font-size: 23px;
  }
  .task-detail > p {
    font-size: 12px;
    max-width: none;
  }
  .detail-heading {
    margin-bottom: 15px;
  }
  .activity-list {
    font-size: 12px;
  }
  .handoff {
    margin-top: 8px;
  }
  .handoff strong {
    font-size: 11px;
  }
  .console-toolbar {
    padding: 17px 20px;
    font-size: 8px;
  }
  .scenario-picker {
    padding: 18px 20px 0;
    gap: 8px;
  }
  .scenario-picker button {
    font-size: 10px;
    padding: 9px 12px;
    flex: 1;
  }
  .console-bottom {
    padding: 16px 20px;
    align-items: flex-start;
  }
  .console-bottom > span {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .console-bottom b {
    margin: 0;
  }
  .demo-note {
    font-size: 9px;
  }
  .connections {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .connections > .section-kicker {
    grid-column: 1/-1;
  }
  .connections > a {
    padding: 0;
  }
  .connections > a:first-of-type {
    border-left: 0;
  }
  .connections > a:last-of-type {
    padding-left: 22px;
  }
  .connections h3 {
    font-size: 20px;
  }
  .connections > a > span:first-child {
    font-size: 7px;
  }
  .contact {
    align-items: flex-end;
    gap: 10px;
  }
  .contact h2 {
    font-size: 70px;
  }
  .contact h2 br {
    display: block;
  }
  .contact p:last-child {
    font-size: 12px;
  }
  .contact .eyebrow {
    font-size: 8px;
  }
  .contact-link {
    flex-direction: column-reverse;
    align-items: center;
    font-size: 11px;
    gap: 18px;
  }
  .contact-circle {
    width: 80px;
    height: 80px;
  }
  .site-footer {
    flex-wrap: wrap;
    padding: 25px 6% 78px;
    gap: 20px;
  }
  .site-footer .brand img {
    width: 115px;
  }
  .site-footer > div {
    order: 3;
    width: 100%;
    margin: 0;
    flex-wrap: wrap;
    gap: 17px;
    font-size: 9px;
  }
  .site-footer > small {
    margin-left: auto;
  }
  .preview-controls {
    left: 10px;
    bottom: 10px;
    padding: 7px 10px;
  }
  .preview-tag {
    font-size: 7px;
  }
}
@media (max-width: 480px) {
  .hero {
    height: 835px;
  }
  .hero-copy {
    padding-top: 36px;
  }
  .hero h1 {
    font-size: 65px;
    line-height: 1.14;
    margin: 24px 0;
  }
  .hero .eyebrow {
    font-size: 8px;
    gap: 11px;
  }
  .hero-intro {
    font-size: 11px;
    line-height: 2;
  }
  .primary-cta {
    font-size: 12px;
    padding: 16px 19px;
    margin-top: 21px;
  }
  .office-link {
    font-size: 10px;
    margin-top: 18px;
  }
  .office-image {
    width: 155%;
    max-width: none;
    position: absolute;
    right: -18%;
    object-position: 67% center;
    opacity: 0.83;
  }
  .scene-shade {
    background: linear-gradient(
        180deg,
        #07121bd9 0%,
        #07121b66 48%,
        transparent 65%,
        #07121bf0 95%
      ),
      linear-gradient(90deg, #07121ba6, transparent 85%);
  }
  .hero-copy {
    z-index: 5;
  }
  .hero-task {
    font-size: 9px;
    width: 100%;
    max-width: none;
    min-height: 35px;
  }
  .hero-bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 19px;
    bottom: 42px;
  }
  .scroll-cue {
    font-size: 7px;
  }
  .scroll-cue span {
    font-size: 16px;
  }
  .office-label {
    bottom: 236px;
    left: 6%;
    font-size: 7px;
  }
  .pin-research {
    left: 6%;
    top: 72%;
  }
  .pin-build {
    right: 5%;
    top: 75%;
  }
  .pin-review {
    right: 3%;
    top: 58%;
  }
  .pin-name {
    padding: 7px;
  }
  .pin-name b {
    font-size: 8px;
  }
  .pin-name small {
    font-size: 8px;
  }
  .pin-ring {
    width: 9px;
    height: 9px;
  }
  .image-note {
    bottom: 17px;
    font-size: 7px;
  }
  .ticker {
    height: 50px;
  }
  .ticker-track {
    font-size: 13px;
    gap: 28px;
  }
  .ticker i {
    font-size: 23px;
  }
  .section-heading h2 {
    font-size: 26px;
  }
  .section-pad {
    padding: 55px 6%;
  }
  .section-kicker {
    font-size: 8px;
  }
  .work-preview {
    aspect-ratio: 1.06;
  }
  .browser-mock {
    width: 79%;
    left: 6%;
    height: 67%;
    top: 16%;
    border-width: 4px;
  }
  .mock-nav {
    padding: 11px;
    font-size: 6px;
  }
  .mock-nav > span {
    font-size: 4px;
  }
  .mock-content strong {
    font-size: 42px;
    margin: 12px 0;
  }
  .mock-content {
    padding: 10px 15px;
    height: 67%;
  }
  .mobile-mock {
    width: 24%;
    height: 51%;
    right: 5%;
    bottom: 13%;
    border-width: 4px;
  }
  .mobile-mock strong {
    font-size: 21px;
  }
  .service-row {
    gap: 10px;
  }
  .row-number {
    min-width: 20px;
    font-size: 12px;
  }
  .service-row h3 {
    font-size: 21px;
  }
  .service-row h3 + p {
    font-size: 11px;
  }
  .service-row small {
    font-size: 9px;
  }
  .circle-arrow {
    width: 31px;
    height: 31px;
    font-size: 20px;
  }
  .service-en {
    font-size: 7px;
  }
  .section-desc {
    font-size: 11px;
  }
  .console-toolbar {
    padding: 15px 12px;
    font-size: 7px;
    letter-spacing: 0.07em;
  }
  .demo-badge {
    font-size: 8px;
  }
  .scenario-picker {
    padding: 15px 12px 0;
    gap: 5px;
  }
  .scenario-picker button {
    font-size: 9px;
    padding: 9px 6px;
  }
  .console-body {
    padding: 15px 12px;
  }
  .team-roster {
    gap: 6px;
  }
  .employee-name small {
    font-size: 5px;
    letter-spacing: 0.06em;
  }
  .employee-name strong {
    font-size: 11px;
  }
  .task-detail h3 {
    font-size: 20px;
  }
  .task-detail > p {
    font-size: 11px;
  }
  .activity-list {
    font-size: 11px;
  }
  .working-label {
    font-size: 7px;
  }
  .handoff strong {
    font-size: 10px;
  }
  .console-bottom {
    padding: 14px 12px;
  }
  .console-bottom > span {
    font-size: 9px;
  }
  .console-bottom button {
    font-size: 9px;
  }
  .demo-note {
    font-size: 8px;
  }
  .connections {
    gap: 22px 14px;
  }
  .connections > a:last-of-type {
    padding-left: 14px;
  }
  .connections h3 {
    font-size: 17px;
  }
  .connection-bottom {
    font-size: 8px;
    line-height: 1.7;
    gap: 6px;
  }
  .connections > a > span:first-child {
    font-size: 6px;
  }
  .contact h2 {
    font-size: 64px;
  }
  .contact-link {
    font-size: 10px;
  }
  .contact-circle {
    width: 65px;
    height: 65px;
    font-size: 36px;
  }
  .contact p:last-child {
    font-size: 10px;
  }
  .preview-controls button {
    font-size: 9px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .hero h1 > span,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
.preview-controls {
  left: auto;
  right: 18px;
}
.contact h2 > span:before {
  content: " ";
  white-space: pre;
}
@media (max-width: 800px) {
  .preview-controls {
    left: auto;
    right: 10px;
  }
  .contact h2 > span:before {
    content: "";
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: clamp(40px, 13vw, 62px);
    line-height: 1.18;
  }
  .hero h1 > span {
    white-space: nowrap;
  }
  .office-label {
    bottom: 245px;
  }
  .site-header {
    gap: 12px;
  }
  .brand img {
    width: 120px;
  }
}
@media (max-width: 360px) {
  .brand img {
    width: 104px;
  }
  .site-header {
    gap: 10px;
  }
  .nav-contact {
    padding: 10px;
    font-size: 9px;
  }
  .contact h2 {
    font-size: 54px;
  }
  .contact-circle {
    width: 55px;
    height: 55px;
  }
}

/* Scroll atmosphere and restrained interaction feedback. */
.reading-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  z-index: 60;
  pointer-events: none;
}
.reading-progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--lime));
  transform: scaleX(0);
  transform-origin: left;
}
.hero-scene {
  inset: -24px;
  transform: translate3d(0, var(--hero-shift, 0px), 0);
}
.services {
  background: radial-gradient(
      ellipse at var(--ambient-x, 20%) var(--ambient-y, 25%),
      #009bcc16,
      transparent 60%
    ),
    radial-gradient(ellipse at 100% 85%, #d2ee2422, transparent 55%),
    var(--paper);
}
.connections {
  background: radial-gradient(
      ellipse at var(--ambient-x, 20%) 30%,
      #a6dbe934,
      transparent 70%
    ),
    var(--paper);
}
.ai-office {
  isolation: isolate;
  transition: background-color 1.2s ease;
}
.ai-office[data-active-role="1"] {
  background-color: #102431;
}
.ai-office[data-active-role="2"] {
  background-color: #152827;
}
.ai-office:before {
  transform: translateY(var(--section-drift, 0px));
  transition: border-color 1s;
}
.ai-office:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(
    ellipse at 90% var(--ambient-y, 20%),
    #028cc32b,
    transparent 60%
  );
}
.office-console {
  position: relative;
  background: radial-gradient(
      circle at var(--pointer-x, 50%) var(--pointer-y, 50%),
      #008dcc18,
      transparent 40%
    ),
    #121f2a;
}
.contact {
  position: relative;
  isolation: isolate;
}
.contact:before {
  content: "";
  position: absolute;
  inset: -70px 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(110deg, #0c1721 15%, #0c172166),
    repeating-linear-gradient(90deg, transparent 0 89px, #ffffff0b 90px 91px),
    repeating-linear-gradient(0deg, transparent 0 89px, #ffffff0b 90px 91px);
  transform: translateY(var(--section-drift, 0px));
}
.contact:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(
    circle at var(--pointer-x, 75%) var(--pointer-y, 50%),
    #bdda1c18,
    transparent 50%
  );
}
.section-arrival {
  animation: arrival-highlight 0.95s ease-out;
}
@keyframes arrival-highlight {
  from {
    box-shadow: inset 0 4px 0 #008dcc;
  }
  to {
    box-shadow: inset 0 0 0 transparent;
  }
}
.primary-cta,
.nav-contact,
.scenario-picker button,
.team-member,
.send-demo-button,
.contact-demo-link {
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s,
    background 0.3s,
    border-color 0.3s;
}
.primary-cta:active,
.nav-contact:active,
.scenario-picker button:active,
.team-member:active,
.send-demo-button:active {
  transform: scale(0.97);
}
.ripple-surface {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.tap-ripple {
  position: absolute;
  width: 30px;
  height: 30px;
  pointer-events: none;
  border-radius: 50%;
  background: #ffffff55;
  transform: translate(-50%, -50%) scale(0);
  animation: tap-feedback 0.6s ease-out forwards;
  z-index: 4;
}
@keyframes tap-feedback {
  to {
    transform: translate(-50%, -50%) scale(17);
    opacity: 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .primary-cta:hover,
  .send-demo-button:hover {
    box-shadow: 0 8px 25px #c6df2428;
    transform: translateY(-3px);
  }
  .nav-contact:hover {
    box-shadow: 0 7px 18px #05142020;
    transform: translateY(-2px);
  }
  .team-member:hover {
    transform: translateX(3px);
    border-color: #9acde666;
  }
  .scenario-picker button:hover {
    border-color: #d2ee24;
    transform: translateY(-2px);
  }
  .contact-demo-link:hover {
    color: var(--lime);
    transform: translateX(3px);
  }
}
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 100;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: white;
  clip-path: inset(100% 0 0);
  transition: clip-path 0.22s var(--ease);
  visibility: hidden;
}
.page-transition > span {
  font-size: clamp(22px, 4vw, 50px);
  font-weight: 700;
  letter-spacing: -0.04em;
}
.page-transition > i {
  width: 30px;
  height: 4px;
  background: var(--lime);
}
.is-navigating .page-transition {
  visibility: visible;
  clip-path: inset(0);
  pointer-events: auto;
}
.hero-copy button {
  pointer-events: auto;
}
.office-link {
  display: inline-flex;
  margin-right: 18px;
}
.contact-demo-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #e1e9e9;
  border: 0;
  border-bottom: 1px solid #ffffff55;
  background: none;
  padding: 7px 0;
  font-size: 11px;
  margin-top: 14px;
}
.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-end;
  flex-shrink: 0;
}
.contact-actions .contact-demo-link {
  margin: 0;
  font-size: 12px;
}

/* Native dialog: keyboard focus, escape and modal semantics remain native. */
.contact-open {
  overflow: hidden;
}
.contact-dialog {
  margin: auto;
  width: min(660px, calc(100% - 32px));
  max-height: calc(100svh - 36px);
  padding: 0;
  border: 1px solid #d6dddd;
  background: #fafbf7;
  color: var(--ink);
  overflow: auto;
  overscroll-behavior: contain;
  box-shadow: 0 32px 130px #00101e66;
}
.contact-dialog[open] {
  animation: dialog-enter 0.38s var(--ease);
}
.contact-dialog::backdrop {
  background: #051522bc;
  backdrop-filter: blur(9px);
}
.dialog-top {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 26px;
  background: #fafbf7f5;
  border-bottom: 1px solid #ccd6d5;
  backdrop-filter: blur(8px);
  font-size: 10px;
  letter-spacing: 0.12em;
}
.dialog-close {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #bdc9c9;
  border-radius: 50%;
  background: none;
  font-size: 26px;
  line-height: 1;
  transition:
    transform 0.25s,
    background 0.25s;
}
.dialog-close:hover {
  transform: rotate(90deg);
  background: #e9efde;
}
.dialog-content {
  padding: 30px 36px 28px;
}
.dialog-kicker {
  font-size: 12px;
  color: #5b747a;
  margin-bottom: 10px;
}
.contact-dialog h2 {
  font-size: 32px;
  letter-spacing: -0.05em;
  line-height: 1.45;
}
.contact-dialog h2:focus,
.delivery-success h3:focus {
  outline: none;
}
.form-demo-note {
  font-size: 12px;
  line-height: 1.8;
  margin: 16px 0 22px;
  padding: 12px 14px;
  border-left: 3px solid var(--blue);
  background: #008dcc08;
  color: #506367;
}
.contact-dialog form > label,
.form-pair > label {
  display: block;
  font-size: 14px;
  font-weight: 600;
}
.form-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 12px;
}
.contact-dialog label > span {
  font-size: 10px;
  font-weight: 400;
  color: #59737b;
  margin-left: 6px;
}
.contact-dialog input:not([type="checkbox"]),
.contact-dialog textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  border: 1px solid #bcc9cb;
  background: #fff;
  border-radius: 2px;
  padding: 12px;
  color: var(--ink);
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline-offset: 3px;
}
.contact-dialog textarea {
  resize: vertical;
  min-height: 90px;
  max-height: 240px;
}
.contact-dialog input:focus,
.contact-dialog textarea:focus {
  outline: 2px solid var(--blue);
  border-color: var(--blue);
  box-shadow: 0 0 0 5px #008dcc10;
}
.contact-dialog input[aria-invalid="true"],
.contact-dialog textarea[aria-invalid="true"] {
  border-color: #b44e37;
  background: #fff9f5;
}
.field-error {
  display: block;
  min-height: 17px;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.5;
  color: #a33622;
  margin-top: 4px;
}
.demo-options {
  border-top: 1px solid #d8e0dd;
  padding-top: 12px;
  margin-top: 4px;
}
.demo-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #55696e;
  line-height: 1.6;
}
.demo-options input {
  width: 16px;
  height: 16px;
  accent-color: #007db1;
}
.form-feedback {
  border-left: 3px solid #b35824;
  background: #f5e9df;
  color: #813b20;
  padding: 12px 14px;
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.8;
}
.has-send-error .form-feedback {
  animation: feedback-enter 0.3s ease-out;
}
.send-demo-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 17px 20px;
  margin-top: 18px;
  border: 0;
  background: var(--lime);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.send-demo-button:disabled {
  opacity: 0.7;
  cursor: wait;
}
.send-demo-button > svg {
  transition: transform 0.3s;
}
.send-demo-button:hover > svg {
  transform: translate(3px, -3px);
}
.real-contact-link {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #d3dddc;
  margin-top: 24px;
  padding-top: 20px;
  font-size: 12px;
  line-height: 1.8;
  text-align: center;
  color: #365b69;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.delivery-scene {
  position: relative;
  display: grid;
  place-items: center;
  height: 180px;
  overflow: hidden;
  margin: 20px 0 0;
}
.delivery-orbit {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 1px solid #7eb7c651;
  border-radius: 50%;
  box-shadow:
    0 0 0 18px #008dcc04,
    0 0 0 38px #008dcc03;
}
.mail-symbol {
  position: relative;
  color: #008dcc;
  z-index: 2;
}
.delivery-check {
  position: absolute;
  display: grid;
  place-items: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  opacity: 0;
  transform: scale(0.5);
}
.is-sending .mail-symbol {
  animation: mail-departure 1.8s var(--ease) both;
}
.is-sending .delivery-orbit {
  animation: orbit-breathe 1s ease-in-out infinite alternate;
}
.is-delivered .mail-symbol {
  display: none;
}
.is-delivered .delivery-check {
  opacity: 1;
  transform: scale(1);
  animation: delivery-pop 0.55s var(--ease);
}
.celebration {
  position: absolute;
  width: 7px;
  height: 7px;
  background: var(--blue);
  opacity: 0;
}
.c1 {
  left: 25%;
  top: 35%;
  --burst-x: -15px;
  --burst-y: -20px;
}
.c2 {
  right: 24%;
  top: 30%;
  background: #acd014;
  --burst-x: 20px;
  --burst-y: -25px;
}
.c3 {
  right: 28%;
  bottom: 25%;
  width: 5px;
  height: 5px;
  --burst-x: 25px;
  --burst-y: 20px;
}
.is-delivered .celebration {
  animation: delivery-burst 0.85s ease-out;
}
.delivery-status {
  font-size: 13px;
  color: #4f6970;
  text-align: center;
  line-height: 1.8;
}
.delivery-status:empty {
  display: none;
}
.delivery-success {
  text-align: center;
  margin: 15px 0 0;
}
.delivery-success h3 {
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: -0.04em;
}
.delivery-success p {
  font-size: 13px;
  line-height: 1.9;
  color: #536a70;
  margin: 10px 0 20px;
}
#demo-again {
  border: 1px solid #a9bebc;
  background: none;
  padding: 12px 20px;
  font-size: 13px;
  color: var(--ink);
}
#demo-again span {
  margin-left: 16px;
}
@keyframes dialog-enter {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes feedback-enter {
  from {
    opacity: 0.3;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes mail-departure {
  0% {
    opacity: 0;
    transform: translate(-70px, 28px) rotate(-12deg);
  }
  25%,
  55% {
    opacity: 1;
    transform: translate(0, 0) rotate(0);
  }
  100% {
    opacity: 0;
    transform: translate(110px, -60px) rotate(-18deg) scale(0.7);
  }
}
@keyframes orbit-breathe {
  to {
    transform: scale(1.1);
    border-color: #008dcc88;
  }
}
@keyframes delivery-pop {
  from {
    transform: scale(0.55);
    opacity: 0.2;
  }
  70% {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes delivery-burst {
  0% {
    opacity: 1;
    transform: translate(0, 0) rotate(0);
  }
  100% {
    opacity: 0;
    transform: translate(var(--burst-x), var(--burst-y)) rotate(70deg);
  }
}
@media (max-width: 800px) {
  .contact-actions {
    align-items: center;
    gap: 18px;
  }
  .contact-actions .contact-demo-link {
    font-size: 10px;
    gap: 6px;
  }
  .hero-copy .contact-demo-link {
    font-size: 10px;
  }
  .contact-dialog {
    width: calc(100% - 24px);
  }
}
@media (max-width: 480px) {
  .contact-dialog {
    max-height: calc(100svh - 20px);
    width: calc(100% - 20px);
  }
  .dialog-top {
    padding: 9px 16px;
    font-size: 8px;
    letter-spacing: 0.06em;
  }
  .dialog-content {
    padding: 23px 20px;
  }
  .contact-dialog h2 {
    font-size: 27px;
  }
  .form-pair {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 8px;
  }
  .form-demo-note {
    font-size: 11px;
    margin: 12px 0 20px;
  }
  .contact-dialog form > label,
  .form-pair > label {
    font-size: 13px;
  }
  .delivery-success h3 {
    font-size: 21px;
  }
  .contact-actions .contact-demo-link {
    font-size: 9px;
  }
  .office-link {
    margin-right: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-transition {
    display: none;
  }
  .section-arrival {
    animation: none;
  }
  .delivery-check {
    transition: none;
  }
  .tap-ripple {
    display: none;
  }
}
body.motion-paused .contact-dialog[open],
body.motion-paused .delivery-success,
body.motion-paused .delivery-check {
  animation: none !important;
}
body.motion-paused .tap-ripple {
  display: none;
}
body.motion-paused .has-send-error .form-feedback {
  animation: none !important;
}
@media (min-width: 801px) {
  .hero {
    min-height: 800px;
  }
}
@media (min-width: 1600px) {
  .hero {
    min-height: 940px;
  }
}

/* The gradient follows scroll position directly, without a time-based color loop. */
:root {
  --scroll-rgb: 0 132 215;
  --scroll-next-rgb: 0 152 190;
  --hero-rgb: 0 132 215;
  --scroll-paper: #dceef3;
  --scroll-ink: #081b2d;
}
.scene-light {
  animation: none;
  opacity: 1;
  background: linear-gradient(
    115deg,
    transparent 15%,
    rgb(var(--hero-rgb) / 0.12) 48%,
    rgb(var(--hero-rgb) / 0.48) 100%
  );
  mix-blend-mode: soft-light;
}
.services,
.connections {
  background: radial-gradient(
      ellipse at var(--ambient-x, 15%) var(--ambient-y, 15%),
      rgb(var(--scroll-rgb) / 0.23),
      transparent 70%
    ),
    linear-gradient(
      130deg,
      #ffffffb8 5%,
      rgb(var(--scroll-next-rgb) / 0.12) 95%
    ),
    var(--scroll-paper);
}
.ai-office,
.ai-office[data-active-role] {
  background-color: var(--scroll-ink);
  transition: none;
}
.ai-office:after {
  background: radial-gradient(
    ellipse at var(--ambient-x, 15%) var(--ambient-y, 15%),
    rgb(var(--scroll-rgb) / 0.24),
    transparent 70%
  );
}
.contact {
  background-color: var(--scroll-ink);
}
.contact:after {
  background: radial-gradient(
    ellipse at var(--pointer-x, 75%) var(--pointer-y, 50%),
    rgb(var(--scroll-rgb) / 0.25),
    transparent 70%
  );
}
