:root {
  --black: #07080a;
  --black-soft: #0b0d10;
  --surface: #101216;
  --surface-high: #17191e;
  --white: #f3f4f6;
  --grey: #9a9fa9;
  --grey-deep: #666c76;
  --accent: #f3f4f6;
  --accent-muted: #c7c9ce;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(7, 8, 10, 0.18);
  --section-inline: clamp(24px, 5vw, 80px);
  --section-block: clamp(88px, 8vw, 128px);
  --max-width: 1280px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: "Noto Sans SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button,
a,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

::selection {
  background: var(--accent);
  color: var(--black);
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 16px;
  background: var(--white);
  color: var(--black);
  transition: transform 180ms ease;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-shell,
.nav-shell,
.hero-shell {
  width: min(calc(100% - (var(--section-inline) * 2)), var(--max-width));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: var(--section-block);
}

section[id] {
  scroll-margin-top: 64px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: 72px;
  background: linear-gradient(to bottom, rgba(7, 8, 10, 0.72), transparent);
  transition: height 300ms var(--ease-out), background 300ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  height: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 8, 10, 0.98);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-lockup {
  display: grid;
  place-items: center;
  width: 148px;
  height: 38px;
}

.brand-lockup img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
  margin-left: auto;
  margin-right: clamp(24px, 4vw, 64px);
}

.desktop-nav a {
  position: relative;
  color: rgba(243, 244, 246, 0.74);
  font-size: 14px;
  font-weight: 500;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--white);
  transition: transform 240ms var(--ease-out);
}

.desktop-nav a:hover {
  color: var(--white);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-toggle,
.menu-toggle {
  display: grid;
  place-items: center;
  min-width: 44px;
  min-height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.language-toggle {
  color: rgba(243, 244, 246, 0.72);
  font-family: "Sora", sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.language-toggle:hover {
  color: var(--white);
}

.menu-toggle {
  display: none;
  position: relative;
}

.menu-toggle span:not(.sr-only) {
  position: absolute;
  width: 22px;
  height: 1px;
  background: var(--white);
  transition: transform 250ms var(--ease-out), top 250ms var(--ease-out);
}

.menu-toggle span:nth-child(2) {
  top: 18px;
}

.menu-toggle span:nth-child(3) {
  top: 26px;
}

.site-header.is-open .menu-toggle span:nth-child(2) {
  top: 22px;
  transform: rotate(45deg);
}

.site-header.is-open .menu-toggle span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 64px 0 0;
  z-index: 99;
  padding: 32px var(--section-inline) 48px;
  overflow-y: auto;
  background: #07080a;
  overscroll-behavior: contain;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu a:not(.button) {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(18px, 5vw, 22px);
  font-weight: 600;
  letter-spacing: -0.015em;
  white-space: nowrap;
}

.mobile-menu .button {
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  gap: 22px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button:active {
  transform: translateY(0);
}

.button-small {
  min-height: 40px;
  padding-inline: 18px;
  font-size: 13px;
}

.button-blue {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--black);
}

.button-blue:hover {
  border-color: var(--accent-muted);
  background: var(--accent-muted);
}

.button-dark {
  min-width: 162px;
  background: var(--black);
  color: var(--white);
}

.button-light {
  border-color: #fff;
  background: #fff;
  color: #08090b;
}

.button-light:hover {
  border-color: #e9e9e9;
  background: #e9e9e9;
}

.button-light,
.button-light span {
  white-space: nowrap;
}

.button-dark:hover {
  background: #1b1e24;
}

.button[disabled] {
  opacity: 0.52;
  pointer-events: none;
}

.hero {
  position: relative;
  min-height: clamp(760px, 100svh, 960px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--black);
}

.hero-image {
  position: absolute;
  inset: 0 0 0 25%;
}

.hero-image::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(90deg, var(--black) 0%, rgba(7, 8, 10, 0.92) 18%, rgba(7, 8, 10, 0.12) 58%, rgba(7, 8, 10, 0.14) 100%);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  transform: scale(1.025);
  filter: grayscale(1) saturate(0) contrast(1.04);
  animation: hero-settle 1.8s var(--ease-out) both;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, var(--black) 0%, transparent 34%),
    linear-gradient(to right, rgba(7, 8, 10, 0.34), transparent 48%);
}

.hero-shell {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: clamp(760px, 100svh, 960px);
  padding-top: 72px;
}

.hero-copy {
  width: min(780px, 64vw);
  padding-bottom: 4vh;
}

.hero-company {
  margin-bottom: 32px;
  color: rgba(243, 244, 246, 0.68);
  font-family: "Sora", "Noto Sans SC", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
}

.hero h1 {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 780px;
  margin-bottom: 30px;
  font-size: clamp(48px, 4.8vw, 72px);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1;
}

.hero h1 br { display: none; }

.mobile-break {
  display: none;
}

.hero-lead {
  max-width: 520px;
  margin-bottom: 42px;
  color: rgba(243, 244, 246, 0.72);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.8;
}

.hero-actions .button,
.hero-actions .text-link { white-space: nowrap; }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
  color: rgba(243, 244, 246, 0.78);
  font-size: 14px;
  transition: color 180ms ease;
}

.text-link:hover {
  color: var(--white);
}

.hero-index {
  position: absolute;
  right: 0;
  bottom: 34px;
  display: flex;
  gap: 22px;
  color: rgba(243, 244, 246, 0.48);
  font-family: "Sora", sans-serif;
  font-size: 9px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-index span + span {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.thesis {
  background: var(--black);
}

.thesis-grid {
  display: grid;
  grid-template-columns: minmax(160px, 0.75fr) minmax(520px, 2.35fr) minmax(240px, 0.9fr);
  gap: clamp(28px, 4vw, 76px);
  align-items: start;
}

.thesis-kicker {
  padding-top: 12px;
  color: var(--grey);
  font-size: 13px;
}

.thesis h2,
.section-heading h2,
.enterprise-intro h2,
.scenarios > .section-shell > h2,
.appointment h2 {
  margin-bottom: 0;
  font-size: clamp(36px, 3.9vw, 56px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1.12;
}

.thesis-copy {
  padding-top: 12px;
}

.thesis-copy > p:first-child {
  margin-bottom: 64px;
  color: var(--grey);
  font-size: 16px;
  line-height: 1.9;
}

.company-signature {
  margin-bottom: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: rgba(243, 244, 246, 0.72);
  font-size: 12px;
}

.company-signature span {
  color: var(--grey-deep);
  font-family: "Sora", sans-serif;
  font-size: 10px;
  letter-spacing: 0.06em;
}

.ecosystem {
  padding-block: clamp(78px, 7.5vw, 112px);
  border-top: 1px solid var(--line);
  background: var(--black-soft);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.6fr);
  gap: 56px;
  align-items: end;
  margin-bottom: clamp(48px, 5vw, 72px);
}

.section-heading > p {
  max-width: 420px;
  margin: 0 0 8px auto;
  color: var(--grey);
  font-size: 16px;
  line-height: 1.9;
}

.ecosystem-heading {
  display: block;
  margin-bottom: clamp(42px, 4.6vw, 62px);
}

.ecosystem-heading h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 2.55vw, 36px);
  letter-spacing: -0.045em;
}

.ecosystem-heading > p {
  max-width: 720px;
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
}

.ecosystem-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.8vw, 24px);
}

.ecosystem-card {
  position: relative;
  min-width: 0;
  aspect-ratio: 1 / 1.02;
  overflow: hidden;
  border: 0;
  border-radius: 16px;
  background: var(--surface);
  isolation: isolate;
  transition: transform 320ms var(--ease-out);
}

.ecosystem-card::after {
  position: absolute;
  z-index: 1;
  content: "";
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(5, 6, 8, 0.44), transparent 32%),
    linear-gradient(to top, rgba(5, 6, 8, 0.9) 0%, rgba(5, 6, 8, 0.3) 46%, transparent 72%);
}

.ecosystem-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
  transition: transform 620ms var(--ease-out), filter 360ms ease;
}

.ecosystem-card-personal > img { object-position: 67% center; }
.ecosystem-card-service > img { object-position: 55% center; }
.ecosystem-card-enterprise > img { object-position: 58% center; }

.ecosystem-card:hover {
  transform: translateY(-4px);
}

.ecosystem-card:hover > img {
  filter: saturate(1) contrast(1.06);
  transform: scale(1.035);
}

.ecosystem-card-meta {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 26px;
  color: rgba(243, 244, 246, 0.62);
  font: 500 8px/1.2 "Sora", sans-serif;
  letter-spacing: 0.12em;
}

.ecosystem-card-copy {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 28px;
  left: 24px;
  text-align: center;
}

.ecosystem-card-copy h3 {
  margin-bottom: 8px;
  font-size: clamp(24px, 2.25vw, 32px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.18;
}

.ecosystem-card-copy p {
  margin-bottom: 0;
  color: rgba(243, 244, 246, 0.72);
  font-size: 12px;
}

.ecosystem-card-action {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
  padding: 10px 16px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 999px;
  background: rgba(243, 244, 246, 0.88);
  color: var(--black);
  font-size: 11px;
  line-height: 1;
  backdrop-filter: blur(8px);
  transition: background 220ms ease, transform 220ms var(--ease-out);
}

.ecosystem-card-action b { font-weight: 650; }
.ecosystem-card-action i { font-style: normal; }

.ecosystem-card:hover .ecosystem-card-action {
  background: var(--white);
  transform: translateY(-2px);
}

.product-composition {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.product-plane {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: clamp(28px, 3.2vw, 48px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  transition: background 280ms ease, color 280ms ease;
}

.product-enterprise {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.46fr);
  grid-template-rows: auto 1fr auto;
  gap: 34px clamp(32px, 4vw, 64px);
  align-items: start;
  min-height: 410px;
  background:
    linear-gradient(145deg, rgba(243, 244, 246, 0.055), transparent 46%),
    var(--surface);
}

.product-enterprise .product-topline {
  grid-column: 1 / -1;
}

.product-topline {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 24px;
  font-family: "Sora", sans-serif;
}

.product-type {
  color: rgba(243, 244, 246, 0.48);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.product-state {
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(243, 244, 246, 0.34);
  color: rgba(243, 244, 246, 0.72);
  font-family: "Noto Sans SC", sans-serif;
  font-size: 10px;
  letter-spacing: normal;
}

.product-index {
  color: rgba(243, 244, 246, 0.36);
  font-size: 11px;
}

.enterprise-mark-wrap {
  position: relative;
  grid-column: 2;
  grid-row: 2;
  align-self: center;
  justify-self: end;
  width: 100%;
  max-width: 190px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line);
  opacity: 0.72;
  transition: opacity 280ms ease, transform 280ms var(--ease-out);
}

.product-enterprise:hover .enterprise-mark-wrap {
  opacity: 0.88;
  transform: translateY(-4px);
}

.enterprise-mark-wrap::after {
  position: absolute;
  content: "";
  inset: 0;
  background:
    linear-gradient(140deg, transparent 34%, rgba(16, 18, 22, 0.08) 72%, rgba(16, 18, 22, 0.72) 100%),
    linear-gradient(to top, rgba(16, 18, 22, 0.28), transparent 50%);
}

.enterprise-mark-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) saturate(0) contrast(1.08);
  transform: scale(1.02);
}

.product-maincopy {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 2;
  align-self: center;
  max-width: 560px;
  margin: 0;
}

.product-plane h3 {
  margin-bottom: 16px;
  font-size: clamp(26px, 2.85vw, 42px);
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 1.15;
}

.product-plane p {
  max-width: 470px;
  margin-bottom: 0;
  color: var(--grey);
  font-size: 15px;
  line-height: 1.8;
}

.capability-line {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  grid-row: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 26px;
  margin: 0;
  padding: 24px 70px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  color: rgba(243, 244, 246, 0.64);
  font-size: 12px;
}

.ecosystem .capability-line {
  display: none;
}

.capability-line li::before {
  content: "+";
  margin-right: 8px;
  color: var(--white);
}

.plane-link {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: transform 240ms var(--ease-out), background 240ms ease;
}

.plane-link:hover {
  transform: rotate(-45deg);
  background: var(--white);
  color: var(--black);
}

.product-assistant,
.product-planet {
  display: grid;
  grid-template-columns: minmax(160px, 0.42fr) minmax(0, 1fr) minmax(90px, 0.22fr);
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
  min-height: 220px;
}

.product-assistant .product-topline,
.product-planet .product-topline {
  grid-column: 1;
  align-self: stretch;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.product-assistant > div:nth-child(2),
.product-planet > div:nth-child(2) {
  position: relative;
  z-index: 2;
  grid-column: 2;
}

.product-assistant {
  order: 1;
  min-height: 155px;
  background: #15171b;
  color: var(--white);
}

.product-assistant:hover {
  background: #1b1e23;
}

.product-assistant .plane-link {
  border-color: var(--line);
}

.product-assistant .plane-link:hover {
  background: var(--white);
  color: var(--black);
}

.product-assistant .product-type,
.product-assistant .product-index,
.product-assistant p {
  color: rgba(243, 244, 246, 0.54);
}

.product-assistant h3,
.product-planet h3 {
  max-width: 520px;
  margin-bottom: 12px;
  font-size: clamp(26px, 2.45vw, 36px);
}

.product-corner {
  display: none;
}

.product-planet {
  order: 2;
  min-height: 165px;
  background: #0d0f12;
}

.product-enterprise {
  order: 3;
  min-height: 270px;
}

.planet-orbit {
  position: relative;
  right: auto;
  bottom: auto;
  grid-column: 3;
  justify-self: end;
  width: 170px;
  aspect-ratio: 1;
  border: 1px solid rgba(243, 244, 246, 0.32);
  border-radius: 50%;
  transform: translateX(34%);
  transition: transform 320ms var(--ease-out);
}

.product-planet:hover .planet-orbit {
  transform: translateX(28%) scale(0.96);
}

.planet-orbit::before,
.planet-orbit::after {
  position: absolute;
  content: "";
  border: 1px solid var(--line);
  border-radius: 50%;
}

.planet-orbit::before {
  inset: 26px;
}

.planet-orbit::after {
  inset: 62px;
}

.planet-orbit span {
  position: absolute;
  top: 40px;
  left: 34px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white);
}

.chapter-heading {
  display: grid;
  grid-template-columns: 96px minmax(0, 1.62fr) minmax(270px, 0.56fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: end;
}

.chapter-heading-simple {
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}

.chapter-heading-simple .chapter-lead {
  justify-self: start;
}

.chapter-number {
  display: grid;
  gap: 8px;
  align-self: start;
  padding-top: 8px;
  font-family: "Sora", sans-serif;
}

.chapter-number span {
  font-size: 14px;
  font-weight: 600;
}

.chapter-number small,
.chapter-kicker {
  color: var(--grey-deep);
  font-family: "Sora", sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.13em;
}

.chapter-kicker {
  margin-bottom: 22px;
}

.chapter-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(28px, 2.55vw, 36px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.chapter-lead {
  max-width: 760px;
  margin: 0;
  color: #62666d;
  font-size: 15px;
  line-height: 1.8;
}

.dpstarai-chapter {
  border-top: 1px solid var(--line);
  background: var(--black);
  color: var(--white);
}

.dpstarai-chapter .chapter-number small,
.dpstarai-chapter .chapter-kicker,
.dpstarai-chapter .chapter-lead {
  color: var(--grey);
}

.assistant-showcase {
  display: grid;
  grid-template-columns: minmax(390px, 0.78fr) minmax(0, 1.22fr);
  gap: 16px;
  margin-top: clamp(54px, 6vw, 82px);
}

.assistant-capabilities {
  min-height: 590px;
  padding: 22px;
  border-radius: 18px;
  background: #0d0f12;
}

.capabilities-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 54px;
  padding: 0 14px 14px;
}

.capabilities-heading p,
.capabilities-heading span {
  margin: 0;
  color: var(--grey);
  font-size: 11px;
}

.capabilities-heading span {
  color: var(--grey-deep);
  font-size: 10px;
}

.assistant-capabilities ol {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.assistant-capabilities li {
  display: grid;
  grid-template-columns: 30px minmax(130px, 0.75fr) minmax(150px, 1.25fr) 22px;
  gap: 14px;
  align-items: center;
  min-height: 72px;
  padding: 0 14px;
  border-radius: 12px;
  cursor: pointer;
  outline: none;
  transition: background 220ms ease, transform 280ms var(--ease-out);
}

.assistant-capabilities li:hover,
.assistant-capabilities li:focus-visible,
.assistant-capabilities li.is-active {
  background: #1a1d22;
  transform: translateX(4px);
}

.assistant-capabilities li > span {
  color: var(--grey-deep);
  font-family: "Sora", sans-serif;
  font-size: 9px;
}

.assistant-capabilities li strong {
  font-size: 15px;
  font-weight: 600;
}

.assistant-capabilities li small {
  color: var(--grey);
  font-size: 11px;
}

.assistant-capabilities li i {
  color: var(--white);
  font-size: 13px;
  font-style: normal;
  opacity: 0;
  transform: translate(-5px, 5px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.assistant-capabilities li:hover i,
.assistant-capabilities li:focus-visible i,
.assistant-capabilities li.is-active i {
  opacity: 1;
  transform: translate(0, 0);
}

.assistant-system {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 590px;
  overflow: hidden;
  padding: clamp(24px, 3vw, 38px);
  border-radius: 18px;
  background: var(--black-soft);
  color: var(--white);
}

.assistant-system-visual {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
  opacity: 0.86;
  transform: scale(1.01);
  transition: transform 800ms var(--ease-out), filter 500ms ease;
}

.assistant-system > *:not(.assistant-system-visual) {
  position: relative;
  z-index: 3;
}

.assistant-system::after {
  position: absolute;
  content: "";
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 6, 8, 0.03) 18%, rgba(5, 6, 8, 0.82) 100%);
}

.assistant-system-flow {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Sora", "Noto Sans SC", sans-serif;
}

.assistant-system-core {
  width: min(410px, 82%);
  margin-top: auto;
  margin-bottom: 0;
  padding: 24px 26px;
  border-radius: 14px;
  background: rgba(7, 8, 10, 0.76);
  backdrop-filter: blur(14px);
  text-align: left;
}

.assistant-system-core span {
  color: var(--grey);
  font-size: 11px;
}

.assistant-system-core strong {
  display: block;
  margin: 14px 0 10px;
  font-family: "Sora", "Noto Sans SC", sans-serif;
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 600;
  letter-spacing: -0.045em;
}

.assistant-system-core p {
  margin: 0;
  color: var(--grey);
  font-size: 12px;
  line-height: 1.8;
}

.assistant-system-flow {
  gap: 8px;
  justify-content: flex-start;
  color: rgba(243,244,246,0.72);
  font-size: 10px;
}

.assistant-system-flow i {
  width: 16px;
  height: 1px;
  background: rgba(255,255,255,0.32);
}

.assistant-system:hover .assistant-system-visual {
  transform: scale(1.045);
}

.dpstar-chapter {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: #0c0e11;
  color: var(--white);
}

.chapter-heading-dark .chapter-number small,
.chapter-heading-dark .chapter-kicker {
  color: var(--grey);
}

.chapter-heading-dark .chapter-lead {
  color: var(--grey);
}

.dpstar-service-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(56px, 7vw, 92px);
  margin-top: clamp(54px, 6vw, 82px);
}

.dpstar-service-visual {
  position: relative;
  grid-column: 1 / -1;
  min-height: clamp(440px, 42vw, 570px);
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #08090b;
}

.dpstar-service-visual::after,
.enterprise-visual::after {
  display: none;
}

.dpstar-service-visual img,
.enterprise-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease-out), filter 500ms ease;
}

.dpstar-service-visual:hover img,
.enterprise-visual:hover img {
  transform: scale(1.035);
}

.dpstar-service-visual figcaption {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: clamp(24px, 4vw, 52px);
  bottom: auto;
  left: clamp(24px, 4vw, 52px);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  text-align: center;
  transform: translateY(-50%);
}

.dpstar-service-visual figcaption > strong {
  max-width: none;
  color: var(--white);
  font: 600 clamp(24px, 2.75vw, 39px)/1.3 "Noto Sans SC", sans-serif;
  letter-spacing: -0.035em;
  white-space: nowrap;
  text-shadow: 0 2px 20px rgba(0,0,0,0.72);
}

.dpstar-visual-metric {
  display: flex;
  align-items: baseline;
  gap: 9px;
  flex: 0 0 auto;
  padding: 0;
  color: var(--white);
  text-shadow: 0 2px 18px rgba(0,0,0,0.78);
}

.dpstar-visual-metrics,
.enterprise-visual-metrics {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 16px 32px;
  width: max-content;
  max-width: 100%;
}

@media (max-width: 767px) {
  .dpstar-visual-metrics,
  .enterprise-visual-metrics {
    gap: 10px 18px;
  }

  .dpstar-visual-metric,
  .enterprise-visual-metric {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .enterprise-efficiency b {
    max-width: 128px;
    font-size: 13px;
  }

  .dpstar-service-visual figcaption > strong,
  .enterprise-visual figcaption strong {
    max-width: 320px;
    white-space: normal;
  }
}

.dpstar-visual-metric > b {
  font: 600 24px/1 "Sora", sans-serif;
}

.dpstar-visual-metric > b span {
  margin-left: 2px;
  font-size: 0.55em;
}

.dpstar-visual-metric em {
  color: rgba(243,244,246,0.72);
  font-size: 11px;
  font-style: normal;
}

.dpstar-statement {
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: clamp(30px, 4vw, 52px);
  border-radius: 18px;
  background: #15171b;
  color: var(--white);
}

.dpstar-statement > span {
  color: var(--grey);
  font: 500 9px/1 "Sora", sans-serif;
  letter-spacing: 0.12em;
}

.dpstar-statement h3 {
  margin: auto 0;
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1.18;
}

.dpstar-fact {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.dpstar-fact strong {
  font-family: "Sora", sans-serif;
  font-size: clamp(42px, 4.5vw, 66px);
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 1;
}

.dpstar-fact strong span { font-size: 0.4em; }

.dpstar-fact p {
  max-width: 220px;
  margin: 0;
  color: var(--grey);
  font-size: 11px;
}

.service-journey {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-journey li {
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 30px;
  border-radius: 14px;
  background: #0d0f12;
  cursor: pointer;
  outline: none;
  transition: background 220ms ease, transform 280ms var(--ease-out);
}

.service-journey li:hover,
.service-journey li:focus-visible,
.service-journey li.is-active {
  background: #1a1d22;
  transform: translateX(4px);
}

.service-journey li > span {
  display: block;
  margin-bottom: 64px;
  padding-top: 0;
  color: var(--grey-deep);
  font-family: "Sora", sans-serif;
  font-size: 10px;
}

.service-journey strong {
  display: block;
  margin-bottom: 9px;
  font-size: 18px;
  font-weight: 600;
}

.service-journey p {
  max-width: 480px;
  margin: 0;
  color: var(--grey);
  font-size: 12px;
  line-height: 1.8;
}

.dpstar-orbit-graphic {
  display: none;
}

.dpstar-orbit-graphic::before,
.dpstar-orbit-graphic::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255,255,255,0.045);
  border-radius: 50%;
}

.dpstar-orbit-graphic::before { inset: 74px; }
.dpstar-orbit-graphic::after { inset: 152px; }
.dpstar-orbit-graphic span { position: absolute; top: 105px; left: 88px; width: 8px; height: 8px; border-radius: 50%; background: var(--white); }

.enterprise-facts {
  display: grid;
  grid-template-columns: 0.75fr 0.75fr 1.5fr;
  gap: 12px;
  margin-top: 64px;
}

.enterprise-facts article {
  min-height: 180px;
  padding: 30px;
  border-radius: 14px;
  background: #0d0f12;
  transition: background 220ms ease, transform 280ms var(--ease-out);
}

.enterprise-facts article:hover {
  background: #171a1f;
  transform: translateY(-4px);
}

.enterprise-facts strong {
  display: block;
  margin-bottom: 36px;
  font-family: "Sora", "Noto Sans SC", sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1;
}

.enterprise-facts strong span {
  margin-left: 4px;
  color: var(--grey);
  font-size: 0.36em;
  letter-spacing: 0;
}

.enterprise-facts article:last-child strong {
  font-size: clamp(18px, 2vw, 28px);
  letter-spacing: -0.03em;
}

.enterprise-facts p {
  max-width: 260px;
  margin: 0;
  color: var(--grey);
  font-size: 11px;
}

.enterprise-visual {
  position: relative;
  height: clamp(360px, 39vw, 560px);
  margin: 0 0 clamp(56px, 7vw, 92px);
  overflow: hidden;
  border-radius: 18px;
  background: #08090b;
}

.enterprise-visual figcaption {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: clamp(24px, 4vw, 52px);
  bottom: auto;
  left: clamp(24px, 4vw, 52px);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  text-align: center;
  transform: translateY(-50%);
}

.enterprise-visual figcaption strong {
  max-width: none;
  color: var(--white);
  font: 600 clamp(24px, 2.75vw, 39px)/1.3 "Noto Sans SC", sans-serif;
  letter-spacing: -0.035em;
  white-space: nowrap;
  text-shadow: 0 2px 20px rgba(0,0,0,0.72);
}

.enterprise-visual-metric {
  display: flex;
  align-items: baseline;
  gap: 9px;
  flex: 0 0 auto;
  padding: 0;
  color: var(--white);
  text-shadow: 0 2px 18px rgba(0,0,0,0.78);
}

.enterprise-visual-metric b {
  font: 600 26px/1 "Sora", sans-serif;
}

.enterprise-efficiency b {
  font: 600 clamp(15px, 1.45vw, 20px)/1.25 "Noto Sans SC", sans-serif;
  letter-spacing: -0.025em;
}

.enterprise-visual-metric em {
  color: rgba(243,244,246,0.72);
  font-size: 11px;
  font-style: normal;
}

.about-company {
  border-top: 1px solid var(--line);
  background: var(--black-soft);
  color: var(--white);
}

.about-heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.about-heading > div > p {
  margin-bottom: 22px;
  color: var(--grey);
  font: 500 9px/1 "Sora", sans-serif;
  letter-spacing: 0.12em;
}

.about-heading h2 {
  margin: 0;
  font-size: clamp(28px, 2.55vw, 36px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.about-heading > p {
  max-width: 760px;
  margin: 0;
  color: var(--grey);
  font-size: 15px;
  line-height: 1.8;
}

.about-profile {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
  gap: 16px;
  margin-top: clamp(54px, 6vw, 82px);
}

.about-company-name {
  display: grid;
  gap: clamp(34px, 4vw, 52px);
  min-height: 560px;
  padding: clamp(30px, 4vw, 52px);
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(145deg, #1a1d22 0%, #111317 100%);
  color: var(--white);
}

.about-company-profile h3,
.about-company-vision h3,
.about-company-technology h3 {
  margin: 0 0 22px;
  font-size: clamp(20px, 1.95vw, 27px);
  font-weight: 700;
  letter-spacing: -0.045em;
}

.about-company-profile p,
.about-company-vision p,
.about-company-technology p {
  max-width: 520px;
  margin: 0;
  color: var(--grey);
  font-size: 14px;
  line-height: 1.9;
}

.about-business-list {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 10px;
}

.about-business-list a {
  display: grid;
  grid-template-columns: 42px 1fr 28px;
  gap: 22px;
  align-items: center;
  padding: 28px clamp(28px, 4vw, 54px);
  border-radius: 14px;
  background: #0d0f12;
  color: var(--white);
  outline: none;
  transition: background 220ms ease, transform 280ms var(--ease-out);
}

.about-business-list a:hover,
.about-business-list a:focus-visible {
  background: #1a1d22;
  transform: translateX(4px);
}

.about-business-list a > span {
  color: var(--grey-deep);
  font: 500 9px/1 "Sora", sans-serif;
}

.about-business-list strong {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 600;
}

.about-business-list p {
  margin: 0;
  color: var(--grey);
  font-size: 11px;
}

.about-business-list a > i {
  color: var(--white);
  font-size: 14px;
  font-style: normal;
  opacity: 0.42;
  transform: translate(-4px, 4px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.about-business-list a:hover > i,
.about-business-list a:focus-visible > i {
  opacity: 1;
  transform: translate(0, 0);
}

.about-principle {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1.58fr);
  gap: 42px;
  align-items: start;
  margin-top: 16px;
  padding: clamp(30px, 4vw, 52px);
  border-radius: 18px;
  background: #0d0f12;
}

.about-principle span {
  color: var(--grey);
  font-size: 10px;
}

.about-principle p {
  max-width: 900px;
  margin: 0;
  font-size: clamp(24px, 2.7vw, 38px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.42;
}

.enterprise {
  border-top: 1px solid var(--line);
  background: var(--black);
}

.enterprise-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.55fr);
  gap: 56px;
  align-items: end;
  margin-bottom: clamp(54px, 6vw, 82px);
}

.enterprise-intro.chapter-heading-simple {
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}

.enterprise-label {
  margin-bottom: 26px;
  color: var(--white);
  font-family: "Sora", sans-serif;
  font-size: 11px;
  letter-spacing: 0.13em;
}

.ten-second {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 16px;
  padding-bottom: 12px;
  text-align: right;
}

.ten-second strong {
  color: var(--white);
  font-family: "Sora", sans-serif;
  font-size: clamp(76px, 8.8vw, 124px);
  font-weight: 600;
  letter-spacing: -0.09em;
  line-height: 0.72;
}

.ten-second span {
  max-width: 84px;
  color: var(--grey);
  font-size: 12px;
  line-height: 1.5;
}

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

.process-item {
  position: relative;
  min-height: 280px;
  padding: 30px;
  border-radius: 14px;
  background: #0d0f12;
  cursor: pointer;
  outline: none;
  transition: background 260ms ease, transform 280ms var(--ease-out);
}

.process-item + .process-item {
  padding-left: 30px;
}

.process-item:hover,
.process-item.is-active,
.process-item:focus-visible {
  padding-left: 30px;
  background: #1a1d22;
  transform: translateY(-4px);
}

.process-item > span {
  display: block;
  margin-bottom: 64px;
  color: var(--grey-deep);
  font-family: "Sora", sans-serif;
  font-size: 12px;
  transition: color 220ms ease;
}

.process-item:hover > span,
.process-item.is-active > span,
.process-item:focus-visible > span {
  color: var(--white);
}

.process-item h3 {
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 650;
}

.process-item p {
  margin-bottom: 0;
  color: var(--grey);
  font-size: 13px;
  line-height: 1.8;
}

.enterprise-platforms {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 36px;
  color: var(--grey);
  font-size: 13px;
}

.enterprise-platforms div {
  display: flex;
  gap: 12px;
}

.enterprise-platforms b {
  min-width: 96px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  background: #0d0f12;
  color: var(--white);
  font-family: "Sora", "Noto Sans SC", sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-align: center;
}

.proof {
  border-block: 1px solid var(--line);
  background: #0e1014;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof article {
  padding: clamp(52px, 6vw, 80px) clamp(24px, 4vw, 56px);
}

.proof article:first-child {
  padding-left: 0;
}

.proof article:last-child {
  padding-right: 0;
}

.proof article + article {
  border-left: 1px solid var(--line);
}

.proof strong {
  display: block;
  margin-bottom: 20px;
  font-family: "Sora", sans-serif;
  font-size: clamp(52px, 5.8vw, 82px);
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 1;
}

.proof strong span {
  color: var(--white);
  font-size: 0.38em;
  letter-spacing: 0;
}

.proof p {
  max-width: 230px;
  margin-bottom: 0;
  color: var(--grey);
  font-size: 13px;
}

.scenarios {
  background: var(--black-soft);
}

.scenarios > .section-shell > h2 {
  max-width: 1020px;
  margin-bottom: clamp(70px, 9vw, 128px);
}

.scenario-grid {
  display: grid;
  grid-template-columns: 1fr 1.16fr 0.84fr;
  border-top: 1px solid var(--line);
}

.scenario-grid article {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 32px clamp(24px, 3vw, 48px) 36px 0;
}

.scenario-grid article + article {
  padding-left: clamp(24px, 3vw, 48px);
  border-left: 1px solid var(--line);
}

.scenario-grid span {
  color: var(--grey);
  font-size: 12px;
}

.scenario-grid h3 {
  margin: auto 0 24px;
  font-size: clamp(26px, 2.4vw, 36px);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.35;
}

.scenario-grid p {
  max-width: 310px;
  margin-bottom: 0;
  color: var(--grey);
  font-size: 13px;
}

.appointment {
  background: var(--surface-high);
  color: var(--white);
}

.appointment-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(56px, 9vw, 140px);
  align-items: start;
}

.appointment-copy > p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.66);
  font-family: "Sora", sans-serif;
  font-size: 11px;
  letter-spacing: 0.13em;
}

.appointment h2 {
  margin-bottom: 32px;
  font-size: clamp(38px, 4.2vw, 58px);
}

.appointment-copy > span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.appointment-form {
  padding-top: 9px;
}

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

.appointment-form label {
  display: block;
}

.appointment-form label > span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.appointment-form input,
.appointment-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transition: border-color 180ms ease, background 180ms ease;
}

.appointment-form input {
  height: 52px;
  padding: 0 15px;
}

.appointment-form textarea {
  min-height: 94px;
  padding: 13px 15px;
  resize: vertical;
}

.appointment-form input::placeholder,
.appointment-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.appointment-form input:hover,
.appointment-form textarea:hover {
  border-color: rgba(255, 255, 255, 0.7);
}

.appointment-form input:focus,
.appointment-form textarea:focus {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  outline: none;
}

.appointment-form label.has-error input {
  border-color: var(--white);
  background: rgba(7, 8, 10, 0.16);
}

.appointment-form small {
  display: block;
  min-height: 18px;
  margin-top: 5px;
  color: var(--white);
  font-size: 11px;
}

.need-field {
  margin-top: 14px;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 30px;
}

.form-footer .button {
  flex: 0 0 auto;
  min-width: 248px;
  white-space: nowrap;
}

.form-footer .button [data-submit-text] {
  white-space: nowrap;
}

.form-status {
  min-height: 18px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
}

.form-status:empty { display: none; }

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

img,
[data-cms-media] {
  -webkit-user-drag: none;
  user-drag: none;
}

.protect-image-selection img,
.protect-image-selection [data-cms-media] {
  user-select: none;
  -webkit-user-select: none;
}

.protect-image-touch img,
.protect-image-touch [data-cms-media] {
  -webkit-touch-callout: none;
}

.qr-placeholder.has-cms-image {
  border: 0;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  box-shadow: none;
  isolation: auto;
}

.qr-placeholder.has-cms-image > * { visibility: hidden; }

/* Loaded QR artwork must not inherit the decorative placeholder frame. */
.qr-placeholder.has-cms-image::before,
.qr-placeholder.has-cms-image::after {
  display: none;
  content: none;
}

.has-site-watermark::after {
  content: attr(data-watermark);
  position: absolute;
  right: 14px;
  bottom: 12px;
  z-index: 6;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  letter-spacing: 0.12em;
  pointer-events: none;
}

.form-status.is-success {
  color: var(--white);
  font-weight: 600;
}

.appointment-notice {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  max-width: min(430px, calc(100vw - 32px));
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #f5f5f3;
  color: #090a0c;
  font-size: 13px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.appointment-notice.is-visible { opacity: 1; transform: translateY(0); }
.appointment-notice.is-error { background: #241415; color: #fff; border-color: rgba(255, 119, 119, 0.5); }

@media (max-width: 640px) {
  .appointment-notice { right: 16px; bottom: 16px; left: 16px; max-width: none; }
}

.site-footer {
  padding: 76px 0 34px;
  border-top: 1px solid var(--line);
  background: #060708;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(430px, 1.12fr) minmax(560px, 0.88fr);
  gap: clamp(64px, 8vw, 132px);
  align-items: start;
}

.footer-brand-block {
  min-width: 0;
}

.footer-wordmark {
  display: block;
  width: 158px;
  max-width: 158px;
}

.footer-wordmark img { display: block !important; width: 158px !important; max-width: 158px !important; height: auto !important; }

.footer-company {
  margin: 12px 0 34px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 12px;
}

.footer-qr-grid {
  display: grid;
  grid-template-columns: repeat(3, 112px);
  gap: 18px;
}

.footer-qr-item {
  margin: 0;
}

.qr-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  width: 112px;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
  background:
    linear-gradient(90deg, #fff 7px, transparent 7px) 50% 50% / 16px 16px,
    linear-gradient(#fff 7px, transparent 7px) 50% 50% / 16px 16px,
    #e9eaec;
  color: #08090b;
  isolation: isolate;
}

.qr-placeholder::after {
  position: absolute;
  inset: 9px;
  z-index: -1;
  border: 8px solid #08090b;
  border-radius: 2px;
  content: "";
  opacity: 0.11;
}

/* Real QR artwork: remove every placeholder decoration after the base rule. */
.qr-placeholder.has-cms-image::before,
.qr-placeholder.has-cms-image::after {
  display: none;
  border: 0;
  content: none;
  opacity: 0;
}

.qr-placeholder i {
  position: absolute;
  width: 26px;
  height: 26px;
  border: 5px solid #08090b;
  background: #e9eaec;
}

.qr-placeholder i:nth-child(1) { top: 8px; left: 8px; }
.qr-placeholder i:nth-child(2) { top: 8px; right: 8px; }
.qr-placeholder i:nth-child(3) { bottom: 8px; left: 8px; }

.qr-placeholder b {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  min-width: 32px;
  height: 24px;
  padding: 0 5px;
  background: #08090b;
  color: #fff;
  font: 700 9px/1 "Sora", sans-serif;
  letter-spacing: 0.08em;
}

.footer-qr-item figcaption {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

.footer-directory {
  display: grid;
  grid-template-columns: 0.9fr 0.9fr 1.2fr;
  gap: 42px;
}

.footer-directory section {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.footer-directory h2 {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  font-weight: 500;
}

.footer-directory a,
.footer-directory p,
.footer-directory b {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.65;
}

.footer-directory a {
  transition: color 180ms ease, transform 180ms ease;
}

.footer-directory a:hover {
  color: var(--white);
  transform: translateX(2px);
}

.footer-contacts p {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-contacts p + p {
  margin-top: 8px;
}

.footer-contacts p > span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
}

.footer-contacts b {
  color: rgba(255, 255, 255, 0.9);
  cursor: text;
  user-select: text;
}

.footer-legal-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
}

.footer-legal-row nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.footer-legal-row a {
  color: inherit;
  transition: color 180ms ease;
}

.footer-legal-row a:hover { color: rgba(255, 255, 255, 0.82); }

.footer-legal-row p {
  flex: 0 0 auto;
  margin-bottom: 0;
  text-align: right;
}

.footer-icp {
  white-space: nowrap;
}

.privacy-consent {
  position: fixed;
  z-index: 160;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  width: min(680px, calc(100% - 48px));
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  background: rgba(20, 22, 26, 0.96);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(18px);
}

.privacy-consent[hidden] { display: none; }
.privacy-consent strong { display: block; margin-bottom: 5px; font-size: 13px; }
.privacy-consent p { margin: 0; color: rgba(255, 255, 255, 0.58); font-size: 11px; line-height: 1.7; }
.privacy-consent a { display: inline-block; margin-top: 7px; color: rgba(255, 255, 255, 0.82); font-size: 10px; text-decoration: underline; text-underline-offset: 3px; }
.privacy-consent-actions { display: flex; align-items: flex-end; gap: 8px; }
.privacy-consent button { min-width: 78px; height: 36px; padding: 0 12px; border: 1px solid rgba(255, 255, 255, 0.16); background: transparent; color: #fff; font: inherit; font-size: 11px; cursor: pointer; }
.privacy-consent button:last-child { border-color: #fff; background: #fff; color: #090a0c; }

.appointment-form .privacy-check {
  display: flex;
  align-items: flex-start;
  flex: 1 1 auto;
  gap: 10px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.8;
}

.appointment-form .privacy-check > span {
  display: inline;
  margin: 0;
  color: inherit;
  font-size: inherit;
}

.appointment-form .privacy-check input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: #fff;
}
.privacy-check a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

[data-reveal] {
  opacity: 1;
  transform: none;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.tweaks-panel {
  position: fixed;
  z-index: 200;
  right: 20px;
  bottom: 20px;
  width: 220px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(16, 18, 22, 0.96);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px);
  font-family: "Sora", sans-serif;
  font-size: 12px;
}

.tweaks-panel[hidden] {
  display: none;
}

.tweaks-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.tweaks-header button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.tweaks-panel label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

body.reduce-motion *,
body.reduce-motion *::before,
body.reduce-motion *::after {
  scroll-behavior: auto !important;
  animation-duration: 0.001ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.001ms !important;
}

body.wide-crop .hero-image img {
  object-position: center center;
}

@keyframes hero-settle {
  from {
    opacity: 0;
    transform: scale(1.07);
  }
  to {
    opacity: 1;
    transform: scale(1.025);
  }
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 22px;
    margin-right: 24px;
  }

  .hero-copy {
    width: min(680px, 67vw);
  }

  .thesis-grid {
    grid-template-columns: 130px minmax(0, 1fr);
  }

  .thesis-copy {
    grid-column: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 42px;
  }

  .appointment-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
  }
}

@media (max-width: 900px) {
  .desktop-nav,
  .nav-actions > .button-small {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

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

  .ecosystem-card-enterprise {
    grid-column: 1 / -1;
    aspect-ratio: 2 / 0.86;
  }

  .hero-image {
    left: 14%;
  }

  .product-enterprise {
    grid-template-columns: minmax(0, 1fr) minmax(190px, 0.48fr);
    gap: 28px;
  }

  .enterprise-mark-wrap {
    max-width: 230px;
  }

  .product-assistant,
  .product-planet {
    grid-template-columns: 145px minmax(0, 1fr) 80px;
    gap: 28px;
  }

  .chapter-heading {
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 34px;
  }

  .chapter-heading-simple,
  .enterprise-intro.chapter-heading-simple {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .chapter-heading-simple .chapter-lead {
    grid-column: 1;
    justify-self: start;
    max-width: 720px;
  }

  .chapter-heading .chapter-lead {
    grid-column: 2;
    margin-top: 4px;
  }

  .assistant-showcase,
  .dpstar-service-layout,
  .about-profile {
    grid-template-columns: 1fr;
  }

  .dpstar-service-visual {
    min-height: 380px;
  }

  .assistant-system {
    min-height: 500px;
  }

  .dpstar-statement {
    min-height: 460px;
  }

  .dpstar-service-visual {
    min-height: 330px;
  }

  .dpstar-service-visual figcaption {
    right: 20px;
    bottom: auto;
    left: 20px;
    align-items: center;
    flex-direction: column;
    gap: 10px;
  }

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

  .enterprise-visual {
    height: 420px;
    margin-bottom: 48px;
  }

  .enterprise-visual img {
    object-position: 66% center;
  }

  .enterprise-visual figcaption {
    align-items: center;
    flex-direction: column;
    gap: 10px;
  }

  .enterprise-facts {
    grid-template-columns: 1fr 1fr;
  }

  .enterprise-facts article:last-child {
    grid-column: 1 / -1;
  }

  .about-heading {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-heading > p {
    max-width: 760px;
  }

  .enterprise-intro {
    grid-template-columns: 1fr;
  }

  .ten-second {
    justify-content: flex-start;
    text-align: left;
  }

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

  .process-item:nth-child(3) {
    border-left: 0;
  }

  .proof strong {
    font-size: 62px;
  }

  .appointment-grid {
    grid-template-columns: 1fr;
  }

  .appointment-copy {
    max-width: 680px;
  }
}

@media (max-width: 767px) {
  :root {
    --section-inline: 20px;
    --section-block: 76px;
  }

  .site-header,
  .site-header.is-scrolled,
  .site-header.is-open {
    height: 64px;
  }

  .site-header.is-open {
    height: 100dvh;
    background: #07080a;
    backdrop-filter: none;
  }

  .site-header.is-open .nav-shell { height: 64px; }

  .mobile-menu {
    position: absolute;
    inset: 64px 0 0;
    padding-top: 22px;
    background: #07080a;
  }

  .brand-lockup {
    width: 122px;
  }

  .language-toggle {
    min-width: 38px;
  }

  .hero {
    min-height: 844px;
  }

  .hero-shell {
    align-items: flex-start;
    min-height: 844px;
    padding-top: 138px;
  }

  .hero-copy {
    width: 100%;
    padding-bottom: 0;
  }

  .hero-company {
    margin-bottom: 22px;
    font-size: 10px;
  }

  .hero h1 {
    max-width: 360px;
    margin-bottom: 22px;
    font-size: clamp(38px, 11.2vw, 50px);
    letter-spacing: -0.02em;
    line-height: 1;
    gap: 11px;
  }

  .mobile-break {
    display: block;
  }

  .hero-lead {
    max-width: 340px;
    margin-bottom: 28px;
    padding-right: 12px;
    font-size: 15px;
    line-height: 1.7;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    width: max-content;
    max-width: 100%;
  }

  .hero-actions .button {
    min-height: 48px;
    gap: 14px;
    padding-inline: 17px;
  }

  .hero-actions .text-link {
    display: inline-flex;
    align-self: center;
    min-height: 34px;
    font-size: 12px;
  }

  .hero-image {
    inset: 45% -34% 0 0;
    opacity: 0.98;
  }

  .hero-image::after {
    background: linear-gradient(180deg, var(--black) 0%, rgba(7, 8, 10, 0.72) 18%, rgba(7, 8, 10, 0) 54%);
  }

  .hero-image img {
    object-position: 72% center;
    transform: scale(1.02);
  }

  .hero-scrim {
    background: linear-gradient(to top, rgba(7, 8, 10, 0.3), transparent 40%);
  }

  .hero-index {
    right: auto;
    bottom: 22px;
    left: 0;
    gap: 12px;
    font-size: 7px;
  }

  .hero-index span + span {
    padding-left: 12px;
  }

  .thesis-grid,
  .section-heading {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .thesis-kicker {
    padding-top: 0;
  }

  .thesis h2,
  .section-heading h2,
  .enterprise-intro h2,
  .scenarios > .section-shell > h2,
  .appointment h2 {
    font-size: clamp(30px, 8.8vw, 38px);
    letter-spacing: -0.065em;
  }

  .thesis-copy {
    grid-column: auto;
    display: block;
    padding-top: 12px;
  }

  .thesis-copy > p:first-child {
    margin-bottom: 44px;
  }

  .section-heading {
    margin-bottom: 54px;
  }

  .section-heading > p {
    margin-left: 0;
  }

  .ecosystem-heading {
    margin-bottom: 38px;
  }

  .ecosystem-heading h2 {
    margin-bottom: 14px;
    font-size: 30px;
  }

  .ecosystem-heading > p {
    font-size: 14px;
    line-height: 1.75;
  }

  .ecosystem-card-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ecosystem-card,
  .ecosystem-card-enterprise {
    grid-column: auto;
    aspect-ratio: 1 / 0.94;
  }

  .ecosystem-card-copy {
    right: 20px;
    bottom: 24px;
    left: 20px;
  }

  .ecosystem-card-meta {
    top: 20px;
    left: 20px;
  }

  .chapter-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .chapter-number {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 18px;
    border-bottom: 1px solid currentColor;
  }

  .chapter-heading .chapter-lead {
    grid-column: 1;
    margin-top: 0;
  }

  .chapter-heading h2,
  .about-heading h2 {
    font-size: 30px;
  }

  .chapter-lead,
  .about-heading > p {
    font-size: 14px;
  }

  .assistant-showcase,
  .dpstar-service-layout,
  .about-profile {
    margin-top: 58px;
  }

  .assistant-capabilities {
    min-height: auto;
    padding: 14px;
  }

  .capabilities-heading {
    padding-inline: 10px;
  }

  .capabilities-heading span {
    display: none;
  }

  .assistant-capabilities li {
    grid-template-columns: 28px 1fr 20px;
    gap: 12px;
    min-height: 78px;
    padding-inline: 10px;
  }

  .assistant-capabilities li small {
    grid-column: 2;
    margin-top: -12px;
  }

  .assistant-capabilities li i {
    grid-column: 3;
    grid-row: 1 / 3;
  }

  .assistant-system {
    min-height: 380px;
    padding: 28px 22px;
  }

  .assistant-system-visual {
    object-position: 69% center;
  }

  .assistant-system-core {
    width: min(280px, 86%);
    padding: 20px;
  }

  .dpstar-service-visual {
    min-height: 270px;
  }

  .dpstar-service-visual figcaption {
    right: 12px;
    bottom: auto;
    left: 12px;
    gap: 10px;
  }

  .dpstar-statement {
    min-height: 400px;
    padding: 30px 22px;
  }

  .enterprise-visual {
    height: 320px;
  }

  .dpstar-service-visual figcaption > strong,
  .enterprise-visual figcaption strong {
    max-width: 320px;
    white-space: normal;
  }

  .dpstar-fact {
    align-items: start;
    flex-direction: column;
  }

  .service-journey li {
    min-height: 220px;
    padding: 26px;
  }

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

  .enterprise-facts {
    grid-template-columns: 1fr;
    margin-top: 46px;
  }

  .enterprise-facts article,
  .enterprise-facts article:last-child {
    grid-column: auto;
    min-height: 150px;
    padding: 26px;
  }

  .about-heading {
    gap: 26px;
  }

  .about-company-name {
    min-height: 320px;
    padding: 30px 22px;
  }

  .about-business-list a {
    grid-template-columns: 34px 1fr 24px;
    padding: 26px 22px;
  }

  .about-principle {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 54px;
  }

  .about-principle p {
    font-size: clamp(22px, 7vw, 30px);
  }

  .product-composition {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--line);
  }

  .product-plane {
    padding: 26px 24px;
  }

  .product-enterprise {
    display: grid;
    grid-template-columns: 1fr 48px;
    gap: 24px;
    min-height: 230px;
  }

  .enterprise-mark-wrap {
    display: none;
  }

  .product-maincopy {
    grid-column: 1;
    max-width: none;
    margin: 12px 0 0;
  }

  .product-plane h3 {
    font-size: 26px;
  }

  .capability-line {
    padding-right: 46px;
    gap: 6px 16px;
  }

  .product-assistant,
  .product-planet {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    gap: 28px;
    min-height: 230px;
  }

  .product-assistant .product-topline,
  .product-planet .product-topline {
    grid-column: 1;
    grid-row: 1;
    flex-direction: row;
    align-items: center;
  }

  .product-assistant > div:nth-child(2),
  .product-planet > div:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
    align-self: end;
  }

  .planet-orbit {
    position: absolute;
    right: -76px;
    bottom: -92px;
    width: 220px;
    transform: none;
  }

  .enterprise-intro {
    gap: 68px;
    margin-bottom: 66px;
  }

  .ten-second strong {
    font-size: 88px;
  }

  .process {
    grid-template-columns: 1fr;
  }

  .process-item,
  .process-item + .process-item,
  .process-item:nth-child(3) {
    min-height: 0;
    padding: 26px 0 30px;
    border-left: 0;
  }

  .process-item:hover,
  .process-item.is-active,
  .process-item:focus-visible {
    padding-left: 18px;
  }

  .process-item > span {
    margin-bottom: 36px;
  }

  .enterprise-platforms {
    display: block;
    padding-top: 34px;
  }

  .enterprise-platforms > span {
    display: block;
    margin-bottom: 18px;
  }

  .enterprise-platforms div {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .enterprise-platforms b {
    min-width: 0;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof article,
  .proof article:first-child,
  .proof article:last-child {
    display: grid;
    grid-template-columns: 1fr 0.82fr;
    gap: 24px;
    align-items: end;
    padding: 46px 0;
  }

  .proof article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .proof strong {
    margin-bottom: 0;
    font-size: clamp(48px, 15vw, 66px);
  }

  .proof p {
    padding-bottom: 8px;
  }

  .scenarios > .section-shell > h2 {
    margin-bottom: 70px;
  }

  .scenario-grid {
    grid-template-columns: 1fr;
  }

  .scenario-grid article,
  .scenario-grid article + article {
    min-height: 330px;
    padding: 26px 0 30px;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .scenario-grid h3 {
    margin-top: auto;
    font-size: 27px;
  }

  .appointment-grid {
    gap: 62px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .form-footer .button {
    width: 100%;
    min-width: 0;
    padding-inline: 14px;
    font-size: clamp(11px, 3.25vw, 14px);
    white-space: nowrap;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
    margin-bottom: 24px;
  }

  .footer-legal {
    display: block;
    margin-top: 38px;
  }

  .footer-legal span {
    display: block;
    margin-top: 10px;
  }
}

.desktop-nav a[aria-current="page"] {
  color: var(--white);
}

.desktop-nav a,
.nav-actions .button,
.ecosystem-card-copy h3,
.footer-contacts b {
  white-space: nowrap;
}

.desktop-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.chapter-heading h1,
.about-heading h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(28px, 2.55vw, 36px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.appointment h1 {
  max-width: 680px;
  margin: 0 0 32px;
  font-size: clamp(38px, 4.2vw, 58px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1.12;
}

.process-item h2 {
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 650;
}

.standalone-main {
  min-height: 70vh;
  padding-top: 72px;
}

.standalone-main > .section {
  padding-top: clamp(72px, 8vw, 112px);
}

.legal-page {
  padding-top: 72px;
  background: #090a0c;
}

.legal-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  justify-content: space-between;
  gap: clamp(70px, 10vw, 150px);
  padding-block: clamp(70px, 9vw, 120px);
}

.legal-nav {
  position: sticky;
  top: 96px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.legal-nav p {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
}

.legal-nav a {
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
  transition: color 180ms ease, transform 180ms ease;
}

.legal-nav a:hover { color: #fff; transform: translateX(3px); }

.legal-content > header {
  margin-bottom: 64px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.legal-content > header p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.42);
  font: 500 10px/1 "Sora", sans-serif;
  letter-spacing: 0.14em;
}

.legal-content > header h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 5vw, 64px);
  letter-spacing: -0.06em;
}

.legal-content > header span { color: rgba(255, 255, 255, 0.44); font-size: 11px; }
.legal-content > section { padding-block: 12px 60px; scroll-margin-top: 90px; }
.legal-content h2 { margin: 0 0 24px; font-size: 28px; letter-spacing: -0.04em; }
.legal-content h3 { margin: 34px 0 12px; font-size: 16px; }
.legal-content p { color: rgba(255, 255, 255, 0.64); font-size: 14px; line-height: 2; }
.legal-content p + p { margin-top: 14px; }
.legal-content a { color: #fff; text-decoration: underline; text-underline-offset: 4px; }

.legal-table { border-top: 1px solid var(--line); }
.legal-table > div { display: grid; grid-template-columns: 0.7fr 1.35fr 1.15fr; gap: 22px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.legal-table strong { font-size: 13px; }
.legal-table span,
.legal-table em { color: rgba(255, 255, 255, 0.54); font-size: 12px; font-style: normal; line-height: 1.8; }
.legal-empty { margin-top: 22px; padding: 22px; background: #14161a; color: rgba(255, 255, 255, 0.56); font-size: 12px; }

/* Enterprise workflow: horizontally extensible CMS carousel. */
.process-carousel {
  position: relative;
  margin-top: 34px;
  --process-gap: 12px;
  --process-edge: 12px;
}

.process-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 22px;
}

.process-control {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #f3f4f6;
  color: #07080a;
  font-size: 19px;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, opacity 180ms ease, background 180ms ease;
}

.process-control:hover:not(:disabled) { transform: translateY(-2px); background: #fff; }
.process-control:disabled { opacity: 0.28; cursor: default; }

.process-viewport {
  width: 100%;
  overflow: hidden;
}

.process-viewport::-webkit-scrollbar { display: none; }

.process-carousel .process {
  display: grid;
  width: 100%;
  min-width: 100%;
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--process-gap) * 3)) / 4);
  gap: var(--process-gap);
}

.process-carousel .process-item.is-process-hidden {
  display: none !important;
}

.process-carousel .process-item,
.process-carousel .process-item + .process-item,
.process-carousel .process-item:nth-child(3) {
  min-width: 0;
  min-height: 280px;
  padding: 30px;
  scroll-snap-align: start;
  background: #0d0f12;
  border-radius: 14px;
}

.process-carousel .process-item:hover,
.process-carousel .process-item.is-active,
.process-carousel .process-item:focus-visible {
  padding-left: 30px;
  background: #1a1d22;
  transform: translateY(-4px);
}

.appointment-embedded {
  margin-top: var(--section-block);
  border-top: 1px solid var(--line);
  background: #17191e;
}

@media (max-width: 1080px) {
  .footer-main { grid-template-columns: 1fr; }
  .footer-directory { max-width: 760px; }
}

@media (max-width: 767px) {
  .standalone-main { padding-top: 64px; }
  .chapter-heading h1,
  .about-heading h1 { font-size: 30px; }
  .appointment h1 { font-size: 36px; }
  .process-item h2 { font-size: 22px; }
  .ecosystem-card-copy h3 { font-size: clamp(19px, 6.1vw, 27px); }
  .dpstar-service-visual figcaption > strong,
  .enterprise-visual figcaption > strong {
    max-width: none;
    font-size: clamp(17px, 5.2vw, 25px);
    white-space: nowrap;
  }
  html[lang="en"] .dpstar-service-visual figcaption > strong,
  html[lang="en"] .enterprise-visual figcaption > strong {
    font-size: clamp(11px, 3.25vw, 15px);
    letter-spacing: -0.035em;
  }
  html[lang="en"] .ecosystem-card-copy h3 { font-size: clamp(16px, 4.8vw, 22px); }
  html[lang="en"] .appointment h1 { font-size: clamp(28px, 8.2vw, 34px); }
  html[lang="en"] .chapter-heading h1,
  html[lang="en"] .about-heading h1 { font-size: clamp(25px, 7.2vw, 30px); }
  .footer-main { gap: 56px; }
  .footer-qr-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
  .qr-placeholder { width: 100%; }
  .footer-directory { grid-template-columns: 1fr 1fr; gap: 42px 26px; }
  .footer-contacts { grid-column: 1 / -1; }
  .footer-legal-row { display: block; margin-top: 44px; }
  .footer-legal-row p { margin-top: 22px; text-align: left; line-height: 1.7; }
  .privacy-consent { right: 12px; bottom: 12px; grid-template-columns: 1fr; width: calc(100% - 24px); }
  .privacy-consent-actions { justify-content: flex-end; }
  .legal-layout { grid-template-columns: 1fr; gap: 42px; padding-block: 56px 76px; }
  .legal-nav { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .legal-nav p { grid-column: 1 / -1; }
  .legal-content > header { margin-bottom: 42px; }
  .legal-content > header h1 { font-size: 40px; }
  .legal-content h2 { font-size: 24px; }
  .legal-table > div { grid-template-columns: 1fr; gap: 10px; }
  .process-controls { margin-bottom: 16px; }
  .process-control { width: 42px; height: 42px; }
  .process-carousel .process-item,
  .process-carousel .process-item + .process-item,
  .process-carousel .process-item:nth-child(3) {
    min-width: 0;
    min-height: 250px;
    padding: 26px;
    background: #0d0f12;
    border-radius: 14px;
  }
  .process-carousel .process {
    grid-auto-columns: min(82vw, 340px);
  }
  .process-carousel .process-item:hover,
  .process-carousel .process-item.is-active,
  .process-carousel .process-item:focus-visible { padding-left: 26px; }
  .appointment-embedded { margin-top: 76px; }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
