:root {
  color-scheme: dark;
  --black: #090909;
  --panel: #121314;
  --panel-2: #191a1c;
  --silver: #d9d9d6;
  --muted: #8b8d90;
  --line: rgba(255, 255, 255, 0.12);
  --red: #c7342c;
  --red-dark: #8e241f;
  --white: #f7f7f3;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 42px),
    var(--black);
  color: var(--white);
  font-family: Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

body {
  min-width: 360px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 58%, rgba(255, 255, 255, 0.04) 58% 60%, transparent 60%),
    radial-gradient(circle at 72% 8%, rgba(199, 52, 44, 0.18), transparent 28%);
}

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

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(22px, 5vw, 88px);
  background: rgba(9, 9, 9, 0.55);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(9, 9, 9, 0.92);
  border-bottom-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.logo-frame {
  width: 34px;
  height: 38px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: transparent;
  border: 0;
}

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

.brand strong,
.brand small {
  display: block;
  line-height: 1.15;
}

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

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 36px);
  color: var(--silver);
  font-size: 13px;
  font-weight: 700;
}

.nav-action {
  justify-self: end;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--silver);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.76fr);
  gap: clamp(34px, 7vw, 104px);
  align-items: center;
  padding: 124px clamp(24px, 7vw, 112px) 92px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -8vw;
  top: 0;
  width: 42vw;
  height: 100%;
  opacity: 0.28;
  background: repeating-linear-gradient(135deg, transparent 0 24px, rgba(255, 255, 255, 0.18) 24px 44px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(42px, 5.8vw, 78px);
  line-height: 1.02;
  font-weight: 900;
}

h2 {
  max-width: 720px;
  font-size: clamp(26px, 3.4vw, 46px);
  line-height: 1.16;
  font-weight: 900;
}

h3 {
  font-size: 19px;
  line-height: 1.35;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--silver);
  font-size: clamp(15px, 1.55vw, 18px);
  line-height: 1.85;
}

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

.hero-tags span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: rgba(247, 247, 243, 0.82);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 12px;
  font-weight: 800;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--white);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 16px 34px rgba(199, 52, 44, 0.25);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.28);
}

.hero-visual {
  position: relative;
  z-index: 2;
  min-height: 560px;
}

.monitor-wall {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(128px, 0.38fr);
  gap: 16px;
  align-items: stretch;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 32%),
    rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: var(--shadow);
}

.monitor-wall::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.monitor-main,
.monitor-side figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.monitor-main {
  aspect-ratio: 9 / 13;
}

.monitor-side {
  display: grid;
  gap: 16px;
}

.monitor-side figure {
  aspect-ratio: 9 / 13;
}

.monitor-main img,
.monitor-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.monitor-main::after,
.monitor-side figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 24%, rgba(0, 0, 0, 0.46)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 12px);
  pointer-events: none;
  opacity: 0.38;
}

.hero-production-card {
  position: absolute;
  left: -34px;
  bottom: 32px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  max-width: 330px;
  padding: 14px 16px;
  background: rgba(9, 9, 9, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.42);
}

.hero-production-card img {
  width: 58px;
}

.hero-production-card span,
.hero-production-card strong {
  display: block;
}

.hero-production-card span {
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-production-card strong {
  margin-top: 4px;
  color: var(--silver);
  font-size: 14px;
}

.statement {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
  gap: 36px;
  align-items: end;
  padding: clamp(54px, 7vw, 96px) clamp(24px, 7vw, 112px);
  background: var(--silver);
  color: var(--black);
}

.statement > p {
  max-width: 780px;
  margin: 0;
  font-size: clamp(23px, 2.8vw, 38px);
  line-height: 1.28;
  font-weight: 900;
}

.statement dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0;
}

.statement div {
  padding-top: 16px;
  border-top: 2px solid rgba(9, 9, 9, 0.25);
}

.statement dt {
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 900;
}

.statement dd {
  margin: 8px 0 0;
  color: #4f5052;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}

.section {
  position: relative;
  z-index: 2;
  padding: clamp(76px, 10vw, 132px) clamp(24px, 7vw, 112px);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.58fr minmax(0, 1.25fr);
  gap: 28px;
  align-items: start;
  margin-bottom: clamp(38px, 5vw, 72px);
}

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

.capability-grid article {
  min-height: 230px;
  display: grid;
  align-content: space-between;
  gap: 28px;
  padding: 26px;
  background: rgba(18, 19, 20, 0.82);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-grid span,
.timeline span,
.contact-panel span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.capability-grid p,
.timeline p,
.contact-title p,
.case-note p,
.contact-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.team-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(38px, 7vw, 104px);
  align-items: start;
  background: var(--panel);
  border-block: 1px solid var(--line);
}

.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.team-list span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  color: var(--silver);
  font-weight: 800;
}

.timeline {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 1px;
  margin: 0;
  background: var(--line);
}

.timeline li {
  min-height: 260px;
  display: grid;
  align-content: space-between;
  gap: 20px;
  padding: 26px;
  background: var(--black);
}

.cases {
  background: #0d0d0e;
}

.case-carousel {
  position: relative;
  width: calc(100% + clamp(24px, 7vw, 112px) * 2);
  margin-left: calc(clamp(24px, 7vw, 112px) * -1);
  overflow: hidden;
  padding: 8px 0 46px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.case-track {
  display: flex;
  width: max-content;
  --poster-width: clamp(172px, 19vw, 250px);
  --poster-gap: 24px;
  --poster-count: 16;
  --set-width: calc((var(--poster-width) + var(--poster-gap)) * var(--poster-count));
  animation: poster-marquee 95s linear infinite;
  animation-play-state: running;
  will-change: transform;
}

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

.case-set {
  display: flex;
  flex: 0 0 var(--set-width);
  gap: var(--poster-gap);
  padding-right: var(--poster-gap);
}

.case-card {
  position: relative;
  flex: 0 0 var(--poster-width);
  aspect-ratio: 9 / 14;
  margin: 0;
  overflow: hidden;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.07),
    inset 0 18px 40px rgba(255, 255, 255, 0.08),
    0 24px 60px rgba(0, 0, 0, 0.48);
}

.case-card::before,
.case-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.case-card::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16), transparent 10%, transparent 90%, rgba(255, 255, 255, 0.1)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 18%, transparent 82%, rgba(0, 0, 0, 0.45));
  mix-blend-mode: screen;
  opacity: 0.34;
}

.case-card::after {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 9px),
    radial-gradient(circle at 50% 35%, transparent 0 52%, rgba(0, 0, 0, 0.38));
  opacity: 0.18;
}

.case-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@keyframes poster-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(var(--set-width) * -1));
  }
}

@media (prefers-reduced-motion: reduce) {
  .case-track {
    animation-duration: 260s;
  }
}

.case-note {
  max-width: 880px;
  margin-top: 64px;
  padding-left: 22px;
  border-left: 3px solid var(--red);
}

@media (min-width: 1100px) {
  .site-header {
    grid-template-columns: minmax(260px, 1fr) auto minmax(160px, 1fr);
    min-height: 78px;
  }

  .hero {
    min-height: 100vh;
    grid-template-columns: minmax(520px, 1.02fr) minmax(520px, 0.98fr);
    padding-top: 118px;
    padding-bottom: 72px;
  }

  .hero-copy {
    align-self: center;
  }

  .hero-visual {
    min-height: min(660px, 74vh);
  }

  h1 {
    font-size: clamp(54px, 5.2vw, 82px);
  }

  .monitor-wall {
    max-width: 560px;
    margin-left: auto;
  }

  .hero-production-card {
    left: -18px;
    bottom: 44px;
  }

  .statement,
  .team-band,
  .contact {
    grid-template-columns: minmax(0, 1fr) minmax(460px, 0.72fr);
  }

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

  .capability-grid article {
    min-height: 250px;
  }

  .cases {
    padding-top: clamp(80px, 8vw, 112px);
    padding-bottom: clamp(86px, 8vw, 118px);
  }

  .case-card {
    flex-basis: clamp(176px, 14vw, 220px);
  }

  .case-note {
    margin-top: 42px;
  }
}

.contact {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 0.7fr);
  gap: clamp(32px, 7vw, 96px);
  padding: clamp(82px, 11vw, 148px) clamp(24px, 7vw, 112px);
  background: linear-gradient(135deg, var(--silver), #9d9d9a);
  color: var(--black);
}

.contact .eyebrow,
.contact-panel span {
  color: var(--red-dark);
}

.contact-title p {
  max-width: 620px;
  margin: 24px 0 0;
  color: #3e4042;
}

.contact-panel {
  display: grid;
  gap: 16px;
  padding: 30px;
  background: rgba(9, 9, 9, 0.92);
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-panel div {
  display: grid;
  gap: 6px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.contact-panel strong,
.contact-panel a {
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 900;
}

.contact-panel .button {
  margin-top: 6px;
  width: fit-content;
}

.site-footer {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(24px, 7vw, 112px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

  .nav-links {
    display: none;
  }

  .hero,
  .statement,
  .section-heading,
  .team-band,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 112px;
  }

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

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

  .statement dl {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 66px;
    padding: 12px 16px;
  }

  .logo-frame {
    width: 30px;
    height: 34px;
  }

  .brand strong {
    font-size: 13px;
  }

  .brand small {
    display: none;
  }

  .nav-action {
    min-height: 38px;
    padding: 0 13px;
  }

  .hero {
    min-height: auto;
    padding: 102px 20px 56px;
  }

  h1 {
    font-size: clamp(34px, 8.8vw, 48px);
    line-height: 1.06;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 15px;
  }

  .hero-visual {
    min-height: auto;
  }

  .monitor-wall {
    grid-template-columns: 1fr 0.42fr;
    gap: 10px;
    padding: 10px;
  }

  .monitor-side {
    gap: 10px;
  }

  .hero-production-card {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 12px;
    max-width: none;
  }

  .section,
  .statement,
  .contact {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .capability-grid article,
  .timeline li {
    min-height: auto;
  }

  .site-footer {
    flex-direction: column;
  }
}

body.landscape-page {
  min-width: 0;
}

body.landscape-page::before {
  background:
    radial-gradient(circle at 50% 38%, rgba(199, 52, 44, 0.12), transparent 30%),
    radial-gradient(circle at 50% 88%, rgba(255, 255, 255, 0.06), transparent 34%);
}

body.landscape-page .site-header {
  grid-template-columns: minmax(260px, 1fr) auto minmax(160px, 1fr);
  min-height: 78px;
  padding: 14px 72px;
}

body.landscape-page .nav-links {
  display: flex;
}

body.landscape-page .brand small {
  display: block;
}

body.landscape-page .hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  text-align: center;
  padding: 118px clamp(24px, 6vw, 72px) 82px;
  isolation: isolate;
}

body.landscape-page .hero-copy {
  max-width: 920px;
  min-width: 0;
}

body.landscape-page .hero-emblem {
  width: 76px;
  margin: 0 auto 28px;
  opacity: 0.86;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.42));
}

body.landscape-page h1 {
  max-width: 820px;
  font-size: clamp(52px, 5vw, 86px);
  line-height: 1.02;
}

body.landscape-page h2 {
  max-width: 720px;
  font-size: clamp(34px, 3.4vw, 46px);
}

body.landscape-page .hero-copy > p:not(.eyebrow) {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-size: 17px;
}

body.landscape-page .hero-visual {
  display: none;
}

body.landscape-page .monitor-wall {
  display: none;
}

body.landscape-page .hero-production-card {
  display: none;
}

body.landscape-page .hero::after {
  display: none;
}

body.landscape-page .hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(72vw, 1180px);
  height: min(58vh, 620px);
  z-index: -2;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.026), transparent),
    radial-gradient(circle at 50% 50%, rgba(199, 52, 44, 0.09), transparent 40%);
}

body.landscape-page .hero-tags,
body.landscape-page .hero-actions {
  justify-content: center;
}

body.landscape-page .hero-tags {
  margin-top: 34px;
}

body.landscape-page .statement,
body.landscape-page .team-band,
body.landscape-page .contact {
  grid-template-columns: minmax(0, 1fr) minmax(460px, 0.72fr);
}

body.landscape-page .statement,
body.landscape-page .section,
body.landscape-page .contact {
  padding-left: clamp(24px, 6vw, 72px);
  padding-right: clamp(24px, 6vw, 72px);
}

body.landscape-page .section-heading {
  grid-template-columns: 0.58fr minmax(0, 1.25fr);
}

body.landscape-page .capability-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

body.landscape-page .timeline {
  grid-template-columns: repeat(4, 1fr);
}

body.landscape-page .case-carousel {
  width: calc(100% + clamp(24px, 6vw, 72px) * 2);
  margin-left: calc(clamp(24px, 6vw, 72px) * -1);
}

body.landscape-page .case-card {
  flex-basis: var(--poster-width);
}

body.landscape-page .case-track {
  --poster-width: clamp(156px, 9vw, 190px);
}

body.landscape-page .site-footer {
  flex-direction: row;
  padding-left: clamp(24px, 6vw, 72px);
  padding-right: clamp(24px, 6vw, 72px);
}

@media (max-width: 900px) {
  body.landscape-page .site-header {
    grid-template-columns: 1fr auto;
    padding: 12px 20px;
  }

  body.landscape-page .nav-links {
    display: none;
  }

  body.landscape-page .hero {
    grid-template-columns: 1fr;
    min-height: 78vh;
    padding: 96px 20px 54px;
  }

  body.landscape-page h1 {
    font-size: clamp(38px, 9vw, 58px);
  }

  body.landscape-page .hero-copy > p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.75;
  }

  body.landscape-page .hero-tags {
    gap: 8px;
    margin-top: 22px;
  }

  body.landscape-page .hero-tags span {
    min-height: 30px;
    padding: 0 9px;
    font-size: 11px;
  }

  body.landscape-page .hero-actions {
    gap: 10px;
    margin-top: 26px;
  }

  body.landscape-page .button {
    min-height: 42px;
    padding: 0 14px;
    font-size: 13px;
  }

  body.landscape-page .hero-emblem {
    width: 58px;
    margin-bottom: 20px;
  }

  body.landscape-page .statement,
  body.landscape-page .team-band,
  body.landscape-page .contact,
  body.landscape-page .section-heading {
    grid-template-columns: 1fr;
  }

  body.landscape-page .statement > p,
  body.landscape-page .contact-title h2 {
    writing-mode: horizontal-tb;
    max-width: 100%;
  }
}

body.landscape-page .hero {
  text-align: left;
}

body.landscape-page .hero-copy {
  position: relative;
  max-width: 980px;
  padding: clamp(54px, 6vw, 86px) clamp(48px, 6vw, 96px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(90deg, rgba(9, 9, 9, 0.64), rgba(9, 9, 9, 0.16)),
    rgba(255, 255, 255, 0.018);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.26);
}

body.landscape-page h1 {
  max-width: 760px;
  font-size: clamp(54px, 5.2vw, 90px);
}

body.landscape-page .hero-copy::before,
body.landscape-page .hero-copy::after {
  position: absolute;
  left: clamp(48px, 6vw, 96px);
  right: clamp(48px, 6vw, 96px);
  color: rgba(247, 247, 243, 0.28);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.landscape-page .hero-copy::before {
  content: "Boundless Realm";
  top: 24px;
}

body.landscape-page .hero-copy::after {
  content: "Editing / Color / Sound / Packaging / Delivery";
  bottom: 24px;
  text-align: right;
}

body.landscape-page .hero-emblem {
  display: none;
}

body.landscape-page .hero-visual {
  display: block;
  display: none;
}

body.landscape-page .hero-watermark {
  position: absolute;
  left: calc(50% + min(18vw, 280px));
  top: 50%;
  width: min(34vw, 480px);
  opacity: 0.105;
  transform: translate(-50%, -50%);
  filter: grayscale(1);
}

body.landscape-page .hero-tags,
body.landscape-page .hero-actions {
  justify-content: flex-start;
}

body.landscape-page .hero-copy > p:not(.eyebrow) {
  margin-left: 0;
  margin-right: 0;
}

@media (max-width: 900px) {
  body.landscape-page .hero-copy {
    padding: 42px 24px;
    text-align: center;
  }

  body.landscape-page .hero-copy::before,
  body.landscape-page .hero-copy::after {
    display: none;
  }

  body.landscape-page .hero-tags,
  body.landscape-page .hero-actions {
    justify-content: center;
  }

  body.landscape-page .hero-watermark {
    left: 50%;
    width: min(68vw, 320px);
    opacity: 0.07;
  }
}

/* Final landscape hero direction: cinematic title card with background mark. */
body.landscape-page .hero {
  text-align: center;
}

body.landscape-page .hero-copy {
  max-width: 980px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

body.landscape-page .hero-copy::before,
body.landscape-page .hero-copy::after {
  content: "";
  display: block;
  width: min(68vw, 760px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.26), transparent);
}

body.landscape-page .hero-copy::before {
  margin: 0 auto 34px;
}

body.landscape-page .hero-copy::after {
  display: none;
}

body.landscape-page .hero-copy > p:not(.eyebrow) {
  margin-left: auto;
  margin-right: auto;
}

body.landscape-page h1 {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
  font-size: clamp(58px, 5.8vw, 98px);
}

body.landscape-page .eyebrow {
  text-align: center;
}

body.landscape-page .hero-tags,
body.landscape-page .hero-actions {
  margin-bottom: 8px;
  justify-content: center;
}

body.landscape-page .hero-visual {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: block;
  pointer-events: none;
}

body.landscape-page .hero-watermark {
  position: absolute;
  right: clamp(56px, 9vw, 180px);
  bottom: clamp(58px, 10vh, 130px);
  left: auto;
  top: auto;
  width: min(34vw, 520px);
  opacity: 0.075;
  transform: none;
  filter: grayscale(1);
}

body.landscape-page .hero-kicker {
  position: absolute;
  left: clamp(36px, 5vw, 72px);
  right: clamp(36px, 5vw, 72px);
  top: 108px;
  display: flex;
  justify-content: space-between;
  color: rgba(247, 247, 243, 0.34);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.landscape-page .hero-service-line {
  position: absolute;
  left: 50%;
  bottom: 76px;
  display: flex;
  gap: clamp(22px, 4vw, 64px);
  color: rgba(247, 247, 243, 0.45);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

body.landscape-page .hero .hero-actions::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% + 34px);
  width: min(68vw, 820px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.26), transparent);
  transform: translateX(-50%);
  pointer-events: none;
}

body.landscape-page .hero-actions {
  position: relative;
}

@media (max-width: 900px) {
  body.landscape-page h1 {
    font-size: clamp(38px, 9vw, 58px);
  }

  body.landscape-page .hero-copy::before,
  body.landscape-page .hero-copy::after {
    width: min(78vw, 420px);
  }

  body.landscape-page .hero-watermark {
    right: 50%;
    bottom: 44px;
    width: min(70vw, 320px);
    opacity: 0.055;
    transform: translateX(50%);
  }

  body.landscape-page .hero-kicker,
  body.landscape-page .hero-service-line {
    display: none;
  }
}

@media (max-width: 680px) {
  body.landscape-page,
  body.landscape-page main,
  body.landscape-page .hero,
  body.landscape-page .section,
  body.landscape-page .statement,
  body.landscape-page .contact {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body.landscape-page .hero {
    min-height: auto;
    padding: 94px 18px 62px;
  }

  body.landscape-page .hero-copy {
    width: min(100%, 390px);
    max-width: 390px;
    padding: 0;
    margin-inline: auto;
  }

  body.landscape-page .eyebrow {
    max-width: 100%;
    font-size: 10px;
    line-height: 1.5;
    letter-spacing: 0.12em;
    overflow-wrap: anywhere;
  }

  body.landscape-page h1 {
    max-width: 340px;
    margin-inline: auto;
    font-size: clamp(30px, 8.6vw, 38px);
    line-height: 1.14;
    overflow-wrap: anywhere;
    word-break: keep-all;
  }

  body.landscape-page .hero-copy > p:not(.eyebrow) {
    max-width: 340px;
    margin-inline: auto;
    font-size: 13px;
    line-height: 1.72;
  }

  body.landscape-page .hero-tags,
  body.landscape-page .hero-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  body.landscape-page .hero-tags span {
    max-width: 100%;
    white-space: normal;
  }

  body.landscape-page .button {
    flex: 0 1 168px;
    max-width: 100%;
    padding: 0 12px;
    text-align: center;
    white-space: normal;
  }

  body.landscape-page .hero-copy::before,
  body.landscape-page .hero-copy::after {
    width: min(100%, 330px);
  }

  body.landscape-page .hero-copy::after {
    display: none;
  }

  body.landscape-page .hero .hero-actions::after {
    top: calc(100% + 28px);
    width: min(82vw, 420px);
  }

  body.landscape-page .statement > p,
  body.landscape-page .section-heading h2,
  body.landscape-page .contact-title h2 {
    max-width: 100%;
    writing-mode: horizontal-tb;
    overflow-wrap: anywhere;
    word-break: keep-all;
  }

  body.landscape-page .capability-grid,
  body.landscape-page .timeline {
    grid-template-columns: 1fr;
  }

  body.landscape-page .capability-grid article,
  body.landscape-page .timeline li {
    min-width: 0;
  }
}
