:root {
  --blue: #406cb1;
  --blue-deep: #071a3a;
  --yellow: #ffd800;
  --cyan: #26d6ff;
  --ink: #101114;
  --muted: #666d79;
  --line: rgba(255, 255, 255, 0.16);
  --paper: #f7f8fb;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(3, 15, 35, 0.2);
  --apple-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Microsoft YaHei", sans-serif;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: keep-all;
}

body.modal-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.cinematic-camera {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.72;
  mix-blend-mode: screen;
  transition: filter 0.8s cubic-bezier(0.18, 0.9, 0.22, 1), opacity 0.5s ease;
}

.camera-hud {
  position: fixed;
  right: 24px;
  bottom: 22px;
  z-index: 12;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.68);
  pointer-events: none;
  background: rgba(3, 8, 20, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  opacity: 0.72;
}

.camera-hud-label {
  color: var(--yellow);
  font-size: 10px;
  font-weight: 900;
}

.camera-hud-target {
  min-width: 78px;
  font-size: 11px;
  font-weight: 850;
  text-align: right;
}

.travel-burst {
  position: fixed;
  inset: 0;
  z-index: 11;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at var(--burst-x, 50%) var(--burst-y, 45%), rgba(255, 216, 0, 0.44), transparent 9%),
    radial-gradient(circle at var(--burst-x, 50%) var(--burst-y, 45%), rgba(38, 214, 255, 0.22), transparent 24%),
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
  mix-blend-mode: screen;
  transform: scale(0.75);
}

.lens-tunnel {
  position: fixed;
  inset: 0;
  z-index: 13;
  pointer-events: none;
  opacity: 0;
  perspective: 900px;
  transform-style: preserve-3d;
}

.lens-tunnel span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34vmin;
  height: 34vmin;
  border: 1.5px solid rgba(255, 216, 0, 0.74);
  border-radius: 50%;
  box-shadow:
    0 0 26px rgba(255, 216, 0, 0.32),
    inset 0 0 30px rgba(38, 214, 255, 0.16);
  transform: translate(-50%, -50%) rotateX(68deg) scale(0.2);
}

.lens-tunnel span:nth-child(2) {
  width: 48vmin;
  height: 48vmin;
  border-color: rgba(38, 214, 255, 0.62);
}

.lens-tunnel span:nth-child(3) {
  width: 66vmin;
  height: 66vmin;
  border-color: rgba(255, 255, 255, 0.38);
}

.lens-tunnel span:nth-child(4) {
  width: 88vmin;
  height: 88vmin;
  border-color: rgba(255, 216, 0, 0.26);
}

.side-camera {
  position: fixed;
  right: min(-210px, -10vw);
  top: 44%;
  z-index: 0;
  width: clamp(420px, 44vw, 760px);
  pointer-events: none;
  opacity: 0.2;
  filter: saturate(1.06) contrast(1.08) drop-shadow(0 34px 56px rgba(0, 0, 0, 0.22));
  transform: translateY(-50%);
}

.side-camera img {
  width: 100%;
}

body.is-traveling .cinematic-camera {
  filter: saturate(1.8) brightness(1.35) blur(0.3px);
  opacity: 0.96;
}

body.is-traveling main {
  animation: contentWarp 1.35s var(--apple-ease);
}

body.is-traveling .travel-burst {
  animation: travelBurst 1.35s var(--apple-ease);
}

body.is-traveling .lens-tunnel {
  animation: tunnelFlash 1.35s var(--apple-ease);
}

body.is-traveling .lens-tunnel span {
  animation: tunnelRing 1.35s var(--apple-ease);
}

body.is-traveling .lens-tunnel span:nth-child(2) {
  animation-delay: 0.05s;
}

body.is-traveling .lens-tunnel span:nth-child(3) {
  animation-delay: 0.1s;
}

body.is-traveling .lens-tunnel span:nth-child(4) {
  animation-delay: 0.15s;
}

body.is-traveling .camera-hud {
  color: #fff;
  opacity: 1;
  box-shadow: 0 0 38px rgba(255, 216, 0, 0.18);
}

body.is-traveling .site-header {
  box-shadow: 0 0 0 1px rgba(255, 216, 0, 0.32), 0 24px 60px rgba(255, 216, 0, 0.16);
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  height: 60px;
  padding: 0 12px 0 16px;
  color: #fff;
  background: rgba(5, 12, 28, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: background 0.25s ease, box-shadow 0.25s ease, top 0.25s ease;
}

.site-header.is-scrolled {
  top: 10px;
  background: rgba(5, 12, 28, 0.9);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.brand img {
  width: 178px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 780;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: none;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.section {
  position: relative;
  padding: 104px max(28px, calc((100vw - 1180px) / 2));
  overflow: hidden;
  isolation: isolate;
}

.section-dark {
  color: #fff;
  background: #05070c;
}

.section::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: 0.42;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 216, 0, 0.08) 36%, transparent 52%),
    radial-gradient(circle at 72% 22%, rgba(38, 214, 255, 0.12), transparent 28%);
  transform: translate3d(calc(var(--camera-shift, 0) * 1px), 0, 0);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.55fr);
  align-items: center;
  gap: 54px;
  min-height: 100svh;
  padding-top: 132px;
  padding-bottom: 92px;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  filter: saturate(1.16) contrast(1.04) brightness(1.02);
}

.hero-media::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 8, 19, 0.72) 0%, rgba(8, 23, 52, 0.44) 45%, rgba(4, 7, 13, 0.16) 100%),
    linear-gradient(180deg, rgba(3, 6, 14, 0.22) 0%, rgba(3, 6, 14, 0.72) 100%);
}

.hero-media::after {
  position: absolute;
  right: -8%;
  bottom: 16%;
  width: 58%;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--yellow), var(--cyan), transparent);
  filter: blur(0.2px);
  transform: rotate(-9deg);
  animation: lightSweep 5.5s ease-in-out infinite;
}

.hero-scanline {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 100% 9px;
  mix-blend-mode: screen;
  opacity: 0.35;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  transform: rotate(-16deg);
}

.hero-orbit-a {
  right: 9%;
  bottom: 12%;
  width: 420px;
  height: 150px;
  border-color: rgba(255, 216, 0, 0.35);
  animation: orbitPulse 4.8s ease-in-out infinite;
}

.hero-orbit-b {
  right: 17%;
  bottom: 20%;
  width: 660px;
  height: 210px;
  border-color: rgba(38, 214, 255, 0.28);
  animation: orbitPulse 6s ease-in-out infinite reverse;
}

.hero-content {
  max-width: 760px;
}

.line {
  display: block;
  white-space: nowrap;
}

.eyebrow,
.section-kicker,
.service-card span,
.case-card span,
.studio-card-body span,
.article-card time {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 16px 0 24px;
  color: #fff;
  font-size: clamp(58px, 8.6vw, 132px);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero h1 .accent {
  color: var(--yellow);
}

.hero-copy {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.8;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 850;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: #0d1320;
  background: var(--yellow);
  box-shadow: 0 14px 28px rgba(255, 216, 0, 0.22);
}

.button-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.hero-showcase {
  position: relative;
  display: grid;
  justify-items: center;
  align-self: center;
  padding: 42px 28px 34px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at 50% 28%, rgba(64, 108, 177, 0.18), transparent 44%);
  border: 1px solid rgba(255, 216, 0, 0.25);
  border-radius: 30px;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(22px);
  overflow: hidden;
}

.hero-showcase::before {
  position: absolute;
  inset: -20%;
  content: "";
  background:
    conic-gradient(from 130deg, transparent, rgba(255, 216, 0, 0.28), transparent, rgba(38, 214, 255, 0.24), transparent);
  animation: showcaseSpin 10s linear infinite;
  opacity: 0.9;
}

.hero-showcase::after {
  position: absolute;
  inset: 1px;
  content: "";
  background: rgba(4, 8, 17, 0.72);
  border-radius: 27px;
}

.showcase-lens,
.hero-showcase p,
.showcase-tags {
  position: relative;
  z-index: 1;
}

.showcase-lens {
  position: relative;
  display: grid;
  width: min(28vw, 260px);
  min-width: 190px;
  aspect-ratio: 1;
  place-items: center;
  background:
    radial-gradient(circle at 38% 32%, rgba(255, 255, 255, 0.18), transparent 9%),
    radial-gradient(circle at 62% 66%, rgba(38, 214, 255, 0.16), transparent 14%),
    radial-gradient(circle, #0a1018 0 33%, #101923 34% 46%, #05080d 47% 68%, #222725 69% 72%, #0a0e13 73%);
  border: 2px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 12px rgba(255, 255, 255, 0.04),
    0 0 0 28px rgba(0, 0, 0, 0.2),
    0 0 70px rgba(64, 108, 177, 0.42),
    inset 0 0 26px rgba(255, 255, 255, 0.12),
    inset 0 0 84px rgba(0, 0, 0, 0.78);
  animation: lensFloat 5.2s ease-in-out infinite;
}

.showcase-lens::before,
.showcase-lens::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  pointer-events: none;
}

.showcase-lens::before {
  inset: 10%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 216, 0, 0.18), transparent 16%),
    radial-gradient(circle at 58% 62%, rgba(64, 108, 177, 0.26), transparent 22%);
  box-shadow: inset 0 0 48px rgba(0, 0, 0, 0.8);
}

.showcase-lens::after {
  inset: 23%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.09), rgba(0, 0, 0, 0.36) 62%);
}

.lens-glass {
  position: relative;
  z-index: 2;
  display: grid;
  width: 58%;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.13), transparent 30%),
    linear-gradient(145deg, rgba(64, 108, 177, 0.72), rgba(3, 8, 20, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow:
    inset 0 0 36px rgba(0, 0, 0, 0.55),
    0 12px 38px rgba(0, 0, 0, 0.34);
}

.lens-glass img {
  width: 72%;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.38));
}

.hero-showcase p {
  max-width: 300px;
  margin: 28px auto 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.45;
  text-align: center;
}

.showcase-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.showcase-tags span {
  padding: 7px 12px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 13px;
}

.scroll-cue {
  position: absolute;
  right: max(28px, calc((100vw - 1180px) / 2));
  bottom: 26px;
  display: grid;
  width: 38px;
  height: 62px;
  place-items: start center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
}

.scroll-cue span {
  width: 4px;
  height: 12px;
  margin-top: 10px;
  background: var(--yellow);
  border-radius: 999px;
  animation: scrollCue 1.7s ease-in-out infinite;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, max-content) minmax(300px, 520px);
  align-items: end;
  justify-content: start;
  gap: clamp(24px, 6vw, 96px);
  margin-bottom: 42px;
}

.section-heading h2 {
  max-width: 760px;
  margin: 8px 0 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: 0;
}

.section-heading h2.inline-heading {
  max-width: none;
  font-size: clamp(34px, 5vw, 64px);
  white-space: nowrap;
}

.section-heading p {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  text-wrap: balance;
}

.services .section-heading p,
.cases .section-heading p,
.studios .section-heading p {
  white-space: nowrap;
}

.section-dark .section-heading p {
  color: rgba(255, 255, 255, 0.66);
}

.services {
  background:
    radial-gradient(circle at 84% 10%, rgba(64, 108, 177, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 216, 0, 0.1), transparent 30%),
    var(--paper);
}

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

.service-card {
  --service-hue: 210;
  --service-image: url("assets/services/service-brand-generated.png");
  position: relative;
  display: flex;
  min-height: 250px;
  padding: 18px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  font: inherit;
  text-align: left;
  color: #fff;
  cursor: pointer;
  isolation: isolate;
  background: #060a12;
  border: 1px solid rgba(16, 17, 20, 0.12);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(4, 21, 53, 0.1);
  transition: transform 0.45s var(--apple-ease), border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.service-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(150deg, rgba(4, 7, 13, 0.18), rgba(4, 7, 13, 0.22) 42%, rgba(0, 0, 0, 0.42)),
    var(--service-image) center / cover;
  z-index: -2;
  transition: transform 0.75s var(--apple-ease), filter 0.45s ease;
}

.service-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(4, 7, 13, 0) 0%, rgba(4, 7, 13, 0.16) 34%, rgba(4, 7, 13, 0.86) 100%),
    radial-gradient(circle at 78% 20%, hsla(var(--service-hue), 86%, 58%, 0.24), transparent 30%),
    radial-gradient(circle at 18% 18%, rgba(255, 216, 0, 0.16), transparent 24%);
  z-index: -1;
  opacity: 0.82;
  transition: opacity 0.3s ease;
}

.service-card:hover,
.service-card.active {
  color: #fff;
  background: #090d15;
  border-color: rgba(255, 216, 0, 0.5);
  box-shadow: 0 30px 80px rgba(4, 21, 53, 0.18);
  transform: translateY(-6px);
}

.service-card:hover::before,
.service-card.active::before {
  filter: saturate(1.12) contrast(1.08) brightness(1.04);
  transform: scale(1.04);
}

.service-card:hover::after,
.service-card.active::after {
  opacity: 0.98;
}

.service-card:focus-visible {
  border-color: var(--yellow);
  outline: 3px solid rgba(255, 216, 0, 0.28);
  outline-offset: 3px;
}

.service-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: auto;
}

.service-topline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 34px;
  color: #071326;
  background: var(--yellow);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 950;
  box-shadow: 0 12px 30px rgba(255, 216, 0, 0.2);
}

.service-topline b {
  max-width: 6em;
  color: var(--yellow);
  font-size: 15px;
  line-height: 1.2;
  text-align: right;
}

.service-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(21px, 1.65vw, 28px);
  line-height: 1.16;
  letter-spacing: 0;
  text-wrap: balance;
  white-space: nowrap;
}

.service-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.62;
}

.service-card:hover p {
  color: rgba(255, 255, 255, 0.86);
}

.service-brand {
  --service-hue: 205;
  --service-image: url("assets/services/service-brand-generated.png");
}

.service-product {
  --service-hue: 42;
  --service-image: url("assets/services/service-product-generated.png");
}

.service-report {
  --service-hue: 218;
  --service-image: url("assets/services/service-report-generated.png");
}

.service-warning {
  --service-hue: 34;
  --service-image: url("assets/services/service-warning-generated.png");
}

.service-short,
.service-course {
  --service-hue: 158;
  --service-image: url("assets/services/service-course-generated.png");
}

.service-film {
  --service-hue: 236;
  --service-image: url("assets/services/service-film-generated.png");
}

.service-ai {
  --service-hue: 188;
  --service-image: url("assets/services/service-ai-generated.png");
}

.service-motion {
  --service-hue: 262;
  --service-image: url("assets/services/service-motion-generated.png");
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
  gap: 22px;
  margin-top: 18px;
  padding: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 92% 16%, rgba(255, 216, 0, 0.16), transparent 28%),
    linear-gradient(135deg, #071326, #101827 58%, #060a12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(4, 21, 53, 0.16);
}

.service-detail span {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
}

.service-detail h3 {
  margin: 8px 0 14px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1;
}

.service-detail p {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.8;
}

.service-detail ul {
  display: grid;
  gap: 12px;
  align-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-detail li {
  position: relative;
  padding: 12px 14px 12px 34px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
}

.service-detail li::before {
  position: absolute;
  top: 18px;
  left: 16px;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--yellow);
  border-radius: 50%;
}

.process-section {
  margin-top: 18px;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.72)),
    radial-gradient(circle at 0 0, rgba(64, 108, 177, 0.14), transparent 32%);
  border: 1px solid rgba(16, 17, 20, 0.08);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(4, 21, 53, 0.1);
}

.process-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.process-heading span {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.process-heading h3 {
  margin: 8px 0 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
}

.process-heading p {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.process-track article {
  position: relative;
  min-height: 178px;
  padding: 20px 18px;
  background: #fff;
  border: 1px solid rgba(64, 108, 177, 0.12);
  border-radius: 8px;
}

.process-track article::after {
  position: absolute;
  top: 34px;
  right: -14px;
  z-index: 2;
  width: 18px;
  height: 2px;
  content: "";
  background: rgba(64, 108, 177, 0.28);
}

.process-track article:last-child::after {
  display: none;
}

.process-track b {
  color: var(--blue);
  font-size: 26px;
}

.process-track h4 {
  margin: 18px 0 10px;
  font-size: 19px;
}

.process-track p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.service-request {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 26px 28px;
  color: #fff;
  background:
    radial-gradient(circle at 92% 24%, rgba(255, 216, 0, 0.24), transparent 24%),
    linear-gradient(135deg, #071326, #102956);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(4, 21, 53, 0.14);
}

.service-request span {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-request h3 {
  margin: 8px 0 10px;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1;
}

.service-request p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

.service-request a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  color: #0d1320;
  background: var(--yellow);
  border-radius: 999px;
  font-weight: 900;
}

.cases {
  padding-right: max(28px, calc((100vw - 1180px) / 2));
}

.cases::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 82% 18%, rgba(64, 108, 177, 0.45), transparent 28%),
    linear-gradient(180deg, #05070c 0%, #090d14 100%);
  pointer-events: none;
}

.cases > * {
  position: relative;
}

.case-tabs {
  display: flex;
  gap: 8px;
  max-width: 100%;
  padding-bottom: 20px;
  overflow-x: auto;
}

.case-tabs button {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.case-tabs button.active,
.case-tabs button:hover {
  color: #0d1320;
  background: var(--yellow);
  border-color: var(--yellow);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding-top: 8px;
}

.case-tabs::-webkit-scrollbar {
  height: 6px;
}

.case-tabs::-webkit-scrollbar-thumb {
  background: rgba(255, 216, 0, 0.62);
  border-radius: 999px;
}

.case-card {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  aspect-ratio: 16 / 9;
  padding: 0;
  overflow: hidden;
  color: #fff;
  cursor: pointer;
  background: #10151e;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  transition: transform 0.38s var(--apple-ease), border-color 0.28s ease, box-shadow 0.38s var(--apple-ease);
}

.case-card:hover {
  border-color: rgba(255, 216, 0, 0.62);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
  transform: translateY(-6px) scale(1.01);
}

.case-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04) brightness(0.94);
  transition: transform 0.65s var(--apple-ease), filter 0.35s ease;
}

.case-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.12) contrast(1.06) brightness(1);
}

.case-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(4, 7, 13, 0) 0%, rgba(4, 7, 13, 0.02) 64%, rgba(4, 7, 13, 0.78) 100%);
  pointer-events: none;
}

.case-card-body {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: grid;
  gap: 3px;
  min-height: 44px;
  padding: 8px 12px 10px;
  text-align: left;
  background: linear-gradient(180deg, rgba(5, 8, 14, 0), rgba(5, 8, 14, 0.76) 36%, rgba(5, 8, 14, 0.92));
}

.case-card h3 {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.18;
  text-wrap: auto;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.case-card p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  line-height: 1.42;
  max-height: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.case-card:hover p {
  max-height: 38px;
  opacity: 1;
  transform: translateY(0);
}

.case-play {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  backdrop-filter: blur(16px);
  transform: translateY(-4px);
  opacity: 0;
  transition: opacity 0.28s ease, transform 0.28s ease, background 0.28s ease;
}

.case-play::before {
  width: 0;
  height: 0;
  margin-left: 3px;
  content: "";
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #fff;
}

.case-card:hover .case-play {
  background: rgba(255, 216, 0, 0.9);
  transform: translateY(0);
  opacity: 1;
}

.case-card:hover .case-play::before {
  border-left-color: #0d1320;
}

.case-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.case-toolbar button {
  min-height: 42px;
  padding: 0 18px;
  color: #0d1320;
  cursor: pointer;
  background: var(--yellow);
  border: 0;
  border-radius: 999px;
  font-weight: 900;
}

.case-toolbar button[hidden] {
  display: none;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 28px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.video-modal.active {
  pointer-events: auto;
  opacity: 1;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  cursor: pointer;
  background: rgba(2, 5, 11, 0.76);
  border: 0;
  backdrop-filter: blur(18px);
}

.video-modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1120px, 100%);
  max-height: calc(100svh - 56px);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    #060a12;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.52);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.42s var(--apple-ease);
}

.video-modal.active .video-modal-panel {
  transform: translateY(0) scale(1);
}

.video-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #fff;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 24px;
  line-height: 1;
  backdrop-filter: blur(12px);
}

.video-frame {
  background: #000;
  aspect-ratio: 16 / 9;
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.video-info {
  display: grid;
  gap: 10px;
  padding: 22px 24px 24px;
}

.video-info > span {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
}

.video-info h3 {
  margin: 0;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.1;
}

.video-info p {
  max-width: 860px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.video-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.video-tags span {
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 12px;
}

.studios {
  background: #fff;
}

.studio-booking-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(340px, 0.74fr);
  gap: 16px;
  align-items: stretch;
}

.studio-stage,
.booking-form,
.studio-detail-card,
.booking-records {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 17, 20, 0.08);
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(4, 21, 53, 0.1);
  backdrop-filter: blur(18px);
}

.studio-stage {
  position: relative;
  display: flex;
  min-height: 100%;
  padding: 12px;
  flex-direction: column;
  overflow: hidden;
}

.studio-tabs {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 3;
  display: flex;
  gap: 8px;
  padding: 6px;
  background: rgba(8, 13, 24, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  backdrop-filter: blur(14px);
}

.studio-tabs button,
.segmented-control button {
  min-height: 38px;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-weight: 850;
}

.studio-tabs button.active,
.segmented-control button.active {
  color: #0d1320;
  background: var(--yellow);
}

.studio-visual {
  position: relative;
  flex: 1 1 auto;
  min-height: 350px;
  height: clamp(340px, 34vw, 430px);
  overflow: hidden;
  color: #fff;
  background: #f4f6f8;
  border-radius: 18px;
}

.studio-visual.active {
  animation: studioReveal 0.7s var(--apple-ease);
}

.studio-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f4f6f8;
  filter: saturate(1.08) contrast(1.04);
  opacity: 1;
  transition: opacity 0.28s ease, transform 0.7s var(--apple-ease), filter 0.45s ease;
}

.studio-visual.is-dimensions img {
  object-fit: contain;
}

.studio-visual.is-switching img {
  opacity: 0;
  transform: scale(1.018);
}

.studio-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(4, 7, 13, 0) 0%, rgba(4, 7, 13, 0.12) 100%);
}

.studio-visual-copy {
  position: absolute;
  right: 22px;
  top: 22px;
  bottom: auto;
  left: auto;
  z-index: 1;
  max-width: min(300px, calc(100% - 44px));
  padding: 14px 16px;
  background: rgba(5, 10, 20, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  backdrop-filter: blur(14px);
}

.studio-visual-copy span {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.studio-visual-copy h3 {
  margin: 6px 0 8px;
  font-size: clamp(28px, 2.7vw, 40px);
  line-height: 1;
}

.studio-visual-copy p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.48;
}

.studio-nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #fff;
  cursor: pointer;
  background: rgba(5, 10, 20, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  transform: translateY(-50%);
  transition: transform 0.24s ease, background 0.24s ease, opacity 0.24s ease;
}

.studio-nav:hover {
  background: rgba(5, 10, 20, 0.68);
  transform: translateY(-50%) scale(1.06);
}

.studio-nav-prev {
  left: 18px;
}

.studio-nav-next {
  right: 18px;
}

.studio-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
  flex: 0 0 auto;
}

.studio-gallery button {
  position: relative;
  height: 92px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  background: #e9edf4;
  border: 2px solid transparent;
  border-radius: 16px;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.studio-gallery button.active {
  border-color: var(--yellow);
  box-shadow: 0 14px 34px rgba(255, 216, 0, 0.22);
}

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

.studio-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.booking-form {
  padding: 22px;
}

.booking-form-head span,
.booking-summary span,
.booking-records-head span {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-form-head h3 {
  margin: 6px 0 6px;
  font-size: 34px;
  line-height: 1;
}

.booking-form-head p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.form-field {
  display: grid;
  gap: 7px;
  margin-top: 14px;
}

.form-field > span {
  color: #20242b;
  font-size: 14px;
  font-weight: 900;
}

.form-field input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  color: #111;
  background: rgba(247, 248, 251, 0.86);
  border: 1px solid rgba(16, 17, 20, 0.1);
  border-radius: 14px;
  outline: none;
}

.form-field input:focus {
  border-color: rgba(64, 108, 177, 0.6);
  box-shadow: 0 0 0 4px rgba(64, 108, 177, 0.12);
}

.slot-options {
  display: grid;
  gap: 8px;
}

.slot-options button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 0 14px;
  color: #1c2430;
  cursor: pointer;
  background: #f7f8fb;
  border: 1px solid rgba(16, 17, 20, 0.08);
  border-radius: 14px;
  font-weight: 900;
  transition: transform 0.24s var(--apple-ease), border-color 0.24s ease, background 0.24s ease;
}

.slot-options button.active {
  color: #0d1320;
  background: var(--yellow);
  border-color: var(--yellow);
  transform: translateY(-1px);
}

.slot-options button:disabled {
  color: rgba(32, 36, 43, 0.45);
  cursor: not-allowed;
  background: #eef1f5;
  border-color: rgba(16, 17, 20, 0.06);
  transform: none;
}

.slot-options small {
  color: #66707e;
  font-size: 12px;
}

.slot-options button.active small {
  color: rgba(13, 19, 32, 0.72);
}

.slot-loading {
  margin: 0;
  padding: 14px;
  color: var(--muted);
  background: #f7f8fb;
  border: 1px solid rgba(16, 17, 20, 0.08);
  border-radius: 14px;
  font-size: 13px;
  font-weight: 800;
}

.segmented-control {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 6px;
  background: #eef2f7;
  border-radius: 18px;
}

.segmented-control button {
  color: #313842;
}

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

.plan-options button {
  display: grid;
  gap: 4px;
  min-height: 92px;
  padding: 14px;
  text-align: left;
  cursor: pointer;
  background: #f7f8fb;
  border: 1px solid rgba(16, 17, 20, 0.08);
  border-radius: 18px;
  transition: transform 0.25s var(--apple-ease), border-color 0.25s ease, background 0.25s ease;
}

.plan-options button.active {
  color: #0d1320;
  background: var(--yellow);
  border-color: var(--yellow);
  transform: translateY(-2px);
}

.plan-options b {
  font-size: 18px;
}

.plan-options small {
  color: #666d79;
}

.plan-options strong {
  font-size: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.booking-note-field {
  margin-top: 14px;
}

.booking-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 16px;
  padding: 16px;
  color: #fff;
  background: linear-gradient(145deg, #071326, #123b78);
  border-radius: 20px;
}

.booking-summary strong,
.booking-summary small {
  display: block;
}

.booking-summary strong {
  margin: 6px 0 4px;
  font-size: 17px;
}

.booking-summary small {
  color: rgba(255, 255, 255, 0.64);
}

.booking-summary b {
  color: var(--yellow);
  font-size: 30px;
  white-space: nowrap;
}

.submit-booking {
  width: 100%;
  min-height: 52px;
  margin-top: 16px;
  color: #0d1320;
  cursor: pointer;
  background: var(--yellow);
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.25s var(--apple-ease), box-shadow 0.25s ease;
}

.submit-booking:hover {
  box-shadow: 0 16px 38px rgba(255, 216, 0, 0.28);
  transform: translateY(-2px);
}

.submit-booking:disabled {
  cursor: not-allowed;
  background: #d7dce4;
  box-shadow: none;
  transform: none;
}

.booking-privacy-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}

.mini-program-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  padding: 24px;
  pointer-events: none;
  background: rgba(3, 8, 18, 0.58);
  opacity: 0;
  place-items: center;
  transition: opacity 0.24s ease;
}

.mini-program-modal.active {
  pointer-events: auto;
  opacity: 1;
}

.mini-program-panel {
  position: relative;
  display: grid;
  width: min(420px, 100%);
  gap: 18px;
  padding: 24px;
  color: #111820;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.28s var(--apple-ease);
}

.mini-program-modal.active .mini-program-panel {
  transform: translateY(0) scale(1);
}

.mini-program-panel span {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.mini-program-panel h3 {
  margin: 8px 0 8px;
  font-size: 28px;
  line-height: 1.12;
}

.mini-program-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.mini-program-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 34px;
  height: 34px;
  color: #1a2230;
  cursor: pointer;
  background: #eef2f7;
  border: 0;
  border-radius: 999px;
  place-items: center;
  font-size: 20px;
}

.studio-details-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.studio-detail-card {
  padding: 24px;
}

.studio-detail-card h3,
.booking-records h3 {
  margin: 0 0 16px;
  font-size: 24px;
}

.studio-detail-card p,
.studio-detail-card li {
  color: var(--muted);
  line-height: 1.7;
}

.studio-detail-card ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  margin: 0;
}

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

.pill-list span {
  padding: 8px 12px;
  background: #eef2f7;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.booking-records {
  margin-top: 18px;
  padding: 24px;
}

.booking-records-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.booking-record-list {
  display: grid;
  gap: 10px;
}

.empty-record {
  margin: 0;
  color: var(--muted);
}

.booking-record-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 16px;
  background: #f7f8fb;
  border: 1px solid rgba(16, 17, 20, 0.07);
  border-radius: 16px;
}

.booking-record-item strong,
.booking-record-item span {
  display: block;
}

.booking-record-item span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
}

.record-status {
  align-self: start;
  padding: 7px 10px;
  color: #7a5200;
  background: rgba(255, 216, 0, 0.22);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.articles {
  background:
    linear-gradient(180deg, #fff 0%, var(--paper) 100%);
}

.article-grid {
  display: grid;
  grid-template-columns: 0.95fr 0.95fr 1.1fr;
  gap: 16px;
}

.article-card {
  min-height: 270px;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(16, 17, 20, 0.08);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(4, 21, 53, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.article-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.article-card h3 {
  margin: 22px 0 14px;
  font-size: 25px;
  line-height: 1.25;
}

.article-card p {
  margin: 0 0 26px;
  color: var(--muted);
  line-height: 1.75;
}

.article-card a {
  color: var(--blue);
  font-weight: 850;
}

.article-card-featured {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 216, 0, 0.18), transparent 36%),
    linear-gradient(145deg, #061326, #123b78);
}

.article-card-featured p {
  color: rgba(255, 255, 255, 0.72);
}

.article-card-featured a {
  color: var(--yellow);
}

.jobs {
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 216, 0, 0.16), transparent 25%),
    linear-gradient(180deg, #05070c 0%, #08101c 100%);
}

.jobs .section-heading {
  margin-bottom: 24px;
}

.jobs .section-heading h2.inline-heading {
  font-size: clamp(34px, 4vw, 58px);
}

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

.job-card {
  display: grid;
  min-height: 190px;
  align-content: space-between;
  gap: 14px;
  padding: 18px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
  transition: transform 0.28s var(--apple-ease), border-color 0.28s ease;
}

.job-card:hover {
  border-color: rgba(255, 216, 0, 0.44);
  transform: translateY(-6px);
}

.job-card-head {
  display: grid;
  gap: 8px;
}

.job-card-head span {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
}

.job-card h3 {
  margin: 8px 0 0;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.15;
}

.job-card-head b {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.job-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.62;
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.job-tags span {
  padding: 7px 9px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 12px;
}

.job-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 18px 20px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.job-cta span {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.6;
}

.job-cta a {
  flex: 0 0 auto;
  padding: 12px 18px;
  color: #0d1320;
  background: var(--yellow);
  border-radius: 999px;
  font-weight: 900;
}

.about {
  background:
    linear-gradient(90deg, rgba(4, 7, 13, 0.95), rgba(4, 12, 28, 0.76)),
    url("assets/banners/team-hero-production-202606.jpg") center / cover;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.02fr);
  gap: 34px;
  align-items: stretch;
}

.about-copy h2 {
  margin: 10px 0 22px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.08;
}

.about-copy p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.73);
  font-size: 17px;
  line-height: 1.9;
}

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

.beliefs div,
.award-panel {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  backdrop-filter: blur(16px);
}

.award-panel {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 26px;
}

.beliefs span {
  display: block;
  margin-bottom: 12px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 800;
}

.beliefs strong {
  font-size: 22px;
}

.award-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.award-head span {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.award-panel h3 {
  margin: 0;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.06;
}

.award-groups {
  display: grid;
  gap: 12px;
}

.award-group {
  padding: 16px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.award-group summary {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  list-style: none;
  cursor: pointer;
}

.award-group summary::-webkit-details-marker {
  display: none;
}

.award-group-featured {
  background:
    linear-gradient(135deg, rgba(255, 216, 0, 0.12), rgba(38, 214, 255, 0.055)),
    rgba(255, 255, 255, 0.065);
  border-color: rgba(255, 216, 0, 0.22);
}

.award-year {
  color: var(--yellow);
  font-size: 18px;
  font-weight: 950;
  line-height: 1.1;
}

.award-summary {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.55;
}

.award-toggle {
  min-width: 54px;
  padding: 7px 12px;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.award-group[open] .award-toggle {
  color: #0d1320;
  background: var(--yellow);
  border-color: rgba(255, 216, 0, 0.8);
}

.award-group[open] .award-toggle::before {
  content: "收起";
}

.award-group:not([open]) .award-toggle::before {
  content: "展开";
}

.award-toggle {
  font-size: 0;
}

.award-toggle::before {
  font-size: 12px;
}

.award-detail {
  padding-top: 14px;
  margin-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.award-panel ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.award-panel li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.62;
}

.award-panel li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--yellow);
  border-radius: 50%;
}

.contact {
  background: #fff;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.72fr);
  gap: 28px;
  padding: 42px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 216, 0, 0.18), transparent 34%),
    linear-gradient(145deg, #071326, #123b78);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  max-width: 700px;
  margin: 8px 0 10px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
}

.contact-panel p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.7);
}

.contact-list {
  display: grid;
  gap: 12px;
  max-width: 650px;
}

.contact-list a,
.contact-list span {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

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

.qr-box {
  padding: 12px;
  color: #101114;
  background: #fff;
  border-radius: 8px;
  text-align: center;
}

.qr-box img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
}

.qr-box span {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 850;
}

.qr-box b {
  display: block;
  margin-top: 6px;
  color: #3f4652;
  font-size: 11px;
  line-height: 1.35;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px max(28px, calc((100vw - 1180px) / 2));
  color: rgba(255, 255, 255, 0.72);
  background: #05070c;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.site-footer > div,
.site-footer nav,
.police-link {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-footer img {
  width: 128px;
}

.police-link img {
  width: 18px;
  height: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes lightSweep {
  0%,
  100% {
    opacity: 0.32;
    transform: translateX(-16%) rotate(-9deg);
  }

  50% {
    opacity: 1;
    transform: translateX(8%) rotate(-9deg);
  }
}

@keyframes orbitPulse {
  0%,
  100% {
    opacity: 0.32;
    transform: rotate(-16deg) scale(0.98);
  }

  50% {
    opacity: 0.78;
    transform: rotate(-16deg) scale(1.02);
  }
}

@keyframes scrollCue {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }

  50% {
    transform: translateY(24px);
    opacity: 1;
  }
}

@keyframes contentWarp {
  0% {
    transform: scale(1);
    filter: blur(0);
  }

  36% {
    transform: scale(0.985) translateY(8px);
    filter: blur(0.45px);
  }

  100% {
    transform: scale(1);
    filter: blur(0);
  }
}

@keyframes travelBurst {
  0% {
    opacity: 0;
    transform: scale(0.38);
  }

  18% {
    opacity: 0.95;
  }

  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

@keyframes tunnelFlash {
  0%,
  100% {
    opacity: 0;
  }

  14%,
  72% {
    opacity: 1;
  }
}

@keyframes tunnelRing {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) rotateX(68deg) scale(0.2);
  }

  24% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) rotateX(68deg) scale(3.8);
  }
}

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

@keyframes lensFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-12px) scale(1.025);
  }
}

@keyframes studioReveal {
  from {
    opacity: 0;
    transform: scale(0.985);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes beamPulse {
  0%,
  100% {
    opacity: 0.42;
    transform: scaleX(0.9);
  }

  50% {
    opacity: 0.86;
    transform: scaleX(1);
  }
}

@keyframes recBlink {
  50% {
    opacity: 0.25;
  }
}

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

  .site-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: auto;
    padding-top: 124px;
  }

  .hero-showcase {
    max-width: 420px;
  }

  .section-heading,
  .about-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .award-group {
    grid-template-columns: 86px minmax(0, 1fr);
  }

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

  .services .section-heading p,
  .cases .section-heading p,
  .studios .section-heading p {
    white-space: normal;
  }

  .service-grid,
  .article-grid,
  .studio-details-grid,
  .job-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .service-detail,
  .process-heading {
    grid-template-columns: 1fr;
  }

  .service-detail {
    display: grid;
  }

  .process-heading {
    display: grid;
    align-items: start;
  }

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

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

  .process-track article::after {
    display: none;
  }

  .studio-booking-shell,
  .studio-layout {
    grid-template-columns: 1fr;
  }

  .about-grid {
    display: grid;
  }
}

@media (max-width: 700px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    height: 58px;
    padding-left: 12px;
  }

  .camera-hud {
    display: none;
  }

  .side-camera {
    display: none;
  }

  .brand img {
    width: 144px;
  }

  .header-cta {
    height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }

  .section {
    padding: 74px 18px;
  }

  .hero {
    padding-top: 108px;
    padding-bottom: 58px;
  }

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

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

  .hero-actions {
    gap: 10px;
  }

  .button {
    min-width: 116px;
  }

  .hero-showcase {
    padding: 14px;
  }

  .scroll-cue {
    display: none;
  }

  .section-heading h2,
  .contact-panel h2,
  .about-copy h2 {
    font-size: 36px;
  }

  .section-heading h2.inline-heading {
    font-size: 36px;
  }

  .service-grid,
  .process-track,
  .studio-card,
  .article-grid,
  .job-grid,
  .beliefs,
  .studio-details-grid,
  .form-row,
  .plan-options {
    grid-template-columns: 1fr;
  }

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

  .award-panel {
    padding: 18px;
  }

  .award-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .award-group {
    padding: 14px;
  }

  .award-group summary {
    grid-template-columns: 1fr auto;
    gap: 10px 12px;
  }

  .award-year {
    grid-column: 1;
    font-size: 16px;
  }

  .award-summary {
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: 14px;
  }

  .award-toggle {
    grid-column: 2;
    grid-row: 1;
  }

  .job-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-card h3 {
    white-space: normal;
  }

  .process-track {
    gap: 1px;
  }

  .service-detail,
  .process-section {
    padding: 20px;
  }

  .case-grid,
  .case-tabs {
    max-width: calc(100vw - 18px);
  }

  .case-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-right: 0;
  }

  .case-card p {
    max-height: 0;
    opacity: 0;
    transform: none;
  }

  .case-play {
    opacity: 1;
    transform: none;
  }

  .case-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .video-modal {
    padding: 12px;
  }

  .video-modal-panel {
    max-height: calc(100svh - 24px);
    border-radius: 14px;
  }

  .video-info {
    padding: 18px;
  }

  .studio-card img {
    min-height: 240px;
  }

  .studio-booking-shell {
    gap: 14px;
  }

  .studio-stage,
  .booking-form,
  .studio-detail-card,
  .booking-records {
    border-radius: 18px;
  }

  .studio-visual,
  .studio-visual img {
    min-height: 260px;
    height: clamp(260px, 62vw, 330px);
  }

  .studio-visual-copy {
    top: 14px;
    right: 14px;
    max-width: calc(100% - 28px);
    padding: 12px 14px;
  }

  .studio-gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  .studio-gallery button {
    height: clamp(78px, 22vw, 108px);
    border-radius: 12px;
  }

  .studio-gallery img {
    border-radius: 10px;
  }

  .booking-summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-panel {
    padding: 26px;
  }

  .qr-grid {
    grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  }

  .site-footer,
  .site-footer > div,
  .site-footer nav {
    flex-direction: column;
    align-items: flex-start;
  }
}

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