:root {
  --navy: #071326;
  --navy-2: #0d203c;
  --navy-3: #15345e;
  --blue: #245bff;
  --blue-dark: #153fc4;
  --lime: #dffc4d;
  --ice: #eef3f8;
  --white: #ffffff;
  --ink: #0a1020;
  --muted: #647187;
  --muted-light: #aab6c8;
  --line: rgba(10, 16, 32, 0.14);
  --line-light: rgba(255, 255, 255, 0.16);
  --shell: min(1240px, calc(100vw - 56px));
  --header-height: 82px;
  --radius: 0;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

svg {
  display: block;
}

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

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

address {
  font-style: normal;
}

[hidden] {
  display: none !important;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 16px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 900;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  background: rgba(7, 19, 38, 0.82);
  color: var(--white);
  backdrop-filter: blur(18px);
  transition: background-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 19, 38, 0.97);
  box-shadow: 0 18px 40px rgba(3, 9, 19, 0.18);
}

.scroll-progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.header-inner {
  width: var(--shell);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  position: relative;
  z-index: 3;
  min-width: 232px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}

.brand img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 5px;
}

.brand-copy strong {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.primary-navigation {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 26px;
}

.primary-navigation a {
  position: relative;
  padding-block: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.025em;
  transition: color 180ms ease;
}

.primary-navigation a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease);
}

.primary-navigation a:hover,
.primary-navigation a.is-active {
  color: var(--white);
}

.primary-navigation a:hover::after,
.primary-navigation a.is-active::after {
  transform: scaleX(1);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switch,
.menu-button {
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.language-switch {
  min-width: 48px;
  padding-inline: 11px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  transition: background-color 180ms ease, color 180ms ease;
}

.language-switch:hover {
  background: var(--white);
  color: var(--ink);
}

.header-contact {
  min-height: 42px;
  padding: 9px 17px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--lime);
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  transition: background-color 180ms ease, transform 180ms var(--ease);
}

.header-contact:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.header-contact svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.menu-button {
  width: 44px;
  padding: 10px;
  display: none;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 1px;
  margin-block: 6px;
  background: currentColor;
  transition: transform 220ms ease;
}

.eyebrow {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.eyebrow-light {
  color: var(--lime);
}

.section {
  padding-block: 120px;
}

.section-ice {
  background: var(--ice);
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-blue {
  background: var(--blue);
  color: var(--white);
}

.section-head {
  margin-bottom: 52px;
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) 1fr;
  gap: clamp(32px, 7vw, 96px);
  align-items: start;
}

.section-kicker {
  margin: 0;
  color: var(--blue);
  font-family: "Courier New", monospace;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.section-head h2,
.display-title {
  margin: 0;
  max-width: 840px;
  font-size: clamp(2.7rem, 5.2vw, 5.2rem);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: -0.065em;
}

.section-head > div > p {
  max-width: 660px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.section-dark .section-head > div > p,
.section-blue .section-head > div > p {
  color: rgba(255, 255, 255, 0.66);
}

.section-dark .section-kicker {
  color: var(--lime);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.text-link svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  transition: transform 180ms var(--ease);
}

.text-link:hover svg {
  transform: translateX(5px);
}

.button {
  min-height: 54px;
  padding: 13px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
  transition: transform 180ms var(--ease), background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

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

.button-primary:hover {
  background: var(--white);
}

.button-blue {
  background: var(--blue);
  color: var(--white);
}

.button-blue:hover {
  background: var(--blue-dark);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.button-outline:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.button-outline-dark {
  border-color: var(--ink);
  color: var(--ink);
}

.button-outline-dark:hover {
  background: var(--ink);
  color: var(--white);
}

.home-hero {
  position: relative;
  min-height: 890px;
  padding-top: var(--header-height);
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 16%, rgba(36, 91, 255, 0.24), transparent 30%),
    linear-gradient(120deg, var(--navy) 0%, var(--navy) 67%, #0a1930 67%, #0a1930 100%);
  color: var(--white);
}

.home-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc((100vw - min(1240px, calc(100vw - 56px))) / 2 + 51%);
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
}

.home-hero-inner {
  min-height: 742px;
  padding-block: 76px 58px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.home-hero-copy {
  position: relative;
  z-index: 2;
}

.home-hero h1 {
  max-width: 680px;
  margin: 27px 0 28px;
  font-size: clamp(4rem, 6.7vw, 7rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.075em;
}

.home-hero h1 span,
.home-hero h1 em {
  display: block;
}

.home-hero h1 em {
  color: var(--lime);
  font-style: normal;
}

.hero-intro {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.85;
}

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

.hero-proof {
  margin: 46px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
}

.hero-proof div {
  padding: 18px 18px 0 0;
}

.hero-proof div + div {
  padding-left: 18px;
  border-left: 1px solid var(--line-light);
}

.hero-proof dt {
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-proof dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.hero-media {
  position: relative;
  z-index: 1;
  min-height: 620px;
}

.hero-image {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--navy-2);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease);
}

.hero-image:hover img {
  transform: scale(1.025);
}

.hero-image-main {
  inset: 38px 72px 98px 0;
}

.hero-image-secondary {
  right: 0;
  bottom: 18px;
  width: 48%;
  height: 39%;
  box-shadow: -18px -18px 0 var(--blue);
}

.hero-image-label {
  position: absolute;
  right: 14px;
  bottom: 12px;
  left: 14px;
  padding: 9px 12px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  background: rgba(7, 19, 38, 0.83);
  color: var(--white);
  backdrop-filter: blur(8px);
  font-family: "Courier New", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.hero-logo-orbit {
  position: absolute;
  top: 0;
  right: 0;
  width: 144px;
  height: 144px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(7, 19, 38, 0.86);
  backdrop-filter: blur(12px);
}

.hero-logo-orbit::before,
.hero-logo-orbit::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}

.hero-logo-orbit::after {
  inset: 25px;
  border-style: solid;
}

.hero-logo-orbit img {
  position: relative;
  z-index: 1;
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.hero-coordinate {
  position: absolute;
  top: 190px;
  right: -32px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.55);
  font-family: "Courier New", monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  writing-mode: vertical-rl;
}

.hero-coordinate i {
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
}

.category-ticker {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-block: 1px solid rgba(7, 19, 38, 0.22);
  background: var(--lime);
  color: var(--ink);
}

.ticker-track {
  width: max-content;
  height: 66px;
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  animation: ticker 34s linear infinite;
}

.ticker-track i {
  color: var(--blue);
  font-style: normal;
  font-size: 22px;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.category-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 270px;
  gap: 14px;
}

.category-card {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  min-height: 270px;
  background: var(--navy);
  color: var(--white);
}

.category-card:nth-child(1) {
  grid-column: span 7;
  grid-row: span 2;
}

.category-card:nth-child(2),
.category-card:nth-child(3) {
  grid-column: span 5;
}

.category-card:nth-child(7) {
  grid-column: span 8;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease), filter 500ms ease;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(3, 11, 24, 0.9) 100%);
  pointer-events: none;
}

.category-card:hover img {
  transform: scale(1.04);
  filter: saturate(1.08);
}

.category-card-top,
.category-card-copy {
  position: absolute;
  right: 22px;
  left: 22px;
  z-index: 2;
}

.category-card-top {
  top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.75);
  font-family: "Courier New", monospace;
  font-size: 12px;
  font-weight: 700;
}

.category-card-top span:first-child {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--lime);
  color: var(--ink);
}

.category-card-copy {
  bottom: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 25px;
}

.category-card h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.5vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.category-card p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.category-card-arrow {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: background-color 180ms ease, color 180ms ease;
}

.category-card-arrow svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.category-card:hover .category-card-arrow {
  background: var(--lime);
  color: var(--ink);
}

.identity-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  gap: clamp(54px, 9vw, 126px);
  align-items: center;
}

.identity-copy h2 {
  margin: 27px 0 24px;
  font-size: clamp(2.9rem, 5.3vw, 5.4rem);
  line-height: 1.03;
  letter-spacing: -0.065em;
}

.identity-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.identity-copy .text-link {
  margin-top: 30px;
}

.dossier-card {
  position: relative;
  padding: 36px;
  border: 1px solid var(--ink);
  background: var(--white);
  box-shadow: 18px 18px 0 var(--blue);
}

.dossier-card::before {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  width: 74px;
  height: 74px;
  border-top: 8px solid var(--lime);
  border-right: 8px solid var(--lime);
}

.dossier-head {
  padding-bottom: 18px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--ink);
  font-family: "Courier New", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.dossier-head b {
  color: var(--blue);
}

.dossier-name {
  padding-block: 34px;
}

.dossier-name h3 {
  margin: 0;
  font-size: clamp(2.1rem, 3.8vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.dossier-name p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
}

.dossier-list {
  margin: 0;
  border-top: 1px solid var(--line);
}

.dossier-list div {
  padding: 16px 0;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.dossier-list dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.05em;
}

.dossier-list dd {
  margin: 0;
  font-size: 14px;
  font-weight: 850;
}

.dossier-bars {
  height: 38px;
  margin-top: 28px;
  display: flex;
  gap: 5px;
  opacity: 0.22;
}

.dossier-bars span {
  flex: 1;
  background: var(--ink);
}

.dossier-bars span:nth-child(2n) {
  flex: 0.32;
}

.dossier-bars span:nth-child(3n) {
  flex: 0.58;
}

.process-layout {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: clamp(52px, 9vw, 132px);
  align-items: start;
}

.process-intro {
  position: sticky;
  top: calc(var(--header-height) + 34px);
}

.process-intro h2 {
  margin: 24px 0 20px;
  font-size: clamp(2.8rem, 4.8vw, 5rem);
  line-height: 1.03;
  letter-spacing: -0.06em;
}

.process-intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 17px;
}

.process-steps {
  border-top: 1px solid var(--line-light);
}

.process-step {
  min-height: 190px;
  padding: 30px 0;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px;
  border-bottom: 1px solid var(--line-light);
}

.process-step > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: var(--lime);
  font-family: "Courier New", monospace;
  font-size: 13px;
  font-weight: 800;
}

.process-step h3 {
  margin: 4px 0 9px;
  font-size: 24px;
  line-height: 1.2;
}

.process-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
}

.brand-system {
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) 1.1fr;
  gap: clamp(55px, 9vw, 126px);
  align-items: center;
}

.logo-stage {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    var(--navy-2);
  background-size: 40px 40px;
}

.logo-stage::before {
  content: "QF / 07";
  position: absolute;
  top: 18px;
  left: 20px;
  color: rgba(255, 255, 255, 0.52);
  font-family: "Courier New", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.logo-stage::after {
  content: "";
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.logo-stage img {
  position: relative;
  z-index: 2;
  width: 68%;
  height: 68%;
  object-fit: contain;
}

.brand-system-copy h2 {
  margin: 25px 0 22px;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.03;
  letter-spacing: -0.065em;
}

.brand-system-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 17px;
}

.brand-notes {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.brand-notes li {
  padding: 16px 0;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 25px;
  border-bottom: 1px solid var(--line-light);
}

.brand-notes b {
  color: var(--lime);
  font-size: 13px;
}

.brand-notes span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.brand-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-cta {
  position: relative;
  overflow: hidden;
  padding-block: 94px;
  background: var(--lime);
  color: var(--ink);
}

.site-cta::after {
  content: "Q";
  position: absolute;
  right: -20px;
  bottom: -110px;
  color: rgba(10, 16, 32, 0.08);
  font-size: 330px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.08em;
}

.site-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.site-cta h2 {
  max-width: 830px;
  margin: 0;
  font-size: clamp(2.8rem, 5.2vw, 5.3rem);
  line-height: 1.02;
  letter-spacing: -0.065em;
}

.site-cta p {
  max-width: 680px;
  margin: 18px 0 0;
  font-size: 17px;
}

.site-cta .button {
  min-width: 205px;
  background: var(--ink);
  color: var(--white);
}

.site-cta .button:hover {
  background: var(--blue);
}

.page-hero {
  position: relative;
  min-height: 610px;
  padding-top: var(--header-height);
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.page-hero::before {
  content: "";
  position: absolute;
  top: var(--header-height);
  right: 0;
  width: 46%;
  height: calc(100% - var(--header-height));
  background: linear-gradient(130deg, rgba(36, 91, 255, 0.14), rgba(36, 91, 255, 0));
}

.page-hero-inner {
  min-height: 528px;
  padding-block: 76px 62px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(460px, 1.05fr);
  gap: clamp(58px, 8vw, 112px);
  align-items: center;
}

.page-hero-copy {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  margin: 0 0 28px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
  font-weight: 700;
}

.breadcrumb a:hover {
  color: var(--lime);
}

.breadcrumb i {
  color: var(--blue);
  font-style: normal;
}

.page-hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(3.8rem, 6.7vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.075em;
}

.page-hero h1 em {
  display: block;
  color: var(--lime);
  font-style: normal;
}

.page-hero-copy > p:not(.breadcrumb, .eyebrow) {
  max-width: 620px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 17px;
}

.page-hero-graphic {
  position: relative;
  min-height: 390px;
}

.page-hero-graphic img:not(.hero-mark) {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-graphic::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 18px 18px 0 var(--blue);
}

.page-hero-graphic .hero-mark {
  position: absolute;
  right: -42px;
  bottom: -42px;
  z-index: 2;
  width: 124px;
  height: 124px;
  padding: 17px;
  object-fit: contain;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.abstract-network {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    var(--navy-2);
  background-size: 42px 42px;
}

.abstract-network::before,
.abstract-network::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.abstract-network::before {
  inset: 10%;
}

.abstract-network::after {
  inset: 25%;
  border-style: dashed;
}

.abstract-network > img {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 180px;
  height: 180px;
  object-fit: contain;
  transform: translate(-50%, -50%);
}

.network-node {
  position: absolute;
  z-index: 3;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: var(--navy);
  color: var(--lime);
  font-family: "Courier New", monospace;
  font-size: 12px;
}

.network-node:nth-of-type(1) { top: 8%; left: 46%; }
.network-node:nth-of-type(2) { top: 22%; right: 11%; }
.network-node:nth-of-type(3) { right: 6%; bottom: 21%; }
.network-node:nth-of-type(4) { right: 30%; bottom: 6%; }
.network-node:nth-of-type(5) { left: 19%; bottom: 9%; }
.network-node:nth-of-type(6) { top: 43%; left: 5%; }
.network-node:nth-of-type(7) { top: 17%; left: 15%; }

.page-stat-strip {
  border-block: 1px solid var(--line);
  background: var(--white);
}

.page-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.page-stat {
  min-height: 128px;
  padding: 25px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
}

.page-stat:first-child {
  border-left: 1px solid var(--line);
}

.page-stat b {
  color: var(--blue);
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.page-stat span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(70px, 10vw, 150px);
  align-items: start;
}

.manifesto-grid h2 {
  margin: 0;
  font-size: clamp(3.1rem, 5.7vw, 5.8rem);
  line-height: 1.02;
  letter-spacing: -0.07em;
}

.manifesto-grid h2 em {
  display: block;
  color: var(--blue);
  font-style: normal;
}

.manifesto-copy {
  padding-top: 16px;
}

.manifesto-copy p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 17px;
}

.manifesto-copy .lead {
  color: var(--ink);
  font-size: 22px;
  font-weight: 750;
  line-height: 1.65;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.value-card {
  min-height: 350px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  transition: background-color 220ms ease, color 220ms ease;
}

.value-card:hover {
  background: var(--navy);
  color: var(--white);
}

.value-card > span {
  color: var(--blue);
  font-family: "Courier New", monospace;
  font-size: 13px;
  font-weight: 800;
}

.value-card svg {
  width: 74px;
  height: 74px;
  margin: 56px 0 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
}

.value-card h3 {
  margin: auto 0 10px;
  font-size: 24px;
}

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

.value-card:hover p {
  color: rgba(255, 255, 255, 0.65);
}

.timeline {
  position: relative;
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.timeline::before {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--line-light);
}

.timeline-item {
  position: relative;
  padding: 38px 35px 0 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 13px;
  height: 13px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(223, 252, 77, 0.08);
}

.timeline-item b {
  color: var(--lime);
  font-family: "Courier New", monospace;
  font-size: 13px;
}

.timeline-item h3 {
  margin: 12px 0 8px;
  font-size: 21px;
}

.timeline-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.business-directory {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.directory-card {
  min-height: 360px;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform 230ms var(--ease), box-shadow 230ms ease;
}

.directory-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 45px rgba(7, 19, 38, 0.12);
}

.directory-card-media {
  min-height: 100%;
  overflow: hidden;
}

.directory-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms var(--ease);
}

.directory-card:hover .directory-card-media img {
  transform: scale(1.04);
}

.directory-card-copy {
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.directory-card-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--lime);
  color: var(--ink);
  font-family: "Courier New", monospace;
  font-size: 12px;
  font-weight: 800;
}

.directory-card h2,
.directory-card h3 {
  margin: 34px 0 10px;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

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

.directory-card .text-link {
  margin-top: auto;
  padding-top: 28px;
}

.directory-card-wide {
  grid-column: 1 / -1;
  grid-template-columns: 1.15fr 0.85fr;
}

.directory-card-service {
  border-color: rgba(36, 91, 255, 0.42);
  background: var(--navy);
  color: var(--white);
}

.directory-card-service .directory-card-copy {
  background:
    radial-gradient(circle at 92% 8%, rgba(36, 91, 255, 0.25), transparent 32%),
    var(--navy);
}

.directory-card-service .directory-card-number {
  background: var(--blue);
  color: var(--white);
}

.directory-card-service h2,
.directory-card-service h3,
.directory-card-service .text-link {
  color: var(--white);
}

.directory-card-service p {
  color: rgba(255, 255, 255, 0.67);
}

.service-label {
  margin-top: 18px;
  color: var(--lime);
  font-family: "Courier New", monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.category-card-service .category-card-top span:first-child {
  background: var(--blue);
  color: var(--white);
}

.company-service-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}

.company-service-card figure {
  min-height: 470px;
  margin: 0;
  overflow: hidden;
  box-shadow: 18px 18px 0 var(--blue);
}

.company-service-card figure img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

.company-service-card h2 {
  margin: 24px 0 20px;
  font-size: clamp(2.7rem, 4.7vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.company-service-card p:not(.eyebrow) {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 16px;
}

.enquiry-checklist {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(55px, 9vw, 120px);
}

.enquiry-checklist h2 {
  margin: 25px 0 18px;
  font-size: clamp(2.8rem, 4.8vw, 4.9rem);
  line-height: 1.04;
  letter-spacing: -0.06em;
}

.enquiry-checklist > div > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
}

.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.checklist li {
  padding: 22px 0;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 22px;
  border-bottom: 1px solid var(--line-light);
}

.checklist span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--lime);
  color: var(--ink);
  font-family: "Courier New", monospace;
  font-size: 12px;
  font-weight: 800;
}

.checklist h3 {
  margin: 0 0 5px;
  font-size: 19px;
}

.checklist p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.company-dossier {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(54px, 9vw, 126px);
  align-items: start;
}

.company-dossier-intro {
  position: sticky;
  top: calc(var(--header-height) + 35px);
}

.company-dossier-intro h2 {
  margin: 26px 0 18px;
  font-size: clamp(2.9rem, 4.8vw, 4.9rem);
  line-height: 1.04;
  letter-spacing: -0.06em;
}

.company-dossier-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.registration-table {
  border-top: 1px solid var(--ink);
}

.registration-row {
  padding: 24px 0;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 30px;
  border-bottom: 1px solid var(--line);
}

.registration-row dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.registration-row dd {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
}

.registration-row dd strong {
  display: block;
  margin-bottom: 5px;
  font-size: 21px;
  line-height: 1.35;
}

.scope-tag-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.scope-tag {
  min-height: 155px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.scope-tag b {
  color: var(--lime);
  font-family: "Courier New", monospace;
  font-size: 12px;
}

.scope-tag span {
  font-size: 18px;
  font-weight: 800;
}

.address-panel {
  position: relative;
  padding: 42px;
  overflow: hidden;
  background: var(--blue);
  color: var(--white);
}

.address-panel::after {
  content: "HK";
  position: absolute;
  right: -20px;
  bottom: -68px;
  color: rgba(255, 255, 255, 0.08);
  font-size: 220px;
  font-weight: 900;
  line-height: 1;
}

.address-panel-head {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Courier New", monospace;
  font-size: 12px;
  font-weight: 700;
}

.address-panel address {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 52px 0 44px;
  font-size: clamp(1.7rem, 3.5vw, 3.45rem);
  font-weight: 850;
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.copy-button {
  position: relative;
  z-index: 1;
  min-height: 50px;
  padding: 11px 17px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 14px;
  font-weight: 850;
  transition: background-color 180ms ease, color 180ms ease;
}

.copy-button:hover {
  background: var(--white);
  color: var(--ink);
}

.copy-button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.privacy-note {
  padding: 25px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  border: 1px solid var(--line);
  background: var(--ice);
}

.privacy-note span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--lime);
  font-family: "Courier New", monospace;
  font-size: 13px;
  font-weight: 800;
}

.privacy-note h3 {
  margin: 0 0 5px;
  font-size: 18px;
}

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

.contact-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(54px, 8vw, 110px);
  align-items: start;
}

.contact-sidebar h2 {
  margin: 25px 0 18px;
  font-size: clamp(2.8rem, 4.8vw, 4.9rem);
  line-height: 1.04;
  letter-spacing: -0.06em;
}

.contact-sidebar > p {
  margin: 0;
  color: var(--muted);
}

.contact-channels {
  margin-top: 38px;
  border-top: 1px solid var(--ink);
}

.contact-channel {
  padding: 20px 0;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.contact-channel span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.contact-channel a,
.contact-channel address,
.contact-channel b {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.7;
}

.contact-unconfigured {
  margin-top: 20px;
  padding: 16px;
  border-left: 4px solid var(--lime);
  background: var(--navy);
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.inquiry-form {
  padding: 36px;
  border: 1px solid var(--line);
  background: var(--ice);
}

.form-heading {
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: start;
}

.form-heading h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.2;
}

.form-heading span {
  color: var(--blue);
  font-family: "Courier New", monospace;
  font-size: 12px;
  font-weight: 800;
}

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

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

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

.field label {
  font-size: 13px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(10, 16, 32, 0.25);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(36, 91, 255, 0.12);
}

.form-consent {
  margin: 23px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--blue);
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  padding: 24px 54px 24px 0;
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 800;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before,
.faq-item summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 18px;
  height: 2px;
  background: var(--blue);
  transition: transform 180ms ease;
}

.faq-item summary::after {
  transform: rotate(90deg);
}

.faq-item[open] summary::after {
  transform: rotate(0);
}

.faq-item div {
  max-width: 820px;
  padding: 0 54px 24px 0;
  color: var(--muted);
}

.faq-item p {
  margin: 0;
}

.category-detail-hero {
  position: relative;
  min-height: 760px;
  padding-top: var(--header-height);
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.service-detail-page .category-detail-hero h1 {
  font-size: clamp(3.35rem, 5.55vw, 6rem);
}

.service-index {
  width: auto;
  min-width: 58px;
  padding-inline: 15px;
  background: var(--blue);
  color: var(--white);
}

.service-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.service-process-card {
  min-height: 340px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.service-process-card > span {
  color: var(--lime);
  font-family: "Courier New", monospace;
  font-size: 12px;
  font-weight: 800;
}

.service-process-card h3 {
  margin: auto 0 12px;
  font-size: 23px;
  line-height: 1.16;
}

.service-process-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.service-deliverables {
  border-color: var(--line);
}

.service-deliverables .readiness-card {
  border-color: rgba(255, 255, 255, 0.12);
  background: var(--navy);
  color: var(--white);
}

.audit-map {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.audit-card {
  min-height: 260px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.audit-card b {
  color: var(--blue);
  font-family: "Courier New", monospace;
  font-size: 13px;
}

.audit-card h3 {
  margin: auto 0 10px;
  font-size: 23px;
}

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

.faq-list-dark {
  border-top-color: rgba(255, 255, 255, 0.35);
}

.faq-list-dark .faq-item {
  border-bottom-color: var(--line-light);
}

.faq-list-dark .faq-item div {
  color: rgba(255, 255, 255, 0.63);
}

.service-related h3 {
  max-width: 560px;
  font-size: clamp(1.35rem, 2.6vw, 2.3rem);
}

.category-detail-inner {
  min-height: 678px;
  padding-block: 62px;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(530px, 1.22fr);
  gap: clamp(56px, 8vw, 110px);
  align-items: center;
}

@media (min-width: 921px) {
  .category-detail-inner.is-reverse .category-detail-copy {
    order: 2;
  }

  .category-detail-inner.is-reverse .category-detail-media {
    order: 1;
  }
}

.category-detail-copy {
  position: relative;
  z-index: 2;
}

.category-index {
  width: 58px;
  height: 58px;
  margin-bottom: 26px;
  display: grid;
  place-items: center;
  background: var(--lime);
  color: var(--ink);
  font-family: "Courier New", monospace;
  font-size: 13px;
  font-weight: 900;
}

.category-detail-hero h1 {
  margin: 0;
  font-size: clamp(4rem, 7vw, 7.4rem);
  line-height: 0.93;
  letter-spacing: -0.075em;
}

.category-detail-hero h1 small {
  margin-top: 15px;
  display: block;
  color: var(--lime);
  font-size: 0.28em;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.category-detail-copy > p {
  max-width: 560px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 17px;
}

.category-detail-copy .hero-actions {
  margin-top: 30px;
}

.category-detail-media {
  position: relative;
  min-height: 535px;
}

.category-detail-media::before {
  content: "";
  position: absolute;
  top: 28px;
  right: -28px;
  bottom: -28px;
  left: 28px;
  background: var(--blue);
}

.category-detail-media img {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-detail-media span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 8px 12px;
  background: rgba(7, 19, 38, 0.84);
  color: rgba(255, 255, 255, 0.76);
  font-family: "Courier New", monospace;
  font-size: 12px;
  font-weight: 700;
}

.category-overview {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(55px, 9vw, 128px);
  align-items: start;
}

.category-overview h2 {
  margin: 25px 0 20px;
  font-size: clamp(2.8rem, 4.8vw, 4.9rem);
  line-height: 1.04;
  letter-spacing: -0.06em;
}

.category-overview > div:first-child > p {
  color: var(--muted);
}

.focus-list {
  border-top: 1px solid var(--ink);
}

.focus-item {
  padding: 26px 0;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.focus-item > span {
  color: var(--blue);
  font-family: "Courier New", monospace;
  font-size: 13px;
  font-weight: 800;
}

.focus-item h3 {
  margin: 0 0 7px;
  font-size: 22px;
}

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

.category-readiness {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.readiness-card {
  min-height: 290px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.readiness-card > span {
  color: var(--lime);
  font-family: "Courier New", monospace;
  font-size: 13px;
  font-weight: 800;
}

.readiness-card h3 {
  margin: auto 0 10px;
  font-size: 22px;
}

.readiness-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.related-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.related-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.related-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms var(--ease);
}

.related-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(7, 19, 38, 0.9));
}

.related-card div {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}

.related-card h3 {
  margin: 0;
  font-size: 25px;
}

.related-card span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.52);
  font-family: "Courier New", monospace;
  font-size: 12px;
}

.related-card:hover img {
  transform: scale(1.04);
}

.category-pagination {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.category-pagination a {
  min-height: 170px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  transition: background-color 200ms ease, color 200ms ease;
}

.category-pagination a:hover {
  background: var(--navy);
  color: var(--white);
}

.category-pagination span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.category-pagination b {
  font-size: 23px;
}

.category-pagination a:last-child {
  text-align: right;
}

.not-found {
  min-height: 100vh;
  padding: calc(var(--header-height) + 70px) 0 70px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--white);
}

.not-found-card {
  width: min(740px, calc(100vw - 40px));
  text-align: center;
}

.not-found .not-found-code {
  margin: 0;
  color: var(--lime);
  font-size: clamp(7rem, 26vw, 15rem);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.1em;
}

.not-found h1 {
  margin: 38px 0 13px;
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.not-found p {
  margin: 0 auto 30px;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.65);
}

.not-found .hero-actions {
  justify-content: center;
}

.site-footer {
  background: var(--navy);
  color: var(--white);
}

.footer-main {
  padding-block: 70px 55px;
  display: grid;
  grid-template-columns: 1.15fr 0.75fr 0.75fr 1fr;
  gap: clamp(35px, 6vw, 82px);
}

.footer-brand {
  align-self: start;
}

.footer-brand .brand {
  margin-bottom: 22px;
}

.footer-brand > p {
  max-width: 330px;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}

.footer-column h2,
.footer-column h3 {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.footer-links {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.footer-links a,
.footer-links address {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.65;
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--lime);
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-bottom {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 42px;
  align-items: center;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.38);
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p:nth-child(2) {
  justify-self: center;
  text-align: center;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
}

.back-to-top svg {
  width: 18px;
  fill: none;
  stroke: var(--lime);
  stroke-width: 1.8;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 400;
  max-width: calc(100vw - 44px);
  padding: 13px 18px;
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 14px 35px rgba(3, 10, 24, 0.22);
  font-size: 14px;
  font-weight: 850;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

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

.reveal-delay-1 {
  transition-delay: 80ms !important;
}

.reveal-delay-2 {
  transition-delay: 160ms !important;
}

.reveal-delay-3 {
  transition-delay: 240ms !important;
}

@media (max-width: 1120px) {
  .primary-navigation {
    gap: 18px;
  }

  .header-contact {
    display: none;
  }

  .home-hero-inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(450px, 1.1fr);
    gap: 48px;
  }

  .home-hero h1 {
    font-size: clamp(4rem, 7vw, 5.6rem);
  }

  .category-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 340px;
  }

  .category-card,
  .category-card:nth-child(1),
  .category-card:nth-child(2),
  .category-card:nth-child(3),
  .category-card:nth-child(7) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .category-card:nth-child(1) {
    grid-column: 1 / -1;
  }

  .category-card:nth-child(7) {
    grid-column: 1 / -1;
  }

  .category-card:nth-child(8) {
    grid-column: 1 / -1;
  }

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

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

@media (max-width: 920px) {
  :root {
    --shell: min(100% - 36px, 760px);
    --header-height: 74px;
  }

  .brand {
    min-width: 0;
  }

  .primary-navigation {
    position: fixed;
    inset: var(--header-height) 0 0;
    z-index: 2;
    margin: 0;
    padding: 34px 24px 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    visibility: hidden;
    overflow-y: auto;
    background: var(--navy);
    opacity: 0;
    transform: translateY(-12px);
    transition: visibility 180ms ease, opacity 180ms ease, transform 180ms ease;
  }

  .primary-navigation.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .primary-navigation a {
    width: 100%;
    padding: 17px 0;
    border-bottom: 1px solid var(--line-light);
    color: var(--white);
    font-size: 21px;
  }

  .primary-navigation a::after {
    display: none;
  }

  .menu-button {
    display: block;
  }

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

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

  .home-hero {
    min-height: 0;
  }

  .home-hero-inner {
    min-height: 0;
    padding-block: 68px;
    grid-template-columns: 1fr;
    gap: 68px;
  }

  .home-hero::after {
    display: none;
  }

  .home-hero h1 {
    font-size: clamp(4rem, 12vw, 6.3rem);
  }

  .hero-media {
    min-height: 600px;
  }

  .section-head,
  .identity-grid,
  .process-layout,
  .brand-system,
  .page-hero-inner,
  .manifesto-grid,
  .enquiry-checklist,
  .company-dossier,
  .contact-layout,
  .category-detail-inner,
  .category-overview,
  .company-service-card {
    grid-template-columns: 1fr;
  }

  .company-service-card {
    gap: 58px;
  }

  .section-head {
    gap: 25px;
  }

  .identity-grid,
  .brand-system {
    gap: 70px;
  }

  .process-intro,
  .company-dossier-intro {
    position: static;
  }

  .page-hero-inner {
    padding-block: 68px 86px;
    gap: 62px;
  }

  .page-hero {
    min-height: 0;
  }

  .page-hero-graphic,
  .abstract-network {
    min-height: 440px;
  }

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

  .page-stat:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .page-stat:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .business-directory {
    grid-template-columns: 1fr;
  }

  .directory-card-wide {
    grid-column: auto;
  }

  .category-detail-inner {
    padding-block: 68px 92px;
  }

  .category-detail-media {
    min-height: 520px;
  }

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

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

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand-copy small {
    display: none;
  }

  .brand-copy strong {
    font-size: 14px;
  }

  .home-hero-inner {
    padding-top: 54px;
  }

  .home-hero h1 {
    font-size: clamp(3.4rem, 15vw, 4.7rem);
  }

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

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    margin-top: 38px;
  }

  .hero-proof div {
    padding-right: 8px;
  }

  .hero-proof div + div {
    padding-left: 10px;
  }

  .hero-proof dt {
    font-size: 21px;
  }

  .hero-proof dd {
    font-size: 12px;
    line-height: 1.45;
  }

  .hero-media {
    min-height: 480px;
  }

  .hero-image-main {
    inset: 26px 38px 78px 0;
  }

  .hero-image-secondary {
    width: 54%;
    height: 38%;
    box-shadow: -10px -10px 0 var(--blue);
  }

  .hero-logo-orbit {
    width: 104px;
    height: 104px;
  }

  .hero-logo-orbit img {
    width: 62px;
    height: 62px;
  }

  .hero-coordinate {
    display: none;
  }

  .section {
    padding-block: 84px;
  }

  .section-head {
    margin-bottom: 38px;
  }

  .section-head h2,
  .display-title {
    font-size: clamp(2.5rem, 12vw, 3.6rem);
  }

  .category-bento {
    grid-template-columns: 1fr;
    grid-auto-rows: 320px;
  }

  .category-card,
  .category-card:nth-child(1),
  .category-card:nth-child(7),
  .category-card:nth-child(8) {
    grid-column: auto;
  }

  .service-process-grid,
  .audit-map {
    grid-template-columns: 1fr;
  }

  .service-process-card {
    min-height: 270px;
  }

  .company-service-card figure,
  .company-service-card figure img {
    min-height: 360px;
  }

  .identity-copy h2,
  .process-intro h2,
  .brand-system-copy h2,
  .manifesto-grid h2,
  .enquiry-checklist h2,
  .company-dossier-intro h2,
  .contact-sidebar h2,
  .category-overview h2 {
    font-size: clamp(2.6rem, 12vw, 3.7rem);
  }

  .dossier-card {
    padding: 24px 20px;
    box-shadow: 9px 9px 0 var(--blue);
  }

  .dossier-list div,
  .registration-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .process-step {
    grid-template-columns: 52px 1fr;
    gap: 18px;
  }

  .logo-stage {
    min-height: 390px;
  }

  .brand-notes li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .site-cta {
    padding-block: 76px;
  }

  .site-cta-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .site-cta h2 {
    font-size: clamp(2.6rem, 12vw, 3.8rem);
  }

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

  .page-hero h1,
  .category-detail-hero h1 {
    font-size: clamp(3.5rem, 15vw, 5rem);
  }

  .page-hero-graphic,
  .abstract-network {
    min-height: 330px;
  }

  .page-hero-graphic .hero-mark {
    right: -8px;
    bottom: -30px;
    width: 94px;
    height: 94px;
  }

  .page-stat-grid {
    grid-template-columns: 1fr;
  }

  .page-stat,
  .page-stat:first-child,
  .page-stat:nth-child(3) {
    border-left: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .value-grid,
  .timeline,
  .scope-tag-grid,
  .category-readiness,
  .related-categories,
  .category-pagination {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    display: none;
  }

  .timeline-item {
    padding: 28px 0 28px 34px;
    border-top: 1px solid var(--line-light);
  }

  .timeline-item::before {
    top: 34px;
  }

  .directory-card,
  .directory-card-wide {
    grid-template-columns: 1fr;
  }

  .directory-card-media {
    min-height: 300px;
  }

  .scope-tag {
    min-height: 130px;
  }

  .address-panel {
    padding: 30px 22px;
  }

  .address-panel address {
    font-size: clamp(1.55rem, 7.2vw, 2.25rem);
  }

  .contact-channel {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .inquiry-form {
    padding: 26px 20px;
  }

  .form-heading {
    display: block;
  }

  .form-heading span {
    display: block;
    margin-top: 8px;
  }

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

  .field-full {
    grid-column: auto;
  }

  .category-detail-media {
    min-height: 380px;
  }

  .category-detail-media::before {
    top: 14px;
    right: -10px;
    bottom: -14px;
    left: 14px;
  }

  .focus-item {
    grid-template-columns: 52px 1fr;
    gap: 14px;
  }

  .category-pagination a:last-child {
    text-align: left;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-bottom {
    padding-block: 28px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-bottom p:nth-child(2) {
    justify-self: start;
    text-align: left;
  }

  .back-to-top {
    justify-self: start;
  }
}

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

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

  .ticker-track {
    transform: none;
  }
}
