@font-face {
  font-family: "A2 Gothic X Condensed";
  src: url("./assets/fonts/A2GothicXCondensed-Heavy.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 900;
}

@font-face {
  font-family: "A2 Gothic Black";
  src: url("./assets/fonts/A2Gothic-Black.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 900;
}

@font-face {
  font-family: "A2 Gothic Light";
  src: url("./assets/fonts/A2Gothic-Light.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: "A2 Gothic Regular";
  src: url("./assets/fonts/A2Gothic-Regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Olean";
  src: url("./assets/fonts/Olean.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

:root {
  color-scheme: dark;
  --ink: #050505;
  --surface: #111111;
  --surface-raised: #181818;
  --paper: #f4f1ec;
  --muted: #aaa6a1;
  --line: #33302e;
  --red: #ef130d;
  --red-dark: #9f0805;
  /* Legacy variable name retained for compatibility; all accents use brand red. */
  --orange: #ef130d;
  --focus: #ef130d;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --shell: min(1440px, calc(100vw - 72px));
  --display: "A2 Gothic Black", Arial, sans-serif;
  --display-light: "A2 Gothic Light", Arial, sans-serif;
  --condensed: "A2 Gothic X Condensed", "Arial Narrow", Impact, sans-serif;
  --script: "Olean", "Segoe Script", cursive;
  --sans: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

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

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 78% 12%, rgba(239, 19, 13, 0.09), transparent 30%),
    radial-gradient(circle at 18% 58%, rgba(239, 19, 13, 0.045), transparent 34%);
  content: "";
  pointer-events: none;
}

body:has(dialog[open]) {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

button {
  color: inherit;
}

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

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  translate: 0 -160%;
  padding: 10px 16px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 700;
}

.skip-link:focus {
  translate: 0;
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr) auto;
  align-items: center;
  width: 100%;
  min-height: 76px;
  padding: 0 max(36px, calc((100vw - 1440px) / 2));
  border-bottom: 1px solid transparent;
  background: rgba(5, 5, 5, 0.76);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  border-color: transparent;
  background: rgba(5, 5, 5, 0.74);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.18);
  backdrop-filter: blur(14px) saturate(1.18);
}

.home-page .site-header:not(.is-scrolled) {
  border-color: transparent;
  background: transparent;
}

.brand-link {
  display: flex;
  align-items: center;
  width: 156px;
  min-height: 58px;
}

.brand-link img {
  width: 100%;
  height: 48px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 1.8vw, 34px);
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-block: 12px;
  color: #c6c1bc;
  font-size: 15px;
  white-space: nowrap;
  transition: color 180ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  scale: 0 1;
  transform-origin: right;
  transition: scale 200ms ease;
}

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

.site-nav a:hover::after,
.site-nav a.is-active::after {
  scale: 1;
  transform-origin: left;
}

.manager-trigger,
.primary-action,
.verify-form button,
.closing-meta button {
  min-height: 46px;
  border: 0;
  background: var(--red);
  color: white;
  cursor: pointer;
  font-weight: 700;
  transition: background-color 180ms ease, color 180ms ease, translate 180ms ease;
}

.manager-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 13px;
}

.manager-trigger span,
.primary-action span,
.closing-meta button span {
  color: var(--orange);
}

.manager-trigger:hover,
.primary-action:hover,
.verify-form button:hover,
.closing-meta button:hover {
  background: var(--paper);
  color: var(--ink);
  translate: 0 -2px;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  grid-template-rows: auto auto;
  min-height: 900px;
  padding-top: 190px;
  padding-bottom: 70px;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  top: 76px;
  right: -16vw;
  z-index: -2;
  width: 900px;
  height: 820px;
  background: radial-gradient(circle, rgba(239, 19, 13, 0.17), transparent 66%);
  content: "";
  filter: blur(18px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 650px;
  padding-bottom: 64px;
}

.hero-eyebrow,
.section-index,
.routing-meta,
.plaza-frame p,
.closing-copy > p,
.profile-content > p:first-child,
.manager-intro > p:first-of-type {
  margin: 0;
  color: var(--orange);
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.15em;
}

.hero h1 {
  margin: 0 0 24px;
  font-size: clamp(76px, 7.2vw, 132px);
  line-height: 0.78;
  letter-spacing: 0;
}

.hero-title-clip,
.hero-title-word {
  display: block;
}

.hero-title-clip {
  overflow: visible;
  perspective: 700px;
}

.hero-title-word {
  color: var(--red);
  font-family: var(--display);
  font-weight: 900;
  white-space: nowrap;
}

.hero h1 small {
  display: block;
  margin-top: 0.7em;
  font-family: var(--sans);
  font-size: 0.26em;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
}

.hero-intro {
  max-width: 560px;
  margin: 0;
  color: #bcb7b1;
  font-size: clamp(16px, 1.25vw, 19px);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.primary-action {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  padding: 0 22px;
}

.text-action {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  color: #cbc6c0;
  font-size: 16px;
  font-weight: 700;
}

.text-action:hover {
  border-color: var(--orange);
  color: var(--paper);
}

.hero-stage {
  position: relative;
  align-self: stretch;
  min-height: 570px;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, #0a0a0a 0 58%, #180705 100%);
}

.hero-stage::before,
.hero-stage::after {
  position: absolute;
  content: "";
}

.hero-symbol-system {
  --symbol-x: 40%;
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
}

.hero-symbol-core,
.hero-symbol-echo {
  position: absolute;
  top: 50%;
  left: var(--symbol-x);
  width: clamp(72px, 7vw, 108px);
  height: auto;
  translate: -50% -50%;
}

.hero-symbol-core {
  z-index: 2;
  opacity: 0.16;
  filter: drop-shadow(0 0 22px rgba(239, 19, 13, 0.56));
}

.hero-symbol-echo {
  z-index: 1;
  opacity: 0;
  filter: drop-shadow(0 0 16px rgba(239, 19, 13, 0.5));
}

.hero-symbol-trace {
  position: absolute;
  top: 50%;
  right: 8%;
  left: var(--symbol-x);
  height: 1px;
  background: linear-gradient(90deg, rgba(239, 19, 13, 0.8), rgba(239, 19, 13, 0.36) 38%, transparent 100%);
  box-shadow: 0 0 16px rgba(239, 19, 13, 0.45);
  opacity: 0.72;
  transform-origin: 0 50%;
}

.hero-stage::before {
  inset: 7% 6%;
  border-block: 1px solid rgba(255, 255, 255, 0.12);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  clip-path: polygon(0 0, 100% 0, 100% 78%, 80% 100%, 0 100%);
}

.hero-stage::after {
  top: 7%;
  bottom: 7%;
  left: 40%;
  width: 1px;
  background: linear-gradient(transparent, var(--red) 18% 82%, transparent);
  box-shadow: 0 0 48px rgba(239, 19, 13, 0.55);
}

.routing-meta {
  position: absolute;
  top: 10.5%;
  right: 9%;
  z-index: 4;
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.routing-meta strong {
  color: var(--orange);
}

.routing-ticket {
  position: absolute;
  top: 19%;
  bottom: 16%;
  left: 7%;
  z-index: 4;
  display: flex;
  width: 31%;
  padding: 26px 22px;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  background: var(--red);
  box-shadow: 20px 20px 0 rgba(239, 19, 13, 0.12);
  clip-path: polygon(0 0, 87% 0, 100% 10%, 100% 100%, 13% 100%, 0 89%);
}

.routing-ticket::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 22%;
  border-left: 1px dashed rgba(255, 255, 255, 0.38);
  content: "";
}

.routing-ticket::after {
  position: absolute;
  right: -8px;
  bottom: -22px;
  color: rgba(255, 255, 255, 0.12);
  content: "24H";
  font-family: var(--condensed);
  font-size: clamp(80px, 9vw, 132px);
  line-height: 0.8;
  writing-mode: vertical-rl;
}

.routing-ticket-code,
.routing-ticket small {
  position: relative;
  z-index: 1;
  font-family: var(--display-light);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.routing-ticket strong {
  position: relative;
  z-index: 1;
  margin-left: 24%;
  font-family: var(--condensed);
  font-size: clamp(36px, 3.35vw, 54px);
  letter-spacing: -0.025em;
  line-height: 0.84;
}

.routing-ticket small {
  margin-left: 24%;
}

.routing-track {
  position: absolute;
  top: 21%;
  right: 8%;
  z-index: 4;
  display: grid;
  width: 48%;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.routing-track span {
  display: grid;
  grid-template-columns: 36px 1fr;
  min-height: 53px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #8f8982;
  font-family: var(--display-light);
  font-size: 11px;
  letter-spacing: 0.1em;
}

.routing-track span b {
  color: #5f5b57;
  font-family: var(--display);
  font-size: 13px;
}

.routing-track span.is-active,
.routing-track span.is-active b {
  color: var(--paper);
}

.routing-track i {
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--orange);
  box-shadow: 0 0 18px rgba(239, 19, 13, 0.8);
  animation: route-scan 4.8s ease-in-out infinite;
}

.routing-gate {
  position: absolute;
  right: 8%;
  bottom: 16%;
  z-index: 4;
  width: 48%;
  padding-left: 36px;
  border-top: 1px solid rgba(239, 19, 13, 0.58);
}

.routing-gate::before {
  position: absolute;
  top: -2px;
  left: 0;
  width: 28px;
  height: 3px;
  background: var(--red);
  box-shadow: 0 0 18px rgba(239, 19, 13, 0.72);
  content: "";
}

.routing-gate span,
.routing-gate small {
  color: #807b75;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.routing-gate strong {
  display: block;
  margin-block: 6px;
  font-family: var(--condensed);
  font-size: clamp(31px, 3.2vw, 49px);
  line-height: 0.86;
}

.routing-status {
  position: absolute;
  right: 8%;
  bottom: 9.5%;
  left: 43%;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #7c7771;
  font-size: 9px;
  letter-spacing: 0.13em;
}

.routing-status i {
  width: 12px;
  height: 12px;
  background: url("./assets/icons/process-step-06.svg") center / contain no-repeat;
  filter: drop-shadow(0 0 8px rgba(239, 19, 13, 0.88));
}

.routing-status b {
  margin-left: auto;
  color: var(--paper);
  font-family: var(--display-light);
  font-weight: 300;
}

.hero-particle-layer {
  position: absolute;
  top: 76px;
  bottom: 0;
  left: 50%;
  z-index: 0;
  width: 100vw;
  overflow: hidden;
  pointer-events: none;
  translate: -50% 0;
}

.hero-particle-layer::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.78) 0 23%, rgba(5, 5, 5, 0.62) 39%, transparent 66%);
  content: "";
}

.hero-particle-layer canvas {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.96;
}

.hero-stage {
  z-index: 1;
  min-height: 570px;
  overflow: visible;
  border: 0;
  background: transparent;
}

.hero-stage::before {
  inset: 8% 4% 10% 12%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.025), transparent 58%);
  clip-path: polygon(0 0, 100% 0, 100% 83%, 84% 100%, 0 100%);
}

.hero-stage::after {
  inset: 18% 6% 18% 20%;
  width: auto;
  background: radial-gradient(circle, rgba(239, 19, 13, 0.18), transparent 66%);
  box-shadow: none;
  filter: blur(18px);
}

.hero-particle-source {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.hero-symbol-fallback {
  position: absolute;
  top: 51%;
  left: 58%;
  z-index: 1;
  width: clamp(230px, 24vw, 360px);
  height: auto;
  opacity: 0.12;
  filter: drop-shadow(0 0 36px rgba(239, 19, 13, 0.34));
  transform: translate(-50%, -50%);
}

.hero.has-particle-canvas .hero-symbol-fallback {
  opacity: 0.045;
}

.hero-symbol-caption {
  position: absolute;
  right: 6%;
  bottom: 12%;
  z-index: 2;
  display: grid;
  margin: 0;
  gap: 4px;
  text-align: right;
}

.hero-symbol-caption span,
.hero-symbol-caption small {
  color: #77716c;
  font-family: var(--display-light);
  font-size: 10px;
  letter-spacing: 0.16em;
}

.hero-symbol-caption strong {
  color: var(--paper);
  font-size: 18px;
  letter-spacing: 0.12em;
}

.hero-rule {
  grid-column: 1 / -1;
  align-self: end;
  position: relative;
  height: 2px;
  margin-top: -4px;
  background: var(--red);
}

.hero-rule span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 26px;
  background-image: url("./assets/icons/process-step-06.svg");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 26px 26px;
  filter: none;
  translate: 0 -50%;
  animation: hero-rule-star-travel 7s ease-in-out infinite alternate;
}

@keyframes hero-rule-star-travel {
  from {
    background-position-x: 0%;
  }

  to {
    background-position-x: 100%;
  }
}

.service-points {
  position: relative;
  z-index: 3;
  grid-column: 1 / -1;
  justify-self: center;
  width: min(980px, 92%);
  margin-top: 38px;
}

.brand-statement {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  align-items: center;
  gap: 32px;
  min-height: 430px;
  padding-block: 110px;
}

.statement-mark {
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding-bottom: 16px;
  color: #d7d2cc;
  font-size: 24px;
  font-weight: 600;
}

.statement-mark span {
  white-space: nowrap;
}

.statement-mark em {
  color: var(--red);
  font-family: var(--script);
  font-size: 2.1em;
  font-style: normal;
  font-weight: 400;
  line-height: 0.7;
  transform: rotate(-7deg) translateY(-2px);
}

.brand-statement h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(50px, 5.5vw, 96px);
  line-height: 0.88;
  letter-spacing: -0.025em;
  text-align: right;
}

.brand-statement h2 span,
.brand-statement h2 em {
  display: block;
  overflow: clip;
}

.brand-statement h2 em {
  margin-top: 0.12em;
  color: #d5d1cc;
  font-family: var(--display);
  font-size: 1em;
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.statement-word,
.statement-char,
.closing-char {
  display: inline-block;
}

.gsap-type-ready .statement-char,
.gsap-type-ready .closing-char {
  font-kerning: none;
  text-rendering: optimizeSpeed;
}

.gsap-type-ready .brand-statement.is-type-animating .statement-char,
.gsap-type-ready .closing-copy.is-type-animating .closing-char {
  will-change: transform, opacity;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  align-items: end;
  gap: 64px;
}

.section-heading h2,
.social-copy h2,
.metrics-heading h2 {
  max-width: 880px;
  margin: 14px 0 0;
  font-size: clamp(40px, 5vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.section-heading h2 span,
.social-copy h2 span,
.metrics-heading h2 span,
.plaza-frame h2 span {
  display: block;
}

.section-index {
  display: block;
  color: var(--orange);
  font-family: var(--display-light);
  font-size: clamp(18px, 1.55vw, 24px);
  font-weight: 300;
  letter-spacing: 0.045em;
  line-height: 1;
}

.section-index strong {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

.section-heading > p,
.social-copy > p,
.metrics-heading > p {
  margin: 0;
  color: var(--muted);
}

.feedback-section {
  position: relative;
  padding: 100px 0 120px;
  overflow: hidden;
  contain: paint;
  isolation: isolate;
  background: transparent;
  color: var(--paper);
}

.feedback-section::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.9) 0 34%, rgba(5, 5, 5, 0.48) 58%, rgba(5, 5, 5, 0.12) 100%),
    linear-gradient(180deg, var(--ink), transparent 18%, transparent 82%, var(--ink));
  content: "";
  pointer-events: none;
}

.feedback-section::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: none;
  content: "";
  pointer-events: none;
}

.feedback-decoration {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  opacity: 0.32;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 7%, #000 88%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 7%, #000 88%, transparent);
  pointer-events: none;
}

.feedback-decoration img {
  position: absolute;
  top: 3%;
  right: 1%;
  width: min(32vw, 470px);
  height: auto;
  object-fit: contain;
  filter: saturate(0.92) contrast(1.04);
  mix-blend-mode: screen;
  transform: rotate(7deg);
}

.feedback-section .section-shell,
.feedback-section .feedback-viewport {
  position: relative;
  z-index: 2;
}

.feedback-section .section-index {
  color: var(--red);
}

.feedback-heading > p {
  color: #b7b2ac;
  white-space: nowrap;
}

.feedback-heading {
  grid-template-columns: minmax(0, 1fr) minmax(530px, 590px);
  gap: 48px;
}

.feedback-viewport {
  width: 100%;
  margin-top: 36px;
  padding-block: 28px;
  overflow-x: clip;
  overflow-y: visible;
  outline-offset: -4px;
}

.feedback-track,
.feedback-set {
  display: flex;
  width: max-content;
  gap: 18px;
}

.feedback-track {
  animation: feedback-loop 56s linear infinite;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.feedback-set {
  flex: 0 0 auto;
}

.feedback-viewport:hover .feedback-track,
.feedback-viewport:focus .feedback-track,
.feedback-track:focus-within {
  animation-play-state: paused;
}

.feedback-set figure {
  position: relative;
  flex: 0 0 clamp(220px, 18vw, 310px);
  aspect-ratio: 3 / 4;
  margin: 0;
  overflow: hidden;
  background: #c9c5c0;
  transform-origin: center;
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1), filter 360ms ease, opacity 280ms ease, box-shadow 360ms ease;
}

.feedback-set figure:hover {
  z-index: 3;
  box-shadow: 0 8px 0 rgba(239, 19, 13, 0.72);
  transform: translateY(-16px) scale(1.11);
  filter: saturate(1.1) contrast(1.04);
}

.feedback-track:has(figure:hover) figure:not(:hover) {
  opacity: 0.62;
  transform: scale(0.97);
}

.feedback-set img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feedback-set figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px 14px 12px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
  color: white;
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.team-section {
  padding-block: 130px 150px;
}

.team-heading {
  grid-template-columns: minmax(0, 1fr) minmax(470px, 520px);
}

.team-heading > p {
  max-width: none;
  text-wrap: pretty;
}

.team-heading > p span {
  display: block;
}

.team-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  align-items: stretch;
  gap: 18px;
  margin-top: 60px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.team-member {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  min-height: 76px;
  gap: 12px;
  padding: 12px;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--paper);
  text-align: left;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.team-member:hover,
.team-member.is-active {
  background: var(--red);
  color: white;
}

.team-avatar {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
  background: var(--red);
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.team-arrow {
  display: none;
}

.team-member:hover .team-arrow,
.team-member.is-active .team-arrow {
  color: white;
}

.team-preview {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(239, 19, 13, 0.24), transparent 55%),
    #0b0b0b;
}

.team-preview-kicker {
  margin: 0 0 auto;
  color: var(--orange);
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.team-preview-visual {
  display: grid;
  width: 100%;
  aspect-ratio: 1;
  margin: 26px 0 18px;
  place-items: center;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

.team-preview-visual img {
  width: 74%;
  height: 74%;
  object-fit: contain;
}

.team-preview.has-qr .team-preview-visual {
  background: white;
}

.team-preview.has-qr .team-preview-visual img {
  width: 90%;
  height: 90%;
}

.team-preview strong {
  font-size: 16px;
}

.team-preview > p:last-child {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.social-section {
  position: relative;
  padding-block: 130px;
  overflow: hidden;
  border-top: 0;
  background: transparent;
}

.social-section::before {
  display: none;
}

.social-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 90px;
}

.social-copy {
  position: relative;
  align-self: start;
  overflow: visible;
}

.social-copy h2 {
  max-width: none;
  font-size: clamp(42px, 3.8vw, 62px);
}

.social-copy h2 span {
  white-space: nowrap;
}

.social-copy > p:not(.section-index) {
  max-width: 520px;
  margin-top: 28px;
}

.social-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 42px;
}

.social-platforms span {
  padding: 8px 12px;
  border: 1px solid #4a4744;
  color: #c9c4be;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.1em;
}

.social-orbit-art {
  position: relative;
  width: calc(100% + 104px);
  min-height: clamp(390px, 31vw, 470px);
  margin-top: 26px;
  margin-left: -32px;
  overflow: visible;
  pointer-events: none;
}

.social-orbit-art::before {
  position: absolute;
  inset: 3% -6% -8%;
  background:
    radial-gradient(ellipse 70% 66% at 56% 50%, rgba(21, 22, 48, 0.44), transparent 78%);
  content: "";
  filter: blur(16px);
}

.social-orbit-art img {
  position: absolute;
  top: 50%;
  left: 45%;
  width: min(680px, 100%);
  max-width: none;
  height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0 0 24px rgba(255, 181, 53, 0.18))
    drop-shadow(0 18px 44px rgba(0, 0, 0, 0.32));
  transform: translate(-50%, -50%);
}

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

.social-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  min-height: 108px;
  gap: 20px;
  padding: 20px 22px;
  border: 0;
  border-radius: 14px;
  background: #f1f1ef;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: filter 180ms ease, translate 180ms ease;
}

.social-card:nth-child(4n + 1),
.social-card:nth-child(4n + 4) {
  background: var(--red);
  color: white;
}

.social-card:nth-child(4n + 1) small,
.social-card:nth-child(4n + 4) small {
  color: rgba(255, 255, 255, 0.82);
}

.social-card:hover {
  z-index: 1;
  filter: brightness(1.06);
  translate: 0 -3px;
}

.social-card-index {
  font-family: var(--display);
  font-size: 28px;
}

.social-card strong,
.social-card small {
  display: block;
}

.social-card strong {
  font-size: 16px;
  line-height: 1.35;
}

.social-card small {
  margin-top: 6px;
  color: #5b514b;
  font-size: 12px;
}

.social-card-arrow {
  font-size: 18px;
}

.process-section {
  position: relative;
  padding-block: 140px;
  isolation: isolate;
}

.process-section::before {
  position: absolute;
  inset: 0 auto;
  left: 50%;
  z-index: 0;
  width: 100vw;
  background:
    radial-gradient(ellipse 76% 88% at 86% 86%, rgba(164, 8, 8, 0.1), transparent 74%),
    radial-gradient(ellipse 54% 70% at 10% 18%, rgba(108, 7, 7, 0.045), transparent 78%);
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
}

.process-section > * {
  position: relative;
  z-index: 1;
}

.process-board {
  position: relative;
  margin-top: 62px;
  overflow: hidden;
  contain: paint;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: #090909;
  transform-origin: center;
  transition: transform 180ms ease, border-color 180ms ease;
}

.process-board:hover {
  border-color: rgba(239, 19, 13, 0.48);
}

.process-console-head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 92px;
  align-items: center;
  gap: 24px;
  padding: 18px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #0c0c0c;
}

.process-console-head > strong {
  color: var(--paper);
  font-family: var(--display);
  font-family: "A2 Gothic Regular", Arial, sans-serif;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.process-live,
.process-menu {
  color: #8e8883;
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.process-live i {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 16px rgba(239, 19, 13, 0.82);
}

.process-menu {
  justify-self: end;
  color: var(--paper);
  font-size: 18px;
  letter-spacing: 0.2em;
}

.process-route {
  display: none;
}

.process-route::before {
  position: absolute;
  inset: 14px 24px 18px;
  background: var(--red);
  clip-path: polygon(0 62%, 5% 62%, 7% 32%, 9% 75%, 12% 52%, 16% 60%, 19% 23%, 22% 77%, 25% 44%, 29% 61%, 33% 35%, 36% 72%, 40% 50%, 44% 63%, 48% 20%, 52% 78%, 56% 42%, 60% 64%, 64% 31%, 67% 74%, 71% 48%, 75% 60%, 79% 28%, 82% 73%, 86% 45%, 90% 62%, 93% 35%, 96% 67%, 100% 54%, 100% 70%, 96% 78%, 93% 50%, 90% 74%, 86% 58%, 82% 84%, 79% 42%, 75% 72%, 71% 60%, 67% 86%, 64% 45%, 60% 76%, 56% 56%, 52% 90%, 48% 35%, 44% 75%, 40% 61%, 36% 84%, 33% 49%, 29% 74%, 25% 56%, 22% 89%, 19% 38%, 16% 72%, 12% 64%, 9% 87%, 7% 45%, 5% 74%, 0 74%);
  content: "";
  opacity: 0.88;
  animation: process-route-pulse 4.8s ease-in-out infinite alternate;
}

.process-route span {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.52);
  font-family: var(--display);
  font-size: 8px;
  letter-spacing: 0.14em;
}

.process-route span:nth-child(2) { text-align: center; }
.process-route span:last-child { text-align: right; }

.process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  list-style: none;
  background: rgba(255, 255, 255, 0.1);
}

.process-card {
  position: relative;
  display: grid;
  grid-template-columns: 86px 66px minmax(0, 1fr);
  align-items: center;
  min-height: 184px;
  gap: 18px;
  overflow: hidden;
  padding: 30px 28px;
  background: #0c0c0c;
  isolation: isolate;
  transition: background-color 180ms ease, color 180ms ease;
}

.process-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--red);
  content: "";
  opacity: 0;
  transform: scaleY(0.25);
  transform-origin: center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.process-card::after {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 46px;
  height: 1px;
  background: rgba(239, 19, 13, 0.54);
  content: "";
}

.process-card:hover {
  background: #160706;
}

.process-card:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

.process-control {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), inset 0 -12px 24px rgba(0, 0, 0, 0.48), 0 0 0 5px rgba(239, 19, 13, 0.04);
  backdrop-filter: blur(14px);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.process-card:hover .process-control {
  border-color: rgba(239, 19, 13, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.26), inset 0 -12px 24px rgba(0, 0, 0, 0.5), 0 0 0 5px rgba(239, 19, 13, 0.1), 0 0 24px rgba(239, 19, 13, 0.3);
  transform: translateY(-2px);
}

.process-control img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.process-number {
  align-self: center;
  color: transparent;
  font-family: "A2 Gothic Regular", Arial, sans-serif;
  font-size: clamp(52px, 4.4vw, 72px);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: -0.055em;
  -webkit-text-stroke: 1px rgba(239, 19, 13, 0.9);
  text-shadow: 0 0 24px rgba(239, 19, 13, 0.12);
  transition: color 180ms ease, text-shadow 180ms ease;
}

.process-card:hover .process-number {
  color: var(--red);
  text-shadow: 0 0 30px rgba(239, 19, 13, 0.38);
}

.process-card strong,
.process-card small {
  display: block;
}

.process-card strong {
  color: var(--paper);
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.25;
}

.process-card small {
  margin-top: 9px;
  color: #9c9590;
  font-size: 12px;
  line-height: 1.55;
}

.metrics-section {
  position: relative;
  padding-block: 150px;
  overflow: hidden;
  contain: paint;
  isolation: isolate;
  border-block: 0;
  background:
    radial-gradient(ellipse 82% 88% at 88% 18%, rgba(169, 8, 8, 0.11), transparent 72%),
    radial-gradient(ellipse 58% 76% at 8% 82%, rgba(115, 7, 7, 0.05), transparent 78%);
}

.metrics-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 90px;
}

.metrics-heading {
  align-self: center;
}

.metrics-heading h2 {
  max-width: 520px;
}

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

.metrics-grid article {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border: 0;
  background: rgba(255, 255, 255, 0.035);
  transition: background-color 220ms ease;
}

.metrics-grid article:hover {
  background: var(--red);
  color: #fff;
}

.metric-label {
  color: #b9b4ae;
  font-size: 14px;
}

.metrics-grid article:hover .metric-label {
  color: white;
}

.metrics-grid strong {
  color: var(--paper);
  font-family: var(--condensed);
  font-size: clamp(52px, 5vw, 82px);
  font-weight: 900;
  line-height: 0.8;
}

.metrics-grid em {
  color: var(--red);
  font-size: 0.42em;
  font-style: normal;
}

.metrics-grid article:hover em {
  color: #fff;
}

.plaza-section {
  padding-block: 160px;
}

.plaza-frame {
  position: relative;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  align-items: center;
  min-height: 292px;
  gap: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(239, 19, 13, 0.36);
  background: #0d0d0d;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.38);
  transition: box-shadow 220ms ease, translate 220ms ease;
}

.plaza-frame:hover {
  box-shadow: 0 0 70px rgba(239, 19, 13, 0.2);
  translate: 0 -4px;
}

.plaza-data-rail {
  position: relative;
  grid-column: 1 / -1;
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 18px;
  padding-inline: 28px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #8b8580;
  font-family: var(--display-light);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.plaza-data-rail i {
  width: 7px;
  height: 7px;
  border: 1px solid #5f5a55;
  rotate: 45deg;
}

.plaza-data-rail b {
  position: absolute;
  right: 0;
  bottom: -1px;
  width: 34%;
  height: 2px;
  background: var(--red);
  box-shadow: 0 0 22px rgba(239, 19, 13, 0.75);
  animation: plaza-route 5.2s ease-in-out infinite alternate;
}

.plaza-readout {
  display: flex;
  align-self: stretch;
  min-height: 236px;
  min-width: 0;
  padding: 30px 20px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background: var(--red);
  color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 84%, 82% 100%, 0 100%);
}

.plaza-readout strong {
  font-family: var(--condensed);
  font-size: clamp(70px, 5.3vw, 92px);
  letter-spacing: -0.02em;
  line-height: 0.8;
  white-space: nowrap;
}

.plaza-readout span {
  font-family: var(--display-light);
  font-size: 10px;
  letter-spacing: 0.14em;
  line-height: 1.35;
  white-space: nowrap;
}

.plaza-frame p {
  font-family: var(--display-light);
  font-weight: 300;
  letter-spacing: 0.08em;
}

.plaza-frame h2 {
  margin: 8px 0 0;
  font-size: clamp(34px, 4.25vw, 66px);
  line-height: 1.02;
}

.plaza-copy {
  padding: 34px 42px;
}

.plaza-frame > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  gap: 42px;
  margin-right: 42px;
  padding: 0 22px;
  border-radius: var(--radius-sm);
  background: var(--red);
  color: #fff;
  font-weight: 700;
}

.plaza-frame > a:hover {
  background: #c9100b;
  color: #fff;
}

.closing-section {
  position: relative;
  padding-top: 76px;
  overflow: hidden;
}

.closing-section::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 36%;
  background: linear-gradient(transparent, rgba(239, 19, 13, 0.22));
  content: "";
}

.closing-copy {
  position: relative;
}

.closing-copy > p {
  font-family: var(--sans);
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 700;
  padding-left: 0.48em;
  letter-spacing: 0.48em;
  text-align: center;
}

.closing-copy h2 {
  position: relative;
  width: 100vw;
  margin: 30px 0 0 calc(50% - 50vw);
  overflow: clip;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(96px, 21.4vw, 400px);
  font-weight: 900;
  line-height: 0.72;
  letter-spacing: -0.035em;
  text-align: center;
  white-space: nowrap;
}

.closing-copy h2::after {
  display: block;
  width: min(680px, 64vw);
  height: 2px;
  margin: 0.12em auto 0;
  background: var(--red);
  box-shadow: 0 0 22px rgba(239, 19, 13, 0.52);
  content: "";
  transform: scaleX(0.16);
  transform-origin: center;
  transition: transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.closing-copy.is-revealed h2::after {
  transform: scaleX(1);
}

.closing-meta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 60px 0 52px;
  border-bottom: 0;
}

.closing-meta p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
}

.closing-meta button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 230px;
  padding: 0 20px;
  border-radius: var(--radius-sm);
}

.company-information {
  display: grid;
  grid-template-columns: minmax(230px, 0.9fr) minmax(320px, 1.45fr) minmax(240px, 1fr);
  align-items: start;
  padding-block: 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.company-information > *,
.company-information-identity > * {
  margin: 0;
}

.company-information > p,
.company-information > address {
  min-height: 72px;
  padding-inline: clamp(24px, 3vw, 48px);
  border-left: 1px solid var(--line);
}

.company-information p,
.company-information address,
.company-information a {
  color: var(--paper);
  overflow-wrap: anywhere;
  text-wrap: pretty;
}

.company-information-identity {
  display: grid;
  min-height: 72px;
  align-content: start;
  gap: 3px;
  padding-right: clamp(24px, 3vw, 48px);
}

.company-information-identity p {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.company-information > p {
  font-size: 13px;
  line-height: 1.65;
}

.company-information address {
  padding-right: 0;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.65;
}

.company-information a {
  width: fit-content;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
}

.company-information a:hover,
.company-information a:focus-visible {
  color: var(--red);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-block: 38px 60px;
  color: #8f8a84;
  font-size: 12px;
}

.footer-brand-logo {
  width: clamp(88px, 7vw, 112px);
  height: auto;
  flex: 0 0 auto;
  filter: brightness(0) invert(1);
  opacity: 0.62;
  object-fit: contain;
}

.site-footer > .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-world-clocks {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex: 1 1 auto;
  gap: clamp(28px, 4vw, 76px);
}

.world-clock {
  display: grid;
  min-width: 106px;
  gap: 2px;
}

.world-clock > span {
  color: #a7a29d;
  font-family: var(--display-light);
  font-size: 14px;
  letter-spacing: 0.06em;
  line-height: 1.2;
}

.world-clock time {
  display: inline-flex;
  align-items: baseline;
  color: var(--paper);
  font-family: var(--display-light);
  font-size: clamp(30px, 2.7vw, 42px);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  line-height: 1;
}

.world-clock time span {
  color: inherit;
  font: inherit;
}

.world-clock-colon {
  display: inline-block;
  width: 0.42em;
  text-align: center;
  animation: world-clock-colon-blink 1s steps(1, end) infinite;
}

@keyframes world-clock-colon-blink {
  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0.2;
  }
}

.site-footer a,
.site-footer button {
  min-height: 44px;
  border: 0;
  background: transparent;
  color: #bdb7b1;
  text-align: left;
  cursor: pointer;
}

.site-footer a:hover,
.site-footer button:hover {
  color: var(--orange);
}

.site-footer p {
  margin: 0;
  text-align: right;
}

.site-footer .footer-legal {
  text-align: right;
}

.cooperation-footer .footer-legal {
  order: 1;
}

.site-footer .footer-icp {
  display: block;
  min-height: 0;
  margin-top: 6px;
  color: #77716b;
  font-size: 11px;
  line-height: 1.5;
  text-align: right;
  white-space: nowrap;
}

.site-footer .footer-icp:hover {
  color: var(--red);
}

dialog {
  width: min(920px, calc(100vw - 32px));
  max-height: min(820px, calc(100vh - 32px));
  padding: 0;
  overflow: auto;
  border: 0;
  outline: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 40px 140px rgba(0, 0, 0, 0.72);
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.82);
}

dialog[open] {
  animation: dialog-in 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.motion-ready:not(.hero-gsap-ready) .hero-copy,
.motion-ready:not(.hero-gsap-ready) .hero-rule,
.motion-ready:not(.hero-gsap-ready) .service-points {
  opacity: 0;
}

.motion-ready:not(.hero-gsap-ready).is-ready .hero-copy {
  animation: hero-copy-in 720ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.motion-ready:not(.hero-gsap-ready).is-ready .hero-rule,
.motion-ready:not(.hero-gsap-ready).is-ready .service-points {
  animation: hero-detail-in 620ms 480ms ease both;
}

.hero-gsap-ready .hero.is-brand-animating [data-hero-word] {
  will-change: transform, opacity, clip-path;
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-md);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-size: 24px;
}

.dialog-close:hover {
  background: var(--red);
  color: white;
}

.profile-dialog {
  width: min(760px, calc(100vw - 32px));
  border: 0;
  outline: 0;
}

.profile-dialog[open] {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(300px, 1.18fr);
}

.profile-visual {
  display: grid;
  min-height: 460px;
  place-items: center;
  padding: 36px;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.2)),
    var(--red);
}

.profile-visual span {
  font-family: var(--display);
  font-size: 140px;
  line-height: 1;
}

.profile-visual img {
  width: min(100%, 360px);
  height: auto;
  max-height: 540px;
  object-fit: contain;
  background: white;
}

.profile-content {
  align-self: center;
  padding: 72px 46px 52px;
}

.profile-content h2 {
  margin: 14px 0 18px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 0.95;
}

.profile-content > p:not(:first-child) {
  color: #56514c;
}

.profile-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  margin-top: 20px;
  padding: 0 18px;
  background: var(--red);
  color: white;
  font-weight: 700;
}

.profile-link:hover {
  background: var(--ink);
}

.profile-link[hidden] {
  display: none;
}

.profile-note {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid #cbc6c0;
  font-size: 13px;
}

.manager-dialog {
  width: min(1120px, calc(100vw - 32px));
  max-height: min(900px, calc(100vh - 32px));
  border-color: #d5d0ca;
  color-scheme: light;
}

.manager-shell {
  position: relative;
  min-height: 720px;
  padding: 70px 68px 24px;
  overflow: hidden;
  background: #f6f3ee;
  isolation: isolate;
}

.manager-shell::after {
  position: absolute;
  right: -0.03em;
  bottom: -0.21em;
  left: -0.03em;
  z-index: -1;
  color: transparent;
  content: "YOU TICKET";
  font-family: var(--display);
  font-size: clamp(100px, 15vw, 220px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.7;
  text-align: center;
  white-space: nowrap;
  -webkit-text-stroke: 1px rgba(5, 5, 5, 0.09);
}

.manager-heading {
  max-width: 100%;
}

.manager-contact-route {
  margin: 0;
}

.manager-status-copy {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}

.manager-status-icon {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}

.manager-contact-route p {
  display: grid;
  gap: 4px;
  margin: 0;
}

.manager-contact-route strong {
  color: #171411;
  font-size: 17px;
  line-height: 1.2;
}

.manager-contact-route p span {
  color: #5f5954;
  font-size: 13px;
  line-height: 1.5;
}

.manager-status-action {
  --manager-action-red: #df120c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 2px solid var(--manager-action-red);
  border-radius: 999px;
  background: #fff;
  color: var(--manager-action-red);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, translate 180ms ease;
}

.manager-status-action:hover {
  background: var(--manager-action-red);
  color: #fff;
  translate: 0 -2px;
}

.manager-status-action:focus-visible {
  outline: 3px solid rgba(239, 19, 13, 0.28);
  outline-offset: 3px;
}

.manager-heading p,
.manager-service-copy > span {
  margin: 0;
  color: var(--red);
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.1em;
}

.manager-heading h2 {
  margin: 9px 0 38px;
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.manager-service {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(360px, 1.25fr);
  gap: 50px;
  padding: 30px 0;
  border-top: 1px solid #cfcac4;
}

.manager-service.manager-contact-route {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  padding: 22px 24px;
  border: 2px solid var(--red);
  border-radius: 12px;
  background: #fff;
}

html[data-theme="dark"] .manager-service.manager-contact-route {
  background: #171411;
}

html[data-theme="dark"] .manager-contact-route strong {
  color: #fff;
}

html[data-theme="dark"] .manager-contact-route p span {
  color: #d1cbc5;
}

html[data-theme="dark"] .manager-status-action {
  background: var(--manager-action-red);
  color: #fff;
}

html[data-theme="dark"] .manager-status-action:hover {
  background: #fff;
  color: var(--manager-action-red);
}

.manager-service-copy h3 {
  margin: 9px 0 8px;
  font-size: 28px;
  line-height: 1.1;
}

.manager-service-copy p {
  max-width: 380px;
  margin: 0;
  color: #67615c;
  font-size: 13px;
}

.manager-action-form {
  align-self: center;
}

.manager-action-form > label:first-child {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 9px;
  color: #292521;
  font-size: 13px;
  font-weight: 700;
}

.manager-action-form label small {
  color: #7d7771;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.manager-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.manager-input-row input {
  width: 100%;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid #aaa39d;
  border-radius: 999px;
  background: white;
  color: var(--ink);
}

.manager-input-row input:focus {
  border-color: var(--red);
  outline: 2px solid rgba(239, 19, 13, 0.26);
  outline-offset: 0;
}

.manager-input-row button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  min-height: 50px;
  gap: 22px;
  margin: 0;
  padding: 0 20px;
  border-radius: 999px;
}

.manager-action-form button:disabled {
  cursor: wait;
  opacity: 0.6;
}

.verify-result {
  min-height: 20px;
  margin: 10px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #6b6560;
  font-size: 11px;
}

.verify-result.is-success {
  color: #0d5f39;
}

.verify-result.is-fail {
  color: #8e110c;
}

.manager-service-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding-top: 20px;
  border-top: 1px solid #cfcac4;
}

.manager-service-footer p {
  display: grid;
  margin: 0;
}

.manager-service-footer p span,
.manager-service-footer p small {
  color: #7d7771;
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.manager-service-footer p strong {
  font-family: var(--display);
  font-size: 34px;
  line-height: 1.1;
}

.manager-service-footer img {
  width: min(68%, 640px);
  filter: none;
}

/* The service entry is scoped so other pages keep their existing manager layout. */
.official-service-dialog {
  width: min(1100px, calc(100vw - 32px));
  max-height: calc(100dvh - 24px);
  overflow-x: hidden;
  overflow-y: auto;
  border: 0;
  border-radius: var(--radius-md);
  background: #fff;
  color: #171311;
  box-shadow: none;
  color-scheme: light;
}

html[data-theme="light"] .official-service-dialog {
  box-shadow: none;
}

.official-service-dialog .manager-shell {
  min-height: 0;
  padding: 38px 44px 20px;
  overflow: visible;
  background: #fff;
}

.official-service-dialog .manager-shell::after {
  display: none;
}

.manager-topbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
  padding-right: 0;
}

.official-service-dialog .manager-heading > p:first-child {
  color: var(--red);
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.1em;
}

.official-service-dialog .manager-heading h2 {
  margin: 5px 0 7px;
  color: #171311;
  font-size: clamp(34px, 3.5vw, 42px);
  letter-spacing: 0;
  line-height: 1.05;
  text-wrap: balance;
}

.official-service-dialog .manager-intro {
  max-width: 620px;
  margin: 0;
  color: #59524d;
  font-size: 14px;
  line-height: 1.6;
  text-wrap: pretty;
}

.manager-hours {
  display: grid;
  justify-items: end;
  padding-top: 2px;
  text-align: right;
}

.manager-hours span,
.manager-hours small {
  color: #6b645f;
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

.manager-hours strong {
  margin: 2px 0;
  color: #171311;
  font-family: var(--display);
  font-size: 25px;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.manager-entry-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(0, 1fr);
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid #ded8d2;
  border-radius: var(--radius-md);
}

.manager-entry {
  display: flex;
  min-width: 0;
  min-height: 238px;
  padding: 26px;
  flex-direction: column;
}

.manager-entry-primary {
  border-right: 1px solid #ded8d2;
  background: #fff4f3;
}

.manager-entry-verify {
  background: #fff;
}

.manager-entry-heading {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.manager-entry-heading img {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  object-fit: contain;
}

.manager-entry-copy h3 {
  margin: 0;
  color: #171311;
  font-size: 22px;
  letter-spacing: 0;
  line-height: 1.25;
  text-wrap: balance;
}

.manager-entry-copy p {
  max-width: 42ch;
  margin: 10px 0 0;
  color: #5f5853;
  font-size: 13px;
  line-height: 1.6;
  text-wrap: pretty;
}

.official-service-dialog .manager-primary-action {
  width: 100%;
  min-height: 50px;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  translate: none;
}

.official-service-dialog .manager-primary-action span {
  color: #fff;
  transition: transform 180ms ease;
}

.official-service-dialog .manager-primary-action:hover,
.official-service-dialog .manager-primary-action:focus-visible {
  background: #171311;
  color: #fff;
  translate: none;
}

.official-service-dialog .manager-primary-action:hover span,
.official-service-dialog .manager-primary-action:focus-visible span {
  transform: translateX(2px);
}

.manager-entry-meta {
  margin: 9px 0 0;
  color: #6c312d;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.manager-entry-meta.is-success {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  gap: 7px;
  box-sizing: border-box;
  padding: 6px 11px;
  border: 1px solid rgb(216 39 32 / 18%);
  border-radius: 999px;
  background: rgb(216 39 32 / 7%);
  color: var(--red);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.manager-entry-meta.is-success img {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  object-fit: contain;
}

.official-service-dialog .manager-action-form {
  display: flex;
  width: 100%;
  align-self: stretch;
  margin-top: auto;
  flex-direction: column;
}

.official-service-dialog .manager-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  gap: 8px;
}

.official-service-dialog .manager-input-row input {
  min-width: 0;
  min-height: 50px;
  border-color: #aaa39d;
  border-radius: var(--radius-pill);
  background: #fff;
  color: #171311;
  box-shadow: none;
  transition: border-color 180ms ease;
}

.official-service-dialog .manager-input-row input:focus,
.official-service-dialog .manager-input-row input:focus-visible {
  border-color: var(--red);
  outline: 0;
  box-shadow: none;
}

.official-service-dialog .manager-input-row input::placeholder {
  color: #615a55;
  opacity: 1;
}

.official-service-dialog .manager-input-row button {
  width: 100%;
  min-width: 0;
  min-height: 50px;
  gap: 14px;
  padding-inline: 16px;
  border: 1px solid var(--red);
  border-radius: var(--radius-pill);
  background: #fff;
  color: var(--red);
  font-size: 14px;
  font-weight: 800;
  translate: none;
  transition: background-color 180ms ease, color 180ms ease;
}

.official-service-dialog .manager-input-row button:hover,
.official-service-dialog .manager-input-row button:focus-visible {
  border-color: var(--red);
  background: #fff0ef;
  color: var(--red-dark);
  translate: none;
}

.official-service-dialog .manager-input-row button:active {
  background: #ffe4e2;
}

.official-service-dialog .manager-action-form button:disabled {
  border-color: #c7c0ba;
  background: #f1eeeb;
  color: #77706b;
  cursor: wait;
  opacity: 1;
}

.manager-privacy-note {
  display: flex;
  min-height: 20px;
  align-items: flex-start;
  gap: 7px;
  margin-top: 9px;
  color: #68615c;
}

.manager-privacy-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin-top: 1px;
  background-color: currentColor;
  -webkit-mask: url("./assets/icons/customer-service/privacy-lock.svg") center / contain no-repeat;
  mask: url("./assets/icons/customer-service/privacy-lock.svg") center / contain no-repeat;
}

.manager-privacy-note:has(.verify-result.is-success) {
  color: #0d5f39;
}

.manager-privacy-note:has(.verify-result.is-fail) {
  color: #8e110c;
}

.official-service-dialog .verify-result {
  min-height: 18px;
  margin: 0;
  color: inherit;
  font-size: 11px;
  line-height: 1.55;
}

.official-service-dialog .verify-result.is-success {
  color: #0d5f39;
}

.official-service-dialog .verify-result.is-fail {
  color: #8e110c;
}

.manager-process {
  padding: 16px 0 14px;
  border-bottom: 1px solid #ded8d2;
}

.manager-process h3 {
  margin: 0 0 11px;
  color: #171311;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1.4;
}

.manager-process ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.manager-process li {
  position: relative;
  display: flex;
  min-width: 0;
  z-index: 0;
  align-items: center;
  flex-direction: column;
  gap: 7px;
  color: #322d29;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.manager-process li:not(:last-child)::after {
  position: absolute;
  top: 17px;
  right: calc(-50% + 18px);
  left: calc(50% + 22px);
  z-index: -1;
  border-top: 1px dashed #bdb5af;
  content: "";
}

.manager-process li:not(:last-child)::before {
  position: absolute;
  top: 14px;
  right: calc(-50% + 14px);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #bdb5af;
  content: "";
}

.manager-process-node {
  display: grid;
  width: 36px;
  height: 36px;
  z-index: 1;
  place-items: center;
  background: #fff;
}

.manager-process-node img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.official-service-dialog .manager-service-footer {
  align-items: center;
  justify-content: center;
  padding-top: 12px;
  border-top: 0;
}

.manager-footer-note {
  display: block !important;
  margin: 0;
  color: #6b645f;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

@media (max-width: 760px) {
  .official-service-dialog {
    width: min(calc(100% - 16px), 560px);
    max-height: calc(100dvh - 16px);
  }

  .official-service-dialog .manager-shell {
    padding: 50px 16px 16px;
  }

  .manager-topbar {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-right: 40px;
  }

  .official-service-dialog .manager-heading h2 {
    font-size: 30px;
  }

  .official-service-dialog .manager-intro {
    font-size: 13px;
  }

  .manager-hours {
    display: flex;
    align-items: baseline;
    justify-items: start;
    gap: 8px;
    padding-top: 0;
    text-align: left;
  }

  .manager-hours strong {
    margin: 0;
    font-size: 18px;
  }

  .manager-hours small {
    display: none;
  }

  .manager-entry-grid {
    grid-template-columns: 1fr;
    margin-top: 16px;
  }

  .manager-entry {
    min-height: 0;
    padding: 20px 18px;
  }

  .manager-entry-primary {
    border-right: 0;
    border-bottom: 1px solid #ded8d2;
  }

  .manager-entry-heading {
    gap: 10px;
  }

  .manager-entry-heading img {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .manager-entry-copy h3 {
    font-size: 20px;
  }

  .official-service-dialog .manager-primary-action,
  .official-service-dialog .manager-action-form {
    margin-top: 18px;
  }

  .official-service-dialog .manager-input-row {
    grid-template-columns: minmax(0, 1fr) 106px;
  }

  .official-service-dialog .manager-input-row button {
    gap: 8px;
    padding-inline: 12px;
  }

  .manager-process {
    padding-block: 14px 12px;
  }

  .manager-process ol {
    gap: 4px;
  }

  .manager-process li {
    font-size: 11px;
  }

  .manager-process li:not(:last-child)::after {
    top: 14px;
    right: calc(-50% + 13px);
    left: calc(50% + 18px);
  }

  .manager-process li:not(:last-child)::before {
    top: 11px;
    right: calc(-50% + 9px);
  }

  .manager-process-node,
  .manager-process-node img {
    width: 30px;
    height: 30px;
  }

  .official-service-dialog .manager-service-footer {
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .manager-hours span {
    font-size: 8px;
  }
}

.site-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  max-width: min(420px, calc(100vw - 48px));
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: var(--paper);
  color: var(--ink);
  box-shadow: inset 0 3px var(--orange), 0 18px 60px rgba(0, 0, 0, 0.42);
  opacity: 0;
  pointer-events: none;
  translate: 0 18px;
  transition: opacity 180ms ease, translate 180ms ease;
}

.site-toast.is-visible {
  opacity: 1;
  translate: 0;
}

/* 统一表面层级：内容卡片使用克制圆角，操作控件保留胶囊形态。 */
.hero-stage,
.feedback-card,
.team-preview,
.social-card,
.process-board,
.metrics-grid article,
.plaza-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.team-preview-visual,
.profile-visual,
.profile-content {
  overflow: hidden;
}

.profile-link {
  border-radius: var(--radius-pill);
}

@keyframes hero-beam {
  from { opacity: 0.38; transform: translate(-58%, -50%) skewX(-17deg); }
  to { opacity: 0.9; transform: translate(-42%, -50%) skewX(-17deg); }
}

@keyframes orbit-spin {
  to { rotate: 360deg; }
}

@keyframes equalize {
  to { height: 100%; }
}

@keyframes signal-node-float {
  from { transform: translate3d(0, -5px, 0); }
  to { transform: translate3d(0, 7px, 0); }
}

@keyframes signal-status {
  50% { opacity: 0.42; scale: 0.78; }
}

@keyframes route-scan {
  0%, 14% { transform: translateX(0); opacity: 0.45; }
  50% { transform: translateX(320%); opacity: 1; }
  86%, 100% { transform: translateX(0); opacity: 0.45; }
}

@keyframes plaza-route {
  from { transform: translateX(-190%); }
  to { transform: translateX(0); }
}

@keyframes feedback-loop {
  to { transform: translate3d(var(--feedback-distance, calc(-50% - 9px)), 0, 0); }
}

@keyframes process-scan {
  0%, 18% { left: -30%; opacity: 0; }
  28% { opacity: 1; }
  72% { opacity: 1; }
  82%, 100% { left: 110%; opacity: 0; }
}

@keyframes metric-energy {
  from { opacity: 0.58; transform: scale(1.12) translateX(-2%); }
  to { opacity: 1; transform: scale(1.24) translateX(3%); }
}

@keyframes dialog-in {
  from { opacity: 0; transform: translateY(18px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes hero-copy-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-detail-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1380px) {
  :root {
    --shell: min(100% - 48px, 1120px);
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 12px;
    padding-inline: 24px;
  }

  .menu-toggle {
    display: grid;
    width: 46px;
    height: 46px;
    place-content: center;
    gap: 7px;
    border: 1px solid #45413e;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--paper);
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 16px 24px 28px;
    border-bottom: 1px solid #393532;
    background: #080808;
  }

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

  .site-nav a {
    min-height: 50px;
    border-bottom: 1px solid #24211f;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  }

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

  .social-layout,
  .metrics-shell {
    gap: 52px;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: calc(100% - 40px);
  }

  .hero {
    display: block;
    min-height: 980px;
    padding-top: 156px;
  }

  .hero-copy {
    padding-bottom: 42px;
  }

  .hero-stage {
    min-height: 450px;
  }

  .hero-particle-layer::after {
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.84) 0 25%, rgba(5, 5, 5, 0.68) 43%, transparent 72%);
  }

  .hero-rule {
    margin-top: 34px;
  }

  .brand-statement {
    display: block;
    min-height: 0;
    padding-block: 90px;
  }

  .brand-statement h2 {
    margin-top: 44px;
    text-align: left;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    max-width: 620px;
    margin-top: 24px;
  }

  .feedback-section,
  .team-section,
  .social-section,
  .process-section,
  .metrics-section {
    padding-block: 100px;
  }

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

  .team-layout {
    display: block;
  }

  .team-preview {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    align-items: center;
    min-height: 0;
    margin-top: 18px;
    gap: 0 22px;
  }

  .team-preview-kicker {
    grid-column: 2;
    margin: 0 0 8px;
  }

  .team-preview-visual {
    grid-row: 1 / 4;
    width: 150px;
    margin: 0;
  }

  .team-preview > p:last-child {
    grid-column: 2;
  }

  .social-layout,
  .metrics-shell {
    display: block;
  }

  .social-grid,
  .metrics-grid {
    margin-top: 52px;
  }

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

  .plaza-section {
    padding-block: 110px;
  }

  .plaza-frame {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .plaza-frame > a {
    grid-column: 1 / -1;
    margin: 0 36px 32px;
  }

  .closing-copy h2 {
    font-size: 21.4vw;
  }

  .profile-dialog[open] {
    display: block;
  }

  .profile-visual {
    min-height: 330px;
  }

  .manager-shell {
    padding-inline: 44px;
  }

  .manager-service {
    grid-template-columns: minmax(200px, 0.68fr) minmax(320px, 1.32fr);
    gap: 30px;
  }
}

@media (max-width: 600px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 16px;
  }

  .brand-link {
    width: 132px;
    min-height: 54px;
  }

  .brand-link img {
    height: 42px;
  }

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

  .process-console-head {
    grid-template-columns: 1fr auto;
    min-height: 72px;
    padding-inline: 20px;
  }

  .process-console-head > strong {
    justify-self: end;
  }

  .process-menu {
    display: none;
  }

  .process-route {
    height: 74px;
    padding-inline: 18px;
  }

  .process-card {
    grid-template-columns: 68px 54px minmax(0, 1fr);
    min-height: 152px;
    padding: 22px 20px;
  }

  .process-number {
    font-size: 54px;
  }

  .process-control {
    width: 50px;
    height: 50px;
  }

  .process-control img {
    width: 32px;
    height: 32px;
  }

  .manager-trigger {
    display: none;
  }

  .hero {
    min-height: 870px;
    padding-top: 134px;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: clamp(52px, 16.2vw, 64px);
    line-height: 0.72;
  }

  .hero-intro {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
  }

  .primary-action,
  .text-action {
    justify-content: space-between;
  }

  .hero-stage {
    min-height: 360px;
  }

  .hero-stage::before {
    inset: 5% 0 8%;
  }

  .hero-symbol-fallback {
    top: 54%;
    left: 56%;
    width: 210px;
  }

  .hero-symbol-caption {
    right: 3%;
    bottom: 10%;
  }

  .hero-symbol-system {
    --symbol-x: 50%;
  }

  .hero-symbol-core,
  .hero-symbol-echo {
    width: 64px;
  }

  .routing-meta {
    top: 8%;
    right: 7%;
    font-size: 9px;
  }

  .routing-ticket {
    top: 18%;
    bottom: 15%;
    left: 6%;
    width: 42%;
    padding: 18px 14px;
  }

  .routing-ticket strong {
    font-size: clamp(30px, 8.2vw, 39px);
  }

  .routing-ticket::after {
    font-size: 76px;
  }

  .routing-track {
    top: 18%;
    right: 6%;
    width: 42%;
  }

  .routing-track span {
    min-height: 42px;
    grid-template-columns: 28px 1fr;
    font-size: 8px;
  }

  .routing-gate {
    right: 6%;
    bottom: 19%;
    width: 42%;
    padding-left: 14px;
  }

  .routing-gate strong {
    font-size: 26px;
  }

  .routing-gate small {
    display: none;
  }

  .routing-status {
    right: 6%;
    bottom: 9%;
    left: 52%;
    font-size: 7px;
  }

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

  .service-points {
    width: 100%;
    margin-top: 24px;
  }

  .brand-statement {
    padding-block: 76px;
  }

  .brand-statement h2 {
    font-size: clamp(24px, 7.1vw, 38px);
  }

  .brand-statement h2 em {
    font-size: 1em;
  }

  .section-heading h2,
  .social-copy h2,
  .metrics-heading h2 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .feedback-set figure {
    flex-basis: min(72vw, 292px);
  }

  .feedback-section,
  .team-section,
  .social-section,
  .process-section,
  .metrics-section {
    padding-block: 60px;
  }

  .feedback-section {
    padding-bottom: 48px;
  }

  .feedback-viewport {
    padding-block: 20px 12px;
    overflow-x: hidden;
  }

  .feedback-track {
    animation: none;
    transform: translate3d(0, 0, 0);
  }

  .feedback-track.is-marquee-running {
    animation: feedback-loop var(--feedback-duration, 46s) linear 1 forwards;
  }

  .feedback-viewport:focus .feedback-track,
  .feedback-track:focus-within {
    animation-play-state: running;
  }

  .feedback-metalword {
    top: 54px;
    right: -24px;
    width: min(58vw, 300px);
    opacity: 0.1;
  }

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

  .team-preview {
    grid-template-columns: 112px minmax(0, 1fr);
    padding: 16px;
  }

  .team-preview-visual {
    width: 112px;
  }

  .team-member {
    grid-template-columns: 38px minmax(0, 1fr);
    min-height: 74px;
    padding: 9px;
  }

  .team-avatar {
    width: 38px;
    height: 38px;
  }

  .team-arrow {
    display: none;
  }

  .social-card {
    grid-template-columns: auto minmax(0, 1fr);
    min-height: 112px;
    padding: 14px;
  }

  .social-card-arrow {
    display: none;
  }

  .metrics-grid article {
    min-height: 152px;
    padding: 16px;
  }

  .metric-label {
    font-size: 12px;
  }

  .metrics-grid strong {
    font-size: clamp(46px, 14vw, 64px);
  }

  .plaza-frame {
    display: block;
    min-height: 0;
    padding: 0;
  }

  .plaza-data-rail {
    gap: 10px;
    padding-inline: 18px;
    font-size: 8px;
  }

  .plaza-readout {
    min-height: 118px;
    padding: 24px;
    flex-direction: row;
    align-items: flex-end;
  }

  .plaza-readout strong {
    font-size: 72px;
  }

  .plaza-copy {
    padding: 28px 24px 6px;
  }

  .plaza-frame > a {
    width: auto;
    margin: 28px 24px 24px;
  }

  .closing-copy h2 {
    margin-top: 24px;
    font-size: 21.4vw;
  }

  .closing-meta {
    align-items: stretch;
    flex-direction: column;
  }

  .closing-meta button {
    width: 100%;
  }

  .company-information {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding-block: 22px;
  }

  .company-information > *,
  .company-information-identity {
    min-height: 0;
    padding: 18px 0;
    border: 0;
    border-top: 1px solid var(--line);
  }

  .company-information-identity {
    padding-top: 0;
    border-top: 0;
  }

  .company-information > address {
    padding-bottom: 0;
  }

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

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

  .footer-world-clocks {
    justify-content: space-between;
    width: 100%;
    gap: 8px;
  }

  .world-clock {
    min-width: 0;
  }

  .world-clock > span {
    font-size: 10px;
  }

  .world-clock time {
    font-size: clamp(24px, 7.6vw, 34px);
  }

  .site-footer p {
    text-align: left;
  }

  .site-footer .footer-legal {
    text-align: left;
  }

  .site-footer .footer-icp {
    text-align: left;
  }

  .cooperation-footer .footer-legal {
    order: 0;
  }

  .profile-content {
    padding: 58px 24px 34px;
  }

  .profile-visual {
    min-height: 290px;
    padding: 56px 28px 28px;
  }

  .profile-visual img {
    width: min(100%, 260px);
  }

  .manager-shell {
    min-height: 0;
    padding: 58px 22px 22px;
  }

  .manager-heading h2 {
    font-size: 38px;
  }

  .manager-service {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-block: 24px;
  }

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

  .manager-service.manager-contact-route {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 18px;
    padding: 20px;
  }

  .manager-status-action {
    width: 100%;
  }

  .manager-input-row button {
    width: 100%;
  }

  .manager-service-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .manager-service-footer img {
    width: 100%;
  }
}

@media (max-width: 600px) and (hover: none) {
  .feedback-set figure:hover {
    z-index: auto;
    box-shadow: none;
    filter: none;
    transform: none;
  }

  .feedback-track:has(figure:hover) figure:not(:hover) {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 600px) {
  .feedback-track {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform-origin: 0 50%;
  }
}

.feedback-track.is-marquee-suspended {
  animation-play-state: paused !important;
}

.feedback-track.is-marquee-resetting {
  animation: none !important;
  transform: translate3d(0, 0, 0) !important;
}

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

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

  .feedback-viewport {
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }

  .feedback-track {
    transform: none !important;
  }

  .feedback-set:last-child {
    display: none;
  }

  .feedback-set figure {
    scroll-snap-align: start;
  }

  .statement-word,
  .statement-char,
  .closing-char,
  [data-hero-word],
  [data-hero-stage],
  [data-hero-symbol-fallback],
  [data-hero-symbol-caption],
  [data-hero-rule],
  [data-service-points] {
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    clip-path: none !important;
  }

  .hero-particle-layer canvas {
    display: none;
  }
}

/* Full-bleed home film: the supplied 16:9 motion asset replaces the former hero composition. */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.home-static-page .site-header:not(.is-scrolled),
.cooperation-page .site-header:not(.is-scrolled) {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.home-static-page main {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(ellipse 112% 44% at 98% 44%, rgba(183, 9, 9, 0.065), transparent 78%),
    radial-gradient(ellipse 74% 50% at -8% 72%, rgba(133, 8, 8, 0.045), transparent 80%),
    #050505;
}

.home-static-page main::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 9% 7%, rgba(255, 223, 148, 0.68) 0 1px, transparent 2px),
    radial-gradient(circle at 87% 12%, rgba(255, 255, 255, 0.5) 0 1px, transparent 2px),
    radial-gradient(circle at 26% 29%, rgba(255, 194, 82, 0.46) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 43%, rgba(255, 255, 255, 0.45) 0 1px, transparent 2px),
    radial-gradient(circle at 15% 58%, rgba(255, 218, 135, 0.52) 0 1px, transparent 2px),
    radial-gradient(circle at 91% 69%, rgba(255, 255, 255, 0.42) 0 1px, transparent 2px),
    radial-gradient(circle at 38% 82%, rgba(255, 195, 72, 0.48) 0 1px, transparent 2px),
    radial-gradient(circle at 78% 94%, rgba(255, 255, 255, 0.44) 0 1px, transparent 2px);
  opacity: 0.7;
  content: "";
  pointer-events: none;
}

.home-static-page main > section {
  position: relative;
  z-index: 1;
}

.home-static-page .brand-statement,
.home-static-page .feedback-section,
.home-static-page .team-section,
.home-static-page .social-section,
.home-static-page .process-section,
.home-static-page .metrics-section,
.home-static-page .plaza-section,
.home-static-page .closing-section {
  background-color: transparent;
}

.home-static-page .closing-section::before {
  opacity: 0.42;
}

.home-static-page .hero {
  overflow: hidden;
  isolation: isolate;
  background: #050505;
  box-shadow: 0 0 0 100vmax #050505;
  clip-path: inset(0 -100vmax);
}

.home-static-page .hero::before {
  top: 0;
  right: auto;
  bottom: 0;
  left: 50%;
  z-index: 0;
  display: block;
  width: 100vw;
  height: auto;
  background:
    radial-gradient(ellipse 48% 54% at 76% 42%, rgba(255, 255, 255, 0.018), transparent 78%),
    #050505;
  filter: none;
  transform: translateX(-50%);
}

.hero-material-stage {
  z-index: 1;
  min-height: 570px;
  overflow: visible;
  border: 0;
  background: transparent;
}

.hero-material-stage::before,
.hero-material-stage::after {
  display: none;
}

.hero-starfield {
  position: absolute;
  inset: 3% 2% 17% 5%;
  z-index: 2;
  pointer-events: none;
}

.hero-starfield span {
  position: absolute;
  top: var(--star-y);
  left: var(--star-x);
  width: var(--star-size);
  height: var(--star-size);
  border-radius: 50%;
  background: #fff4c8;
  box-shadow:
    0 0 5px rgba(255, 242, 190, 0.94),
    0 0 15px rgba(255, 184, 60, 0.58);
  opacity: 0.14;
  transform: scale(0.62);
  animation: hero-star-twinkle 3.8s ease-in-out var(--star-delay) infinite;
}

.hero-starfield span:nth-child(4n + 2),
.hero-starfield span:nth-child(4n + 3) {
  background: #fff;
  box-shadow:
    0 0 5px rgba(255, 255, 255, 0.88),
    0 0 12px rgba(255, 222, 151, 0.46);
}

.hero-material-image {
  inset: 0 0 54px;
  z-index: 1;
  width: 100%;
  max-width: none;
  height: calc(100% - 54px);
  opacity: 1;
  object-fit: cover;
  object-position: 60% center;
  filter:
    saturate(1.03)
    contrast(1.02);
  mix-blend-mode: lighten;
  transform: scale(1.22);
  transform-origin: 62% 48%;
  -webkit-mask-image: radial-gradient(ellipse 77% 82% at 59% 45%, #000 0 69%, rgba(0, 0, 0, 0.9) 79%, transparent 100%);
  mask-image: radial-gradient(ellipse 77% 82% at 59% 45%, #000 0 69%, rgba(0, 0, 0, 0.9) 79%, transparent 100%);
  translate: 0 -34px;
  rotate: none;
  animation: none;
}

@media (max-width: 860px) {
  .hero-material-stage {
    min-height: 500px;
  }

  .hero-material-image {
    bottom: 46px;
    height: calc(100% - 46px);
    object-position: 61% center;
    transform: scale(1.1);
    translate: 0 -24px;
  }

  .feedback-decoration {
    inset: 0;
    opacity: 0.26;
  }

  .feedback-decoration img {
    top: 3%;
    right: -8%;
    width: min(72vw, 500px);
  }

  .feedback-heading > p {
    white-space: normal;
  }

  .social-orbit-art {
    min-height: 320px;
    margin-top: 28px;
    margin-left: -20px;
    width: calc(100% + 40px);
  }

  .social-orbit-art img {
    left: 52%;
    width: min(620px, 108%);
    height: 108%;
  }

}

@media (max-width: 600px) {
  .hero-material-stage {
    min-height: 400px;
  }

  .hero-material-image {
    object-position: 62% center;
    transform: scale(1.08);
    translate: 0 -18px;
  }

  .feedback-decoration {
    inset: 0;
    opacity: 0.22;
  }

  .feedback-decoration img {
    top: 3%;
    right: -28%;
    width: 95vw;
  }

  .social-orbit-art {
    min-height: 250px;
    margin-left: -16px;
    width: calc(100% + 32px);
  }

  .social-orbit-art img {
    left: 52%;
    width: 112%;
    height: 112%;
  }
}

@keyframes hero-star-twinkle {
  0%,
  100% {
    opacity: 0.12;
    transform: scale(0.62);
  }
  38% {
    opacity: 0.96;
    transform: scale(1.45);
  }
  58% {
    opacity: 0.28;
    transform: scale(0.86);
  }
}

@media (prefers-reduced-motion: reduce) {
  .world-clock-colon {
    animation: none;
  }

  .hero-rule span {
    left: 0;
    translate: 0 -50%;
    background-position-x: 50%;
    animation: none;
  }

  .hero-starfield span {
    opacity: 0.55;
    transform: none;
    animation: none;
  }
}
