:root {
  --bg: #080a0b;
  --surface: #101315;
  --surface-2: #171b1d;
  --text: #f1f3ed;
  --muted: #999f9b;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #baff36;
  --accent-soft: rgba(186, 255, 54, 0.12);
  --warm: #ff7a38;
  --max: 1240px;
  --sans: Inter, "SF Pro Display", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 74% 4%, rgba(186, 255, 54, 0.07), transparent 26rem),
    var(--bg);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

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

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

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

.noise {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.cursor-light {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 520px;
  height: 520px;
  pointer-events: none;
  opacity: 0.16;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(186, 255, 54, 0.35), transparent 68%);
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 0.2s ease;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.04);
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--accent);
  box-shadow: 0 0 16px var(--accent);
}

.section-shell {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 32px), calc(var(--max) + 40px));
  margin: 14px auto 0;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(8, 10, 11, 0.72);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #0b0d0d;
  border-radius: 10px;
  background: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.site-header nav {
  display: flex;
  gap: 34px;
  color: #cdd0cc;
  font-size: 13px;
}

.site-header nav a {
  transition: color 0.2s ease;
}

.site-header nav a:hover {
  color: var(--accent);
}

.mini-cta {
  justify-self: end;
  padding: 9px 16px;
  color: var(--accent);
  border: 1px solid rgba(186, 255, 54, 0.45);
  border-radius: 9px;
  font-size: 12px;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  min-height: 760px;
  padding-block: 110px 90px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.24em;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(58px, 7vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.hero h1 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(241, 243, 237, 0.56);
}

.hero-intro {
  max-width: 660px;
  margin: 34px 0 0;
  color: #b9bdb9;
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.85;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  color: inherit;
  border: 0;
  border-radius: 12px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: #090b0b;
  background: var(--accent);
}

.button-ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 480px;
}

.hero-card {
  position: relative;
  z-index: 4;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(145deg, rgba(29, 34, 35, 0.92), rgba(10, 12, 13, 0.82));
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(16px);
}

.hero-card-main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: min(340px, 78vw);
  aspect-ratio: 0.72;
  padding: 24px;
  border-radius: 28px;
  transform: rotate(4deg);
  transition: transform 0.35s ease;
}

.hero-card-main:hover {
  transform: rotate(1deg) translateY(-6px);
}

.hero-card-main::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(120deg, transparent 50%, rgba(186, 255, 54, 0.12)),
    radial-gradient(circle at 70% 18%, rgba(186, 255, 54, 0.22), transparent 34%);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: max-content;
  padding: 7px 9px;
  border: 1px solid rgba(186, 255, 54, 0.22);
  border-radius: 99px;
  color: var(--accent);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 2s infinite;
}

.portrait-image {
  align-self: center;
  width: 78%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.36),
    0 0 0 8px rgba(255, 255, 255, 0.025);
}

.hero-card strong {
  display: block;
  margin-bottom: 7px;
  font-size: 24px;
}

.hero-card small {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.orbit-one {
  width: 430px;
  height: 430px;
  animation: spin 24s linear infinite;
}

.orbit-one::after {
  position: absolute;
  top: 22px;
  left: 72px;
  width: 9px;
  height: 9px;
  content: "";
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 24px var(--accent);
}

.orbit-two {
  width: 510px;
  height: 310px;
  transform: rotate(-18deg);
}

.float-label {
  position: absolute;
  z-index: 6;
  padding: 9px 12px;
  color: #c8cdc8;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 10, 11, 0.78);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  backdrop-filter: blur(10px);
  animation: float 5s ease-in-out infinite;
}

.label-one { top: 18%; left: 2%; }
.label-two { right: -2%; bottom: 30%; animation-delay: -1.5s; }
.label-three { bottom: 7%; left: 10%; animation-delay: -3s; }

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

.metric {
  min-height: 176px;
  padding: 34px;
  border-right: 1px solid var(--line);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  font-size: clamp(42px, 5vw, 68px);
  letter-spacing: -0.05em;
}

.metric em {
  margin-left: 5px;
  color: var(--accent);
  font-size: 0.34em;
  font-style: normal;
  letter-spacing: 0;
}

.metric p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.section-heading {
  padding-top: 150px;
}

.section-heading.compact {
  padding-top: 0;
}

.heading-row {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 50px;
  align-items: end;
}

.heading-row h2,
.pv-copy h2,
.capability-intro h2,
.contact h2 {
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.heading-row p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.featured-project {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(38px, 7vw, 100px);
  align-items: center;
  padding-top: 70px;
}

.poster-wrap {
  position: relative;
  overflow: hidden;
  max-width: 480px;
  border-radius: 26px;
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.55);
}

.poster-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: inherit;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.3);
}

.poster-wrap img {
  width: 100%;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.poster-wrap:hover img {
  transform: scale(1.035);
}

.project-index {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #0a0c0c;
  border-radius: 50%;
  background: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.poster-wrap .project-index {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
}

.project-topline,
.project-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.project-topline {
  padding-bottom: 18px;
  color: var(--accent);
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.project-copy h3,
.project-card-copy h3 {
  margin: 28px 0 18px;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.project-lead {
  max-width: 630px;
  margin: 0;
  color: #afb4af;
  font-size: 17px;
  line-height: 1.9;
}

.big-number {
  margin: 42px 0 28px;
  color: var(--accent);
}

.big-number span {
  display: block;
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.big-number small {
  display: block;
  margin-top: 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.24em;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-list span {
  padding: 8px 11px;
  color: #c7cbc7;
  border: 1px solid var(--line);
  border-radius: 99px;
  font-size: 11px;
}

.case-note {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.case-note span {
  padding: 6px 8px;
  color: #0a0c0c;
  border-radius: 5px;
  background: #f2f3ed;
  font-size: 10px;
  font-weight: 800;
}

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

.project-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 22px;
  padding-top: 110px;
}

.project-card {
  min-height: 660px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
}

.card-type {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.overseas-visual {
  position: relative;
  display: flex;
  justify-content: space-between;
  height: 250px;
  margin: 38px -28px 0;
  padding: 0 52px;
  overflow: hidden;
  color: transparent;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 122, 56, 0.22), transparent 45%),
    radial-gradient(circle at 74% 30%, rgba(186, 255, 54, 0.2), transparent 28%),
    #131819;
  font-size: 240px;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.18em;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.24);
}

.overseas-visual span:last-of-type {
  transform: translateY(70px);
}

.scanline {
  position: absolute;
  inset: -70% 0 auto;
  height: 60%;
  background: linear-gradient(transparent, rgba(186, 255, 54, 0.07), transparent);
  animation: scan 5s linear infinite;
}

.project-card-copy > p:first-child {
  margin: 30px 0 0;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.project-card-copy h3 {
  margin-top: 12px;
  font-size: clamp(32px, 4vw, 54px);
}

.project-card-copy > p:not(:first-child) {
  color: var(--muted);
  line-height: 1.8;
}

.project-card-copy > small {
  display: block;
  margin-top: 25px;
  color: #707672;
  font-size: 10px;
  line-height: 1.7;
}

.project-card-list {
  background:
    radial-gradient(circle at 100% 0, rgba(186, 255, 54, 0.08), transparent 30%),
    var(--surface);
}

.title-list {
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.title-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.title-list span {
  font-size: 14px;
}

.title-list small {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 10px;
}

.pv-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: center;
  padding-block: 170px;
}

.pv-copy {
  position: sticky;
  top: 120px;
}

.pv-copy h2 {
  font-size: clamp(42px, 5vw, 66px);
}

.pv-copy > p:not(.eyebrow) {
  margin: 28px 0;
  color: var(--muted);
  line-height: 1.9;
}

.pv-gallery {
  display: grid;
  gap: 26px;
}

.video-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #000;
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.32);
}

.video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #050505;
}

.video-card figcaption {
  display: flex;
  justify-content: space-between;
  padding: 14px 16px;
  color: #ced2cd;
  background: var(--surface);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.video-card figcaption small {
  color: var(--accent);
}

.video-card-offset {
  width: 84%;
  margin-left: auto;
}

.workflow {
  padding-block: 130px;
  border-top: 1px solid var(--line);
}

.workflow-track {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin: 70px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: item;
}

.workflow-track li {
  position: relative;
  min-height: 190px;
  padding: 23px 15px 18px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.workflow-track li:last-child {
  border-right: 0;
}

.workflow-track li::before {
  position: absolute;
  top: -5px;
  left: 15px;
  width: 9px;
  height: 9px;
  content: "";
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 13px var(--accent);
}

.workflow-track b {
  display: block;
  margin-bottom: 54px;
  color: #656b67;
  font-size: 10px;
}

.workflow-track strong,
.workflow-track span {
  display: block;
}

.workflow-track strong {
  font-size: 14px;
}

.workflow-track span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
}

.capabilities {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 75px;
  padding-block: 120px 170px;
}

.capability-intro h2 {
  font-size: clamp(40px, 5vw, 64px);
}

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

.capability-card {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.capability-card:hover {
  transform: translateY(-5px);
  border-color: rgba(186, 255, 54, 0.35);
  background: var(--accent-soft);
}

.capability-card > span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
}

.capability-card h3 {
  margin: 58px 0 12px;
  font-size: 21px;
}

.capability-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.tool-cloud {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 14px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.tool-cloud span {
  padding: 12px 15px;
  color: #d4d7d3;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  font-size: 11px;
}

.experience {
  padding-block: 130px;
  border-top: 1px solid var(--line);
}

.timeline {
  margin-top: 70px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 180px 26px 1fr;
  gap: 28px;
  min-height: 250px;
}

.timeline-date {
  padding-top: 3px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.timeline-dot {
  position: relative;
}

.timeline-dot::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 10px;
  height: 10px;
  content: "";
  border: 2px solid var(--accent);
  border-radius: 50%;
  background: var(--bg);
  transform: translateX(-50%);
}

.timeline-dot::after {
  position: absolute;
  top: 16px;
  bottom: 0;
  left: 50%;
  width: 1px;
  content: "";
  background: var(--line);
}

.timeline-item:last-child .timeline-dot::after {
  display: none;
}

.timeline-content {
  padding-bottom: 70px;
}

.timeline-content > p:first-child {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 12px;
}

.timeline-content h3 {
  margin: 0 0 18px;
  font-size: 30px;
}

.timeline-content > p:last-child {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.contact {
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
  padding: 90px;
  border: 1px solid rgba(186, 255, 54, 0.2);
  border-radius: 28px;
  background:
    linear-gradient(110deg, rgba(186, 255, 54, 0.11), transparent 45%),
    var(--surface);
}

.contact::after {
  position: absolute;
  right: -80px;
  bottom: -170px;
  width: 440px;
  height: 440px;
  content: "";
  border: 1px solid rgba(186, 255, 54, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 50px rgba(186, 255, 54, 0.025),
    0 0 0 100px rgba(186, 255, 54, 0.018);
}

.contact h2 {
  position: relative;
  z-index: 2;
}

.contact > p:not(.eyebrow) {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin: 28px 0;
  color: var(--muted);
  line-height: 1.8;
}

.contact-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 35px;
}

.button-disabled {
  cursor: default;
}

.button-disabled:hover {
  transform: none;
}

.contact-hint {
  color: #777d78;
  font-size: 11px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  padding-block: 26px 40px;
  color: #626763;
  border-top: 1px solid var(--line);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s cubic-bezier(0.2, 0.75, 0.25, 1),
    transform 0.8s cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  50% { opacity: 0.4; transform: scale(0.75); }
}

@keyframes float {
  50% { transform: translateY(-10px); }
}

@keyframes scan {
  to { transform: translateY(580px); }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 100px;
  }

  .hero-visual {
    min-height: 570px;
  }

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

  .metric {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .featured-project,
  .pv-section,
  .capabilities {
    grid-template-columns: 1fr;
  }

  .poster-wrap {
    width: min(100%, 500px);
    margin-inline: auto;
  }

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

  .pv-copy {
    position: static;
  }

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

  .workflow-track li {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  .section-shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
  }

  .brand-name {
    display: none;
  }

  .mini-cta {
    padding-inline: 12px;
  }

  .hero {
    min-height: auto;
    padding-block: 90px 60px;
  }

  .hero h1 {
    font-size: 52px;
  }

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

  .hero-actions {
    flex-direction: column;
  }

  .hero-visual {
    min-height: 490px;
  }

  .hero-card-main {
    width: 270px;
  }

  .portrait-image {
    width: 76%;
    border-radius: 20px;
  }

  .orbit-one {
    width: 320px;
    height: 320px;
  }

  .orbit-two {
    width: 350px;
    height: 250px;
  }

  .float-label {
    font-size: 7px;
  }

  .label-one { left: -5%; }
  .label-two { right: -5%; }

  .metric {
    min-height: 140px;
    padding: 28px 10px;
  }

  .section-heading {
    padding-top: 110px;
  }

  .heading-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .featured-project {
    padding-top: 48px;
  }

  .project-copy h3 {
    font-size: 40px;
  }

  .big-number span {
    font-size: 43px;
  }

  .project-grid {
    padding-top: 80px;
  }

  .project-card {
    min-height: auto;
    padding: 20px;
  }

  .overseas-visual {
    height: 190px;
    margin-inline: -20px;
    font-size: 180px;
  }

  .project-card-list {
    padding-bottom: 45px;
  }

  .title-list li {
    flex-direction: column;
    gap: 7px;
  }

  .pv-section {
    padding-block: 120px;
  }

  .video-card-offset {
    width: 100%;
  }

  .workflow {
    padding-block: 100px;
  }

  .workflow-track {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .workflow-track li {
    display: grid;
    grid-template-columns: 42px 1fr;
    min-height: 110px;
    padding: 22px 8px 22px 20px;
    border-right: 0;
  }

  .workflow-track b {
    grid-row: 1 / 3;
    margin: 0;
  }

  .workflow-track strong {
    font-size: 16px;
  }

  .workflow-track span {
    margin-top: 4px;
  }

  .capabilities {
    gap: 55px;
    padding-block: 95px 120px;
  }

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

  .capability-card {
    min-height: 220px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-left: 25px;
    border-left: 1px solid var(--line);
  }

  .timeline-dot {
    display: none;
  }

  .contact {
    width: calc(100% - 28px);
    padding: 50px 24px;
  }

  .contact h2 {
    font-size: 42px;
  }

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

  .site-footer {
    gap: 10px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .cursor-light {
    display: none;
  }
}
