:root {
  --ink: #070707;
  --paper: #fffaf0;
  --bone: #f1ede2;
  --smoke: #dfd8c8;
  --muted: #6e716c;
  --line: rgba(7, 7, 7, 0.14);
  --line-strong: rgba(7, 7, 7, 0.32);
  --yellow: #ffdd4a;
  --blue: #2357ff;
  --clay: #c5482d;
  --green: #9bbd91;
  --max: 1320px;
  --pad: clamp(18px, 4vw, 58px);
  --header-h: 68px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  scroll-padding-top: var(--header-h);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: var(--header-h);
  min-height: 100%;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(7, 7, 7, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  min-height: 68px;
  padding: 0 var(--pad);
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.84), rgba(255, 255, 255, 0.58) 48%, rgba(255, 221, 74, 0.18) 100%);
  backdrop-filter: blur(24px) saturate(170%);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
  border-bottom: 1px solid rgba(7, 7, 7, 0.07);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 18px 58px rgba(7, 7, 7, 0.055);
}


.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand span {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.brand small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0;
}

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

.nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3.2vw, 44px);
  color: rgba(7, 7, 7, 0.42);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav a,
.lang-toggle {
  position: relative;
  padding: 26px 0 23px;
  transition: color 180ms var(--ease);
}

.nav a::after,
.lang-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease);
}

.nav a:hover,
.nav a.is-active,
.lang-toggle:hover {
  color: var(--ink);
}

.nav a:hover::after,
.nav a.is-active::after,
.lang-toggle:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.lang-toggle {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: uppercase;
  cursor: pointer;
}

.container {
  width: min(var(--max), calc(100vw - var(--pad) * 2));
  margin: 0 auto;
}

.page {
  overflow: clip;
}

.about-page {
  background:
    radial-gradient(circle at 18% 8%, rgba(35, 87, 255, 0.12), transparent 32%),
    radial-gradient(circle at 82% 16%, rgba(155, 189, 145, 0.18), transparent 34%),
    linear-gradient(90deg, rgba(9, 29, 45, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(9, 29, 45, 0.045) 1px, transparent 1px),
    #dceefa;
  background-size: auto, auto, 44px 44px, 44px 44px, auto;
  color: #071a2d;
}

.about-page .site-header {
  border-bottom-color: rgba(255, 255, 255, 0.14);
  background: rgba(7, 12, 17, 0.94);
  color: #f8fbff;
}

.about-page .brand {
  gap: 0;
}

.about-page .brand img {
  filter: invert(1);
}

.about-page .nav {
  color: rgba(248, 251, 255, 0.58);
}

.about-page .nav a:hover,
.about-page .nav a.is-active {
  color: #fff;
}

.about-page .page {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.5), rgba(220, 238, 250, 0) 34%),
    transparent;
}

.about-page .page-hero h1,
.about-page .info-card h3 {
  color: #07111c;
}

.about-page .lead,
.about-page .info-card p,
.about-page .list li {
  color: rgba(7, 26, 45, 0.76);
}

.about-page .info-card,
.about-page .contact-row,
.about-page .job-card {
  border-color: rgba(7, 26, 45, 0.13);
  background: rgba(255, 255, 255, 0.32);
  box-shadow: 0 16px 60px rgba(7, 26, 45, 0.06);
}

.about-page .band {
  border-top-color: rgba(7, 26, 45, 0.13);
}

.about-page .band.dark {
  background: #071c2e;
}

.about-page .band.dark .info-card {
  background: rgba(255, 255, 255, 0.075) !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
}

.bilingual-page {
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 221, 74, 0.18), transparent 30%),
    radial-gradient(circle at 86% 20%, rgba(35, 87, 255, 0.12), transparent 32%),
    linear-gradient(90deg, rgba(7, 7, 7, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(7, 7, 7, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: auto, auto, 44px 44px, 44px 44px, auto;
}

.bilingual-hero {
  padding: clamp(76px, 10vw, 138px) 0 clamp(58px, 7vw, 92px);
}

.bilingual-hero h1 {
  display: grid;
  gap: 16px;
  max-width: 1180px;
  margin: 20px 0 0;
  color: var(--ink);
  font-size: clamp(52px, 9vw, 132px);
  line-height: 0.92;
  font-weight: 950;
  letter-spacing: 0;
}

.bilingual-hero h1 span {
  display: block;
}

.bilingual-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 60px);
  max-width: 1080px;
  margin-top: clamp(34px, 5vw, 66px);
}

.bilingual-copy p,
.en-copy {
  margin: 0;
  color: #27313c;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.8;
}

.en-copy {
  margin-top: 14px;
  color: rgba(39, 49, 60, 0.68);
}

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

.bilingual-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
}

.bilingual-feature h2 {
  max-width: 760px;
  margin: 20px 0 24px;
  color: #fff;
  font-size: clamp(42px, 6vw, 86px);
  line-height: 0.96;
  font-weight: 950;
  letter-spacing: 0;
}

.bilingual-feature p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.8;
}

.bilingual-feature .button {
  margin-top: 28px;
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

.mini-reel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
}

.mini-reel img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  object-fit: cover;
}

.mini-reel img:first-child {
  grid-row: span 2;
}

.home-hero {
  min-height: min(820px, calc(100vh - 68px));
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  padding: clamp(48px, 7vw, 90px) 0;
}

.eyebrow,
.kicker {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.home-hero h1,
.page-hero h1 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: clamp(70px, 12vw, 168px);
  line-height: 0.82;
  font-weight: 950;
  letter-spacing: -0.07em;
}

.home-hero h1 {
  font-size: clamp(50px, 8.5vw, 112px);
  letter-spacing: -0.05em;
}

.subtitle {
  margin: 24px 0 0;
  color: #1c1c1a;
  font-size: clamp(20px, 2.3vw, 34px);
  line-height: 1.08;
  font-weight: 780;
  letter-spacing: -0.04em;
}

.intro,
.lead {
  max-width: 760px;
  margin: clamp(30px, 4.5vw, 62px) 0 0;
  color: #27313c;
  font-size: clamp(16px, 1.55vw, 20px);
  line-height: 1.85;
}

.tags,
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.tags span,
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 8px 15px;
  background: rgba(255, 250, 240, 0.72);
  font-size: 13px;
  font-weight: 850;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 11px 18px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  transition: transform 220ms var(--ease), background 220ms var(--ease), color 220ms var(--ease);
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.button:hover {
  transform: translateY(-2px);
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}


.reel-stage {
  position: relative;
  min-height: 620px;
  isolation: isolate;
}

.poster {
  position: absolute;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: #101010;
  box-shadow: 0 28px 80px rgba(7, 7, 7, 0.18);
}

.poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
  transition: transform 700ms var(--ease);
}

.poster:hover img {
  transform: scale(1.05);
}

.poster-main {
  inset: 56px 0 44px 110px;
  z-index: 2;
  border-radius: 28px;
}

.poster-main::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.58) 100%);
  pointer-events: none;
}

.poster-side {
  left: 0;
  top: 0;
  width: min(48%, 340px);
  height: 310px;
  z-index: 3;
  border-radius: 22px;
  transform: rotate(-3deg);
  animation: float-side 4.2s ease-in-out infinite;
}

.poster-small {
  right: 22px;
  bottom: 0;
  width: min(46%, 330px);
  height: 250px;
  z-index: 4;
  border-radius: 22px;
  transform: rotate(2.5deg);
  animation: float-small 5.4s ease-in-out infinite 1.3s;
}

.reel-stage:hover .poster-side,
.reel-stage:hover .poster-small {
  animation-play-state: paused;
}

@keyframes float-side {
  0%, 100% { transform: rotate(-3deg) translateY(0px); }
  50% { transform: rotate(-3deg) translateY(-10px); }
}

@keyframes float-small {
  0%, 100% { transform: rotate(2.5deg) translateY(0px); }
  50% { transform: rotate(2.5deg) translateY(-7px); }
}

.poster-caption {
  position: absolute;
  left: 30px;
  right: 38%;
  bottom: 28px;
  z-index: 5;
  color: #fff;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.42);
}

.poster-caption strong {
  display: block;
  max-width: 560px;
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 0.94;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.poster-caption span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.vertical-note {
  position: absolute;
  top: 20px;
  right: -12px;
  z-index: 5;
  writing-mode: vertical-rl;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  cursor: default;
}

.ticker:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 24s linear infinite;
}

.ticker span {
  padding: 16px 24px;
  font-size: clamp(18px, 3vw, 38px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

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

.section-head {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--yellow);
}

.section-head-inner {
  min-height: 158px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 380px);
  align-items: center;
  gap: 34px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(38px, 6vw, 84px);
  line-height: 0.9;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.section-head p {
  margin: 0;
  color: rgba(7, 7, 7, 0.68);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 760;
}

.section-copy {
  display: grid;
  gap: 14px;
  margin-bottom: clamp(24px, 4vw, 46px);
}

.section-copy h2 {
  margin: 0;
  font-size: clamp(42px, 7vw, 92px);
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.section-copy p:not(.kicker) {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
  line-height: 1.7;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(16px, 1.8vw, 24px);
  align-items: stretch;
  padding: clamp(44px, 7vw, 90px) 0 clamp(72px, 8vw, 116px);
}

.work-card {
  grid-column: auto;
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 250, 240, 0.78);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.86) inset, 0 12px 32px rgba(7, 7, 7, 0.055);
  transform: translateZ(0);
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease), border-color 320ms var(--ease);
}

.work-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.18) 50%, transparent 62%);
  transform: translateX(-115%);
  transition: transform 620ms var(--ease);
  pointer-events: none;
}

.work-card:hover::before {
  transform: translateX(115%);
}

.work-card.featured {
  grid-column: auto;
}

.work-card:hover {
  border-color: rgba(35, 87, 255, 0.42);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.86) inset, 0 26px 74px rgba(7, 7, 7, 0.13);
  transform: translateY(-8px);
}

.cover {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--smoke);
}

.work-card.featured .cover {
  aspect-ratio: 16 / 9;
}

.cover::after {
  content: "▶";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0);
  color: #fff;
  font-size: 38px;
  opacity: 0;
  transition: opacity 320ms var(--ease), background 320ms var(--ease);
  pointer-events: none;
}

.work-card:hover .cover::after {
  opacity: 1;
  background: rgba(0, 0, 0, 0.26);
}

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

.work-card:hover .cover img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.04);
}

.card-body {
  min-height: 178px;
  display: flex;
  flex-direction: column;
  padding: clamp(18px, 2.2vw, 24px);
}

.meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  color: #81857e;
  font-size: 12px;
  font-weight: 850;
}

.meta span:first-child {
  border-radius: 999px;
  background: #eee7d7;
  color: #535750;
  padding: 6px 10px;
}

.play {
  color: var(--ink);
}

.work-card h3 {
  margin: 22px 0 22px;
  color: var(--ink);
  font-size: clamp(21px, 1.7vw, 26px);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.watch {
  margin-top: auto;
  color: rgba(7, 7, 7, 0.48);
  font-size: 14px;
  font-weight: 900;
  transition: color 220ms var(--ease), transform 220ms var(--ease);
}

.work-card:hover .watch {
  color: var(--blue);
  transform: translateX(4px);
}

.account-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.16);
}

.account-home {
  padding: clamp(40px, 6vw, 72px) 0;
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 221, 74, 0.12), transparent 32%),
    radial-gradient(circle at 12% 80%, rgba(35, 87, 255, 0.08), transparent 28%),
    linear-gradient(135deg, #061725, #071f33);
}

.account-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(24px, 3.5vw, 44px);
}

.account-header-desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 14px;
  line-height: 1.6;
}

.account-list {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.account-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(14px, 2vw, 28px);
  padding: clamp(16px, 2.2vw, 24px) clamp(16px, 2vw, 24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 12px;
  transition: background 220ms var(--ease);
}

.account-list .account-row:nth-child(1):hover { background: rgba(232, 48, 63, 0.14); }
.account-list .account-row:nth-child(2):hover { background: rgba(37, 244, 238, 0.06); }
.account-list .account-row:nth-child(3):hover { background: rgba(0, 161, 214, 0.12); }

.account-left {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 18px);
  min-width: 0;
}

.account-rule { display: none; }

.account-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.account-platform {
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.account-name {
  color: #fff;
  font-size: clamp(17px, 2vw, 26px);
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.account-arrow {
  flex-shrink: 0;
  display: inline-block;
  color: rgba(255, 221, 74, 0.8);
  font-size: 13px;
  font-style: normal;
  font-weight: 850;
  white-space: nowrap;
  transition: transform 220ms var(--ease), color 220ms var(--ease);
}

.account-row:hover .account-arrow {
  transform: translate(3px, -3px);
  color: var(--yellow);
}

.page-hero {
  padding: clamp(84px, 11vw, 148px) 0 clamp(52px, 7vw, 88px);
}

.page-hero h1 {
  font-size: clamp(48px, 7.5vw, 96px);
}

.band {
  border-top: 1px solid var(--line);
  padding: clamp(48px, 7vw, 88px) 0;
}

.band.dark {
  background: var(--ink);
  color: #fff;
}

.band.dark p,
.band.dark .list li {
  color: rgba(255, 255, 255, 0.68);
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 20px;
}

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

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

.info-card,
.job-card,
.contact-row {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 250, 240, 0.74);
  padding: clamp(22px, 3vw, 34px);
}

.info-card h2,
.info-card h3,
.job-card h2,
.job-card h3,
.contact-row h2,
.contact-row h3 {
  margin: 0 0 14px;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: -0.055em;
}

.info-card p,
.job-card p,
.contact-row p {
  margin: 0;
  color: #555d58;
  font-size: 15px;
  line-height: 1.75;
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(20px, 3vw, 38px);
  align-items: stretch;
}

.location-copy {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 18%, rgba(35, 87, 255, 0.08), transparent 34%),
    rgba(255, 250, 240, 0.76);
  padding: clamp(26px, 4vw, 48px);
  box-shadow: 0 24px 90px rgba(7, 26, 45, 0.08);
}

.location-copy h2 {
  margin: 18px 0 18px;
  font-size: clamp(42px, 5.6vw, 77px);
  line-height: 0.92;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.location-copy p:not(.kicker) {
  max-width: 520px;
  margin: 0 0 12px;
  color: #555d58;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.65;
  font-weight: 760;
}

.location-copy .button {
  align-self: flex-start;
  margin-top: 24px;
}

.map-frame {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(7, 26, 45, 0.18);
  border-radius: 30px;
  background:
    radial-gradient(circle at 74% 18%, rgba(255, 221, 74, 0.22), transparent 26%),
    radial-gradient(circle at 20% 84%, rgba(35, 87, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #081928, #0d2b45 54%, #071724);
  background-size: 34px 34px;
  box-shadow: 0 30px 100px rgba(7, 26, 45, 0.2);
  color: #fff;
  isolation: isolate;
}

.map-image-frame {
  background: #071725;
}

.map-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.map-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.24));
}

.map-grid {
  position: absolute;
  inset: 0;
}

.road,
.metro-line {
  position: absolute;
  display: block;
  border-radius: 999px;
}

.road-main {
  left: 7%;
  right: -10%;
  top: 58%;
  height: 18px;
  background: rgba(255, 250, 240, 0.58);
  transform: rotate(-7deg);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.road-secondary {
  left: 18%;
  right: 18%;
  top: 36%;
  height: 8px;
  background: rgba(255, 255, 255, 0.28);
  transform: rotate(14deg);
}

.road-arc {
  width: 360px;
  height: 360px;
  right: -70px;
  top: -46px;
  border: 16px solid rgba(255, 250, 240, 0.38);
  border-left-color: transparent;
  border-bottom-color: transparent;
}

.metro-line {
  left: -4%;
  right: 12%;
  bottom: 26%;
  height: 6px;
  background: var(--blue);
  transform: rotate(-4deg);
  box-shadow: 0 0 28px rgba(35, 87, 255, 0.56);
}

.station-pin {
  position: absolute;
  left: 48%;
  top: 47%;
  width: 28px;
  height: 28px;
  border: 8px solid var(--yellow);
  border-radius: 50%;
  background: var(--ink);
  box-shadow:
    0 0 0 12px rgba(255, 221, 74, 0.14),
    0 20px 52px rgba(0, 0, 0, 0.32);
}

.station-label,
.map-coord {
  position: absolute;
  left: calc(48% + 44px);
  color: #fff;
  text-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}

.station-label {
  top: 44%;
  font-size: clamp(30px, 4.3vw, 66px);
  line-height: 0.95;
  font-weight: 950;
}

.map-coord {
  top: calc(44% + clamp(48px, 6vw, 78px));
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.map-open {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  padding: 10px 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.list {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  display: flex;
  gap: 12px;
  color: #454d48;
  line-height: 1.7;
}

.list li::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 10px;
  border-radius: 50%;
  background: var(--blue);
}

.job-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: start;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.job-meta span {
  border-radius: 999px;
  background: #eee7d7;
  padding: 7px 10px;
  color: #535750;
  font-size: 12px;
  font-weight: 850;
}

.application-form {
  background: color-mix(in srgb, var(--yellow) 18%, var(--paper));
}

.application-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 28px;
  align-items: end;
  margin-bottom: 24px;
}

.application-head h2 {
  grid-column: 1;
  margin: 10px 0 0;
  font-size: clamp(40px, 6vw, 86px);
  line-height: 0.94;
  font-weight: 950;
  letter-spacing: 0;
}

.application-head p:not(.kicker) {
  grid-column: 1;
  max-width: 680px;
  margin: 0;
  color: #4b554e;
  font-size: 16px;
  line-height: 1.75;
}

.application-head .button {
  grid-row: 1 / span 3;
  grid-column: 2;
}

.form-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 70px rgba(7, 7, 7, 0.08);
}

.form-frame iframe {
  display: block;
  width: 100%;
  height: min(820px, 86vh);
  border: 0;
  background: #fff;
}

.contact-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--line);
}

.contact-row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  border: 0;
  border-radius: 0;
}

.contact-row strong {
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-row a:not(.button),
.contact-row span:not(.pill) {
  overflow-wrap: anywhere;
  font-size: clamp(20px, 2.8vw, 38px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px var(--pad);
  color: #7b7e78;
  font-size: 13px;
}

.footer-inner {
  width: min(var(--max), 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  gap: 18px;
  font-weight: 850;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 760ms var(--ease), transform 760ms var(--ease);
}

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

@media (max-width: 960px) {
  :root {
    --header-h: 108px;
  }

  .site-header {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .nav {
    justify-self: stretch;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(62px, 1fr));
    gap: 0;
    width: 100%;
    text-align: center;
    font-size: 11px;
  }

  .nav a,
  .lang-toggle {
    min-width: 0;
    padding: 8px 0 7px;
  }

  .nav a::after,
  .lang-toggle::after {
    bottom: 2px;
  }

  .home-hero {
    min-height: 0;
    grid-template-columns: 1fr;
    padding-top: 56px;
  }

  .reel-stage {
    min-height: 500px;
  }

  .poster-main {
    inset: 38px 0 54px 40px;
  }

  .poster-side {
    width: 44%;
    height: 240px;
  }

  .poster-small {
    width: 44%;
    height: 210px;
  }

  .section-head-inner,
  .grid-2,
  .grid-3,
  .location-layout,
  .account-home .section-copy,
  .bilingual-grid,
  .bilingual-feature,
  .bilingual-copy {
    grid-template-columns: 1fr;
  }

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

  .account-home .section-copy {
    grid-template-columns: 1fr;
    grid-template-areas:
      "kicker"
      "title"
      "desc";
  }

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

  .mini-reel img:first-child {
    grid-row: auto;
  }

  .work-card.featured .cover {
    aspect-ratio: 16 / 9;
  }

  .job-card,
  .contact-row {
    grid-template-columns: 1fr;
  }

  .application-head {
    grid-template-columns: 1fr;
  }

  .application-head .button {
    grid-row: auto;
    grid-column: auto;
    justify-self: start;
  }
}

@media (max-width: 560px) {
  :root {
    --pad: 18px;
    --header-h: 108px;
  }

  .site-header {
    padding-left: 10px;
    padding-right: 10px;
  }

  .brand {
    font-size: 14px;
  }

  .home-hero h1,
  .page-hero h1 {
    font-size: clamp(52px, 18vw, 82px);
  }

  .subtitle {
    font-size: 21px;
  }

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

  .poster-main {
    inset: 22px 0 30px 0;
    border-radius: 22px;
  }

  .poster-side,
  .poster-small,
  .vertical-note {
    display: none;
  }

  .poster-caption {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .poster-caption strong {
    font-size: 30px;
  }

  .bilingual-hero h1 {
    font-size: clamp(42px, 15vw, 72px);
  }

  .mini-reel {
    grid-template-columns: 1fr;
  }

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

  .account-card {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "platform link"
      "name link";
  }

  .form-frame {
    border-radius: 18px;
  }

  .form-frame iframe {
    height: 760px;
  }

  .location-copy,
  .map-frame,
  .map-frame iframe {
    min-height: 340px;
  }

  .section-head-inner {
    min-height: 140px;
  }

  .contact-row a:not(.button),
  .contact-row span:not(.pill) {
    font-size: 24px;
  }

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

@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;
  }

  .ticker-track {
    animation: none;
  }

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

/* ── About page overrides ─────────────────────── */
[data-page="about"] .page-hero h1 {
  font-size: clamp(56px, 9.5vw, 120px);
}

[data-page="about"] .page-hero .lead {
  font-size: clamp(17px, 1.9vw, 21px);
  line-height: 1.78;
}

[data-page="about"] .page-hero .lead + .lead {
  margin-top: clamp(14px, 1.8vw, 22px);
}

[data-page="about"] .info-card h3 {
  font-size: clamp(20px, 2.4vw, 32px);
  margin-bottom: 10px;
}

[data-page="about"] .info-card p {
  font-size: 15px;
  line-height: 1.72;
}
