:root {
    --ink: #071923;
    --ink-soft: #0b2530;
    --ink-card: #0e2d38;
    --paper: #f1f3ef;
    --paper-warm: #e8ebe5;
    --white: #f7f9f7;
    --muted: #8fa1a6;
    --line-dark: rgba(232, 242, 240, 0.14);
    --line-light: rgba(7, 25, 35, 0.14);
    --teal: #34c7bf;
    --teal-soft: #8ce1dc;
    --coral: #ef684d;
    --gold: #e7b54a;
    --sky: #76b8cd;
    --container: 1240px;
    --header-height: 82px;
    --ease: cubic-bezier(.2, .75, .25, 1);
}

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

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

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", "Source Han Sans SC", system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

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

button {
    color: inherit;
}

h1,
h2,
h3,
p,
figure,
ul {
    margin: 0;
}

ul {
    padding: 0;
    list-style: none;
}

::selection {
    color: var(--ink);
    background: var(--teal);
}

.skip-link {
    position: fixed;
    left: 20px;
    top: -80px;
    z-index: 200;
    padding: 12px 18px;
    color: var(--ink);
    background: var(--teal);
    border-radius: 2px;
    transition: top .2s ease;
}

.skip-link:focus {
    top: 18px;
}

:focus-visible {
    outline: 2px solid var(--teal);
    outline-offset: 4px;
}

.container {
    width: min(var(--container), calc(100% - 64px));
    margin-inline: auto;
}

.section {
    padding: 130px 0;
}

.eyebrow {
    color: var(--teal);
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(280px, .65fr);
    gap: 80px;
    align-items: end;
    margin-bottom: 64px;
}

.section-heading.compact {
    margin-bottom: 54px;
}

.section-heading .eyebrow {
    margin-bottom: 22px;
}

.section-heading h2,
.workflow-intro h2,
.production-heading h2,
.global-heading h2 {
    font-size: clamp(35px, 4.2vw, 60px);
    font-weight: 680;
    line-height: 1.14;
    letter-spacing: -.055em;
}

.section-heading > p,
.workflow-intro > p:last-child,
.production-heading > p:last-child,
.global-heading > p:last-child {
    color: #4d6066;
    font-size: 16px;
    line-height: 1.85;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 2px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .02em;
    transition: color .25s ease, background-color .25s ease, border-color .25s ease, transform .25s var(--ease);
}

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

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

.button-primary:hover {
    background: #55d6cf;
}

.button-ghost {
    color: var(--white);
    background: rgba(6, 25, 35, .26);
    border-color: rgba(255, 255, 255, .38);
    backdrop-filter: blur(10px);
}

.button-ghost:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .62);
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    height: var(--header-height);
    color: var(--white);
    border-bottom: 1px solid transparent;
    transition: height .28s ease, background-color .28s ease, border-color .28s ease, backdrop-filter .28s ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
    height: 70px;
    background: rgba(5, 21, 29, .91);
    border-color: rgba(255, 255, 255, .1);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    height: 100%;
    align-items: center;
}

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

.brand-mark {
    position: relative;
    display: inline-flex;
    width: 28px;
    height: 25px;
    align-items: flex-end;
    gap: 3px;
}

.brand-mark i {
    display: block;
    width: 6px;
    background: currentColor;
    transform: skew(-14deg);
}

.brand-mark i:nth-child(1) {
    height: 14px;
}

.brand-mark i:nth-child(2) {
    height: 25px;
}

.brand-mark i:nth-child(3) {
    height: 18px;
    background: var(--teal);
}

.brand-name {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -.04em;
    white-space: nowrap;
}

.brand-name b {
    color: var(--teal);
    font-weight: 800;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(20px, 2.25vw, 36px);
    margin-left: auto;
    margin-right: clamp(22px, 3vw, 46px);
}

.desktop-nav a {
    position: relative;
    color: rgba(245, 249, 247, .72);
    font-size: 13px;
    transition: color .2s ease;
}

.desktop-nav a::after {
    position: absolute;
    content: "";
    right: 0;
    bottom: -9px;
    left: 0;
    height: 1px;
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .24s var(--ease);
}

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

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

.header-cta {
    display: inline-flex;
    height: 40px;
    align-items: center;
    gap: 16px;
    padding: 0 18px;
    color: var(--ink);
    background: var(--teal);
    font-size: 12px;
    font-weight: 700;
    transition: background-color .2s ease, transform .2s ease;
}

.header-cta:hover {
    background: #5cdbd4;
    transform: translateY(-1px);
}

.menu-toggle,
.mobile-nav {
    display: none;
}

.hero {
    position: relative;
    min-height: 780px;
    height: 100svh;
    max-height: 980px;
    color: var(--white);
    background: var(--ink);
    isolation: isolate;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    z-index: -3;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(3, 17, 24, .96) 0%, rgba(3, 17, 24, .87) 39%, rgba(3, 17, 24, .28) 72%, rgba(3, 17, 24, .48) 100%),
        linear-gradient(0deg, rgba(3, 17, 24, .91) 0%, transparent 48%),
        url("../images/hero-studio.webp");
    background-position: center;
    background-size: cover;
    transform: scale(1.01);
}

.hero::after {
    position: absolute;
    z-index: -2;
    content: "";
    inset: 0;
    background: radial-gradient(circle at 77% 46%, rgba(52, 199, 191, .11), transparent 25%);
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 5%;
    width: 38%;
    height: 100%;
    opacity: .22;
    border-right: 1px solid rgba(255, 255, 255, .12);
    border-left: 1px solid rgba(255, 255, 255, .12);
    background-image: linear-gradient(90deg, transparent 49.85%, rgba(255, 255, 255, .12) 50%, transparent 50.15%);
}

.hero-inner {
    display: grid;
    height: 100%;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 80px;
    align-items: center;
    padding-top: var(--header-height);
    padding-bottom: 88px;
}

.hero-copy {
    max-width: 850px;
    padding-top: 34px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 30px;
}

.hero-eyebrow::before {
    content: "";
    width: 44px;
    height: 1px;
    background: var(--teal);
}

.hero h1 {
    max-width: 820px;
    font-size: clamp(52px, 5.75vw, 86px);
    font-weight: 720;
    line-height: 1.06;
    letter-spacing: -.07em;
}

.hero h1 em {
    color: transparent;
    font-style: normal;
    -webkit-text-stroke: 1px rgba(244, 249, 247, .92);
}

.hero-lead {
    max-width: 640px;
    margin-top: 30px;
    color: rgba(242, 247, 245, .72);
    font-size: clamp(16px, 1.35vw, 19px);
    line-height: 1.85;
}

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

.hero-capability {
    align-self: end;
    margin-bottom: 62px;
    padding: 24px 0 0 28px;
    border-left: 1px solid rgba(255, 255, 255, .2);
}

.capability-kicker {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, .42);
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 10px;
    letter-spacing: .18em;
}

.capability-item {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 1px 12px;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, .13);
}

.capability-item > span {
    grid-row: 1 / 3;
    color: var(--teal);
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 11px;
}

.capability-item strong {
    font-size: 14px;
    font-weight: 700;
}

.capability-item small {
    color: rgba(255, 255, 255, .38);
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 8px;
    letter-spacing: .09em;
}

.hero-footer {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 60px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.hero-footer-inner {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, .45);
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 10px;
    letter-spacing: .14em;
}

.hero-scroll {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-scroll i {
    position: relative;
    display: block;
    width: 34px;
    height: 1px;
    background: rgba(255, 255, 255, .28);
    overflow: hidden;
}

.hero-scroll i::after {
    position: absolute;
    content: "";
    inset: 0;
    background: var(--teal);
    animation: scrollLine 2.2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: translateX(-100%); }
    55%, 100% { transform: translateX(100%); }
}

.metrics-section {
    color: var(--white);
    background: var(--ink-soft);
    border-top: 1px solid var(--line-dark);
}

.metrics-wrap {
    padding: 76px 0 64px;
}

.metrics-heading {
    display: flex;
    gap: 22px;
    align-items: center;
    margin-bottom: 44px;
}

.section-index {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--teal);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 10px;
}

.metrics-heading .eyebrow {
    margin-bottom: 7px;
}

.metrics-heading h2 {
    font-size: clamp(23px, 2.5vw, 34px);
    line-height: 1.2;
    letter-spacing: -.04em;
}

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

.metric {
    padding: 33px 26px 34px 0;
}

.metric + .metric {
    padding-left: 28px;
    border-left: 1px solid var(--line-dark);
}

.metric strong {
    display: block;
    color: var(--teal);
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: clamp(30px, 3.1vw, 45px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -.065em;
}

.metric:nth-child(3) strong {
    color: var(--gold);
}

.metric:nth-child(4) strong {
    color: var(--coral);
}

.metric span {
    display: block;
    margin-top: 15px;
    color: rgba(255, 255, 255, .63);
    font-size: 13px;
}

.metrics-note {
    margin-top: 20px;
    color: rgba(255, 255, 255, .4);
    font-size: 11px;
}

.capabilities-section {
    background: var(--paper);
}

.capabilities-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
    gap: 72px;
    align-items: start;
}

.capabilities-visual {
    position: sticky;
    top: 100px;
    min-height: 620px;
    overflow: hidden;
    background: var(--ink);
}

.capabilities-visual picture,
.capabilities-visual img {
    width: 100%;
    height: 100%;
}

.capabilities-visual picture {
    position: absolute;
    inset: 0;
}

.capabilities-visual img {
    object-fit: cover;
}

.capabilities-visual::after {
    position: absolute;
    content: "";
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(4, 19, 26, .84) 100%);
}

.capabilities-visual figcaption {
    position: absolute;
    z-index: 1;
    right: 24px;
    bottom: 21px;
    left: 24px;
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, .58);
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 9px;
    letter-spacing: .12em;
}

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

.capability-card {
    padding: 36px 0 40px;
    border-bottom: 1px solid var(--line-light);
}

.capability-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #718087;
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 11px;
}

.capability-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
}

.capability-card[data-accent="coral"] .capability-dot {
    background: var(--coral);
}

.capability-card[data-accent="gold"] .capability-dot {
    background: var(--gold);
}

.capability-card h3 {
    margin-top: 18px;
    font-size: clamp(27px, 2.5vw, 36px);
    line-height: 1.2;
    letter-spacing: -.045em;
}

.capability-card > p {
    max-width: 610px;
    margin-top: 16px;
    color: #4d6066;
    line-height: 1.85;
}

.capability-card ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 23px;
}

.capability-card li {
    padding: 6px 11px;
    color: #50636a;
    background: rgba(7, 25, 35, .045);
    border: 1px solid rgba(7, 25, 35, .1);
    font-size: 11px;
}

.production-section {
    position: relative;
    color: var(--white);
    background: var(--ink);
    overflow: hidden;
}

.production-image {
    position: absolute;
    inset: 0 0 auto auto;
    width: 46%;
    height: 590px;
    opacity: .82;
    background-image:
        linear-gradient(90deg, var(--ink) 0%, transparent 55%),
        linear-gradient(0deg, var(--ink) 0%, transparent 60%),
        url("../images/ai-production.webp");
    background-position: center;
    background-size: cover;
}

.production-content {
    position: relative;
    z-index: 1;
    padding: 130px 0 94px;
}

.production-heading {
    max-width: 760px;
}

.production-heading .eyebrow {
    margin-bottom: 24px;
}

.production-heading > p:last-child {
    margin-top: 20px;
    color: rgba(255, 255, 255, .54);
}

.production-stages {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin-top: 82px;
    border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
}

.production-stage {
    min-height: 250px;
    padding: 26px 22px 30px 0;
}

.production-stage + .production-stage {
    padding-left: 23px;
    border-left: 1px solid var(--line-dark);
}

.production-stage > span {
    color: var(--teal);
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 10px;
}

.production-stage:nth-child(3) > span {
    color: var(--coral);
}

.production-stage:nth-child(5) > span {
    color: var(--gold);
}

.production-stage h3 {
    margin-top: 22px;
    font-size: 20px;
    letter-spacing: -.03em;
}

.production-stage ul {
    margin-top: 17px;
}

.production-stage li {
    padding: 5px 0;
    color: rgba(255, 255, 255, .48);
    font-size: 12px;
}

.deliverables,
.asset-library {
    display: flex;
    gap: 42px;
    align-items: center;
    margin-top: 34px;
    padding: 20px 24px;
    background: rgba(52, 199, 191, .08);
    border-left: 2px solid var(--teal);
}

.deliverables > span,
.asset-library > span {
    color: var(--teal);
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    white-space: nowrap;
}

.deliverables p,
.asset-library p {
    color: rgba(255, 255, 255, .67);
    font-size: 13px;
}

.deliverables i,
.asset-library i {
    margin: 0 8px;
    color: rgba(255, 255, 255, .22);
    font-style: normal;
}

.formats-section {
    background: var(--paper-warm);
}

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

.format-card {
    position: relative;
    display: grid;
    min-height: 300px;
    grid-template-columns: 58px 1fr;
    gap: 30px;
    padding: 42px;
    border-right: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
    transition: color .35s ease, background-color .35s ease;
    overflow: hidden;
}

.format-card::before {
    position: absolute;
    content: "";
    width: 180px;
    height: 180px;
    right: -110px;
    bottom: -110px;
    border: 1px solid rgba(7, 25, 35, .1);
    border-radius: 50%;
    transition: transform .5s var(--ease), border-color .35s ease;
}

.format-card:hover {
    color: var(--white);
    background: var(--ink-soft);
}

.format-card:hover::before {
    border-color: rgba(52, 199, 191, .45);
    transform: scale(1.5);
}

.format-number {
    color: var(--coral);
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 14px;
}

.format-card:nth-child(2) .format-number,
.format-card:nth-child(4) .format-number {
    color: var(--teal);
}

.format-label {
    color: #65747a;
    font-size: 11px;
    letter-spacing: .08em;
}

.format-card:hover .format-label,
.format-card:hover p {
    color: rgba(255, 255, 255, .58);
}

.format-card h3 {
    margin-top: 22px;
    font-size: clamp(27px, 3vw, 40px);
    line-height: 1.15;
    letter-spacing: -.05em;
}

.format-card p {
    max-width: 420px;
    margin-top: 18px;
    color: #52656b;
    transition: color .35s ease;
}

.format-arrow {
    position: absolute;
    right: 34px;
    bottom: 28px;
    color: #718188;
    font-size: 20px;
}

.workflow-section {
    color: var(--white);
    background: var(--ink-soft);
    padding: 130px 0 104px;
}

.workflow-intro {
    display: grid;
    grid-template-columns: 1fr 1.6fr .8fr;
    gap: 40px;
    align-items: start;
}

.workflow-intro h2 {
    margin-top: -5px;
}

.workflow-intro > p:last-child {
    color: rgba(255, 255, 255, .48);
}

.workflow-line {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-top: 86px;
}

.workflow-line::before {
    position: absolute;
    content: "";
    top: 20px;
    right: 9%;
    left: 9%;
    height: 1px;
    background: rgba(255, 255, 255, .22);
}

.workflow-step {
    position: relative;
    padding-right: 28px;
}

.workflow-node {
    position: relative;
    z-index: 1;
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    color: var(--ink);
    background: var(--teal);
    border: 8px solid var(--ink-soft);
    border-radius: 50%;
}

.workflow-step:nth-child(3) .workflow-node {
    background: var(--coral);
}

.workflow-step:nth-child(5) .workflow-node {
    background: var(--gold);
}

.workflow-node span {
    display: none;
}

.workflow-step h3 {
    margin-top: 29px;
    font-size: 17px;
}

.workflow-step h3::before {
    display: block;
    margin-bottom: 10px;
    color: var(--teal);
    content: attr(data-index);
}

.workflow-step p {
    max-width: 180px;
    margin-top: 11px;
    color: rgba(255, 255, 255, .42);
    font-size: 12px;
    line-height: 1.9;
}

.asset-library {
    margin-top: 62px;
}

.reel-section {
    position: relative;
    padding: 138px 0 110px;
    color: var(--white);
    background:
        radial-gradient(circle at 80% 18%, rgba(52, 199, 191, .1), transparent 25%),
        linear-gradient(180deg, #030d12 0%, #061720 100%);
    isolation: isolate;
    overflow: hidden;
}

.reel-section::before {
    position: absolute;
    z-index: -1;
    content: "";
    inset: 0;
    opacity: .16;
    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 96px 96px;
    mask-image: linear-gradient(180deg, black, transparent 84%);
}

.reel-ambient {
    position: absolute;
    z-index: -1;
    top: 28px;
    right: -2vw;
    color: transparent;
    font-family: Arial, sans-serif;
    font-size: clamp(76px, 11vw, 170px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.07em;
    white-space: nowrap;
    -webkit-text-stroke: 1px rgba(255, 255, 255, .055);
    user-select: none;
}

.reel-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(300px, .5fr);
    gap: 80px;
    align-items: end;
    margin-bottom: 58px;
}

.reel-heading .eyebrow {
    margin-bottom: 24px;
}

.reel-heading h2 {
    max-width: 900px;
    font-size: clamp(42px, 5.3vw, 76px);
    font-weight: 680;
    line-height: 1.08;
    letter-spacing: -.065em;
}

.reel-heading-note {
    padding-left: 22px;
    border-left: 1px solid rgba(255, 255, 255, .18);
}

.reel-heading-note > span {
    color: var(--coral);
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 9px;
    letter-spacing: .16em;
}

.reel-heading-note p {
    margin-top: 15px;
    color: rgba(255, 255, 255, .48);
    font-size: 13px;
    line-height: 1.9;
}

.reel-stage-wrap {
    width: min(1560px, calc(100% - 48px));
    margin-inline: auto;
}

.reel-stage {
    position: relative;
    aspect-ratio: 16 / 8.35;
    min-height: 520px;
    max-height: 820px;
    background: #02070a;
    box-shadow: 0 48px 110px rgba(0, 0, 0, .44);
    overflow: hidden;
}

.reel-stage video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #02070a;
    cursor: pointer;
}

.reel-video-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(1, 8, 12, .73) 0%, transparent 45%),
        linear-gradient(0deg, rgba(1, 8, 12, .88) 0%, transparent 43%, rgba(1, 8, 12, .17) 100%);
    pointer-events: none;
    transition: opacity .5s ease;
}

.reel-frame {
    position: absolute;
    inset: 26px;
    pointer-events: none;
}

.reel-frame i {
    position: absolute;
    width: 30px;
    height: 30px;
    border-color: rgba(255, 255, 255, .42);
    border-style: solid;
}

.reel-frame i:nth-child(1) { top: 0; left: 0; border-width: 1px 0 0 1px; }
.reel-frame i:nth-child(2) { top: 0; right: 0; border-width: 1px 1px 0 0; }
.reel-frame i:nth-child(3) { right: 0; bottom: 0; border-width: 0 1px 1px 0; }
.reel-frame i:nth-child(4) { bottom: 0; left: 0; border-width: 0 0 1px 1px; }

.reel-title-card {
    position: absolute;
    z-index: 2;
    left: clamp(34px, 5vw, 82px);
    bottom: clamp(78px, 9vw, 128px);
    transition: opacity .45s ease, transform .45s var(--ease);
}

.reel-title-card > span {
    color: var(--teal);
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .18em;
}

.reel-title-card p {
    margin-top: 22px;
    color: rgba(255, 255, 255, .64);
    font-size: 13px;
}

.reel-title-card h3 {
    margin-top: 7px;
    font-size: clamp(36px, 4.9vw, 72px);
    font-weight: 680;
    line-height: 1.08;
    letter-spacing: -.06em;
    text-shadow: 0 12px 35px rgba(0, 0, 0, .45);
}

.reel-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 68%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0;
    color: var(--white);
    background: transparent;
    border: 0;
    cursor: pointer;
    transform: translate(-50%, -50%);
    transition: opacity .38s ease, transform .38s var(--ease);
}

.reel-play:hover {
    transform: translate(-50%, -50%) scale(1.035);
}

.reel-play-disc {
    position: relative;
    display: grid;
    width: 108px;
    height: 108px;
    place-items: center;
    background: rgba(3, 18, 25, .34);
    border: 1px solid rgba(255, 255, 255, .54);
    border-radius: 50%;
    backdrop-filter: blur(12px);
}

.reel-play-disc::before,
.reel-play-disc::after {
    position: absolute;
    content: "";
    border-radius: 50%;
}

.reel-play-disc::before {
    inset: -8px;
    border: 1px solid rgba(255, 255, 255, .12);
}

.reel-play-disc::after {
    width: 36px;
    height: 36px;
    background: var(--teal);
}

.reel-play-disc i {
    position: relative;
    z-index: 1;
    width: 0;
    height: 0;
    margin-left: 3px;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 9px solid var(--ink);
}

.reel-play-label {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    text-align: left;
}

.reel-play-label b {
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 11px;
    letter-spacing: .18em;
}

.reel-play-label small {
    margin-top: 7px;
    color: rgba(255, 255, 255, .5);
    font-size: 10px;
}

.reel-edition {
    position: absolute;
    z-index: 2;
    top: 44px;
    right: 46px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
    color: rgba(255, 255, 255, .52);
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 8px;
    letter-spacing: .13em;
    transition: opacity .35s ease;
}

.reel-edition span:first-child {
    color: var(--teal);
}

.reel-controls {
    position: absolute;
    z-index: 5;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    min-height: 72px;
    grid-template-columns: 34px minmax(120px, 1fr) auto auto auto;
    gap: 22px;
    align-items: center;
    padding: 18px 32px;
    background: linear-gradient(0deg, rgba(1, 7, 10, .94), rgba(1, 7, 10, .55));
    opacity: .84;
    transform: translateY(0);
    transition: opacity .3s ease, transform .3s var(--ease);
}

.reel-control-button,
.reel-text-control {
    padding: 0;
    color: rgba(255, 255, 255, .76);
    background: transparent;
    border: 0;
    cursor: pointer;
}

.reel-control-button {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
}

.control-play-icon {
    width: 0;
    height: 0;
    margin-left: 3px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid currentColor;
}

.reel-stage.is-playing .control-play-icon {
    width: 8px;
    height: 10px;
    margin: 0;
    border: 0;
    border-right: 3px solid currentColor;
    border-left: 3px solid currentColor;
}

.reel-progress {
    width: 100%;
    height: 2px;
    margin: 0;
    appearance: none;
    background: linear-gradient(90deg, var(--teal) var(--video-progress, 0%), rgba(255, 255, 255, .24) var(--video-progress, 0%));
    border-radius: 0;
    cursor: pointer;
}

.reel-progress::-webkit-slider-thumb {
    width: 9px;
    height: 9px;
    appearance: none;
    background: var(--teal);
    border: 0;
    border-radius: 50%;
}

.reel-progress::-moz-range-thumb {
    width: 9px;
    height: 9px;
    background: var(--teal);
    border: 0;
    border-radius: 50%;
}

.reel-time,
.reel-text-control {
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 8px;
    letter-spacing: .12em;
    white-space: nowrap;
}

.reel-time {
    color: rgba(255, 255, 255, .53);
}

.reel-text-control:hover {
    color: var(--teal);
}

.reel-stage.is-playing .reel-title-card,
.reel-stage.is-playing .reel-play,
.reel-stage.is-playing .reel-edition {
    opacity: 0;
    pointer-events: none;
}

.reel-stage.is-playing .reel-title-card {
    transform: translateY(18px);
}

.reel-stage.is-playing .reel-video-shade {
    opacity: .16;
}

.reel-stage.has-played:not(.is-playing) .reel-title-card,
.reel-stage.has-played:not(.is-playing) .reel-edition {
    opacity: 0;
}

.reel-stage.has-played:not(.is-playing) .reel-play-label {
    display: none;
}

.reel-stage.has-played:not(.is-playing) .reel-play {
    left: 50%;
}

.reel-caption {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .13);
}

.reel-caption p {
    color: rgba(255, 255, 255, .42);
    font-size: 11px;
}

.reel-caption p:first-child {
    color: rgba(255, 255, 255, .67);
}

.reel-caption p span {
    margin-right: 16px;
    color: var(--teal);
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
}

.showcase-section {
    background: var(--paper);
}

.showcase-main {
    position: relative;
    height: min(65vw, 680px);
    min-height: 480px;
    color: var(--white);
    background: var(--ink);
    overflow: hidden;
}

.showcase-main picture,
.showcase-main img {
    width: 100%;
    height: 100%;
}

.showcase-main img {
    object-fit: cover;
    transition: transform 1s var(--ease);
}

.showcase-main:hover img {
    transform: scale(1.025);
}

.showcase-main::after {
    position: absolute;
    content: "";
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 13, 19, .05) 35%, rgba(2, 13, 19, .88) 100%);
}

.showcase-overlay {
    position: absolute;
    z-index: 1;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 34px 38px 38px;
}

.showcase-overlay > span {
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 10px;
    letter-spacing: .14em;
}

.showcase-overlay > div {
    margin-top: auto;
}

.showcase-overlay p {
    color: var(--teal-soft);
    font-size: 13px;
}

.showcase-overlay h3 {
    margin-top: 7px;
    font-size: clamp(33px, 4.5vw, 60px);
    line-height: 1.15;
    letter-spacing: -.05em;
}

.showcase-overlay > a {
    position: absolute;
    right: 38px;
    bottom: 40px;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding-bottom: 9px;
    border-bottom: 1px solid rgba(255, 255, 255, .4);
    font-size: 13px;
}

.showcase-catalog {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(340px, .65fr);
    margin-top: 22px;
    background: var(--ink-soft);
}

.catalog-image {
    min-height: 470px;
    overflow: hidden;
}

.catalog-image picture,
.catalog-image img {
    width: 100%;
    height: 100%;
}

.catalog-image img {
    object-fit: cover;
}

.catalog-list {
    display: grid;
    color: var(--white);
    border-left: 1px solid var(--line-dark);
}

.catalog-list article {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: center;
    padding: 22px 24px;
    border-bottom: 1px solid var(--line-dark);
}

.catalog-list article:last-child {
    border-bottom: 0;
}

.catalog-list article > span {
    color: var(--teal);
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 10px;
}

.catalog-list article[data-tone="coral"] > span { color: var(--coral); }
.catalog-list article[data-tone="gold"] > span { color: var(--gold); }
.catalog-list article[data-tone="sky"] > span { color: var(--sky); }

.catalog-list h3 {
    font-size: 15px;
    line-height: 1.3;
}

.catalog-list p {
    margin-top: 5px;
    color: rgba(255, 255, 255, .4);
    font-size: 11px;
}

.global-section {
    position: relative;
    color: var(--white);
    background: #061720;
    overflow: hidden;
}

.global-image {
    position: absolute;
    inset: 0;
    opacity: .65;
    background-image:
        linear-gradient(90deg, rgba(3, 17, 24, .97) 0%, rgba(3, 17, 24, .83) 48%, rgba(3, 17, 24, .35) 100%),
        linear-gradient(0deg, rgba(3, 17, 24, .98) 0%, transparent 70%),
        url("../images/global-release.webp");
    background-position: center;
    background-size: cover;
}

.global-inner {
    position: relative;
    z-index: 1;
    padding: 130px 0;
}

.global-heading {
    max-width: 760px;
}

.global-heading .eyebrow {
    color: var(--gold);
    margin-bottom: 24px;
}

.global-heading > p:last-child {
    max-width: 600px;
    margin-top: 22px;
    color: rgba(255, 255, 255, .56);
}

.release-services {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-top: 48px;
    color: rgba(255, 255, 255, .7);
    font-size: 12px;
}

.release-services i {
    width: 4px;
    height: 4px;
    background: var(--coral);
    border-radius: 50%;
}

.markets-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 78px;
}

.market-card {
    min-height: 400px;
    padding: 34px;
    background: rgba(9, 35, 45, .76);
    border: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(14px);
    transition: transform .3s var(--ease), border-color .3s ease;
}

.market-card:hover {
    transform: translateY(-5px);
    border-color: rgba(52, 199, 191, .5);
}

.market-top {
    display: flex;
    justify-content: space-between;
    color: var(--teal);
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 10px;
    letter-spacing: .13em;
}

.market-card:nth-child(2) .market-top {
    color: var(--coral);
}

.market-card h3 {
    margin-top: 49px;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.2;
    letter-spacing: -.045em;
}

.market-card > p {
    max-width: 470px;
    margin-top: 18px;
    color: rgba(255, 255, 255, .53);
    line-height: 1.85;
}

.market-card ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--line-dark);
}

.market-card li {
    position: relative;
    padding-left: 13px;
    color: rgba(255, 255, 255, .66);
    font-size: 12px;
}

.market-card li::before {
    position: absolute;
    content: "";
    top: .75em;
    left: 0;
    width: 4px;
    height: 4px;
    background: var(--teal);
    border-radius: 50%;
}

.cooperation-section {
    background: var(--paper);
}

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

.cooperation-card {
    min-height: 280px;
    padding: 30px;
    border-right: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
}

.cooperation-card > span {
    color: var(--teal);
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 11px;
}

.cooperation-card:nth-child(3) > span {
    color: var(--coral);
}

.cooperation-card:nth-child(4) > span {
    color: var(--gold);
}

.cooperation-card h3 {
    margin-top: 58px;
    font-size: 24px;
    letter-spacing: -.04em;
}

.cooperation-card p {
    margin-top: 17px;
    color: #52646a;
    font-size: 13px;
    line-height: 1.85;
}

.pilot-panel {
    display: grid;
    grid-template-columns: minmax(300px, .8fr) minmax(0, 1.35fr);
    margin-top: 28px;
    color: var(--white);
    background: var(--ink-soft);
}

.pilot-title {
    padding: 46px;
    border-right: 1px solid var(--line-dark);
}

.pilot-title > span {
    color: var(--coral);
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 10px;
    letter-spacing: .14em;
}

.pilot-title h3 {
    margin-top: 24px;
    font-size: 28px;
    line-height: 1.35;
    letter-spacing: -.045em;
}

.pilot-title p {
    margin-top: 16px;
    color: rgba(255, 255, 255, .43);
    font-size: 13px;
}

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

.pilot-data > div {
    display: flex;
    flex-direction: column;
    padding: 44px 24px;
}

.pilot-data > div + div {
    border-left: 1px solid var(--line-dark);
}

.pilot-data strong {
    color: var(--teal);
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 45px;
    font-weight: 500;
    line-height: 1;
}

.pilot-data > div:nth-child(3) strong {
    color: var(--gold);
}

.pilot-data > div:nth-child(4) strong {
    color: var(--coral);
}

.pilot-data span {
    margin-top: 13px;
    font-size: 13px;
    font-weight: 700;
}

.pilot-data small {
    margin-top: 16px;
    color: rgba(255, 255, 255, .38);
    font-size: 10px;
    line-height: 1.6;
}

.contact-section {
    position: relative;
    min-height: 720px;
    color: var(--white);
    background: var(--ink);
    overflow: hidden;
}

.contact-background {
    position: absolute;
    inset: 0;
    opacity: .64;
    background-image:
        linear-gradient(90deg, rgba(3, 17, 24, .98) 0%, rgba(3, 17, 24, .86) 50%, rgba(3, 17, 24, .42) 100%),
        linear-gradient(0deg, rgba(3, 17, 24, .96), transparent 64%),
        url("../images/hero-studio.webp");
    background-position: center;
    background-size: cover;
}

.contact-inner {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 720px;
    flex-direction: column;
    justify-content: center;
    padding: 95px 0 78px;
}

.contact-inner > .eyebrow {
    margin-bottom: 28px;
}

.contact-inner h2 {
    max-width: 900px;
    font-size: clamp(48px, 6vw, 86px);
    line-height: 1.05;
    letter-spacing: -.07em;
}

.contact-inner h2 span {
    color: var(--teal);
}

.contact-lead {
    max-width: 620px;
    margin-top: 28px;
    color: rgba(255, 255, 255, .58);
    font-size: 17px;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 40px;
}

.contact-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    align-items: center;
    margin-top: 74px;
    padding-top: 22px;
    border-top: 1px solid var(--line-dark);
    color: rgba(255, 255, 255, .4);
    font-size: 11px;
}

.contact-meta a {
    color: var(--white);
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 14px;
    letter-spacing: .06em;
}

.contact-meta span:last-child {
    margin-left: auto;
}

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

.footer-top {
    display: flex;
    min-height: 130px;
    align-items: center;
    gap: 48px;
    border-bottom: 1px solid var(--line-dark);
}

.footer-brand {
    margin-right: 20px;
}

.footer-top > p {
    color: rgba(255, 255, 255, .41);
    font-size: 11px;
}

.back-to-top {
    display: inline-flex;
    gap: 14px;
    align-items: center;
    margin-left: auto;
    color: rgba(255, 255, 255, .65);
    font-size: 11px;
}

.footer-bottom {
    display: flex;
    min-height: 64px;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, .28);
    font-size: 10px;
}

.toast {
    position: fixed;
    z-index: 150;
    right: 24px;
    bottom: 24px;
    padding: 12px 17px;
    color: var(--ink);
    background: var(--teal);
    border-radius: 2px;
    box-shadow: 0 16px 50px rgba(0, 0, 0, .24);
    font-size: 13px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(14px);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s var(--ease);
}

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

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

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

.metrics-grid .reveal:nth-child(2),
.capability-list .reveal:nth-child(2),
.formats-grid .reveal:nth-child(2),
.cooperation-grid .reveal:nth-child(2) {
    transition-delay: .08s;
}

.metrics-grid .reveal:nth-child(3),
.capability-list .reveal:nth-child(3),
.formats-grid .reveal:nth-child(3),
.cooperation-grid .reveal:nth-child(3) {
    transition-delay: .16s;
}

.metrics-grid .reveal:nth-child(4),
.formats-grid .reveal:nth-child(4),
.cooperation-grid .reveal:nth-child(4) {
    transition-delay: .24s;
}

@media (max-width: 1120px) {
    .desktop-nav,
    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
        width: 45px;
        height: 42px;
        flex-direction: column;
        align-items: flex-end;
        justify-content: center;
        gap: 7px;
        margin-left: auto;
        padding: 0;
        background: transparent;
        border: 0;
        cursor: pointer;
    }

    .menu-toggle span {
        width: 27px;
        height: 1px;
        background: currentColor;
        transition: transform .25s ease, width .25s ease;
    }

    .menu-toggle span:last-child {
        width: 19px;
    }

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

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

    .mobile-nav {
        position: fixed;
        top: 70px;
        right: 0;
        left: 0;
        display: block;
        height: calc(100svh - 70px);
        color: var(--white);
        background: rgba(5, 21, 29, .98);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity .25s ease, visibility .25s ease, transform .25s var(--ease);
        overflow-y: auto;
    }

    .site-header.is-menu-open .mobile-nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .mobile-nav .container {
        display: flex;
        flex-direction: column;
        padding: 24px 0 48px;
    }

    .mobile-nav a {
        display: flex;
        min-height: 68px;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid var(--line-dark);
        font-size: 20px;
        font-weight: 650;
    }

    .mobile-nav a span {
        color: var(--teal);
        font-size: 15px;
    }

    .mobile-nav .mobile-contact {
        min-height: 52px;
        justify-content: center;
        margin-top: 28px;
        color: var(--ink);
        background: var(--teal);
        border: 0;
        font-size: 14px;
    }

    .hero-inner {
        grid-template-columns: 1fr 275px;
        gap: 50px;
    }

    .capabilities-layout {
        gap: 45px;
    }

    .capabilities-visual {
        min-height: 540px;
    }

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

    .production-stage:nth-child(4) {
        padding-left: 0;
        border-left: 0;
    }

    .production-stage:nth-child(n+4) {
        border-top: 1px solid var(--line-dark);
    }

    .workflow-intro {
        grid-template-columns: 1fr 2fr;
    }

    .workflow-intro > p:last-child {
        grid-column: 2;
    }

    .reel-play {
        left: 72%;
    }

    .pilot-panel {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 900px) {
    .container {
        width: min(var(--container), calc(100% - 42px));
    }

    .section {
        padding: 100px 0;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 48px;
    }

    .section-heading > p {
        max-width: 640px;
    }

    .hero {
        min-height: 820px;
        height: auto;
        max-height: none;
    }

    .hero-background {
        background-image:
            linear-gradient(90deg, rgba(3, 17, 24, .92), rgba(3, 17, 24, .38)),
            linear-gradient(0deg, rgba(3, 17, 24, .96) 0%, transparent 68%),
            url("../images/hero-studio.webp");
        background-position: 62% center;
    }

    .hero-inner {
        display: flex;
        min-height: 820px;
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
        padding-top: 145px;
        padding-bottom: 110px;
    }

    .hero-copy {
        padding: 0;
    }

    .hero-capability {
        width: 100%;
        max-width: 620px;
        align-self: auto;
        margin: 6px 0 0;
        padding: 0;
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, .18);
    }

    .capability-kicker {
        display: none;
    }

    .capability-item {
        grid-template-columns: 34px 1fr auto;
        align-items: center;
        padding: 13px 0;
        border-top: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .capability-item > span {
        grid-row: auto;
    }

    .capability-item small {
        align-self: center;
    }

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

    .metric:nth-child(3) {
        padding-left: 0;
        border-left: 0;
    }

    .metric:nth-child(n+3) {
        border-top: 1px solid var(--line-dark);
    }

    .capabilities-layout {
        grid-template-columns: 1fr;
    }

    .capabilities-visual {
        position: relative;
        top: auto;
        min-height: 0;
        aspect-ratio: 16 / 10;
    }

    .production-content,
    .global-inner {
        padding: 100px 0;
    }

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

    .workflow-intro {
        grid-template-columns: 1fr;
    }

    .workflow-intro > p:last-child {
        grid-column: auto;
    }

    .workflow-line {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 58px;
        padding-left: 4px;
    }

    .workflow-line::before {
        top: 18px;
        bottom: 42px;
        left: 22px;
        width: 1px;
        height: auto;
    }

    .workflow-step {
        display: grid;
        grid-template-columns: 50px 1fr;
        padding: 0 0 34px;
    }

    .workflow-node {
        grid-row: 1 / 3;
    }

    .workflow-step h3 {
        margin-top: 0;
    }

    .workflow-step p {
        max-width: none;
        margin-top: 7px;
    }

    .asset-library,
    .deliverables {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .reel-section {
        padding: 100px 0 84px;
    }

    .reel-heading {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 44px;
    }

    .reel-heading-note {
        max-width: 620px;
    }

    .reel-stage {
        min-height: 460px;
        aspect-ratio: 4 / 3;
    }

    .reel-stage video {
        object-position: center;
    }

    .reel-play {
        top: 42%;
        left: 50%;
    }

    .reel-title-card {
        right: 34px;
        bottom: 98px;
        left: 34px;
    }

    .reel-title-card h3 {
        font-size: clamp(35px, 7vw, 54px);
    }

    .reel-controls {
        grid-template-columns: 30px minmax(90px, 1fr) auto auto;
        gap: 16px;
        padding: 16px 22px;
    }

    .reel-time {
        display: none;
    }

    .showcase-catalog {
        grid-template-columns: 1fr;
    }

    .catalog-image {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .catalog-list {
        grid-template-columns: repeat(2, 1fr);
        border-top: 1px solid var(--line-dark);
        border-left: 0;
    }

    .catalog-list article:nth-child(odd) {
        border-right: 1px solid var(--line-dark);
    }

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

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

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

    .pilot-data > div:nth-child(3) {
        border-left: 0;
    }

    .pilot-data > div:nth-child(n+3) {
        border-top: 1px solid var(--line-dark);
    }
}

@media (max-width: 640px) {
    :root {
        --header-height: 68px;
    }

    .container {
        width: calc(100% - 32px);
    }

    .section {
        padding: 78px 0;
    }

    .eyebrow {
        font-size: 10px;
    }

    .site-header,
    .site-header.is-scrolled,
    .site-header.is-menu-open {
        height: 68px;
    }

    .brand-name {
        font-size: 18px;
    }

    .brand-mark {
        transform: scale(.9);
        transform-origin: left center;
    }

    .mobile-nav {
        top: 68px;
        height: calc(100svh - 68px);
    }

    .hero,
    .hero-inner {
        min-height: 810px;
    }

    .hero-inner {
        justify-content: flex-start;
        gap: 48px;
        padding-top: 150px;
        padding-bottom: 94px;
    }

    .hero h1 {
        font-size: clamp(44px, 14vw, 64px);
    }

    .hero-lead {
        margin-top: 23px;
        font-size: 15px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        margin-top: 29px;
    }

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

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

    .capability-item small {
        display: none;
    }

    .hero-footer-inner > span:first-child {
        display: none;
    }

    .hero-footer-inner {
        justify-content: flex-end;
    }

    .metrics-wrap {
        padding: 62px 0 52px;
    }

    .metrics-heading {
        align-items: flex-start;
    }

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

    .metric,
    .metric + .metric,
    .metric:nth-child(3) {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: end;
        padding: 24px 0;
        border-left: 0;
        border-top: 1px solid var(--line-dark);
    }

    .metric:first-child {
        border-top: 0;
    }

    .metric span {
        margin: 0;
        text-align: right;
    }

    .section-heading h2,
    .workflow-intro h2,
    .production-heading h2,
    .global-heading h2 {
        font-size: 34px;
    }

    .capabilities-visual {
        aspect-ratio: 4 / 3;
    }

    .capabilities-visual figcaption span:last-child {
        display: none;
    }

    .capability-card {
        padding: 30px 0 34px;
    }

    .production-content,
    .global-inner {
        padding: 80px 0;
    }

    .production-image {
        width: 100%;
        height: 420px;
        opacity: .48;
    }

    .production-stages {
        grid-template-columns: 1fr 1fr;
        margin-top: 58px;
    }

    .production-stage,
    .production-stage + .production-stage,
    .production-stage:nth-child(4) {
        min-height: 220px;
        padding: 24px 18px 24px 0;
        border-top: 1px solid var(--line-dark);
        border-left: 0;
    }

    .production-stage:nth-child(even) {
        padding-left: 18px;
        border-left: 1px solid var(--line-dark);
    }

    .production-stage:first-child,
    .production-stage:nth-child(2) {
        border-top: 0;
    }

    .production-stage:last-child {
        grid-column: 1 / -1;
    }

    .format-card {
        min-height: 270px;
        grid-template-columns: 36px 1fr;
        gap: 12px;
        padding: 30px 26px;
    }

    .workflow-section {
        padding: 80px 0;
    }

    .asset-library p,
    .deliverables p {
        line-height: 2;
    }

    .reel-section {
        padding: 78px 0 68px;
    }

    .reel-ambient {
        top: 18px;
        font-size: 58px;
    }

    .reel-heading h2 {
        font-size: 39px;
    }

    .reel-heading-note {
        padding-left: 16px;
    }

    .reel-stage-wrap {
        width: 100%;
    }

    .reel-stage {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .reel-stage video {
        object-position: center;
    }

    .reel-frame {
        inset: 11px;
    }

    .reel-play {
        top: 45%;
        gap: 0;
    }

    .reel-play-disc {
        width: 68px;
        height: 68px;
    }

    .reel-play-label {
        display: none;
    }

    .reel-title-card {
        display: none;
    }

    .reel-title-card > span {
        font-size: 8px;
    }

    .reel-title-card p {
        margin-top: 14px;
    }

    .reel-title-card h3 {
        font-size: 35px;
    }

    .reel-edition {
        top: 20px;
        right: 19px;
    }

    .reel-edition span:last-child {
        display: none;
    }

    .reel-controls {
        min-height: 50px;
        grid-template-columns: 28px 1fr auto;
        gap: 12px;
        padding: 10px 16px;
    }

    .reel-text-control[data-video-mute] {
        display: none;
    }

    .reel-caption {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        margin-top: 22px;
    }

    .showcase-main {
        min-height: 520px;
        height: 72svh;
    }

    .showcase-main img {
        object-position: 54% center;
    }

    .showcase-overlay {
        padding: 24px 22px;
    }

    .showcase-overlay > a {
        position: static;
        align-self: flex-start;
        margin-top: 20px;
    }

    .showcase-overlay h3 {
        font-size: 36px;
    }

    .catalog-list {
        grid-template-columns: 1fr;
    }

    .catalog-list article:nth-child(odd) {
        border-right: 0;
    }

    .release-services {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .release-services i {
        display: none;
    }

    .markets-grid {
        margin-top: 52px;
    }

    .market-card {
        min-height: 0;
        padding: 28px 24px;
    }

    .market-card h3 {
        margin-top: 35px;
    }

    .market-card ul {
        grid-template-columns: 1fr;
    }

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

    .cooperation-card {
        min-height: 230px;
        padding: 27px 25px;
    }

    .cooperation-card h3 {
        margin-top: 36px;
    }

    .pilot-title {
        padding: 34px 26px;
    }

    .pilot-data > div {
        padding: 30px 20px;
    }

    .pilot-data strong {
        font-size: 38px;
    }

    .contact-section,
    .contact-inner {
        min-height: 700px;
    }

    .contact-inner h2 {
        font-size: 46px;
    }

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

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

    .contact-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        margin-top: 55px;
    }

    .contact-meta span:last-child {
        margin-left: 0;
    }

    .footer-top {
        min-height: 170px;
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
        justify-content: center;
    }

    .footer-top > p {
        line-height: 1.8;
    }

    .back-to-top {
        margin: 8px 0 0;
    }

    .footer-bottom {
        min-height: 90px;
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
        justify-content: center;
    }
}

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

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

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

/* WordPress theme integration */
.desktop-nav-list,
.desktop-nav-list > li,
.mobile-nav-list,
.mobile-nav-list > li {
    display: contents;
}

.desktop-nav .current-menu-item > a,
.desktop-nav .current_page_item > a {
    color: var(--white);
}

.desktop-nav .current-menu-item > a::after,
.desktop-nav .current_page_item > a::after {
    transform: scaleX(1);
}

.custom-logo-link {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
}

.custom-logo {
    width: auto;
    max-width: 210px;
    max-height: 48px;
}

.admin-bar .site-header {
    top: 32px;
}

.admin-bar .mobile-nav {
    top: 102px;
    height: calc(100svh - 102px);
}

.huayao-inner-page {
    background: var(--paper);
}

.huayao-inner-page .site-header {
    height: 70px;
    background: rgba(5, 21, 29, .96);
    border-color: rgba(255, 255, 255, .1);
    backdrop-filter: blur(18px);
}

.content-shell {
    min-height: 72svh;
    padding: 170px 0 120px;
    background:
        linear-gradient(180deg, rgba(7, 25, 35, .05), transparent 300px),
        var(--paper);
}

.content-container,
.article-container {
    max-width: 1240px;
}

.article-container {
    max-width: 920px;
}

.content-hero {
    max-width: 980px;
    margin-bottom: 68px;
}

.content-hero .eyebrow,
.article-header .eyebrow {
    margin-bottom: 22px;
}

.content-hero h1,
.article-header h1,
.not-found-content h1 {
    font-size: clamp(44px, 6vw, 82px);
    line-height: 1.08;
    letter-spacing: -.065em;
}

.content-hero > p:last-child,
.archive-description {
    max-width: 650px;
    margin-top: 24px;
    color: #52646a;
    font-size: 17px;
}

.compact-content-hero h1 {
    font-size: clamp(40px, 5vw, 64px);
}

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

.post-card {
    background: #f8faf7;
    border: 1px solid var(--line-light);
    transition: transform .3s var(--ease), box-shadow .3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(7, 25, 35, .1);
}

.post-card-image {
    display: block;
    aspect-ratio: 16 / 9;
    background: var(--ink-soft);
    overflow: hidden;
}

.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s var(--ease);
}

.post-card:hover .post-card-image img {
    transform: scale(1.035);
}

.post-card-body {
    padding: 30px;
}

.post-meta {
    color: var(--teal);
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 10px;
    letter-spacing: .1em;
}

.post-card h2 {
    margin-top: 16px;
    font-size: 28px;
    line-height: 1.25;
    letter-spacing: -.04em;
}

.post-excerpt {
    margin-top: 16px;
    color: #52646a;
    font-size: 14px;
}

.post-more {
    display: inline-flex;
    gap: 14px;
    margin-top: 22px;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--line-light);
    font-size: 12px;
    font-weight: 700;
}

.navigation.pagination,
.post-navigation {
    margin-top: 56px;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.page-numbers,
.post-navigation a {
    display: inline-flex;
    min-width: 42px;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 9px 14px;
    border: 1px solid var(--line-light);
    font-size: 12px;
}

.page-numbers.current,
.page-numbers:hover,
.post-navigation a:hover {
    color: var(--ink);
    background: var(--teal);
    border-color: var(--teal);
}

.article-header {
    margin-bottom: 48px;
}

.article-hero-image {
    margin: 0 calc(50% - 50vw) 58px;
}

.article-hero-image img {
    width: 100%;
    max-height: 720px;
    object-fit: cover;
}

.entry-content {
    color: #263c44;
    font-size: 17px;
    line-height: 2;
}

.entry-content > * + * {
    margin-top: 1.4em;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    color: var(--ink);
    line-height: 1.3;
    letter-spacing: -.035em;
}

.entry-content h2 { font-size: 34px; }
.entry-content h3 { font-size: 27px; }
.entry-content h4 { font-size: 21px; }

.entry-content a {
    color: #087f79;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.entry-content blockquote {
    padding: 24px 28px;
    background: rgba(52, 199, 191, .08);
    border-left: 3px solid var(--teal);
}

.entry-content ul,
.entry-content ol {
    padding-left: 1.4em;
}

.entry-content ul { list-style: disc; }

.article-footer {
    margin-top: 52px;
    padding-top: 22px;
    border-top: 1px solid var(--line-light);
    color: #63757a;
    font-size: 12px;
}

.empty-state,
.not-found-content {
    max-width: 760px;
    padding: 70px 0;
}

.empty-state h2 {
    margin-top: 18px;
    font-size: 40px;
    letter-spacing: -.045em;
}

.empty-state > p:not(.eyebrow),
.not-found-content > p:not(.eyebrow) {
    margin-top: 18px;
    color: #53666c;
}

.search-form {
    display: flex;
    max-width: 560px;
    margin-top: 30px;
}

.search-form label {
    flex: 1;
}

.search-field {
    width: 100%;
    height: 50px;
    padding: 0 16px;
    background: #fff;
    border: 1px solid var(--line-light);
}

.search-submit {
    padding: 0 22px;
    color: var(--ink);
    background: var(--teal);
    border: 0;
    cursor: pointer;
    font-weight: 700;
}

.not-found-shell {
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(3, 17, 24, .98), rgba(3, 17, 24, .7)),
        url("../images/hero-studio.webp") center / cover;
}

.not-found-content > strong {
    display: block;
    margin: 18px 0 -28px;
    color: transparent;
    font-family: Arial, sans-serif;
    font-size: clamp(100px, 18vw, 240px);
    line-height: 1;
    -webkit-text-stroke: 1px rgba(255, 255, 255, .13);
}

.not-found-content > p:not(.eyebrow) {
    color: rgba(255, 255, 255, .55);
}

.not-found-content .button {
    margin-top: 34px;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 900px) {
    .post-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }

    .admin-bar .mobile-nav {
        top: 116px;
        height: calc(100svh - 116px);
    }
}

@media (max-width: 640px) {
    .custom-logo {
        max-width: 170px;
        max-height: 40px;
    }

    .content-shell {
        padding: 130px 0 82px;
    }

    .content-hero {
        margin-bottom: 45px;
    }

    .content-hero h1,
    .article-header h1,
    .not-found-content h1 {
        font-size: 42px;
    }

    .post-card-body {
        padding: 24px;
    }

    .article-hero-image {
        margin-bottom: 38px;
    }

    .entry-content {
        font-size: 16px;
    }
}
